From fc72ea1daaa1b7ff525a7ff34d56dc8714168765 Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Mon, 24 Jun 2024 13:33:48 -0700 Subject: [PATCH 1/2] feat: allow global declarations in modules TypeScript allows declarations in the global namespace from within ambient module declarations. This form is used in several of the declaration files for Node.js (e.g. buffer.d.ts, console.d.ts). --- common/define-grammar.js | 6 ++++++ test/corpus/declarations.txt | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/common/define-grammar.js b/common/define-grammar.js index d12422cf..d8f3c4dd 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -210,6 +210,7 @@ module.exports = function defineGrammar(dialect) { $.satisfies_expression, $.instantiation_expression, $.internal_module, + $.global_namespace, ]; if (dialect === 'typescript') { @@ -265,6 +266,11 @@ module.exports = function defineGrammar(dialect) { previous, ), + global_namespace: ($) => seq( + 'global', + field('body', $.statement_block) + ), + _import_identifier: ($) => choice($.identifier, alias('type', $.identifier)), import_specifier: ($) => seq( diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 02273fb3..b58f70d3 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1114,6 +1114,27 @@ declare global { (ambient_declaration (statement_block))) +======================================= +Ambient global namespace declarations +======================================= + +declare module "foo" { + global { + } +} + +--- + +(program + (ambient_declaration + (module + (string + (string_fragment)) + (statement_block + (expression_statement + (global_namespace + (statement_block))))))) + ======================================= Abstract classes ======================================= From 35a3762218ca481cd85f14f4db11b563bc805c83 Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Mon, 24 Jun 2024 14:15:28 -0700 Subject: [PATCH 2/2] chore: generate --- tsx/src/grammar.json | 32 +- tsx/src/node-types.json | 24 +- tsx/src/parser.c | 534900 ++++++++++++++--------------- typescript/src/grammar.json | 32 +- typescript/src/node-types.json | 24 +- typescript/src/parser.c | 545659 +++++++++++++++--------------- 6 files changed, 542819 insertions(+), 537852 deletions(-) diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index 0facfe7f..407db7e6 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -1,6 +1,15 @@ { + "0": "j", + "1": "a", + "2": "v", + "3": "a", + "4": "s", + "5": "c", + "6": "r", + "7": "i", + "8": "p", + "9": "t", "name": "tsx", - "inherits": "javascript", "word": "identifier", "rules": { "program": { @@ -2006,6 +2015,10 @@ "type": "SYMBOL", "name": "internal_module" }, + { + "type": "SYMBOL", + "name": "global_namespace" + }, { "type": "SYMBOL", "name": "primary_expression" @@ -7553,6 +7566,23 @@ } ] }, + "global_namespace": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "global" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, "_import_identifier": { "type": "CHOICE", "members": [ diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index 473b4751..78e24e4e 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -175,6 +175,10 @@ "type": "glimmer_template", "named": true }, + { + "type": "global_namespace", + "named": true + }, { "type": "instantiation_expression", "named": true @@ -2888,6 +2892,22 @@ } } }, + { + "type": "global_namespace", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + } + } + }, { "type": "identifier", "named": true, @@ -6554,11 +6574,11 @@ }, { "type": "number", - "named": false + "named": true }, { "type": "number", - "named": true + "named": false }, { "type": "object", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index 34f7e8d9..9b7ab7b7 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7486 +#define STATE_COUNT 7490 #define LARGE_STATE_COUNT 1852 -#define SYMBOL_COUNT 400 +#define SYMBOL_COUNT 401 #define ALIAS_COUNT 7 #define TOKEN_COUNT 173 #define EXTERNAL_TOKEN_COUNT 9 @@ -171,11 +171,11 @@ enum ts_symbol_identifiers { anon_sym_symbol = 145, anon_sym_object = 146, anon_sym_abstract = 147, - anon_sym_satisfies = 148, - anon_sym_require = 149, - anon_sym_extends = 150, - anon_sym_implements = 151, - anon_sym_global = 152, + anon_sym_global = 148, + anon_sym_satisfies = 149, + anon_sym_require = 150, + anon_sym_extends = 151, + anon_sym_implements = 152, anon_sym_interface = 153, anon_sym_enum = 154, anon_sym_DASH_QMARK_COLON = 155, @@ -310,126 +310,127 @@ enum ts_symbol_identifiers { sym__property_name = 284, sym_computed_property_name = 285, sym_public_field_definition = 286, - sym__import_identifier = 287, - sym_non_null_expression = 288, - sym_method_signature = 289, - sym_abstract_method_signature = 290, - sym_function_signature = 291, - sym_as_expression = 292, - sym_satisfies_expression = 293, - sym_instantiation_expression = 294, - sym_import_require_clause = 295, - sym_extends_clause = 296, - sym__extends_clause_single = 297, - sym_implements_clause = 298, - sym_ambient_declaration = 299, - sym_abstract_class_declaration = 300, - sym_module = 301, - sym_internal_module = 302, - sym__module = 303, - sym_import_alias = 304, - sym_nested_type_identifier = 305, - sym_interface_declaration = 306, - sym_extends_type_clause = 307, - sym_enum_declaration = 308, - sym_enum_body = 309, - sym_enum_assignment = 310, - sym_type_alias_declaration = 311, - sym_accessibility_modifier = 312, - sym_override_modifier = 313, - sym_required_parameter = 314, - sym_optional_parameter = 315, - sym__parameter_name = 316, - sym_omitting_type_annotation = 317, - sym_adding_type_annotation = 318, - sym_opting_type_annotation = 319, - sym_type_annotation = 320, - sym__type_query_member_expression_in_type_annotation = 321, - sym__type_query_call_expression_in_type_annotation = 322, - sym_asserts = 323, - sym_asserts_annotation = 324, - sym__type = 325, - sym_tuple_parameter = 326, - sym_optional_tuple_parameter = 327, - sym_optional_type = 328, - sym_rest_type = 329, - sym__tuple_type_member = 330, - sym_constructor_type = 331, - sym__primary_type = 332, - sym_template_type = 333, - sym_template_literal_type = 334, - sym_infer_type = 335, - sym_conditional_type = 336, - sym_generic_type = 337, - sym_type_predicate = 338, - sym_type_predicate_annotation = 339, - sym__type_query_member_expression = 340, - sym__type_query_subscript_expression = 341, - sym__type_query_call_expression = 342, - sym__type_query_instantiation_expression = 343, - sym_type_query = 344, - sym_index_type_query = 345, - sym_lookup_type = 346, - sym_mapped_type_clause = 347, - sym_literal_type = 348, - sym__number = 349, - sym_existential_type = 350, - sym_flow_maybe_type = 351, - sym_parenthesized_type = 352, - sym_predefined_type = 353, - sym_type_arguments = 354, - sym_object_type = 355, - sym_call_signature = 356, - sym_property_signature = 357, - sym_type_parameters = 358, - sym_type_parameter = 359, - sym_default_type = 360, - sym_constraint = 361, - sym_construct_signature = 362, - sym_index_signature = 363, - sym_array_type = 364, - sym_tuple_type = 365, - sym_readonly_type = 366, - sym_union_type = 367, - sym_intersection_type = 368, - sym_function_type = 369, - aux_sym_program_repeat1 = 370, - aux_sym_export_statement_repeat1 = 371, - aux_sym_export_clause_repeat1 = 372, - aux_sym_named_imports_repeat1 = 373, - aux_sym_variable_declaration_repeat1 = 374, - aux_sym_switch_body_repeat1 = 375, - aux_sym_object_repeat1 = 376, - aux_sym_object_pattern_repeat1 = 377, - aux_sym_array_repeat1 = 378, - aux_sym_array_pattern_repeat1 = 379, - aux_sym_glimmer_template_repeat1 = 380, - aux_sym_jsx_element_repeat1 = 381, - aux_sym__jsx_string_repeat1 = 382, - aux_sym__jsx_string_repeat2 = 383, - aux_sym_sequence_expression_repeat1 = 384, - aux_sym_string_repeat1 = 385, - aux_sym_string_repeat2 = 386, - aux_sym_template_string_repeat1 = 387, - aux_sym_class_body_repeat1 = 388, - aux_sym_formal_parameters_repeat1 = 389, - aux_sym__jsx_start_opening_element_repeat1 = 390, - aux_sym_extends_clause_repeat1 = 391, - aux_sym_implements_clause_repeat1 = 392, - aux_sym_extends_type_clause_repeat1 = 393, - aux_sym_enum_body_repeat1 = 394, - aux_sym_template_literal_type_repeat1 = 395, - aux_sym_type_arguments_repeat1 = 396, - aux_sym_object_type_repeat1 = 397, - aux_sym_type_parameters_repeat1 = 398, - aux_sym_tuple_type_repeat1 = 399, - alias_sym_interface_body = 400, - alias_sym_property_identifier = 401, - alias_sym_shorthand_property_identifier = 402, - alias_sym_shorthand_property_identifier_pattern = 403, - alias_sym_statement_identifier = 404, - alias_sym_this_type = 405, - alias_sym_type_identifier = 406, + sym_global_namespace = 287, + sym__import_identifier = 288, + sym_non_null_expression = 289, + sym_method_signature = 290, + sym_abstract_method_signature = 291, + sym_function_signature = 292, + sym_as_expression = 293, + sym_satisfies_expression = 294, + sym_instantiation_expression = 295, + sym_import_require_clause = 296, + sym_extends_clause = 297, + sym__extends_clause_single = 298, + sym_implements_clause = 299, + sym_ambient_declaration = 300, + sym_abstract_class_declaration = 301, + sym_module = 302, + sym_internal_module = 303, + sym__module = 304, + sym_import_alias = 305, + sym_nested_type_identifier = 306, + sym_interface_declaration = 307, + sym_extends_type_clause = 308, + sym_enum_declaration = 309, + sym_enum_body = 310, + sym_enum_assignment = 311, + sym_type_alias_declaration = 312, + sym_accessibility_modifier = 313, + sym_override_modifier = 314, + sym_required_parameter = 315, + sym_optional_parameter = 316, + sym__parameter_name = 317, + sym_omitting_type_annotation = 318, + sym_adding_type_annotation = 319, + sym_opting_type_annotation = 320, + sym_type_annotation = 321, + sym__type_query_member_expression_in_type_annotation = 322, + sym__type_query_call_expression_in_type_annotation = 323, + sym_asserts = 324, + sym_asserts_annotation = 325, + sym__type = 326, + sym_tuple_parameter = 327, + sym_optional_tuple_parameter = 328, + sym_optional_type = 329, + sym_rest_type = 330, + sym__tuple_type_member = 331, + sym_constructor_type = 332, + sym__primary_type = 333, + sym_template_type = 334, + sym_template_literal_type = 335, + sym_infer_type = 336, + sym_conditional_type = 337, + sym_generic_type = 338, + sym_type_predicate = 339, + sym_type_predicate_annotation = 340, + sym__type_query_member_expression = 341, + sym__type_query_subscript_expression = 342, + sym__type_query_call_expression = 343, + sym__type_query_instantiation_expression = 344, + sym_type_query = 345, + sym_index_type_query = 346, + sym_lookup_type = 347, + sym_mapped_type_clause = 348, + sym_literal_type = 349, + sym__number = 350, + sym_existential_type = 351, + sym_flow_maybe_type = 352, + sym_parenthesized_type = 353, + sym_predefined_type = 354, + sym_type_arguments = 355, + sym_object_type = 356, + sym_call_signature = 357, + sym_property_signature = 358, + sym_type_parameters = 359, + sym_type_parameter = 360, + sym_default_type = 361, + sym_constraint = 362, + sym_construct_signature = 363, + sym_index_signature = 364, + sym_array_type = 365, + sym_tuple_type = 366, + sym_readonly_type = 367, + sym_union_type = 368, + sym_intersection_type = 369, + sym_function_type = 370, + aux_sym_program_repeat1 = 371, + aux_sym_export_statement_repeat1 = 372, + aux_sym_export_clause_repeat1 = 373, + aux_sym_named_imports_repeat1 = 374, + aux_sym_variable_declaration_repeat1 = 375, + aux_sym_switch_body_repeat1 = 376, + aux_sym_object_repeat1 = 377, + aux_sym_object_pattern_repeat1 = 378, + aux_sym_array_repeat1 = 379, + aux_sym_array_pattern_repeat1 = 380, + aux_sym_glimmer_template_repeat1 = 381, + aux_sym_jsx_element_repeat1 = 382, + aux_sym__jsx_string_repeat1 = 383, + aux_sym__jsx_string_repeat2 = 384, + aux_sym_sequence_expression_repeat1 = 385, + aux_sym_string_repeat1 = 386, + aux_sym_string_repeat2 = 387, + aux_sym_template_string_repeat1 = 388, + aux_sym_class_body_repeat1 = 389, + aux_sym_formal_parameters_repeat1 = 390, + aux_sym__jsx_start_opening_element_repeat1 = 391, + aux_sym_extends_clause_repeat1 = 392, + aux_sym_implements_clause_repeat1 = 393, + aux_sym_extends_type_clause_repeat1 = 394, + aux_sym_enum_body_repeat1 = 395, + aux_sym_template_literal_type_repeat1 = 396, + aux_sym_type_arguments_repeat1 = 397, + aux_sym_object_type_repeat1 = 398, + aux_sym_type_parameters_repeat1 = 399, + aux_sym_tuple_type_repeat1 = 400, + alias_sym_interface_body = 401, + alias_sym_property_identifier = 402, + alias_sym_shorthand_property_identifier = 403, + alias_sym_shorthand_property_identifier_pattern = 404, + alias_sym_statement_identifier = 405, + alias_sym_this_type = 406, + alias_sym_type_identifier = 407, }; static const char * const ts_symbol_names[] = { @@ -581,11 +582,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_symbol] = "symbol", [anon_sym_object] = "object", [anon_sym_abstract] = "abstract", + [anon_sym_global] = "global", [anon_sym_satisfies] = "satisfies", [anon_sym_require] = "require", [anon_sym_extends] = "extends", [anon_sym_implements] = "implements", - [anon_sym_global] = "global", [anon_sym_interface] = "interface", [anon_sym_enum] = "enum", [anon_sym_DASH_QMARK_COLON] = "-\?:", @@ -720,6 +721,7 @@ static const char * const ts_symbol_names[] = { [sym__property_name] = "_property_name", [sym_computed_property_name] = "computed_property_name", [sym_public_field_definition] = "public_field_definition", + [sym_global_namespace] = "global_namespace", [sym__import_identifier] = "_import_identifier", [sym_non_null_expression] = "non_null_expression", [sym_method_signature] = "method_signature", @@ -991,11 +993,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_symbol] = anon_sym_symbol, [anon_sym_object] = anon_sym_object, [anon_sym_abstract] = anon_sym_abstract, + [anon_sym_global] = anon_sym_global, [anon_sym_satisfies] = anon_sym_satisfies, [anon_sym_require] = anon_sym_require, [anon_sym_extends] = anon_sym_extends, [anon_sym_implements] = anon_sym_implements, - [anon_sym_global] = anon_sym_global, [anon_sym_interface] = anon_sym_interface, [anon_sym_enum] = anon_sym_enum, [anon_sym_DASH_QMARK_COLON] = anon_sym_DASH_QMARK_COLON, @@ -1130,6 +1132,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__property_name] = sym__property_name, [sym_computed_property_name] = sym_computed_property_name, [sym_public_field_definition] = sym_public_field_definition, + [sym_global_namespace] = sym_global_namespace, [sym__import_identifier] = sym__import_identifier, [sym_non_null_expression] = sym_non_null_expression, [sym_method_signature] = sym_method_signature, @@ -1845,6 +1848,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_global] = { + .visible = true, + .named = false, + }, [anon_sym_satisfies] = { .visible = true, .named = false, @@ -1861,10 +1868,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_global] = { - .visible = true, - .named = false, - }, [anon_sym_interface] = { .visible = true, .named = false, @@ -2406,6 +2409,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_global_namespace] = { + .visible = true, + .named = true, + }, [sym__import_identifier] = { .visible = false, .named = true, @@ -4670,125 +4677,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 14, [15] = 15, [16] = 16, - [17] = 12, + [17] = 13, [18] = 18, - [19] = 18, + [19] = 19, [20] = 18, - [21] = 21, - [22] = 18, - [23] = 21, + [21] = 18, + [22] = 19, + [23] = 18, [24] = 18, - [25] = 18, - [26] = 18, - [27] = 18, - [28] = 21, - [29] = 21, - [30] = 18, - [31] = 21, - [32] = 18, - [33] = 21, - [34] = 21, - [35] = 18, + [25] = 19, + [26] = 19, + [27] = 19, + [28] = 18, + [29] = 19, + [30] = 19, + [31] = 18, + [32] = 19, + [33] = 18, + [34] = 19, + [35] = 19, [36] = 36, - [37] = 21, + [37] = 19, [38] = 18, - [39] = 21, - [40] = 21, + [39] = 19, + [40] = 19, [41] = 18, - [42] = 21, + [42] = 19, [43] = 18, - [44] = 21, - [45] = 18, - [46] = 21, + [44] = 18, + [45] = 19, + [46] = 18, [47] = 18, - [48] = 21, - [49] = 18, + [48] = 18, + [49] = 19, [50] = 18, - [51] = 21, + [51] = 19, [52] = 18, - [53] = 53, - [54] = 21, + [53] = 18, + [54] = 18, [55] = 18, - [56] = 21, - [57] = 18, - [58] = 58, - [59] = 21, - [60] = 21, - [61] = 21, + [56] = 19, + [57] = 19, + [58] = 18, + [59] = 19, + [60] = 19, + [61] = 18, [62] = 18, - [63] = 21, - [64] = 21, - [65] = 18, + [63] = 19, + [64] = 19, + [65] = 19, [66] = 18, - [67] = 18, - [68] = 21, - [69] = 21, - [70] = 18, - [71] = 21, - [72] = 21, + [67] = 67, + [68] = 18, + [69] = 18, + [70] = 70, + [71] = 19, + [72] = 19, [73] = 73, - [74] = 73, - [75] = 75, + [74] = 74, + [75] = 73, [76] = 76, [77] = 77, [78] = 78, [79] = 79, [80] = 80, - [81] = 81, - [82] = 75, - [83] = 83, - [84] = 79, - [85] = 83, - [86] = 78, + [81] = 74, + [82] = 78, + [83] = 77, + [84] = 76, + [85] = 79, + [86] = 86, [87] = 77, - [88] = 73, - [89] = 89, - [90] = 76, - [91] = 83, - [92] = 78, - [93] = 73, - [94] = 73, - [95] = 76, - [96] = 77, - [97] = 83, - [98] = 75, - [99] = 80, - [100] = 78, - [101] = 89, - [102] = 75, + [88] = 88, + [89] = 73, + [90] = 88, + [91] = 80, + [92] = 92, + [93] = 86, + [94] = 74, + [95] = 88, + [96] = 78, + [97] = 76, + [98] = 92, + [99] = 92, + [100] = 77, + [101] = 78, + [102] = 76, [103] = 80, - [104] = 81, - [105] = 80, - [106] = 80, - [107] = 81, - [108] = 89, - [109] = 79, - [110] = 77, - [111] = 81, - [112] = 79, - [113] = 76, - [114] = 89, - [115] = 78, - [116] = 81, + [104] = 92, + [105] = 79, + [106] = 88, + [107] = 86, + [108] = 80, + [109] = 74, + [110] = 79, + [111] = 73, + [112] = 80, + [113] = 88, + [114] = 78, + [115] = 77, + [116] = 73, [117] = 79, - [118] = 76, - [119] = 77, - [120] = 83, - [121] = 75, - [122] = 89, + [118] = 86, + [119] = 92, + [120] = 86, + [121] = 76, + [122] = 74, [123] = 123, - [124] = 123, + [124] = 124, [125] = 123, - [126] = 123, - [127] = 127, + [126] = 124, + [127] = 123, [128] = 123, [129] = 123, [130] = 123, - [131] = 127, + [131] = 123, [132] = 123, [133] = 123, - [134] = 123, - [135] = 127, + [134] = 124, + [135] = 123, [136] = 136, [137] = 137, [138] = 138, @@ -4796,70 +4803,70 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [140] = 140, [141] = 141, [142] = 142, - [143] = 139, + [143] = 142, [144] = 144, [145] = 145, - [146] = 144, + [146] = 145, [147] = 147, [148] = 148, [149] = 149, - [150] = 149, + [150] = 148, [151] = 151, - [152] = 147, - [153] = 149, - [154] = 147, - [155] = 155, - [156] = 148, - [157] = 157, - [158] = 148, - [159] = 155, - [160] = 147, - [161] = 155, - [162] = 157, - [163] = 157, - [164] = 151, - [165] = 155, + [152] = 148, + [153] = 147, + [154] = 154, + [155] = 149, + [156] = 154, + [157] = 147, + [158] = 154, + [159] = 147, + [160] = 160, + [161] = 160, + [162] = 160, + [163] = 154, + [164] = 147, + [165] = 165, [166] = 147, - [167] = 147, - [168] = 157, - [169] = 157, - [170] = 155, - [171] = 171, + [167] = 160, + [168] = 151, + [169] = 151, + [170] = 160, + [171] = 154, [172] = 172, - [173] = 173, - [174] = 145, - [175] = 144, - [176] = 176, + [173] = 144, + [174] = 174, + [175] = 151, + [176] = 151, [177] = 147, - [178] = 147, + [178] = 178, [179] = 147, [180] = 147, - [181] = 151, - [182] = 148, - [183] = 148, + [181] = 147, + [182] = 147, + [183] = 151, [184] = 147, [185] = 185, - [186] = 148, - [187] = 147, - [188] = 171, - [189] = 148, - [190] = 147, + [186] = 149, + [187] = 145, + [188] = 147, + [189] = 165, + [190] = 151, [191] = 147, - [192] = 147, + [192] = 151, [193] = 147, - [194] = 148, - [195] = 173, + [194] = 174, + [195] = 147, [196] = 196, [197] = 196, - [198] = 147, + [198] = 196, [199] = 196, - [200] = 148, + [200] = 200, [201] = 196, [202] = 196, - [203] = 196, - [204] = 204, + [203] = 151, + [204] = 196, [205] = 196, - [206] = 196, + [206] = 147, [207] = 196, [208] = 208, [209] = 208, @@ -4883,583 +4890,583 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [227] = 220, [228] = 220, [229] = 229, - [230] = 229, + [230] = 230, [231] = 229, - [232] = 232, - [233] = 229, - [234] = 232, - [235] = 229, - [236] = 232, - [237] = 232, - [238] = 232, - [239] = 232, + [232] = 229, + [233] = 230, + [234] = 230, + [235] = 230, + [236] = 230, + [237] = 229, + [238] = 229, + [239] = 230, [240] = 229, [241] = 241, [242] = 241, - [243] = 241, - [244] = 244, - [245] = 245, + [243] = 243, + [244] = 243, + [245] = 241, [246] = 246, [247] = 246, - [248] = 241, - [249] = 241, - [250] = 245, - [251] = 241, - [252] = 245, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 248, + [252] = 246, [253] = 253, - [254] = 254, - [255] = 253, - [256] = 256, - [257] = 244, - [258] = 253, - [259] = 254, - [260] = 254, - [261] = 256, - [262] = 241, - [263] = 256, - [264] = 241, + [254] = 250, + [255] = 248, + [256] = 250, + [257] = 253, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 241, + [262] = 258, + [263] = 258, + [264] = 253, [265] = 241, - [266] = 266, - [267] = 266, - [268] = 268, - [269] = 266, - [270] = 266, - [271] = 266, + [266] = 258, + [267] = 258, + [268] = 258, + [269] = 258, + [270] = 241, + [271] = 271, [272] = 272, - [273] = 266, - [274] = 274, - [275] = 266, - [276] = 276, - [277] = 277, - [278] = 272, - [279] = 276, - [280] = 276, - [281] = 276, - [282] = 276, - [283] = 283, + [273] = 273, + [274] = 273, + [275] = 249, + [276] = 241, + [277] = 241, + [278] = 273, + [279] = 273, + [280] = 273, + [281] = 260, + [282] = 260, + [283] = 241, [284] = 284, [285] = 285, - [286] = 285, + [286] = 284, [287] = 287, - [288] = 272, - [289] = 283, + [288] = 288, + [289] = 287, [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, + [291] = 260, + [292] = 260, + [293] = 260, [294] = 294, [295] = 295, [296] = 296, - [297] = 297, - [298] = 298, - [299] = 299, - [300] = 300, - [301] = 291, - [302] = 272, - [303] = 272, + [297] = 296, + [298] = 296, + [299] = 296, + [300] = 296, + [301] = 296, + [302] = 302, + [303] = 296, [304] = 304, [305] = 305, - [306] = 306, - [307] = 272, - [308] = 292, - [309] = 293, - [310] = 272, - [311] = 294, + [306] = 260, + [307] = 260, + [308] = 260, + [309] = 260, + [310] = 310, + [311] = 311, [312] = 312, - [313] = 305, + [313] = 313, [314] = 314, - [315] = 315, - [316] = 272, + [315] = 312, + [316] = 316, [317] = 317, [318] = 318, - [319] = 272, + [319] = 312, [320] = 320, [321] = 321, [322] = 322, - [323] = 291, - [324] = 294, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 305, - [329] = 272, - [330] = 305, + [323] = 312, + [324] = 312, + [325] = 312, + [326] = 317, + [327] = 312, + [328] = 328, + [329] = 329, + [330] = 330, [331] = 331, - [332] = 305, - [333] = 333, + [332] = 332, + [333] = 312, [334] = 334, - [335] = 335, + [335] = 305, [336] = 336, - [337] = 337, - [338] = 338, - [339] = 305, - [340] = 293, - [341] = 305, - [342] = 292, + [337] = 304, + [338] = 320, + [339] = 302, + [340] = 340, + [341] = 341, + [342] = 295, [343] = 343, - [344] = 315, + [344] = 312, [345] = 345, - [346] = 334, + [346] = 346, [347] = 347, - [348] = 331, - [349] = 345, - [350] = 304, - [351] = 325, - [352] = 338, - [353] = 325, - [354] = 345, - [355] = 320, - [356] = 295, - [357] = 322, - [358] = 318, - [359] = 345, - [360] = 294, - [361] = 293, - [362] = 347, - [363] = 336, - [364] = 300, - [365] = 315, - [366] = 292, - [367] = 326, + [348] = 320, + [349] = 349, + [350] = 320, + [351] = 320, + [352] = 302, + [353] = 312, + [354] = 312, + [355] = 312, + [356] = 356, + [357] = 357, + [358] = 312, + [359] = 359, + [360] = 305, + [361] = 295, + [362] = 304, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 312, [368] = 368, - [369] = 299, - [370] = 291, - [371] = 336, - [372] = 321, - [373] = 321, - [374] = 345, - [375] = 345, - [376] = 334, - [377] = 345, - [378] = 345, - [379] = 379, - [380] = 322, - [381] = 343, - [382] = 345, - [383] = 320, - [384] = 327, - [385] = 314, - [386] = 306, - [387] = 312, - [388] = 331, - [389] = 296, - [390] = 327, - [391] = 347, - [392] = 343, - [393] = 345, - [394] = 337, - [395] = 333, - [396] = 314, - [397] = 337, - [398] = 398, - [399] = 298, - [400] = 326, - [401] = 312, - [402] = 338, - [403] = 345, - [404] = 304, - [405] = 306, - [406] = 333, - [407] = 407, - [408] = 398, - [409] = 298, - [410] = 295, - [411] = 318, - [412] = 300, - [413] = 345, - [414] = 296, - [415] = 347, - [416] = 297, - [417] = 299, - [418] = 418, - [419] = 345, - [420] = 347, - [421] = 297, - [422] = 345, - [423] = 337, - [424] = 334, - [425] = 425, - [426] = 300, - [427] = 314, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 331, - [433] = 431, - [434] = 312, - [435] = 299, - [436] = 298, - [437] = 297, - [438] = 425, - [439] = 430, - [440] = 296, - [441] = 295, - [442] = 442, - [443] = 325, - [444] = 315, - [445] = 318, - [446] = 431, - [447] = 333, - [448] = 448, - [449] = 304, - [450] = 322, - [451] = 431, - [452] = 343, - [453] = 321, - [454] = 336, - [455] = 320, - [456] = 306, - [457] = 326, - [458] = 338, - [459] = 431, - [460] = 327, - [461] = 461, - [462] = 462, - [463] = 461, - [464] = 461, - [465] = 461, - [466] = 461, + [369] = 332, + [370] = 321, + [371] = 356, + [372] = 363, + [373] = 365, + [374] = 359, + [375] = 357, + [376] = 347, + [377] = 377, + [378] = 346, + [379] = 341, + [380] = 349, + [381] = 340, + [382] = 311, + [383] = 377, + [384] = 341, + [385] = 316, + [386] = 347, + [387] = 314, + [388] = 314, + [389] = 377, + [390] = 334, + [391] = 391, + [392] = 392, + [393] = 311, + [394] = 340, + [395] = 343, + [396] = 377, + [397] = 343, + [398] = 322, + [399] = 302, + [400] = 377, + [401] = 401, + [402] = 313, + [403] = 366, + [404] = 366, + [405] = 405, + [406] = 329, + [407] = 368, + [408] = 321, + [409] = 316, + [410] = 305, + [411] = 295, + [412] = 356, + [413] = 357, + [414] = 349, + [415] = 328, + [416] = 365, + [417] = 304, + [418] = 329, + [419] = 330, + [420] = 346, + [421] = 364, + [422] = 368, + [423] = 363, + [424] = 313, + [425] = 364, + [426] = 332, + [427] = 328, + [428] = 334, + [429] = 322, + [430] = 359, + [431] = 330, + [432] = 314, + [433] = 433, + [434] = 433, + [435] = 365, + [436] = 322, + [437] = 433, + [438] = 330, + [439] = 346, + [440] = 332, + [441] = 349, + [442] = 316, + [443] = 313, + [444] = 328, + [445] = 445, + [446] = 368, + [447] = 334, + [448] = 433, + [449] = 363, + [450] = 364, + [451] = 347, + [452] = 356, + [453] = 453, + [454] = 357, + [455] = 341, + [456] = 456, + [457] = 445, + [458] = 366, + [459] = 321, + [460] = 329, + [461] = 340, + [462] = 311, + [463] = 433, + [464] = 359, + [465] = 343, + [466] = 453, [467] = 467, [468] = 468, [469] = 469, [470] = 470, [471] = 471, [472] = 472, - [473] = 473, + [473] = 468, [474] = 474, - [475] = 473, - [476] = 467, - [477] = 470, - [478] = 471, - [479] = 473, - [480] = 480, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 474, + [479] = 479, + [480] = 476, [481] = 481, - [482] = 482, - [483] = 471, + [482] = 476, + [483] = 474, [484] = 484, - [485] = 481, - [486] = 473, - [487] = 473, - [488] = 481, - [489] = 471, - [490] = 470, - [491] = 470, - [492] = 492, - [493] = 493, + [485] = 485, + [486] = 475, + [487] = 468, + [488] = 468, + [489] = 489, + [490] = 469, + [491] = 476, + [492] = 469, + [493] = 474, [494] = 494, - [495] = 481, - [496] = 468, - [497] = 471, - [498] = 470, - [499] = 470, - [500] = 500, - [501] = 481, - [502] = 471, - [503] = 480, - [504] = 468, - [505] = 474, - [506] = 480, - [507] = 468, - [508] = 481, + [495] = 489, + [496] = 469, + [497] = 468, + [498] = 475, + [499] = 468, + [500] = 474, + [501] = 476, + [502] = 502, + [503] = 503, + [504] = 484, + [505] = 469, + [506] = 506, + [507] = 476, + [508] = 469, [509] = 468, - [510] = 482, - [511] = 473, - [512] = 480, - [513] = 474, - [514] = 514, - [515] = 515, - [516] = 474, - [517] = 517, - [518] = 469, - [519] = 474, - [520] = 470, - [521] = 471, - [522] = 481, - [523] = 473, - [524] = 468, - [525] = 468, - [526] = 469, - [527] = 481, - [528] = 480, - [529] = 469, - [530] = 530, - [531] = 481, - [532] = 474, - [533] = 533, - [534] = 470, - [535] = 473, - [536] = 471, - [537] = 480, - [538] = 469, - [539] = 480, - [540] = 480, - [541] = 480, - [542] = 542, - [543] = 474, - [544] = 468, + [510] = 476, + [511] = 474, + [512] = 489, + [513] = 506, + [514] = 469, + [515] = 506, + [516] = 503, + [517] = 503, + [518] = 503, + [519] = 489, + [520] = 520, + [521] = 475, + [522] = 469, + [523] = 468, + [524] = 474, + [525] = 525, + [526] = 474, + [527] = 476, + [528] = 489, + [529] = 475, + [530] = 474, + [531] = 475, + [532] = 475, + [533] = 476, + [534] = 468, + [535] = 506, + [536] = 536, + [537] = 502, + [538] = 503, + [539] = 475, + [540] = 506, + [541] = 489, + [542] = 489, + [543] = 503, + [544] = 489, [545] = 545, - [546] = 468, - [547] = 473, - [548] = 471, - [549] = 470, + [546] = 469, + [547] = 503, + [548] = 489, + [549] = 475, [550] = 550, [551] = 551, [552] = 552, [553] = 553, - [554] = 554, + [554] = 553, [555] = 555, - [556] = 553, + [556] = 552, [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, + [558] = 550, + [559] = 551, + [560] = 555, [561] = 561, - [562] = 553, + [562] = 550, [563] = 563, - [564] = 564, + [564] = 555, [565] = 565, - [566] = 558, - [567] = 550, + [566] = 555, + [567] = 553, [568] = 568, - [569] = 569, + [569] = 563, [570] = 553, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 551, - [575] = 575, - [576] = 576, - [577] = 559, - [578] = 578, - [579] = 552, - [580] = 571, + [571] = 553, + [572] = 563, + [573] = 551, + [574] = 574, + [575] = 552, + [576] = 557, + [577] = 561, + [578] = 574, + [579] = 579, + [580] = 580, [581] = 581, [582] = 582, [583] = 583, [584] = 584, [585] = 585, [586] = 586, - [587] = 564, - [588] = 571, - [589] = 555, - [590] = 590, - [591] = 555, - [592] = 572, - [593] = 558, - [594] = 553, - [595] = 582, - [596] = 558, - [597] = 581, - [598] = 550, - [599] = 569, - [600] = 582, - [601] = 586, - [602] = 585, - [603] = 584, - [604] = 581, - [605] = 583, - [606] = 578, - [607] = 582, - [608] = 608, - [609] = 576, - [610] = 581, - [611] = 575, - [612] = 551, - [613] = 573, - [614] = 582, - [615] = 581, - [616] = 568, - [617] = 617, - [618] = 564, - [619] = 569, - [620] = 586, - [621] = 617, - [622] = 585, - [623] = 584, - [624] = 569, - [625] = 625, - [626] = 572, - [627] = 569, - [628] = 554, - [629] = 583, - [630] = 578, - [631] = 561, - [632] = 576, - [633] = 559, - [634] = 565, - [635] = 635, - [636] = 552, - [637] = 575, - [638] = 551, - [639] = 573, - [640] = 550, - [641] = 568, - [642] = 568, - [643] = 550, - [644] = 573, - [645] = 575, - [646] = 646, - [647] = 553, - [648] = 565, - [649] = 576, + [587] = 587, + [588] = 574, + [589] = 589, + [590] = 550, + [591] = 591, + [592] = 555, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 579, + [599] = 580, + [600] = 563, + [601] = 581, + [602] = 582, + [603] = 552, + [604] = 563, + [605] = 605, + [606] = 583, + [607] = 574, + [608] = 584, + [609] = 551, + [610] = 585, + [611] = 595, + [612] = 612, + [613] = 555, + [614] = 586, + [615] = 553, + [616] = 561, + [617] = 557, + [618] = 587, + [619] = 589, + [620] = 574, + [621] = 591, + [622] = 594, + [623] = 596, + [624] = 605, + [625] = 597, + [626] = 550, + [627] = 612, + [628] = 605, + [629] = 605, + [630] = 630, + [631] = 551, + [632] = 632, + [633] = 605, + [634] = 551, + [635] = 612, + [636] = 636, + [637] = 552, + [638] = 593, + [639] = 550, + [640] = 574, + [641] = 552, + [642] = 563, + [643] = 597, + [644] = 551, + [645] = 612, + [646] = 605, + [647] = 552, + [648] = 648, + [649] = 557, [650] = 561, - [651] = 557, - [652] = 578, - [653] = 553, - [654] = 555, - [655] = 554, - [656] = 583, - [657] = 584, - [658] = 585, - [659] = 586, - [660] = 564, - [661] = 608, - [662] = 572, - [663] = 558, - [664] = 617, - [665] = 569, - [666] = 581, - [667] = 559, - [668] = 552, + [651] = 552, + [652] = 555, + [653] = 557, + [654] = 612, + [655] = 561, + [656] = 597, + [657] = 550, + [658] = 551, + [659] = 596, + [660] = 596, + [661] = 552, + [662] = 553, + [663] = 648, + [664] = 594, + [665] = 574, + [666] = 666, + [667] = 591, + [668] = 589, [669] = 552, - [670] = 582, - [671] = 559, - [672] = 572, - [673] = 564, - [674] = 586, - [675] = 585, - [676] = 676, + [670] = 552, + [671] = 593, + [672] = 557, + [673] = 587, + [674] = 579, + [675] = 586, + [676] = 580, [677] = 557, - [678] = 571, - [679] = 571, - [680] = 617, - [681] = 584, - [682] = 583, - [683] = 578, - [684] = 576, - [685] = 569, - [686] = 575, - [687] = 551, - [688] = 573, - [689] = 568, - [690] = 550, - [691] = 691, - [692] = 565, - [693] = 561, - [694] = 569, - [695] = 554, - [696] = 617, - [697] = 554, - [698] = 617, - [699] = 564, - [700] = 586, - [701] = 585, - [702] = 569, - [703] = 584, - [704] = 583, - [705] = 578, - [706] = 576, - [707] = 553, - [708] = 572, - [709] = 575, - [710] = 582, - [711] = 551, - [712] = 581, - [713] = 573, - [714] = 558, - [715] = 568, - [716] = 569, - [717] = 717, - [718] = 550, - [719] = 554, - [720] = 558, + [678] = 561, + [679] = 581, + [680] = 680, + [681] = 582, + [682] = 595, + [683] = 585, + [684] = 584, + [685] = 561, + [686] = 583, + [687] = 582, + [688] = 583, + [689] = 581, + [690] = 553, + [691] = 580, + [692] = 584, + [693] = 594, + [694] = 591, + [695] = 695, + [696] = 552, + [697] = 585, + [698] = 589, + [699] = 555, + [700] = 700, + [701] = 579, + [702] = 580, + [703] = 581, + [704] = 579, + [705] = 587, + [706] = 586, + [707] = 563, + [708] = 579, + [709] = 586, + [710] = 585, + [711] = 587, + [712] = 582, + [713] = 583, + [714] = 589, + [715] = 584, + [716] = 584, + [717] = 583, + [718] = 591, + [719] = 582, + [720] = 720, [721] = 581, - [722] = 582, - [723] = 565, - [724] = 561, - [725] = 554, - [726] = 561, - [727] = 565, - [728] = 561, - [729] = 729, - [730] = 557, - [731] = 565, - [732] = 550, - [733] = 568, - [734] = 573, - [735] = 551, - [736] = 555, - [737] = 575, - [738] = 553, - [739] = 576, - [740] = 572, - [741] = 578, - [742] = 583, - [743] = 564, - [744] = 584, - [745] = 569, - [746] = 585, - [747] = 565, - [748] = 586, - [749] = 749, - [750] = 552, - [751] = 559, - [752] = 586, - [753] = 585, - [754] = 564, - [755] = 561, - [756] = 571, - [757] = 569, - [758] = 558, - [759] = 617, - [760] = 646, - [761] = 568, - [762] = 558, - [763] = 763, - [764] = 584, - [765] = 573, - [766] = 590, - [767] = 583, - [768] = 578, - [769] = 582, - [770] = 552, - [771] = 581, - [772] = 551, - [773] = 575, - [774] = 576, - [775] = 576, - [776] = 569, - [777] = 578, - [778] = 575, - [779] = 559, - [780] = 583, - [781] = 584, - [782] = 572, - [783] = 783, - [784] = 784, - [785] = 551, - [786] = 571, - [787] = 573, - [788] = 585, - [789] = 568, - [790] = 586, - [791] = 571, - [792] = 550, - [793] = 617, - [794] = 565, - [795] = 552, - [796] = 617, - [797] = 559, - [798] = 561, - [799] = 569, - [800] = 554, - [801] = 571, - [802] = 564, - [803] = 554, - [804] = 559, - [805] = 552, - [806] = 572, + [722] = 594, + [723] = 580, + [724] = 574, + [725] = 597, + [726] = 579, + [727] = 596, + [728] = 580, + [729] = 581, + [730] = 579, + [731] = 582, + [732] = 583, + [733] = 584, + [734] = 585, + [735] = 586, + [736] = 585, + [737] = 587, + [738] = 586, + [739] = 589, + [740] = 580, + [741] = 587, + [742] = 589, + [743] = 591, + [744] = 594, + [745] = 745, + [746] = 581, + [747] = 700, + [748] = 596, + [749] = 591, + [750] = 593, + [751] = 582, + [752] = 596, + [753] = 594, + [754] = 754, + [755] = 583, + [756] = 584, + [757] = 597, + [758] = 597, + [759] = 550, + [760] = 585, + [761] = 586, + [762] = 550, + [763] = 587, + [764] = 612, + [765] = 589, + [766] = 561, + [767] = 557, + [768] = 594, + [769] = 720, + [770] = 596, + [771] = 552, + [772] = 591, + [773] = 589, + [774] = 597, + [775] = 587, + [776] = 586, + [777] = 612, + [778] = 574, + [779] = 585, + [780] = 584, + [781] = 612, + [782] = 595, + [783] = 605, + [784] = 583, + [785] = 785, + [786] = 786, + [787] = 582, + [788] = 581, + [789] = 553, + [790] = 605, + [791] = 612, + [792] = 561, + [793] = 555, + [794] = 563, + [795] = 557, + [796] = 580, + [797] = 551, + [798] = 591, + [799] = 594, + [800] = 579, + [801] = 605, + [802] = 596, + [803] = 552, + [804] = 597, + [805] = 595, + [806] = 563, [807] = 807, [808] = 807, [809] = 807, @@ -5489,837 +5496,837 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [833] = 830, [834] = 830, [835] = 835, - [836] = 835, - [837] = 837, - [838] = 835, - [839] = 837, - [840] = 840, - [841] = 837, + [836] = 836, + [837] = 836, + [838] = 838, + [839] = 838, + [840] = 835, + [841] = 835, [842] = 835, [843] = 835, [844] = 835, - [845] = 840, - [846] = 840, + [845] = 838, + [846] = 836, [847] = 847, [848] = 847, [849] = 849, [850] = 850, [851] = 850, - [852] = 850, - [853] = 853, - [854] = 853, - [855] = 853, - [856] = 856, - [857] = 850, - [858] = 853, - [859] = 849, - [860] = 850, - [861] = 850, - [862] = 853, - [863] = 863, - [864] = 850, + [852] = 849, + [853] = 850, + [854] = 850, + [855] = 855, + [856] = 850, + [857] = 855, + [858] = 855, + [859] = 850, + [860] = 860, + [861] = 855, + [862] = 855, + [863] = 850, + [864] = 864, [865] = 850, [866] = 866, - [867] = 866, - [868] = 868, - [869] = 847, - [870] = 850, - [871] = 866, - [872] = 872, - [873] = 866, + [867] = 867, + [868] = 847, + [869] = 867, + [870] = 864, + [871] = 850, + [872] = 850, + [873] = 867, [874] = 850, - [875] = 866, - [876] = 876, - [877] = 850, - [878] = 850, - [879] = 866, - [880] = 850, - [881] = 850, - [882] = 850, - [883] = 314, - [884] = 876, - [885] = 850, - [886] = 304, + [875] = 867, + [876] = 864, + [877] = 365, + [878] = 347, + [879] = 850, + [880] = 867, + [881] = 881, + [882] = 867, + [883] = 883, + [884] = 850, + [885] = 347, + [886] = 347, [887] = 849, - [888] = 876, - [889] = 856, - [890] = 294, - [891] = 891, - [892] = 892, - [893] = 876, - [894] = 304, - [895] = 892, - [896] = 892, - [897] = 314, - [898] = 304, - [899] = 892, - [900] = 314, - [901] = 293, - [902] = 892, - [903] = 892, - [904] = 314, - [905] = 892, - [906] = 304, - [907] = 892, - [908] = 300, - [909] = 892, - [910] = 850, - [911] = 299, - [912] = 912, - [913] = 913, - [914] = 314, - [915] = 915, - [916] = 300, - [917] = 917, - [918] = 918, - [919] = 292, - [920] = 299, - [921] = 293, - [922] = 294, - [923] = 923, - [924] = 304, - [925] = 925, + [888] = 365, + [889] = 850, + [890] = 363, + [891] = 347, + [892] = 359, + [893] = 295, + [894] = 850, + [895] = 895, + [896] = 864, + [897] = 304, + [898] = 365, + [899] = 365, + [900] = 860, + [901] = 850, + [902] = 902, + [903] = 295, + [904] = 365, + [905] = 305, + [906] = 906, + [907] = 363, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 364, + [913] = 304, + [914] = 295, + [915] = 363, + [916] = 916, + [917] = 304, + [918] = 368, + [919] = 347, + [920] = 906, + [921] = 359, + [922] = 922, + [923] = 347, + [924] = 924, + [925] = 906, [926] = 926, - [927] = 927, - [928] = 294, - [929] = 293, - [930] = 304, - [931] = 300, - [932] = 932, - [933] = 933, - [934] = 304, - [935] = 296, + [927] = 347, + [928] = 928, + [929] = 895, + [930] = 359, + [931] = 365, + [932] = 365, + [933] = 906, + [934] = 365, + [935] = 347, [936] = 936, - [937] = 937, - [938] = 337, - [939] = 939, - [940] = 314, - [941] = 941, - [942] = 299, - [943] = 943, - [944] = 304, - [945] = 300, + [937] = 895, + [938] = 906, + [939] = 850, + [940] = 906, + [941] = 363, + [942] = 906, + [943] = 365, + [944] = 906, + [945] = 945, [946] = 946, - [947] = 304, - [948] = 299, - [949] = 314, + [947] = 947, + [948] = 948, + [949] = 949, [950] = 950, - [951] = 891, - [952] = 299, - [953] = 325, - [954] = 913, - [955] = 314, - [956] = 956, - [957] = 322, - [958] = 891, - [959] = 314, - [960] = 300, - [961] = 961, - [962] = 917, - [963] = 963, + [951] = 951, + [952] = 359, + [953] = 363, + [954] = 926, + [955] = 347, + [956] = 313, + [957] = 957, + [958] = 322, + [959] = 906, + [960] = 359, + [961] = 936, + [962] = 359, + [963] = 926, [964] = 964, - [965] = 300, - [966] = 923, - [967] = 304, - [968] = 943, - [969] = 299, + [965] = 948, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 945, [970] = 970, - [971] = 299, - [972] = 314, + [971] = 945, + [972] = 950, [973] = 973, - [974] = 926, - [975] = 927, - [976] = 299, - [977] = 300, + [974] = 974, + [975] = 949, + [976] = 950, + [977] = 977, [978] = 978, - [979] = 979, + [979] = 949, [980] = 980, [981] = 981, - [982] = 322, - [983] = 983, - [984] = 325, - [985] = 300, + [982] = 982, + [983] = 947, + [984] = 947, + [985] = 985, [986] = 986, - [987] = 314, - [988] = 325, + [987] = 948, + [988] = 988, [989] = 989, [990] = 990, - [991] = 296, + [991] = 991, [992] = 992, - [993] = 296, + [993] = 993, [994] = 994, [995] = 995, - [996] = 912, - [997] = 304, - [998] = 314, - [999] = 939, - [1000] = 337, - [1001] = 950, - [1002] = 314, + [996] = 936, + [997] = 957, + [998] = 928, + [999] = 999, + [1000] = 1000, + [1001] = 922, + [1002] = 1002, [1003] = 1003, - [1004] = 1004, + [1004] = 368, [1005] = 1005, [1006] = 1006, - [1007] = 912, - [1008] = 299, - [1009] = 891, - [1010] = 300, - [1011] = 322, - [1012] = 1012, - [1013] = 1013, - [1014] = 956, - [1015] = 1015, - [1016] = 913, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 295, + [1012] = 347, + [1013] = 926, + [1014] = 347, + [1015] = 304, + [1016] = 1016, [1017] = 1017, - [1018] = 939, + [1018] = 957, [1019] = 1019, - [1020] = 941, - [1021] = 956, - [1022] = 1022, - [1023] = 1023, - [1024] = 1024, - [1025] = 1025, + [1020] = 1020, + [1021] = 1021, + [1022] = 911, + [1023] = 946, + [1024] = 916, + [1025] = 924, [1026] = 1026, [1027] = 1027, [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 337, + [1031] = 305, [1032] = 1032, [1033] = 1033, [1034] = 1034, [1035] = 1035, - [1036] = 925, + [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 1039, - [1040] = 1040, + [1039] = 946, + [1040] = 365, [1041] = 1041, [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 941, - [1046] = 327, - [1047] = 1047, - [1048] = 1048, - [1049] = 943, + [1045] = 1045, + [1046] = 1046, + [1047] = 313, + [1048] = 322, + [1049] = 1049, [1050] = 1050, [1051] = 1051, - [1052] = 1052, + [1052] = 305, [1053] = 1053, [1054] = 1054, [1055] = 1055, [1056] = 1056, - [1057] = 1057, - [1058] = 918, + [1057] = 902, + [1058] = 329, [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 950, + [1060] = 902, + [1061] = 340, + [1062] = 1062, [1063] = 1063, - [1064] = 338, + [1064] = 347, [1065] = 1065, [1066] = 1066, - [1067] = 915, - [1068] = 1068, - [1069] = 322, - [1070] = 294, - [1071] = 293, + [1067] = 368, + [1068] = 928, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 325, + [1076] = 1076, [1077] = 1077, - [1078] = 932, - [1079] = 927, - [1080] = 926, - [1081] = 933, - [1082] = 946, + [1078] = 1078, + [1079] = 1079, + [1080] = 363, + [1081] = 1081, + [1082] = 365, [1083] = 1083, - [1084] = 1084, - [1085] = 292, - [1086] = 299, + [1084] = 347, + [1085] = 1085, + [1086] = 1086, [1087] = 1087, [1088] = 1088, [1089] = 1089, [1090] = 1090, - [1091] = 1091, - [1092] = 913, - [1093] = 1093, + [1091] = 363, + [1092] = 365, + [1093] = 909, [1094] = 1094, - [1095] = 1095, + [1095] = 359, [1096] = 1096, - [1097] = 300, - [1098] = 1098, + [1097] = 1097, + [1098] = 365, [1099] = 1099, - [1100] = 915, - [1101] = 932, - [1102] = 1102, - [1103] = 923, - [1104] = 933, + [1100] = 1100, + [1101] = 359, + [1102] = 363, + [1103] = 1103, + [1104] = 1104, [1105] = 1105, [1106] = 1106, - [1107] = 304, - [1108] = 1108, - [1109] = 1109, - [1110] = 304, - [1111] = 917, - [1112] = 1112, + [1107] = 908, + [1108] = 910, + [1109] = 359, + [1110] = 1110, + [1111] = 1111, + [1112] = 951, [1113] = 1113, - [1114] = 946, + [1114] = 1114, [1115] = 1115, - [1116] = 314, + [1116] = 363, [1117] = 1117, - [1118] = 334, + [1118] = 1118, [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, + [1120] = 364, + [1121] = 347, + [1122] = 359, [1123] = 1123, - [1124] = 918, - [1125] = 299, - [1126] = 300, + [1124] = 368, + [1125] = 909, + [1126] = 895, [1127] = 1127, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 333, - [1132] = 1132, + [1128] = 364, + [1129] = 908, + [1130] = 910, + [1131] = 924, + [1132] = 916, [1133] = 1133, [1134] = 1134, - [1135] = 1135, + [1135] = 334, [1136] = 1136, - [1137] = 936, - [1138] = 1138, - [1139] = 292, - [1140] = 937, - [1141] = 937, - [1142] = 1142, - [1143] = 925, - [1144] = 1144, - [1145] = 936, - [1146] = 1146, + [1137] = 1137, + [1138] = 328, + [1139] = 322, + [1140] = 359, + [1141] = 313, + [1142] = 922, + [1143] = 363, + [1144] = 911, + [1145] = 951, + [1146] = 364, [1147] = 1147, - [1148] = 1148, + [1148] = 363, [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 304, + [1152] = 1152, [1153] = 1153, [1154] = 1154, [1155] = 1155, [1156] = 1156, - [1157] = 1157, + [1157] = 365, [1158] = 1158, - [1159] = 1039, - [1160] = 296, - [1161] = 1117, - [1162] = 1102, - [1163] = 1123, - [1164] = 1129, - [1165] = 1133, - [1166] = 1134, - [1167] = 912, - [1168] = 314, - [1169] = 939, - [1170] = 1053, - [1171] = 1099, - [1172] = 1096, - [1173] = 941, - [1174] = 1150, - [1175] = 956, - [1176] = 1034, - [1177] = 1151, - [1178] = 322, - [1179] = 1115, - [1180] = 937, - [1181] = 1135, - [1182] = 1136, - [1183] = 1138, - [1184] = 1094, - [1185] = 1113, - [1186] = 1112, - [1187] = 1095, - [1188] = 1158, - [1189] = 1150, - [1190] = 299, - [1191] = 1034, - [1192] = 1048, - [1193] = 1051, - [1194] = 994, - [1195] = 1053, - [1196] = 1121, - [1197] = 1120, - [1198] = 1109, - [1199] = 1151, - [1200] = 1108, - [1201] = 1138, - [1202] = 925, - [1203] = 936, - [1204] = 1122, - [1205] = 1105, - [1206] = 1127, - [1207] = 978, - [1208] = 1128, - [1209] = 1098, - [1210] = 1091, - [1211] = 1088, - [1212] = 1142, - [1213] = 1029, - [1214] = 300, - [1215] = 1147, - [1216] = 1157, - [1217] = 1149, - [1218] = 1132, - [1219] = 1144, - [1220] = 1156, - [1221] = 1154, - [1222] = 1146, - [1223] = 1136, - [1224] = 1135, - [1225] = 1072, - [1226] = 1158, - [1227] = 322, - [1228] = 994, - [1229] = 325, - [1230] = 1134, - [1231] = 1074, - [1232] = 1147, - [1233] = 1084, - [1234] = 1133, - [1235] = 1032, - [1236] = 1090, - [1237] = 1106, - [1238] = 1129, - [1239] = 1123, - [1240] = 1019, - [1241] = 1013, - [1242] = 1117, - [1243] = 1115, - [1244] = 1113, - [1245] = 973, - [1246] = 963, - [1247] = 1054, - [1248] = 1050, - [1249] = 1035, - [1250] = 1012, - [1251] = 1112, - [1252] = 1037, - [1253] = 1121, - [1254] = 923, - [1255] = 1120, - [1256] = 1033, - [1257] = 1040, - [1258] = 1041, - [1259] = 1119, - [1260] = 1052, - [1261] = 1087, - [1262] = 1047, - [1263] = 979, - [1264] = 299, - [1265] = 327, - [1266] = 1083, - [1267] = 1043, - [1268] = 1109, - [1269] = 1108, - [1270] = 1077, - [1271] = 300, - [1272] = 1068, - [1273] = 1073, - [1274] = 1075, - [1275] = 1042, - [1276] = 333, - [1277] = 980, - [1278] = 300, - [1279] = 1065, - [1280] = 338, - [1281] = 981, - [1282] = 1105, - [1283] = 322, - [1284] = 325, - [1285] = 304, - [1286] = 1066, - [1287] = 1098, - [1288] = 973, - [1289] = 1063, - [1290] = 1091, - [1291] = 963, - [1292] = 334, - [1293] = 1054, - [1294] = 1119, - [1295] = 1077, - [1296] = 1035, - [1297] = 1073, - [1298] = 1063, - [1299] = 1088, - [1300] = 1061, - [1301] = 334, - [1302] = 1044, - [1303] = 1027, - [1304] = 1059, - [1305] = 1060, - [1306] = 964, - [1307] = 926, - [1308] = 1052, - [1309] = 1050, - [1310] = 986, - [1311] = 333, - [1312] = 1057, - [1313] = 1056, - [1314] = 1055, + [1159] = 1147, + [1160] = 1104, + [1161] = 1089, + [1162] = 1066, + [1163] = 1065, + [1164] = 363, + [1165] = 1044, + [1166] = 1056, + [1167] = 1053, + [1168] = 1045, + [1169] = 924, + [1170] = 1046, + [1171] = 916, + [1172] = 1049, + [1173] = 1050, + [1174] = 902, + [1175] = 946, + [1176] = 1063, + [1177] = 911, + [1178] = 364, + [1179] = 1036, + [1180] = 1035, + [1181] = 368, + [1182] = 1016, + [1183] = 1105, + [1184] = 365, + [1185] = 1055, + [1186] = 328, + [1187] = 1042, + [1188] = 334, + [1189] = 1034, + [1190] = 1032, + [1191] = 1088, + [1192] = 974, + [1193] = 1090, + [1194] = 340, + [1195] = 1094, + [1196] = 1069, + [1197] = 1075, + [1198] = 329, + [1199] = 990, + [1200] = 991, + [1201] = 1044, + [1202] = 1045, + [1203] = 1046, + [1204] = 1097, + [1205] = 1099, + [1206] = 1076, + [1207] = 1104, + [1208] = 1105, + [1209] = 1106, + [1210] = 1070, + [1211] = 999, + [1212] = 1003, + [1213] = 1074, + [1214] = 1071, + [1215] = 1117, + [1216] = 1027, + [1217] = 1118, + [1218] = 1119, + [1219] = 1077, + [1220] = 1030, + [1221] = 313, + [1222] = 322, + [1223] = 1081, + [1224] = 1033, + [1225] = 1083, + [1226] = 368, + [1227] = 974, + [1228] = 1016, + [1229] = 1035, + [1230] = 1036, + [1231] = 990, + [1232] = 359, + [1233] = 1050, + [1234] = 991, + [1235] = 1083, + [1236] = 1053, + [1237] = 1079, + [1238] = 909, + [1239] = 1038, + [1240] = 1041, + [1241] = 364, + [1242] = 1056, + [1243] = 999, + [1244] = 1003, + [1245] = 1073, + [1246] = 1110, + [1247] = 1081, + [1248] = 1111, + [1249] = 365, + [1250] = 1250, + [1251] = 1065, + [1252] = 1123, + [1253] = 1027, + [1254] = 1049, + [1255] = 1030, + [1256] = 1066, + [1257] = 1033, + [1258] = 1088, + [1259] = 1038, + [1260] = 305, + [1261] = 1041, + [1262] = 1069, + [1263] = 1090, + [1264] = 1094, + [1265] = 1070, + [1266] = 1063, + [1267] = 1077, + [1268] = 1111, + [1269] = 1071, + [1270] = 1076, + [1271] = 1075, + [1272] = 1110, + [1273] = 359, + [1274] = 1073, + [1275] = 1127, + [1276] = 1100, + [1277] = 1089, + [1278] = 1078, + [1279] = 363, + [1280] = 1103, + [1281] = 1113, + [1282] = 1010, + [1283] = 1009, + [1284] = 1008, + [1285] = 1114, + [1286] = 359, + [1287] = 328, + [1288] = 1043, + [1289] = 1005, + [1290] = 1097, + [1291] = 1136, + [1292] = 1002, + [1293] = 1099, + [1294] = 1149, + [1295] = 1150, + [1296] = 1152, + [1297] = 347, + [1298] = 359, + [1299] = 1153, + [1300] = 1156, + [1301] = 1158, + [1302] = 1153, + [1303] = 1007, + [1304] = 1137, + [1305] = 1106, + [1306] = 1074, + [1307] = 1147, + [1308] = 994, + [1309] = 1100, + [1310] = 1086, + [1311] = 993, + [1312] = 1103, + [1313] = 1113, + [1314] = 1114, [1315] = 992, - [1316] = 1061, - [1317] = 1059, - [1318] = 1038, - [1319] = 995, - [1320] = 1027, - [1321] = 1032, - [1322] = 1038, - [1323] = 1017, - [1324] = 1033, - [1325] = 1039, - [1326] = 1040, - [1327] = 1041, - [1328] = 1026, - [1329] = 1042, - [1330] = 1028, - [1331] = 1025, - [1332] = 1083, - [1333] = 1068, - [1334] = 1066, - [1335] = 1025, - [1336] = 1003, - [1337] = 978, - [1338] = 1030, - [1339] = 961, - [1340] = 1157, - [1341] = 1156, - [1342] = 1154, - [1343] = 970, - [1344] = 983, - [1345] = 1003, - [1346] = 1057, - [1347] = 1012, - [1348] = 1013, - [1349] = 990, - [1350] = 1019, - [1351] = 299, - [1352] = 989, - [1353] = 983, - [1354] = 1093, - [1355] = 970, - [1356] = 989, - [1357] = 990, - [1358] = 1047, - [1359] = 300, - [1360] = 1087, - [1361] = 979, - [1362] = 1065, - [1363] = 325, - [1364] = 1004, - [1365] = 1056, - [1366] = 950, - [1367] = 927, - [1368] = 946, - [1369] = 1055, - [1370] = 1048, - [1371] = 1024, - [1372] = 1043, - [1373] = 1037, - [1374] = 1029, - [1375] = 1093, - [1376] = 1096, - [1377] = 1099, - [1378] = 1024, - [1379] = 1051, - [1380] = 1102, - [1381] = 1122, - [1382] = 292, - [1383] = 918, - [1384] = 304, - [1385] = 917, - [1386] = 933, - [1387] = 932, - [1388] = 915, - [1389] = 1127, - [1390] = 1132, - [1391] = 1144, - [1392] = 1146, - [1393] = 961, - [1394] = 1030, - [1395] = 337, - [1396] = 943, - [1397] = 1005, - [1398] = 1004, - [1399] = 1005, - [1400] = 1028, - [1401] = 1106, - [1402] = 1006, - [1403] = 1155, - [1404] = 1090, - [1405] = 1084, - [1406] = 1074, - [1407] = 1026, - [1408] = 1072, - [1409] = 1015, - [1410] = 1153, - [1411] = 1411, - [1412] = 1023, - [1413] = 1044, - [1414] = 1130, - [1415] = 1015, - [1416] = 1017, - [1417] = 980, - [1418] = 1060, - [1419] = 964, - [1420] = 314, - [1421] = 1022, - [1422] = 1089, - [1423] = 1148, - [1424] = 1130, - [1425] = 1155, - [1426] = 986, - [1427] = 1089, - [1428] = 992, - [1429] = 1153, - [1430] = 981, - [1431] = 995, - [1432] = 1149, - [1433] = 1148, - [1434] = 327, - [1435] = 1142, - [1436] = 1128, - [1437] = 1095, - [1438] = 299, - [1439] = 1094, - [1440] = 1006, - [1441] = 338, - [1442] = 1075, - [1443] = 1022, - [1444] = 1023, - [1445] = 1005, - [1446] = 1026, - [1447] = 983, - [1448] = 1054, - [1449] = 989, - [1450] = 1074, - [1451] = 1024, - [1452] = 986, - [1453] = 1003, - [1454] = 1077, - [1455] = 1035, - [1456] = 1073, - [1457] = 1128, - [1458] = 980, - [1459] = 963, - [1460] = 1037, - [1461] = 970, - [1462] = 1034, - [1463] = 1156, - [1464] = 973, - [1465] = 1063, - [1466] = 990, - [1467] = 1015, - [1468] = 1075, - [1469] = 1061, - [1470] = 1029, + [1316] = 989, + [1317] = 988, + [1318] = 1117, + [1319] = 1118, + [1320] = 347, + [1321] = 1119, + [1322] = 985, + [1323] = 982, + [1324] = 981, + [1325] = 1151, + [1326] = 1154, + [1327] = 1028, + [1328] = 980, + [1329] = 922, + [1330] = 1155, + [1331] = 1123, + [1332] = 1078, + [1333] = 1055, + [1334] = 1021, + [1335] = 910, + [1336] = 1133, + [1337] = 908, + [1338] = 1042, + [1339] = 978, + [1340] = 948, + [1341] = 947, + [1342] = 949, + [1343] = 950, + [1344] = 945, + [1345] = 1010, + [1346] = 1009, + [1347] = 951, + [1348] = 1008, + [1349] = 1043, + [1350] = 1005, + [1351] = 1002, + [1352] = 977, + [1353] = 936, + [1354] = 1021, + [1355] = 957, + [1356] = 329, + [1357] = 994, + [1358] = 993, + [1359] = 970, + [1360] = 992, + [1361] = 1034, + [1362] = 989, + [1363] = 967, + [1364] = 1127, + [1365] = 1133, + [1366] = 988, + [1367] = 1032, + [1368] = 985, + [1369] = 982, + [1370] = 981, + [1371] = 980, + [1372] = 978, + [1373] = 977, + [1374] = 363, + [1375] = 995, + [1376] = 1134, + [1377] = 970, + [1378] = 973, + [1379] = 986, + [1380] = 1006, + [1381] = 1072, + [1382] = 967, + [1383] = 1096, + [1384] = 968, + [1385] = 1087, + [1386] = 1085, + [1387] = 1136, + [1388] = 966, + [1389] = 363, + [1390] = 1137, + [1391] = 334, + [1392] = 928, + [1393] = 364, + [1394] = 1151, + [1395] = 1154, + [1396] = 995, + [1397] = 368, + [1398] = 973, + [1399] = 1028, + [1400] = 1155, + [1401] = 1062, + [1402] = 1149, + [1403] = 964, + [1404] = 968, + [1405] = 966, + [1406] = 1000, + [1407] = 1017, + [1408] = 1019, + [1409] = 1020, + [1410] = 1150, + [1411] = 1026, + [1412] = 1029, + [1413] = 1152, + [1414] = 1134, + [1415] = 964, + [1416] = 1000, + [1417] = 1017, + [1418] = 1037, + [1419] = 340, + [1420] = 1019, + [1421] = 1020, + [1422] = 1026, + [1423] = 1072, + [1424] = 1006, + [1425] = 986, + [1426] = 1054, + [1427] = 1029, + [1428] = 1051, + [1429] = 1037, + [1430] = 1054, + [1431] = 1115, + [1432] = 1059, + [1433] = 1062, + [1434] = 1085, + [1435] = 1051, + [1436] = 1087, + [1437] = 1115, + [1438] = 1086, + [1439] = 1096, + [1440] = 1079, + [1441] = 1007, + [1442] = 1158, + [1443] = 1156, + [1444] = 1059, + [1445] = 985, + [1446] = 1027, + [1447] = 1029, + [1448] = 964, + [1449] = 1036, + [1450] = 1035, + [1451] = 1026, + [1452] = 1054, + [1453] = 1016, + [1454] = 1127, + [1455] = 1037, + [1456] = 1020, + [1457] = 1056, + [1458] = 1019, + [1459] = 1085, + [1460] = 1105, + [1461] = 1106, + [1462] = 1134, + [1463] = 334, + [1464] = 1017, + [1465] = 1062, + [1466] = 1074, + [1467] = 1000, + [1468] = 1117, + [1469] = 1118, + [1470] = 1119, [1471] = 1032, - [1472] = 1072, - [1473] = 1150, - [1474] = 1146, - [1475] = 1096, - [1476] = 1059, - [1477] = 1057, - [1478] = 1056, - [1479] = 1055, - [1480] = 1119, - [1481] = 1109, - [1482] = 1154, - [1483] = 1095, - [1484] = 1043, - [1485] = 1025, - [1486] = 1112, - [1487] = 1113, - [1488] = 1108, - [1489] = 1115, - [1490] = 322, - [1491] = 1066, - [1492] = 1130, - [1493] = 1117, - [1494] = 1120, - [1495] = 1121, - [1496] = 1084, - [1497] = 994, - [1498] = 1089, - [1499] = 1105, - [1500] = 1068, - [1501] = 1099, - [1502] = 1158, - [1503] = 1094, - [1504] = 1023, - [1505] = 1022, - [1506] = 1148, - [1507] = 1153, - [1508] = 1083, - [1509] = 1149, - [1510] = 1098, - [1511] = 1102, - [1512] = 334, - [1513] = 1091, - [1514] = 1151, - [1515] = 1122, - [1516] = 1088, - [1517] = 1027, - [1518] = 1042, - [1519] = 1050, - [1520] = 1038, - [1521] = 1090, - [1522] = 1123, - [1523] = 300, - [1524] = 1052, - [1525] = 1129, - [1526] = 964, - [1527] = 1157, - [1528] = 1106, - [1529] = 1133, - [1530] = 1041, - [1531] = 1053, - [1532] = 1051, - [1533] = 1060, - [1534] = 1411, - [1535] = 1147, - [1536] = 1040, - [1537] = 327, - [1538] = 1134, - [1539] = 961, - [1540] = 1030, - [1541] = 325, - [1542] = 1028, + [1472] = 1050, + [1473] = 1053, + [1474] = 1049, + [1475] = 1133, + [1476] = 1045, + [1477] = 1250, + [1478] = 1034, + [1479] = 1065, + [1480] = 1042, + [1481] = 1055, + [1482] = 1104, + [1483] = 1021, + [1484] = 1099, + [1485] = 1044, + [1486] = 1063, + [1487] = 1149, + [1488] = 1066, + [1489] = 1150, + [1490] = 1089, + [1491] = 1152, + [1492] = 1078, + [1493] = 1069, + [1494] = 1070, + [1495] = 1071, + [1496] = 966, + [1497] = 968, + [1498] = 1038, + [1499] = 973, + [1500] = 364, + [1501] = 1153, + [1502] = 1002, + [1503] = 1005, + [1504] = 995, + [1505] = 994, + [1506] = 993, + [1507] = 992, + [1508] = 1043, + [1509] = 1008, + [1510] = 989, + [1511] = 1051, + [1512] = 1009, + [1513] = 1115, + [1514] = 1041, + [1515] = 1010, + [1516] = 967, + [1517] = 1059, + [1518] = 1156, + [1519] = 1147, + [1520] = 1158, + [1521] = 1114, + [1522] = 988, + [1523] = 359, + [1524] = 982, + [1525] = 1097, + [1526] = 970, + [1527] = 981, + [1528] = 1007, + [1529] = 1113, + [1530] = 1079, + [1531] = 1103, + [1532] = 1033, + [1533] = 1072, + [1534] = 1006, + [1535] = 1100, + [1536] = 980, + [1537] = 1096, + [1538] = 974, + [1539] = 990, + [1540] = 978, + [1541] = 977, + [1542] = 328, [1543] = 1155, - [1544] = 1044, - [1545] = 992, - [1546] = 333, - [1547] = 1142, - [1548] = 1065, - [1549] = 1048, - [1550] = 299, - [1551] = 981, - [1552] = 1093, - [1553] = 1135, - [1554] = 979, - [1555] = 1127, - [1556] = 1012, - [1557] = 338, - [1558] = 1132, - [1559] = 1136, - [1560] = 1017, - [1561] = 1138, - [1562] = 1006, - [1563] = 1087, - [1564] = 1144, - [1565] = 1004, - [1566] = 1039, - [1567] = 1019, - [1568] = 978, - [1569] = 1047, - [1570] = 1013, - [1571] = 1033, - [1572] = 995, + [1544] = 1076, + [1545] = 1028, + [1546] = 1030, + [1547] = 1046, + [1548] = 1123, + [1549] = 1111, + [1550] = 368, + [1551] = 986, + [1552] = 1110, + [1553] = 340, + [1554] = 1136, + [1555] = 1137, + [1556] = 1077, + [1557] = 1087, + [1558] = 1154, + [1559] = 1088, + [1560] = 1003, + [1561] = 363, + [1562] = 1075, + [1563] = 1090, + [1564] = 999, + [1565] = 1083, + [1566] = 1094, + [1567] = 1073, + [1568] = 1081, + [1569] = 991, + [1570] = 1151, + [1571] = 1086, + [1572] = 329, [1573] = 1573, - [1574] = 1573, - [1575] = 1573, - [1576] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, [1577] = 1573, [1578] = 1578, - [1579] = 950, + [1579] = 1579, [1580] = 1580, [1581] = 1581, - [1582] = 1578, - [1583] = 1583, - [1584] = 1583, - [1585] = 1583, - [1586] = 1578, - [1587] = 1587, - [1588] = 1578, - [1589] = 1578, - [1590] = 1583, + [1582] = 1582, + [1583] = 909, + [1584] = 1584, + [1585] = 1573, + [1586] = 1586, + [1587] = 1573, + [1588] = 1588, + [1589] = 1573, + [1590] = 951, [1591] = 1591, - [1592] = 1592, - [1593] = 1583, - [1594] = 1594, - [1595] = 1595, - [1596] = 1596, - [1597] = 1597, - [1598] = 1598, - [1599] = 943, - [1600] = 1600, + [1592] = 1591, + [1593] = 1593, + [1594] = 1593, + [1595] = 1591, + [1596] = 1591, + [1597] = 1593, + [1598] = 1593, + [1599] = 1591, + [1600] = 1593, [1601] = 1601, - [1602] = 1602, - [1603] = 1602, - [1604] = 1602, + [1602] = 1601, + [1603] = 1603, + [1604] = 1601, [1605] = 1605, [1606] = 1606, [1607] = 1607, [1608] = 1608, - [1609] = 1606, - [1610] = 1607, + [1609] = 1609, + [1610] = 1606, [1611] = 1611, - [1612] = 1608, - [1613] = 1607, - [1614] = 1614, - [1615] = 1606, - [1616] = 1611, - [1617] = 1605, - [1618] = 1611, - [1619] = 1608, + [1612] = 1605, + [1613] = 1606, + [1614] = 1605, + [1615] = 1609, + [1616] = 1608, + [1617] = 1606, + [1618] = 1606, + [1619] = 1611, [1620] = 1607, - [1621] = 1611, - [1622] = 1605, - [1623] = 1605, - [1624] = 1614, - [1625] = 1607, - [1626] = 1614, - [1627] = 1608, + [1621] = 1605, + [1622] = 1611, + [1623] = 1607, + [1624] = 1608, + [1625] = 1609, + [1626] = 1611, + [1627] = 1607, [1628] = 1608, [1629] = 1606, - [1630] = 1607, - [1631] = 1608, - [1632] = 1606, - [1633] = 1607, - [1634] = 1614, - [1635] = 1606, + [1630] = 1609, + [1631] = 1605, + [1632] = 1611, + [1633] = 1611, + [1634] = 1609, + [1635] = 1609, [1636] = 1608, - [1637] = 1614, - [1638] = 1605, - [1639] = 1611, + [1637] = 1608, + [1638] = 1607, + [1639] = 1609, [1640] = 1605, - [1641] = 1611, - [1642] = 1614, - [1643] = 1606, - [1644] = 1605, - [1645] = 1611, - [1646] = 1614, + [1641] = 1608, + [1642] = 1611, + [1643] = 1605, + [1644] = 1607, + [1645] = 1606, + [1646] = 1607, [1647] = 1647, [1648] = 1648, [1649] = 1648, - [1650] = 1647, - [1651] = 1647, - [1652] = 1647, - [1653] = 1647, + [1650] = 1648, + [1651] = 1648, + [1652] = 1648, + [1653] = 1648, [1654] = 1654, [1655] = 1647, - [1656] = 1647, + [1656] = 1648, [1657] = 1657, [1658] = 1657, [1659] = 1659, [1660] = 1659, - [1661] = 1659, - [1662] = 1657, - [1663] = 1659, - [1664] = 1657, - [1665] = 1657, - [1666] = 1659, + [1661] = 1657, + [1662] = 1659, + [1663] = 1657, + [1664] = 1659, + [1665] = 1659, + [1666] = 1657, [1667] = 1667, [1668] = 1667, [1669] = 1667, @@ -6335,461 +6342,461 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1679] = 1679, [1680] = 1680, [1681] = 1681, - [1682] = 1680, - [1683] = 1679, - [1684] = 1684, - [1685] = 1681, - [1686] = 1679, - [1687] = 1680, - [1688] = 1680, - [1689] = 1684, - [1690] = 1680, - [1691] = 1691, + [1682] = 1682, + [1683] = 1682, + [1684] = 1682, + [1685] = 1679, + [1686] = 1686, + [1687] = 1682, + [1688] = 1679, + [1689] = 1681, + [1690] = 1686, + [1691] = 1682, [1692] = 1681, - [1693] = 1684, + [1693] = 1686, [1694] = 1694, [1695] = 1695, [1696] = 1696, - [1697] = 1697, + [1697] = 1694, [1698] = 1698, [1699] = 1699, - [1700] = 1697, + [1700] = 1700, [1701] = 1701, - [1702] = 1694, + [1702] = 1702, [1703] = 1703, [1704] = 1704, - [1705] = 1705, + [1705] = 1702, [1706] = 1706, [1707] = 1707, - [1708] = 1708, - [1709] = 1699, - [1710] = 1696, - [1711] = 1695, - [1712] = 1712, - [1713] = 1713, - [1714] = 1708, + [1708] = 1706, + [1709] = 1701, + [1710] = 1700, + [1711] = 1711, + [1712] = 1701, + [1713] = 1702, + [1714] = 1703, [1715] = 1715, - [1716] = 1716, + [1716] = 1704, [1717] = 1717, - [1718] = 1713, + [1718] = 1718, [1719] = 1719, - [1720] = 1705, - [1721] = 1715, - [1722] = 1707, - [1723] = 1713, + [1720] = 1720, + [1721] = 1721, + [1722] = 1696, + [1723] = 1707, [1724] = 1724, - [1725] = 1725, - [1726] = 1715, + [1725] = 1696, + [1726] = 1726, [1727] = 1727, - [1728] = 1712, - [1729] = 1729, - [1730] = 1730, - [1731] = 1729, - [1732] = 1705, - [1733] = 1733, - [1734] = 1713, - [1735] = 1717, - [1736] = 1729, - [1737] = 1725, - [1738] = 1712, + [1728] = 1728, + [1729] = 1706, + [1730] = 1707, + [1731] = 1726, + [1732] = 1732, + [1733] = 1700, + [1734] = 1718, + [1735] = 1711, + [1736] = 1726, + [1737] = 1698, + [1738] = 1694, [1739] = 1706, - [1740] = 1712, - [1741] = 1715, - [1742] = 1742, - [1743] = 1743, + [1740] = 1740, + [1741] = 1741, + [1742] = 1741, + [1743] = 1728, [1744] = 1744, - [1745] = 1745, - [1746] = 1719, + [1745] = 1740, + [1746] = 1744, [1747] = 1696, - [1748] = 1748, + [1748] = 1711, [1749] = 1749, - [1750] = 1699, - [1751] = 1708, - [1752] = 1716, - [1753] = 1707, - [1754] = 1695, - [1755] = 1704, - [1756] = 1712, - [1757] = 1706, - [1758] = 1704, - [1759] = 1742, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1704, - [1764] = 1748, - [1765] = 1694, - [1766] = 1694, - [1767] = 1749, - [1768] = 1708, - [1769] = 1699, - [1770] = 1705, - [1771] = 1707, - [1772] = 1749, - [1773] = 1708, - [1774] = 1713, - [1775] = 1775, - [1776] = 1697, - [1777] = 1725, - [1778] = 1748, - [1779] = 1697, - [1780] = 1715, - [1781] = 1698, - [1782] = 1697, - [1783] = 1696, - [1784] = 1695, - [1785] = 1748, - [1786] = 1706, - [1787] = 1729, - [1788] = 1698, - [1789] = 1748, - [1790] = 1725, - [1791] = 1717, - [1792] = 1707, - [1793] = 1742, - [1794] = 1749, - [1795] = 1698, - [1796] = 1742, - [1797] = 1695, - [1798] = 1717, - [1799] = 1706, - [1800] = 1704, - [1801] = 1717, - [1802] = 1725, - [1803] = 1696, - [1804] = 1715, - [1805] = 1698, - [1806] = 1749, - [1807] = 1807, - [1808] = 1705, - [1809] = 1742, - [1810] = 1729, - [1811] = 1694, - [1812] = 1699, + [1750] = 1744, + [1751] = 1703, + [1752] = 1728, + [1753] = 1753, + [1754] = 1754, + [1755] = 1732, + [1756] = 1741, + [1757] = 1740, + [1758] = 1758, + [1759] = 1717, + [1760] = 1721, + [1761] = 1711, + [1762] = 1728, + [1763] = 1763, + [1764] = 1700, + [1765] = 1765, + [1766] = 1728, + [1767] = 1701, + [1768] = 1707, + [1769] = 1769, + [1770] = 1696, + [1771] = 1698, + [1772] = 1704, + [1773] = 1694, + [1774] = 1726, + [1775] = 1700, + [1776] = 1704, + [1777] = 1744, + [1778] = 1744, + [1779] = 1715, + [1780] = 1703, + [1781] = 1781, + [1782] = 1728, + [1783] = 1706, + [1784] = 1715, + [1785] = 1781, + [1786] = 1740, + [1787] = 1718, + [1788] = 1781, + [1789] = 1715, + [1790] = 1715, + [1791] = 1781, + [1792] = 1698, + [1793] = 1741, + [1794] = 1694, + [1795] = 1726, + [1796] = 1732, + [1797] = 1711, + [1798] = 1726, + [1799] = 1698, + [1800] = 1707, + [1801] = 1718, + [1802] = 1718, + [1803] = 1732, + [1804] = 1702, + [1805] = 1702, + [1806] = 1703, + [1807] = 1706, + [1808] = 1741, + [1809] = 1740, + [1810] = 1732, + [1811] = 1701, + [1812] = 1812, [1813] = 1813, [1814] = 1814, - [1815] = 1705, - [1816] = 1713, + [1815] = 1704, + [1816] = 1781, [1817] = 1817, [1818] = 1818, [1819] = 1817, [1820] = 1820, - [1821] = 1820, - [1822] = 1822, - [1823] = 1822, + [1821] = 1821, + [1822] = 1821, + [1823] = 1820, [1824] = 1824, [1825] = 1825, - [1826] = 1822, - [1827] = 1822, + [1826] = 1824, + [1827] = 1825, [1828] = 1828, - [1829] = 1822, - [1830] = 1830, - [1831] = 1822, - [1832] = 1830, - [1833] = 1824, - [1834] = 1828, + [1829] = 1821, + [1830] = 1825, + [1831] = 1828, + [1832] = 1821, + [1833] = 1825, + [1834] = 1834, [1835] = 1835, - [1836] = 1824, - [1837] = 1828, - [1838] = 1818, - [1839] = 1828, - [1840] = 1824, + [1836] = 1821, + [1837] = 1818, + [1838] = 1828, + [1839] = 1824, + [1840] = 1828, [1841] = 1824, - [1842] = 1828, - [1843] = 1830, - [1844] = 1830, - [1845] = 1830, - [1846] = 1846, + [1842] = 1825, + [1843] = 1821, + [1844] = 1824, + [1845] = 1828, + [1846] = 1821, [1847] = 1847, - [1848] = 1822, - [1849] = 1846, - [1850] = 1846, - [1851] = 1822, + [1848] = 1821, + [1849] = 1849, + [1850] = 1847, + [1851] = 1847, [1852] = 1852, - [1853] = 1822, - [1854] = 1854, - [1855] = 1822, + [1853] = 1853, + [1854] = 1821, + [1855] = 1853, [1856] = 1856, - [1857] = 1857, - [1858] = 1854, - [1859] = 1859, + [1857] = 1821, + [1858] = 1821, + [1859] = 1821, [1860] = 1860, - [1861] = 1861, + [1861] = 1853, [1862] = 1862, - [1863] = 1863, - [1864] = 1861, + [1863] = 1852, + [1864] = 1852, [1865] = 1865, - [1866] = 1866, - [1867] = 1854, - [1868] = 1817, - [1869] = 1869, - [1870] = 1822, - [1871] = 1871, - [1872] = 1856, - [1873] = 1856, - [1874] = 1874, - [1875] = 1822, - [1876] = 1859, - [1877] = 1854, - [1878] = 1856, - [1879] = 1822, - [1880] = 1874, - [1881] = 1854, - [1882] = 1856, - [1883] = 1822, - [1884] = 1822, - [1885] = 1822, - [1886] = 1856, - [1887] = 1874, - [1888] = 1859, - [1889] = 1854, - [1890] = 1822, - [1891] = 1822, - [1892] = 1892, - [1893] = 1861, - [1894] = 1822, - [1895] = 1895, - [1896] = 1861, - [1897] = 1897, - [1898] = 943, - [1899] = 1899, - [1900] = 1822, - [1901] = 950, - [1902] = 1818, - [1903] = 1861, - [1904] = 1904, - [1905] = 1825, - [1906] = 1892, - [1907] = 1907, + [1866] = 1853, + [1867] = 1853, + [1868] = 1862, + [1869] = 1856, + [1870] = 1870, + [1871] = 1856, + [1872] = 1852, + [1873] = 1817, + [1874] = 1821, + [1875] = 1853, + [1876] = 1821, + [1877] = 1821, + [1878] = 1878, + [1879] = 1852, + [1880] = 1821, + [1881] = 1852, + [1882] = 1882, + [1883] = 1883, + [1884] = 1884, + [1885] = 1885, + [1886] = 1886, + [1887] = 1887, + [1888] = 1884, + [1889] = 1862, + [1890] = 1890, + [1891] = 1891, + [1892] = 1884, + [1893] = 1884, + [1894] = 1894, + [1895] = 909, + [1896] = 1821, + [1897] = 1821, + [1898] = 1818, + [1899] = 951, + [1900] = 1900, + [1901] = 1821, + [1902] = 1902, + [1903] = 1903, + [1904] = 1835, + [1905] = 1821, + [1906] = 1906, + [1907] = 1884, [1908] = 1908, - [1909] = 1892, - [1910] = 1861, + [1909] = 1909, + [1910] = 1821, [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 1861, - [1915] = 1913, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1913, - [1921] = 1913, - [1922] = 1861, - [1923] = 1904, - [1924] = 1924, - [1925] = 1913, - [1926] = 1913, - [1927] = 1924, - [1928] = 1913, - [1929] = 1929, + [1912] = 1909, + [1913] = 1909, + [1914] = 1909, + [1915] = 1909, + [1916] = 1884, + [1917] = 1902, + [1918] = 1884, + [1919] = 1909, + [1920] = 1902, + [1921] = 1884, + [1922] = 1032, + [1923] = 1923, + [1924] = 1909, + [1925] = 1900, + [1926] = 1884, + [1927] = 1900, + [1928] = 1928, + [1929] = 1909, [1930] = 1930, - [1931] = 1930, - [1932] = 1822, - [1933] = 1904, - [1934] = 1913, - [1935] = 1913, - [1936] = 1861, - [1937] = 979, + [1931] = 1931, + [1932] = 1909, + [1933] = 1077, + [1934] = 1934, + [1935] = 1928, + [1936] = 1936, + [1937] = 1911, [1938] = 1938, - [1939] = 1908, + [1939] = 1939, [1940] = 1940, - [1941] = 978, - [1942] = 1938, - [1943] = 1861, + [1941] = 1941, + [1942] = 1942, + [1943] = 1900, [1944] = 1944, - [1945] = 1908, - [1946] = 1944, - [1947] = 1904, - [1948] = 1861, - [1949] = 1917, - [1950] = 1950, - [1951] = 1904, - [1952] = 1904, - [1953] = 1944, - [1954] = 1954, - [1955] = 1955, - [1956] = 1955, - [1957] = 1950, - [1958] = 1861, - [1959] = 1917, - [1960] = 1960, - [1961] = 1954, - [1962] = 1944, - [1963] = 1944, - [1964] = 1908, - [1965] = 1904, - [1966] = 1950, - [1967] = 1918, + [1945] = 1945, + [1946] = 1941, + [1947] = 1884, + [1948] = 1900, + [1949] = 1941, + [1950] = 1941, + [1951] = 1951, + [1952] = 1952, + [1953] = 1953, + [1954] = 1923, + [1955] = 1941, + [1956] = 1956, + [1957] = 1957, + [1958] = 1953, + [1959] = 1900, + [1960] = 1111, + [1961] = 1923, + [1962] = 1089, + [1963] = 1963, + [1964] = 1952, + [1965] = 1936, + [1966] = 1110, + [1967] = 1078, [1968] = 1968, - [1969] = 1969, - [1970] = 943, - [1971] = 1971, - [1972] = 1950, - [1973] = 1852, - [1974] = 1916, - [1975] = 1975, - [1976] = 1954, + [1969] = 1884, + [1970] = 1884, + [1971] = 1936, + [1972] = 1972, + [1973] = 1972, + [1974] = 1957, + [1975] = 1884, + [1976] = 1976, [1977] = 1977, - [1978] = 1908, - [1979] = 1907, - [1980] = 1908, - [1981] = 1022, - [1982] = 1023, - [1983] = 1904, - [1984] = 1907, - [1985] = 1985, - [1986] = 1986, - [1987] = 1871, - [1988] = 1954, - [1989] = 950, - [1990] = 1990, - [1991] = 1857, - [1992] = 1862, - [1993] = 1916, - [1994] = 1954, - [1995] = 1916, - [1996] = 1860, - [1997] = 1907, - [1998] = 1998, - [1999] = 1861, - [2000] = 1986, - [2001] = 2001, - [2002] = 1052, - [2003] = 1897, - [2004] = 1050, - [2005] = 1865, - [2006] = 1904, - [2007] = 1977, - [2008] = 2008, - [2009] = 2009, - [2010] = 1975, - [2011] = 1977, - [2012] = 1950, - [2013] = 1975, - [2014] = 1897, - [2015] = 1861, - [2016] = 1866, - [2017] = 1977, - [2018] = 1975, - [2019] = 1917, - [2020] = 1954, - [2021] = 1975, - [2022] = 1977, - [2023] = 1950, + [1978] = 1900, + [1979] = 1952, + [1980] = 1952, + [1981] = 1923, + [1982] = 1982, + [1983] = 1976, + [1984] = 1976, + [1985] = 951, + [1986] = 1982, + [1987] = 1891, + [1988] = 1988, + [1989] = 1952, + [1990] = 1939, + [1991] = 1934, + [1992] = 1988, + [1993] = 1885, + [1994] = 1886, + [1995] = 1982, + [1996] = 1890, + [1997] = 1882, + [1998] = 1883, + [1999] = 1976, + [2000] = 1939, + [2001] = 1923, + [2002] = 1865, + [2003] = 1908, + [2004] = 1923, + [2005] = 1884, + [2006] = 1952, + [2007] = 1982, + [2008] = 1934, + [2009] = 1900, + [2010] = 1939, + [2011] = 2011, + [2012] = 1936, + [2013] = 1976, + [2014] = 1982, + [2015] = 909, + [2016] = 1934, + [2017] = 1878, + [2018] = 1957, + [2019] = 1891, + [2020] = 1957, + [2021] = 1957, + [2022] = 1957, + [2023] = 1900, [2024] = 2024, - [2025] = 2024, - [2026] = 2024, - [2027] = 1908, - [2028] = 1897, - [2029] = 1908, - [2030] = 2030, - [2031] = 2031, - [2032] = 2024, - [2033] = 2024, - [2034] = 1950, - [2035] = 2024, - [2036] = 1950, - [2037] = 1954, - [2038] = 1911, - [2039] = 1908, - [2040] = 1897, - [2041] = 1904, - [2042] = 2042, - [2043] = 1954, - [2044] = 1940, + [2025] = 1900, + [2026] = 1952, + [2027] = 2024, + [2028] = 2024, + [2029] = 2024, + [2030] = 1923, + [2031] = 1923, + [2032] = 2032, + [2033] = 1891, + [2034] = 1891, + [2035] = 1957, + [2036] = 1938, + [2037] = 2037, + [2038] = 1944, + [2039] = 1923, + [2040] = 1957, + [2041] = 2041, + [2042] = 1952, + [2043] = 2024, + [2044] = 2024, [2045] = 2045, - [2046] = 1950, - [2047] = 2045, - [2048] = 1954, - [2049] = 1954, + [2046] = 1939, + [2047] = 1928, + [2048] = 2045, + [2049] = 2045, [2050] = 2045, - [2051] = 1897, - [2052] = 2045, + [2051] = 2045, + [2052] = 1923, [2053] = 2045, - [2054] = 2054, - [2055] = 1908, - [2056] = 1924, - [2057] = 1950, - [2058] = 2058, - [2059] = 1954, - [2060] = 1930, - [2061] = 2045, - [2062] = 2062, - [2063] = 1950, - [2064] = 2045, - [2065] = 1950, - [2066] = 2066, - [2067] = 1907, - [2068] = 1954, - [2069] = 2045, - [2070] = 1916, + [2054] = 1911, + [2055] = 1957, + [2056] = 1957, + [2057] = 1934, + [2058] = 1952, + [2059] = 2059, + [2060] = 1957, + [2061] = 2061, + [2062] = 1952, + [2063] = 2063, + [2064] = 1952, + [2065] = 2065, + [2066] = 1891, + [2067] = 1952, + [2068] = 2045, + [2069] = 1957, + [2070] = 2045, [2071] = 2045, - [2072] = 1918, - [2073] = 1938, - [2074] = 1990, - [2075] = 1897, - [2076] = 1897, - [2077] = 1950, - [2078] = 1954, - [2079] = 1954, - [2080] = 1985, - [2081] = 1950, - [2082] = 1954, - [2083] = 1950, - [2084] = 1954, - [2085] = 1950, + [2072] = 1953, + [2073] = 1952, + [2074] = 1952, + [2075] = 1957, + [2076] = 1952, + [2077] = 1957, + [2078] = 1891, + [2079] = 2011, + [2080] = 1957, + [2081] = 1891, + [2082] = 1952, + [2083] = 1908, + [2084] = 1977, + [2085] = 1957, [2086] = 2086, [2087] = 2086, [2088] = 2088, [2089] = 2089, - [2090] = 2090, + [2090] = 2086, [2091] = 2091, - [2092] = 2088, - [2093] = 1954, - [2094] = 2086, - [2095] = 2088, - [2096] = 2089, - [2097] = 2090, - [2098] = 2086, - [2099] = 2089, - [2100] = 2088, - [2101] = 2091, + [2092] = 2086, + [2093] = 2041, + [2094] = 2089, + [2095] = 2086, + [2096] = 2096, + [2097] = 2086, + [2098] = 2091, + [2099] = 2088, + [2100] = 2096, + [2101] = 2089, [2102] = 2088, [2103] = 2091, - [2104] = 2090, + [2104] = 2088, [2105] = 2086, - [2106] = 2086, - [2107] = 2089, - [2108] = 2086, - [2109] = 2042, - [2110] = 1950, - [2111] = 2088, - [2112] = 2089, - [2113] = 1940, - [2114] = 1897, - [2115] = 2088, - [2116] = 2089, - [2117] = 2091, - [2118] = 2086, - [2119] = 2089, - [2120] = 2088, - [2121] = 2090, - [2122] = 2089, - [2123] = 2091, - [2124] = 2090, - [2125] = 2091, - [2126] = 2090, + [2106] = 2091, + [2107] = 2088, + [2108] = 1957, + [2109] = 2091, + [2110] = 2088, + [2111] = 2091, + [2112] = 2086, + [2113] = 2091, + [2114] = 2096, + [2115] = 2096, + [2116] = 2096, + [2117] = 2089, + [2118] = 2096, + [2119] = 2091, + [2120] = 2096, + [2121] = 2088, + [2122] = 2086, + [2123] = 1891, + [2124] = 2089, + [2125] = 2088, + [2126] = 2089, [2127] = 2089, - [2128] = 1897, - [2129] = 2091, - [2130] = 2090, - [2131] = 2088, - [2132] = 2091, - [2133] = 2090, - [2134] = 2090, - [2135] = 2086, - [2136] = 2091, + [2128] = 1944, + [2129] = 2096, + [2130] = 2091, + [2131] = 2089, + [2132] = 1891, + [2133] = 1952, + [2134] = 2096, + [2135] = 2088, + [2136] = 2089, [2137] = 2137, [2138] = 2137, [2139] = 2137, @@ -6801,8 +6808,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2145] = 2137, [2146] = 2146, [2147] = 2146, - [2148] = 2148, - [2149] = 2146, + [2148] = 2146, + [2149] = 2149, [2150] = 2146, [2151] = 2146, [2152] = 2146, @@ -6816,72 +6823,72 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2160] = 2156, [2161] = 2161, [2162] = 2161, - [2163] = 2163, - [2164] = 2163, + [2163] = 2161, + [2164] = 2164, [2165] = 2165, - [2166] = 2161, - [2167] = 2161, - [2168] = 2163, - [2169] = 2161, + [2166] = 2164, + [2167] = 2164, + [2168] = 2161, + [2169] = 2164, [2170] = 2165, - [2171] = 2161, + [2171] = 2165, [2172] = 2161, [2173] = 2165, - [2174] = 2165, - [2175] = 2165, - [2176] = 2163, + [2174] = 2164, + [2175] = 2161, + [2176] = 2165, [2177] = 2161, - [2178] = 2165, - [2179] = 2163, + [2178] = 2161, + [2179] = 2161, [2180] = 2165, - [2181] = 2163, + [2181] = 2161, [2182] = 2165, [2183] = 2161, - [2184] = 2184, - [2185] = 2163, - [2186] = 2161, - [2187] = 2165, + [2184] = 2165, + [2185] = 2161, + [2186] = 2165, + [2187] = 2164, [2188] = 2161, - [2189] = 2165, + [2189] = 2164, [2190] = 2165, [2191] = 2165, [2192] = 2165, [2193] = 2161, [2194] = 2165, - [2195] = 2161, - [2196] = 2161, + [2195] = 2195, + [2196] = 2165, [2197] = 2165, [2198] = 2161, - [2199] = 2161, - [2200] = 2165, - [2201] = 2201, - [2202] = 2202, - [2203] = 327, - [2204] = 338, + [2199] = 2165, + [2200] = 2161, + [2201] = 328, + [2202] = 334, + [2203] = 2203, + [2204] = 2204, [2205] = 2205, [2206] = 2206, [2207] = 2207, [2208] = 2208, [2209] = 2209, [2210] = 2210, - [2211] = 2008, - [2212] = 2212, - [2213] = 2213, - [2214] = 292, - [2215] = 1969, - [2216] = 2216, + [2211] = 1963, + [2212] = 328, + [2213] = 304, + [2214] = 295, + [2215] = 1956, + [2216] = 305, [2217] = 2217, - [2218] = 2218, - [2219] = 327, - [2220] = 293, - [2221] = 294, + [2218] = 334, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, [2222] = 2222, [2223] = 2223, - [2224] = 1998, - [2225] = 338, + [2224] = 1945, + [2225] = 2225, [2226] = 2226, - [2227] = 291, - [2228] = 2228, + [2227] = 302, + [2228] = 1063, [2229] = 2229, [2230] = 2230, [2231] = 2231, @@ -6891,7 +6898,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2235] = 2235, [2236] = 2236, [2237] = 2237, - [2238] = 314, + [2238] = 2238, [2239] = 2239, [2240] = 2240, [2241] = 2241, @@ -6903,29 +6910,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2247] = 2247, [2248] = 2248, [2249] = 2249, - [2250] = 2250, - [2251] = 1015, - [2252] = 1024, - [2253] = 304, - [2254] = 2250, + [2250] = 365, + [2251] = 2251, + [2252] = 2252, + [2253] = 2235, + [2254] = 2254, [2255] = 2255, [2256] = 2256, - [2257] = 2257, + [2257] = 2241, [2258] = 2258, - [2259] = 2250, - [2260] = 2250, + [2259] = 2235, + [2260] = 2260, [2261] = 2261, - [2262] = 2262, + [2262] = 2241, [2263] = 2263, - [2264] = 2264, - [2265] = 2250, + [2264] = 347, + [2265] = 2265, [2266] = 2266, [2267] = 2267, - [2268] = 2250, + [2268] = 2268, [2269] = 2269, [2270] = 2270, [2271] = 2271, - [2272] = 2272, + [2272] = 2235, [2273] = 2273, [2274] = 2274, [2275] = 2275, @@ -6937,24 +6944,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2281] = 2281, [2282] = 2282, [2283] = 2283, - [2284] = 292, - [2285] = 293, + [2284] = 2284, + [2285] = 2285, [2286] = 2286, [2287] = 2287, [2288] = 2288, - [2289] = 294, + [2289] = 2289, [2290] = 2290, [2291] = 2291, - [2292] = 2250, + [2292] = 1046, [2293] = 2293, - [2294] = 2294, + [2294] = 1049, [2295] = 2295, [2296] = 2296, [2297] = 2297, [2298] = 2298, [2299] = 2299, [2300] = 2300, - [2301] = 2301, + [2301] = 2235, [2302] = 2302, [2303] = 2303, [2304] = 2304, @@ -6962,16 +6969,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2306] = 2306, [2307] = 2307, [2308] = 2308, - [2309] = 2255, - [2310] = 296, + [2309] = 2309, + [2310] = 2310, [2311] = 2311, [2312] = 2312, [2313] = 2313, - [2314] = 2314, - [2315] = 337, + [2314] = 2235, + [2315] = 2315, [2316] = 2316, [2317] = 2317, - [2318] = 2318, + [2318] = 2235, [2319] = 2319, [2320] = 2320, [2321] = 2321, @@ -6979,36 +6986,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2323] = 2323, [2324] = 2324, [2325] = 2325, - [2326] = 2326, + [2326] = 2241, [2327] = 2327, [2328] = 2328, [2329] = 2329, [2330] = 2330, [2331] = 2331, - [2332] = 2255, + [2332] = 2332, [2333] = 2333, [2334] = 2334, [2335] = 2335, [2336] = 2336, - [2337] = 2255, + [2337] = 2337, [2338] = 2338, - [2339] = 2339, + [2339] = 304, [2340] = 2340, - [2341] = 2341, - [2342] = 2342, - [2343] = 2343, + [2341] = 295, + [2342] = 322, + [2343] = 305, [2344] = 2344, [2345] = 2345, - [2346] = 2346, + [2346] = 2235, [2347] = 2347, - [2348] = 1029, + [2348] = 2348, [2349] = 2349, [2350] = 2350, [2351] = 2351, - [2352] = 2352, + [2352] = 313, [2353] = 2353, [2354] = 2354, - [2355] = 2250, + [2355] = 2355, [2356] = 2356, [2357] = 2357, [2358] = 2358, @@ -7016,17 +7023,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2360] = 2360, [2361] = 2361, [2362] = 2362, - [2363] = 2363, - [2364] = 1043, + [2363] = 1045, + [2364] = 2364, [2365] = 2365, [2366] = 2366, [2367] = 2367, [2368] = 2368, - [2369] = 2369, - [2370] = 2250, + [2369] = 2235, + [2370] = 1044, [2371] = 2371, [2372] = 2372, - [2373] = 2255, + [2373] = 2373, [2374] = 2374, [2375] = 2375, [2376] = 2376, @@ -7034,8 +7041,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2378] = 2378, [2379] = 2379, [2380] = 2380, - [2381] = 2381, - [2382] = 1037, + [2381] = 2241, + [2382] = 2382, [2383] = 2383, [2384] = 2384, [2385] = 2385, @@ -7043,982 +7050,982 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2387] = 2387, [2388] = 2388, [2389] = 2389, - [2390] = 2304, + [2390] = 2367, [2391] = 2391, - [2392] = 2279, - [2393] = 2393, - [2394] = 2394, - [2395] = 2272, + [2392] = 2392, + [2393] = 2389, + [2394] = 2303, + [2395] = 2395, [2396] = 2396, [2397] = 2397, [2398] = 2398, [2399] = 2399, [2400] = 2400, - [2401] = 2401, + [2401] = 2279, [2402] = 2402, [2403] = 2403, - [2404] = 2404, - [2405] = 2405, - [2406] = 2405, + [2404] = 2395, + [2405] = 2389, + [2406] = 2406, [2407] = 2407, - [2408] = 2408, - [2409] = 2409, - [2410] = 2308, - [2411] = 2391, - [2412] = 2412, - [2413] = 2413, - [2414] = 2402, - [2415] = 337, - [2416] = 296, + [2408] = 2305, + [2409] = 2229, + [2410] = 368, + [2411] = 2411, + [2412] = 365, + [2413] = 2279, + [2414] = 359, + [2415] = 2415, + [2416] = 2416, [2417] = 2417, - [2418] = 2418, - [2419] = 2419, + [2418] = 2406, + [2419] = 2406, [2420] = 2420, [2421] = 2421, - [2422] = 2422, + [2422] = 340, [2423] = 2423, [2424] = 2424, - [2425] = 2401, - [2426] = 2288, + [2425] = 2425, + [2426] = 2416, [2427] = 2427, [2428] = 2428, - [2429] = 2429, - [2430] = 2430, - [2431] = 2431, + [2429] = 2395, + [2430] = 364, + [2431] = 359, [2432] = 2432, - [2433] = 2402, - [2434] = 2401, - [2435] = 2435, - [2436] = 2401, - [2437] = 2437, - [2438] = 2314, - [2439] = 2293, - [2440] = 2440, - [2441] = 2441, - [2442] = 2402, - [2443] = 333, - [2444] = 2444, - [2445] = 2405, - [2446] = 2297, + [2433] = 2433, + [2434] = 322, + [2435] = 368, + [2436] = 313, + [2437] = 2229, + [2438] = 2417, + [2439] = 2439, + [2440] = 2361, + [2441] = 2305, + [2442] = 2442, + [2443] = 2443, + [2444] = 2303, + [2445] = 2445, + [2446] = 2446, [2447] = 2447, [2448] = 2448, - [2449] = 2228, - [2450] = 2237, - [2451] = 2451, + [2449] = 363, + [2450] = 2206, + [2451] = 2271, [2452] = 2452, - [2453] = 2314, + [2453] = 2453, [2454] = 2454, [2455] = 2455, - [2456] = 2456, - [2457] = 2457, - [2458] = 2458, - [2459] = 2301, + [2456] = 2252, + [2457] = 2254, + [2458] = 2247, + [2459] = 329, [2460] = 2460, - [2461] = 333, - [2462] = 299, + [2461] = 2246, + [2462] = 2462, [2463] = 2463, - [2464] = 2464, - [2465] = 2262, - [2466] = 2466, - [2467] = 2235, - [2468] = 2305, - [2469] = 2229, - [2470] = 2230, - [2471] = 2277, - [2472] = 2306, - [2473] = 2473, - [2474] = 2474, - [2475] = 2475, + [2464] = 2349, + [2465] = 364, + [2466] = 2209, + [2467] = 2210, + [2468] = 2468, + [2469] = 2469, + [2470] = 2205, + [2471] = 2371, + [2472] = 2446, + [2473] = 2448, + [2474] = 2374, + [2475] = 2244, [2476] = 2476, [2477] = 2477, [2478] = 2478, - [2479] = 2479, - [2480] = 2480, - [2481] = 2349, - [2482] = 2347, - [2483] = 2483, - [2484] = 2484, - [2485] = 2405, + [2479] = 2448, + [2480] = 2442, + [2481] = 2446, + [2482] = 2255, + [2483] = 2243, + [2484] = 2406, + [2485] = 2485, [2486] = 2486, [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 2391, - [2491] = 2412, + [2488] = 2361, + [2489] = 2207, + [2490] = 2251, + [2491] = 2239, [2492] = 2492, - [2493] = 2493, - [2494] = 2483, - [2495] = 325, + [2493] = 2271, + [2494] = 2282, + [2495] = 2495, [2496] = 2496, - [2497] = 2328, - [2498] = 2325, - [2499] = 2499, - [2500] = 2500, - [2501] = 2301, - [2502] = 334, - [2503] = 2412, + [2497] = 2374, + [2498] = 2256, + [2499] = 2448, + [2500] = 2446, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, [2504] = 2504, [2505] = 2505, - [2506] = 2476, - [2507] = 2507, - [2508] = 2293, - [2509] = 2308, - [2510] = 2317, - [2511] = 2511, - [2512] = 2316, - [2513] = 2313, - [2514] = 2229, - [2515] = 2294, - [2516] = 2206, - [2517] = 2307, - [2518] = 2207, - [2519] = 2230, - [2520] = 2389, - [2521] = 2321, - [2522] = 2522, - [2523] = 2304, - [2524] = 2524, - [2525] = 2294, - [2526] = 2306, - [2527] = 2405, + [2506] = 2506, + [2507] = 2238, + [2508] = 2448, + [2509] = 2446, + [2510] = 2237, + [2511] = 2236, + [2512] = 2234, + [2513] = 2231, + [2514] = 2514, + [2515] = 2230, + [2516] = 2309, + [2517] = 2517, + [2518] = 2282, + [2519] = 2519, + [2520] = 2520, + [2521] = 2371, + [2522] = 329, + [2523] = 2309, + [2524] = 2230, + [2525] = 2395, + [2526] = 2231, + [2527] = 2527, [2528] = 2528, - [2529] = 2402, - [2530] = 2530, - [2531] = 2401, - [2532] = 2305, - [2533] = 334, - [2534] = 2205, + [2529] = 2389, + [2530] = 2234, + [2531] = 2531, + [2532] = 2236, + [2533] = 2237, + [2534] = 2534, [2535] = 2535, - [2536] = 2272, - [2537] = 300, - [2538] = 2412, - [2539] = 314, - [2540] = 2307, - [2541] = 2541, - [2542] = 325, - [2543] = 2235, - [2544] = 2237, - [2545] = 2228, - [2546] = 2350, - [2547] = 2277, - [2548] = 322, - [2549] = 2405, + [2536] = 2349, + [2537] = 347, + [2538] = 363, + [2539] = 2539, + [2540] = 2540, + [2541] = 2238, + [2542] = 2239, + [2543] = 2543, + [2544] = 2544, + [2545] = 340, + [2546] = 2367, + [2547] = 2406, + [2548] = 2548, + [2549] = 2549, [2550] = 2550, - [2551] = 2297, - [2552] = 2279, - [2553] = 2313, + [2551] = 2251, + [2552] = 2552, + [2553] = 2553, [2554] = 2554, - [2555] = 2555, - [2556] = 2391, - [2557] = 2557, - [2558] = 2349, - [2559] = 2316, - [2560] = 2347, - [2561] = 300, - [2562] = 304, - [2563] = 2563, - [2564] = 2317, - [2565] = 2350, - [2566] = 2209, - [2567] = 2391, - [2568] = 2412, - [2569] = 2321, - [2570] = 2208, - [2571] = 2288, - [2572] = 2262, - [2573] = 2325, + [2555] = 2244, + [2556] = 2256, + [2557] = 2255, + [2558] = 2558, + [2559] = 2389, + [2560] = 2243, + [2561] = 2561, + [2562] = 2395, + [2563] = 2254, + [2564] = 2368, + [2565] = 2247, + [2566] = 2368, + [2567] = 2246, + [2568] = 2406, + [2569] = 2252, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2573, [2574] = 2574, - [2575] = 299, - [2576] = 2328, - [2577] = 322, - [2578] = 2213, + [2575] = 2575, + [2576] = 2576, + [2577] = 2577, + [2578] = 2578, [2579] = 2579, - [2580] = 2580, + [2580] = 2231, [2581] = 2581, - [2582] = 2582, - [2583] = 2574, - [2584] = 2217, - [2585] = 2216, - [2586] = 2230, - [2587] = 2277, - [2588] = 2349, - [2589] = 2347, - [2590] = 2333, - [2591] = 2591, - [2592] = 2008, - [2593] = 2293, - [2594] = 2297, - [2595] = 2301, - [2596] = 2596, - [2597] = 2582, + [2582] = 2309, + [2583] = 2583, + [2584] = 2261, + [2585] = 2282, + [2586] = 2303, + [2587] = 2305, + [2588] = 2229, + [2589] = 2217, + [2590] = 2261, + [2591] = 2263, + [2592] = 2219, + [2593] = 2225, + [2594] = 2261, + [2595] = 2361, + [2596] = 2581, + [2597] = 2263, [2598] = 2598, [2599] = 2599, - [2600] = 2328, - [2601] = 2325, + [2600] = 2222, + [2601] = 2601, [2602] = 2598, [2603] = 2603, - [2604] = 2321, - [2605] = 2582, - [2606] = 2308, - [2607] = 2229, - [2608] = 2317, - [2609] = 2316, - [2610] = 2313, - [2611] = 2307, - [2612] = 2218, - [2613] = 2212, - [2614] = 2476, - [2615] = 2304, - [2616] = 2596, - [2617] = 2294, - [2618] = 2618, - [2619] = 2582, - [2620] = 2237, - [2621] = 2226, - [2622] = 2228, - [2623] = 2603, - [2624] = 2624, - [2625] = 2625, - [2626] = 2303, - [2627] = 2222, - [2628] = 2262, - [2629] = 2582, - [2630] = 2342, - [2631] = 2631, - [2632] = 2235, - [2633] = 2633, - [2634] = 2389, - [2635] = 2483, - [2636] = 2223, - [2637] = 2637, - [2638] = 2333, - [2639] = 2342, - [2640] = 2305, - [2641] = 2306, - [2642] = 2633, - [2643] = 1969, - [2644] = 2644, + [2604] = 2581, + [2605] = 2367, + [2606] = 2599, + [2607] = 2607, + [2608] = 2368, + [2609] = 2609, + [2610] = 2610, + [2611] = 2581, + [2612] = 2417, + [2613] = 2230, + [2614] = 1956, + [2615] = 2234, + [2616] = 2236, + [2617] = 2237, + [2618] = 2238, + [2619] = 2239, + [2620] = 2620, + [2621] = 2243, + [2622] = 2244, + [2623] = 2246, + [2624] = 2251, + [2625] = 2252, + [2626] = 2247, + [2627] = 2223, + [2628] = 2628, + [2629] = 2221, + [2630] = 2599, + [2631] = 2599, + [2632] = 2632, + [2633] = 2599, + [2634] = 2634, + [2635] = 2462, + [2636] = 2254, + [2637] = 1945, + [2638] = 2271, + [2639] = 2374, + [2640] = 2371, + [2641] = 2349, + [2642] = 2642, + [2643] = 1963, + [2644] = 2599, [2645] = 2645, - [2646] = 2618, - [2647] = 2633, - [2648] = 2582, + [2646] = 2583, + [2647] = 2647, + [2648] = 2583, [2649] = 2649, [2650] = 2650, - [2651] = 2618, - [2652] = 2350, - [2653] = 2653, - [2654] = 2375, + [2651] = 2583, + [2652] = 2279, + [2653] = 2647, + [2654] = 2280, [2655] = 2655, - [2656] = 2624, + [2656] = 2656, [2657] = 2657, - [2658] = 2658, - [2659] = 2574, - [2660] = 2618, - [2661] = 2272, - [2662] = 2279, - [2663] = 2288, - [2664] = 2618, - [2665] = 2314, - [2666] = 2666, - [2667] = 1998, - [2668] = 2624, - [2669] = 2669, - [2670] = 2670, - [2671] = 2633, + [2658] = 2255, + [2659] = 2583, + [2660] = 2660, + [2661] = 2416, + [2662] = 2599, + [2663] = 2581, + [2664] = 2650, + [2665] = 2598, + [2666] = 2462, + [2667] = 2256, + [2668] = 2220, + [2669] = 2263, + [2670] = 2442, + [2671] = 2226, [2672] = 2672, - [2673] = 2333, - [2674] = 2582, - [2675] = 2580, - [2676] = 2633, - [2677] = 2624, - [2678] = 2342, - [2679] = 2644, - [2680] = 2680, - [2681] = 2681, - [2682] = 2624, - [2683] = 2357, - [2684] = 2350, - [2685] = 2685, - [2686] = 2686, - [2687] = 2687, - [2688] = 2688, - [2689] = 2375, - [2690] = 2418, - [2691] = 2691, - [2692] = 1015, - [2693] = 2685, - [2694] = 2333, + [2673] = 2628, + [2674] = 2674, + [2675] = 2674, + [2676] = 2676, + [2677] = 2677, + [2678] = 2276, + [2679] = 2679, + [2680] = 2598, + [2681] = 2634, + [2682] = 2682, + [2683] = 2598, + [2684] = 2684, + [2685] = 2237, + [2686] = 2252, + [2687] = 2251, + [2688] = 2279, + [2689] = 2689, + [2690] = 2256, + [2691] = 2256, + [2692] = 2278, + [2693] = 2338, + [2694] = 2416, [2695] = 2695, - [2696] = 2342, - [2697] = 2697, - [2698] = 2296, + [2696] = 2340, + [2697] = 2345, + [2698] = 2361, [2699] = 2699, - [2700] = 2700, - [2701] = 2701, - [2702] = 2702, - [2703] = 1024, - [2704] = 2701, - [2705] = 2688, - [2706] = 2323, - [2707] = 2326, - [2708] = 2708, - [2709] = 1029, - [2710] = 2428, - [2711] = 2711, - [2712] = 2681, - [2713] = 2713, - [2714] = 2272, - [2715] = 2261, - [2716] = 2279, - [2717] = 2288, - [2718] = 2431, - [2719] = 2685, - [2720] = 2314, - [2721] = 2275, - [2722] = 291, - [2723] = 1037, - [2724] = 2431, - [2725] = 2343, - [2726] = 1043, - [2727] = 2276, - [2728] = 2375, - [2729] = 2685, - [2730] = 2278, - [2731] = 2280, - [2732] = 2281, - [2733] = 2282, - [2734] = 2283, - [2735] = 2342, - [2736] = 2418, - [2737] = 2286, - [2738] = 2287, - [2739] = 2291, - [2740] = 2295, - [2741] = 291, - [2742] = 2299, - [2743] = 2302, - [2744] = 2318, - [2745] = 2319, - [2746] = 2320, - [2747] = 2322, - [2748] = 2346, - [2749] = 2324, - [2750] = 2327, - [2751] = 2330, - [2752] = 2334, - [2753] = 2753, - [2754] = 2339, - [2755] = 2340, - [2756] = 2341, - [2757] = 2344, - [2758] = 2680, - [2759] = 2759, - [2760] = 2701, - [2761] = 2246, - [2762] = 2384, - [2763] = 2483, - [2764] = 2377, - [2765] = 2333, - [2766] = 2766, - [2767] = 2374, - [2768] = 2372, - [2769] = 2358, - [2770] = 2352, - [2771] = 2359, - [2772] = 2356, - [2773] = 2354, - [2774] = 2386, - [2775] = 2383, - [2776] = 2369, - [2777] = 2367, - [2778] = 2361, - [2779] = 2353, - [2780] = 2351, - [2781] = 2338, - [2782] = 2336, - [2783] = 2701, - [2784] = 2335, - [2785] = 2312, - [2786] = 2311, - [2787] = 2787, - [2788] = 2275, - [2789] = 2789, - [2790] = 2790, - [2791] = 2791, - [2792] = 2792, - [2793] = 2688, - [2794] = 2753, - [2795] = 2232, - [2796] = 2234, - [2797] = 2239, - [2798] = 2241, - [2799] = 2245, - [2800] = 2428, - [2801] = 2306, - [2802] = 2248, - [2803] = 2247, - [2804] = 2242, - [2805] = 2233, - [2806] = 2290, - [2807] = 2329, - [2808] = 2331, - [2809] = 2688, - [2810] = 2345, - [2811] = 2368, - [2812] = 2376, - [2813] = 2274, - [2814] = 2269, - [2815] = 2231, - [2816] = 2236, - [2817] = 2243, - [2818] = 2244, - [2819] = 2342, - [2820] = 2305, - [2821] = 2333, - [2822] = 2262, - [2823] = 2228, - [2824] = 2237, - [2825] = 2825, - [2826] = 2235, - [2827] = 2294, - [2828] = 2304, - [2829] = 2307, - [2830] = 2313, - [2831] = 2316, - [2832] = 2314, - [2833] = 2306, - [2834] = 2317, - [2835] = 2321, - [2836] = 2325, - [2837] = 2328, - [2838] = 2347, - [2839] = 2349, - [2840] = 2305, - [2841] = 2277, - [2842] = 2230, - [2843] = 2685, - [2844] = 2293, - [2845] = 2701, - [2846] = 2297, - [2847] = 2301, - [2848] = 2308, - [2849] = 2229, - [2850] = 2256, - [2851] = 2257, - [2852] = 2262, - [2853] = 2350, - [2854] = 2258, - [2855] = 2362, - [2856] = 2343, - [2857] = 2431, - [2858] = 2681, - [2859] = 2418, - [2860] = 2428, - [2861] = 2228, - [2862] = 2237, - [2863] = 2235, - [2864] = 2300, - [2865] = 2298, - [2866] = 2272, - [2867] = 2279, + [2700] = 1044, + [2701] = 2359, + [2702] = 2247, + [2703] = 2246, + [2704] = 2351, + [2705] = 2705, + [2706] = 2244, + [2707] = 2243, + [2708] = 2353, + [2709] = 2358, + [2710] = 2360, + [2711] = 2364, + [2712] = 2365, + [2713] = 2239, + [2714] = 2238, + [2715] = 2420, + [2716] = 2236, + [2717] = 2234, + [2718] = 2231, + [2719] = 2230, + [2720] = 2277, + [2721] = 2337, + [2722] = 2335, + [2723] = 2348, + [2724] = 2309, + [2725] = 2330, + [2726] = 2334, + [2727] = 2254, + [2728] = 1045, + [2729] = 2349, + [2730] = 2730, + [2731] = 2261, + [2732] = 2730, + [2733] = 2298, + [2734] = 2263, + [2735] = 2534, + [2736] = 2282, + [2737] = 2329, + [2738] = 2376, + [2739] = 2377, + [2740] = 2378, + [2741] = 2379, + [2742] = 2380, + [2743] = 302, + [2744] = 2382, + [2745] = 2383, + [2746] = 2328, + [2747] = 2387, + [2748] = 2748, + [2749] = 2386, + [2750] = 2229, + [2751] = 2255, + [2752] = 2730, + [2753] = 2267, + [2754] = 2415, + [2755] = 2305, + [2756] = 2756, + [2757] = 2384, + [2758] = 1046, + [2759] = 2373, + [2760] = 2289, + [2761] = 2372, + [2762] = 2356, + [2763] = 2763, + [2764] = 2350, + [2765] = 2325, + [2766] = 2324, + [2767] = 2323, + [2768] = 2385, + [2769] = 2258, + [2770] = 2347, + [2771] = 2281, + [2772] = 2260, + [2773] = 2773, + [2774] = 2730, + [2775] = 2283, + [2776] = 2388, + [2777] = 2279, + [2778] = 2273, + [2779] = 2371, + [2780] = 1063, + [2781] = 2773, + [2782] = 2607, + [2783] = 2783, + [2784] = 2232, + [2785] = 2233, + [2786] = 2274, + [2787] = 2442, + [2788] = 2303, + [2789] = 2773, + [2790] = 2367, + [2791] = 2305, + [2792] = 2689, + [2793] = 2793, + [2794] = 2287, + [2795] = 2795, + [2796] = 2773, + [2797] = 2415, + [2798] = 2280, + [2799] = 2799, + [2800] = 2756, + [2801] = 2254, + [2802] = 2247, + [2803] = 2803, + [2804] = 2252, + [2805] = 2603, + [2806] = 302, + [2807] = 2245, + [2808] = 2756, + [2809] = 2362, + [2810] = 2810, + [2811] = 2229, + [2812] = 2344, + [2813] = 2336, + [2814] = 2303, + [2815] = 2333, + [2816] = 2331, + [2817] = 2327, + [2818] = 2317, + [2819] = 2313, + [2820] = 2311, + [2821] = 2304, + [2822] = 2300, + [2823] = 2756, + [2824] = 2375, + [2825] = 2420, + [2826] = 2293, + [2827] = 2366, + [2828] = 2282, + [2829] = 2251, + [2830] = 2248, + [2831] = 2249, + [2832] = 2415, + [2833] = 2756, + [2834] = 2773, + [2835] = 2271, + [2836] = 2270, + [2837] = 2269, + [2838] = 2838, + [2839] = 2255, + [2840] = 2332, + [2841] = 2261, + [2842] = 2603, + [2843] = 2843, + [2844] = 2268, + [2845] = 2845, + [2846] = 2271, + [2847] = 2730, + [2848] = 2756, + [2849] = 2265, + [2850] = 2266, + [2851] = 2417, + [2852] = 2534, + [2853] = 2246, + [2854] = 2348, + [2855] = 2374, + [2856] = 2275, + [2857] = 2284, + [2858] = 2263, + [2859] = 2285, + [2860] = 2309, + [2861] = 2361, + [2862] = 2730, + [2863] = 2534, + [2864] = 2230, + [2865] = 2244, + [2866] = 2243, + [2867] = 2756, [2868] = 2288, - [2869] = 2294, - [2870] = 2371, - [2871] = 2304, - [2872] = 2307, - [2873] = 2313, - [2874] = 2316, - [2875] = 2317, - [2876] = 2321, - [2877] = 2325, - [2878] = 2328, - [2879] = 2378, - [2880] = 2379, - [2881] = 2380, - [2882] = 2381, - [2883] = 2385, - [2884] = 2347, - [2885] = 2388, - [2886] = 2240, - [2887] = 2263, - [2888] = 2264, - [2889] = 2349, - [2890] = 2360, - [2891] = 2277, - [2892] = 2266, - [2893] = 2230, - [2894] = 2267, - [2895] = 2363, - [2896] = 2688, - [2897] = 2366, - [2898] = 2688, - [2899] = 2270, - [2900] = 2271, - [2901] = 2273, - [2902] = 2680, - [2903] = 2759, - [2904] = 2249, - [2905] = 2387, - [2906] = 2365, - [2907] = 2293, - [2908] = 2297, - [2909] = 2301, - [2910] = 2476, - [2911] = 2308, + [2869] = 2298, + [2870] = 2231, + [2871] = 2234, + [2872] = 2312, + [2873] = 2290, + [2874] = 2239, + [2875] = 2280, + [2876] = 2368, + [2877] = 2263, + [2878] = 2261, + [2879] = 2236, + [2880] = 2367, + [2881] = 2368, + [2882] = 2291, + [2883] = 2883, + [2884] = 2884, + [2885] = 1049, + [2886] = 2295, + [2887] = 2374, + [2888] = 2296, + [2889] = 2297, + [2890] = 2240, + [2891] = 2242, + [2892] = 2238, + [2893] = 2420, + [2894] = 2299, + [2895] = 2286, + [2896] = 2302, + [2897] = 2319, + [2898] = 2306, + [2899] = 2307, + [2900] = 2900, + [2901] = 2308, + [2902] = 2354, + [2903] = 2355, + [2904] = 2357, + [2905] = 2371, + [2906] = 2349, + [2907] = 2237, + [2908] = 2783, + [2909] = 2607, + [2910] = 2310, + [2911] = 2315, [2912] = 2912, - [2913] = 2913, - [2914] = 2229, - [2915] = 2701, - [2916] = 2701, - [2917] = 2389, - [2918] = 2685, - [2919] = 2473, - [2920] = 2237, - [2921] = 2428, - [2922] = 2413, - [2923] = 2419, - [2924] = 2541, - [2925] = 2420, - [2926] = 2421, - [2927] = 2422, - [2928] = 2328, - [2929] = 2408, - [2930] = 2325, + [2913] = 2316, + [2914] = 2914, + [2915] = 2320, + [2916] = 2321, + [2917] = 2322, + [2918] = 2918, + [2919] = 2773, + [2920] = 2520, + [2921] = 2454, + [2922] = 2255, + [2923] = 321, + [2924] = 2252, + [2925] = 2925, + [2926] = 2403, + [2927] = 2256, + [2928] = 2251, + [2929] = 2263, + [2930] = 2930, [2931] = 2931, - [2932] = 2428, - [2933] = 2321, - [2934] = 2934, - [2935] = 2935, - [2936] = 2417, - [2937] = 2317, - [2938] = 2680, - [2939] = 2939, - [2940] = 298, - [2941] = 2409, - [2942] = 2404, - [2943] = 2943, - [2944] = 2316, - [2945] = 2343, - [2946] = 2431, - [2947] = 2670, - [2948] = 2313, - [2949] = 2949, - [2950] = 2950, - [2951] = 2951, + [2932] = 2271, + [2933] = 2374, + [2934] = 349, + [2935] = 2371, + [2936] = 2462, + [2937] = 2349, + [2938] = 2402, + [2939] = 2531, + [2940] = 2400, + [2941] = 2534, + [2942] = 2579, + [2943] = 2261, + [2944] = 2506, + [2945] = 2579, + [2946] = 2534, + [2947] = 2298, + [2948] = 2948, + [2949] = 2544, + [2950] = 316, + [2951] = 2348, [2952] = 2952, [2953] = 2953, [2954] = 2954, [2955] = 2955, - [2956] = 2956, - [2957] = 297, - [2958] = 2958, - [2959] = 2954, - [2960] = 2307, - [2961] = 2953, - [2962] = 2304, + [2956] = 2912, + [2957] = 2399, + [2958] = 330, + [2959] = 2959, + [2960] = 2398, + [2961] = 2570, + [2962] = 2962, [2963] = 2963, - [2964] = 295, - [2965] = 2489, - [2966] = 2966, - [2967] = 2967, - [2968] = 2953, + [2964] = 2964, + [2965] = 2962, + [2966] = 2964, + [2967] = 332, + [2968] = 2968, [2969] = 2969, - [2970] = 2970, - [2971] = 2954, - [2972] = 2972, - [2973] = 2973, - [2974] = 2294, + [2970] = 2504, + [2971] = 2912, + [2972] = 2397, + [2973] = 2263, + [2974] = 2261, [2975] = 2975, [2976] = 2976, [2977] = 2977, - [2978] = 2400, - [2979] = 2399, - [2980] = 2398, - [2981] = 2981, + [2978] = 2978, + [2979] = 2577, + [2980] = 341, + [2981] = 2396, [2982] = 2982, - [2983] = 2480, - [2984] = 2954, - [2985] = 2275, - [2986] = 2953, - [2987] = 2333, - [2988] = 2988, - [2989] = 2457, - [2990] = 2275, - [2991] = 2397, - [2992] = 2992, - [2993] = 2993, - [2994] = 2994, - [2995] = 2342, - [2996] = 2396, - [2997] = 2557, - [2998] = 2235, - [2999] = 2228, - [3000] = 2394, - [3001] = 3001, - [3002] = 2955, - [3003] = 2393, - [3004] = 2563, - [3005] = 2429, - [3006] = 2670, - [3007] = 2437, - [3008] = 3008, - [3009] = 2447, - [3010] = 2448, - [3011] = 2454, - [3012] = 3012, - [3013] = 2487, - [3014] = 2458, - [3015] = 2350, - [3016] = 2460, - [3017] = 2955, - [3018] = 315, - [3019] = 336, - [3020] = 2333, - [3021] = 321, - [3022] = 2528, - [3023] = 336, - [3024] = 2342, - [3025] = 321, - [3026] = 2524, - [3027] = 2511, - [3028] = 2507, - [3029] = 2505, - [3030] = 331, - [3031] = 3031, - [3032] = 3032, - [3033] = 2913, - [3034] = 2230, - [3035] = 2277, - [3036] = 3036, - [3037] = 2504, - [3038] = 3038, - [3039] = 2423, - [3040] = 2424, - [3041] = 2466, - [3042] = 331, - [3043] = 320, - [3044] = 2955, - [3045] = 2475, - [3046] = 2228, - [3047] = 2463, - [3048] = 2500, - [3049] = 2484, - [3050] = 306, - [3051] = 2479, - [3052] = 2478, - [3053] = 3053, - [3054] = 2955, - [3055] = 3055, - [3056] = 2554, - [3057] = 2488, - [3058] = 2441, - [3059] = 2955, - [3060] = 2492, - [3061] = 2493, - [3062] = 2982, - [3063] = 2981, - [3064] = 2456, - [3065] = 312, - [3066] = 315, - [3067] = 2262, - [3068] = 3068, - [3069] = 3068, - [3070] = 2455, - [3071] = 2967, - [3072] = 2955, - [3073] = 2935, - [3074] = 2403, - [3075] = 2555, - [3076] = 2496, - [3077] = 2293, - [3078] = 2297, - [3079] = 2301, - [3080] = 2430, - [3081] = 2432, - [3082] = 312, - [3083] = 2308, - [3084] = 2229, - [3085] = 2486, - [3086] = 2955, - [3087] = 2349, + [2983] = 2983, + [2984] = 2579, + [2985] = 2962, + [2986] = 2576, + [2987] = 2575, + [2988] = 2574, + [2989] = 2392, + [2990] = 2415, + [2991] = 2391, + [2992] = 2411, + [2993] = 2964, + [2994] = 2963, + [2995] = 2995, + [2996] = 2996, + [2997] = 311, + [2998] = 2486, + [2999] = 2573, + [3000] = 346, + [3001] = 2963, + [3002] = 2247, + [3003] = 2246, + [3004] = 2485, + [3005] = 2244, + [3006] = 2571, + [3007] = 3007, + [3008] = 2487, + [3009] = 2243, + [3010] = 2535, + [3011] = 2552, + [3012] = 2603, + [3013] = 2492, + [3014] = 2415, + [3015] = 3015, + [3016] = 2553, + [3017] = 2550, + [3018] = 2239, + [3019] = 2238, + [3020] = 2539, + [3021] = 2540, + [3022] = 2237, + [3023] = 2495, + [3024] = 2236, + [3025] = 2279, + [3026] = 332, + [3027] = 3027, + [3028] = 330, + [3029] = 2234, + [3030] = 3030, + [3031] = 356, + [3032] = 357, + [3033] = 2548, + [3034] = 3034, + [3035] = 2561, + [3036] = 2231, + [3037] = 2975, + [3038] = 2963, + [3039] = 2230, + [3040] = 2309, + [3041] = 3041, + [3042] = 3042, + [3043] = 2558, + [3044] = 3044, + [3045] = 3045, + [3046] = 3046, + [3047] = 2969, + [3048] = 3048, + [3049] = 3044, + [3050] = 3048, + [3051] = 2603, + [3052] = 2282, + [3053] = 2527, + [3054] = 314, + [3055] = 2407, + [3056] = 2963, + [3057] = 2496, + [3058] = 2963, + [3059] = 2501, + [3060] = 2478, + [3061] = 3061, + [3062] = 343, + [3063] = 2476, + [3064] = 3064, + [3065] = 3065, + [3066] = 2963, + [3067] = 2468, + [3068] = 321, + [3069] = 2455, + [3070] = 2303, + [3071] = 366, + [3072] = 2502, + [3073] = 2305, + [3074] = 2254, + [3075] = 2962, + [3076] = 2964, + [3077] = 2453, + [3078] = 3078, + [3079] = 3079, + [3080] = 3080, + [3081] = 2229, + [3082] = 2955, + [3083] = 2452, + [3084] = 2367, + [3085] = 2603, + [3086] = 2428, + [3087] = 3087, [3088] = 3088, - [3089] = 2953, - [3090] = 2347, - [3091] = 2954, - [3092] = 318, - [3093] = 2982, - [3094] = 2314, - [3095] = 2954, - [3096] = 2953, - [3097] = 2444, - [3098] = 2407, - [3099] = 2681, + [3089] = 2528, + [3090] = 3090, + [3091] = 3091, + [3092] = 3092, + [3093] = 3093, + [3094] = 2469, + [3095] = 2962, + [3096] = 3096, + [3097] = 2463, + [3098] = 2447, + [3099] = 3099, [3100] = 3100, - [3101] = 2288, + [3101] = 2271, [3102] = 3102, - [3103] = 2306, - [3104] = 343, - [3105] = 2279, - [3106] = 2981, - [3107] = 3107, - [3108] = 3108, - [3109] = 2305, - [3110] = 3036, - [3111] = 2262, - [3112] = 2982, - [3113] = 3113, - [3114] = 326, - [3115] = 3115, - [3116] = 2981, - [3117] = 2464, - [3118] = 2954, - [3119] = 2982, - [3120] = 2981, - [3121] = 2237, - [3122] = 3122, - [3123] = 2681, - [3124] = 2953, - [3125] = 2235, - [3126] = 2389, - [3127] = 2272, - [3128] = 3128, - [3129] = 2350, - [3130] = 2476, + [3103] = 2368, + [3104] = 3104, + [3105] = 343, + [3106] = 3106, + [3107] = 2964, + [3108] = 2374, + [3109] = 2371, + [3110] = 2503, + [3111] = 3061, + [3112] = 3112, + [3113] = 349, + [3114] = 2361, + [3115] = 2229, + [3116] = 2361, + [3117] = 316, + [3118] = 2963, + [3119] = 3119, + [3120] = 2305, + [3121] = 2303, + [3122] = 2349, + [3123] = 314, + [3124] = 2279, + [3125] = 2256, + [3126] = 2255, + [3127] = 2254, + [3128] = 2477, + [3129] = 2252, + [3130] = 2348, [3131] = 3131, - [3132] = 2272, - [3133] = 2279, - [3134] = 2288, - [3135] = 2314, - [3136] = 343, - [3137] = 2574, - [3138] = 2229, - [3139] = 2305, - [3140] = 3140, - [3141] = 3088, - [3142] = 2530, - [3143] = 306, - [3144] = 2483, - [3145] = 2474, - [3146] = 2294, - [3147] = 320, - [3148] = 2304, - [3149] = 2913, - [3150] = 2307, - [3151] = 2313, - [3152] = 295, - [3153] = 3153, - [3154] = 3032, - [3155] = 326, - [3156] = 2328, - [3157] = 2308, - [3158] = 2316, - [3159] = 2317, - [3160] = 2321, - [3161] = 2325, - [3162] = 2550, - [3163] = 3163, - [3164] = 2431, - [3165] = 2943, - [3166] = 3166, - [3167] = 2670, - [3168] = 2347, - [3169] = 2349, - [3170] = 2306, - [3171] = 3171, - [3172] = 2277, - [3173] = 2230, - [3174] = 2293, - [3175] = 3175, - [3176] = 2297, - [3177] = 2477, - [3178] = 2535, - [3179] = 2955, - [3180] = 318, - [3181] = 2301, - [3182] = 298, - [3183] = 297, - [3184] = 2522, - [3185] = 2681, - [3186] = 3186, - [3187] = 2347, - [3188] = 3188, - [3189] = 2428, - [3190] = 2645, - [3191] = 2333, - [3192] = 2342, - [3193] = 3193, - [3194] = 2681, - [3195] = 2275, - [3196] = 2305, - [3197] = 2262, - [3198] = 2306, - [3199] = 2228, - [3200] = 2237, - [3201] = 2235, - [3202] = 2294, - [3203] = 2325, - [3204] = 3204, - [3205] = 2913, - [3206] = 2288, + [3132] = 2251, + [3133] = 2247, + [3134] = 2246, + [3135] = 2244, + [3136] = 2243, + [3137] = 2239, + [3138] = 2421, + [3139] = 2975, + [3140] = 2443, + [3141] = 2969, + [3142] = 2423, + [3143] = 2238, + [3144] = 2445, + [3145] = 2237, + [3146] = 366, + [3147] = 2962, + [3148] = 2963, + [3149] = 2964, + [3150] = 2236, + [3151] = 2416, + [3152] = 3152, + [3153] = 2607, + [3154] = 2417, + [3155] = 341, + [3156] = 2424, + [3157] = 2234, + [3158] = 3158, + [3159] = 2231, + [3160] = 2230, + [3161] = 357, + [3162] = 3080, + [3163] = 356, + [3164] = 3045, + [3165] = 2439, + [3166] = 2309, + [3167] = 2367, + [3168] = 3046, + [3169] = 2505, + [3170] = 2442, + [3171] = 2514, + [3172] = 2975, + [3173] = 2969, + [3174] = 2517, + [3175] = 2433, + [3176] = 2282, + [3177] = 2969, + [3178] = 2964, + [3179] = 2975, + [3180] = 2554, + [3181] = 2519, + [3182] = 3182, + [3183] = 2368, + [3184] = 2427, + [3185] = 311, + [3186] = 346, + [3187] = 2425, + [3188] = 2962, + [3189] = 3189, + [3190] = 2271, + [3191] = 2252, + [3192] = 2247, + [3193] = 2246, + [3194] = 2254, + [3195] = 2255, + [3196] = 2256, + [3197] = 3197, + [3198] = 2244, + [3199] = 2298, + [3200] = 2243, + [3201] = 3201, + [3202] = 2415, + [3203] = 3203, + [3204] = 2912, + [3205] = 2238, + [3206] = 2279, [3207] = 3207, - [3208] = 2304, - [3209] = 2343, - [3210] = 3210, + [3208] = 2263, + [3209] = 2237, + [3210] = 2236, [3211] = 3211, - [3212] = 3212, - [3213] = 3213, - [3214] = 3214, - [3215] = 3215, - [3216] = 2681, - [3217] = 2431, - [3218] = 2313, - [3219] = 3219, - [3220] = 3220, - [3221] = 2316, - [3222] = 2317, - [3223] = 2375, - [3224] = 2321, - [3225] = 3204, - [3226] = 2314, - [3227] = 2307, - [3228] = 2328, - [3229] = 2349, - [3230] = 2277, - [3231] = 2279, - [3232] = 2272, - [3233] = 2230, - [3234] = 3211, - [3235] = 2476, - [3236] = 2681, - [3237] = 3237, - [3238] = 3211, - [3239] = 3239, - [3240] = 3214, + [3212] = 2603, + [3213] = 2234, + [3214] = 2231, + [3215] = 2230, + [3216] = 2309, + [3217] = 2282, + [3218] = 2261, + [3219] = 2303, + [3220] = 2305, + [3221] = 2229, + [3222] = 2361, + [3223] = 3223, + [3224] = 3224, + [3225] = 3197, + [3226] = 2534, + [3227] = 3227, + [3228] = 3228, + [3229] = 3229, + [3230] = 2280, + [3231] = 3231, + [3232] = 3232, + [3233] = 3197, + [3234] = 3203, + [3235] = 3197, + [3236] = 2417, + [3237] = 2610, + [3238] = 3238, + [3239] = 3197, + [3240] = 3240, [3241] = 3241, - [3242] = 3242, + [3242] = 2349, [3243] = 3243, - [3244] = 3211, - [3245] = 2293, - [3246] = 3246, + [3244] = 3207, + [3245] = 3211, + [3246] = 3197, [3247] = 3247, - [3248] = 3248, - [3249] = 2297, - [3250] = 2301, - [3251] = 2308, - [3252] = 2229, + [3248] = 2239, + [3249] = 2251, + [3250] = 3197, + [3251] = 2420, + [3252] = 3252, [3253] = 3253, - [3254] = 3215, - [3255] = 2350, - [3256] = 3211, - [3257] = 3211, - [3258] = 3241, - [3259] = 2418, - [3260] = 3210, + [3254] = 3254, + [3255] = 2603, + [3256] = 2367, + [3257] = 2371, + [3258] = 3258, + [3259] = 2368, + [3260] = 2374, [3261] = 3261, - [3262] = 3262, - [3263] = 3263, - [3264] = 2418, - [3265] = 3265, - [3266] = 3211, - [3267] = 2431, - [3268] = 3268, + [3262] = 2420, + [3263] = 2348, + [3264] = 3264, + [3265] = 3229, + [3266] = 3266, + [3267] = 3258, + [3268] = 2603, [3269] = 3269, - [3270] = 3270, + [3270] = 2280, [3271] = 3271, [3272] = 3272, - [3273] = 3273, - [3274] = 3274, + [3273] = 2650, + [3274] = 2442, [3275] = 3275, - [3276] = 2418, - [3277] = 2603, - [3278] = 3278, - [3279] = 2375, - [3280] = 2389, + [3276] = 2420, + [3277] = 2348, + [3278] = 2603, + [3279] = 2420, + [3280] = 3280, [3281] = 3281, - [3282] = 2476, + [3282] = 3282, [3283] = 3283, [3284] = 3284, [3285] = 3285, [3286] = 3286, - [3287] = 2483, + [3287] = 2348, [3288] = 3288, - [3289] = 2275, + [3289] = 3289, [3290] = 3290, [3291] = 3291, [3292] = 3292, - [3293] = 2428, - [3294] = 3294, + [3293] = 2417, + [3294] = 2534, [3295] = 3295, - [3296] = 2670, - [3297] = 3297, - [3298] = 2275, + [3296] = 3296, + [3297] = 2579, + [3298] = 2415, [3299] = 3299, - [3300] = 2418, + [3300] = 3300, [3301] = 3301, [3302] = 3302, - [3303] = 2681, + [3303] = 3303, [3304] = 3304, - [3305] = 3305, + [3305] = 2416, [3306] = 3306, [3307] = 3307, - [3308] = 2981, - [3309] = 2982, + [3308] = 3308, + [3309] = 2348, [3310] = 3310, [3311] = 3311, - [3312] = 2988, - [3313] = 2981, - [3314] = 2275, - [3315] = 3315, - [3316] = 2981, + [3312] = 3282, + [3313] = 3030, + [3314] = 3314, + [3315] = 2975, + [3316] = 2969, [3317] = 3317, [3318] = 3318, [3319] = 3319, [3320] = 3320, - [3321] = 2982, - [3322] = 2981, - [3323] = 3323, - [3324] = 2275, - [3325] = 2982, - [3326] = 2222, - [3327] = 3286, - [3328] = 2981, - [3329] = 3329, - [3330] = 3330, - [3331] = 2389, - [3332] = 2982, - [3333] = 2982, + [3321] = 3321, + [3322] = 2348, + [3323] = 2912, + [3324] = 3324, + [3325] = 2969, + [3326] = 2975, + [3327] = 3327, + [3328] = 2969, + [3329] = 2975, + [3330] = 2969, + [3331] = 2975, + [3332] = 3332, + [3333] = 3333, [3334] = 3334, [3335] = 3335, [3336] = 3336, [3337] = 3337, - [3338] = 3338, - [3339] = 3339, - [3340] = 3340, - [3341] = 2982, - [3342] = 2483, - [3343] = 2981, - [3344] = 2981, - [3345] = 2476, - [3346] = 2913, - [3347] = 2982, + [3338] = 2975, + [3339] = 2969, + [3340] = 2442, + [3341] = 3341, + [3342] = 2226, + [3343] = 2969, + [3344] = 3344, + [3345] = 2975, + [3346] = 3346, + [3347] = 2975, [3348] = 3348, - [3349] = 3349, - [3350] = 3350, - [3351] = 3350, - [3352] = 3350, - [3353] = 3350, - [3354] = 3350, - [3355] = 3355, - [3356] = 3350, - [3357] = 3350, - [3358] = 3350, - [3359] = 3350, - [3360] = 3360, - [3361] = 3361, + [3349] = 2969, + [3350] = 2416, + [3351] = 2417, + [3352] = 3352, + [3353] = 3352, + [3354] = 3354, + [3355] = 3352, + [3356] = 3352, + [3357] = 3352, + [3358] = 3352, + [3359] = 3352, + [3360] = 3352, + [3361] = 3352, [3362] = 3362, [3363] = 3363, [3364] = 3364, - [3365] = 3295, + [3365] = 3365, [3366] = 3366, [3367] = 3367, [3368] = 3368, @@ -8028,18 +8035,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3372] = 3372, [3373] = 3373, [3374] = 3374, - [3375] = 3375, - [3376] = 3376, + [3375] = 365, + [3376] = 3280, [3377] = 3377, - [3378] = 3378, + [3378] = 3301, [3379] = 3379, [3380] = 3380, - [3381] = 3381, + [3381] = 363, [3382] = 3382, [3383] = 3383, [3384] = 3384, [3385] = 3385, - [3386] = 3386, + [3386] = 359, [3387] = 3387, [3388] = 3388, [3389] = 3389, @@ -8049,128 +8056,128 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3393] = 3393, [3394] = 3394, [3395] = 3395, - [3396] = 299, + [3396] = 3396, [3397] = 3397, - [3398] = 304, - [3399] = 314, + [3398] = 3398, + [3399] = 3399, [3400] = 3400, - [3401] = 300, + [3401] = 3401, [3402] = 3402, [3403] = 3403, - [3404] = 3404, + [3404] = 347, [3405] = 3405, - [3406] = 3406, - [3407] = 1895, + [3406] = 365, + [3407] = 3407, [3408] = 3408, [3409] = 3409, - [3410] = 3410, + [3410] = 1860, [3411] = 3411, [3412] = 3412, - [3413] = 314, + [3413] = 3413, [3414] = 3414, - [3415] = 304, + [3415] = 3415, [3416] = 3416, - [3417] = 3294, + [3417] = 3417, [3418] = 3418, - [3419] = 3419, + [3419] = 347, [3420] = 3420, - [3421] = 3107, + [3421] = 3421, [3422] = 3422, - [3423] = 2992, + [3423] = 3152, [3424] = 3424, - [3425] = 299, - [3426] = 3140, - [3427] = 300, - [3428] = 3428, - [3429] = 3429, + [3425] = 3425, + [3426] = 3426, + [3427] = 3427, + [3428] = 3131, + [3429] = 359, [3430] = 3430, [3431] = 3431, - [3432] = 3128, - [3433] = 3433, + [3432] = 2995, + [3433] = 363, [3434] = 3434, [3435] = 3435, - [3436] = 3436, - [3437] = 3214, - [3438] = 3248, - [3439] = 3193, - [3440] = 3239, - [3441] = 3212, - [3442] = 3239, - [3443] = 3215, - [3444] = 3241, - [3445] = 3215, - [3446] = 3261, - [3447] = 3447, - [3448] = 3188, - [3449] = 3449, - [3450] = 3247, - [3451] = 3451, - [3452] = 3248, - [3453] = 3210, - [3454] = 3241, - [3455] = 3188, - [3456] = 3449, - [3457] = 3210, - [3458] = 3214, - [3459] = 3447, + [3436] = 2977, + [3437] = 3437, + [3438] = 1930, + [3439] = 3203, + [3440] = 3203, + [3441] = 3243, + [3442] = 3224, + [3443] = 3189, + [3444] = 3201, + [3445] = 3445, + [3446] = 3446, + [3447] = 3258, + [3448] = 3448, + [3449] = 3243, + [3450] = 3253, + [3451] = 3211, + [3452] = 3253, + [3453] = 3207, + [3454] = 3228, + [3455] = 3455, + [3456] = 3258, + [3457] = 3457, + [3458] = 3448, + [3459] = 3455, [3460] = 3460, - [3461] = 3261, - [3462] = 3207, - [3463] = 3463, - [3464] = 3213, - [3465] = 1960, - [3466] = 3466, - [3467] = 3467, + [3461] = 3207, + [3462] = 3231, + [3463] = 3266, + [3464] = 3232, + [3465] = 3266, + [3466] = 3231, + [3467] = 3211, [3468] = 3468, [3469] = 3469, - [3470] = 3467, + [3470] = 3470, [3471] = 3471, [3472] = 3472, - [3473] = 3467, + [3473] = 3470, [3474] = 3474, - [3475] = 3474, - [3476] = 3466, - [3477] = 3477, - [3478] = 3478, - [3479] = 3468, - [3480] = 3474, - [3481] = 3468, - [3482] = 3477, + [3475] = 3475, + [3476] = 3476, + [3477] = 3475, + [3478] = 3475, + [3479] = 3479, + [3480] = 3480, + [3481] = 3476, + [3482] = 3482, [3483] = 3483, - [3484] = 3483, - [3485] = 3485, - [3486] = 3466, - [3487] = 3466, - [3488] = 3469, - [3489] = 1929, - [3490] = 3467, + [3484] = 3475, + [3485] = 3474, + [3486] = 3474, + [3487] = 3468, + [3488] = 3476, + [3489] = 3468, + [3490] = 3476, [3491] = 3469, - [3492] = 3466, - [3493] = 3477, - [3494] = 3494, + [3492] = 3470, + [3493] = 3469, + [3494] = 3471, [3495] = 3468, - [3496] = 3469, - [3497] = 3477, - [3498] = 3477, - [3499] = 3474, + [3496] = 1894, + [3497] = 3469, + [3498] = 3471, + [3499] = 3471, [3500] = 3468, - [3501] = 3501, - [3502] = 3483, - [3503] = 3466, - [3504] = 3474, - [3505] = 3505, - [3506] = 3483, - [3507] = 3469, - [3508] = 3468, - [3509] = 3477, - [3510] = 3467, - [3511] = 3483, - [3512] = 3483, - [3513] = 3469, - [3514] = 3467, - [3515] = 3474, - [3516] = 3516, - [3517] = 3517, + [3501] = 3468, + [3502] = 3502, + [3503] = 3469, + [3504] = 3476, + [3505] = 3475, + [3506] = 3474, + [3507] = 3470, + [3508] = 3471, + [3509] = 3469, + [3510] = 3470, + [3511] = 3474, + [3512] = 3474, + [3513] = 3475, + [3514] = 3476, + [3515] = 3515, + [3516] = 3471, + [3517] = 3470, [3518] = 3518, [3519] = 3519, [3520] = 3520, @@ -8181,394 +8188,394 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3525] = 3525, [3526] = 3526, [3527] = 3527, - [3528] = 3528, + [3528] = 3241, [3529] = 3529, - [3530] = 3262, + [3530] = 3530, [3531] = 3531, [3532] = 3532, [3533] = 3533, [3534] = 3534, [3535] = 3535, [3536] = 3536, - [3537] = 1971, - [3538] = 2008, + [3537] = 3537, + [3538] = 3538, [3539] = 3539, [3540] = 3540, [3541] = 3541, [3542] = 3542, - [3543] = 1998, + [3543] = 3543, [3544] = 3544, [3545] = 3545, [3546] = 3546, [3547] = 3547, - [3548] = 2009, - [3549] = 3549, + [3548] = 3548, + [3549] = 3538, [3550] = 3550, [3551] = 3551, [3552] = 3552, [3553] = 3553, - [3554] = 3541, + [3554] = 1945, [3555] = 3555, [3556] = 3556, [3557] = 3557, [3558] = 3558, - [3559] = 3552, - [3560] = 3551, - [3561] = 3546, + [3559] = 3559, + [3560] = 3560, + [3561] = 3561, [3562] = 3562, - [3563] = 3539, - [3564] = 1969, + [3563] = 3563, + [3564] = 3540, [3565] = 3565, - [3566] = 3566, + [3566] = 3557, [3567] = 3567, - [3568] = 3568, - [3569] = 3569, - [3570] = 3562, - [3571] = 3553, + [3568] = 1942, + [3569] = 1968, + [3570] = 3570, + [3571] = 3571, [3572] = 3572, [3573] = 3573, - [3574] = 3549, - [3575] = 3575, - [3576] = 3556, + [3574] = 3574, + [3575] = 3551, + [3576] = 3576, [3577] = 3577, - [3578] = 1968, - [3579] = 3566, - [3580] = 3580, - [3581] = 3581, - [3582] = 3582, + [3578] = 3555, + [3579] = 3579, + [3580] = 3574, + [3581] = 1940, + [3582] = 3546, [3583] = 3583, - [3584] = 3584, - [3585] = 3550, + [3584] = 1951, + [3585] = 3585, [3586] = 3586, - [3587] = 3587, + [3587] = 3559, [3588] = 3588, - [3589] = 3565, + [3589] = 3589, [3590] = 3590, - [3591] = 3591, + [3591] = 3544, [3592] = 3592, - [3593] = 3593, - [3594] = 2001, - [3595] = 3595, + [3593] = 3545, + [3594] = 3594, + [3595] = 1956, [3596] = 3596, - [3597] = 3597, - [3598] = 3598, - [3599] = 1969, - [3600] = 2008, - [3601] = 2206, - [3602] = 2207, + [3597] = 3579, + [3598] = 3539, + [3599] = 1963, + [3600] = 3600, + [3601] = 1945, + [3602] = 2209, [3603] = 2205, - [3604] = 1998, - [3605] = 327, - [3606] = 338, - [3607] = 2346, - [3608] = 2299, - [3609] = 2344, - [3610] = 2322, - [3611] = 2312, - [3612] = 2311, - [3613] = 2340, - [3614] = 2327, - [3615] = 2338, - [3616] = 2330, - [3617] = 2336, - [3618] = 2335, - [3619] = 2334, - [3620] = 2339, - [3621] = 2209, - [3622] = 2341, - [3623] = 2302, - [3624] = 2324, - [3625] = 2295, - [3626] = 2291, - [3627] = 2287, - [3628] = 2286, - [3629] = 2283, - [3630] = 2354, - [3631] = 2386, - [3632] = 2383, - [3633] = 2369, - [3634] = 2367, - [3635] = 2361, - [3636] = 2282, - [3637] = 2281, - [3638] = 2357, - [3639] = 2353, - [3640] = 2351, - [3641] = 2280, - [3642] = 3642, - [3643] = 3642, + [3604] = 2210, + [3605] = 1963, + [3606] = 1956, + [3607] = 334, + [3608] = 328, + [3609] = 2377, + [3610] = 2306, + [3611] = 2299, + [3612] = 2302, + [3613] = 2296, + [3614] = 2206, + [3615] = 2307, + [3616] = 2297, + [3617] = 2386, + [3618] = 2284, + [3619] = 2387, + [3620] = 2379, + [3621] = 2328, + [3622] = 2340, + [3623] = 2295, + [3624] = 2383, + [3625] = 2288, + [3626] = 2380, + [3627] = 2290, + [3628] = 2376, + [3629] = 2358, + [3630] = 2353, + [3631] = 2351, + [3632] = 2308, + [3633] = 2359, + [3634] = 2310, + [3635] = 2378, + [3636] = 2291, + [3637] = 2347, + [3638] = 2285, + [3639] = 2345, + [3640] = 2382, + [3641] = 2329, + [3642] = 2330, + [3643] = 2338, [3644] = 3644, [3645] = 3644, - [3646] = 3642, - [3647] = 2212, - [3648] = 3642, - [3649] = 3642, - [3650] = 2207, - [3651] = 2241, - [3652] = 2329, - [3653] = 2236, - [3654] = 1015, - [3655] = 2258, - [3656] = 2257, - [3657] = 2256, - [3658] = 2246, - [3659] = 2365, - [3660] = 2244, - [3661] = 327, - [3662] = 2384, - [3663] = 1024, - [3664] = 338, - [3665] = 1043, - [3666] = 1037, - [3667] = 2226, - [3668] = 2232, - [3669] = 2234, - [3670] = 2245, - [3671] = 2206, - [3672] = 1029, - [3673] = 2377, - [3674] = 2205, - [3675] = 2269, - [3676] = 2239, - [3677] = 2331, - [3678] = 2218, - [3679] = 2213, - [3680] = 2216, - [3681] = 2217, - [3682] = 2223, - [3683] = 3683, - [3684] = 3684, - [3685] = 2360, - [3686] = 3686, - [3687] = 3687, - [3688] = 3688, - [3689] = 2206, - [3690] = 2207, - [3691] = 3684, - [3692] = 2240, - [3693] = 3684, - [3694] = 2388, - [3695] = 2385, - [3696] = 2205, - [3697] = 2273, - [3698] = 2381, - [3699] = 2380, - [3700] = 2379, - [3701] = 2378, - [3702] = 2271, - [3703] = 2371, - [3704] = 2320, - [3705] = 2270, - [3706] = 2267, - [3707] = 2248, - [3708] = 2326, - [3709] = 2266, - [3710] = 2274, - [3711] = 3683, - [3712] = 2231, - [3713] = 2264, - [3714] = 2263, - [3715] = 2319, - [3716] = 2318, - [3717] = 2247, - [3718] = 2242, - [3719] = 2278, - [3720] = 2363, - [3721] = 3683, - [3722] = 3683, - [3723] = 2280, - [3724] = 2281, - [3725] = 2282, - [3726] = 3683, - [3727] = 2209, - [3728] = 3683, - [3729] = 3684, - [3730] = 3686, - [3731] = 2243, - [3732] = 3687, - [3733] = 3684, - [3734] = 3683, - [3735] = 3688, - [3736] = 3686, - [3737] = 2283, - [3738] = 2299, - [3739] = 3686, - [3740] = 2311, - [3741] = 2312, - [3742] = 2335, - [3743] = 2336, - [3744] = 2338, - [3745] = 2351, - [3746] = 2353, - [3747] = 2357, - [3748] = 2361, - [3749] = 2367, - [3750] = 2369, - [3751] = 2383, - [3752] = 2386, - [3753] = 2354, - [3754] = 3687, - [3755] = 3688, - [3756] = 2286, - [3757] = 2287, - [3758] = 2291, - [3759] = 2295, - [3760] = 3687, - [3761] = 3683, - [3762] = 2276, - [3763] = 2233, - [3764] = 2290, - [3765] = 3683, - [3766] = 3688, - [3767] = 2345, - [3768] = 2356, - [3769] = 2296, - [3770] = 2323, - [3771] = 2359, - [3772] = 2352, - [3773] = 2358, - [3774] = 2344, - [3775] = 2341, - [3776] = 2340, - [3777] = 2339, - [3778] = 2334, - [3779] = 2330, - [3780] = 2327, - [3781] = 2324, - [3782] = 2346, - [3783] = 2322, - [3784] = 2368, - [3785] = 2387, - [3786] = 2372, - [3787] = 2374, - [3788] = 2376, - [3789] = 2366, - [3790] = 3688, - [3791] = 3687, - [3792] = 3686, - [3793] = 2302, - [3794] = 3794, - [3795] = 3795, + [3646] = 3644, + [3647] = 3644, + [3648] = 3644, + [3649] = 3649, + [3650] = 3649, + [3651] = 2219, + [3652] = 1046, + [3653] = 2269, + [3654] = 2209, + [3655] = 2233, + [3656] = 2210, + [3657] = 1045, + [3658] = 2205, + [3659] = 2334, + [3660] = 1063, + [3661] = 2266, + [3662] = 2265, + [3663] = 2331, + [3664] = 2268, + [3665] = 2335, + [3666] = 1044, + [3667] = 2336, + [3668] = 2217, + [3669] = 2283, + [3670] = 2304, + [3671] = 2300, + [3672] = 2289, + [3673] = 2270, + [3674] = 2362, + [3675] = 2287, + [3676] = 2337, + [3677] = 1049, + [3678] = 334, + [3679] = 328, + [3680] = 2225, + [3681] = 2222, + [3682] = 2221, + [3683] = 2223, + [3684] = 2220, + [3685] = 2327, + [3686] = 2315, + [3687] = 2357, + [3688] = 2232, + [3689] = 2319, + [3690] = 2321, + [3691] = 2286, + [3692] = 2384, + [3693] = 2355, + [3694] = 2354, + [3695] = 2242, + [3696] = 2240, + [3697] = 3697, + [3698] = 3697, + [3699] = 2322, + [3700] = 2274, + [3701] = 3701, + [3702] = 3697, + [3703] = 2360, + [3704] = 3697, + [3705] = 3701, + [3706] = 2273, + [3707] = 3707, + [3708] = 3708, + [3709] = 3709, + [3710] = 2206, + [3711] = 3708, + [3712] = 3707, + [3713] = 3709, + [3714] = 3697, + [3715] = 2249, + [3716] = 3707, + [3717] = 2260, + [3718] = 2258, + [3719] = 2205, + [3720] = 3701, + [3721] = 2210, + [3722] = 2248, + [3723] = 2366, + [3724] = 2386, + [3725] = 2385, + [3726] = 2293, + [3727] = 2375, + [3728] = 2209, + [3729] = 2387, + [3730] = 2311, + [3731] = 3709, + [3732] = 2281, + [3733] = 2328, + [3734] = 2323, + [3735] = 3708, + [3736] = 2324, + [3737] = 2313, + [3738] = 2317, + [3739] = 3708, + [3740] = 2325, + [3741] = 2350, + [3742] = 2356, + [3743] = 2284, + [3744] = 2285, + [3745] = 2288, + [3746] = 2290, + [3747] = 2291, + [3748] = 2295, + [3749] = 2296, + [3750] = 2297, + [3751] = 2299, + [3752] = 2302, + [3753] = 2306, + [3754] = 2307, + [3755] = 2308, + [3756] = 2310, + [3757] = 2312, + [3758] = 2372, + [3759] = 3701, + [3760] = 2383, + [3761] = 3697, + [3762] = 2382, + [3763] = 2267, + [3764] = 3709, + [3765] = 3701, + [3766] = 3707, + [3767] = 2333, + [3768] = 3707, + [3769] = 3709, + [3770] = 3708, + [3771] = 2344, + [3772] = 2380, + [3773] = 2379, + [3774] = 3697, + [3775] = 2378, + [3776] = 2364, + [3777] = 2377, + [3778] = 2373, + [3779] = 2376, + [3780] = 2388, + [3781] = 2365, + [3782] = 3697, + [3783] = 2316, + [3784] = 2320, + [3785] = 3697, + [3786] = 2329, + [3787] = 2330, + [3788] = 2338, + [3789] = 2340, + [3790] = 2345, + [3791] = 2347, + [3792] = 2359, + [3793] = 2351, + [3794] = 2353, + [3795] = 2358, [3796] = 3796, [3797] = 3797, [3798] = 3798, - [3799] = 3796, + [3799] = 3799, [3800] = 3800, - [3801] = 3801, - [3802] = 2212, + [3801] = 3799, + [3802] = 3802, [3803] = 3803, [3804] = 3804, [3805] = 3805, - [3806] = 3806, - [3807] = 3807, - [3808] = 3808, + [3806] = 3799, + [3807] = 3803, + [3808] = 2219, [3809] = 3809, - [3810] = 3810, + [3810] = 3803, [3811] = 3811, - [3812] = 3796, - [3813] = 3796, - [3814] = 3806, - [3815] = 3806, - [3816] = 3805, + [3812] = 3812, + [3813] = 3805, + [3814] = 3814, + [3815] = 3815, + [3816] = 3799, [3817] = 3817, [3818] = 3818, - [3819] = 3819, + [3819] = 3805, [3820] = 3820, - [3821] = 3806, + [3821] = 3821, [3822] = 3822, [3823] = 3823, - [3824] = 3806, - [3825] = 3825, - [3826] = 3796, - [3827] = 3805, + [3824] = 3824, + [3825] = 3799, + [3826] = 3805, + [3827] = 3827, [3828] = 3828, [3829] = 3829, - [3830] = 3805, - [3831] = 3831, + [3830] = 3830, + [3831] = 3805, [3832] = 3832, [3833] = 3833, - [3834] = 3805, - [3835] = 2311, - [3836] = 2209, - [3837] = 3837, - [3838] = 2280, - [3839] = 3839, - [3840] = 3840, - [3841] = 2281, - [3842] = 3842, - [3843] = 2282, - [3844] = 2283, - [3845] = 2286, - [3846] = 3839, - [3847] = 1969, - [3848] = 2331, - [3849] = 2234, - [3850] = 2269, - [3851] = 3851, - [3852] = 2236, + [3834] = 3803, + [3835] = 3835, + [3836] = 3803, + [3837] = 2296, + [3838] = 2359, + [3839] = 2351, + [3840] = 2383, + [3841] = 2338, + [3842] = 2330, + [3843] = 2233, + [3844] = 2328, + [3845] = 2387, + [3846] = 2353, + [3847] = 2386, + [3848] = 2358, + [3849] = 2340, + [3850] = 2376, + [3851] = 2377, + [3852] = 2378, [3853] = 3853, - [3854] = 3854, - [3855] = 2287, - [3856] = 2245, - [3857] = 2226, - [3858] = 2291, - [3859] = 2241, - [3860] = 2239, - [3861] = 2295, - [3862] = 3854, - [3863] = 2299, - [3864] = 3864, - [3865] = 2302, - [3866] = 2232, - [3867] = 2244, - [3868] = 1998, - [3869] = 3869, - [3870] = 3870, - [3871] = 2365, - [3872] = 2322, - [3873] = 2346, - [3874] = 2324, - [3875] = 2327, - [3876] = 2330, - [3877] = 2312, - [3878] = 2258, - [3879] = 2257, - [3880] = 2256, - [3881] = 2334, - [3882] = 2339, - [3883] = 2335, - [3884] = 2336, - [3885] = 2338, - [3886] = 2351, - [3887] = 2353, - [3888] = 2340, - [3889] = 2357, - [3890] = 2341, - [3891] = 2361, - [3892] = 2367, - [3893] = 3893, - [3894] = 2369, - [3895] = 2383, - [3896] = 2386, - [3897] = 2344, - [3898] = 2354, - [3899] = 3854, - [3900] = 3839, - [3901] = 3840, - [3902] = 3854, + [3854] = 2345, + [3855] = 2379, + [3856] = 2329, + [3857] = 3829, + [3858] = 2380, + [3859] = 2382, + [3860] = 2347, + [3861] = 3861, + [3862] = 2335, + [3863] = 3863, + [3864] = 3861, + [3865] = 3863, + [3866] = 2289, + [3867] = 3867, + [3868] = 2287, + [3869] = 2283, + [3870] = 2310, + [3871] = 2308, + [3872] = 2307, + [3873] = 3873, + [3874] = 3874, + [3875] = 3873, + [3876] = 2306, + [3877] = 2302, + [3878] = 2299, + [3879] = 2297, + [3880] = 2337, + [3881] = 2295, + [3882] = 2291, + [3883] = 2290, + [3884] = 2206, + [3885] = 2288, + [3886] = 3873, + [3887] = 3887, + [3888] = 2285, + [3889] = 3889, + [3890] = 2266, + [3891] = 3873, + [3892] = 3892, + [3893] = 2265, + [3894] = 2268, + [3895] = 3895, + [3896] = 2269, + [3897] = 1945, + [3898] = 2284, + [3899] = 2270, + [3900] = 1963, + [3901] = 2331, + [3902] = 2336, [3903] = 3903, - [3904] = 2008, - [3905] = 3839, - [3906] = 2384, - [3907] = 3907, - [3908] = 2246, - [3909] = 2329, - [3910] = 2377, - [3911] = 3798, + [3904] = 2362, + [3905] = 1956, + [3906] = 3863, + [3907] = 3863, + [3908] = 3908, + [3909] = 2217, + [3910] = 2300, + [3911] = 2304, [3912] = 3912, - [3913] = 3913, + [3913] = 2334, [3914] = 3914, - [3915] = 3915, + [3915] = 2221, [3916] = 3916, [3917] = 3917, [3918] = 3918, @@ -8577,449 +8584,449 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3921] = 3921, [3922] = 3922, [3923] = 3923, - [3924] = 2223, + [3924] = 3924, [3925] = 3925, - [3926] = 2213, - [3927] = 3921, + [3926] = 3926, + [3927] = 3916, [3928] = 3928, - [3929] = 3929, - [3930] = 3930, + [3929] = 2222, + [3930] = 3922, [3931] = 3931, [3932] = 3932, [3933] = 3933, [3934] = 3934, [3935] = 3935, - [3936] = 3916, - [3937] = 3921, - [3938] = 3916, + [3936] = 2225, + [3937] = 3916, + [3938] = 3938, [3939] = 3939, - [3940] = 3935, - [3941] = 3935, - [3942] = 3921, + [3940] = 3940, + [3941] = 3941, + [3942] = 3916, [3943] = 3943, - [3944] = 3935, + [3944] = 2220, [3945] = 3945, - [3946] = 3916, + [3946] = 3946, [3947] = 3947, [3948] = 3948, - [3949] = 3921, + [3949] = 3922, [3950] = 3950, [3951] = 3951, [3952] = 3952, [3953] = 3953, [3954] = 3954, - [3955] = 3955, - [3956] = 3935, + [3955] = 3922, + [3956] = 3956, [3957] = 3957, [3958] = 3958, [3959] = 3959, [3960] = 3960, - [3961] = 2218, - [3962] = 3962, - [3963] = 2212, - [3964] = 3964, + [3961] = 3922, + [3962] = 3914, + [3963] = 3914, + [3964] = 3916, [3965] = 3965, - [3966] = 2216, - [3967] = 2217, - [3968] = 2387, - [3969] = 2359, - [3970] = 2290, - [3971] = 1043, - [3972] = 2236, - [3973] = 2371, - [3974] = 2233, - [3975] = 2242, - [3976] = 2226, - [3977] = 1024, - [3978] = 3978, - [3979] = 2263, - [3980] = 2271, - [3981] = 2320, - [3982] = 2319, - [3983] = 2318, - [3984] = 2266, - [3985] = 3985, - [3986] = 1037, - [3987] = 2374, - [3988] = 1029, - [3989] = 2378, - [3990] = 2270, - [3991] = 2379, - [3992] = 2366, - [3993] = 3993, - [3994] = 2244, - [3995] = 2296, - [3996] = 2264, - [3997] = 2372, - [3998] = 2267, - [3999] = 2276, - [4000] = 2380, - [4001] = 2381, - [4002] = 1015, - [4003] = 2243, - [4004] = 4004, - [4005] = 2365, - [4006] = 2326, - [4007] = 2323, - [4008] = 2247, - [4009] = 2248, - [4010] = 2385, - [4011] = 2329, - [4012] = 2356, - [4013] = 2008, - [4014] = 2388, - [4015] = 2231, - [4016] = 2278, - [4017] = 1998, - [4018] = 2363, - [4019] = 2273, - [4020] = 2331, - [4021] = 2360, - [4022] = 2274, + [3966] = 3966, + [3967] = 2219, + [3968] = 3914, + [3969] = 2223, + [3970] = 2373, + [3971] = 2281, + [3972] = 2316, + [3973] = 2315, + [3974] = 3974, + [3975] = 2331, + [3976] = 1049, + [3977] = 2336, + [3978] = 2217, + [3979] = 2312, + [3980] = 2362, + [3981] = 2304, + [3982] = 2300, + [3983] = 2249, + [3984] = 2248, + [3985] = 2366, + [3986] = 2293, + [3987] = 2375, + [3988] = 2311, + [3989] = 2357, + [3990] = 2313, + [3991] = 2317, + [3992] = 2327, + [3993] = 2333, + [3994] = 2344, + [3995] = 2355, + [3996] = 2354, + [3997] = 3997, + [3998] = 2319, + [3999] = 1945, + [4000] = 4000, + [4001] = 2321, + [4002] = 2322, + [4003] = 2232, + [4004] = 2286, + [4005] = 1063, + [4006] = 2274, + [4007] = 2242, + [4008] = 2273, + [4009] = 2240, + [4010] = 1044, + [4011] = 4011, + [4012] = 2320, + [4013] = 2260, + [4014] = 2258, + [4015] = 2323, + [4016] = 1963, + [4017] = 1045, + [4018] = 2360, + [4019] = 2324, + [4020] = 2364, + [4021] = 2365, + [4022] = 2325, [4023] = 4023, - [4024] = 2240, - [4025] = 1969, - [4026] = 2358, - [4027] = 2376, - [4028] = 2368, - [4029] = 2269, - [4030] = 2352, - [4031] = 2345, - [4032] = 4032, - [4033] = 4033, - [4034] = 4032, - [4035] = 4032, + [4024] = 1046, + [4025] = 2233, + [4026] = 2350, + [4027] = 2356, + [4028] = 1956, + [4029] = 2267, + [4030] = 2372, + [4031] = 2384, + [4032] = 2388, + [4033] = 2385, + [4034] = 4034, + [4035] = 3829, [4036] = 4036, - [4037] = 4037, + [4037] = 4036, [4038] = 4038, - [4039] = 4039, + [4039] = 4034, [4040] = 4040, - [4041] = 4032, - [4042] = 4042, + [4041] = 4041, + [4042] = 4034, [4043] = 4043, [4044] = 4044, - [4045] = 4043, - [4046] = 4043, - [4047] = 4047, - [4048] = 4043, + [4045] = 4045, + [4046] = 4046, + [4047] = 4034, + [4048] = 4036, [4049] = 4049, - [4050] = 2217, - [4051] = 4038, - [4052] = 2216, - [4053] = 2213, - [4054] = 4054, - [4055] = 2223, - [4056] = 4038, - [4057] = 4054, - [4058] = 4038, - [4059] = 4043, - [4060] = 4032, - [4061] = 4061, - [4062] = 4040, - [4063] = 4032, - [4064] = 3798, - [4065] = 4043, - [4066] = 4066, + [4050] = 4050, + [4051] = 4051, + [4052] = 2220, + [4053] = 4053, + [4054] = 2223, + [4055] = 4036, + [4056] = 4036, + [4057] = 4036, + [4058] = 4043, + [4059] = 4038, + [4060] = 2222, + [4061] = 2225, + [4062] = 4043, + [4063] = 4063, + [4064] = 4034, + [4065] = 4034, + [4066] = 4043, [4067] = 4067, - [4068] = 4068, - [4069] = 2218, + [4068] = 2221, + [4069] = 4069, [4070] = 4070, - [4071] = 4071, - [4072] = 2384, - [4073] = 2276, - [4074] = 2387, + [4071] = 4051, + [4072] = 4072, + [4073] = 4073, + [4074] = 4074, [4075] = 4075, - [4076] = 2240, - [4077] = 2366, - [4078] = 2363, + [4076] = 4076, + [4077] = 4077, + [4078] = 4078, [4079] = 4079, - [4080] = 4080, + [4080] = 2388, [4081] = 4081, [4082] = 4082, - [4083] = 2360, + [4083] = 4083, [4084] = 4084, - [4085] = 4075, - [4086] = 2388, - [4087] = 4087, - [4088] = 4081, + [4085] = 4085, + [4086] = 2385, + [4087] = 4081, + [4088] = 4088, [4089] = 4089, [4090] = 4090, - [4091] = 4091, - [4092] = 4079, - [4093] = 4080, - [4094] = 4082, - [4095] = 2381, + [4091] = 3916, + [4092] = 4092, + [4093] = 4081, + [4094] = 4089, + [4095] = 4095, [4096] = 4096, - [4097] = 2380, - [4098] = 4084, - [4099] = 2379, - [4100] = 2378, + [4097] = 4083, + [4098] = 4098, + [4099] = 4074, + [4100] = 4100, [4101] = 4101, [4102] = 4102, - [4103] = 2232, + [4103] = 4103, [4104] = 4104, - [4105] = 4104, + [4105] = 4105, [4106] = 4106, - [4107] = 4070, - [4108] = 4108, - [4109] = 4039, - [4110] = 4036, - [4111] = 4070, - [4112] = 4106, - [4113] = 2234, - [4114] = 2239, + [4107] = 4107, + [4108] = 4074, + [4109] = 4109, + [4110] = 3916, + [4111] = 4111, + [4112] = 4112, + [4113] = 2365, + [4114] = 2364, [4115] = 4115, - [4116] = 4116, - [4117] = 4102, + [4116] = 4104, + [4117] = 2360, [4118] = 4118, - [4119] = 4101, - [4120] = 4120, - [4121] = 4121, - [4122] = 4122, + [4119] = 4119, + [4120] = 4078, + [4121] = 4084, + [4122] = 4085, [4123] = 4123, [4124] = 4124, - [4125] = 4070, - [4126] = 4126, - [4127] = 4127, - [4128] = 2296, - [4129] = 2368, - [4130] = 4090, - [4131] = 4131, - [4132] = 2241, - [4133] = 2245, - [4134] = 4134, + [4125] = 1860, + [4126] = 4078, + [4127] = 4041, + [4128] = 4104, + [4129] = 3916, + [4130] = 4130, + [4131] = 4084, + [4132] = 4132, + [4133] = 4133, + [4134] = 4074, [4135] = 4135, - [4136] = 4136, + [4136] = 3916, [4137] = 4137, - [4138] = 4096, - [4139] = 4139, - [4140] = 4140, - [4141] = 2318, - [4142] = 2319, + [4138] = 2274, + [4139] = 1063, + [4140] = 3916, + [4141] = 2322, + [4142] = 2321, [4143] = 2320, - [4144] = 4144, - [4145] = 4145, - [4146] = 4146, - [4147] = 4147, - [4148] = 2376, + [4144] = 4084, + [4145] = 2316, + [4146] = 4076, + [4147] = 2315, + [4148] = 4148, [4149] = 4149, - [4150] = 4150, - [4151] = 2278, - [4152] = 4152, - [4153] = 4153, + [4150] = 2289, + [4151] = 2287, + [4152] = 4085, + [4153] = 2283, [4154] = 4154, - [4155] = 2246, - [4156] = 3935, - [4157] = 4157, + [4155] = 4155, + [4156] = 4078, + [4157] = 4096, [4158] = 4158, - [4159] = 4159, - [4160] = 2359, - [4161] = 4161, - [4162] = 4091, + [4159] = 4076, + [4160] = 4089, + [4161] = 4096, + [4162] = 4089, [4163] = 4163, - [4164] = 4144, - [4165] = 4154, - [4166] = 3935, - [4167] = 4167, + [4164] = 4101, + [4165] = 4089, + [4166] = 4166, + [4167] = 4101, [4168] = 4168, - [4169] = 4169, - [4170] = 4170, - [4171] = 4167, - [4172] = 4172, - [4173] = 2323, - [4174] = 4174, - [4175] = 2326, - [4176] = 3935, - [4177] = 4122, - [4178] = 2231, - [4179] = 4179, + [4169] = 4103, + [4170] = 4103, + [4171] = 4171, + [4172] = 4076, + [4173] = 4133, + [4174] = 4168, + [4175] = 4133, + [4176] = 4089, + [4177] = 4177, + [4178] = 4168, + [4179] = 4135, [4180] = 4096, - [4181] = 4181, - [4182] = 4182, - [4183] = 4183, - [4184] = 4184, - [4185] = 4185, - [4186] = 4186, - [4187] = 4104, - [4188] = 4157, - [4189] = 4082, - [4190] = 4080, - [4191] = 2345, - [4192] = 4079, - [4193] = 4090, - [4194] = 2374, - [4195] = 4101, - [4196] = 4102, - [4197] = 4116, - [4198] = 4115, - [4199] = 4199, - [4200] = 4200, - [4201] = 4201, - [4202] = 4152, - [4203] = 2372, - [4204] = 2358, - [4205] = 2352, - [4206] = 4096, - [4207] = 4089, - [4208] = 4070, + [4181] = 4137, + [4182] = 4053, + [4183] = 4101, + [4184] = 4103, + [4185] = 4083, + [4186] = 4133, + [4187] = 4187, + [4188] = 4188, + [4189] = 1049, + [4190] = 4085, + [4191] = 2249, + [4192] = 4192, + [4193] = 1046, + [4194] = 4194, + [4195] = 1045, + [4196] = 2248, + [4197] = 4095, + [4198] = 2366, + [4199] = 2293, + [4200] = 1044, + [4201] = 4168, + [4202] = 4202, + [4203] = 4107, + [4204] = 4204, + [4205] = 4205, + [4206] = 4206, + [4207] = 2375, + [4208] = 4078, [4209] = 4209, - [4210] = 4106, - [4211] = 4089, - [4212] = 1015, - [4213] = 4081, - [4214] = 4214, - [4215] = 2356, - [4216] = 4044, - [4217] = 4217, - [4218] = 4218, - [4219] = 2243, - [4220] = 4102, - [4221] = 4084, - [4222] = 4081, - [4223] = 4089, - [4224] = 4090, - [4225] = 4084, - [4226] = 4079, - [4227] = 4080, - [4228] = 4082, - [4229] = 2290, - [4230] = 3935, - [4231] = 3935, - [4232] = 4168, - [4233] = 2233, - [4234] = 1024, - [4235] = 1895, - [4236] = 4104, - [4237] = 4096, + [4210] = 4210, + [4211] = 4211, + [4212] = 4083, + [4213] = 334, + [4214] = 2357, + [4215] = 2311, + [4216] = 4095, + [4217] = 2313, + [4218] = 2317, + [4219] = 2327, + [4220] = 2333, + [4221] = 2344, + [4222] = 4084, + [4223] = 4078, + [4224] = 2355, + [4225] = 4225, + [4226] = 4226, + [4227] = 3916, + [4228] = 4135, + [4229] = 4137, + [4230] = 2354, + [4231] = 328, + [4232] = 2266, + [4233] = 2265, + [4234] = 2268, + [4235] = 4235, + [4236] = 2269, + [4237] = 2270, [4238] = 4238, - [4239] = 1029, - [4240] = 4122, - [4241] = 1037, - [4242] = 2385, - [4243] = 4070, - [4244] = 1043, - [4245] = 4245, - [4246] = 4106, - [4247] = 4106, + [4239] = 4239, + [4240] = 4076, + [4241] = 4241, + [4242] = 4095, + [4243] = 2258, + [4244] = 4083, + [4245] = 2260, + [4246] = 4168, + [4247] = 4135, [4248] = 4248, - [4249] = 4084, - [4250] = 2371, - [4251] = 4084, - [4252] = 2242, - [4253] = 4096, - [4254] = 2247, - [4255] = 2273, - [4256] = 2248, - [4257] = 2377, - [4258] = 4157, - [4259] = 4137, - [4260] = 2271, - [4261] = 4116, - [4262] = 4102, - [4263] = 4122, - [4264] = 4101, - [4265] = 4157, - [4266] = 2270, - [4267] = 4267, - [4268] = 4157, - [4269] = 4269, - [4270] = 4270, - [4271] = 4115, - [4272] = 4218, - [4273] = 3935, - [4274] = 4274, + [4249] = 4249, + [4250] = 4250, + [4251] = 4251, + [4252] = 4252, + [4253] = 4253, + [4254] = 4254, + [4255] = 4084, + [4256] = 4256, + [4257] = 4050, + [4258] = 4137, + [4259] = 4049, + [4260] = 4260, + [4261] = 4261, + [4262] = 4262, + [4263] = 4132, + [4264] = 4083, + [4265] = 4104, + [4266] = 2319, + [4267] = 4235, + [4268] = 4168, + [4269] = 4253, + [4270] = 4256, + [4271] = 4271, + [4272] = 2350, + [4273] = 2267, + [4274] = 4095, [4275] = 4275, - [4276] = 3935, - [4277] = 4115, - [4278] = 4278, - [4279] = 4116, - [4280] = 2274, - [4281] = 4281, - [4282] = 2258, - [4283] = 2257, - [4284] = 2256, + [4276] = 3916, + [4277] = 2337, + [4278] = 2335, + [4279] = 2286, + [4280] = 4280, + [4281] = 2334, + [4282] = 4081, + [4283] = 4283, + [4284] = 2384, [4285] = 4285, - [4286] = 4061, - [4287] = 4157, - [4288] = 4106, - [4289] = 4289, - [4290] = 4102, - [4291] = 4101, - [4292] = 2267, - [4293] = 4104, - [4294] = 4101, - [4295] = 4295, - [4296] = 327, - [4297] = 4297, - [4298] = 338, - [4299] = 2263, - [4300] = 2264, - [4301] = 4301, - [4302] = 2266, - [4303] = 4303, - [4304] = 4304, - [4305] = 4305, - [4306] = 4304, + [4286] = 4286, + [4287] = 2373, + [4288] = 2372, + [4289] = 2356, + [4290] = 4254, + [4291] = 2325, + [4292] = 2324, + [4293] = 2323, + [4294] = 2281, + [4295] = 4085, + [4296] = 2273, + [4297] = 2232, + [4298] = 4260, + [4299] = 4262, + [4300] = 4076, + [4301] = 4095, + [4302] = 4261, + [4303] = 2312, + [4304] = 2240, + [4305] = 2242, + [4306] = 4306, [4307] = 4307, [4308] = 4308, [4309] = 4309, [4310] = 4310, - [4311] = 4039, + [4311] = 4311, [4312] = 4312, - [4313] = 4036, - [4314] = 4304, - [4315] = 4315, - [4316] = 293, - [4317] = 4317, - [4318] = 294, - [4319] = 4319, + [4313] = 4313, + [4314] = 4307, + [4315] = 4309, + [4316] = 4306, + [4317] = 304, + [4318] = 4318, + [4319] = 4308, [4320] = 4320, [4321] = 4321, - [4322] = 4322, - [4323] = 4304, - [4324] = 4304, - [4325] = 4325, - [4326] = 4304, + [4322] = 4306, + [4323] = 4318, + [4324] = 4308, + [4325] = 4306, + [4326] = 4326, [4327] = 4327, [4328] = 4328, [4329] = 4329, - [4330] = 4305, + [4330] = 4330, [4331] = 4331, - [4332] = 4305, - [4333] = 4305, - [4334] = 4334, - [4335] = 4335, - [4336] = 4305, - [4337] = 4327, - [4338] = 4310, - [4339] = 4308, - [4340] = 4304, - [4341] = 4305, - [4342] = 4304, - [4343] = 4343, + [4332] = 4332, + [4333] = 4333, + [4334] = 4308, + [4335] = 4306, + [4336] = 4308, + [4337] = 295, + [4338] = 4306, + [4339] = 4306, + [4340] = 4049, + [4341] = 4050, + [4342] = 4308, + [4343] = 4306, [4344] = 4344, [4345] = 4345, [4346] = 4346, [4347] = 4347, - [4348] = 4348, + [4348] = 4177, [4349] = 4349, [4350] = 4350, [4351] = 4351, - [4352] = 4352, + [4352] = 4262, [4353] = 4353, - [4354] = 4354, + [4354] = 4261, [4355] = 4355, [4356] = 4356, - [4357] = 4357, + [4357] = 4260, [4358] = 4358, - [4359] = 4359, - [4360] = 4360, - [4361] = 4361, + [4359] = 4226, + [4360] = 4238, + [4361] = 322, [4362] = 4362, - [4363] = 4363, + [4363] = 313, [4364] = 4364, - [4365] = 4365, - [4366] = 4366, + [4365] = 4358, + [4366] = 4364, [4367] = 4367, [4368] = 4368, [4369] = 4369, @@ -9029,131 +9036,131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4373] = 4373, [4374] = 4374, [4375] = 4375, - [4376] = 4376, + [4376] = 4254, [4377] = 4377, - [4378] = 4378, + [4378] = 4253, [4379] = 4379, [4380] = 4380, [4381] = 4381, [4382] = 4382, [4383] = 4383, - [4384] = 4384, + [4384] = 4372, [4385] = 4385, - [4386] = 4386, + [4386] = 365, [4387] = 4387, [4388] = 4388, [4389] = 4389, - [4390] = 4390, - [4391] = 4391, - [4392] = 4392, - [4393] = 4393, - [4394] = 4349, + [4390] = 4358, + [4391] = 4379, + [4392] = 4364, + [4393] = 4358, + [4394] = 4394, [4395] = 4395, - [4396] = 4396, - [4397] = 4343, - [4398] = 314, + [4396] = 4380, + [4397] = 4397, + [4398] = 4382, [4399] = 4399, [4400] = 4400, - [4401] = 4347, - [4402] = 4345, + [4401] = 4401, + [4402] = 4402, [4403] = 4403, [4404] = 4404, - [4405] = 4348, + [4405] = 4405, [4406] = 4406, - [4407] = 4352, - [4408] = 4360, - [4409] = 4353, - [4410] = 4354, - [4411] = 4360, + [4407] = 4407, + [4408] = 4408, + [4409] = 4358, + [4410] = 4410, + [4411] = 4411, [4412] = 4412, - [4413] = 4413, + [4413] = 4364, [4414] = 4414, - [4415] = 4354, - [4416] = 4353, - [4417] = 4417, + [4415] = 4415, + [4416] = 4416, + [4417] = 4350, [4418] = 4418, - [4419] = 4419, - [4420] = 4420, - [4421] = 4349, - [4422] = 4352, - [4423] = 4343, - [4424] = 4424, - [4425] = 4425, + [4419] = 4382, + [4420] = 4364, + [4421] = 4421, + [4422] = 4346, + [4423] = 4423, + [4424] = 4408, + [4425] = 4351, [4426] = 4426, - [4427] = 4427, - [4428] = 4347, - [4429] = 4429, + [4427] = 4211, + [4428] = 4428, + [4429] = 4349, [4430] = 4430, - [4431] = 4345, + [4431] = 305, [4432] = 4432, [4433] = 4433, [4434] = 4434, - [4435] = 4435, - [4436] = 4436, - [4437] = 4348, + [4435] = 4312, + [4436] = 4380, + [4437] = 4437, [4438] = 4438, - [4439] = 4439, + [4439] = 4428, [4440] = 4440, - [4441] = 4348, + [4441] = 4256, [4442] = 4442, - [4443] = 4443, - [4444] = 4444, - [4445] = 4445, + [4443] = 4379, + [4444] = 4350, + [4445] = 4369, [4446] = 4446, - [4447] = 4352, - [4448] = 4353, - [4449] = 4354, - [4450] = 4167, - [4451] = 4154, - [4452] = 4144, - [4453] = 4137, - [4454] = 4091, - [4455] = 4075, - [4456] = 4456, - [4457] = 4360, + [4447] = 4369, + [4448] = 4370, + [4449] = 4449, + [4450] = 4442, + [4451] = 4369, + [4452] = 4452, + [4453] = 4453, + [4454] = 4454, + [4455] = 347, + [4456] = 4106, + [4457] = 4457, [4458] = 4458, - [4459] = 4459, - [4460] = 4345, - [4461] = 4347, - [4462] = 4349, - [4463] = 4343, - [4464] = 4347, - [4465] = 4348, - [4466] = 4352, - [4467] = 4360, + [4459] = 4000, + [4460] = 4428, + [4461] = 4461, + [4462] = 363, + [4463] = 4463, + [4464] = 4380, + [4465] = 4465, + [4466] = 3997, + [4467] = 4467, [4468] = 4468, - [4469] = 4353, + [4469] = 4469, [4470] = 4470, - [4471] = 4354, - [4472] = 4343, - [4473] = 4349, - [4474] = 4474, - [4475] = 4360, + [4471] = 4471, + [4472] = 4472, + [4473] = 4382, + [4474] = 4408, + [4475] = 4475, [4476] = 4476, [4477] = 4477, [4478] = 4478, [4479] = 4479, - [4480] = 4480, + [4480] = 4346, [4481] = 4481, [4482] = 4482, - [4483] = 304, + [4483] = 4483, [4484] = 4484, [4485] = 4485, [4486] = 4486, - [4487] = 4487, + [4487] = 4442, [4488] = 4488, [4489] = 4489, - [4490] = 4490, - [4491] = 4491, - [4492] = 4492, + [4490] = 4483, + [4491] = 4350, + [4492] = 4369, [4493] = 4493, [4494] = 4494, - [4495] = 4495, - [4496] = 4496, + [4495] = 4346, + [4496] = 4442, [4497] = 4497, [4498] = 4498, - [4499] = 4499, - [4500] = 4500, + [4499] = 4351, + [4500] = 4351, [4501] = 4501, [4502] = 4502, [4503] = 4503, @@ -9162,117 +9169,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4506] = 4506, [4507] = 4507, [4508] = 4508, - [4509] = 299, - [4510] = 4486, - [4511] = 4495, + [4509] = 4509, + [4510] = 4510, + [4511] = 4511, [4512] = 4512, [4513] = 4513, - [4514] = 4495, - [4515] = 300, + [4514] = 4514, + [4515] = 4515, [4516] = 4516, - [4517] = 4517, - [4518] = 4518, - [4519] = 4413, - [4520] = 4406, + [4517] = 4364, + [4518] = 4358, + [4519] = 4519, + [4520] = 4520, [4521] = 4521, - [4522] = 304, - [4523] = 4486, - [4524] = 4344, - [4525] = 4495, - [4526] = 3993, - [4527] = 4354, + [4522] = 4522, + [4523] = 4523, + [4524] = 4524, + [4525] = 4525, + [4526] = 4526, + [4527] = 4527, [4528] = 4528, [4529] = 4529, [4530] = 4530, - [4531] = 4353, + [4531] = 4531, [4532] = 4532, [4533] = 4533, - [4534] = 4486, - [4535] = 4535, - [4536] = 4536, + [4534] = 4370, + [4535] = 4379, + [4536] = 1930, [4537] = 4537, - [4538] = 4495, - [4539] = 4539, - [4540] = 4540, - [4541] = 4344, + [4538] = 4538, + [4539] = 4408, + [4540] = 4442, + [4541] = 4541, [4542] = 4542, [4543] = 4543, [4544] = 4544, - [4545] = 4545, + [4545] = 365, [4546] = 4546, - [4547] = 4547, - [4548] = 4004, - [4549] = 4352, - [4550] = 4528, + [4547] = 4369, + [4548] = 4548, + [4549] = 4549, + [4550] = 4550, [4551] = 4551, - [4552] = 1960, + [4552] = 4552, [4553] = 4553, [4554] = 4554, [4555] = 4555, - [4556] = 292, - [4557] = 4557, - [4558] = 4558, - [4559] = 4559, - [4560] = 4560, + [4556] = 4400, + [4557] = 364, + [4558] = 4370, + [4559] = 4428, + [4560] = 4382, [4561] = 4561, - [4562] = 4562, - [4563] = 4433, - [4564] = 4476, + [4562] = 4148, + [4563] = 4563, + [4564] = 4564, [4565] = 4565, [4566] = 4566, - [4567] = 4567, - [4568] = 4486, - [4569] = 4569, - [4570] = 322, - [4571] = 337, - [4572] = 296, - [4573] = 4348, - [4574] = 325, - [4575] = 4406, - [4576] = 4349, - [4577] = 4343, - [4578] = 4439, - [4579] = 4344, - [4580] = 4468, - [4581] = 4329, + [4567] = 322, + [4568] = 4568, + [4569] = 313, + [4570] = 4570, + [4571] = 4437, + [4572] = 4428, + [4573] = 4573, + [4574] = 4574, + [4575] = 4575, + [4576] = 4351, + [4577] = 4374, + [4578] = 368, + [4579] = 4346, + [4580] = 4580, + [4581] = 4581, [4582] = 4582, [4583] = 4583, [4584] = 4584, - [4585] = 4585, - [4586] = 4345, - [4587] = 4347, - [4588] = 4588, - [4589] = 4406, - [4590] = 4344, - [4591] = 4245, + [4585] = 4380, + [4586] = 4586, + [4587] = 4346, + [4588] = 4370, + [4589] = 4589, + [4590] = 4351, + [4591] = 4350, [4592] = 4592, - [4593] = 4593, - [4594] = 4594, + [4593] = 4408, + [4594] = 4379, [4595] = 4595, - [4596] = 4406, - [4597] = 4597, - [4598] = 4181, - [4599] = 4599, - [4600] = 4169, - [4601] = 314, - [4602] = 4486, - [4603] = 4557, - [4604] = 4344, - [4605] = 4605, - [4606] = 4140, + [4596] = 4596, + [4597] = 4350, + [4598] = 4380, + [4599] = 4489, + [4600] = 4600, + [4601] = 4379, + [4602] = 4428, + [4603] = 4382, + [4604] = 4541, + [4605] = 4408, + [4606] = 4606, [4607] = 4607, - [4608] = 4495, - [4609] = 4406, - [4610] = 4551, - [4611] = 4037, - [4612] = 4135, - [4613] = 4127, - [4614] = 337, - [4615] = 296, - [4616] = 4567, + [4608] = 359, + [4609] = 4609, + [4610] = 4610, + [4611] = 4611, + [4612] = 347, + [4613] = 4067, + [4614] = 4614, + [4615] = 4615, + [4616] = 4370, [4617] = 4617, [4618] = 4618, - [4619] = 299, + [4619] = 4618, [4620] = 4620, [4621] = 4621, [4622] = 4622, @@ -9280,384 +9287,384 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4624] = 4624, [4625] = 4625, [4626] = 4626, - [4627] = 4505, - [4628] = 4504, + [4627] = 4627, + [4628] = 4628, [4629] = 4629, - [4630] = 4502, - [4631] = 4631, - [4632] = 4632, - [4633] = 4633, + [4630] = 4618, + [4631] = 4526, + [4632] = 3974, + [4633] = 4629, [4634] = 4634, - [4635] = 4500, - [4636] = 4636, - [4637] = 4637, - [4638] = 4638, - [4639] = 4637, + [4635] = 4635, + [4636] = 4622, + [4637] = 4634, + [4638] = 4628, + [4639] = 4570, [4640] = 4640, - [4641] = 4636, - [4642] = 4620, - [4643] = 4023, - [4644] = 4644, + [4641] = 4641, + [4642] = 4537, + [4643] = 4643, + [4644] = 864, [4645] = 4645, - [4646] = 4629, - [4647] = 4621, - [4648] = 4513, + [4646] = 4645, + [4647] = 4647, + [4648] = 4647, [4649] = 4649, - [4650] = 4622, - [4651] = 4623, - [4652] = 4484, - [4653] = 4516, - [4654] = 4649, - [4655] = 4517, - [4656] = 4518, - [4657] = 4624, - [4658] = 4626, - [4659] = 4638, - [4660] = 4660, - [4661] = 4661, - [4662] = 4631, - [4663] = 4632, + [4650] = 4650, + [4651] = 4651, + [4652] = 4652, + [4653] = 4651, + [4654] = 4654, + [4655] = 4647, + [4656] = 4524, + [4657] = 4657, + [4658] = 4645, + [4659] = 4523, + [4660] = 4651, + [4661] = 4634, + [4662] = 4629, + [4663] = 4511, [4664] = 4664, - [4665] = 4470, - [4666] = 4638, - [4667] = 4632, - [4668] = 4668, - [4669] = 300, + [4665] = 4641, + [4666] = 4651, + [4667] = 1894, + [4668] = 4643, + [4669] = 4628, [4670] = 4670, - [4671] = 4631, - [4672] = 4672, - [4673] = 4673, - [4674] = 4637, + [4671] = 4622, + [4672] = 4507, + [4673] = 4053, + [4674] = 4674, [4675] = 4675, - [4676] = 4636, + [4676] = 4628, [4677] = 4677, - [4678] = 4638, - [4679] = 4621, - [4680] = 4621, - [4681] = 4620, - [4682] = 4537, - [4683] = 876, - [4684] = 4490, - [4685] = 4626, - [4686] = 4686, - [4687] = 4687, - [4688] = 4624, - [4689] = 4622, + [4678] = 4678, + [4679] = 4679, + [4680] = 4624, + [4681] = 363, + [4682] = 4502, + [4683] = 4618, + [4684] = 4684, + [4685] = 4641, + [4686] = 4643, + [4687] = 4650, + [4688] = 4688, + [4689] = 4689, [4690] = 4690, - [4691] = 4623, - [4692] = 4624, - [4693] = 4626, + [4691] = 4691, + [4692] = 4677, + [4693] = 4693, [4694] = 4694, - [4695] = 2460, - [4696] = 2409, - [4697] = 2408, - [4698] = 4623, - [4699] = 4622, - [4700] = 4631, - [4701] = 4632, - [4702] = 4536, - [4703] = 2394, - [4704] = 4638, - [4705] = 2393, - [4706] = 1929, - [4707] = 4670, - [4708] = 4660, - [4709] = 4501, - [4710] = 4637, - [4711] = 4539, - [4712] = 4712, - [4713] = 4327, - [4714] = 4636, - [4715] = 4044, - [4716] = 4308, - [4717] = 2447, - [4718] = 2448, - [4719] = 4719, - [4720] = 4621, - [4721] = 2454, - [4722] = 4722, - [4723] = 4712, - [4724] = 4724, + [4695] = 4695, + [4696] = 359, + [4697] = 4694, + [4698] = 4647, + [4699] = 4645, + [4700] = 4617, + [4701] = 4647, + [4702] = 4503, + [4703] = 4629, + [4704] = 4622, + [4705] = 4647, + [4706] = 4706, + [4707] = 4707, + [4708] = 4618, + [4709] = 4709, + [4710] = 4516, + [4711] = 4652, + [4712] = 4401, + [4713] = 4643, + [4714] = 4641, + [4715] = 4618, + [4716] = 4520, + [4717] = 4645, + [4718] = 4718, + [4719] = 4706, + [4720] = 4486, + [4721] = 4721, + [4722] = 4645, + [4723] = 4629, + [4724] = 4622, [4725] = 4725, - [4726] = 4622, - [4727] = 4623, - [4728] = 2457, - [4729] = 4729, - [4730] = 4730, - [4731] = 4626, - [4732] = 2458, - [4733] = 4491, + [4726] = 4628, + [4727] = 4618, + [4728] = 4728, + [4729] = 4651, + [4730] = 4629, + [4731] = 4622, + [4732] = 4732, + [4733] = 4634, [4734] = 4734, - [4735] = 4620, - [4736] = 4499, - [4737] = 4498, - [4738] = 4738, - [4739] = 4729, - [4740] = 4620, - [4741] = 4631, + [4735] = 4735, + [4736] = 4628, + [4737] = 4476, + [4738] = 4621, + [4739] = 4488, + [4740] = 4652, + [4741] = 4635, [4742] = 4742, - [4743] = 4712, - [4744] = 4744, - [4745] = 4632, - [4746] = 4620, - [4747] = 4645, + [4743] = 4743, + [4744] = 4347, + [4745] = 4629, + [4746] = 4650, + [4747] = 4649, [4748] = 4622, - [4749] = 4749, - [4750] = 4496, - [4751] = 4638, - [4752] = 4623, - [4753] = 4753, - [4754] = 4754, - [4755] = 4755, - [4756] = 4622, - [4757] = 4623, - [4758] = 4626, - [4759] = 4631, - [4760] = 4632, - [4761] = 4638, - [4762] = 4329, - [4763] = 2430, - [4764] = 4626, - [4765] = 4631, - [4766] = 4632, - [4767] = 4767, - [4768] = 4632, - [4769] = 4638, - [4770] = 2496, - [4771] = 4631, - [4772] = 4636, - [4773] = 4637, + [4749] = 4628, + [4750] = 4625, + [4751] = 4751, + [4752] = 4522, + [4753] = 2477, + [4754] = 4493, + [4755] = 2452, + [4756] = 4756, + [4757] = 4757, + [4758] = 4664, + [4759] = 4618, + [4760] = 4629, + [4761] = 2397, + [4762] = 2396, + [4763] = 4763, + [4764] = 4652, + [4765] = 4643, + [4766] = 2424, + [4767] = 4650, + [4768] = 2425, + [4769] = 4649, + [4770] = 4647, + [4771] = 4645, + [4772] = 4312, + [4773] = 4773, [4774] = 4774, - [4775] = 4626, + [4775] = 4775, [4776] = 4776, - [4777] = 4631, - [4778] = 4670, - [4779] = 2500, - [4780] = 2504, - [4781] = 4633, - [4782] = 4632, - [4783] = 4638, + [4777] = 4649, + [4778] = 4778, + [4779] = 4706, + [4780] = 4468, + [4781] = 4634, + [4782] = 4467, + [4783] = 4641, [4784] = 4784, - [4785] = 4744, - [4786] = 4565, + [4785] = 4706, + [4786] = 4041, [4787] = 4787, - [4788] = 2463, - [4789] = 4566, - [4790] = 4790, - [4791] = 4791, - [4792] = 4792, - [4793] = 2474, - [4794] = 4794, - [4795] = 4719, + [4788] = 4627, + [4789] = 4643, + [4790] = 4465, + [4791] = 4629, + [4792] = 4463, + [4793] = 4652, + [4794] = 4706, + [4795] = 4795, [4796] = 4796, [4797] = 4797, - [4798] = 4633, - [4799] = 4458, + [4798] = 4641, + [4799] = 4650, [4800] = 4800, - [4801] = 4672, - [4802] = 4633, - [4803] = 4803, - [4804] = 4784, - [4805] = 4719, - [4806] = 4712, - [4807] = 4633, - [4808] = 4624, - [4809] = 4809, - [4810] = 4810, - [4811] = 4617, - [4812] = 4670, - [4813] = 4061, - [4814] = 4670, - [4815] = 4719, - [4816] = 4816, - [4817] = 4712, - [4818] = 4719, - [4819] = 4633, - [4820] = 4599, + [4801] = 4801, + [4802] = 4802, + [4803] = 2503, + [4804] = 2505, + [4805] = 2514, + [4806] = 2517, + [4807] = 4807, + [4808] = 2519, + [4809] = 2520, + [4810] = 4318, + [4811] = 4307, + [4812] = 4812, + [4813] = 2539, + [4814] = 2540, + [4815] = 4623, + [4816] = 4640, + [4817] = 2571, + [4818] = 2570, + [4819] = 4649, + [4820] = 4622, [4821] = 4821, - [4822] = 4637, - [4823] = 4636, - [4824] = 4640, - [4825] = 4634, - [4826] = 4712, - [4827] = 4626, + [4822] = 4822, + [4823] = 4721, + [4824] = 4628, + [4825] = 4825, + [4826] = 4652, + [4827] = 4728, [4828] = 4828, - [4829] = 4829, - [4830] = 4830, - [4831] = 4831, - [4832] = 4832, - [4833] = 4833, - [4834] = 4834, - [4835] = 4494, - [4836] = 4625, - [4837] = 4837, - [4838] = 4724, - [4839] = 4839, - [4840] = 4493, - [4841] = 4661, - [4842] = 4794, - [4843] = 4686, - [4844] = 4800, - [4845] = 4845, - [4846] = 4846, - [4847] = 4847, + [4829] = 4618, + [4830] = 4650, + [4831] = 4812, + [4832] = 4743, + [4833] = 4628, + [4834] = 4718, + [4835] = 4622, + [4836] = 4836, + [4837] = 4684, + [4838] = 4664, + [4839] = 4416, + [4840] = 4664, + [4841] = 4620, + [4842] = 4842, + [4843] = 4664, + [4844] = 4664, + [4845] = 4421, + [4846] = 4828, + [4847] = 4418, [4848] = 4848, [4849] = 4849, [4850] = 4850, [4851] = 4851, [4852] = 4852, [4853] = 4853, - [4854] = 4854, + [4854] = 329, [4855] = 4855, [4856] = 4856, - [4857] = 4857, + [4857] = 4852, [4858] = 4858, [4859] = 4859, - [4860] = 4860, - [4861] = 4861, + [4860] = 4852, + [4861] = 340, [4862] = 4862, - [4863] = 4863, + [4863] = 4852, [4864] = 4864, [4865] = 4865, - [4866] = 4866, - [4867] = 4867, + [4866] = 322, + [4867] = 313, [4868] = 4868, - [4869] = 4869, - [4870] = 4870, - [4871] = 4871, + [4869] = 1110, + [4870] = 2300, + [4871] = 2304, [4872] = 4872, - [4873] = 4863, - [4874] = 4874, - [4875] = 4875, - [4876] = 4876, - [4877] = 4877, + [4873] = 4873, + [4874] = 1111, + [4875] = 304, + [4876] = 1089, + [4877] = 1078, [4878] = 4878, [4879] = 4879, - [4880] = 4880, - [4881] = 4881, - [4882] = 4882, - [4883] = 4883, - [4884] = 4884, - [4885] = 4885, - [4886] = 4886, - [4887] = 4887, - [4888] = 4888, - [4889] = 4889, - [4890] = 4890, - [4891] = 4891, - [4892] = 294, - [4893] = 334, - [4894] = 4894, - [4895] = 4895, - [4896] = 4562, - [4897] = 4897, - [4898] = 4898, - [4899] = 4899, - [4900] = 4900, - [4901] = 4901, - [4902] = 4902, - [4903] = 4903, - [4904] = 4904, - [4905] = 4905, - [4906] = 4906, - [4907] = 4907, - [4908] = 4908, - [4909] = 4909, - [4910] = 4910, - [4911] = 4911, - [4912] = 4879, - [4913] = 4913, - [4914] = 4914, - [4915] = 4915, - [4916] = 4852, - [4917] = 4863, - [4918] = 4918, - [4919] = 4919, - [4920] = 4920, - [4921] = 4852, - [4922] = 4922, - [4923] = 4923, - [4924] = 4924, - [4925] = 4925, - [4926] = 4926, - [4927] = 4927, - [4928] = 4928, - [4929] = 4929, - [4930] = 4930, - [4931] = 4931, - [4932] = 4932, - [4933] = 4933, - [4934] = 333, - [4935] = 4935, - [4936] = 4936, - [4937] = 4924, - [4938] = 4938, - [4939] = 4939, - [4940] = 4940, - [4941] = 4941, - [4942] = 4942, - [4943] = 4943, - [4944] = 4944, - [4945] = 4945, - [4946] = 4946, - [4947] = 293, - [4948] = 1055, - [4949] = 4861, - [4950] = 4950, - [4951] = 4951, - [4952] = 4952, - [4953] = 4953, - [4954] = 4954, - [4955] = 4955, - [4956] = 4956, - [4957] = 4957, - [4958] = 4958, - [4959] = 4924, - [4960] = 4960, - [4961] = 4880, - [4962] = 4962, - [4963] = 4860, - [4964] = 1088, - [4965] = 4965, - [4966] = 4966, - [4967] = 4859, - [4968] = 4848, - [4969] = 4969, - [4970] = 4970, - [4971] = 4898, - [4972] = 4958, - [4973] = 4924, - [4974] = 4974, - [4975] = 4975, + [4880] = 295, + [4881] = 1054, + [4882] = 1010, + [4883] = 1008, + [4884] = 1043, + [4885] = 1005, + [4886] = 1002, + [4887] = 957, + [4888] = 994, + [4889] = 993, + [4890] = 2289, + [4891] = 2287, + [4892] = 2283, + [4893] = 988, + [4894] = 985, + [4895] = 982, + [4896] = 981, + [4897] = 980, + [4898] = 978, + [4899] = 977, + [4900] = 967, + [4901] = 948, + [4902] = 947, + [4903] = 945, + [4904] = 995, + [4905] = 968, + [4906] = 966, + [4907] = 2266, + [4908] = 2265, + [4909] = 2268, + [4910] = 2269, + [4911] = 2270, + [4912] = 964, + [4913] = 1000, + [4914] = 1017, + [4915] = 1019, + [4916] = 1020, + [4917] = 2570, + [4918] = 2571, + [4919] = 1026, + [4920] = 1029, + [4921] = 1037, + [4922] = 1087, + [4923] = 1059, + [4924] = 1062, + [4925] = 911, + [4926] = 916, + [4927] = 924, + [4928] = 1085, + [4929] = 1097, + [4930] = 1096, + [4931] = 1134, + [4932] = 2540, + [4933] = 2539, + [4934] = 2334, + [4935] = 2335, + [4936] = 2337, + [4937] = 1155, + [4938] = 1028, + [4939] = 1154, + [4940] = 1151, + [4941] = 2520, + [4942] = 2519, + [4943] = 2517, + [4944] = 2514, + [4945] = 2505, + [4946] = 2503, + [4947] = 1147, + [4948] = 1137, + [4949] = 1136, + [4950] = 1123, + [4951] = 1119, + [4952] = 1118, + [4953] = 1117, + [4954] = 1074, + [4955] = 902, + [4956] = 1106, + [4957] = 1105, + [4958] = 1104, + [4959] = 1099, + [4960] = 2477, + [4961] = 2425, + [4962] = 2424, + [4963] = 1094, + [4964] = 1090, + [4965] = 1088, + [4966] = 2396, + [4967] = 2397, + [4968] = 1083, + [4969] = 1081, + [4970] = 2452, + [4971] = 1076, + [4972] = 1075, + [4973] = 1034, + [4974] = 1055, + [4975] = 1042, [4976] = 4976, [4977] = 4977, [4978] = 4978, - [4979] = 4979, + [4979] = 4852, [4980] = 4980, [4981] = 4981, - [4982] = 4900, + [4982] = 4982, [4983] = 4983, - [4984] = 4854, + [4984] = 4984, [4985] = 4985, [4986] = 4986, [4987] = 4987, [4988] = 4988, [4989] = 4989, [4990] = 4990, - [4991] = 4862, - [4992] = 4919, - [4993] = 1098, + [4991] = 4983, + [4992] = 4992, + [4993] = 4981, [4994] = 4994, [4995] = 4995, - [4996] = 1105, + [4996] = 4996, [4997] = 4997, [4998] = 4998, [4999] = 4999, - [5000] = 4870, + [5000] = 4514, [5001] = 5001, - [5002] = 4871, - [5003] = 4939, - [5004] = 4923, + [5002] = 5002, + [5003] = 5003, + [5004] = 5004, [5005] = 5005, [5006] = 5006, [5007] = 5007, @@ -9665,406 +9672,406 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5009] = 5009, [5010] = 5010, [5011] = 5011, - [5012] = 1108, - [5013] = 4924, - [5014] = 4952, - [5015] = 4939, - [5016] = 1109, - [5017] = 4874, + [5012] = 5012, + [5013] = 5013, + [5014] = 5014, + [5015] = 4852, + [5016] = 5016, + [5017] = 5017, [5018] = 5018, - [5019] = 4955, + [5019] = 5019, [5020] = 5020, [5021] = 5021, [5022] = 5022, - [5023] = 4861, - [5024] = 4797, + [5023] = 5023, + [5024] = 4851, [5025] = 5025, - [5026] = 4957, - [5027] = 4879, - [5028] = 4880, + [5026] = 5026, + [5027] = 5027, + [5028] = 5028, [5029] = 5029, - [5030] = 925, - [5031] = 1112, - [5032] = 5032, - [5033] = 5033, - [5034] = 5034, - [5035] = 5035, - [5036] = 4749, + [5030] = 5030, + [5031] = 4997, + [5032] = 4985, + [5033] = 5030, + [5034] = 5029, + [5035] = 4855, + [5036] = 5036, [5037] = 5037, - [5038] = 1113, + [5038] = 5038, [5039] = 5039, - [5040] = 5040, - [5041] = 5041, + [5040] = 5022, + [5041] = 5023, [5042] = 5042, - [5043] = 2246, + [5043] = 5043, [5044] = 5044, - [5045] = 2384, - [5046] = 2377, - [5047] = 5047, - [5048] = 5048, - [5049] = 4939, - [5050] = 4755, - [5051] = 5051, - [5052] = 5052, - [5053] = 4852, - [5054] = 5054, - [5055] = 4767, - [5056] = 4592, + [5045] = 5027, + [5046] = 5028, + [5047] = 5029, + [5048] = 5030, + [5049] = 5049, + [5050] = 5050, + [5051] = 4997, + [5052] = 4981, + [5053] = 5053, + [5054] = 4858, + [5055] = 4985, + [5056] = 5056, [5057] = 5057, [5058] = 5058, - [5059] = 5059, - [5060] = 4919, + [5059] = 5022, + [5060] = 5023, [5061] = 5061, - [5062] = 5062, - [5063] = 5063, - [5064] = 5064, - [5065] = 5065, + [5062] = 5027, + [5063] = 5028, + [5064] = 5029, + [5065] = 5030, [5066] = 5066, [5067] = 5067, - [5068] = 5068, - [5069] = 1123, - [5070] = 5070, - [5071] = 5071, - [5072] = 4900, - [5073] = 5073, - [5074] = 1129, + [5068] = 4997, + [5069] = 4981, + [5070] = 5028, + [5071] = 4985, + [5072] = 5027, + [5073] = 4878, + [5074] = 5074, [5075] = 5075, - [5076] = 1133, + [5076] = 5076, [5077] = 5077, - [5078] = 4898, + [5078] = 5078, [5079] = 5079, [5080] = 5080, - [5081] = 5081, - [5082] = 4880, + [5081] = 4825, + [5082] = 5082, [5083] = 5083, - [5084] = 4879, + [5084] = 5084, [5085] = 5085, [5086] = 5086, - [5087] = 5087, - [5088] = 1134, + [5087] = 4978, + [5088] = 5088, [5089] = 5089, - [5090] = 1135, + [5090] = 5090, [5091] = 5091, - [5092] = 5092, - [5093] = 4863, - [5094] = 1136, + [5092] = 4709, + [5093] = 5093, + [5094] = 5094, [5095] = 5095, - [5096] = 1138, + [5096] = 5096, [5097] = 5097, - [5098] = 5098, - [5099] = 1151, - [5100] = 918, + [5098] = 4986, + [5099] = 5022, + [5100] = 5023, [5101] = 5101, - [5102] = 5102, + [5102] = 5027, [5103] = 5103, - [5104] = 5104, - [5105] = 5105, + [5104] = 5028, + [5105] = 5029, [5106] = 5106, [5107] = 5107, - [5108] = 5108, - [5109] = 4861, - [5110] = 917, - [5111] = 915, - [5112] = 5112, - [5113] = 5113, - [5114] = 1023, - [5115] = 5115, - [5116] = 1022, - [5117] = 1158, - [5118] = 5065, + [5108] = 5030, + [5109] = 5109, + [5110] = 5110, + [5111] = 4997, + [5112] = 4981, + [5113] = 5023, + [5114] = 4985, + [5115] = 4987, + [5116] = 5116, + [5117] = 5117, + [5118] = 4983, [5119] = 5119, - [5120] = 1050, + [5120] = 5120, [5121] = 5121, [5122] = 5122, [5123] = 5123, - [5124] = 5124, + [5124] = 4990, [5125] = 5125, [5126] = 5126, - [5127] = 4903, - [5128] = 1052, - [5129] = 5129, + [5127] = 4478, + [5128] = 5128, + [5129] = 4855, [5130] = 5130, - [5131] = 5131, - [5132] = 5132, - [5133] = 2463, - [5134] = 4879, + [5131] = 5022, + [5132] = 5004, + [5133] = 5006, + [5134] = 5134, [5135] = 5135, - [5136] = 4955, + [5136] = 5136, [5137] = 5137, - [5138] = 1120, - [5139] = 4952, + [5138] = 5138, + [5139] = 5139, [5140] = 5140, [5141] = 5141, - [5142] = 2329, - [5143] = 2331, + [5142] = 5142, + [5143] = 5143, [5144] = 5144, - [5145] = 4925, + [5145] = 5145, [5146] = 5146, [5147] = 5147, - [5148] = 5148, - [5149] = 5149, + [5148] = 4983, + [5149] = 5116, [5150] = 5150, - [5151] = 4923, - [5152] = 4889, - [5153] = 2232, - [5154] = 4862, - [5155] = 2234, + [5151] = 4775, + [5152] = 4774, + [5153] = 5153, + [5154] = 4773, + [5155] = 5155, [5156] = 5156, [5157] = 5157, [5158] = 5158, [5159] = 5159, - [5160] = 4958, + [5160] = 5160, [5161] = 5161, - [5162] = 4957, - [5163] = 4925, - [5164] = 4875, + [5162] = 5162, + [5163] = 5163, + [5164] = 5135, [5165] = 5165, - [5166] = 5166, - [5167] = 4856, - [5168] = 4903, - [5169] = 5169, + [5166] = 5134, + [5167] = 5022, + [5168] = 5168, + [5169] = 5023, [5170] = 5170, - [5171] = 4898, - [5172] = 2239, - [5173] = 2241, + [5171] = 5171, + [5172] = 5077, + [5173] = 5076, [5174] = 5174, - [5175] = 4875, - [5176] = 5176, + [5175] = 4851, + [5176] = 4855, [5177] = 5177, - [5178] = 4900, - [5179] = 2245, - [5180] = 5180, - [5181] = 936, + [5178] = 5074, + [5179] = 5179, + [5180] = 5008, + [5181] = 4858, [5182] = 5182, - [5183] = 4878, - [5184] = 5184, - [5185] = 5185, - [5186] = 933, - [5187] = 932, + [5183] = 5183, + [5184] = 5027, + [5185] = 5028, + [5186] = 5186, + [5187] = 5187, [5188] = 5188, - [5189] = 941, - [5190] = 1119, + [5189] = 5189, + [5190] = 5190, [5191] = 5191, - [5192] = 1077, - [5193] = 5193, - [5194] = 5194, - [5195] = 5195, - [5196] = 4821, + [5192] = 5192, + [5193] = 5029, + [5194] = 5030, + [5195] = 4878, + [5196] = 5196, [5197] = 5197, - [5198] = 5198, + [5198] = 5002, [5199] = 5199, - [5200] = 4878, - [5201] = 5201, - [5202] = 1073, - [5203] = 5203, - [5204] = 1063, - [5205] = 5205, - [5206] = 1061, - [5207] = 4875, - [5208] = 5208, - [5209] = 5209, - [5210] = 5210, + [5200] = 4512, + [5201] = 4513, + [5202] = 5202, + [5203] = 4851, + [5204] = 4997, + [5205] = 4981, + [5206] = 5161, + [5207] = 5207, + [5208] = 4978, + [5209] = 4985, + [5210] = 4855, [5211] = 5211, - [5212] = 2409, - [5213] = 2408, + [5212] = 5212, + [5213] = 5213, [5214] = 5214, [5215] = 5215, [5216] = 5216, - [5217] = 5065, - [5218] = 4939, + [5217] = 5217, + [5218] = 5218, [5219] = 5219, - [5220] = 5177, + [5220] = 4756, [5221] = 5221, [5222] = 5222, - [5223] = 4852, - [5224] = 4903, + [5223] = 5223, + [5224] = 5224, [5225] = 5225, - [5226] = 1059, - [5227] = 4919, + [5226] = 5226, + [5227] = 4858, [5228] = 5228, [5229] = 5229, - [5230] = 1057, - [5231] = 1056, + [5230] = 5230, + [5231] = 5231, [5232] = 5232, - [5233] = 4955, - [5234] = 5234, + [5233] = 5233, + [5234] = 936, [5235] = 5235, - [5236] = 4952, + [5236] = 5236, [5237] = 5237, - [5238] = 4900, + [5238] = 5238, [5239] = 5239, - [5240] = 4923, - [5241] = 5241, - [5242] = 1156, + [5240] = 949, + [5241] = 950, + [5242] = 5242, [5243] = 5243, - [5244] = 4862, - [5245] = 1154, - [5246] = 1157, + [5244] = 946, + [5245] = 4986, + [5246] = 5246, [5247] = 5247, - [5248] = 4854, - [5249] = 1087, - [5250] = 5119, - [5251] = 1047, + [5248] = 5248, + [5249] = 5249, + [5250] = 5250, + [5251] = 4987, [5252] = 5252, - [5253] = 5253, + [5253] = 5057, [5254] = 5254, - [5255] = 4898, - [5256] = 1005, - [5257] = 4880, - [5258] = 1004, - [5259] = 4958, - [5260] = 4957, + [5255] = 5255, + [5256] = 4990, + [5257] = 5257, + [5258] = 5258, + [5259] = 5019, + [5260] = 5260, [5261] = 5261, - [5262] = 980, + [5262] = 5262, [5263] = 5263, - [5264] = 5264, - [5265] = 981, - [5266] = 2504, + [5264] = 5004, + [5265] = 5006, + [5266] = 5266, [5267] = 5267, - [5268] = 2500, + [5268] = 5159, [5269] = 5269, - [5270] = 1012, - [5271] = 4957, - [5272] = 1013, - [5273] = 4958, - [5274] = 1019, + [5270] = 5270, + [5271] = 5271, + [5272] = 5272, + [5273] = 5273, + [5274] = 4878, [5275] = 5275, - [5276] = 5276, - [5277] = 2496, - [5278] = 2430, - [5279] = 4903, + [5276] = 4978, + [5277] = 5277, + [5278] = 5278, + [5279] = 5279, [5280] = 5280, - [5281] = 5281, + [5281] = 5019, [5282] = 5282, - [5283] = 4875, - [5284] = 4878, - [5285] = 1093, - [5286] = 1096, - [5287] = 1042, - [5288] = 2474, - [5289] = 1102, - [5290] = 4863, - [5291] = 1122, - [5292] = 4861, - [5293] = 1003, + [5283] = 5283, + [5284] = 5284, + [5285] = 5285, + [5286] = 5286, + [5287] = 5287, + [5288] = 5288, + [5289] = 5289, + [5290] = 5290, + [5291] = 5291, + [5292] = 5292, + [5293] = 5293, [5294] = 5294, [5295] = 5295, [5296] = 5296, - [5297] = 956, - [5298] = 4854, - [5299] = 939, - [5300] = 912, - [5301] = 4924, - [5302] = 923, + [5297] = 5297, + [5298] = 5298, + [5299] = 5299, + [5300] = 5300, + [5301] = 4986, + [5302] = 5302, [5303] = 5303, [5304] = 5304, [5305] = 5305, - [5306] = 4862, + [5306] = 5306, [5307] = 5307, - [5308] = 1127, - [5309] = 5309, - [5310] = 1132, + [5308] = 5308, + [5309] = 4987, + [5310] = 5310, [5311] = 5311, [5312] = 5312, - [5313] = 1144, + [5313] = 5313, [5314] = 5314, - [5315] = 1146, - [5316] = 1148, - [5317] = 1153, - [5318] = 4923, + [5315] = 5315, + [5316] = 5316, + [5317] = 5317, + [5318] = 5318, [5319] = 5319, - [5320] = 1089, - [5321] = 5321, + [5320] = 5019, + [5321] = 4990, [5322] = 5322, [5323] = 5323, - [5324] = 4925, - [5325] = 5325, - [5326] = 5326, - [5327] = 990, - [5328] = 4861, + [5324] = 5324, + [5325] = 5006, + [5326] = 5004, + [5327] = 5327, + [5328] = 5328, [5329] = 5329, [5330] = 5330, - [5331] = 1130, - [5332] = 4928, - [5333] = 5333, - [5334] = 4932, - [5335] = 2460, - [5336] = 5336, - [5337] = 989, - [5338] = 2458, - [5339] = 4872, - [5340] = 2457, + [5331] = 4990, + [5332] = 4987, + [5333] = 4978, + [5334] = 5334, + [5335] = 5126, + [5336] = 4878, + [5337] = 4849, + [5338] = 5338, + [5339] = 5339, + [5340] = 5340, [5341] = 5341, [5342] = 5342, [5343] = 5343, - [5344] = 4952, + [5344] = 4858, [5345] = 5345, - [5346] = 4863, - [5347] = 2454, - [5348] = 4955, - [5349] = 2448, + [5346] = 4855, + [5347] = 5004, + [5348] = 5348, + [5349] = 5349, [5350] = 5350, - [5351] = 5351, - [5352] = 5148, + [5351] = 5006, + [5352] = 5352, [5353] = 5353, - [5354] = 5354, - [5355] = 2447, - [5356] = 4998, - [5357] = 4879, + [5354] = 5128, + [5355] = 5355, + [5356] = 5356, + [5357] = 5357, [5358] = 5358, - [5359] = 4994, - [5360] = 4787, + [5359] = 5359, + [5360] = 5360, [5361] = 5361, - [5362] = 983, - [5363] = 970, + [5362] = 5144, + [5363] = 5363, [5364] = 5364, - [5365] = 4878, - [5366] = 5065, - [5367] = 4919, - [5368] = 1155, - [5369] = 4875, - [5370] = 1006, + [5365] = 5107, + [5366] = 5366, + [5367] = 5367, + [5368] = 5368, + [5369] = 5369, + [5370] = 5370, [5371] = 5371, [5372] = 5372, - [5373] = 4880, + [5373] = 5373, [5374] = 5374, - [5375] = 2394, - [5376] = 4939, + [5375] = 5375, + [5376] = 5376, [5377] = 5377, - [5378] = 4605, - [5379] = 4955, - [5380] = 1121, + [5378] = 5155, + [5379] = 5019, + [5380] = 5380, [5381] = 5381, - [5382] = 4952, + [5382] = 5272, [5383] = 5383, - [5384] = 5144, - [5385] = 1099, + [5384] = 5384, + [5385] = 5385, [5386] = 4851, - [5387] = 2258, - [5388] = 4906, - [5389] = 5065, - [5390] = 4923, - [5391] = 2257, - [5392] = 4862, - [5393] = 4854, - [5394] = 4903, - [5395] = 5209, - [5396] = 4597, - [5397] = 4898, - [5398] = 4900, - [5399] = 4852, - [5400] = 4919, - [5401] = 2393, - [5402] = 4958, - [5403] = 4957, - [5404] = 2256, - [5405] = 337, - [5406] = 5374, - [5407] = 296, - [5408] = 5065, - [5409] = 5409, + [5387] = 5199, + [5388] = 5388, + [5389] = 5367, + [5390] = 5390, + [5391] = 5391, + [5392] = 5006, + [5393] = 5004, + [5394] = 5394, + [5395] = 5395, + [5396] = 4990, + [5397] = 5214, + [5398] = 5398, + [5399] = 5399, + [5400] = 5400, + [5401] = 4987, + [5402] = 4986, + [5403] = 4978, + [5404] = 4878, + [5405] = 5405, + [5406] = 5406, + [5407] = 5407, + [5408] = 5408, + [5409] = 5019, [5410] = 5410, - [5411] = 5411, + [5411] = 4858, [5412] = 5412, [5413] = 5413, [5414] = 5414, @@ -10072,279 +10079,279 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5416] = 5416, [5417] = 5417, [5418] = 5418, - [5419] = 891, + [5419] = 5419, [5420] = 5420, - [5421] = 5417, + [5421] = 5421, [5422] = 5422, [5423] = 5423, - [5424] = 926, + [5424] = 5424, [5425] = 5425, [5426] = 5426, [5427] = 5427, [5428] = 5428, [5429] = 5429, - [5430] = 5430, - [5431] = 5428, - [5432] = 5432, + [5430] = 5416, + [5431] = 5431, + [5432] = 5427, [5433] = 5433, - [5434] = 5434, + [5434] = 5427, [5435] = 5435, [5436] = 5436, [5437] = 5437, - [5438] = 5438, - [5439] = 5439, + [5438] = 5418, + [5439] = 5412, [5440] = 5440, - [5441] = 5441, - [5442] = 5442, - [5443] = 5443, - [5444] = 5439, + [5441] = 5412, + [5442] = 5440, + [5443] = 5437, + [5444] = 5413, [5445] = 5445, - [5446] = 5432, - [5447] = 5430, - [5448] = 5411, - [5449] = 5449, - [5450] = 5450, - [5451] = 5439, - [5452] = 5437, - [5453] = 5436, - [5454] = 5433, - [5455] = 5432, - [5456] = 5430, - [5457] = 5416, - [5458] = 5415, - [5459] = 5435, - [5460] = 5412, - [5461] = 5414, - [5462] = 950, - [5463] = 5412, - [5464] = 5415, - [5465] = 5416, - [5466] = 5466, - [5467] = 5414, - [5468] = 5468, - [5469] = 5417, - [5470] = 5470, - [5471] = 5471, - [5472] = 5428, + [5446] = 5446, + [5447] = 5428, + [5448] = 5422, + [5449] = 5420, + [5450] = 5436, + [5451] = 5413, + [5452] = 5452, + [5453] = 5433, + [5454] = 5435, + [5455] = 5437, + [5456] = 5440, + [5457] = 5412, + [5458] = 5418, + [5459] = 5422, + [5460] = 5435, + [5461] = 5433, + [5462] = 5420, + [5463] = 5417, + [5464] = 5414, + [5465] = 5413, + [5466] = 5433, + [5467] = 5427, + [5468] = 5435, + [5469] = 5412, + [5470] = 5418, + [5471] = 5415, + [5472] = 5472, [5473] = 5473, - [5474] = 5429, - [5475] = 5449, - [5476] = 5434, - [5477] = 5477, - [5478] = 5411, + [5474] = 5433, + [5475] = 5416, + [5476] = 5435, + [5477] = 5412, + [5478] = 5418, [5479] = 5479, - [5480] = 5480, - [5481] = 5481, - [5482] = 5445, - [5483] = 5440, - [5484] = 5443, - [5485] = 5443, - [5486] = 5442, - [5487] = 5445, - [5488] = 5411, - [5489] = 5449, - [5490] = 5441, - [5491] = 5491, - [5492] = 5466, - [5493] = 5439, - [5494] = 5432, - [5495] = 5430, - [5496] = 5430, - [5497] = 5432, - [5498] = 5433, - [5499] = 5440, - [5500] = 5436, - [5501] = 5437, - [5502] = 5414, - [5503] = 5436, - [5504] = 5439, + [5480] = 5433, + [5481] = 5435, + [5482] = 5482, + [5483] = 5412, + [5484] = 5418, + [5485] = 5485, + [5486] = 5433, + [5487] = 5435, + [5488] = 5412, + [5489] = 5418, + [5490] = 5490, + [5491] = 5433, + [5492] = 5435, + [5493] = 5418, + [5494] = 5433, + [5495] = 5417, + [5496] = 5435, + [5497] = 5412, + [5498] = 5414, + [5499] = 5418, + [5500] = 5424, + [5501] = 5501, + [5502] = 5502, + [5503] = 5415, + [5504] = 5504, [5505] = 5505, [5506] = 5506, - [5507] = 2001, - [5508] = 5437, - [5509] = 5470, - [5510] = 5417, - [5511] = 5414, - [5512] = 5512, + [5507] = 5507, + [5508] = 5508, + [5509] = 5509, + [5510] = 5510, + [5511] = 5511, + [5512] = 5413, [5513] = 5513, - [5514] = 5514, - [5515] = 5515, - [5516] = 4687, - [5517] = 5429, - [5518] = 5434, - [5519] = 5443, - [5520] = 5449, - [5521] = 5434, - [5522] = 5429, - [5523] = 5411, - [5524] = 5445, + [5514] = 5420, + [5515] = 5422, + [5516] = 895, + [5517] = 5517, + [5518] = 5412, + [5519] = 5425, + [5520] = 5426, + [5521] = 5521, + [5522] = 5416, + [5523] = 5523, + [5524] = 5420, [5525] = 5525, - [5526] = 5411, - [5527] = 5433, - [5528] = 5466, - [5529] = 5429, - [5530] = 5434, + [5526] = 5422, + [5527] = 5424, + [5528] = 5425, + [5529] = 5426, + [5530] = 5428, [5531] = 5531, - [5532] = 5432, - [5533] = 5430, - [5534] = 5414, + [5532] = 5428, + [5533] = 5433, + [5534] = 5435, [5535] = 5535, - [5536] = 5435, + [5536] = 5536, [5537] = 5537, - [5538] = 5445, - [5539] = 5443, - [5540] = 5442, - [5541] = 5441, - [5542] = 5429, - [5543] = 5434, - [5544] = 5428, - [5545] = 5411, - [5546] = 5449, - [5547] = 5449, - [5548] = 5548, - [5549] = 5429, - [5550] = 5434, - [5551] = 5440, - [5552] = 5440, - [5553] = 5442, - [5554] = 5411, - [5555] = 5449, - [5556] = 5535, + [5538] = 5538, + [5539] = 5539, + [5540] = 1951, + [5541] = 5541, + [5542] = 5452, + [5543] = 910, + [5544] = 5544, + [5545] = 5523, + [5546] = 5508, + [5547] = 5418, + [5548] = 5440, + [5549] = 5549, + [5550] = 5523, + [5551] = 5418, + [5552] = 5412, + [5553] = 5417, + [5554] = 5414, + [5555] = 5555, + [5556] = 5436, [5557] = 5557, - [5558] = 5438, - [5559] = 5559, - [5560] = 4675, - [5561] = 5506, - [5562] = 5417, - [5563] = 1968, - [5564] = 5429, - [5565] = 5434, - [5566] = 5434, - [5567] = 5429, - [5568] = 5411, - [5569] = 943, - [5570] = 5449, - [5571] = 5571, - [5572] = 5429, - [5573] = 5573, - [5574] = 5441, - [5575] = 5442, - [5576] = 5443, - [5577] = 5445, - [5578] = 5434, - [5579] = 5466, - [5580] = 5449, - [5581] = 5429, - [5582] = 5434, - [5583] = 5535, - [5584] = 5411, - [5585] = 5449, - [5586] = 5429, - [5587] = 5434, - [5588] = 5429, - [5589] = 5434, - [5590] = 5411, - [5591] = 5411, - [5592] = 5449, + [5558] = 5558, + [5559] = 5440, + [5560] = 5437, + [5561] = 5561, + [5562] = 5440, + [5563] = 5437, + [5564] = 5445, + [5565] = 5446, + [5566] = 5445, + [5567] = 5446, + [5568] = 5436, + [5569] = 5415, + [5570] = 5570, + [5571] = 5508, + [5572] = 5435, + [5573] = 5433, + [5574] = 5523, + [5575] = 4688, + [5576] = 5413, + [5577] = 5436, + [5578] = 5446, + [5579] = 5445, + [5580] = 5437, + [5581] = 5440, + [5582] = 5582, + [5583] = 5508, + [5584] = 1940, + [5585] = 5523, + [5586] = 5586, + [5587] = 5502, + [5588] = 5588, + [5589] = 5435, + [5590] = 5427, + [5591] = 5433, + [5592] = 5508, [5593] = 5593, [5594] = 5594, - [5595] = 5416, - [5596] = 5415, - [5597] = 5449, - [5598] = 5412, + [5595] = 5412, + [5596] = 5418, + [5597] = 5597, + [5598] = 5598, [5599] = 5599, [5600] = 5600, - [5601] = 5449, - [5602] = 5535, - [5603] = 5603, + [5601] = 5416, + [5602] = 5420, + [5603] = 5422, [5604] = 5604, - [5605] = 5411, - [5606] = 5412, - [5607] = 5559, - [5608] = 2009, + [5605] = 5424, + [5606] = 5507, + [5607] = 5425, + [5608] = 5426, [5609] = 5609, [5610] = 5610, - [5611] = 5535, - [5612] = 5612, - [5613] = 5525, - [5614] = 5614, - [5615] = 5440, - [5616] = 5428, - [5617] = 5617, + [5611] = 5611, + [5612] = 5428, + [5613] = 5501, + [5614] = 4654, + [5615] = 5536, + [5616] = 1968, + [5617] = 5417, [5618] = 5618, - [5619] = 5610, + [5619] = 5418, [5620] = 5414, - [5621] = 5621, - [5622] = 5441, - [5623] = 1971, - [5624] = 5439, - [5625] = 5466, - [5626] = 5626, - [5627] = 5437, - [5628] = 5436, - [5629] = 5433, - [5630] = 5432, - [5631] = 5430, - [5632] = 5632, - [5633] = 292, - [5634] = 5450, - [5635] = 5635, - [5636] = 5415, - [5637] = 5637, - [5638] = 5416, - [5639] = 5639, - [5640] = 5435, - [5641] = 5435, - [5642] = 5443, - [5643] = 5445, - [5644] = 5644, - [5645] = 5645, + [5621] = 5412, + [5622] = 5415, + [5623] = 5549, + [5624] = 5433, + [5625] = 5437, + [5626] = 5445, + [5627] = 305, + [5628] = 5428, + [5629] = 5446, + [5630] = 5507, + [5631] = 5504, + [5632] = 5413, + [5633] = 951, + [5634] = 909, + [5635] = 5436, + [5636] = 5507, + [5637] = 5426, + [5638] = 5425, + [5639] = 5424, + [5640] = 1942, + [5641] = 5586, + [5642] = 5422, + [5643] = 5420, + [5644] = 5507, + [5645] = 5435, [5646] = 5646, - [5647] = 2385, - [5648] = 2371, + [5647] = 5647, + [5648] = 5648, [5649] = 5649, [5650] = 5650, [5651] = 5651, [5652] = 5652, - [5653] = 946, + [5653] = 5653, [5654] = 5654, - [5655] = 5652, - [5656] = 937, + [5655] = 5655, + [5656] = 5656, [5657] = 5657, - [5658] = 925, - [5659] = 936, + [5658] = 5658, + [5659] = 5659, [5660] = 5660, - [5661] = 5654, + [5661] = 5661, [5662] = 5662, - [5663] = 5652, + [5663] = 5663, [5664] = 5664, [5665] = 5665, [5666] = 5666, - [5667] = 4557, - [5668] = 5654, + [5667] = 5667, + [5668] = 5668, [5669] = 5669, - [5670] = 5652, - [5671] = 918, - [5672] = 917, + [5670] = 5670, + [5671] = 5671, + [5672] = 4617, [5673] = 5673, [5674] = 5674, [5675] = 5675, - [5676] = 5652, - [5677] = 933, - [5678] = 932, + [5676] = 5676, + [5677] = 5677, + [5678] = 5678, [5679] = 5679, [5680] = 5680, [5681] = 5681, [5682] = 5682, - [5683] = 915, + [5683] = 5683, [5684] = 5684, [5685] = 5685, [5686] = 5686, - [5687] = 4895, - [5688] = 5654, - [5689] = 4490, + [5687] = 5687, + [5688] = 5688, + [5689] = 5689, [5690] = 5690, - [5691] = 5113, + [5691] = 5691, [5692] = 5692, [5693] = 5693, [5694] = 5694, @@ -10358,103 +10365,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5702] = 5702, [5703] = 5703, [5704] = 5704, - [5705] = 956, - [5706] = 941, - [5707] = 939, + [5705] = 5656, + [5706] = 5658, + [5707] = 5707, [5708] = 5708, - [5709] = 912, + [5709] = 5709, [5710] = 5710, - [5711] = 5644, + [5711] = 5711, [5712] = 5712, [5713] = 5713, [5714] = 5714, - [5715] = 5715, - [5716] = 5716, - [5717] = 5654, + [5715] = 5677, + [5716] = 5685, + [5717] = 924, [5718] = 5718, - [5719] = 5652, - [5720] = 5660, + [5719] = 2269, + [5720] = 5696, [5721] = 5721, [5722] = 5722, - [5723] = 923, - [5724] = 5662, - [5725] = 5725, + [5723] = 5723, + [5724] = 5724, + [5725] = 908, [5726] = 5726, - [5727] = 5727, - [5728] = 5728, + [5727] = 5714, + [5728] = 5711, [5729] = 5729, - [5730] = 5666, + [5730] = 5730, [5731] = 5731, - [5732] = 5664, + [5732] = 5732, [5733] = 5733, - [5734] = 5734, + [5734] = 916, [5735] = 5735, [5736] = 5736, [5737] = 5737, [5738] = 5738, - [5739] = 5131, + [5739] = 5739, [5740] = 5740, [5741] = 5741, - [5742] = 5690, + [5742] = 5742, [5743] = 5743, - [5744] = 5744, - [5745] = 5745, + [5744] = 5730, + [5745] = 5732, [5746] = 5746, - [5747] = 5746, - [5748] = 913, - [5749] = 927, - [5750] = 5750, + [5747] = 5733, + [5748] = 5748, + [5749] = 5749, + [5750] = 5737, [5751] = 5751, - [5752] = 5752, - [5753] = 5700, - [5754] = 5666, - [5755] = 5682, - [5756] = 5756, + [5752] = 5740, + [5753] = 5742, + [5754] = 5754, + [5755] = 5755, + [5756] = 5704, [5757] = 5757, - [5758] = 5664, + [5758] = 2268, [5759] = 5759, [5760] = 5760, [5761] = 5761, - [5762] = 5762, + [5762] = 946, [5763] = 5763, - [5764] = 5744, + [5764] = 5764, [5765] = 5765, [5766] = 5766, [5767] = 5767, - [5768] = 4484, - [5769] = 5741, + [5768] = 5768, + [5769] = 5769, [5770] = 5770, - [5771] = 5665, + [5771] = 5771, [5772] = 5772, - [5773] = 5773, + [5773] = 2265, [5774] = 5774, - [5775] = 5775, + [5775] = 911, [5776] = 5776, [5777] = 5777, [5778] = 5778, - [5779] = 5779, + [5779] = 2266, [5780] = 5780, [5781] = 5781, [5782] = 5782, [5783] = 5783, [5784] = 5784, - [5785] = 5746, + [5785] = 5785, [5786] = 5786, [5787] = 5787, [5788] = 5788, - [5789] = 5789, - [5790] = 5790, + [5789] = 4401, + [5790] = 902, [5791] = 5791, - [5792] = 5646, + [5792] = 5691, [5793] = 5793, - [5794] = 5794, + [5794] = 5711, [5795] = 5795, - [5796] = 5796, - [5797] = 5797, + [5796] = 5748, + [5797] = 2337, [5798] = 5798, - [5799] = 5666, - [5800] = 5800, - [5801] = 5664, + [5799] = 5714, + [5800] = 2283, + [5801] = 5801, [5802] = 5802, [5803] = 5803, [5804] = 5804, @@ -10464,144 +10471,144 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5808] = 5808, [5809] = 5809, [5810] = 5810, - [5811] = 5811, - [5812] = 5812, - [5813] = 5813, - [5814] = 5814, - [5815] = 5815, - [5816] = 5816, - [5817] = 5817, + [5811] = 2287, + [5812] = 2289, + [5813] = 5748, + [5814] = 2335, + [5815] = 5743, + [5816] = 5795, + [5817] = 5748, [5818] = 5818, - [5819] = 5819, - [5820] = 5820, - [5821] = 5821, + [5819] = 5763, + [5820] = 5039, + [5821] = 5765, [5822] = 5822, [5823] = 5823, - [5824] = 5824, - [5825] = 5825, + [5824] = 5767, + [5825] = 5769, [5826] = 5826, [5827] = 5827, - [5828] = 5828, + [5828] = 5736, [5829] = 5829, - [5830] = 5657, + [5830] = 5830, [5831] = 5831, [5832] = 5832, - [5833] = 5833, + [5833] = 5676, [5834] = 5834, [5835] = 5835, [5836] = 5836, [5837] = 5837, [5838] = 5838, [5839] = 5839, - [5840] = 5840, - [5841] = 5651, - [5842] = 5649, + [5840] = 5691, + [5841] = 5841, + [5842] = 5771, [5843] = 5843, - [5844] = 5844, + [5844] = 5691, [5845] = 5845, - [5846] = 5650, - [5847] = 5651, - [5848] = 5848, - [5849] = 5650, - [5850] = 5850, - [5851] = 5851, + [5846] = 5666, + [5847] = 5847, + [5848] = 5648, + [5849] = 5849, + [5850] = 5681, + [5851] = 5692, [5852] = 5852, [5853] = 5853, [5854] = 5854, - [5855] = 5649, + [5855] = 5721, [5856] = 5856, [5857] = 5857, - [5858] = 5858, + [5858] = 5736, [5859] = 5859, - [5860] = 5860, + [5860] = 5718, [5861] = 5861, [5862] = 5862, [5863] = 5863, [5864] = 5864, [5865] = 5865, - [5866] = 5866, + [5866] = 2267, [5867] = 5867, - [5868] = 5868, + [5868] = 2350, [5869] = 5869, [5870] = 5870, - [5871] = 5669, + [5871] = 5871, [5872] = 5872, [5873] = 5873, - [5874] = 5874, + [5874] = 5649, [5875] = 5875, [5876] = 5876, [5877] = 5877, [5878] = 5878, [5879] = 5879, - [5880] = 5673, - [5881] = 5674, + [5880] = 5880, + [5881] = 5881, [5882] = 5882, - [5883] = 5675, + [5883] = 5883, [5884] = 5884, - [5885] = 5885, + [5885] = 5655, [5886] = 5886, - [5887] = 5887, + [5887] = 5795, [5888] = 5888, [5889] = 5889, - [5890] = 5890, + [5890] = 5657, [5891] = 5891, [5892] = 5892, [5893] = 5893, - [5894] = 5894, + [5894] = 5778, [5895] = 5895, - [5896] = 5741, + [5896] = 5896, [5897] = 5897, [5898] = 5898, - [5899] = 5899, - [5900] = 5900, + [5899] = 5780, + [5900] = 926, [5901] = 5901, - [5902] = 5902, + [5902] = 5704, [5903] = 5903, [5904] = 5904, [5905] = 5905, [5906] = 5906, - [5907] = 5907, + [5907] = 5690, [5908] = 5908, - [5909] = 5909, + [5909] = 2270, [5910] = 5910, [5911] = 5911, - [5912] = 5912, - [5913] = 5913, + [5912] = 4483, + [5913] = 5711, [5914] = 5914, - [5915] = 5915, - [5916] = 5916, + [5915] = 5714, + [5916] = 5119, [5917] = 5917, [5918] = 5918, [5919] = 5919, [5920] = 5920, [5921] = 5921, [5922] = 5922, - [5923] = 5923, + [5923] = 5723, [5924] = 5924, - [5925] = 5925, + [5925] = 5721, [5926] = 5926, - [5927] = 5746, + [5927] = 5927, [5928] = 5928, [5929] = 5929, - [5930] = 5686, + [5930] = 5930, [5931] = 5931, - [5932] = 5932, - [5933] = 5933, - [5934] = 5666, - [5935] = 5664, - [5936] = 5936, + [5932] = 5795, + [5933] = 5748, + [5934] = 5934, + [5935] = 5692, + [5936] = 5681, [5937] = 5937, [5938] = 5938, - [5939] = 5939, + [5939] = 5679, [5940] = 5940, - [5941] = 5646, - [5942] = 5942, - [5943] = 5943, - [5944] = 5944, - [5945] = 5945, + [5941] = 5941, + [5942] = 5666, + [5943] = 5714, + [5944] = 5711, + [5945] = 5657, [5946] = 5946, [5947] = 5947, - [5948] = 5948, + [5948] = 5678, [5949] = 5949, [5950] = 5950, [5951] = 5951, @@ -10609,83 +10616,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5953] = 5953, [5954] = 5954, [5955] = 5955, - [5956] = 5956, - [5957] = 2258, + [5956] = 4537, + [5957] = 5676, [5958] = 5958, - [5959] = 2257, + [5959] = 5959, [5960] = 5960, [5961] = 5961, - [5962] = 5669, - [5963] = 2256, + [5962] = 5962, + [5963] = 5963, [5964] = 5964, [5965] = 5965, - [5966] = 5673, - [5967] = 5674, + [5966] = 5674, + [5967] = 5967, [5968] = 5968, [5969] = 5969, - [5970] = 5970, - [5971] = 5971, + [5970] = 5677, + [5971] = 5678, [5972] = 5972, [5973] = 5973, [5974] = 5974, - [5975] = 5975, - [5976] = 5701, - [5977] = 5686, + [5975] = 5674, + [5976] = 5976, + [5977] = 5977, [5978] = 5978, [5979] = 5979, [5980] = 5980, - [5981] = 5981, + [5981] = 5690, [5982] = 5982, [5983] = 5983, [5984] = 5984, - [5985] = 2245, - [5986] = 2241, - [5987] = 2239, - [5988] = 4470, + [5985] = 5985, + [5986] = 5674, + [5987] = 5987, + [5988] = 5677, [5989] = 5989, - [5990] = 2234, - [5991] = 2232, - [5992] = 5701, - [5993] = 5702, - [5994] = 2377, - [5995] = 2384, - [5996] = 2246, - [5997] = 5997, - [5998] = 5998, - [5999] = 5702, + [5990] = 2334, + [5991] = 5991, + [5992] = 5992, + [5993] = 5993, + [5994] = 5994, + [5995] = 5678, + [5996] = 5656, + [5997] = 5658, + [5998] = 5679, + [5999] = 5999, [6000] = 6000, - [6001] = 6001, - [6002] = 5712, + [6001] = 5704, + [6002] = 6002, [6003] = 6003, [6004] = 6004, - [6005] = 6005, - [6006] = 5716, + [6005] = 5188, + [6006] = 5685, [6007] = 6007, [6008] = 6008, [6009] = 6009, - [6010] = 6010, + [6010] = 5696, [6011] = 6011, [6012] = 6012, [6013] = 6013, [6014] = 6014, [6015] = 6015, - [6016] = 5726, + [6016] = 6016, [6017] = 6017, - [6018] = 5728, - [6019] = 5729, - [6020] = 6020, - [6021] = 5733, - [6022] = 5712, - [6023] = 5736, + [6018] = 6018, + [6019] = 6019, + [6020] = 5730, + [6021] = 6021, + [6022] = 5732, + [6023] = 5733, [6024] = 6024, - [6025] = 5738, + [6025] = 5737, [6026] = 6026, - [6027] = 5716, + [6027] = 5740, [6028] = 6028, - [6029] = 6029, + [6029] = 5742, [6030] = 6030, [6031] = 6031, - [6032] = 5741, + [6032] = 5693, [6033] = 6033, [6034] = 6034, [6035] = 6035, @@ -10693,69 +10700,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6037] = 6037, [6038] = 6038, [6039] = 6039, - [6040] = 6040, + [6040] = 5691, [6041] = 6041, [6042] = 6042, [6043] = 6043, - [6044] = 5776, + [6044] = 6044, [6045] = 6045, [6046] = 6046, [6047] = 6047, [6048] = 6048, - [6049] = 6049, - [6050] = 5767, - [6051] = 6051, + [6049] = 5690, + [6050] = 6050, + [6051] = 5922, [6052] = 6052, - [6053] = 5774, - [6054] = 6054, - [6055] = 6055, + [6053] = 6053, + [6054] = 5771, + [6055] = 5695, [6056] = 6056, - [6057] = 5774, + [6057] = 6057, [6058] = 6058, - [6059] = 5776, - [6060] = 6060, - [6061] = 6061, + [6059] = 6059, + [6060] = 5697, + [6061] = 5778, [6062] = 6062, - [6063] = 6063, + [6063] = 5780, [6064] = 6064, [6065] = 6065, [6066] = 6066, [6067] = 6067, [6068] = 6068, [6069] = 6069, - [6070] = 5767, + [6070] = 6070, [6071] = 6071, [6072] = 6072, - [6073] = 5746, + [6073] = 6073, [6074] = 6074, - [6075] = 6075, + [6075] = 5702, [6076] = 6076, [6077] = 6077, [6078] = 6078, [6079] = 6079, - [6080] = 6080, + [6080] = 5914, [6081] = 6081, [6082] = 6082, [6083] = 6083, [6084] = 6084, [6085] = 6085, - [6086] = 5726, + [6086] = 6086, [6087] = 6087, - [6088] = 5728, - [6089] = 5729, - [6090] = 5733, - [6091] = 5736, - [6092] = 5738, - [6093] = 6093, - [6094] = 6094, + [6088] = 6088, + [6089] = 6089, + [6090] = 6090, + [6091] = 5723, + [6092] = 6092, + [6093] = 922, + [6094] = 5711, [6095] = 6095, - [6096] = 6096, + [6096] = 5656, [6097] = 6097, [6098] = 6098, - [6099] = 5698, + [6099] = 5714, [6100] = 6100, - [6101] = 6101, - [6102] = 6102, + [6101] = 5793, + [6102] = 5658, [6103] = 6103, [6104] = 6104, [6105] = 6105, @@ -10764,16 +10771,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6108] = 6108, [6109] = 6109, [6110] = 6110, - [6111] = 5649, + [6111] = 6111, [6112] = 6112, [6113] = 6113, [6114] = 6114, - [6115] = 5650, - [6116] = 5651, + [6115] = 5666, + [6116] = 6116, [6117] = 6117, - [6118] = 5666, - [6119] = 5664, - [6120] = 6120, + [6118] = 6118, + [6119] = 5681, + [6120] = 5692, [6121] = 6121, [6122] = 6122, [6123] = 6123, @@ -10787,9 +10794,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6131] = 6131, [6132] = 6132, [6133] = 6133, - [6134] = 4458, + [6134] = 6134, [6135] = 6135, - [6136] = 6136, + [6136] = 5742, [6137] = 6137, [6138] = 6138, [6139] = 6139, @@ -10797,44 +10804,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6141] = 6141, [6142] = 6142, [6143] = 6143, - [6144] = 5741, + [6144] = 6144, [6145] = 6145, [6146] = 6146, [6147] = 6147, - [6148] = 6148, + [6148] = 5740, [6149] = 6149, - [6150] = 6150, + [6150] = 5737, [6151] = 6151, - [6152] = 5738, + [6152] = 6152, [6153] = 6153, - [6154] = 6154, + [6154] = 5733, [6155] = 6155, - [6156] = 5736, + [6156] = 6156, [6157] = 6157, - [6158] = 5733, + [6158] = 6158, [6159] = 6159, - [6160] = 5649, - [6161] = 6161, + [6160] = 6160, + [6161] = 5678, [6162] = 6162, - [6163] = 5650, - [6164] = 6164, - [6165] = 5651, - [6166] = 6166, - [6167] = 5729, + [6163] = 6163, + [6164] = 5677, + [6165] = 6165, + [6166] = 5685, + [6167] = 6167, [6168] = 6168, [6169] = 6169, - [6170] = 6170, + [6170] = 5696, [6171] = 6171, - [6172] = 5728, - [6173] = 6173, - [6174] = 5726, - [6175] = 5657, + [6172] = 6172, + [6173] = 945, + [6174] = 6174, + [6175] = 928, [6176] = 6176, - [6177] = 6177, + [6177] = 950, [6178] = 6178, [6179] = 6179, [6180] = 6180, - [6181] = 6181, + [6181] = 949, [6182] = 6182, [6183] = 6183, [6184] = 6184, @@ -10842,817 +10849,817 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6186] = 6186, [6187] = 6187, [6188] = 6188, - [6189] = 6189, + [6189] = 947, [6190] = 6190, [6191] = 6191, - [6192] = 6192, + [6192] = 957, [6193] = 6193, - [6194] = 5716, - [6195] = 6195, + [6194] = 6194, + [6195] = 5648, [6196] = 6196, [6197] = 6197, - [6198] = 6198, + [6198] = 5849, [6199] = 6199, - [6200] = 5646, + [6200] = 6200, [6201] = 6201, - [6202] = 5712, - [6203] = 5680, - [6204] = 5682, + [6202] = 5766, + [6203] = 6203, + [6204] = 5657, [6205] = 6205, [6206] = 6206, - [6207] = 5700, - [6208] = 5759, - [6209] = 5702, - [6210] = 5761, - [6211] = 5685, + [6207] = 5730, + [6208] = 6208, + [6209] = 5732, + [6210] = 6210, + [6211] = 6211, [6212] = 6212, - [6213] = 5701, - [6214] = 5763, - [6215] = 5669, - [6216] = 5765, + [6213] = 5733, + [6214] = 936, + [6215] = 6215, + [6216] = 6216, [6217] = 6217, [6218] = 6218, - [6219] = 5673, - [6220] = 5674, + [6219] = 5674, + [6220] = 5780, [6221] = 6221, [6222] = 6222, - [6223] = 6223, - [6224] = 5767, - [6225] = 5690, + [6223] = 5677, + [6224] = 5678, + [6225] = 6225, [6226] = 6226, - [6227] = 5738, - [6228] = 5736, + [6227] = 5869, + [6228] = 6228, [6229] = 6229, [6230] = 6230, - [6231] = 5733, - [6232] = 5729, - [6233] = 6233, + [6231] = 6231, + [6232] = 6232, + [6233] = 5649, [6234] = 6234, - [6235] = 6235, + [6235] = 5778, [6236] = 6236, [6237] = 6237, [6238] = 6238, - [6239] = 5674, - [6240] = 5673, - [6241] = 5701, - [6242] = 5702, + [6239] = 5737, + [6240] = 6240, + [6241] = 6241, + [6242] = 6242, [6243] = 6243, [6244] = 6244, - [6245] = 5686, - [6246] = 6246, + [6245] = 5656, + [6246] = 5658, [6247] = 6247, - [6248] = 5692, - [6249] = 5693, - [6250] = 5694, - [6251] = 5712, - [6252] = 5695, + [6248] = 5742, + [6249] = 6249, + [6250] = 5740, + [6251] = 6251, + [6252] = 6252, [6253] = 6253, [6254] = 6254, - [6255] = 5716, - [6256] = 6256, + [6255] = 5685, + [6256] = 5737, [6257] = 6257, - [6258] = 6258, - [6259] = 6259, - [6260] = 6260, + [6258] = 5733, + [6259] = 5696, + [6260] = 5732, [6261] = 6261, [6262] = 6262, - [6263] = 5726, - [6264] = 6264, - [6265] = 5728, - [6266] = 5729, - [6267] = 6267, - [6268] = 5733, - [6269] = 6269, - [6270] = 5736, + [6263] = 6263, + [6264] = 5742, + [6265] = 5730, + [6266] = 6266, + [6267] = 5730, + [6268] = 6268, + [6269] = 5732, + [6270] = 5733, [6271] = 6271, - [6272] = 5738, - [6273] = 6273, - [6274] = 5774, - [6275] = 5776, - [6276] = 6276, - [6277] = 5776, - [6278] = 6278, - [6279] = 6279, + [6272] = 5737, + [6273] = 948, + [6274] = 5740, + [6275] = 6275, + [6276] = 5742, + [6277] = 6277, + [6278] = 5658, + [6279] = 5704, [6280] = 6280, - [6281] = 6281, - [6282] = 5774, + [6281] = 5656, + [6282] = 6282, [6283] = 6283, [6284] = 6284, [6285] = 6285, - [6286] = 5704, - [6287] = 6287, + [6286] = 6286, + [6287] = 5692, [6288] = 6288, - [6289] = 5675, - [6290] = 6290, - [6291] = 5674, - [6292] = 5738, - [6293] = 5759, - [6294] = 5736, - [6295] = 5761, - [6296] = 5733, + [6289] = 5678, + [6290] = 5677, + [6291] = 6291, + [6292] = 5674, + [6293] = 6293, + [6294] = 6294, + [6295] = 6295, + [6296] = 6296, [6297] = 5763, - [6298] = 5729, + [6298] = 6298, [6299] = 5765, - [6300] = 6300, + [6300] = 5681, [6301] = 5767, - [6302] = 5728, - [6303] = 5726, - [6304] = 5673, - [6305] = 5702, - [6306] = 5701, + [6302] = 6302, + [6303] = 5769, + [6304] = 6304, + [6305] = 5771, + [6306] = 5740, [6307] = 6307, - [6308] = 5774, + [6308] = 6308, [6309] = 6309, - [6310] = 5776, - [6311] = 5669, - [6312] = 6312, + [6310] = 6310, + [6311] = 6311, + [6312] = 5778, [6313] = 6313, - [6314] = 6314, - [6315] = 5660, - [6316] = 5721, - [6317] = 5722, - [6318] = 5662, - [6319] = 5674, + [6314] = 5780, + [6315] = 6315, + [6316] = 5896, + [6317] = 5892, + [6318] = 6318, + [6319] = 6319, [6320] = 6320, - [6321] = 5673, - [6322] = 5669, - [6323] = 6323, - [6324] = 5665, + [6321] = 6321, + [6322] = 5771, + [6323] = 5666, + [6324] = 6324, [6325] = 6325, - [6326] = 5646, + [6326] = 5748, [6327] = 6327, - [6328] = 5797, - [6329] = 5803, - [6330] = 6330, - [6331] = 6331, - [6332] = 6332, - [6333] = 6333, + [6328] = 5657, + [6329] = 6329, + [6330] = 5795, + [6331] = 5655, + [6332] = 4570, + [6333] = 5884, [6334] = 6334, - [6335] = 5857, + [6335] = 6335, [6336] = 6336, - [6337] = 6337, - [6338] = 4749, - [6339] = 6339, + [6337] = 5778, + [6338] = 5780, + [6339] = 3365, [6340] = 6340, [6341] = 6341, - [6342] = 2530, - [6343] = 6343, - [6344] = 6344, - [6345] = 2522, - [6346] = 6346, + [6342] = 6342, + [6343] = 3372, + [6344] = 970, + [6345] = 986, + [6346] = 977, [6347] = 6347, [6348] = 6348, - [6349] = 334, - [6350] = 6350, + [6349] = 6349, + [6350] = 3398, [6351] = 6351, [6352] = 6352, - [6353] = 6353, + [6353] = 978, [6354] = 6354, [6355] = 6355, - [6356] = 6356, + [6356] = 3379, [6357] = 6357, [6358] = 6358, - [6359] = 6359, + [6359] = 980, [6360] = 6360, - [6361] = 2489, - [6362] = 3384, + [6361] = 6361, + [6362] = 6362, [6363] = 6363, - [6364] = 3386, + [6364] = 6364, [6365] = 6365, [6366] = 6366, [6367] = 6367, - [6368] = 6340, - [6369] = 3394, - [6370] = 6370, - [6371] = 3360, + [6368] = 6368, + [6369] = 6369, + [6370] = 6368, + [6371] = 6367, [6372] = 6372, - [6373] = 1088, - [6374] = 6350, - [6375] = 6375, - [6376] = 1091, + [6373] = 6373, + [6374] = 1072, + [6375] = 6357, + [6376] = 6376, [6377] = 6377, - [6378] = 6378, - [6379] = 1098, - [6380] = 6380, - [6381] = 1105, - [6382] = 1108, + [6378] = 6358, + [6379] = 6379, + [6380] = 6362, + [6381] = 6381, + [6382] = 6382, [6383] = 6383, - [6384] = 1109, + [6384] = 6384, [6385] = 6385, - [6386] = 6386, + [6386] = 6361, [6387] = 6387, [6388] = 6388, - [6389] = 6344, - [6390] = 6348, + [6389] = 6389, + [6390] = 6390, [6391] = 6391, - [6392] = 3416, - [6393] = 6366, - [6394] = 3364, - [6395] = 6395, - [6396] = 1034, + [6392] = 6392, + [6393] = 6393, + [6394] = 6394, + [6395] = 6369, + [6396] = 6372, [6397] = 6397, - [6398] = 6340, - [6399] = 6395, - [6400] = 6395, - [6401] = 6391, - [6402] = 6402, - [6403] = 6350, - [6404] = 6363, + [6398] = 6398, + [6399] = 6399, + [6400] = 6400, + [6401] = 6373, + [6402] = 6400, + [6403] = 6403, + [6404] = 6377, [6405] = 6405, - [6406] = 3371, - [6407] = 1112, - [6408] = 1113, - [6409] = 6367, + [6406] = 6406, + [6407] = 981, + [6408] = 6408, + [6409] = 6409, [6410] = 6410, - [6411] = 6411, + [6411] = 6388, [6412] = 6412, - [6413] = 3372, - [6414] = 6410, - [6415] = 6411, + [6413] = 6413, + [6414] = 6403, + [6415] = 6405, [6416] = 6416, [6417] = 6417, [6418] = 6418, [6419] = 6419, - [6420] = 1115, + [6420] = 6420, [6421] = 6421, - [6422] = 6366, - [6423] = 6423, - [6424] = 6424, + [6422] = 6422, + [6423] = 6408, + [6424] = 3367, [6425] = 6425, - [6426] = 6348, - [6427] = 1117, - [6428] = 1123, - [6429] = 6344, - [6430] = 6430, - [6431] = 6431, + [6426] = 6426, + [6427] = 6413, + [6428] = 6425, + [6429] = 6429, + [6430] = 6360, + [6431] = 967, [6432] = 6432, [6433] = 6433, - [6434] = 3378, - [6435] = 6360, - [6436] = 1129, - [6437] = 6437, - [6438] = 6438, - [6439] = 6439, - [6440] = 6440, - [6441] = 6421, + [6434] = 6434, + [6435] = 6340, + [6436] = 6436, + [6437] = 6340, + [6438] = 6434, + [6439] = 982, + [6440] = 985, + [6441] = 988, [6442] = 6442, - [6443] = 6423, - [6444] = 6383, - [6445] = 6445, + [6443] = 989, + [6444] = 6429, + [6445] = 6420, [6446] = 6446, - [6447] = 1133, + [6447] = 6447, [6448] = 6448, - [6449] = 6449, - [6450] = 6449, + [6449] = 6413, + [6450] = 6450, [6451] = 6451, - [6452] = 6452, + [6452] = 6408, [6453] = 6453, - [6454] = 6454, - [6455] = 6380, - [6456] = 6378, - [6457] = 6433, - [6458] = 6424, - [6459] = 6459, - [6460] = 6451, - [6461] = 6461, - [6462] = 6448, - [6463] = 6445, - [6464] = 1134, + [6454] = 6405, + [6455] = 6403, + [6456] = 992, + [6457] = 6457, + [6458] = 6458, + [6459] = 6422, + [6460] = 6421, + [6461] = 6358, + [6462] = 6357, + [6463] = 6463, + [6464] = 6420, [6465] = 6465, - [6466] = 6423, - [6467] = 6421, - [6468] = 1135, - [6469] = 6411, - [6470] = 6410, - [6471] = 1136, - [6472] = 6472, - [6473] = 6473, - [6474] = 6431, - [6475] = 6430, - [6476] = 6353, - [6477] = 6346, - [6478] = 6424, - [6479] = 1138, - [6480] = 6480, - [6481] = 6350, + [6466] = 6341, + [6467] = 6467, + [6468] = 993, + [6469] = 6469, + [6470] = 6368, + [6471] = 6367, + [6472] = 994, + [6473] = 6362, + [6474] = 6361, + [6475] = 6475, + [6476] = 6476, + [6477] = 6477, + [6478] = 6400, + [6479] = 6342, + [6480] = 6341, + [6481] = 6365, [6482] = 6482, - [6483] = 6419, - [6484] = 1150, - [6485] = 3363, - [6486] = 6486, - [6487] = 6380, - [6488] = 6377, - [6489] = 1120, - [6490] = 6366, - [6491] = 1048, - [6492] = 6492, - [6493] = 1051, - [6494] = 6494, - [6495] = 1053, - [6496] = 6366, - [6497] = 6497, - [6498] = 6498, - [6499] = 1151, - [6500] = 6433, - [6501] = 6425, - [6502] = 6502, - [6503] = 6503, + [6483] = 6340, + [6484] = 6399, + [6485] = 6354, + [6486] = 6381, + [6487] = 6434, + [6488] = 6394, + [6489] = 6393, + [6490] = 6347, + [6491] = 6491, + [6492] = 6394, + [6493] = 6393, + [6494] = 6387, + [6495] = 1021, + [6496] = 6384, + [6497] = 6382, + [6498] = 3389, + [6499] = 6499, + [6500] = 3409, + [6501] = 6355, + [6502] = 995, + [6503] = 973, [6504] = 6504, - [6505] = 6505, - [6506] = 6506, - [6507] = 6507, + [6505] = 6477, + [6506] = 6387, + [6507] = 1002, [6508] = 6508, [6509] = 6509, [6510] = 6510, [6511] = 6511, - [6512] = 6418, - [6513] = 6383, - [6514] = 6417, - [6515] = 6416, + [6512] = 6512, + [6513] = 6513, + [6514] = 6514, + [6515] = 6429, [6516] = 6516, - [6517] = 6517, - [6518] = 6416, + [6517] = 4756, + [6518] = 6518, [6519] = 6519, [6520] = 6520, - [6521] = 6521, - [6522] = 6497, - [6523] = 6417, + [6521] = 6364, + [6522] = 1005, + [6523] = 1043, [6524] = 6524, [6525] = 6525, - [6526] = 6418, - [6527] = 6527, + [6526] = 6417, + [6527] = 6385, [6528] = 6528, - [6529] = 6529, - [6530] = 6530, + [6529] = 6379, + [6530] = 6349, [6531] = 6531, - [6532] = 6438, - [6533] = 1158, - [6534] = 6505, - [6535] = 6504, - [6536] = 6502, - [6537] = 6440, - [6538] = 994, - [6539] = 1121, - [6540] = 6540, - [6541] = 1119, - [6542] = 6442, + [6532] = 6532, + [6533] = 6447, + [6534] = 1008, + [6535] = 6535, + [6536] = 1009, + [6537] = 6537, + [6538] = 6538, + [6539] = 6384, + [6540] = 6450, + [6541] = 6382, + [6542] = 1010, [6543] = 6543, - [6544] = 6446, - [6545] = 1077, - [6546] = 6503, - [6547] = 1073, - [6548] = 6340, - [6549] = 6377, - [6550] = 6387, - [6551] = 1063, - [6552] = 1061, - [6553] = 6395, - [6554] = 6521, - [6555] = 6555, - [6556] = 6391, - [6557] = 6520, - [6558] = 6363, - [6559] = 3379, - [6560] = 6560, - [6561] = 6459, - [6562] = 6416, - [6563] = 6417, - [6564] = 1059, - [6565] = 6360, - [6566] = 1057, - [6567] = 6567, + [6544] = 6342, + [6545] = 6451, + [6546] = 6341, + [6547] = 6519, + [6548] = 6548, + [6549] = 6549, + [6550] = 966, + [6551] = 6551, + [6552] = 6552, + [6553] = 3366, + [6554] = 3399, + [6555] = 6360, + [6556] = 6556, + [6557] = 6557, + [6558] = 6361, + [6559] = 6362, + [6560] = 6367, + [6561] = 6561, + [6562] = 6342, + [6563] = 6422, + [6564] = 6421, + [6565] = 968, + [6566] = 6566, + [6567] = 1079, [6568] = 6568, - [6569] = 1056, - [6570] = 6509, - [6571] = 6508, - [6572] = 6348, - [6573] = 6344, - [6574] = 6430, - [6575] = 6383, - [6576] = 6431, - [6577] = 6380, - [6578] = 6506, - [6579] = 6378, - [6580] = 6498, - [6581] = 6352, - [6582] = 6418, - [6583] = 6583, - [6584] = 1055, - [6585] = 6585, - [6586] = 6586, - [6587] = 6587, - [6588] = 6347, - [6589] = 6589, - [6590] = 6378, - [6591] = 6591, - [6592] = 3406, - [6593] = 6339, - [6594] = 1038, + [6569] = 964, + [6570] = 6570, + [6571] = 6571, + [6572] = 1113, + [6573] = 6475, + [6574] = 6368, + [6575] = 3405, + [6576] = 6467, + [6577] = 3414, + [6578] = 6341, + [6579] = 6579, + [6580] = 6580, + [6581] = 6357, + [6582] = 6582, + [6583] = 6358, + [6584] = 2445, + [6585] = 6369, + [6586] = 1000, + [6587] = 1017, + [6588] = 6372, + [6589] = 6373, + [6590] = 6590, + [6591] = 6377, + [6592] = 6592, + [6593] = 3396, + [6594] = 6594, [6595] = 6595, - [6596] = 1027, - [6597] = 6505, - [6598] = 6598, + [6596] = 3394, + [6597] = 6597, + [6598] = 6388, [6599] = 6599, - [6600] = 6498, - [6601] = 6506, - [6602] = 6508, - [6603] = 6509, - [6604] = 6486, - [6605] = 6472, - [6606] = 6504, - [6607] = 1032, - [6608] = 6520, - [6609] = 6521, - [6610] = 1033, - [6611] = 1039, - [6612] = 6445, - [6613] = 6598, - [6614] = 6448, - [6615] = 6449, - [6616] = 6451, - [6617] = 1040, - [6618] = 6482, - [6619] = 6619, - [6620] = 6620, + [6600] = 6403, + [6601] = 6405, + [6602] = 6408, + [6603] = 6413, + [6604] = 6425, + [6605] = 1019, + [6606] = 6399, + [6607] = 6434, + [6608] = 6511, + [6609] = 6512, + [6610] = 1020, + [6611] = 6611, + [6612] = 6612, + [6613] = 6613, + [6614] = 6513, + [6615] = 6516, + [6616] = 6616, + [6617] = 6364, + [6618] = 1032, + [6619] = 1133, + [6620] = 6499, [6621] = 6621, - [6622] = 6622, - [6623] = 6623, - [6624] = 6624, + [6622] = 1026, + [6623] = 6504, + [6624] = 1029, [6625] = 6625, - [6626] = 6626, - [6627] = 1041, - [6628] = 6503, - [6629] = 6360, - [6630] = 1042, - [6631] = 1083, - [6632] = 6632, - [6633] = 1068, - [6634] = 6634, - [6635] = 6635, - [6636] = 1066, - [6637] = 6637, - [6638] = 6638, - [6639] = 6378, - [6640] = 6640, + [6626] = 6429, + [6627] = 6442, + [6628] = 1037, + [6629] = 1054, + [6630] = 1034, + [6631] = 1051, + [6632] = 1042, + [6633] = 6633, + [6634] = 1055, + [6635] = 1114, + [6636] = 6561, + [6637] = 1103, + [6638] = 6447, + [6639] = 6450, + [6640] = 6451, [6641] = 6641, - [6642] = 6642, - [6643] = 6643, - [6644] = 6452, - [6645] = 6452, - [6646] = 1025, - [6647] = 6641, - [6648] = 6637, - [6649] = 6632, - [6650] = 6380, - [6651] = 6624, - [6652] = 6454, - [6653] = 3375, - [6654] = 6341, - [6655] = 6343, - [6656] = 6453, - [6657] = 6623, - [6658] = 6658, - [6659] = 3393, - [6660] = 1003, - [6661] = 3403, - [6662] = 6425, - [6663] = 6663, - [6664] = 990, - [6665] = 989, - [6666] = 6620, - [6667] = 983, - [6668] = 970, - [6669] = 6669, - [6670] = 6507, - [6671] = 6352, - [6672] = 6347, - [6673] = 6451, - [6674] = 6449, - [6675] = 6346, - [6676] = 1004, - [6677] = 4787, - [6678] = 6448, - [6679] = 6339, + [6642] = 6422, + [6643] = 6421, + [6644] = 6420, + [6645] = 2428, + [6646] = 1100, + [6647] = 6590, + [6648] = 1075, + [6649] = 6592, + [6650] = 6650, + [6651] = 6651, + [6652] = 1076, + [6653] = 6653, + [6654] = 6625, + [6655] = 6518, + [6656] = 6656, + [6657] = 1115, + [6658] = 6376, + [6659] = 6659, + [6660] = 6363, + [6661] = 6661, + [6662] = 6451, + [6663] = 6349, + [6664] = 1086, + [6665] = 6400, + [6666] = 6666, + [6667] = 6365, + [6668] = 6482, + [6669] = 6482, + [6670] = 6399, + [6671] = 6377, + [6672] = 6385, + [6673] = 6354, + [6674] = 6510, + [6675] = 1077, + [6676] = 6381, + [6677] = 6394, + [6678] = 6393, + [6679] = 6387, [6680] = 6680, - [6681] = 1005, - [6682] = 6540, - [6683] = 6683, - [6684] = 1006, - [6685] = 1155, - [6686] = 6686, - [6687] = 1130, - [6688] = 6387, - [6689] = 6383, - [6690] = 6690, - [6691] = 6446, - [6692] = 6445, - [6693] = 3392, - [6694] = 6350, - [6695] = 1153, - [6696] = 1075, - [6697] = 1094, - [6698] = 6472, - [6699] = 1095, + [6681] = 6508, + [6682] = 6384, + [6683] = 1073, + [6684] = 3362, + [6685] = 6685, + [6686] = 6666, + [6687] = 6510, + [6688] = 1007, + [6689] = 1083, + [6690] = 1071, + [6691] = 6382, + [6692] = 1070, + [6693] = 1069, + [6694] = 3416, + [6695] = 6568, + [6696] = 6566, + [6697] = 6509, + [6698] = 6360, + [6699] = 6538, [6700] = 6700, - [6701] = 1089, - [6702] = 333, - [6703] = 6350, - [6704] = 1128, - [6705] = 6599, - [6706] = 6498, - [6707] = 6589, - [6708] = 6586, - [6709] = 1142, - [6710] = 6366, - [6711] = 6442, - [6712] = 6712, - [6713] = 6353, - [6714] = 6440, - [6715] = 6344, - [6716] = 6425, - [6717] = 6348, - [6718] = 6421, - [6719] = 1149, - [6720] = 6430, - [6721] = 6341, - [6722] = 6722, - [6723] = 1148, - [6724] = 1022, - [6725] = 6725, - [6726] = 1023, - [6727] = 6431, - [6728] = 1072, - [6729] = 6729, - [6730] = 1074, - [6731] = 1084, + [6701] = 6701, + [6702] = 6702, + [6703] = 1006, + [6704] = 6704, + [6705] = 2439, + [6706] = 6597, + [6707] = 6707, + [6708] = 6708, + [6709] = 6426, + [6710] = 6418, + [6711] = 6412, + [6712] = 6543, + [6713] = 3392, + [6714] = 6410, + [6715] = 3391, + [6716] = 6361, + [6717] = 6362, + [6718] = 6520, + [6719] = 6659, + [6720] = 6592, + [6721] = 6347, + [6722] = 6590, + [6723] = 6723, + [6724] = 6367, + [6725] = 6368, + [6726] = 4773, + [6727] = 6364, + [6728] = 1078, + [6729] = 6442, + [6730] = 6621, + [6731] = 1089, [6732] = 6732, - [6733] = 1090, - [6734] = 1106, - [6735] = 6367, - [6736] = 6410, - [6737] = 6411, - [6738] = 6438, - [6739] = 6739, + [6733] = 6400, + [6734] = 340, + [6735] = 4774, + [6736] = 6504, + [6737] = 6666, + [6738] = 3390, + [6739] = 6511, [6740] = 6740, - [6741] = 6421, - [6742] = 6423, - [6743] = 6433, - [6744] = 6424, - [6745] = 6745, - [6746] = 6746, - [6747] = 6747, - [6748] = 1146, - [6749] = 6749, - [6750] = 6424, - [6751] = 3370, - [6752] = 6752, - [6753] = 3366, - [6754] = 6433, - [6755] = 6506, - [6756] = 1144, - [6757] = 6438, - [6758] = 6440, - [6759] = 6442, - [6760] = 6446, - [6761] = 6353, - [6762] = 6762, - [6763] = 1132, - [6764] = 3369, + [6741] = 6512, + [6742] = 1066, + [6743] = 6365, + [6744] = 6513, + [6745] = 6482, + [6746] = 6357, + [6747] = 6516, + [6748] = 6518, + [6749] = 6519, + [6750] = 6700, + [6751] = 4775, + [6752] = 6580, + [6753] = 6499, + [6754] = 1065, + [6755] = 1081, + [6756] = 6399, + [6757] = 6354, + [6758] = 6381, + [6759] = 6759, + [6760] = 1053, + [6761] = 1050, + [6762] = 6358, + [6763] = 1036, + [6764] = 6764, [6765] = 6765, - [6766] = 6430, - [6767] = 6452, - [6768] = 6700, - [6769] = 6769, - [6770] = 6451, - [6771] = 6449, - [6772] = 6423, - [6773] = 6448, - [6774] = 6568, - [6775] = 6775, - [6776] = 6749, - [6777] = 6497, - [6778] = 6510, - [6779] = 1127, - [6780] = 6445, - [6781] = 322, - [6782] = 6431, - [6783] = 3368, - [6784] = 6508, - [6785] = 1122, - [6786] = 6472, - [6787] = 6411, - [6788] = 6762, - [6789] = 1102, - [6790] = 6790, - [6791] = 6410, - [6792] = 6412, - [6793] = 6793, - [6794] = 6402, - [6795] = 6795, - [6796] = 325, - [6797] = 6397, - [6798] = 6405, - [6799] = 6431, - [6800] = 6509, - [6801] = 1099, - [6802] = 6430, - [6803] = 6388, - [6804] = 6586, - [6805] = 6507, - [6806] = 1096, - [6807] = 6425, - [6808] = 6589, - [6809] = 1093, - [6810] = 6367, - [6811] = 1044, - [6812] = 6812, - [6813] = 1019, - [6814] = 1013, - [6815] = 6599, - [6816] = 6816, - [6817] = 6725, - [6818] = 6425, - [6819] = 1012, - [6820] = 6472, - [6821] = 6821, - [6822] = 6822, - [6823] = 6503, + [6766] = 6611, + [6767] = 6453, + [6768] = 6768, + [6769] = 6364, + [6770] = 6599, + [6771] = 6417, + [6772] = 6772, + [6773] = 6385, + [6774] = 6379, + [6775] = 6420, + [6776] = 6421, + [6777] = 6349, + [6778] = 1035, + [6779] = 6394, + [6780] = 6599, + [6781] = 6519, + [6782] = 6599, + [6783] = 6783, + [6784] = 6393, + [6785] = 6785, + [6786] = 6518, + [6787] = 6787, + [6788] = 1016, + [6789] = 3407, + [6790] = 6369, + [6791] = 6516, + [6792] = 6372, + [6793] = 6513, + [6794] = 6373, + [6795] = 6512, + [6796] = 6363, + [6797] = 6377, + [6798] = 1088, + [6799] = 1090, + [6800] = 1094, + [6801] = 1056, + [6802] = 6802, + [6803] = 6387, + [6804] = 1097, + [6805] = 329, + [6806] = 1099, + [6807] = 6347, + [6808] = 6342, + [6809] = 6341, + [6810] = 1104, + [6811] = 6417, + [6812] = 6510, + [6813] = 6363, + [6814] = 6363, + [6815] = 1156, + [6816] = 1105, + [6817] = 6391, + [6818] = 6621, + [6819] = 368, + [6820] = 1106, + [6821] = 6364, + [6822] = 1074, + [6823] = 6823, [6824] = 6824, - [6825] = 6504, - [6826] = 6505, - [6827] = 6827, - [6828] = 961, - [6829] = 6510, - [6830] = 6712, - [6831] = 6445, - [6832] = 1030, - [6833] = 1028, - [6834] = 6418, - [6835] = 6417, - [6836] = 6416, - [6837] = 1026, - [6838] = 6762, - [6839] = 6520, - [6840] = 6840, - [6841] = 6503, - [6842] = 1017, - [6843] = 995, - [6844] = 6502, - [6845] = 6749, - [6846] = 992, - [6847] = 6448, - [6848] = 6848, - [6849] = 6732, - [6850] = 986, - [6851] = 6851, - [6852] = 6852, - [6853] = 6521, - [6854] = 6449, - [6855] = 6725, - [6856] = 6451, - [6857] = 1050, - [6858] = 6504, - [6859] = 6505, - [6860] = 6353, - [6861] = 1052, - [6862] = 6862, - [6863] = 6531, - [6864] = 6775, - [6865] = 6363, - [6866] = 6790, - [6867] = 6712, - [6868] = 964, - [6869] = 6530, - [6870] = 3385, - [6871] = 6529, - [6872] = 6391, - [6873] = 6873, - [6874] = 6540, - [6875] = 6875, - [6876] = 981, - [6877] = 6507, - [6878] = 6528, - [6879] = 6446, - [6880] = 6880, - [6881] = 6442, - [6882] = 1065, - [6883] = 980, - [6884] = 6884, - [6885] = 6440, - [6886] = 6418, - [6887] = 6749, - [6888] = 6343, - [6889] = 979, - [6890] = 6340, - [6891] = 6377, - [6892] = 6417, - [6893] = 6416, - [6894] = 6387, - [6895] = 1047, - [6896] = 1087, - [6897] = 6341, - [6898] = 6343, - [6899] = 1035, - [6900] = 6438, - [6901] = 6516, - [6902] = 1054, - [6903] = 6395, - [6904] = 963, - [6905] = 6395, - [6906] = 6595, - [6907] = 6907, - [6908] = 4797, - [6909] = 6391, - [6910] = 973, - [6911] = 6507, - [6912] = 6712, - [6913] = 4755, - [6914] = 6540, - [6915] = 6363, - [6916] = 1154, - [6917] = 1156, - [6918] = 6432, - [6919] = 6510, - [6920] = 6433, - [6921] = 6502, - [6922] = 6439, - [6923] = 6752, - [6924] = 1157, - [6925] = 1147, - [6926] = 978, - [6927] = 6497, - [6928] = 6725, - [6929] = 6762, - [6930] = 6424, - [6931] = 6348, - [6932] = 6344, - [6933] = 6907, - [6934] = 6732, - [6935] = 6383, - [6936] = 6936, - [6937] = 6452, - [6938] = 6749, - [6939] = 6380, - [6940] = 6378, - [6941] = 6941, - [6942] = 6492, - [6943] = 6762, - [6944] = 6421, - [6945] = 6346, - [6946] = 6946, - [6947] = 6749, - [6948] = 6510, - [6949] = 6949, - [6950] = 6411, - [6951] = 6746, - [6952] = 6732, - [6953] = 6410, - [6954] = 6498, - [6955] = 6506, - [6956] = 6508, - [6957] = 6509, + [6825] = 6825, + [6826] = 6537, + [6827] = 6360, + [6828] = 6828, + [6829] = 1127, + [6830] = 1059, + [6831] = 1153, + [6832] = 1117, + [6833] = 6384, + [6834] = 6611, + [6835] = 6361, + [6836] = 6836, + [6837] = 6362, + [6838] = 6367, + [6839] = 6839, + [6840] = 6368, + [6841] = 6841, + [6842] = 6347, + [6843] = 6843, + [6844] = 6844, + [6845] = 6357, + [6846] = 6388, + [6847] = 6389, + [6848] = 6390, + [6849] = 6409, + [6850] = 1118, + [6851] = 6392, + [6852] = 3388, + [6853] = 6397, + [6854] = 1152, + [6855] = 1150, + [6856] = 6382, + [6857] = 6499, + [6858] = 3384, + [6859] = 1149, + [6860] = 1062, + [6861] = 6504, + [6862] = 6398, + [6863] = 1119, + [6864] = 6403, + [6865] = 6405, + [6866] = 974, + [6867] = 990, + [6868] = 6408, + [6869] = 6358, + [6870] = 6870, + [6871] = 6363, + [6872] = 6872, + [6873] = 6369, + [6874] = 6372, + [6875] = 6373, + [6876] = 6413, + [6877] = 6379, + [6878] = 6388, + [6879] = 991, + [6880] = 6425, + [6881] = 999, + [6882] = 6772, + [6883] = 1003, + [6884] = 6442, + [6885] = 6403, + [6886] = 6405, + [6887] = 6448, + [6888] = 6408, + [6889] = 6457, + [6890] = 6469, + [6891] = 6413, + [6892] = 6571, + [6893] = 6499, + [6894] = 6425, + [6895] = 1110, + [6896] = 6340, + [6897] = 6347, + [6898] = 1111, + [6899] = 1123, + [6900] = 6448, + [6901] = 6376, + [6902] = 6659, + [6903] = 1027, + [6904] = 6904, + [6905] = 1030, + [6906] = 6457, + [6907] = 6422, + [6908] = 6469, + [6909] = 6909, + [6910] = 6340, + [6911] = 6382, + [6912] = 1033, + [6913] = 6434, + [6914] = 364, + [6915] = 6510, + [6916] = 6916, + [6917] = 6434, + [6918] = 6666, + [6919] = 6384, + [6920] = 6666, + [6921] = 6921, + [6922] = 6548, + [6923] = 6417, + [6924] = 6491, + [6925] = 6510, + [6926] = 1085, + [6927] = 6557, + [6928] = 6511, + [6929] = 6429, + [6930] = 1087, + [6931] = 6447, + [6932] = 6442, + [6933] = 6450, + [6934] = 6934, + [6935] = 1038, + [6936] = 6552, + [6937] = 6451, + [6938] = 6504, + [6939] = 1041, + [6940] = 6511, + [6941] = 6556, + [6942] = 6499, + [6943] = 6387, + [6944] = 6422, + [6945] = 6421, + [6946] = 6659, + [6947] = 6611, + [6948] = 6420, + [6949] = 6393, + [6950] = 1136, + [6951] = 6590, + [6952] = 6599, + [6953] = 1137, + [6954] = 6376, + [6955] = 6592, + [6956] = 6611, + [6957] = 3393, [6958] = 6958, - [6959] = 6520, - [6960] = 6521, - [6961] = 6961, - [6962] = 6367, - [6963] = 6725, - [6964] = 6419, - [6965] = 6360, - [6966] = 6377, - [6967] = 6967, - [6968] = 6540, - [6969] = 6507, - [6970] = 6387, - [6971] = 6339, - [6972] = 6972, - [6973] = 6423, - [6974] = 6974, - [6975] = 3362, - [6976] = 6347, - [6977] = 6352, - [6978] = 1060, - [6979] = 6356, - [6980] = 6347, - [6981] = 6346, - [6982] = 6357, - [6983] = 6339, - [6984] = 6358, - [6985] = 6352, - [6986] = 6459, - [6987] = 6359, - [6988] = 6353, - [6989] = 6732, + [6959] = 6959, + [6960] = 6960, + [6961] = 6551, + [6962] = 1158, + [6963] = 1147, + [6964] = 6512, + [6965] = 1096, + [6966] = 1134, + [6967] = 6513, + [6968] = 6429, + [6969] = 6516, + [6970] = 6394, + [6971] = 6971, + [6972] = 6549, + [6973] = 6973, + [6974] = 1151, + [6975] = 1155, + [6976] = 6976, + [6977] = 1154, + [6978] = 6978, + [6979] = 6518, + [6980] = 6980, + [6981] = 6519, + [6982] = 6625, + [6983] = 6983, + [6984] = 6385, + [6985] = 6379, + [6986] = 1028, + [6987] = 6659, + [6988] = 6376, + [6989] = 6400, [6990] = 6990, - [6991] = 6712, - [6992] = 6360, - [6993] = 6343, - [6994] = 6341, - [6995] = 6340, + [6991] = 6447, + [6992] = 6365, + [6993] = 6482, + [6994] = 6349, + [6995] = 6399, [6996] = 6996, - [6997] = 6997, - [6998] = 6998, - [6999] = 6999, + [6997] = 6354, + [6998] = 6381, + [6999] = 6450, [7000] = 7000, [7001] = 7001, [7002] = 7002, @@ -11671,474 +11678,478 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7015] = 7015, [7016] = 7016, [7017] = 7017, - [7018] = 7018, + [7018] = 4784, [7019] = 7019, - [7020] = 6997, + [7020] = 7020, [7021] = 7021, [7022] = 7022, [7023] = 7023, [7024] = 7024, [7025] = 7025, - [7026] = 7025, + [7026] = 7026, [7027] = 7027, [7028] = 7028, [7029] = 7029, - [7030] = 6998, + [7030] = 7004, [7031] = 7031, - [7032] = 7032, + [7032] = 7005, [7033] = 7033, - [7034] = 7003, - [7035] = 7035, + [7034] = 7034, + [7035] = 7006, [7036] = 7036, [7037] = 7037, [7038] = 7038, - [7039] = 7039, - [7040] = 7040, + [7039] = 7038, + [7040] = 7037, [7041] = 7041, - [7042] = 7042, - [7043] = 7043, + [7042] = 7036, + [7043] = 7033, [7044] = 7044, - [7045] = 7045, - [7046] = 7046, - [7047] = 7047, - [7048] = 7048, - [7049] = 7009, + [7045] = 7027, + [7046] = 7026, + [7047] = 7031, + [7048] = 7025, + [7049] = 7029, [7050] = 7050, - [7051] = 7051, - [7052] = 7019, - [7053] = 7000, + [7051] = 7014, + [7052] = 7052, + [7053] = 7053, [7054] = 7054, - [7055] = 7001, - [7056] = 7056, - [7057] = 7002, - [7058] = 7058, - [7059] = 7056, - [7060] = 7019, - [7061] = 7061, + [7055] = 7055, + [7056] = 7024, + [7057] = 7014, + [7058] = 7006, + [7059] = 7005, + [7060] = 7023, + [7061] = 7004, [7062] = 7062, - [7063] = 7045, + [7063] = 7002, [7064] = 7064, - [7065] = 7043, + [7065] = 7065, [7066] = 7066, - [7067] = 7038, + [7067] = 7067, [7068] = 7068, - [7069] = 7054, + [7069] = 7001, [7070] = 7070, - [7071] = 7036, + [7071] = 7021, [7072] = 7072, - [7073] = 7035, - [7074] = 7029, - [7075] = 7023, - [7076] = 7022, - [7077] = 7021, - [7078] = 7004, - [7079] = 7056, + [7073] = 7021, + [7074] = 7074, + [7075] = 7000, + [7076] = 7076, + [7077] = 7023, + [7078] = 7078, + [7079] = 7023, [7080] = 7080, - [7081] = 7070, - [7082] = 7005, - [7083] = 7006, - [7084] = 7008, - [7085] = 6996, - [7086] = 6999, - [7087] = 7021, - [7088] = 7022, - [7089] = 7023, - [7090] = 7068, - [7091] = 7016, - [7092] = 7017, - [7093] = 7093, + [7081] = 7024, + [7082] = 7082, + [7083] = 7083, + [7084] = 7084, + [7085] = 7029, + [7086] = 7086, + [7087] = 7087, + [7088] = 7031, + [7089] = 7089, + [7090] = 7090, + [7091] = 7025, + [7092] = 7026, + [7093] = 7027, [7094] = 7094, - [7095] = 7029, - [7096] = 6997, - [7097] = 7011, - [7098] = 7013, - [7099] = 7014, - [7100] = 7015, - [7101] = 7035, - [7102] = 7036, - [7103] = 7103, - [7104] = 7038, - [7105] = 7018, - [7106] = 7010, - [7107] = 7107, - [7108] = 7108, - [7109] = 7043, - [7110] = 7002, - [7111] = 7045, - [7112] = 7001, - [7113] = 7000, - [7114] = 7027, - [7115] = 7003, - [7116] = 6998, - [7117] = 7025, - [7118] = 7019, + [7095] = 7036, + [7096] = 7021, + [7097] = 7037, + [7098] = 7098, + [7099] = 7033, + [7100] = 7038, + [7101] = 7101, + [7102] = 7026, + [7103] = 7033, + [7104] = 7027, + [7105] = 7038, + [7106] = 7037, + [7107] = 7015, + [7108] = 7036, + [7109] = 7109, + [7110] = 7025, + [7111] = 7111, + [7112] = 7112, + [7113] = 7031, + [7114] = 7098, + [7115] = 7029, + [7116] = 7116, + [7117] = 7117, + [7118] = 7118, [7119] = 7119, [7120] = 7120, - [7121] = 7028, - [7122] = 7056, - [7123] = 7010, + [7121] = 7121, + [7122] = 7024, + [7123] = 7123, [7124] = 7124, - [7125] = 7066, - [7126] = 7126, - [7127] = 7127, - [7128] = 7031, - [7129] = 7032, + [7125] = 7000, + [7126] = 7023, + [7127] = 7074, + [7128] = 7128, + [7129] = 7062, [7130] = 7130, - [7131] = 7037, - [7132] = 7040, - [7133] = 7041, - [7134] = 7134, - [7135] = 7054, - [7136] = 7042, - [7137] = 7137, - [7138] = 7138, - [7139] = 7044, - [7140] = 7140, - [7141] = 7046, - [7142] = 7048, - [7143] = 7143, + [7131] = 7111, + [7132] = 7132, + [7133] = 7002, + [7134] = 7000, + [7135] = 7074, + [7136] = 7136, + [7137] = 7000, + [7138] = 7074, + [7139] = 7021, + [7140] = 7086, + [7141] = 7000, + [7142] = 7074, + [7143] = 7082, [7144] = 7144, [7145] = 7145, [7146] = 7146, - [7147] = 7103, - [7148] = 7148, - [7149] = 7022, - [7150] = 7023, - [7151] = 7032, - [7152] = 7152, - [7153] = 7153, - [7154] = 7029, - [7155] = 7155, - [7156] = 7156, - [7157] = 7035, - [7158] = 7158, - [7159] = 7038, - [7160] = 7160, - [7161] = 7143, - [7162] = 7103, - [7163] = 7043, - [7164] = 7148, - [7165] = 7045, - [7166] = 7134, - [7167] = 7019, - [7168] = 7054, - [7169] = 7152, - [7170] = 7056, - [7171] = 7156, - [7172] = 7094, - [7173] = 7072, - [7174] = 7068, - [7175] = 7056, - [7176] = 7072, - [7177] = 7048, - [7178] = 7019, - [7179] = 7046, - [7180] = 7044, - [7181] = 7181, - [7182] = 7182, - [7183] = 7042, - [7184] = 7041, - [7185] = 7040, - [7186] = 7037, - [7187] = 7032, - [7188] = 7031, - [7189] = 7064, - [7190] = 7062, - [7191] = 7028, + [7147] = 7080, + [7148] = 7000, + [7149] = 7074, + [7150] = 7150, + [7151] = 7022, + [7152] = 7080, + [7153] = 7026, + [7154] = 7027, + [7155] = 7000, + [7156] = 7074, + [7157] = 7157, + [7158] = 7033, + [7159] = 7015, + [7160] = 7019, + [7161] = 7038, + [7162] = 7020, + [7163] = 7036, + [7164] = 7089, + [7165] = 7024, + [7166] = 7087, + [7167] = 7031, + [7168] = 7064, + [7169] = 7029, + [7170] = 7084, + [7171] = 7024, + [7172] = 7080, + [7173] = 7022, + [7174] = 7023, + [7175] = 7000, + [7176] = 7074, + [7177] = 7011, + [7178] = 7178, + [7179] = 7055, + [7180] = 7015, + [7181] = 7011, + [7182] = 7083, + [7183] = 7123, + [7184] = 7053, + [7185] = 7054, + [7186] = 7080, + [7187] = 7000, + [7188] = 7188, + [7189] = 7074, + [7190] = 7001, + [7191] = 7191, [7192] = 7192, - [7193] = 7025, - [7194] = 7045, + [7193] = 7015, + [7194] = 7194, [7195] = 7195, - [7196] = 7045, - [7197] = 6998, - [7198] = 7043, - [7199] = 7003, + [7196] = 7196, + [7197] = 7064, + [7198] = 7198, + [7199] = 7199, [7200] = 7200, - [7201] = 7018, - [7202] = 7015, - [7203] = 7014, - [7204] = 7013, + [7201] = 7002, + [7202] = 7202, + [7203] = 7062, + [7204] = 7204, [7205] = 7205, - [7206] = 7156, - [7207] = 7011, - [7208] = 7009, - [7209] = 7000, - [7210] = 7008, - [7211] = 7001, - [7212] = 7002, - [7213] = 7006, - [7214] = 7214, - [7215] = 7152, - [7216] = 7148, - [7217] = 7005, - [7218] = 7000, - [7219] = 7219, - [7220] = 7038, - [7221] = 7010, - [7222] = 7222, - [7223] = 7223, - [7224] = 7043, - [7225] = 7225, - [7226] = 7214, - [7227] = 7004, - [7228] = 7205, - [7229] = 7192, - [7230] = 7014, - [7231] = 7134, - [7232] = 7027, - [7233] = 7143, - [7234] = 7036, - [7235] = 4845, - [7236] = 7028, - [7237] = 7007, - [7238] = 7035, - [7239] = 7223, - [7240] = 7041, - [7241] = 7025, - [7242] = 7050, - [7243] = 7037, - [7244] = 7182, - [7245] = 7029, - [7246] = 7040, - [7247] = 7041, - [7248] = 7094, - [7249] = 7001, - [7250] = 7002, - [7251] = 7042, - [7252] = 7023, - [7253] = 7022, - [7254] = 7010, - [7255] = 7021, - [7256] = 7044, - [7257] = 7058, - [7258] = 7046, - [7259] = 7025, - [7260] = 7048, - [7261] = 7003, - [7262] = 7038, - [7263] = 7263, - [7264] = 6998, - [7265] = 7222, - [7266] = 7266, - [7267] = 7267, - [7268] = 7003, - [7269] = 7269, - [7270] = 7094, - [7271] = 7271, - [7272] = 7058, - [7273] = 7010, - [7274] = 7274, - [7275] = 7064, - [7276] = 7062, - [7277] = 7134, - [7278] = 7002, - [7279] = 7001, - [7280] = 7225, - [7281] = 7000, - [7282] = 7064, - [7283] = 7283, - [7284] = 7062, - [7285] = 7050, - [7286] = 7027, - [7287] = 7064, - [7288] = 7062, - [7289] = 7000, - [7290] = 7001, - [7291] = 7291, - [7292] = 7002, - [7293] = 7064, - [7294] = 7062, - [7295] = 7010, - [7296] = 7058, - [7297] = 7025, - [7298] = 7062, - [7299] = 6998, - [7300] = 7036, - [7301] = 7064, - [7302] = 7003, - [7303] = 7156, - [7304] = 7070, - [7305] = 7050, - [7306] = 7064, - [7307] = 7062, - [7308] = 7152, - [7309] = 7050, - [7310] = 7148, - [7311] = 7035, - [7312] = 7103, - [7313] = 7070, - [7314] = 7143, - [7315] = 6999, - [7316] = 7016, - [7317] = 7017, - [7318] = 7318, - [7319] = 7070, - [7320] = 7004, - [7321] = 7321, - [7322] = 7066, - [7323] = 7064, - [7324] = 7025, - [7325] = 6998, - [7326] = 7062, - [7327] = 7000, - [7328] = 7001, + [7206] = 7206, + [7207] = 7072, + [7208] = 7078, + [7209] = 7206, + [7210] = 7205, + [7211] = 7202, + [7212] = 7200, + [7213] = 7004, + [7214] = 7198, + [7215] = 7005, + [7216] = 7006, + [7217] = 7196, + [7218] = 7195, + [7219] = 7080, + [7220] = 7194, + [7221] = 7192, + [7222] = 7191, + [7223] = 7136, + [7224] = 7132, + [7225] = 7014, + [7226] = 7226, + [7227] = 7227, + [7228] = 7130, + [7229] = 7128, + [7230] = 7230, + [7231] = 7124, + [7232] = 7232, + [7233] = 7233, + [7234] = 7072, + [7235] = 7121, + [7236] = 7236, + [7237] = 7120, + [7238] = 7118, + [7239] = 7117, + [7240] = 7116, + [7241] = 7178, + [7242] = 7078, + [7243] = 7006, + [7244] = 7044, + [7245] = 7064, + [7246] = 7054, + [7247] = 7116, + [7248] = 7050, + [7249] = 7249, + [7250] = 7117, + [7251] = 7251, + [7252] = 7055, + [7253] = 7253, + [7254] = 7011, + [7255] = 7022, + [7256] = 7118, + [7257] = 7020, + [7258] = 7019, + [7259] = 7259, + [7260] = 7120, + [7261] = 7121, + [7262] = 7123, + [7263] = 7124, + [7264] = 7128, + [7265] = 7062, + [7266] = 7130, + [7267] = 7132, + [7268] = 7136, + [7269] = 7089, + [7270] = 7087, + [7271] = 7084, + [7272] = 7272, + [7273] = 7083, + [7274] = 7080, + [7275] = 7191, + [7276] = 7000, + [7277] = 7074, + [7278] = 7233, + [7279] = 7029, + [7280] = 7192, + [7281] = 7194, + [7282] = 7195, + [7283] = 7232, + [7284] = 7000, + [7285] = 7230, + [7286] = 7074, + [7287] = 7198, + [7288] = 7200, + [7289] = 7202, + [7290] = 7290, + [7291] = 7205, + [7292] = 7031, + [7293] = 7052, + [7294] = 7014, + [7295] = 7206, + [7296] = 7001, + [7297] = 7005, + [7298] = 7227, + [7299] = 7004, + [7300] = 7015, + [7301] = 7062, + [7302] = 7002, + [7303] = 7064, + [7304] = 7206, + [7305] = 7205, + [7306] = 7202, + [7307] = 7200, + [7308] = 7198, + [7309] = 7196, + [7310] = 7036, + [7311] = 7195, + [7312] = 7226, + [7313] = 7194, + [7314] = 7192, + [7315] = 7191, + [7316] = 7316, + [7317] = 7052, + [7318] = 7014, + [7319] = 7041, + [7320] = 7136, + [7321] = 7132, + [7322] = 7006, + [7323] = 7005, + [7324] = 7004, + [7325] = 7325, + [7326] = 7130, + [7327] = 7128, + [7328] = 7064, [7329] = 7002, - [7330] = 6997, - [7331] = 7200, - [7332] = 7050, - [7333] = 7072, - [7334] = 7005, - [7335] = 7335, - [7336] = 7050, - [7337] = 7010, - [7338] = 7068, - [7339] = 7006, - [7340] = 7008, - [7341] = 7009, - [7342] = 7011, - [7343] = 7066, - [7344] = 7070, - [7345] = 7064, - [7346] = 7346, - [7347] = 7029, - [7348] = 7062, - [7349] = 7349, - [7350] = 7061, - [7351] = 7143, - [7352] = 7195, - [7353] = 7200, - [7354] = 7103, - [7355] = 7050, - [7356] = 7013, - [7357] = 7148, - [7358] = 7047, - [7359] = 7152, - [7360] = 7000, - [7361] = 7001, - [7362] = 7222, - [7363] = 7223, - [7364] = 7002, - [7365] = 7039, - [7366] = 7214, - [7367] = 7274, - [7368] = 7205, - [7369] = 7192, - [7370] = 7007, - [7371] = 7156, - [7372] = 6996, - [7373] = 7010, - [7374] = 7182, - [7375] = 7058, - [7376] = 7134, - [7377] = 7051, - [7378] = 7094, - [7379] = 7072, - [7380] = 7068, - [7381] = 7003, - [7382] = 6998, - [7383] = 7152, - [7384] = 7003, - [7385] = 7385, - [7386] = 7148, - [7387] = 7195, - [7388] = 7200, - [7389] = 7062, - [7390] = 7064, - [7391] = 7015, - [7392] = 7070, - [7393] = 7023, - [7394] = 7039, - [7395] = 7048, - [7396] = 7222, - [7397] = 7223, - [7398] = 7022, - [7399] = 7195, - [7400] = 7214, - [7401] = 7046, - [7402] = 7205, - [7403] = 7192, - [7404] = 7007, - [7405] = 7044, - [7406] = 6996, - [7407] = 7064, - [7408] = 7182, - [7409] = 7070, - [7410] = 7031, - [7411] = 7025, - [7412] = 7017, - [7413] = 7021, - [7414] = 7070, - [7415] = 7195, - [7416] = 7200, - [7417] = 7042, - [7418] = 7064, - [7419] = 7016, - [7420] = 7062, - [7421] = 7421, - [7422] = 7422, - [7423] = 6998, - [7424] = 7222, - [7425] = 7223, - [7426] = 7040, - [7427] = 7427, - [7428] = 7214, - [7429] = 7037, - [7430] = 7205, - [7431] = 7192, - [7432] = 7007, - [7433] = 7032, - [7434] = 6996, - [7435] = 6999, - [7436] = 7182, - [7437] = 7050, - [7438] = 7031, - [7439] = 7028, - [7440] = 7195, - [7441] = 7200, - [7442] = 7054, - [7443] = 6999, - [7444] = 7016, - [7445] = 7017, - [7446] = 6997, - [7447] = 7222, - [7448] = 7223, - [7449] = 7449, - [7450] = 7214, - [7451] = 7027, - [7452] = 7205, - [7453] = 7192, - [7454] = 7004, - [7455] = 6996, - [7456] = 7182, - [7457] = 7062, - [7458] = 7005, - [7459] = 7006, - [7460] = 7349, - [7461] = 7346, - [7462] = 7008, - [7463] = 7009, - [7464] = 7047, - [7465] = 7011, - [7466] = 7013, - [7467] = 7349, - [7468] = 7346, - [7469] = 7014, - [7470] = 7047, - [7471] = 7015, - [7472] = 7349, - [7473] = 7346, - [7474] = 950, - [7475] = 7047, - [7476] = 943, - [7477] = 7349, - [7478] = 7346, - [7479] = 7018, - [7480] = 7047, - [7481] = 7481, - [7482] = 7349, - [7483] = 7346, - [7484] = 7018, - [7485] = 7485, + [7330] = 7124, + [7331] = 7004, + [7332] = 7005, + [7333] = 7006, + [7334] = 7123, + [7335] = 7121, + [7336] = 7120, + [7337] = 7118, + [7338] = 7117, + [7339] = 7116, + [7340] = 7196, + [7341] = 7014, + [7342] = 7078, + [7343] = 7072, + [7344] = 7000, + [7345] = 7054, + [7346] = 7055, + [7347] = 7011, + [7348] = 7022, + [7349] = 7037, + [7350] = 7020, + [7351] = 7019, + [7352] = 7015, + [7353] = 7082, + [7354] = 7089, + [7355] = 7087, + [7356] = 7199, + [7357] = 7204, + [7358] = 7084, + [7359] = 7083, + [7360] = 7080, + [7361] = 7052, + [7362] = 7074, + [7363] = 7064, + [7364] = 7038, + [7365] = 7002, + [7366] = 7226, + [7367] = 7227, + [7368] = 7005, + [7369] = 951, + [7370] = 7230, + [7371] = 7014, + [7372] = 7232, + [7373] = 7233, + [7374] = 7178, + [7375] = 7062, + [7376] = 7044, + [7377] = 909, + [7378] = 7050, + [7379] = 7006, + [7380] = 7380, + [7381] = 7005, + [7382] = 7004, + [7383] = 7383, + [7384] = 7015, + [7385] = 7062, + [7386] = 7002, + [7387] = 7062, + [7388] = 7064, + [7389] = 7389, + [7390] = 7199, + [7391] = 7204, + [7392] = 7119, + [7393] = 7015, + [7394] = 7206, + [7395] = 7205, + [7396] = 7202, + [7397] = 7200, + [7398] = 7198, + [7399] = 7196, + [7400] = 7226, + [7401] = 7227, + [7402] = 7195, + [7403] = 7194, + [7404] = 7230, + [7405] = 7192, + [7406] = 7232, + [7407] = 7233, + [7408] = 7178, + [7409] = 7191, + [7410] = 7044, + [7411] = 7136, + [7412] = 7050, + [7413] = 7132, + [7414] = 7414, + [7415] = 7033, + [7416] = 7416, + [7417] = 7204, + [7418] = 7130, + [7419] = 7199, + [7420] = 7204, + [7421] = 7128, + [7422] = 7124, + [7423] = 7123, + [7424] = 7121, + [7425] = 7120, + [7426] = 7118, + [7427] = 7117, + [7428] = 7226, + [7429] = 7227, + [7430] = 7116, + [7431] = 7062, + [7432] = 7230, + [7433] = 7004, + [7434] = 7232, + [7435] = 7233, + [7436] = 7178, + [7437] = 7002, + [7438] = 7044, + [7439] = 7080, + [7440] = 7050, + [7441] = 7006, + [7442] = 7442, + [7443] = 7027, + [7444] = 7199, + [7445] = 7204, + [7446] = 7078, + [7447] = 7072, + [7448] = 7001, + [7449] = 7026, + [7450] = 7014, + [7451] = 7226, + [7452] = 7227, + [7453] = 7199, + [7454] = 7230, + [7455] = 7054, + [7456] = 7232, + [7457] = 7233, + [7458] = 7052, + [7459] = 7044, + [7460] = 7050, + [7461] = 7064, + [7462] = 7025, + [7463] = 7055, + [7464] = 7416, + [7465] = 7414, + [7466] = 7011, + [7467] = 7022, + [7468] = 7119, + [7469] = 7020, + [7470] = 7019, + [7471] = 7416, + [7472] = 7414, + [7473] = 7082, + [7474] = 7119, + [7475] = 7074, + [7476] = 7416, + [7477] = 7414, + [7478] = 7111, + [7479] = 7119, + [7480] = 7089, + [7481] = 7416, + [7482] = 7414, + [7483] = 7087, + [7484] = 7119, + [7485] = 7084, + [7486] = 7416, + [7487] = 7414, + [7488] = 7083, + [7489] = 7489, }; static TSCharacterRange extras_character_set_1[] = { @@ -12310,6 +12321,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 919, 'l', 836, 'm', 944, @@ -12363,6 +12375,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 919, 'l', 836, 'm', 944, @@ -12519,6 +12532,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 919, 'l', 836, 'm', 944, @@ -12572,6 +12586,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 909, 'l', 836, 'm', 944, @@ -12629,6 +12644,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 919, 'l', 836, 'm', 944, @@ -12681,6 +12697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 919, 'l', 836, 'm', 944, @@ -12735,6 +12752,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 927, 'f', 1014, + 'g', 899, 'i', 918, 'l', 836, 'm', 944, @@ -12790,6 +12808,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 894, 'f', 1014, + 'g', 899, 'i', 918, 'l', 836, 'm', 944, @@ -12844,6 +12863,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 909, 'l', 836, 'm', 944, @@ -13536,6 +13556,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 921, 'l', 836, 'm', 944, @@ -13589,6 +13610,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1023, 'f', 1014, + 'g', 899, 'i', 921, 'l', 836, 'm', 944, @@ -13638,6 +13660,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 921, 'l', 836, 'm', 944, @@ -13775,6 +13798,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 927, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -13822,6 +13846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 894, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -13869,6 +13894,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 927, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -13916,6 +13942,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 894, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -13963,6 +13990,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 927, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -14010,6 +14038,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 894, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -14057,6 +14086,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 921, 'l', 836, 'm', 944, @@ -14101,6 +14131,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -15153,7 +15184,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(1053); END_STATE(); case 194: - if (lookahead == 'e') ADVANCE(1081); + if (lookahead == 'e') ADVANCE(1083); END_STATE(); case 195: if (lookahead == 'e') ADVANCE(1091); @@ -15277,7 +15308,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(141); END_STATE(); case 234: - if (lookahead == 'l') ADVANCE(1089); + if (lookahead == 'l') ADVANCE(1078); END_STATE(); case 235: if (lookahead == 'l') ADVANCE(1069); @@ -15528,13 +15559,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(519); END_STATE(); case 313: - if (lookahead == 's') ADVANCE(1083); + if (lookahead == 's') ADVANCE(1085); END_STATE(); case 314: - if (lookahead == 's') ADVANCE(1078); + if (lookahead == 's') ADVANCE(1080); END_STATE(); case 315: - if (lookahead == 's') ADVANCE(1086); + if (lookahead == 's') ADVANCE(1088); END_STATE(); case 316: if (lookahead == 's') ADVANCE(428); @@ -15972,6 +16003,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 1014, + 'g', 899, 'i', 918, 'l', 836, 'm', 944, @@ -16028,6 +16060,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 894, 'f', 1014, + 'g', 899, 'i', 918, 'l', 836, 'm', 944, @@ -16187,6 +16220,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -16235,6 +16269,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 894, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -16283,6 +16318,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -16331,6 +16367,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 894, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -16379,6 +16416,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -16427,6 +16465,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 894, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -17620,12 +17659,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 652: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(1080); + if (lookahead == 's') ADVANCE(1082); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 653: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(1088); + if (lookahead == 's') ADVANCE(1090); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 654: @@ -18449,7 +18488,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(499); if (lookahead == '\\') ADVANCE(351); - if (lookahead == 's') ADVANCE(1084); + if (lookahead == 's') ADVANCE(1086); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18637,6 +18676,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 927, 'f', 1014, + 'g', 899, 'i', 918, 'l', 836, 'm', 944, @@ -18664,6 +18704,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 894, 'f', 1014, + 'g', 899, 'i', 918, 'l', 836, 'm', 944, @@ -18691,6 +18732,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 1014, + 'g', 899, 'i', 918, 'l', 836, 'm', 944, @@ -18718,6 +18760,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 919, 'l', 836, 'm', 944, @@ -18745,6 +18788,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 894, 'f', 1014, + 'g', 899, 'i', 918, 'l', 836, 'm', 944, @@ -18772,6 +18816,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 919, 'l', 836, 'm', 944, @@ -18798,6 +18843,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 919, 'l', 836, 'm', 944, @@ -18824,6 +18870,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 909, 'l', 836, 'm', 944, @@ -19025,6 +19072,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 927, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19052,6 +19100,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 894, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19079,6 +19128,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 927, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19106,6 +19156,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 927, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19133,6 +19184,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 894, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19160,6 +19212,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 835, 'e', 894, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19187,6 +19240,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19214,6 +19268,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19241,6 +19296,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19267,6 +19323,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 921, 'l', 836, 'm', 944, @@ -19294,6 +19351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 894, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19321,6 +19379,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 894, 'f', 1014, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19348,6 +19407,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 927, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19375,6 +19435,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 894, 'f', 880, + 'g', 899, 'i', 920, 'l', 836, 'm', 944, @@ -19402,6 +19463,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 921, 'l', 836, 'm', 944, @@ -19428,6 +19490,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1024, 'f', 1014, + 'g', 899, 'i', 921, 'l', 836, 'm', 944, @@ -19454,6 +19517,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 855, 'e', 1023, 'f', 1014, + 'g', 899, 'i', 921, 'l', 836, 'm', 944, @@ -20060,7 +20124,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 846: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(351); - if (lookahead == 'e') ADVANCE(1082); + if (lookahead == 'e') ADVANCE(1084); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 847: @@ -20357,7 +20421,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 891: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(351); - if (lookahead == 'l') ADVANCE(1090); + if (lookahead == 'l') ADVANCE(1079); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 892: @@ -20921,19 +20985,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 981: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(351); - if (lookahead == 's') ADVANCE(1085); + if (lookahead == 's') ADVANCE(1087); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 982: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(351); - if (lookahead == 's') ADVANCE(1079); + if (lookahead == 's') ADVANCE(1081); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 983: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(351); - if (lookahead == 's') ADVANCE(1087); + if (lookahead == 's') ADVANCE(1089); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 984: @@ -21504,29 +21568,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_satisfies); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_satisfies); + ACCEPT_TOKEN(anon_sym_global); if (lookahead == '\\') ADVANCE(351); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1080: ACCEPT_TOKEN(anon_sym_satisfies); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_require); + ACCEPT_TOKEN(anon_sym_satisfies); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1082: + ACCEPT_TOKEN(anon_sym_satisfies); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); + END_STATE(); + case 1083: + ACCEPT_TOKEN(anon_sym_require); + END_STATE(); + case 1084: ACCEPT_TOKEN(anon_sym_require); if (lookahead == '\\') ADVANCE(351); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1083: + case 1085: ACCEPT_TOKEN(anon_sym_extends); END_STATE(); - case 1084: + case 1086: ACCEPT_TOKEN(anon_sym_extends); if (lookahead == '-') ADVANCE(499); if (lookahead == '\\') ADVANCE(351); @@ -21537,31 +21609,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1085: + case 1087: ACCEPT_TOKEN(anon_sym_extends); if (lookahead == '\\') ADVANCE(351); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1086: + case 1088: ACCEPT_TOKEN(anon_sym_implements); END_STATE(); - case 1087: + case 1089: ACCEPT_TOKEN(anon_sym_implements); if (lookahead == '\\') ADVANCE(351); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1088: + case 1090: ACCEPT_TOKEN(anon_sym_implements); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); - case 1089: - ACCEPT_TOKEN(anon_sym_global); - END_STATE(); - case 1090: - ACCEPT_TOKEN(anon_sym_global); - if (lookahead == '\\') ADVANCE(351); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); - END_STATE(); case 1091: ACCEPT_TOKEN(anon_sym_interface); END_STATE(); @@ -22258,18 +22322,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [121] = {.lex_state = 407, .external_lex_state = 2}, [122] = {.lex_state = 407, .external_lex_state = 2}, [123] = {.lex_state = 35, .external_lex_state = 2}, - [124] = {.lex_state = 35, .external_lex_state = 2}, + [124] = {.lex_state = 6, .external_lex_state = 4}, [125] = {.lex_state = 35, .external_lex_state = 2}, - [126] = {.lex_state = 35, .external_lex_state = 2}, - [127] = {.lex_state = 6, .external_lex_state = 4}, + [126] = {.lex_state = 6, .external_lex_state = 4}, + [127] = {.lex_state = 35, .external_lex_state = 2}, [128] = {.lex_state = 35, .external_lex_state = 2}, [129] = {.lex_state = 35, .external_lex_state = 2}, [130] = {.lex_state = 35, .external_lex_state = 2}, - [131] = {.lex_state = 6, .external_lex_state = 4}, + [131] = {.lex_state = 35, .external_lex_state = 2}, [132] = {.lex_state = 35, .external_lex_state = 2}, [133] = {.lex_state = 35, .external_lex_state = 2}, - [134] = {.lex_state = 35, .external_lex_state = 2}, - [135] = {.lex_state = 6, .external_lex_state = 4}, + [134] = {.lex_state = 6, .external_lex_state = 4}, + [135] = {.lex_state = 35, .external_lex_state = 2}, [136] = {.lex_state = 6, .external_lex_state = 3}, [137] = {.lex_state = 6, .external_lex_state = 3}, [138] = {.lex_state = 6, .external_lex_state = 3}, @@ -22282,63 +22346,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [145] = {.lex_state = 6, .external_lex_state = 3}, [146] = {.lex_state = 6, .external_lex_state = 3}, [147] = {.lex_state = 6, .external_lex_state = 3}, - [148] = {.lex_state = 6, .external_lex_state = 3}, - [149] = {.lex_state = 35, .external_lex_state = 2}, + [148] = {.lex_state = 35, .external_lex_state = 2}, + [149] = {.lex_state = 6, .external_lex_state = 3}, [150] = {.lex_state = 35, .external_lex_state = 2}, [151] = {.lex_state = 6, .external_lex_state = 3}, - [152] = {.lex_state = 6, .external_lex_state = 3}, - [153] = {.lex_state = 35, .external_lex_state = 2}, + [152] = {.lex_state = 35, .external_lex_state = 2}, + [153] = {.lex_state = 6, .external_lex_state = 3}, [154] = {.lex_state = 6, .external_lex_state = 4}, - [155] = {.lex_state = 6, .external_lex_state = 4}, + [155] = {.lex_state = 6, .external_lex_state = 3}, [156] = {.lex_state = 6, .external_lex_state = 4}, - [157] = {.lex_state = 35, .external_lex_state = 2}, - [158] = {.lex_state = 10, .external_lex_state = 4}, - [159] = {.lex_state = 6, .external_lex_state = 4}, - [160] = {.lex_state = 10, .external_lex_state = 4}, - [161] = {.lex_state = 6, .external_lex_state = 4}, + [157] = {.lex_state = 6, .external_lex_state = 4}, + [158] = {.lex_state = 6, .external_lex_state = 4}, + [159] = {.lex_state = 10, .external_lex_state = 4}, + [160] = {.lex_state = 35, .external_lex_state = 2}, + [161] = {.lex_state = 35, .external_lex_state = 2}, [162] = {.lex_state = 35, .external_lex_state = 2}, - [163] = {.lex_state = 35, .external_lex_state = 2}, - [164] = {.lex_state = 6, .external_lex_state = 3}, - [165] = {.lex_state = 6, .external_lex_state = 4}, + [163] = {.lex_state = 6, .external_lex_state = 4}, + [164] = {.lex_state = 6, .external_lex_state = 4}, + [165] = {.lex_state = 10, .external_lex_state = 4}, [166] = {.lex_state = 10, .external_lex_state = 4}, - [167] = {.lex_state = 6, .external_lex_state = 4}, - [168] = {.lex_state = 35, .external_lex_state = 2}, - [169] = {.lex_state = 35, .external_lex_state = 2}, - [170] = {.lex_state = 6, .external_lex_state = 4}, - [171] = {.lex_state = 10, .external_lex_state = 4}, + [167] = {.lex_state = 35, .external_lex_state = 2}, + [168] = {.lex_state = 10, .external_lex_state = 4}, + [169] = {.lex_state = 6, .external_lex_state = 4}, + [170] = {.lex_state = 35, .external_lex_state = 2}, + [171] = {.lex_state = 6, .external_lex_state = 4}, [172] = {.lex_state = 6, .external_lex_state = 3}, [173] = {.lex_state = 6, .external_lex_state = 3}, [174] = {.lex_state = 6, .external_lex_state = 3}, - [175] = {.lex_state = 6, .external_lex_state = 3}, - [176] = {.lex_state = 6, .external_lex_state = 3}, + [175] = {.lex_state = 6, .external_lex_state = 4}, + [176] = {.lex_state = 11, .external_lex_state = 3}, [177] = {.lex_state = 11, .external_lex_state = 3}, [178] = {.lex_state = 6, .external_lex_state = 3}, [179] = {.lex_state = 11, .external_lex_state = 3}, [180] = {.lex_state = 6, .external_lex_state = 3}, - [181] = {.lex_state = 6, .external_lex_state = 3}, - [182] = {.lex_state = 11, .external_lex_state = 3}, - [183] = {.lex_state = 6, .external_lex_state = 4}, + [181] = {.lex_state = 6, .external_lex_state = 4}, + [182] = {.lex_state = 6, .external_lex_state = 3}, + [183] = {.lex_state = 6, .external_lex_state = 3}, [184] = {.lex_state = 6, .external_lex_state = 4}, [185] = {.lex_state = 6, .external_lex_state = 3}, [186] = {.lex_state = 6, .external_lex_state = 3}, - [187] = {.lex_state = 6, .external_lex_state = 4}, - [188] = {.lex_state = 10, .external_lex_state = 3}, + [187] = {.lex_state = 6, .external_lex_state = 3}, + [188] = {.lex_state = 6, .external_lex_state = 3}, [189] = {.lex_state = 10, .external_lex_state = 3}, - [190] = {.lex_state = 6, .external_lex_state = 3}, - [191] = {.lex_state = 6, .external_lex_state = 3}, - [192] = {.lex_state = 10, .external_lex_state = 3}, - [193] = {.lex_state = 10, .external_lex_state = 3}, + [190] = {.lex_state = 10, .external_lex_state = 3}, + [191] = {.lex_state = 10, .external_lex_state = 3}, + [192] = {.lex_state = 6, .external_lex_state = 3}, + [193] = {.lex_state = 6, .external_lex_state = 3}, [194] = {.lex_state = 6, .external_lex_state = 3}, - [195] = {.lex_state = 6, .external_lex_state = 3}, + [195] = {.lex_state = 10, .external_lex_state = 3}, [196] = {.lex_state = 6, .external_lex_state = 3}, [197] = {.lex_state = 6, .external_lex_state = 3}, [198] = {.lex_state = 6, .external_lex_state = 3}, [199] = {.lex_state = 6, .external_lex_state = 3}, - [200] = {.lex_state = 6, .external_lex_state = 3}, + [200] = {.lex_state = 35, .external_lex_state = 2}, [201] = {.lex_state = 6, .external_lex_state = 3}, [202] = {.lex_state = 6, .external_lex_state = 3}, [203] = {.lex_state = 6, .external_lex_state = 3}, - [204] = {.lex_state = 35, .external_lex_state = 2}, + [204] = {.lex_state = 6, .external_lex_state = 3}, [205] = {.lex_state = 6, .external_lex_state = 3}, [206] = {.lex_state = 6, .external_lex_state = 3}, [207] = {.lex_state = 6, .external_lex_state = 3}, @@ -22357,11 +22421,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 12, .external_lex_state = 3}, [221] = {.lex_state = 12, .external_lex_state = 4}, [222] = {.lex_state = 13, .external_lex_state = 4}, - [223] = {.lex_state = 12, .external_lex_state = 3}, - [224] = {.lex_state = 12, .external_lex_state = 4}, + [223] = {.lex_state = 12, .external_lex_state = 4}, + [224] = {.lex_state = 12, .external_lex_state = 3}, [225] = {.lex_state = 16, .external_lex_state = 3}, - [226] = {.lex_state = 12, .external_lex_state = 3}, - [227] = {.lex_state = 13, .external_lex_state = 3}, + [226] = {.lex_state = 13, .external_lex_state = 3}, + [227] = {.lex_state = 12, .external_lex_state = 3}, [228] = {.lex_state = 12, .external_lex_state = 3}, [229] = {.lex_state = 47, .external_lex_state = 2}, [230] = {.lex_state = 47, .external_lex_state = 2}, @@ -22377,230 +22441,230 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [240] = {.lex_state = 47, .external_lex_state = 2}, [241] = {.lex_state = 17, .external_lex_state = 3}, [242] = {.lex_state = 19, .external_lex_state = 4}, - [243] = {.lex_state = 17, .external_lex_state = 4}, - [244] = {.lex_state = 17, .external_lex_state = 3}, - [245] = {.lex_state = 17, .external_lex_state = 3}, + [243] = {.lex_state = 37, .external_lex_state = 2}, + [244] = {.lex_state = 37, .external_lex_state = 2}, + [245] = {.lex_state = 17, .external_lex_state = 4}, [246] = {.lex_state = 37, .external_lex_state = 2}, [247] = {.lex_state = 37, .external_lex_state = 2}, - [248] = {.lex_state = 17, .external_lex_state = 4}, - [249] = {.lex_state = 20, .external_lex_state = 3}, - [250] = {.lex_state = 17, .external_lex_state = 3}, - [251] = {.lex_state = 17, .external_lex_state = 3}, - [252] = {.lex_state = 17, .external_lex_state = 3}, - [253] = {.lex_state = 37, .external_lex_state = 2}, + [248] = {.lex_state = 37, .external_lex_state = 2}, + [249] = {.lex_state = 17, .external_lex_state = 3}, + [250] = {.lex_state = 37, .external_lex_state = 2}, + [251] = {.lex_state = 37, .external_lex_state = 2}, + [252] = {.lex_state = 37, .external_lex_state = 2}, + [253] = {.lex_state = 17, .external_lex_state = 3}, [254] = {.lex_state = 37, .external_lex_state = 2}, [255] = {.lex_state = 37, .external_lex_state = 2}, [256] = {.lex_state = 37, .external_lex_state = 2}, [257] = {.lex_state = 17, .external_lex_state = 3}, [258] = {.lex_state = 37, .external_lex_state = 2}, [259] = {.lex_state = 37, .external_lex_state = 2}, - [260] = {.lex_state = 37, .external_lex_state = 2}, - [261] = {.lex_state = 37, .external_lex_state = 2}, - [262] = {.lex_state = 17, .external_lex_state = 3}, + [260] = {.lex_state = 36, .external_lex_state = 2}, + [261] = {.lex_state = 20, .external_lex_state = 3}, + [262] = {.lex_state = 37, .external_lex_state = 2}, [263] = {.lex_state = 37, .external_lex_state = 2}, - [264] = {.lex_state = 19, .external_lex_state = 3}, - [265] = {.lex_state = 17, .external_lex_state = 3}, + [264] = {.lex_state = 17, .external_lex_state = 3}, + [265] = {.lex_state = 17, .external_lex_state = 4}, [266] = {.lex_state = 37, .external_lex_state = 2}, [267] = {.lex_state = 37, .external_lex_state = 2}, [268] = {.lex_state = 37, .external_lex_state = 2}, [269] = {.lex_state = 37, .external_lex_state = 2}, - [270] = {.lex_state = 37, .external_lex_state = 2}, + [270] = {.lex_state = 17, .external_lex_state = 3}, [271] = {.lex_state = 37, .external_lex_state = 2}, - [272] = {.lex_state = 36, .external_lex_state = 2}, - [273] = {.lex_state = 37, .external_lex_state = 2}, - [274] = {.lex_state = 37, .external_lex_state = 2}, - [275] = {.lex_state = 37, .external_lex_state = 2}, - [276] = {.lex_state = 46, .external_lex_state = 2}, - [277] = {.lex_state = 37, .external_lex_state = 2}, - [278] = {.lex_state = 36, .external_lex_state = 5}, + [272] = {.lex_state = 37, .external_lex_state = 2}, + [273] = {.lex_state = 46, .external_lex_state = 2}, + [274] = {.lex_state = 46, .external_lex_state = 2}, + [275] = {.lex_state = 17, .external_lex_state = 3}, + [276] = {.lex_state = 17, .external_lex_state = 3}, + [277] = {.lex_state = 19, .external_lex_state = 3}, + [278] = {.lex_state = 46, .external_lex_state = 2}, [279] = {.lex_state = 46, .external_lex_state = 2}, [280] = {.lex_state = 46, .external_lex_state = 2}, - [281] = {.lex_state = 46, .external_lex_state = 2}, - [282] = {.lex_state = 46, .external_lex_state = 2}, - [283] = {.lex_state = 37, .external_lex_state = 2}, + [281] = {.lex_state = 36, .external_lex_state = 5}, + [282] = {.lex_state = 36, .external_lex_state = 2}, + [283] = {.lex_state = 17, .external_lex_state = 3}, [284] = {.lex_state = 37, .external_lex_state = 2}, [285] = {.lex_state = 37, .external_lex_state = 2}, [286] = {.lex_state = 37, .external_lex_state = 2}, [287] = {.lex_state = 37, .external_lex_state = 2}, - [288] = {.lex_state = 36, .external_lex_state = 2}, + [288] = {.lex_state = 37, .external_lex_state = 2}, [289] = {.lex_state = 37, .external_lex_state = 2}, [290] = {.lex_state = 37, .external_lex_state = 2}, - [291] = {.lex_state = 15, .external_lex_state = 4}, - [292] = {.lex_state = 15, .external_lex_state = 4}, - [293] = {.lex_state = 15, .external_lex_state = 4}, - [294] = {.lex_state = 15, .external_lex_state = 4}, + [291] = {.lex_state = 36, .external_lex_state = 2}, + [292] = {.lex_state = 36, .external_lex_state = 2}, + [293] = {.lex_state = 36, .external_lex_state = 2}, + [294] = {.lex_state = 37, .external_lex_state = 2}, [295] = {.lex_state = 15, .external_lex_state = 4}, - [296] = {.lex_state = 15, .external_lex_state = 4}, - [297] = {.lex_state = 15, .external_lex_state = 4}, - [298] = {.lex_state = 15, .external_lex_state = 4}, - [299] = {.lex_state = 15, .external_lex_state = 4}, - [300] = {.lex_state = 15, .external_lex_state = 4}, - [301] = {.lex_state = 404, .external_lex_state = 4}, - [302] = {.lex_state = 36, .external_lex_state = 2}, - [303] = {.lex_state = 36, .external_lex_state = 2}, + [296] = {.lex_state = 37, .external_lex_state = 2}, + [297] = {.lex_state = 37, .external_lex_state = 2}, + [298] = {.lex_state = 37, .external_lex_state = 2}, + [299] = {.lex_state = 37, .external_lex_state = 2}, + [300] = {.lex_state = 37, .external_lex_state = 2}, + [301] = {.lex_state = 37, .external_lex_state = 2}, + [302] = {.lex_state = 15, .external_lex_state = 4}, + [303] = {.lex_state = 37, .external_lex_state = 2}, [304] = {.lex_state = 15, .external_lex_state = 4}, - [305] = {.lex_state = 37, .external_lex_state = 2}, - [306] = {.lex_state = 15, .external_lex_state = 4}, + [305] = {.lex_state = 15, .external_lex_state = 4}, + [306] = {.lex_state = 36, .external_lex_state = 2}, [307] = {.lex_state = 36, .external_lex_state = 2}, - [308] = {.lex_state = 404, .external_lex_state = 4}, - [309] = {.lex_state = 404, .external_lex_state = 4}, - [310] = {.lex_state = 36, .external_lex_state = 2}, - [311] = {.lex_state = 404, .external_lex_state = 4}, - [312] = {.lex_state = 15, .external_lex_state = 4}, - [313] = {.lex_state = 37, .external_lex_state = 2}, + [308] = {.lex_state = 36, .external_lex_state = 2}, + [309] = {.lex_state = 36, .external_lex_state = 2}, + [310] = {.lex_state = 37, .external_lex_state = 2}, + [311] = {.lex_state = 15, .external_lex_state = 4}, + [312] = {.lex_state = 37, .external_lex_state = 2}, + [313] = {.lex_state = 15, .external_lex_state = 4}, [314] = {.lex_state = 15, .external_lex_state = 4}, - [315] = {.lex_state = 15, .external_lex_state = 4}, - [316] = {.lex_state = 36, .external_lex_state = 2}, + [315] = {.lex_state = 37, .external_lex_state = 2}, + [316] = {.lex_state = 15, .external_lex_state = 4}, [317] = {.lex_state = 37, .external_lex_state = 2}, - [318] = {.lex_state = 15, .external_lex_state = 4}, - [319] = {.lex_state = 36, .external_lex_state = 2}, - [320] = {.lex_state = 15, .external_lex_state = 4}, + [318] = {.lex_state = 37, .external_lex_state = 2}, + [319] = {.lex_state = 37, .external_lex_state = 2}, + [320] = {.lex_state = 37, .external_lex_state = 2}, [321] = {.lex_state = 15, .external_lex_state = 4}, [322] = {.lex_state = 15, .external_lex_state = 4}, - [323] = {.lex_state = 14, .external_lex_state = 4}, - [324] = {.lex_state = 14, .external_lex_state = 4}, - [325] = {.lex_state = 15, .external_lex_state = 4}, - [326] = {.lex_state = 15, .external_lex_state = 4}, - [327] = {.lex_state = 15, .external_lex_state = 4}, - [328] = {.lex_state = 37, .external_lex_state = 2}, - [329] = {.lex_state = 36, .external_lex_state = 2}, - [330] = {.lex_state = 37, .external_lex_state = 2}, - [331] = {.lex_state = 15, .external_lex_state = 4}, - [332] = {.lex_state = 37, .external_lex_state = 2}, - [333] = {.lex_state = 15, .external_lex_state = 4}, + [323] = {.lex_state = 37, .external_lex_state = 2}, + [324] = {.lex_state = 37, .external_lex_state = 2}, + [325] = {.lex_state = 37, .external_lex_state = 2}, + [326] = {.lex_state = 37, .external_lex_state = 2}, + [327] = {.lex_state = 37, .external_lex_state = 2}, + [328] = {.lex_state = 15, .external_lex_state = 4}, + [329] = {.lex_state = 15, .external_lex_state = 4}, + [330] = {.lex_state = 15, .external_lex_state = 4}, + [331] = {.lex_state = 37, .external_lex_state = 2}, + [332] = {.lex_state = 15, .external_lex_state = 4}, + [333] = {.lex_state = 37, .external_lex_state = 2}, [334] = {.lex_state = 15, .external_lex_state = 4}, - [335] = {.lex_state = 37, .external_lex_state = 2}, - [336] = {.lex_state = 15, .external_lex_state = 4}, - [337] = {.lex_state = 15, .external_lex_state = 4}, - [338] = {.lex_state = 15, .external_lex_state = 4}, - [339] = {.lex_state = 37, .external_lex_state = 2}, - [340] = {.lex_state = 14, .external_lex_state = 4}, - [341] = {.lex_state = 37, .external_lex_state = 2}, + [335] = {.lex_state = 14, .external_lex_state = 4}, + [336] = {.lex_state = 37, .external_lex_state = 2}, + [337] = {.lex_state = 14, .external_lex_state = 4}, + [338] = {.lex_state = 37, .external_lex_state = 2}, + [339] = {.lex_state = 14, .external_lex_state = 4}, + [340] = {.lex_state = 15, .external_lex_state = 4}, + [341] = {.lex_state = 15, .external_lex_state = 4}, [342] = {.lex_state = 14, .external_lex_state = 4}, [343] = {.lex_state = 15, .external_lex_state = 4}, - [344] = {.lex_state = 14, .external_lex_state = 4}, + [344] = {.lex_state = 37, .external_lex_state = 2}, [345] = {.lex_state = 37, .external_lex_state = 2}, - [346] = {.lex_state = 14, .external_lex_state = 4}, - [347] = {.lex_state = 37, .external_lex_state = 2}, - [348] = {.lex_state = 14, .external_lex_state = 4}, - [349] = {.lex_state = 37, .external_lex_state = 2}, - [350] = {.lex_state = 404, .external_lex_state = 4}, - [351] = {.lex_state = 404, .external_lex_state = 4}, + [346] = {.lex_state = 15, .external_lex_state = 4}, + [347] = {.lex_state = 15, .external_lex_state = 4}, + [348] = {.lex_state = 37, .external_lex_state = 2}, + [349] = {.lex_state = 15, .external_lex_state = 4}, + [350] = {.lex_state = 37, .external_lex_state = 2}, + [351] = {.lex_state = 37, .external_lex_state = 2}, [352] = {.lex_state = 404, .external_lex_state = 4}, - [353] = {.lex_state = 14, .external_lex_state = 4}, + [353] = {.lex_state = 37, .external_lex_state = 2}, [354] = {.lex_state = 37, .external_lex_state = 2}, - [355] = {.lex_state = 404, .external_lex_state = 4}, - [356] = {.lex_state = 14, .external_lex_state = 4}, - [357] = {.lex_state = 14, .external_lex_state = 4}, - [358] = {.lex_state = 404, .external_lex_state = 4}, - [359] = {.lex_state = 37, .external_lex_state = 2}, - [360] = {.lex_state = 403, .external_lex_state = 4}, - [361] = {.lex_state = 403, .external_lex_state = 4}, - [362] = {.lex_state = 37, .external_lex_state = 2}, - [363] = {.lex_state = 404, .external_lex_state = 4}, - [364] = {.lex_state = 404, .external_lex_state = 4}, - [365] = {.lex_state = 404, .external_lex_state = 4}, - [366] = {.lex_state = 403, .external_lex_state = 4}, - [367] = {.lex_state = 404, .external_lex_state = 4}, - [368] = {.lex_state = 37, .external_lex_state = 2}, - [369] = {.lex_state = 404, .external_lex_state = 4}, - [370] = {.lex_state = 403, .external_lex_state = 4}, + [355] = {.lex_state = 37, .external_lex_state = 2}, + [356] = {.lex_state = 15, .external_lex_state = 4}, + [357] = {.lex_state = 15, .external_lex_state = 4}, + [358] = {.lex_state = 37, .external_lex_state = 2}, + [359] = {.lex_state = 15, .external_lex_state = 4}, + [360] = {.lex_state = 404, .external_lex_state = 4}, + [361] = {.lex_state = 404, .external_lex_state = 4}, + [362] = {.lex_state = 404, .external_lex_state = 4}, + [363] = {.lex_state = 15, .external_lex_state = 4}, + [364] = {.lex_state = 15, .external_lex_state = 4}, + [365] = {.lex_state = 15, .external_lex_state = 4}, + [366] = {.lex_state = 15, .external_lex_state = 4}, + [367] = {.lex_state = 37, .external_lex_state = 2}, + [368] = {.lex_state = 15, .external_lex_state = 4}, + [369] = {.lex_state = 14, .external_lex_state = 4}, + [370] = {.lex_state = 14, .external_lex_state = 4}, [371] = {.lex_state = 14, .external_lex_state = 4}, [372] = {.lex_state = 14, .external_lex_state = 4}, - [373] = {.lex_state = 404, .external_lex_state = 4}, - [374] = {.lex_state = 37, .external_lex_state = 2}, - [375] = {.lex_state = 37, .external_lex_state = 2}, + [373] = {.lex_state = 14, .external_lex_state = 4}, + [374] = {.lex_state = 14, .external_lex_state = 4}, + [375] = {.lex_state = 14, .external_lex_state = 4}, [376] = {.lex_state = 404, .external_lex_state = 4}, - [377] = {.lex_state = 37, .external_lex_state = 2}, - [378] = {.lex_state = 37, .external_lex_state = 2}, - [379] = {.lex_state = 37, .external_lex_state = 2}, + [377] = {.lex_state = 37, .external_lex_state = 5}, + [378] = {.lex_state = 404, .external_lex_state = 4}, + [379] = {.lex_state = 14, .external_lex_state = 4}, [380] = {.lex_state = 404, .external_lex_state = 4}, - [381] = {.lex_state = 14, .external_lex_state = 4}, - [382] = {.lex_state = 37, .external_lex_state = 2}, - [383] = {.lex_state = 14, .external_lex_state = 4}, + [381] = {.lex_state = 404, .external_lex_state = 4}, + [382] = {.lex_state = 404, .external_lex_state = 4}, + [383] = {.lex_state = 37, .external_lex_state = 5}, [384] = {.lex_state = 404, .external_lex_state = 4}, - [385] = {.lex_state = 14, .external_lex_state = 4}, + [385] = {.lex_state = 404, .external_lex_state = 4}, [386] = {.lex_state = 14, .external_lex_state = 4}, [387] = {.lex_state = 404, .external_lex_state = 4}, - [388] = {.lex_state = 404, .external_lex_state = 4}, - [389] = {.lex_state = 14, .external_lex_state = 4}, + [388] = {.lex_state = 14, .external_lex_state = 4}, + [389] = {.lex_state = 37, .external_lex_state = 5}, [390] = {.lex_state = 14, .external_lex_state = 4}, [391] = {.lex_state = 37, .external_lex_state = 2}, - [392] = {.lex_state = 404, .external_lex_state = 4}, - [393] = {.lex_state = 37, .external_lex_state = 2}, - [394] = {.lex_state = 404, .external_lex_state = 4}, - [395] = {.lex_state = 14, .external_lex_state = 4}, - [396] = {.lex_state = 404, .external_lex_state = 4}, + [392] = {.lex_state = 37, .external_lex_state = 2}, + [393] = {.lex_state = 14, .external_lex_state = 4}, + [394] = {.lex_state = 14, .external_lex_state = 4}, + [395] = {.lex_state = 404, .external_lex_state = 4}, + [396] = {.lex_state = 37, .external_lex_state = 5}, [397] = {.lex_state = 14, .external_lex_state = 4}, - [398] = {.lex_state = 37, .external_lex_state = 2}, - [399] = {.lex_state = 14, .external_lex_state = 4}, - [400] = {.lex_state = 14, .external_lex_state = 4}, - [401] = {.lex_state = 14, .external_lex_state = 4}, - [402] = {.lex_state = 14, .external_lex_state = 4}, - [403] = {.lex_state = 37, .external_lex_state = 2}, + [398] = {.lex_state = 404, .external_lex_state = 4}, + [399] = {.lex_state = 403, .external_lex_state = 4}, + [400] = {.lex_state = 37, .external_lex_state = 5}, + [401] = {.lex_state = 37, .external_lex_state = 2}, + [402] = {.lex_state = 404, .external_lex_state = 4}, + [403] = {.lex_state = 404, .external_lex_state = 4}, [404] = {.lex_state = 14, .external_lex_state = 4}, - [405] = {.lex_state = 404, .external_lex_state = 4}, - [406] = {.lex_state = 404, .external_lex_state = 4}, - [407] = {.lex_state = 37, .external_lex_state = 2}, - [408] = {.lex_state = 37, .external_lex_state = 2}, - [409] = {.lex_state = 404, .external_lex_state = 4}, - [410] = {.lex_state = 404, .external_lex_state = 4}, - [411] = {.lex_state = 14, .external_lex_state = 4}, - [412] = {.lex_state = 14, .external_lex_state = 4}, - [413] = {.lex_state = 37, .external_lex_state = 2}, - [414] = {.lex_state = 404, .external_lex_state = 4}, - [415] = {.lex_state = 37, .external_lex_state = 2}, + [405] = {.lex_state = 37, .external_lex_state = 2}, + [406] = {.lex_state = 14, .external_lex_state = 4}, + [407] = {.lex_state = 14, .external_lex_state = 4}, + [408] = {.lex_state = 404, .external_lex_state = 4}, + [409] = {.lex_state = 14, .external_lex_state = 4}, + [410] = {.lex_state = 403, .external_lex_state = 4}, + [411] = {.lex_state = 403, .external_lex_state = 4}, + [412] = {.lex_state = 404, .external_lex_state = 4}, + [413] = {.lex_state = 404, .external_lex_state = 4}, + [414] = {.lex_state = 14, .external_lex_state = 4}, + [415] = {.lex_state = 14, .external_lex_state = 4}, [416] = {.lex_state = 404, .external_lex_state = 4}, - [417] = {.lex_state = 14, .external_lex_state = 4}, - [418] = {.lex_state = 37, .external_lex_state = 2}, - [419] = {.lex_state = 37, .external_lex_state = 2}, - [420] = {.lex_state = 37, .external_lex_state = 2}, + [417] = {.lex_state = 403, .external_lex_state = 4}, + [418] = {.lex_state = 404, .external_lex_state = 4}, + [419] = {.lex_state = 14, .external_lex_state = 4}, + [420] = {.lex_state = 14, .external_lex_state = 4}, [421] = {.lex_state = 14, .external_lex_state = 4}, - [422] = {.lex_state = 37, .external_lex_state = 2}, - [423] = {.lex_state = 403, .external_lex_state = 4}, - [424] = {.lex_state = 403, .external_lex_state = 4}, - [425] = {.lex_state = 6, .external_lex_state = 3}, - [426] = {.lex_state = 403, .external_lex_state = 4}, - [427] = {.lex_state = 403, .external_lex_state = 4}, - [428] = {.lex_state = 37, .external_lex_state = 2}, - [429] = {.lex_state = 37, .external_lex_state = 2}, - [430] = {.lex_state = 6, .external_lex_state = 3}, - [431] = {.lex_state = 37, .external_lex_state = 5}, + [422] = {.lex_state = 404, .external_lex_state = 4}, + [423] = {.lex_state = 404, .external_lex_state = 4}, + [424] = {.lex_state = 14, .external_lex_state = 4}, + [425] = {.lex_state = 404, .external_lex_state = 4}, + [426] = {.lex_state = 404, .external_lex_state = 4}, + [427] = {.lex_state = 404, .external_lex_state = 4}, + [428] = {.lex_state = 404, .external_lex_state = 4}, + [429] = {.lex_state = 14, .external_lex_state = 4}, + [430] = {.lex_state = 404, .external_lex_state = 4}, + [431] = {.lex_state = 404, .external_lex_state = 4}, [432] = {.lex_state = 403, .external_lex_state = 4}, - [433] = {.lex_state = 37, .external_lex_state = 5}, - [434] = {.lex_state = 403, .external_lex_state = 4}, + [433] = {.lex_state = 37, .external_lex_state = 2}, + [434] = {.lex_state = 37, .external_lex_state = 2}, [435] = {.lex_state = 403, .external_lex_state = 4}, [436] = {.lex_state = 403, .external_lex_state = 4}, - [437] = {.lex_state = 403, .external_lex_state = 4}, - [438] = {.lex_state = 6, .external_lex_state = 3}, - [439] = {.lex_state = 6, .external_lex_state = 3}, + [437] = {.lex_state = 37, .external_lex_state = 2}, + [438] = {.lex_state = 403, .external_lex_state = 4}, + [439] = {.lex_state = 403, .external_lex_state = 4}, [440] = {.lex_state = 403, .external_lex_state = 4}, [441] = {.lex_state = 403, .external_lex_state = 4}, - [442] = {.lex_state = 37, .external_lex_state = 2}, + [442] = {.lex_state = 403, .external_lex_state = 4}, [443] = {.lex_state = 403, .external_lex_state = 4}, [444] = {.lex_state = 403, .external_lex_state = 4}, - [445] = {.lex_state = 403, .external_lex_state = 4}, - [446] = {.lex_state = 37, .external_lex_state = 5}, + [445] = {.lex_state = 6, .external_lex_state = 3}, + [446] = {.lex_state = 403, .external_lex_state = 4}, [447] = {.lex_state = 403, .external_lex_state = 4}, [448] = {.lex_state = 37, .external_lex_state = 2}, [449] = {.lex_state = 403, .external_lex_state = 4}, [450] = {.lex_state = 403, .external_lex_state = 4}, - [451] = {.lex_state = 37, .external_lex_state = 5}, + [451] = {.lex_state = 403, .external_lex_state = 4}, [452] = {.lex_state = 403, .external_lex_state = 4}, - [453] = {.lex_state = 403, .external_lex_state = 4}, + [453] = {.lex_state = 6, .external_lex_state = 3}, [454] = {.lex_state = 403, .external_lex_state = 4}, [455] = {.lex_state = 403, .external_lex_state = 4}, - [456] = {.lex_state = 403, .external_lex_state = 4}, - [457] = {.lex_state = 403, .external_lex_state = 4}, + [456] = {.lex_state = 46, .external_lex_state = 2}, + [457] = {.lex_state = 6, .external_lex_state = 3}, [458] = {.lex_state = 403, .external_lex_state = 4}, - [459] = {.lex_state = 37, .external_lex_state = 5}, + [459] = {.lex_state = 403, .external_lex_state = 4}, [460] = {.lex_state = 403, .external_lex_state = 4}, - [461] = {.lex_state = 37, .external_lex_state = 2}, - [462] = {.lex_state = 46, .external_lex_state = 2}, + [461] = {.lex_state = 403, .external_lex_state = 4}, + [462] = {.lex_state = 403, .external_lex_state = 4}, [463] = {.lex_state = 37, .external_lex_state = 2}, - [464] = {.lex_state = 37, .external_lex_state = 2}, - [465] = {.lex_state = 37, .external_lex_state = 2}, - [466] = {.lex_state = 37, .external_lex_state = 2}, + [464] = {.lex_state = 403, .external_lex_state = 4}, + [465] = {.lex_state = 403, .external_lex_state = 4}, + [466] = {.lex_state = 6, .external_lex_state = 3}, [467] = {.lex_state = 37, .external_lex_state = 2}, [468] = {.lex_state = 37, .external_lex_state = 2}, [469] = {.lex_state = 37, .external_lex_state = 2}, @@ -22970,12 +23034,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [833] = {.lex_state = 405, .external_lex_state = 4}, [834] = {.lex_state = 405, .external_lex_state = 4}, [835] = {.lex_state = 405, .external_lex_state = 4}, - [836] = {.lex_state = 405, .external_lex_state = 4}, + [836] = {.lex_state = 9, .external_lex_state = 4}, [837] = {.lex_state = 9, .external_lex_state = 4}, - [838] = {.lex_state = 405, .external_lex_state = 4}, + [838] = {.lex_state = 9, .external_lex_state = 4}, [839] = {.lex_state = 9, .external_lex_state = 4}, - [840] = {.lex_state = 9, .external_lex_state = 4}, - [841] = {.lex_state = 9, .external_lex_state = 4}, + [840] = {.lex_state = 405, .external_lex_state = 4}, + [841] = {.lex_state = 405, .external_lex_state = 4}, [842] = {.lex_state = 405, .external_lex_state = 4}, [843] = {.lex_state = 405, .external_lex_state = 4}, [844] = {.lex_state = 405, .external_lex_state = 4}, @@ -22986,180 +23050,180 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [849] = {.lex_state = 23, .external_lex_state = 3}, [850] = {.lex_state = 23, .external_lex_state = 3}, [851] = {.lex_state = 23, .external_lex_state = 3}, - [852] = {.lex_state = 25, .external_lex_state = 4}, + [852] = {.lex_state = 23, .external_lex_state = 3}, [853] = {.lex_state = 23, .external_lex_state = 4}, - [854] = {.lex_state = 23, .external_lex_state = 4}, + [854] = {.lex_state = 25, .external_lex_state = 4}, [855] = {.lex_state = 23, .external_lex_state = 4}, - [856] = {.lex_state = 25, .external_lex_state = 4}, - [857] = {.lex_state = 25, .external_lex_state = 4}, + [856] = {.lex_state = 23, .external_lex_state = 4}, + [857] = {.lex_state = 23, .external_lex_state = 4}, [858] = {.lex_state = 23, .external_lex_state = 4}, - [859] = {.lex_state = 23, .external_lex_state = 3}, - [860] = {.lex_state = 23, .external_lex_state = 4}, + [859] = {.lex_state = 25, .external_lex_state = 4}, + [860] = {.lex_state = 25, .external_lex_state = 4}, [861] = {.lex_state = 23, .external_lex_state = 4}, [862] = {.lex_state = 23, .external_lex_state = 4}, - [863] = {.lex_state = 23, .external_lex_state = 3}, - [864] = {.lex_state = 26, .external_lex_state = 3}, + [863] = {.lex_state = 26, .external_lex_state = 3}, + [864] = {.lex_state = 43, .external_lex_state = 2}, [865] = {.lex_state = 26, .external_lex_state = 3}, - [866] = {.lex_state = 23, .external_lex_state = 4}, + [866] = {.lex_state = 23, .external_lex_state = 3}, [867] = {.lex_state = 23, .external_lex_state = 4}, [868] = {.lex_state = 23, .external_lex_state = 3}, - [869] = {.lex_state = 23, .external_lex_state = 3}, - [870] = {.lex_state = 23, .external_lex_state = 4}, + [869] = {.lex_state = 23, .external_lex_state = 4}, + [870] = {.lex_state = 412, .external_lex_state = 2}, [871] = {.lex_state = 23, .external_lex_state = 4}, [872] = {.lex_state = 23, .external_lex_state = 3}, [873] = {.lex_state = 23, .external_lex_state = 4}, [874] = {.lex_state = 23, .external_lex_state = 4}, [875] = {.lex_state = 23, .external_lex_state = 4}, - [876] = {.lex_state = 43, .external_lex_state = 2}, - [877] = {.lex_state = 23, .external_lex_state = 3}, - [878] = {.lex_state = 23, .external_lex_state = 3}, - [879] = {.lex_state = 23, .external_lex_state = 4}, - [880] = {.lex_state = 23, .external_lex_state = 3}, - [881] = {.lex_state = 25, .external_lex_state = 3}, - [882] = {.lex_state = 23, .external_lex_state = 3}, - [883] = {.lex_state = 43, .external_lex_state = 5}, - [884] = {.lex_state = 42, .external_lex_state = 2}, - [885] = {.lex_state = 25, .external_lex_state = 3}, - [886] = {.lex_state = 43, .external_lex_state = 5}, + [876] = {.lex_state = 42, .external_lex_state = 2}, + [877] = {.lex_state = 43, .external_lex_state = 5}, + [878] = {.lex_state = 43, .external_lex_state = 5}, + [879] = {.lex_state = 23, .external_lex_state = 3}, + [880] = {.lex_state = 23, .external_lex_state = 4}, + [881] = {.lex_state = 23, .external_lex_state = 3}, + [882] = {.lex_state = 23, .external_lex_state = 4}, + [883] = {.lex_state = 23, .external_lex_state = 3}, + [884] = {.lex_state = 25, .external_lex_state = 3}, + [885] = {.lex_state = 45, .external_lex_state = 5}, + [886] = {.lex_state = 42, .external_lex_state = 5}, [887] = {.lex_state = 23, .external_lex_state = 3}, - [888] = {.lex_state = 412, .external_lex_state = 2}, - [889] = {.lex_state = 25, .external_lex_state = 3}, - [890] = {.lex_state = 41, .external_lex_state = 2}, - [891] = {.lex_state = 45, .external_lex_state = 2}, - [892] = {.lex_state = 23, .external_lex_state = 3}, - [893] = {.lex_state = 411, .external_lex_state = 2}, - [894] = {.lex_state = 45, .external_lex_state = 5}, - [895] = {.lex_state = 23, .external_lex_state = 3}, - [896] = {.lex_state = 23, .external_lex_state = 3}, - [897] = {.lex_state = 412, .external_lex_state = 5}, - [898] = {.lex_state = 42, .external_lex_state = 5}, - [899] = {.lex_state = 23, .external_lex_state = 3}, - [900] = {.lex_state = 42, .external_lex_state = 5}, - [901] = {.lex_state = 41, .external_lex_state = 2}, - [902] = {.lex_state = 23, .external_lex_state = 3}, - [903] = {.lex_state = 23, .external_lex_state = 3}, - [904] = {.lex_state = 45, .external_lex_state = 5}, - [905] = {.lex_state = 23, .external_lex_state = 3}, - [906] = {.lex_state = 412, .external_lex_state = 5}, - [907] = {.lex_state = 23, .external_lex_state = 3}, - [908] = {.lex_state = 43, .external_lex_state = 2}, - [909] = {.lex_state = 23, .external_lex_state = 3}, - [910] = {.lex_state = 23, .external_lex_state = 3}, - [911] = {.lex_state = 43, .external_lex_state = 2}, + [888] = {.lex_state = 412, .external_lex_state = 5}, + [889] = {.lex_state = 23, .external_lex_state = 3}, + [890] = {.lex_state = 43, .external_lex_state = 2}, + [891] = {.lex_state = 412, .external_lex_state = 5}, + [892] = {.lex_state = 43, .external_lex_state = 2}, + [893] = {.lex_state = 41, .external_lex_state = 2}, + [894] = {.lex_state = 25, .external_lex_state = 3}, + [895] = {.lex_state = 45, .external_lex_state = 2}, + [896] = {.lex_state = 411, .external_lex_state = 2}, + [897] = {.lex_state = 41, .external_lex_state = 2}, + [898] = {.lex_state = 45, .external_lex_state = 5}, + [899] = {.lex_state = 42, .external_lex_state = 5}, + [900] = {.lex_state = 25, .external_lex_state = 3}, + [901] = {.lex_state = 23, .external_lex_state = 3}, + [902] = {.lex_state = 41, .external_lex_state = 5}, + [903] = {.lex_state = 408, .external_lex_state = 2}, + [904] = {.lex_state = 410, .external_lex_state = 5}, + [905] = {.lex_state = 41, .external_lex_state = 2}, + [906] = {.lex_state = 23, .external_lex_state = 3}, + [907] = {.lex_state = 41, .external_lex_state = 5}, + [908] = {.lex_state = 45, .external_lex_state = 2}, + [909] = {.lex_state = 41, .external_lex_state = 5}, + [910] = {.lex_state = 41, .external_lex_state = 5}, + [911] = {.lex_state = 41, .external_lex_state = 5}, [912] = {.lex_state = 41, .external_lex_state = 5}, - [913] = {.lex_state = 41, .external_lex_state = 2}, - [914] = {.lex_state = 410, .external_lex_state = 5}, - [915] = {.lex_state = 41, .external_lex_state = 5}, - [916] = {.lex_state = 42, .external_lex_state = 2}, - [917] = {.lex_state = 41, .external_lex_state = 5}, + [913] = {.lex_state = 40, .external_lex_state = 2}, + [914] = {.lex_state = 40, .external_lex_state = 2}, + [915] = {.lex_state = 42, .external_lex_state = 2}, + [916] = {.lex_state = 41, .external_lex_state = 5}, + [917] = {.lex_state = 408, .external_lex_state = 2}, [918] = {.lex_state = 41, .external_lex_state = 5}, - [919] = {.lex_state = 41, .external_lex_state = 2}, - [920] = {.lex_state = 42, .external_lex_state = 2}, - [921] = {.lex_state = 40, .external_lex_state = 2}, - [922] = {.lex_state = 40, .external_lex_state = 2}, - [923] = {.lex_state = 41, .external_lex_state = 5}, - [924] = {.lex_state = 44, .external_lex_state = 5}, - [925] = {.lex_state = 41, .external_lex_state = 5}, - [926] = {.lex_state = 41, .external_lex_state = 5}, - [927] = {.lex_state = 45, .external_lex_state = 2}, - [928] = {.lex_state = 408, .external_lex_state = 2}, - [929] = {.lex_state = 408, .external_lex_state = 2}, - [930] = {.lex_state = 411, .external_lex_state = 5}, - [931] = {.lex_state = 412, .external_lex_state = 2}, - [932] = {.lex_state = 41, .external_lex_state = 5}, - [933] = {.lex_state = 41, .external_lex_state = 5}, - [934] = {.lex_state = 410, .external_lex_state = 5}, - [935] = {.lex_state = 41, .external_lex_state = 2}, + [919] = {.lex_state = 41, .external_lex_state = 5}, + [920] = {.lex_state = 23, .external_lex_state = 3}, + [921] = {.lex_state = 41, .external_lex_state = 5}, + [922] = {.lex_state = 45, .external_lex_state = 2}, + [923] = {.lex_state = 411, .external_lex_state = 5}, + [924] = {.lex_state = 41, .external_lex_state = 5}, + [925] = {.lex_state = 23, .external_lex_state = 3}, + [926] = {.lex_state = 41, .external_lex_state = 2}, + [927] = {.lex_state = 44, .external_lex_state = 5}, + [928] = {.lex_state = 45, .external_lex_state = 2}, + [929] = {.lex_state = 410, .external_lex_state = 2}, + [930] = {.lex_state = 42, .external_lex_state = 2}, + [931] = {.lex_state = 44, .external_lex_state = 5}, + [932] = {.lex_state = 411, .external_lex_state = 5}, + [933] = {.lex_state = 23, .external_lex_state = 3}, + [934] = {.lex_state = 41, .external_lex_state = 5}, + [935] = {.lex_state = 41, .external_lex_state = 5}, [936] = {.lex_state = 41, .external_lex_state = 5}, - [937] = {.lex_state = 45, .external_lex_state = 2}, - [938] = {.lex_state = 41, .external_lex_state = 2}, - [939] = {.lex_state = 41, .external_lex_state = 5}, - [940] = {.lex_state = 411, .external_lex_state = 5}, - [941] = {.lex_state = 41, .external_lex_state = 5}, - [942] = {.lex_state = 41, .external_lex_state = 5}, + [937] = {.lex_state = 44, .external_lex_state = 2}, + [938] = {.lex_state = 23, .external_lex_state = 3}, + [939] = {.lex_state = 23, .external_lex_state = 3}, + [940] = {.lex_state = 23, .external_lex_state = 3}, + [941] = {.lex_state = 412, .external_lex_state = 2}, + [942] = {.lex_state = 23, .external_lex_state = 3}, [943] = {.lex_state = 41, .external_lex_state = 5}, - [944] = {.lex_state = 41, .external_lex_state = 5}, - [945] = {.lex_state = 45, .external_lex_state = 2}, - [946] = {.lex_state = 45, .external_lex_state = 2}, + [944] = {.lex_state = 23, .external_lex_state = 3}, + [945] = {.lex_state = 41, .external_lex_state = 5}, + [946] = {.lex_state = 41, .external_lex_state = 5}, [947] = {.lex_state = 41, .external_lex_state = 5}, - [948] = {.lex_state = 412, .external_lex_state = 2}, + [948] = {.lex_state = 41, .external_lex_state = 5}, [949] = {.lex_state = 41, .external_lex_state = 5}, [950] = {.lex_state = 41, .external_lex_state = 5}, - [951] = {.lex_state = 410, .external_lex_state = 2}, - [952] = {.lex_state = 45, .external_lex_state = 2}, - [953] = {.lex_state = 41, .external_lex_state = 5}, + [951] = {.lex_state = 41, .external_lex_state = 5}, + [952] = {.lex_state = 412, .external_lex_state = 2}, + [953] = {.lex_state = 45, .external_lex_state = 2}, [954] = {.lex_state = 41, .external_lex_state = 2}, - [955] = {.lex_state = 41, .external_lex_state = 5}, - [956] = {.lex_state = 41, .external_lex_state = 5}, + [955] = {.lex_state = 410, .external_lex_state = 5}, + [956] = {.lex_state = 41, .external_lex_state = 2}, [957] = {.lex_state = 41, .external_lex_state = 5}, - [958] = {.lex_state = 44, .external_lex_state = 2}, - [959] = {.lex_state = 44, .external_lex_state = 5}, - [960] = {.lex_state = 41, .external_lex_state = 5}, - [961] = {.lex_state = 41, .external_lex_state = 2}, - [962] = {.lex_state = 40, .external_lex_state = 5}, - [963] = {.lex_state = 41, .external_lex_state = 2}, + [958] = {.lex_state = 41, .external_lex_state = 2}, + [959] = {.lex_state = 23, .external_lex_state = 3}, + [960] = {.lex_state = 45, .external_lex_state = 2}, + [961] = {.lex_state = 40, .external_lex_state = 5}, + [962] = {.lex_state = 408, .external_lex_state = 5}, + [963] = {.lex_state = 408, .external_lex_state = 2}, [964] = {.lex_state = 41, .external_lex_state = 2}, [965] = {.lex_state = 40, .external_lex_state = 5}, - [966] = {.lex_state = 408, .external_lex_state = 5}, - [967] = {.lex_state = 409, .external_lex_state = 5}, - [968] = {.lex_state = 40, .external_lex_state = 5}, - [969] = {.lex_state = 411, .external_lex_state = 2}, + [966] = {.lex_state = 41, .external_lex_state = 2}, + [967] = {.lex_state = 41, .external_lex_state = 2}, + [968] = {.lex_state = 41, .external_lex_state = 2}, + [969] = {.lex_state = 408, .external_lex_state = 5}, [970] = {.lex_state = 41, .external_lex_state = 2}, [971] = {.lex_state = 40, .external_lex_state = 5}, - [972] = {.lex_state = 409, .external_lex_state = 5}, + [972] = {.lex_state = 408, .external_lex_state = 5}, [973] = {.lex_state = 41, .external_lex_state = 2}, - [974] = {.lex_state = 408, .external_lex_state = 5}, - [975] = {.lex_state = 410, .external_lex_state = 2}, - [976] = {.lex_state = 408, .external_lex_state = 5}, - [977] = {.lex_state = 408, .external_lex_state = 5}, + [974] = {.lex_state = 41, .external_lex_state = 2}, + [975] = {.lex_state = 40, .external_lex_state = 5}, + [976] = {.lex_state = 40, .external_lex_state = 5}, + [977] = {.lex_state = 41, .external_lex_state = 2}, [978] = {.lex_state = 41, .external_lex_state = 2}, - [979] = {.lex_state = 41, .external_lex_state = 2}, + [979] = {.lex_state = 408, .external_lex_state = 5}, [980] = {.lex_state = 41, .external_lex_state = 2}, [981] = {.lex_state = 41, .external_lex_state = 2}, [982] = {.lex_state = 41, .external_lex_state = 2}, - [983] = {.lex_state = 41, .external_lex_state = 2}, - [984] = {.lex_state = 41, .external_lex_state = 2}, - [985] = {.lex_state = 411, .external_lex_state = 2}, + [983] = {.lex_state = 408, .external_lex_state = 5}, + [984] = {.lex_state = 40, .external_lex_state = 5}, + [985] = {.lex_state = 41, .external_lex_state = 2}, [986] = {.lex_state = 41, .external_lex_state = 2}, [987] = {.lex_state = 408, .external_lex_state = 5}, - [988] = {.lex_state = 408, .external_lex_state = 5}, + [988] = {.lex_state = 41, .external_lex_state = 2}, [989] = {.lex_state = 41, .external_lex_state = 2}, [990] = {.lex_state = 41, .external_lex_state = 2}, - [991] = {.lex_state = 408, .external_lex_state = 2}, + [991] = {.lex_state = 41, .external_lex_state = 2}, [992] = {.lex_state = 41, .external_lex_state = 2}, - [993] = {.lex_state = 40, .external_lex_state = 2}, + [993] = {.lex_state = 41, .external_lex_state = 2}, [994] = {.lex_state = 41, .external_lex_state = 2}, [995] = {.lex_state = 41, .external_lex_state = 2}, - [996] = {.lex_state = 40, .external_lex_state = 5}, + [996] = {.lex_state = 408, .external_lex_state = 5}, [997] = {.lex_state = 408, .external_lex_state = 5}, - [998] = {.lex_state = 40, .external_lex_state = 5}, - [999] = {.lex_state = 40, .external_lex_state = 5}, - [1000] = {.lex_state = 408, .external_lex_state = 2}, - [1001] = {.lex_state = 408, .external_lex_state = 5}, - [1002] = {.lex_state = 408, .external_lex_state = 5}, + [998] = {.lex_state = 410, .external_lex_state = 2}, + [999] = {.lex_state = 41, .external_lex_state = 2}, + [1000] = {.lex_state = 41, .external_lex_state = 2}, + [1001] = {.lex_state = 410, .external_lex_state = 2}, + [1002] = {.lex_state = 41, .external_lex_state = 2}, [1003] = {.lex_state = 41, .external_lex_state = 2}, [1004] = {.lex_state = 41, .external_lex_state = 2}, [1005] = {.lex_state = 41, .external_lex_state = 2}, [1006] = {.lex_state = 41, .external_lex_state = 2}, - [1007] = {.lex_state = 408, .external_lex_state = 5}, - [1008] = {.lex_state = 410, .external_lex_state = 2}, - [1009] = {.lex_state = 409, .external_lex_state = 2}, - [1010] = {.lex_state = 410, .external_lex_state = 2}, - [1011] = {.lex_state = 408, .external_lex_state = 5}, - [1012] = {.lex_state = 41, .external_lex_state = 2}, - [1013] = {.lex_state = 41, .external_lex_state = 2}, + [1007] = {.lex_state = 41, .external_lex_state = 2}, + [1008] = {.lex_state = 41, .external_lex_state = 2}, + [1009] = {.lex_state = 41, .external_lex_state = 2}, + [1010] = {.lex_state = 41, .external_lex_state = 2}, + [1011] = {.lex_state = 407, .external_lex_state = 2}, + [1012] = {.lex_state = 408, .external_lex_state = 5}, + [1013] = {.lex_state = 408, .external_lex_state = 2}, [1014] = {.lex_state = 40, .external_lex_state = 5}, - [1015] = {.lex_state = 41, .external_lex_state = 2}, - [1016] = {.lex_state = 408, .external_lex_state = 2}, + [1015] = {.lex_state = 407, .external_lex_state = 2}, + [1016] = {.lex_state = 41, .external_lex_state = 2}, [1017] = {.lex_state = 41, .external_lex_state = 2}, - [1018] = {.lex_state = 408, .external_lex_state = 5}, + [1018] = {.lex_state = 40, .external_lex_state = 5}, [1019] = {.lex_state = 41, .external_lex_state = 2}, - [1020] = {.lex_state = 408, .external_lex_state = 5}, - [1021] = {.lex_state = 408, .external_lex_state = 5}, - [1022] = {.lex_state = 41, .external_lex_state = 2}, - [1023] = {.lex_state = 41, .external_lex_state = 2}, - [1024] = {.lex_state = 41, .external_lex_state = 2}, - [1025] = {.lex_state = 41, .external_lex_state = 2}, + [1020] = {.lex_state = 41, .external_lex_state = 2}, + [1021] = {.lex_state = 41, .external_lex_state = 2}, + [1022] = {.lex_state = 408, .external_lex_state = 5}, + [1023] = {.lex_state = 408, .external_lex_state = 5}, + [1024] = {.lex_state = 408, .external_lex_state = 5}, + [1025] = {.lex_state = 408, .external_lex_state = 5}, [1026] = {.lex_state = 41, .external_lex_state = 2}, [1027] = {.lex_state = 41, .external_lex_state = 2}, [1028] = {.lex_state = 41, .external_lex_state = 2}, @@ -23170,415 +23234,415 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1033] = {.lex_state = 41, .external_lex_state = 2}, [1034] = {.lex_state = 41, .external_lex_state = 2}, [1035] = {.lex_state = 41, .external_lex_state = 2}, - [1036] = {.lex_state = 40, .external_lex_state = 5}, + [1036] = {.lex_state = 41, .external_lex_state = 2}, [1037] = {.lex_state = 41, .external_lex_state = 2}, [1038] = {.lex_state = 41, .external_lex_state = 2}, - [1039] = {.lex_state = 41, .external_lex_state = 2}, - [1040] = {.lex_state = 41, .external_lex_state = 2}, + [1039] = {.lex_state = 40, .external_lex_state = 5}, + [1040] = {.lex_state = 408, .external_lex_state = 5}, [1041] = {.lex_state = 41, .external_lex_state = 2}, [1042] = {.lex_state = 41, .external_lex_state = 2}, [1043] = {.lex_state = 41, .external_lex_state = 2}, [1044] = {.lex_state = 41, .external_lex_state = 2}, - [1045] = {.lex_state = 40, .external_lex_state = 5}, + [1045] = {.lex_state = 41, .external_lex_state = 2}, [1046] = {.lex_state = 41, .external_lex_state = 2}, - [1047] = {.lex_state = 41, .external_lex_state = 2}, - [1048] = {.lex_state = 41, .external_lex_state = 2}, - [1049] = {.lex_state = 408, .external_lex_state = 5}, + [1047] = {.lex_state = 40, .external_lex_state = 2}, + [1048] = {.lex_state = 40, .external_lex_state = 2}, + [1049] = {.lex_state = 41, .external_lex_state = 2}, [1050] = {.lex_state = 41, .external_lex_state = 2}, [1051] = {.lex_state = 41, .external_lex_state = 2}, - [1052] = {.lex_state = 41, .external_lex_state = 2}, + [1052] = {.lex_state = 408, .external_lex_state = 2}, [1053] = {.lex_state = 41, .external_lex_state = 2}, [1054] = {.lex_state = 41, .external_lex_state = 2}, [1055] = {.lex_state = 41, .external_lex_state = 2}, [1056] = {.lex_state = 41, .external_lex_state = 2}, - [1057] = {.lex_state = 41, .external_lex_state = 2}, - [1058] = {.lex_state = 40, .external_lex_state = 5}, + [1057] = {.lex_state = 408, .external_lex_state = 5}, + [1058] = {.lex_state = 41, .external_lex_state = 2}, [1059] = {.lex_state = 41, .external_lex_state = 2}, - [1060] = {.lex_state = 41, .external_lex_state = 2}, + [1060] = {.lex_state = 40, .external_lex_state = 5}, [1061] = {.lex_state = 41, .external_lex_state = 2}, - [1062] = {.lex_state = 40, .external_lex_state = 5}, + [1062] = {.lex_state = 41, .external_lex_state = 2}, [1063] = {.lex_state = 41, .external_lex_state = 2}, - [1064] = {.lex_state = 41, .external_lex_state = 2}, + [1064] = {.lex_state = 40, .external_lex_state = 5}, [1065] = {.lex_state = 41, .external_lex_state = 2}, [1066] = {.lex_state = 41, .external_lex_state = 2}, [1067] = {.lex_state = 40, .external_lex_state = 5}, - [1068] = {.lex_state = 41, .external_lex_state = 2}, - [1069] = {.lex_state = 40, .external_lex_state = 5}, - [1070] = {.lex_state = 407, .external_lex_state = 2}, - [1071] = {.lex_state = 407, .external_lex_state = 2}, + [1068] = {.lex_state = 44, .external_lex_state = 2}, + [1069] = {.lex_state = 41, .external_lex_state = 2}, + [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 = 41, .external_lex_state = 2}, [1075] = {.lex_state = 41, .external_lex_state = 2}, - [1076] = {.lex_state = 40, .external_lex_state = 5}, + [1076] = {.lex_state = 41, .external_lex_state = 2}, [1077] = {.lex_state = 41, .external_lex_state = 2}, - [1078] = {.lex_state = 40, .external_lex_state = 5}, - [1079] = {.lex_state = 44, .external_lex_state = 2}, - [1080] = {.lex_state = 40, .external_lex_state = 5}, - [1081] = {.lex_state = 40, .external_lex_state = 5}, - [1082] = {.lex_state = 44, .external_lex_state = 2}, + [1078] = {.lex_state = 41, .external_lex_state = 2}, + [1079] = {.lex_state = 41, .external_lex_state = 2}, + [1080] = {.lex_state = 411, .external_lex_state = 2}, + [1081] = {.lex_state = 41, .external_lex_state = 2}, + [1082] = {.lex_state = 40, .external_lex_state = 5}, [1083] = {.lex_state = 41, .external_lex_state = 2}, - [1084] = {.lex_state = 41, .external_lex_state = 2}, - [1085] = {.lex_state = 408, .external_lex_state = 2}, - [1086] = {.lex_state = 44, .external_lex_state = 2}, + [1084] = {.lex_state = 408, .external_lex_state = 5}, + [1085] = {.lex_state = 41, .external_lex_state = 2}, + [1086] = {.lex_state = 41, .external_lex_state = 2}, [1087] = {.lex_state = 41, .external_lex_state = 2}, [1088] = {.lex_state = 41, .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 = 408, .external_lex_state = 2}, - [1093] = {.lex_state = 41, .external_lex_state = 2}, + [1092] = {.lex_state = 40, .external_lex_state = 5}, + [1093] = {.lex_state = 408, .external_lex_state = 5}, [1094] = {.lex_state = 41, .external_lex_state = 2}, [1095] = {.lex_state = 41, .external_lex_state = 2}, [1096] = {.lex_state = 41, .external_lex_state = 2}, - [1097] = {.lex_state = 44, .external_lex_state = 2}, - [1098] = {.lex_state = 41, .external_lex_state = 2}, + [1097] = {.lex_state = 41, .external_lex_state = 2}, + [1098] = {.lex_state = 409, .external_lex_state = 5}, [1099] = {.lex_state = 41, .external_lex_state = 2}, - [1100] = {.lex_state = 408, .external_lex_state = 5}, - [1101] = {.lex_state = 408, .external_lex_state = 5}, - [1102] = {.lex_state = 41, .external_lex_state = 2}, - [1103] = {.lex_state = 40, .external_lex_state = 5}, - [1104] = {.lex_state = 408, .external_lex_state = 5}, + [1100] = {.lex_state = 41, .external_lex_state = 2}, + [1101] = {.lex_state = 410, .external_lex_state = 2}, + [1102] = {.lex_state = 44, .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 = 41, .external_lex_state = 2}, - [1107] = {.lex_state = 408, .external_lex_state = 5}, - [1108] = {.lex_state = 41, .external_lex_state = 2}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, - [1110] = {.lex_state = 40, .external_lex_state = 5}, - [1111] = {.lex_state = 408, .external_lex_state = 5}, - [1112] = {.lex_state = 41, .external_lex_state = 2}, + [1107] = {.lex_state = 44, .external_lex_state = 2}, + [1108] = {.lex_state = 40, .external_lex_state = 5}, + [1109] = {.lex_state = 44, .external_lex_state = 2}, + [1110] = {.lex_state = 41, .external_lex_state = 2}, + [1111] = {.lex_state = 41, .external_lex_state = 2}, + [1112] = {.lex_state = 408, .external_lex_state = 5}, [1113] = {.lex_state = 41, .external_lex_state = 2}, - [1114] = {.lex_state = 410, .external_lex_state = 2}, + [1114] = {.lex_state = 41, .external_lex_state = 2}, [1115] = {.lex_state = 41, .external_lex_state = 2}, [1116] = {.lex_state = 40, .external_lex_state = 5}, [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}, - [1121] = {.lex_state = 41, .external_lex_state = 2}, - [1122] = {.lex_state = 41, .external_lex_state = 2}, + [1120] = {.lex_state = 40, .external_lex_state = 5}, + [1121] = {.lex_state = 409, .external_lex_state = 5}, + [1122] = {.lex_state = 40, .external_lex_state = 5}, [1123] = {.lex_state = 41, .external_lex_state = 2}, [1124] = {.lex_state = 408, .external_lex_state = 5}, - [1125] = {.lex_state = 41, .external_lex_state = 2}, - [1126] = {.lex_state = 41, .external_lex_state = 2}, + [1125] = {.lex_state = 40, .external_lex_state = 5}, + [1126] = {.lex_state = 409, .external_lex_state = 2}, [1127] = {.lex_state = 41, .external_lex_state = 2}, - [1128] = {.lex_state = 41, .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}, + [1128] = {.lex_state = 408, .external_lex_state = 5}, + [1129] = {.lex_state = 410, .external_lex_state = 2}, + [1130] = {.lex_state = 408, .external_lex_state = 5}, + [1131] = {.lex_state = 40, .external_lex_state = 5}, + [1132] = {.lex_state = 40, .external_lex_state = 5}, [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 = 40, .external_lex_state = 5}, + [1137] = {.lex_state = 41, .external_lex_state = 2}, [1138] = {.lex_state = 41, .external_lex_state = 2}, - [1139] = {.lex_state = 40, .external_lex_state = 2}, - [1140] = {.lex_state = 410, .external_lex_state = 2}, - [1141] = {.lex_state = 44, .external_lex_state = 2}, - [1142] = {.lex_state = 41, .external_lex_state = 2}, - [1143] = {.lex_state = 408, .external_lex_state = 5}, - [1144] = {.lex_state = 41, .external_lex_state = 2}, - [1145] = {.lex_state = 408, .external_lex_state = 5}, + [1139] = {.lex_state = 408, .external_lex_state = 2}, + [1140] = {.lex_state = 411, .external_lex_state = 2}, + [1141] = {.lex_state = 408, .external_lex_state = 2}, + [1142] = {.lex_state = 44, .external_lex_state = 2}, + [1143] = {.lex_state = 410, .external_lex_state = 2}, + [1144] = {.lex_state = 40, .external_lex_state = 5}, + [1145] = {.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}, + [1148] = {.lex_state = 408, .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 = 40, .external_lex_state = 5}, + [1152] = {.lex_state = 41, .external_lex_state = 2}, [1153] = {.lex_state = 41, .external_lex_state = 2}, [1154] = {.lex_state = 41, .external_lex_state = 2}, [1155] = {.lex_state = 41, .external_lex_state = 2}, [1156] = {.lex_state = 41, .external_lex_state = 2}, - [1157] = {.lex_state = 41, .external_lex_state = 2}, + [1157] = {.lex_state = 408, .external_lex_state = 5}, [1158] = {.lex_state = 41, .external_lex_state = 2}, [1159] = {.lex_state = 40, .external_lex_state = 2}, - [1160] = {.lex_state = 407, .external_lex_state = 2}, + [1160] = {.lex_state = 40, .external_lex_state = 2}, [1161] = {.lex_state = 408, .external_lex_state = 2}, - [1162] = {.lex_state = 40, .external_lex_state = 2}, + [1162] = {.lex_state = 408, .external_lex_state = 2}, [1163] = {.lex_state = 408, .external_lex_state = 2}, - [1164] = {.lex_state = 408, .external_lex_state = 2}, - [1165] = {.lex_state = 408, .external_lex_state = 2}, + [1164] = {.lex_state = 40, .external_lex_state = 2}, + [1165] = {.lex_state = 40, .external_lex_state = 2}, [1166] = {.lex_state = 408, .external_lex_state = 2}, - [1167] = {.lex_state = 407, .external_lex_state = 5}, - [1168] = {.lex_state = 407, .external_lex_state = 5}, + [1167] = {.lex_state = 408, .external_lex_state = 2}, + [1168] = {.lex_state = 40, .external_lex_state = 2}, [1169] = {.lex_state = 407, .external_lex_state = 5}, [1170] = {.lex_state = 40, .external_lex_state = 2}, - [1171] = {.lex_state = 40, .external_lex_state = 2}, + [1171] = {.lex_state = 407, .external_lex_state = 5}, [1172] = {.lex_state = 40, .external_lex_state = 2}, - [1173] = {.lex_state = 407, .external_lex_state = 5}, - [1174] = {.lex_state = 40, .external_lex_state = 2}, + [1173] = {.lex_state = 408, .external_lex_state = 2}, + [1174] = {.lex_state = 407, .external_lex_state = 5}, [1175] = {.lex_state = 407, .external_lex_state = 5}, [1176] = {.lex_state = 40, .external_lex_state = 2}, - [1177] = {.lex_state = 40, .external_lex_state = 2}, - [1178] = {.lex_state = 407, .external_lex_state = 5}, + [1177] = {.lex_state = 407, .external_lex_state = 5}, + [1178] = {.lex_state = 40, .external_lex_state = 2}, [1179] = {.lex_state = 408, .external_lex_state = 2}, - [1180] = {.lex_state = 409, .external_lex_state = 2}, - [1181] = {.lex_state = 408, .external_lex_state = 2}, + [1180] = {.lex_state = 408, .external_lex_state = 2}, + [1181] = {.lex_state = 40, .external_lex_state = 2}, [1182] = {.lex_state = 408, .external_lex_state = 2}, - [1183] = {.lex_state = 408, .external_lex_state = 2}, - [1184] = {.lex_state = 40, .external_lex_state = 2}, - [1185] = {.lex_state = 408, .external_lex_state = 2}, + [1183] = {.lex_state = 40, .external_lex_state = 2}, + [1184] = {.lex_state = 407, .external_lex_state = 5}, + [1185] = {.lex_state = 40, .external_lex_state = 2}, [1186] = {.lex_state = 408, .external_lex_state = 2}, [1187] = {.lex_state = 40, .external_lex_state = 2}, - [1188] = {.lex_state = 40, .external_lex_state = 2}, - [1189] = {.lex_state = 408, .external_lex_state = 2}, + [1188] = {.lex_state = 408, .external_lex_state = 2}, + [1189] = {.lex_state = 40, .external_lex_state = 2}, [1190] = {.lex_state = 40, .external_lex_state = 2}, [1191] = {.lex_state = 408, .external_lex_state = 2}, - [1192] = {.lex_state = 408, .external_lex_state = 2}, + [1192] = {.lex_state = 40, .external_lex_state = 2}, [1193] = {.lex_state = 408, .external_lex_state = 2}, - [1194] = {.lex_state = 40, .external_lex_state = 2}, + [1194] = {.lex_state = 408, .external_lex_state = 2}, [1195] = {.lex_state = 408, .external_lex_state = 2}, - [1196] = {.lex_state = 40, .external_lex_state = 2}, + [1196] = {.lex_state = 408, .external_lex_state = 2}, [1197] = {.lex_state = 40, .external_lex_state = 2}, [1198] = {.lex_state = 408, .external_lex_state = 2}, - [1199] = {.lex_state = 408, .external_lex_state = 2}, - [1200] = {.lex_state = 408, .external_lex_state = 2}, - [1201] = {.lex_state = 40, .external_lex_state = 2}, - [1202] = {.lex_state = 407, .external_lex_state = 5}, - [1203] = {.lex_state = 407, .external_lex_state = 5}, - [1204] = {.lex_state = 40, .external_lex_state = 2}, + [1199] = {.lex_state = 40, .external_lex_state = 2}, + [1200] = {.lex_state = 40, .external_lex_state = 2}, + [1201] = {.lex_state = 408, .external_lex_state = 2}, + [1202] = {.lex_state = 408, .external_lex_state = 2}, + [1203] = {.lex_state = 408, .external_lex_state = 2}, + [1204] = {.lex_state = 408, .external_lex_state = 2}, [1205] = {.lex_state = 408, .external_lex_state = 2}, [1206] = {.lex_state = 40, .external_lex_state = 2}, [1207] = {.lex_state = 408, .external_lex_state = 2}, - [1208] = {.lex_state = 40, .external_lex_state = 2}, + [1208] = {.lex_state = 408, .external_lex_state = 2}, [1209] = {.lex_state = 408, .external_lex_state = 2}, [1210] = {.lex_state = 408, .external_lex_state = 2}, - [1211] = {.lex_state = 408, .external_lex_state = 2}, + [1211] = {.lex_state = 40, .external_lex_state = 2}, [1212] = {.lex_state = 40, .external_lex_state = 2}, [1213] = {.lex_state = 408, .external_lex_state = 2}, - [1214] = {.lex_state = 40, .external_lex_state = 2}, + [1214] = {.lex_state = 408, .external_lex_state = 2}, [1215] = {.lex_state = 408, .external_lex_state = 2}, - [1216] = {.lex_state = 408, .external_lex_state = 2}, - [1217] = {.lex_state = 40, .external_lex_state = 2}, - [1218] = {.lex_state = 40, .external_lex_state = 2}, + [1216] = {.lex_state = 40, .external_lex_state = 2}, + [1217] = {.lex_state = 408, .external_lex_state = 2}, + [1218] = {.lex_state = 408, .external_lex_state = 2}, [1219] = {.lex_state = 40, .external_lex_state = 2}, - [1220] = {.lex_state = 408, .external_lex_state = 2}, - [1221] = {.lex_state = 408, .external_lex_state = 2}, - [1222] = {.lex_state = 40, .external_lex_state = 2}, + [1220] = {.lex_state = 40, .external_lex_state = 2}, + [1221] = {.lex_state = 407, .external_lex_state = 2}, + [1222] = {.lex_state = 407, .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 = 408, .external_lex_state = 2}, - [1227] = {.lex_state = 40, .external_lex_state = 2}, - [1228] = {.lex_state = 408, .external_lex_state = 2}, + [1225] = {.lex_state = 408, .external_lex_state = 2}, + [1226] = {.lex_state = 407, .external_lex_state = 5}, + [1227] = {.lex_state = 408, .external_lex_state = 2}, + [1228] = {.lex_state = 40, .external_lex_state = 2}, [1229] = {.lex_state = 40, .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}, + [1231] = {.lex_state = 408, .external_lex_state = 2}, + [1232] = {.lex_state = 409, .external_lex_state = 2}, [1233] = {.lex_state = 40, .external_lex_state = 2}, - [1234] = {.lex_state = 40, .external_lex_state = 2}, + [1234] = {.lex_state = 408, .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}, + [1238] = {.lex_state = 407, .external_lex_state = 5}, [1239] = {.lex_state = 40, .external_lex_state = 2}, [1240] = {.lex_state = 40, .external_lex_state = 2}, - [1241] = {.lex_state = 40, .external_lex_state = 2}, + [1241] = {.lex_state = 407, .external_lex_state = 5}, [1242] = {.lex_state = 40, .external_lex_state = 2}, - [1243] = {.lex_state = 40, .external_lex_state = 2}, - [1244] = {.lex_state = 40, .external_lex_state = 2}, + [1243] = {.lex_state = 408, .external_lex_state = 2}, + [1244] = {.lex_state = 408, .external_lex_state = 2}, [1245] = {.lex_state = 408, .external_lex_state = 2}, [1246] = {.lex_state = 408, .external_lex_state = 2}, [1247] = {.lex_state = 408, .external_lex_state = 2}, - [1248] = {.lex_state = 40, .external_lex_state = 2}, - [1249] = {.lex_state = 408, .external_lex_state = 2}, + [1248] = {.lex_state = 408, .external_lex_state = 2}, + [1249] = {.lex_state = 407, .external_lex_state = 5}, [1250] = {.lex_state = 40, .external_lex_state = 2}, [1251] = {.lex_state = 40, .external_lex_state = 2}, [1252] = {.lex_state = 408, .external_lex_state = 2}, [1253] = {.lex_state = 408, .external_lex_state = 2}, - [1254] = {.lex_state = 407, .external_lex_state = 5}, + [1254] = {.lex_state = 408, .external_lex_state = 2}, [1255] = {.lex_state = 408, .external_lex_state = 2}, [1256] = {.lex_state = 40, .external_lex_state = 2}, - [1257] = {.lex_state = 40, .external_lex_state = 2}, + [1257] = {.lex_state = 408, .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}, + [1259] = {.lex_state = 408, .external_lex_state = 2}, + [1260] = {.lex_state = 407, .external_lex_state = 2}, [1261] = {.lex_state = 408, .external_lex_state = 2}, - [1262] = {.lex_state = 408, .external_lex_state = 2}, - [1263] = {.lex_state = 408, .external_lex_state = 2}, - [1264] = {.lex_state = 407, .external_lex_state = 5}, + [1262] = {.lex_state = 40, .external_lex_state = 2}, + [1263] = {.lex_state = 40, .external_lex_state = 2}, + [1264] = {.lex_state = 40, .external_lex_state = 2}, [1265] = {.lex_state = 40, .external_lex_state = 2}, - [1266] = {.lex_state = 40, .external_lex_state = 2}, + [1266] = {.lex_state = 408, .external_lex_state = 2}, [1267] = {.lex_state = 408, .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 = 407, .external_lex_state = 5}, + [1270] = {.lex_state = 408, .external_lex_state = 2}, + [1271] = {.lex_state = 408, .external_lex_state = 2}, [1272] = {.lex_state = 40, .external_lex_state = 2}, - [1273] = {.lex_state = 40, .external_lex_state = 2}, + [1273] = {.lex_state = 408, .external_lex_state = 2}, [1274] = {.lex_state = 40, .external_lex_state = 2}, - [1275] = {.lex_state = 40, .external_lex_state = 2}, + [1275] = {.lex_state = 408, .external_lex_state = 2}, [1276] = {.lex_state = 408, .external_lex_state = 2}, - [1277] = {.lex_state = 408, .external_lex_state = 2}, - [1278] = {.lex_state = 408, .external_lex_state = 2}, + [1277] = {.lex_state = 40, .external_lex_state = 2}, + [1278] = {.lex_state = 40, .external_lex_state = 2}, [1279] = {.lex_state = 408, .external_lex_state = 2}, - [1280] = {.lex_state = 40, .external_lex_state = 2}, + [1280] = {.lex_state = 408, .external_lex_state = 2}, [1281] = {.lex_state = 408, .external_lex_state = 2}, [1282] = {.lex_state = 40, .external_lex_state = 2}, - [1283] = {.lex_state = 408, .external_lex_state = 2}, - [1284] = {.lex_state = 408, .external_lex_state = 2}, - [1285] = {.lex_state = 407, .external_lex_state = 5}, - [1286] = {.lex_state = 40, .external_lex_state = 2}, + [1283] = {.lex_state = 40, .external_lex_state = 2}, + [1284] = {.lex_state = 40, .external_lex_state = 2}, + [1285] = {.lex_state = 408, .external_lex_state = 2}, + [1286] = {.lex_state = 407, .external_lex_state = 5}, [1287] = {.lex_state = 40, .external_lex_state = 2}, [1288] = {.lex_state = 40, .external_lex_state = 2}, [1289] = {.lex_state = 40, .external_lex_state = 2}, [1290] = {.lex_state = 40, .external_lex_state = 2}, - [1291] = {.lex_state = 40, .external_lex_state = 2}, - [1292] = {.lex_state = 408, .external_lex_state = 2}, + [1291] = {.lex_state = 408, .external_lex_state = 2}, + [1292] = {.lex_state = 40, .external_lex_state = 2}, [1293] = {.lex_state = 40, .external_lex_state = 2}, - [1294] = {.lex_state = 408, .external_lex_state = 2}, - [1295] = {.lex_state = 408, .external_lex_state = 2}, + [1294] = {.lex_state = 40, .external_lex_state = 2}, + [1295] = {.lex_state = 40, .external_lex_state = 2}, [1296] = {.lex_state = 40, .external_lex_state = 2}, - [1297] = {.lex_state = 408, .external_lex_state = 2}, - [1298] = {.lex_state = 408, .external_lex_state = 2}, + [1297] = {.lex_state = 407, .external_lex_state = 5}, + [1298] = {.lex_state = 40, .external_lex_state = 2}, [1299] = {.lex_state = 40, .external_lex_state = 2}, - [1300] = {.lex_state = 408, .external_lex_state = 2}, + [1300] = {.lex_state = 40, .external_lex_state = 2}, [1301] = {.lex_state = 40, .external_lex_state = 2}, [1302] = {.lex_state = 408, .external_lex_state = 2}, [1303] = {.lex_state = 40, .external_lex_state = 2}, [1304] = {.lex_state = 408, .external_lex_state = 2}, - [1305] = {.lex_state = 408, .external_lex_state = 2}, - [1306] = {.lex_state = 408, .external_lex_state = 2}, - [1307] = {.lex_state = 407, .external_lex_state = 5}, - [1308] = {.lex_state = 408, .external_lex_state = 2}, - [1309] = {.lex_state = 408, .external_lex_state = 2}, - [1310] = {.lex_state = 408, .external_lex_state = 2}, + [1305] = {.lex_state = 40, .external_lex_state = 2}, + [1306] = {.lex_state = 40, .external_lex_state = 2}, + [1307] = {.lex_state = 408, .external_lex_state = 2}, + [1308] = {.lex_state = 40, .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}, - [1312] = {.lex_state = 408, .external_lex_state = 2}, - [1313] = {.lex_state = 408, .external_lex_state = 2}, - [1314] = {.lex_state = 408, .external_lex_state = 2}, - [1315] = {.lex_state = 408, .external_lex_state = 2}, + [1312] = {.lex_state = 40, .external_lex_state = 2}, + [1313] = {.lex_state = 40, .external_lex_state = 2}, + [1314] = {.lex_state = 40, .external_lex_state = 2}, + [1315] = {.lex_state = 40, .external_lex_state = 2}, [1316] = {.lex_state = 40, .external_lex_state = 2}, [1317] = {.lex_state = 40, .external_lex_state = 2}, - [1318] = {.lex_state = 408, .external_lex_state = 2}, - [1319] = {.lex_state = 408, .external_lex_state = 2}, - [1320] = {.lex_state = 408, .external_lex_state = 2}, - [1321] = {.lex_state = 408, .external_lex_state = 2}, + [1318] = {.lex_state = 40, .external_lex_state = 2}, + [1319] = {.lex_state = 40, .external_lex_state = 2}, + [1320] = {.lex_state = 407, .external_lex_state = 5}, + [1321] = {.lex_state = 40, .external_lex_state = 2}, [1322] = {.lex_state = 40, .external_lex_state = 2}, - [1323] = {.lex_state = 408, .external_lex_state = 2}, - [1324] = {.lex_state = 408, .external_lex_state = 2}, + [1323] = {.lex_state = 40, .external_lex_state = 2}, + [1324] = {.lex_state = 40, .external_lex_state = 2}, [1325] = {.lex_state = 408, .external_lex_state = 2}, [1326] = {.lex_state = 408, .external_lex_state = 2}, [1327] = {.lex_state = 408, .external_lex_state = 2}, - [1328] = {.lex_state = 408, .external_lex_state = 2}, - [1329] = {.lex_state = 408, .external_lex_state = 2}, + [1328] = {.lex_state = 40, .external_lex_state = 2}, + [1329] = {.lex_state = 409, .external_lex_state = 2}, [1330] = {.lex_state = 408, .external_lex_state = 2}, [1331] = {.lex_state = 40, .external_lex_state = 2}, [1332] = {.lex_state = 408, .external_lex_state = 2}, [1333] = {.lex_state = 408, .external_lex_state = 2}, - [1334] = {.lex_state = 408, .external_lex_state = 2}, - [1335] = {.lex_state = 408, .external_lex_state = 2}, - [1336] = {.lex_state = 408, .external_lex_state = 2}, - [1337] = {.lex_state = 40, .external_lex_state = 2}, + [1334] = {.lex_state = 40, .external_lex_state = 2}, + [1335] = {.lex_state = 407, .external_lex_state = 5}, + [1336] = {.lex_state = 40, .external_lex_state = 2}, + [1337] = {.lex_state = 409, .external_lex_state = 2}, [1338] = {.lex_state = 408, .external_lex_state = 2}, - [1339] = {.lex_state = 408, .external_lex_state = 2}, - [1340] = {.lex_state = 40, .external_lex_state = 2}, - [1341] = {.lex_state = 40, .external_lex_state = 2}, - [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}, - [1346] = {.lex_state = 40, .external_lex_state = 2}, - [1347] = {.lex_state = 408, .external_lex_state = 2}, + [1339] = {.lex_state = 40, .external_lex_state = 2}, + [1340] = {.lex_state = 407, .external_lex_state = 5}, + [1341] = {.lex_state = 407, .external_lex_state = 5}, + [1342] = {.lex_state = 407, .external_lex_state = 5}, + [1343] = {.lex_state = 407, .external_lex_state = 5}, + [1344] = {.lex_state = 407, .external_lex_state = 5}, + [1345] = {.lex_state = 408, .external_lex_state = 2}, + [1346] = {.lex_state = 408, .external_lex_state = 2}, + [1347] = {.lex_state = 407, .external_lex_state = 5}, [1348] = {.lex_state = 408, .external_lex_state = 2}, [1349] = {.lex_state = 408, .external_lex_state = 2}, [1350] = {.lex_state = 408, .external_lex_state = 2}, - [1351] = {.lex_state = 409, .external_lex_state = 2}, - [1352] = {.lex_state = 408, .external_lex_state = 2}, - [1353] = {.lex_state = 408, .external_lex_state = 2}, - [1354] = {.lex_state = 40, .external_lex_state = 2}, - [1355] = {.lex_state = 408, .external_lex_state = 2}, + [1351] = {.lex_state = 408, .external_lex_state = 2}, + [1352] = {.lex_state = 40, .external_lex_state = 2}, + [1353] = {.lex_state = 407, .external_lex_state = 5}, + [1354] = {.lex_state = 408, .external_lex_state = 2}, + [1355] = {.lex_state = 407, .external_lex_state = 5}, [1356] = {.lex_state = 40, .external_lex_state = 2}, - [1357] = {.lex_state = 40, .external_lex_state = 2}, - [1358] = {.lex_state = 40, .external_lex_state = 2}, - [1359] = {.lex_state = 409, .external_lex_state = 2}, - [1360] = {.lex_state = 40, .external_lex_state = 2}, - [1361] = {.lex_state = 40, .external_lex_state = 2}, - [1362] = {.lex_state = 40, .external_lex_state = 2}, - [1363] = {.lex_state = 407, .external_lex_state = 5}, + [1357] = {.lex_state = 408, .external_lex_state = 2}, + [1358] = {.lex_state = 408, .external_lex_state = 2}, + [1359] = {.lex_state = 40, .external_lex_state = 2}, + [1360] = {.lex_state = 408, .external_lex_state = 2}, + [1361] = {.lex_state = 408, .external_lex_state = 2}, + [1362] = {.lex_state = 408, .external_lex_state = 2}, + [1363] = {.lex_state = 40, .external_lex_state = 2}, [1364] = {.lex_state = 40, .external_lex_state = 2}, - [1365] = {.lex_state = 40, .external_lex_state = 2}, - [1366] = {.lex_state = 407, .external_lex_state = 5}, - [1367] = {.lex_state = 409, .external_lex_state = 2}, - [1368] = {.lex_state = 409, .external_lex_state = 2}, - [1369] = {.lex_state = 40, .external_lex_state = 2}, - [1370] = {.lex_state = 40, .external_lex_state = 2}, + [1365] = {.lex_state = 408, .external_lex_state = 2}, + [1366] = {.lex_state = 408, .external_lex_state = 2}, + [1367] = {.lex_state = 408, .external_lex_state = 2}, + [1368] = {.lex_state = 408, .external_lex_state = 2}, + [1369] = {.lex_state = 408, .external_lex_state = 2}, + [1370] = {.lex_state = 408, .external_lex_state = 2}, [1371] = {.lex_state = 408, .external_lex_state = 2}, - [1372] = {.lex_state = 40, .external_lex_state = 2}, - [1373] = {.lex_state = 40, .external_lex_state = 2}, - [1374] = {.lex_state = 40, .external_lex_state = 2}, - [1375] = {.lex_state = 408, .external_lex_state = 2}, + [1372] = {.lex_state = 408, .external_lex_state = 2}, + [1373] = {.lex_state = 408, .external_lex_state = 2}, + [1374] = {.lex_state = 409, .external_lex_state = 2}, + [1375] = {.lex_state = 40, .external_lex_state = 2}, [1376] = {.lex_state = 408, .external_lex_state = 2}, [1377] = {.lex_state = 408, .external_lex_state = 2}, [1378] = {.lex_state = 40, .external_lex_state = 2}, - [1379] = {.lex_state = 40, .external_lex_state = 2}, + [1379] = {.lex_state = 408, .external_lex_state = 2}, [1380] = {.lex_state = 408, .external_lex_state = 2}, [1381] = {.lex_state = 408, .external_lex_state = 2}, - [1382] = {.lex_state = 407, .external_lex_state = 2}, - [1383] = {.lex_state = 407, .external_lex_state = 5}, - [1384] = {.lex_state = 407, .external_lex_state = 5}, - [1385] = {.lex_state = 407, .external_lex_state = 5}, - [1386] = {.lex_state = 407, .external_lex_state = 5}, - [1387] = {.lex_state = 407, .external_lex_state = 5}, - [1388] = {.lex_state = 407, .external_lex_state = 5}, - [1389] = {.lex_state = 408, .external_lex_state = 2}, - [1390] = {.lex_state = 408, .external_lex_state = 2}, - [1391] = {.lex_state = 408, .external_lex_state = 2}, - [1392] = {.lex_state = 408, .external_lex_state = 2}, - [1393] = {.lex_state = 40, .external_lex_state = 2}, + [1382] = {.lex_state = 408, .external_lex_state = 2}, + [1383] = {.lex_state = 408, .external_lex_state = 2}, + [1384] = {.lex_state = 40, .external_lex_state = 2}, + [1385] = {.lex_state = 408, .external_lex_state = 2}, + [1386] = {.lex_state = 408, .external_lex_state = 2}, + [1387] = {.lex_state = 40, .external_lex_state = 2}, + [1388] = {.lex_state = 40, .external_lex_state = 2}, + [1389] = {.lex_state = 407, .external_lex_state = 5}, + [1390] = {.lex_state = 40, .external_lex_state = 2}, + [1391] = {.lex_state = 40, .external_lex_state = 2}, + [1392] = {.lex_state = 409, .external_lex_state = 2}, + [1393] = {.lex_state = 408, .external_lex_state = 2}, [1394] = {.lex_state = 40, .external_lex_state = 2}, - [1395] = {.lex_state = 407, .external_lex_state = 2}, - [1396] = {.lex_state = 407, .external_lex_state = 5}, - [1397] = {.lex_state = 40, .external_lex_state = 2}, + [1395] = {.lex_state = 40, .external_lex_state = 2}, + [1396] = {.lex_state = 408, .external_lex_state = 2}, + [1397] = {.lex_state = 408, .external_lex_state = 2}, [1398] = {.lex_state = 408, .external_lex_state = 2}, - [1399] = {.lex_state = 408, .external_lex_state = 2}, + [1399] = {.lex_state = 40, .external_lex_state = 2}, [1400] = {.lex_state = 40, .external_lex_state = 2}, [1401] = {.lex_state = 408, .external_lex_state = 2}, [1402] = {.lex_state = 408, .external_lex_state = 2}, - [1403] = {.lex_state = 408, .external_lex_state = 2}, + [1403] = {.lex_state = 40, .external_lex_state = 2}, [1404] = {.lex_state = 408, .external_lex_state = 2}, [1405] = {.lex_state = 408, .external_lex_state = 2}, - [1406] = {.lex_state = 408, .external_lex_state = 2}, + [1406] = {.lex_state = 40, .external_lex_state = 2}, [1407] = {.lex_state = 40, .external_lex_state = 2}, - [1408] = {.lex_state = 408, .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}, + [1410] = {.lex_state = 408, .external_lex_state = 2}, [1411] = {.lex_state = 40, .external_lex_state = 2}, - [1412] = {.lex_state = 408, .external_lex_state = 2}, - [1413] = {.lex_state = 40, .external_lex_state = 2}, - [1414] = {.lex_state = 408, .external_lex_state = 2}, + [1412] = {.lex_state = 40, .external_lex_state = 2}, + [1413] = {.lex_state = 408, .external_lex_state = 2}, + [1414] = {.lex_state = 40, .external_lex_state = 2}, [1415] = {.lex_state = 408, .external_lex_state = 2}, - [1416] = {.lex_state = 40, .external_lex_state = 2}, - [1417] = {.lex_state = 40, .external_lex_state = 2}, + [1416] = {.lex_state = 408, .external_lex_state = 2}, + [1417] = {.lex_state = 408, .external_lex_state = 2}, [1418] = {.lex_state = 40, .external_lex_state = 2}, [1419] = {.lex_state = 40, .external_lex_state = 2}, - [1420] = {.lex_state = 407, .external_lex_state = 5}, + [1420] = {.lex_state = 408, .external_lex_state = 2}, [1421] = {.lex_state = 408, .external_lex_state = 2}, - [1422] = {.lex_state = 40, .external_lex_state = 2}, - [1423] = {.lex_state = 408, .external_lex_state = 2}, + [1422] = {.lex_state = 408, .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 = 408, .external_lex_state = 2}, [1428] = {.lex_state = 40, .external_lex_state = 2}, [1429] = {.lex_state = 408, .external_lex_state = 2}, - [1430] = {.lex_state = 40, .external_lex_state = 2}, + [1430] = {.lex_state = 408, .external_lex_state = 2}, [1431] = {.lex_state = 40, .external_lex_state = 2}, - [1432] = {.lex_state = 408, .external_lex_state = 2}, + [1432] = {.lex_state = 40, .external_lex_state = 2}, [1433] = {.lex_state = 40, .external_lex_state = 2}, - [1434] = {.lex_state = 408, .external_lex_state = 2}, + [1434] = {.lex_state = 40, .external_lex_state = 2}, [1435] = {.lex_state = 408, .external_lex_state = 2}, - [1436] = {.lex_state = 408, .external_lex_state = 2}, + [1436] = {.lex_state = 40, .external_lex_state = 2}, [1437] = {.lex_state = 408, .external_lex_state = 2}, [1438] = {.lex_state = 408, .external_lex_state = 2}, - [1439] = {.lex_state = 408, .external_lex_state = 2}, - [1440] = {.lex_state = 40, .external_lex_state = 2}, + [1439] = {.lex_state = 40, .external_lex_state = 2}, + [1440] = {.lex_state = 408, .external_lex_state = 2}, [1441] = {.lex_state = 408, .external_lex_state = 2}, [1442] = {.lex_state = 408, .external_lex_state = 2}, - [1443] = {.lex_state = 40, .external_lex_state = 2}, - [1444] = {.lex_state = 40, .external_lex_state = 2}, + [1443] = {.lex_state = 408, .external_lex_state = 2}, + [1444] = {.lex_state = 408, .external_lex_state = 2}, [1445] = {.lex_state = 407, .external_lex_state = 2}, [1446] = {.lex_state = 407, .external_lex_state = 2}, [1447] = {.lex_state = 407, .external_lex_state = 2}, @@ -23708,36 +23772,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1571] = {.lex_state = 407, .external_lex_state = 2}, [1572] = {.lex_state = 407, .external_lex_state = 2}, [1573] = {.lex_state = 51, .external_lex_state = 2}, - [1574] = {.lex_state = 51, .external_lex_state = 2}, - [1575] = {.lex_state = 51, .external_lex_state = 2}, - [1576] = {.lex_state = 51, .external_lex_state = 2}, + [1574] = {.lex_state = 407, .external_lex_state = 2}, + [1575] = {.lex_state = 407, .external_lex_state = 2}, + [1576] = {.lex_state = 407, .external_lex_state = 2}, [1577] = {.lex_state = 51, .external_lex_state = 2}, - [1578] = {.lex_state = 51, .external_lex_state = 2}, + [1578] = {.lex_state = 407, .external_lex_state = 2}, [1579] = {.lex_state = 407, .external_lex_state = 2}, [1580] = {.lex_state = 407, .external_lex_state = 2}, [1581] = {.lex_state = 407, .external_lex_state = 2}, - [1582] = {.lex_state = 51, .external_lex_state = 2}, - [1583] = {.lex_state = 51, .external_lex_state = 2}, - [1584] = {.lex_state = 51, .external_lex_state = 2}, + [1582] = {.lex_state = 407, .external_lex_state = 2}, + [1583] = {.lex_state = 407, .external_lex_state = 2}, + [1584] = {.lex_state = 407, .external_lex_state = 2}, [1585] = {.lex_state = 51, .external_lex_state = 2}, - [1586] = {.lex_state = 51, .external_lex_state = 2}, - [1587] = {.lex_state = 407, .external_lex_state = 2}, - [1588] = {.lex_state = 51, .external_lex_state = 2}, + [1586] = {.lex_state = 407, .external_lex_state = 2}, + [1587] = {.lex_state = 51, .external_lex_state = 2}, + [1588] = {.lex_state = 407, .external_lex_state = 2}, [1589] = {.lex_state = 51, .external_lex_state = 2}, - [1590] = {.lex_state = 51, .external_lex_state = 2}, - [1591] = {.lex_state = 407, .external_lex_state = 2}, - [1592] = {.lex_state = 407, .external_lex_state = 2}, + [1590] = {.lex_state = 407, .external_lex_state = 2}, + [1591] = {.lex_state = 51, .external_lex_state = 2}, + [1592] = {.lex_state = 51, .external_lex_state = 2}, [1593] = {.lex_state = 51, .external_lex_state = 2}, - [1594] = {.lex_state = 407, .external_lex_state = 2}, - [1595] = {.lex_state = 407, .external_lex_state = 2}, - [1596] = {.lex_state = 407, .external_lex_state = 2}, - [1597] = {.lex_state = 407, .external_lex_state = 2}, - [1598] = {.lex_state = 407, .external_lex_state = 2}, - [1599] = {.lex_state = 407, .external_lex_state = 2}, - [1600] = {.lex_state = 407, .external_lex_state = 2}, - [1601] = {.lex_state = 51, .external_lex_state = 2}, + [1594] = {.lex_state = 51, .external_lex_state = 2}, + [1595] = {.lex_state = 51, .external_lex_state = 2}, + [1596] = {.lex_state = 51, .external_lex_state = 2}, + [1597] = {.lex_state = 51, .external_lex_state = 2}, + [1598] = {.lex_state = 51, .external_lex_state = 2}, + [1599] = {.lex_state = 51, .external_lex_state = 2}, + [1600] = {.lex_state = 51, .external_lex_state = 2}, + [1601] = {.lex_state = 52, .external_lex_state = 2}, [1602] = {.lex_state = 52, .external_lex_state = 2}, - [1603] = {.lex_state = 52, .external_lex_state = 2}, + [1603] = {.lex_state = 51, .external_lex_state = 2}, [1604] = {.lex_state = 52, .external_lex_state = 2}, [1605] = {.lex_state = 52, .external_lex_state = 2}, [1606] = {.lex_state = 52, .external_lex_state = 2}, @@ -23814,18 +23878,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1677] = {.lex_state = 38, .external_lex_state = 2}, [1678] = {.lex_state = 38, .external_lex_state = 2}, [1679] = {.lex_state = 18, .external_lex_state = 4}, - [1680] = {.lex_state = 51, .external_lex_state = 2}, + [1680] = {.lex_state = 53, .external_lex_state = 2}, [1681] = {.lex_state = 18, .external_lex_state = 4}, [1682] = {.lex_state = 51, .external_lex_state = 2}, - [1683] = {.lex_state = 18, .external_lex_state = 4}, - [1684] = {.lex_state = 18, .external_lex_state = 4}, + [1683] = {.lex_state = 51, .external_lex_state = 2}, + [1684] = {.lex_state = 51, .external_lex_state = 2}, [1685] = {.lex_state = 18, .external_lex_state = 4}, [1686] = {.lex_state = 18, .external_lex_state = 4}, [1687] = {.lex_state = 51, .external_lex_state = 2}, - [1688] = {.lex_state = 51, .external_lex_state = 2}, + [1688] = {.lex_state = 18, .external_lex_state = 4}, [1689] = {.lex_state = 18, .external_lex_state = 4}, - [1690] = {.lex_state = 51, .external_lex_state = 2}, - [1691] = {.lex_state = 53, .external_lex_state = 2}, + [1690] = {.lex_state = 18, .external_lex_state = 4}, + [1691] = {.lex_state = 51, .external_lex_state = 2}, [1692] = {.lex_state = 18, .external_lex_state = 4}, [1693] = {.lex_state = 18, .external_lex_state = 4}, [1694] = {.lex_state = 51, .external_lex_state = 2}, @@ -23955,24 +24019,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1818] = {.lex_state = 18, .external_lex_state = 3}, [1819] = {.lex_state = 18, .external_lex_state = 3}, [1820] = {.lex_state = 38, .external_lex_state = 2}, - [1821] = {.lex_state = 38, .external_lex_state = 2}, + [1821] = {.lex_state = 18, .external_lex_state = 3}, [1822] = {.lex_state = 18, .external_lex_state = 3}, - [1823] = {.lex_state = 18, .external_lex_state = 3}, + [1823] = {.lex_state = 38, .external_lex_state = 2}, [1824] = {.lex_state = 18, .external_lex_state = 4}, - [1825] = {.lex_state = 21, .external_lex_state = 4}, - [1826] = {.lex_state = 21, .external_lex_state = 4}, + [1825] = {.lex_state = 18, .external_lex_state = 4}, + [1826] = {.lex_state = 18, .external_lex_state = 4}, [1827] = {.lex_state = 18, .external_lex_state = 4}, [1828] = {.lex_state = 18, .external_lex_state = 4}, [1829] = {.lex_state = 18, .external_lex_state = 4}, [1830] = {.lex_state = 18, .external_lex_state = 4}, - [1831] = {.lex_state = 21, .external_lex_state = 4}, - [1832] = {.lex_state = 18, .external_lex_state = 4}, + [1831] = {.lex_state = 18, .external_lex_state = 4}, + [1832] = {.lex_state = 21, .external_lex_state = 4}, [1833] = {.lex_state = 18, .external_lex_state = 4}, - [1834] = {.lex_state = 18, .external_lex_state = 4}, + [1834] = {.lex_state = 21, .external_lex_state = 4}, [1835] = {.lex_state = 21, .external_lex_state = 4}, - [1836] = {.lex_state = 18, .external_lex_state = 4}, - [1837] = {.lex_state = 18, .external_lex_state = 4}, - [1838] = {.lex_state = 18, .external_lex_state = 3}, + [1836] = {.lex_state = 21, .external_lex_state = 4}, + [1837] = {.lex_state = 18, .external_lex_state = 3}, + [1838] = {.lex_state = 18, .external_lex_state = 4}, [1839] = {.lex_state = 18, .external_lex_state = 4}, [1840] = {.lex_state = 18, .external_lex_state = 4}, [1841] = {.lex_state = 18, .external_lex_state = 4}, @@ -23980,176 +24044,176 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1843] = {.lex_state = 18, .external_lex_state = 4}, [1844] = {.lex_state = 18, .external_lex_state = 4}, [1845] = {.lex_state = 18, .external_lex_state = 4}, - [1846] = {.lex_state = 18, .external_lex_state = 4}, - [1847] = {.lex_state = 18, .external_lex_state = 3}, + [1846] = {.lex_state = 22, .external_lex_state = 3}, + [1847] = {.lex_state = 18, .external_lex_state = 4}, [1848] = {.lex_state = 22, .external_lex_state = 3}, - [1849] = {.lex_state = 18, .external_lex_state = 4}, + [1849] = {.lex_state = 18, .external_lex_state = 3}, [1850] = {.lex_state = 18, .external_lex_state = 4}, - [1851] = {.lex_state = 22, .external_lex_state = 3}, - [1852] = {.lex_state = 24, .external_lex_state = 3}, + [1851] = {.lex_state = 18, .external_lex_state = 4}, + [1852] = {.lex_state = 18, .external_lex_state = 4}, [1853] = {.lex_state = 18, .external_lex_state = 4}, [1854] = {.lex_state = 18, .external_lex_state = 4}, [1855] = {.lex_state = 18, .external_lex_state = 4}, - [1856] = {.lex_state = 18, .external_lex_state = 4}, - [1857] = {.lex_state = 24, .external_lex_state = 3}, - [1858] = {.lex_state = 18, .external_lex_state = 4}, - [1859] = {.lex_state = 24, .external_lex_state = 4}, - [1860] = {.lex_state = 24, .external_lex_state = 3}, - [1861] = {.lex_state = 24, .external_lex_state = 4}, - [1862] = {.lex_state = 24, .external_lex_state = 3}, - [1863] = {.lex_state = 18, .external_lex_state = 3}, - [1864] = {.lex_state = 24, .external_lex_state = 3}, + [1856] = {.lex_state = 24, .external_lex_state = 4}, + [1857] = {.lex_state = 18, .external_lex_state = 4}, + [1858] = {.lex_state = 18, .external_lex_state = 3}, + [1859] = {.lex_state = 18, .external_lex_state = 4}, + [1860] = {.lex_state = 37, .external_lex_state = 2}, + [1861] = {.lex_state = 18, .external_lex_state = 4}, + [1862] = {.lex_state = 24, .external_lex_state = 4}, + [1863] = {.lex_state = 18, .external_lex_state = 4}, + [1864] = {.lex_state = 18, .external_lex_state = 4}, [1865] = {.lex_state = 24, .external_lex_state = 3}, - [1866] = {.lex_state = 24, .external_lex_state = 3}, + [1866] = {.lex_state = 18, .external_lex_state = 4}, [1867] = {.lex_state = 18, .external_lex_state = 4}, - [1868] = {.lex_state = 18, .external_lex_state = 3}, - [1869] = {.lex_state = 18, .external_lex_state = 3}, - [1870] = {.lex_state = 18, .external_lex_state = 4}, - [1871] = {.lex_state = 24, .external_lex_state = 3}, + [1868] = {.lex_state = 24, .external_lex_state = 4}, + [1869] = {.lex_state = 24, .external_lex_state = 4}, + [1870] = {.lex_state = 18, .external_lex_state = 3}, + [1871] = {.lex_state = 24, .external_lex_state = 4}, [1872] = {.lex_state = 18, .external_lex_state = 4}, - [1873] = {.lex_state = 18, .external_lex_state = 4}, - [1874] = {.lex_state = 24, .external_lex_state = 4}, + [1873] = {.lex_state = 18, .external_lex_state = 3}, + [1874] = {.lex_state = 18, .external_lex_state = 4}, [1875] = {.lex_state = 18, .external_lex_state = 4}, - [1876] = {.lex_state = 24, .external_lex_state = 4}, - [1877] = {.lex_state = 18, .external_lex_state = 4}, - [1878] = {.lex_state = 18, .external_lex_state = 4}, + [1876] = {.lex_state = 18, .external_lex_state = 4}, + [1877] = {.lex_state = 18, .external_lex_state = 3}, + [1878] = {.lex_state = 24, .external_lex_state = 3}, [1879] = {.lex_state = 18, .external_lex_state = 4}, - [1880] = {.lex_state = 24, .external_lex_state = 4}, + [1880] = {.lex_state = 18, .external_lex_state = 4}, [1881] = {.lex_state = 18, .external_lex_state = 4}, - [1882] = {.lex_state = 18, .external_lex_state = 4}, - [1883] = {.lex_state = 18, .external_lex_state = 3}, - [1884] = {.lex_state = 18, .external_lex_state = 3}, - [1885] = {.lex_state = 18, .external_lex_state = 4}, - [1886] = {.lex_state = 18, .external_lex_state = 4}, - [1887] = {.lex_state = 24, .external_lex_state = 4}, + [1882] = {.lex_state = 24, .external_lex_state = 3}, + [1883] = {.lex_state = 24, .external_lex_state = 3}, + [1884] = {.lex_state = 24, .external_lex_state = 3}, + [1885] = {.lex_state = 24, .external_lex_state = 3}, + [1886] = {.lex_state = 24, .external_lex_state = 3}, + [1887] = {.lex_state = 18, .external_lex_state = 3}, [1888] = {.lex_state = 24, .external_lex_state = 4}, - [1889] = {.lex_state = 18, .external_lex_state = 4}, - [1890] = {.lex_state = 21, .external_lex_state = 3}, - [1891] = {.lex_state = 18, .external_lex_state = 3}, + [1889] = {.lex_state = 24, .external_lex_state = 4}, + [1890] = {.lex_state = 24, .external_lex_state = 3}, + [1891] = {.lex_state = 24, .external_lex_state = 3}, [1892] = {.lex_state = 24, .external_lex_state = 4}, - [1893] = {.lex_state = 24, .external_lex_state = 4}, - [1894] = {.lex_state = 18, .external_lex_state = 3}, - [1895] = {.lex_state = 37, .external_lex_state = 2}, - [1896] = {.lex_state = 24, .external_lex_state = 4}, - [1897] = {.lex_state = 24, .external_lex_state = 3}, - [1898] = {.lex_state = 24, .external_lex_state = 3}, + [1893] = {.lex_state = 24, .external_lex_state = 3}, + [1894] = {.lex_state = 37, .external_lex_state = 2}, + [1895] = {.lex_state = 24, .external_lex_state = 3}, + [1896] = {.lex_state = 18, .external_lex_state = 3}, + [1897] = {.lex_state = 18, .external_lex_state = 3}, + [1898] = {.lex_state = 18, .external_lex_state = 3}, [1899] = {.lex_state = 24, .external_lex_state = 3}, - [1900] = {.lex_state = 21, .external_lex_state = 3}, - [1901] = {.lex_state = 24, .external_lex_state = 3}, - [1902] = {.lex_state = 18, .external_lex_state = 3}, + [1900] = {.lex_state = 24, .external_lex_state = 3}, + [1901] = {.lex_state = 21, .external_lex_state = 3}, + [1902] = {.lex_state = 24, .external_lex_state = 4}, [1903] = {.lex_state = 24, .external_lex_state = 3}, - [1904] = {.lex_state = 24, .external_lex_state = 3}, + [1904] = {.lex_state = 21, .external_lex_state = 3}, [1905] = {.lex_state = 21, .external_lex_state = 3}, - [1906] = {.lex_state = 24, .external_lex_state = 3}, - [1907] = {.lex_state = 24, .external_lex_state = 3}, + [1906] = {.lex_state = 37, .external_lex_state = 2}, + [1907] = {.lex_state = 24, .external_lex_state = 4}, [1908] = {.lex_state = 24, .external_lex_state = 3}, - [1909] = {.lex_state = 24, .external_lex_state = 3}, - [1910] = {.lex_state = 24, .external_lex_state = 4}, + [1909] = {.lex_state = 18, .external_lex_state = 3}, + [1910] = {.lex_state = 18, .external_lex_state = 3}, [1911] = {.lex_state = 24, .external_lex_state = 3}, - [1912] = {.lex_state = 37, .external_lex_state = 2}, + [1912] = {.lex_state = 18, .external_lex_state = 3}, [1913] = {.lex_state = 18, .external_lex_state = 3}, - [1914] = {.lex_state = 24, .external_lex_state = 3}, + [1914] = {.lex_state = 18, .external_lex_state = 3}, [1915] = {.lex_state = 18, .external_lex_state = 3}, [1916] = {.lex_state = 24, .external_lex_state = 3}, - [1917] = {.lex_state = 24, .external_lex_state = 4}, + [1917] = {.lex_state = 24, .external_lex_state = 3}, [1918] = {.lex_state = 24, .external_lex_state = 3}, - [1919] = {.lex_state = 21, .external_lex_state = 3}, - [1920] = {.lex_state = 18, .external_lex_state = 3}, - [1921] = {.lex_state = 18, .external_lex_state = 3}, - [1922] = {.lex_state = 24, .external_lex_state = 3}, - [1923] = {.lex_state = 24, .external_lex_state = 4}, - [1924] = {.lex_state = 24, .external_lex_state = 3}, - [1925] = {.lex_state = 18, .external_lex_state = 3}, - [1926] = {.lex_state = 18, .external_lex_state = 3}, - [1927] = {.lex_state = 24, .external_lex_state = 3}, - [1928] = {.lex_state = 18, .external_lex_state = 3}, - [1929] = {.lex_state = 37, .external_lex_state = 2}, - [1930] = {.lex_state = 24, .external_lex_state = 3}, - [1931] = {.lex_state = 24, .external_lex_state = 3}, + [1919] = {.lex_state = 18, .external_lex_state = 3}, + [1920] = {.lex_state = 24, .external_lex_state = 3}, + [1921] = {.lex_state = 24, .external_lex_state = 4}, + [1922] = {.lex_state = 37, .external_lex_state = 2}, + [1923] = {.lex_state = 24, .external_lex_state = 3}, + [1924] = {.lex_state = 18, .external_lex_state = 3}, + [1925] = {.lex_state = 24, .external_lex_state = 4}, + [1926] = {.lex_state = 24, .external_lex_state = 3}, + [1927] = {.lex_state = 24, .external_lex_state = 4}, + [1928] = {.lex_state = 24, .external_lex_state = 3}, + [1929] = {.lex_state = 18, .external_lex_state = 3}, + [1930] = {.lex_state = 37, .external_lex_state = 2}, + [1931] = {.lex_state = 21, .external_lex_state = 3}, [1932] = {.lex_state = 18, .external_lex_state = 3}, - [1933] = {.lex_state = 24, .external_lex_state = 4}, - [1934] = {.lex_state = 18, .external_lex_state = 3}, - [1935] = {.lex_state = 18, .external_lex_state = 3}, - [1936] = {.lex_state = 24, .external_lex_state = 3}, - [1937] = {.lex_state = 37, .external_lex_state = 2}, + [1933] = {.lex_state = 37, .external_lex_state = 2}, + [1934] = {.lex_state = 24, .external_lex_state = 3}, + [1935] = {.lex_state = 24, .external_lex_state = 3}, + [1936] = {.lex_state = 24, .external_lex_state = 4}, + [1937] = {.lex_state = 24, .external_lex_state = 3}, [1938] = {.lex_state = 24, .external_lex_state = 3}, - [1939] = {.lex_state = 24, .external_lex_state = 4}, - [1940] = {.lex_state = 24, .external_lex_state = 3}, - [1941] = {.lex_state = 37, .external_lex_state = 2}, - [1942] = {.lex_state = 24, .external_lex_state = 3}, + [1939] = {.lex_state = 24, .external_lex_state = 3}, + [1940] = {.lex_state = 37, .external_lex_state = 2}, + [1941] = {.lex_state = 18, .external_lex_state = 4}, + [1942] = {.lex_state = 37, .external_lex_state = 2}, [1943] = {.lex_state = 24, .external_lex_state = 3}, - [1944] = {.lex_state = 18, .external_lex_state = 4}, - [1945] = {.lex_state = 24, .external_lex_state = 4}, + [1944] = {.lex_state = 24, .external_lex_state = 3}, + [1945] = {.lex_state = 37, .external_lex_state = 2}, [1946] = {.lex_state = 18, .external_lex_state = 4}, - [1947] = {.lex_state = 24, .external_lex_state = 4}, + [1947] = {.lex_state = 24, .external_lex_state = 3}, [1948] = {.lex_state = 24, .external_lex_state = 3}, - [1949] = {.lex_state = 24, .external_lex_state = 3}, - [1950] = {.lex_state = 24, .external_lex_state = 3}, - [1951] = {.lex_state = 24, .external_lex_state = 3}, + [1949] = {.lex_state = 18, .external_lex_state = 4}, + [1950] = {.lex_state = 18, .external_lex_state = 4}, + [1951] = {.lex_state = 37, .external_lex_state = 2}, [1952] = {.lex_state = 24, .external_lex_state = 3}, - [1953] = {.lex_state = 18, .external_lex_state = 4}, - [1954] = {.lex_state = 24, .external_lex_state = 3}, - [1955] = {.lex_state = 24, .external_lex_state = 3}, - [1956] = {.lex_state = 24, .external_lex_state = 3}, + [1953] = {.lex_state = 24, .external_lex_state = 3}, + [1954] = {.lex_state = 24, .external_lex_state = 4}, + [1955] = {.lex_state = 18, .external_lex_state = 4}, + [1956] = {.lex_state = 37, .external_lex_state = 2}, [1957] = {.lex_state = 24, .external_lex_state = 3}, [1958] = {.lex_state = 24, .external_lex_state = 3}, - [1959] = {.lex_state = 24, .external_lex_state = 3}, + [1959] = {.lex_state = 24, .external_lex_state = 4}, [1960] = {.lex_state = 37, .external_lex_state = 2}, - [1961] = {.lex_state = 24, .external_lex_state = 3}, - [1962] = {.lex_state = 18, .external_lex_state = 4}, - [1963] = {.lex_state = 18, .external_lex_state = 4}, - [1964] = {.lex_state = 24, .external_lex_state = 4}, + [1961] = {.lex_state = 24, .external_lex_state = 4}, + [1962] = {.lex_state = 37, .external_lex_state = 2}, + [1963] = {.lex_state = 37, .external_lex_state = 2}, + [1964] = {.lex_state = 24, .external_lex_state = 3}, [1965] = {.lex_state = 24, .external_lex_state = 3}, - [1966] = {.lex_state = 24, .external_lex_state = 4}, - [1967] = {.lex_state = 24, .external_lex_state = 3}, + [1966] = {.lex_state = 37, .external_lex_state = 2}, + [1967] = {.lex_state = 37, .external_lex_state = 2}, [1968] = {.lex_state = 37, .external_lex_state = 2}, - [1969] = {.lex_state = 37, .external_lex_state = 2}, - [1970] = {.lex_state = 24, .external_lex_state = 4}, - [1971] = {.lex_state = 37, .external_lex_state = 2}, - [1972] = {.lex_state = 24, .external_lex_state = 4}, - [1973] = {.lex_state = 24, .external_lex_state = 4}, - [1974] = {.lex_state = 24, .external_lex_state = 4}, - [1975] = {.lex_state = 24, .external_lex_state = 4}, + [1969] = {.lex_state = 24, .external_lex_state = 3}, + [1970] = {.lex_state = 24, .external_lex_state = 3}, + [1971] = {.lex_state = 24, .external_lex_state = 3}, + [1972] = {.lex_state = 24, .external_lex_state = 3}, + [1973] = {.lex_state = 24, .external_lex_state = 3}, + [1974] = {.lex_state = 24, .external_lex_state = 3}, + [1975] = {.lex_state = 24, .external_lex_state = 3}, [1976] = {.lex_state = 24, .external_lex_state = 4}, [1977] = {.lex_state = 24, .external_lex_state = 4}, [1978] = {.lex_state = 24, .external_lex_state = 3}, [1979] = {.lex_state = 24, .external_lex_state = 4}, - [1980] = {.lex_state = 24, .external_lex_state = 3}, - [1981] = {.lex_state = 37, .external_lex_state = 2}, - [1982] = {.lex_state = 37, .external_lex_state = 2}, - [1983] = {.lex_state = 24, .external_lex_state = 3}, - [1984] = {.lex_state = 24, .external_lex_state = 3}, + [1980] = {.lex_state = 24, .external_lex_state = 4}, + [1981] = {.lex_state = 24, .external_lex_state = 3}, + [1982] = {.lex_state = 24, .external_lex_state = 4}, + [1983] = {.lex_state = 24, .external_lex_state = 4}, + [1984] = {.lex_state = 24, .external_lex_state = 4}, [1985] = {.lex_state = 24, .external_lex_state = 4}, - [1986] = {.lex_state = 24, .external_lex_state = 3}, + [1986] = {.lex_state = 24, .external_lex_state = 4}, [1987] = {.lex_state = 24, .external_lex_state = 4}, - [1988] = {.lex_state = 24, .external_lex_state = 4}, + [1988] = {.lex_state = 24, .external_lex_state = 3}, [1989] = {.lex_state = 24, .external_lex_state = 4}, [1990] = {.lex_state = 24, .external_lex_state = 4}, [1991] = {.lex_state = 24, .external_lex_state = 4}, - [1992] = {.lex_state = 24, .external_lex_state = 4}, + [1992] = {.lex_state = 24, .external_lex_state = 3}, [1993] = {.lex_state = 24, .external_lex_state = 4}, [1994] = {.lex_state = 24, .external_lex_state = 4}, - [1995] = {.lex_state = 24, .external_lex_state = 3}, + [1995] = {.lex_state = 24, .external_lex_state = 4}, [1996] = {.lex_state = 24, .external_lex_state = 4}, [1997] = {.lex_state = 24, .external_lex_state = 4}, - [1998] = {.lex_state = 37, .external_lex_state = 2}, - [1999] = {.lex_state = 24, .external_lex_state = 3}, + [1998] = {.lex_state = 24, .external_lex_state = 4}, + [1999] = {.lex_state = 24, .external_lex_state = 4}, [2000] = {.lex_state = 24, .external_lex_state = 3}, - [2001] = {.lex_state = 37, .external_lex_state = 2}, - [2002] = {.lex_state = 37, .external_lex_state = 2}, + [2001] = {.lex_state = 24, .external_lex_state = 3}, + [2002] = {.lex_state = 24, .external_lex_state = 4}, [2003] = {.lex_state = 24, .external_lex_state = 3}, - [2004] = {.lex_state = 37, .external_lex_state = 2}, - [2005] = {.lex_state = 24, .external_lex_state = 4}, - [2006] = {.lex_state = 24, .external_lex_state = 3}, + [2004] = {.lex_state = 24, .external_lex_state = 4}, + [2005] = {.lex_state = 24, .external_lex_state = 3}, + [2006] = {.lex_state = 24, .external_lex_state = 4}, [2007] = {.lex_state = 24, .external_lex_state = 4}, - [2008] = {.lex_state = 37, .external_lex_state = 2}, - [2009] = {.lex_state = 37, .external_lex_state = 2}, + [2008] = {.lex_state = 24, .external_lex_state = 3}, + [2009] = {.lex_state = 24, .external_lex_state = 3}, [2010] = {.lex_state = 24, .external_lex_state = 4}, [2011] = {.lex_state = 24, .external_lex_state = 4}, - [2012] = {.lex_state = 24, .external_lex_state = 4}, + [2012] = {.lex_state = 24, .external_lex_state = 3}, [2013] = {.lex_state = 24, .external_lex_state = 4}, [2014] = {.lex_state = 24, .external_lex_state = 4}, - [2015] = {.lex_state = 24, .external_lex_state = 3}, + [2015] = {.lex_state = 24, .external_lex_state = 4}, [2016] = {.lex_state = 24, .external_lex_state = 4}, [2017] = {.lex_state = 24, .external_lex_state = 4}, [2018] = {.lex_state = 24, .external_lex_state = 4}, @@ -24157,65 +24221,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2020] = {.lex_state = 24, .external_lex_state = 4}, [2021] = {.lex_state = 24, .external_lex_state = 4}, [2022] = {.lex_state = 24, .external_lex_state = 4}, - [2023] = {.lex_state = 24, .external_lex_state = 4}, + [2023] = {.lex_state = 24, .external_lex_state = 3}, [2024] = {.lex_state = 18, .external_lex_state = 4}, - [2025] = {.lex_state = 18, .external_lex_state = 4}, - [2026] = {.lex_state = 18, .external_lex_state = 4}, - [2027] = {.lex_state = 24, .external_lex_state = 3}, - [2028] = {.lex_state = 24, .external_lex_state = 4}, - [2029] = {.lex_state = 24, .external_lex_state = 3}, + [2025] = {.lex_state = 24, .external_lex_state = 3}, + [2026] = {.lex_state = 24, .external_lex_state = 3}, + [2027] = {.lex_state = 18, .external_lex_state = 4}, + [2028] = {.lex_state = 18, .external_lex_state = 4}, + [2029] = {.lex_state = 18, .external_lex_state = 4}, [2030] = {.lex_state = 24, .external_lex_state = 3}, [2031] = {.lex_state = 24, .external_lex_state = 3}, - [2032] = {.lex_state = 18, .external_lex_state = 4}, - [2033] = {.lex_state = 18, .external_lex_state = 4}, - [2034] = {.lex_state = 24, .external_lex_state = 3}, - [2035] = {.lex_state = 18, .external_lex_state = 4}, + [2032] = {.lex_state = 24, .external_lex_state = 3}, + [2033] = {.lex_state = 24, .external_lex_state = 4}, + [2034] = {.lex_state = 24, .external_lex_state = 4}, + [2035] = {.lex_state = 24, .external_lex_state = 3}, [2036] = {.lex_state = 24, .external_lex_state = 3}, [2037] = {.lex_state = 24, .external_lex_state = 3}, [2038] = {.lex_state = 24, .external_lex_state = 3}, [2039] = {.lex_state = 24, .external_lex_state = 3}, - [2040] = {.lex_state = 24, .external_lex_state = 4}, - [2041] = {.lex_state = 24, .external_lex_state = 3}, - [2042] = {.lex_state = 24, .external_lex_state = 4}, - [2043] = {.lex_state = 24, .external_lex_state = 3}, - [2044] = {.lex_state = 24, .external_lex_state = 3}, + [2040] = {.lex_state = 24, .external_lex_state = 3}, + [2041] = {.lex_state = 24, .external_lex_state = 4}, + [2042] = {.lex_state = 24, .external_lex_state = 3}, + [2043] = {.lex_state = 18, .external_lex_state = 4}, + [2044] = {.lex_state = 18, .external_lex_state = 4}, [2045] = {.lex_state = 38, .external_lex_state = 2}, [2046] = {.lex_state = 24, .external_lex_state = 4}, - [2047] = {.lex_state = 38, .external_lex_state = 2}, - [2048] = {.lex_state = 24, .external_lex_state = 4}, - [2049] = {.lex_state = 24, .external_lex_state = 3}, + [2047] = {.lex_state = 24, .external_lex_state = 3}, + [2048] = {.lex_state = 38, .external_lex_state = 2}, + [2049] = {.lex_state = 38, .external_lex_state = 2}, [2050] = {.lex_state = 38, .external_lex_state = 2}, - [2051] = {.lex_state = 24, .external_lex_state = 3}, - [2052] = {.lex_state = 38, .external_lex_state = 2}, + [2051] = {.lex_state = 38, .external_lex_state = 2}, + [2052] = {.lex_state = 24, .external_lex_state = 3}, [2053] = {.lex_state = 38, .external_lex_state = 2}, [2054] = {.lex_state = 24, .external_lex_state = 3}, [2055] = {.lex_state = 24, .external_lex_state = 3}, [2056] = {.lex_state = 24, .external_lex_state = 3}, - [2057] = {.lex_state = 24, .external_lex_state = 3}, + [2057] = {.lex_state = 24, .external_lex_state = 4}, [2058] = {.lex_state = 24, .external_lex_state = 3}, - [2059] = {.lex_state = 24, .external_lex_state = 4}, - [2060] = {.lex_state = 24, .external_lex_state = 3}, - [2061] = {.lex_state = 38, .external_lex_state = 2}, - [2062] = {.lex_state = 24, .external_lex_state = 3}, - [2063] = {.lex_state = 24, .external_lex_state = 4}, - [2064] = {.lex_state = 38, .external_lex_state = 2}, + [2059] = {.lex_state = 24, .external_lex_state = 3}, + [2060] = {.lex_state = 24, .external_lex_state = 4}, + [2061] = {.lex_state = 24, .external_lex_state = 3}, + [2062] = {.lex_state = 24, .external_lex_state = 4}, + [2063] = {.lex_state = 24, .external_lex_state = 3}, + [2064] = {.lex_state = 24, .external_lex_state = 4}, [2065] = {.lex_state = 24, .external_lex_state = 3}, [2066] = {.lex_state = 24, .external_lex_state = 3}, - [2067] = {.lex_state = 24, .external_lex_state = 4}, - [2068] = {.lex_state = 24, .external_lex_state = 3}, - [2069] = {.lex_state = 38, .external_lex_state = 2}, - [2070] = {.lex_state = 24, .external_lex_state = 4}, + [2067] = {.lex_state = 24, .external_lex_state = 3}, + [2068] = {.lex_state = 38, .external_lex_state = 2}, + [2069] = {.lex_state = 24, .external_lex_state = 4}, + [2070] = {.lex_state = 38, .external_lex_state = 2}, [2071] = {.lex_state = 38, .external_lex_state = 2}, [2072] = {.lex_state = 24, .external_lex_state = 3}, [2073] = {.lex_state = 24, .external_lex_state = 3}, [2074] = {.lex_state = 24, .external_lex_state = 3}, - [2075] = {.lex_state = 24, .external_lex_state = 4}, + [2075] = {.lex_state = 24, .external_lex_state = 3}, [2076] = {.lex_state = 24, .external_lex_state = 3}, [2077] = {.lex_state = 24, .external_lex_state = 3}, [2078] = {.lex_state = 24, .external_lex_state = 3}, [2079] = {.lex_state = 24, .external_lex_state = 3}, [2080] = {.lex_state = 24, .external_lex_state = 3}, - [2081] = {.lex_state = 24, .external_lex_state = 3}, + [2081] = {.lex_state = 24, .external_lex_state = 4}, [2082] = {.lex_state = 24, .external_lex_state = 3}, [2083] = {.lex_state = 24, .external_lex_state = 3}, [2084] = {.lex_state = 24, .external_lex_state = 3}, @@ -24224,43 +24288,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2087] = {.lex_state = 38, .external_lex_state = 2}, [2088] = {.lex_state = 38, .external_lex_state = 2}, [2089] = {.lex_state = 38, .external_lex_state = 2}, - [2090] = {.lex_state = 24, .external_lex_state = 3}, + [2090] = {.lex_state = 38, .external_lex_state = 2}, [2091] = {.lex_state = 24, .external_lex_state = 3}, [2092] = {.lex_state = 38, .external_lex_state = 2}, [2093] = {.lex_state = 24, .external_lex_state = 3}, [2094] = {.lex_state = 38, .external_lex_state = 2}, [2095] = {.lex_state = 38, .external_lex_state = 2}, - [2096] = {.lex_state = 38, .external_lex_state = 2}, - [2097] = {.lex_state = 24, .external_lex_state = 3}, - [2098] = {.lex_state = 38, .external_lex_state = 2}, + [2096] = {.lex_state = 24, .external_lex_state = 3}, + [2097] = {.lex_state = 38, .external_lex_state = 2}, + [2098] = {.lex_state = 24, .external_lex_state = 3}, [2099] = {.lex_state = 38, .external_lex_state = 2}, - [2100] = {.lex_state = 38, .external_lex_state = 2}, - [2101] = {.lex_state = 24, .external_lex_state = 3}, + [2100] = {.lex_state = 24, .external_lex_state = 3}, + [2101] = {.lex_state = 38, .external_lex_state = 2}, [2102] = {.lex_state = 38, .external_lex_state = 2}, [2103] = {.lex_state = 24, .external_lex_state = 3}, - [2104] = {.lex_state = 24, .external_lex_state = 3}, + [2104] = {.lex_state = 38, .external_lex_state = 2}, [2105] = {.lex_state = 38, .external_lex_state = 2}, - [2106] = {.lex_state = 38, .external_lex_state = 2}, + [2106] = {.lex_state = 24, .external_lex_state = 3}, [2107] = {.lex_state = 38, .external_lex_state = 2}, - [2108] = {.lex_state = 38, .external_lex_state = 2}, + [2108] = {.lex_state = 24, .external_lex_state = 3}, [2109] = {.lex_state = 24, .external_lex_state = 3}, - [2110] = {.lex_state = 24, .external_lex_state = 3}, - [2111] = {.lex_state = 38, .external_lex_state = 2}, + [2110] = {.lex_state = 38, .external_lex_state = 2}, + [2111] = {.lex_state = 24, .external_lex_state = 3}, [2112] = {.lex_state = 38, .external_lex_state = 2}, [2113] = {.lex_state = 24, .external_lex_state = 3}, [2114] = {.lex_state = 24, .external_lex_state = 3}, - [2115] = {.lex_state = 38, .external_lex_state = 2}, - [2116] = {.lex_state = 38, .external_lex_state = 2}, - [2117] = {.lex_state = 24, .external_lex_state = 3}, - [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 = 24, .external_lex_state = 3}, + [2115] = {.lex_state = 24, .external_lex_state = 3}, + [2116] = {.lex_state = 24, .external_lex_state = 3}, + [2117] = {.lex_state = 38, .external_lex_state = 2}, + [2118] = {.lex_state = 24, .external_lex_state = 3}, + [2119] = {.lex_state = 24, .external_lex_state = 3}, + [2120] = {.lex_state = 24, .external_lex_state = 3}, + [2121] = {.lex_state = 38, .external_lex_state = 2}, [2122] = {.lex_state = 38, .external_lex_state = 2}, [2123] = {.lex_state = 24, .external_lex_state = 3}, - [2124] = {.lex_state = 24, .external_lex_state = 3}, - [2125] = {.lex_state = 24, .external_lex_state = 3}, - [2126] = {.lex_state = 24, .external_lex_state = 3}, + [2124] = {.lex_state = 38, .external_lex_state = 2}, + [2125] = {.lex_state = 38, .external_lex_state = 2}, + [2126] = {.lex_state = 38, .external_lex_state = 2}, [2127] = {.lex_state = 38, .external_lex_state = 2}, [2128] = {.lex_state = 24, .external_lex_state = 3}, [2129] = {.lex_state = 24, .external_lex_state = 3}, @@ -24270,7 +24334,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2133] = {.lex_state = 24, .external_lex_state = 3}, [2134] = {.lex_state = 24, .external_lex_state = 3}, [2135] = {.lex_state = 38, .external_lex_state = 2}, - [2136] = {.lex_state = 24, .external_lex_state = 3}, + [2136] = {.lex_state = 38, .external_lex_state = 2}, [2137] = {.lex_state = 24, .external_lex_state = 3}, [2138] = {.lex_state = 24, .external_lex_state = 3}, [2139] = {.lex_state = 24, .external_lex_state = 3}, @@ -24297,33 +24361,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2160] = {.lex_state = 48, .external_lex_state = 5}, [2161] = {.lex_state = 38, .external_lex_state = 2}, [2162] = {.lex_state = 38, .external_lex_state = 2}, - [2163] = {.lex_state = 39, .external_lex_state = 2}, + [2163] = {.lex_state = 38, .external_lex_state = 2}, [2164] = {.lex_state = 39, .external_lex_state = 2}, [2165] = {.lex_state = 38, .external_lex_state = 2}, - [2166] = {.lex_state = 38, .external_lex_state = 2}, - [2167] = {.lex_state = 38, .external_lex_state = 2}, - [2168] = {.lex_state = 39, .external_lex_state = 2}, - [2169] = {.lex_state = 38, .external_lex_state = 2}, + [2166] = {.lex_state = 39, .external_lex_state = 2}, + [2167] = {.lex_state = 39, .external_lex_state = 2}, + [2168] = {.lex_state = 38, .external_lex_state = 2}, + [2169] = {.lex_state = 39, .external_lex_state = 2}, [2170] = {.lex_state = 38, .external_lex_state = 2}, [2171] = {.lex_state = 38, .external_lex_state = 2}, [2172] = {.lex_state = 38, .external_lex_state = 2}, [2173] = {.lex_state = 38, .external_lex_state = 2}, - [2174] = {.lex_state = 38, .external_lex_state = 2}, + [2174] = {.lex_state = 39, .external_lex_state = 2}, [2175] = {.lex_state = 38, .external_lex_state = 2}, - [2176] = {.lex_state = 39, .external_lex_state = 2}, + [2176] = {.lex_state = 38, .external_lex_state = 2}, [2177] = {.lex_state = 38, .external_lex_state = 2}, [2178] = {.lex_state = 38, .external_lex_state = 2}, - [2179] = {.lex_state = 39, .external_lex_state = 2}, + [2179] = {.lex_state = 38, .external_lex_state = 2}, [2180] = {.lex_state = 38, .external_lex_state = 2}, - [2181] = {.lex_state = 39, .external_lex_state = 2}, + [2181] = {.lex_state = 38, .external_lex_state = 2}, [2182] = {.lex_state = 38, .external_lex_state = 2}, [2183] = {.lex_state = 38, .external_lex_state = 2}, [2184] = {.lex_state = 38, .external_lex_state = 2}, - [2185] = {.lex_state = 39, .external_lex_state = 2}, + [2185] = {.lex_state = 38, .external_lex_state = 2}, [2186] = {.lex_state = 38, .external_lex_state = 2}, - [2187] = {.lex_state = 38, .external_lex_state = 2}, + [2187] = {.lex_state = 39, .external_lex_state = 2}, [2188] = {.lex_state = 38, .external_lex_state = 2}, - [2189] = {.lex_state = 38, .external_lex_state = 2}, + [2189] = {.lex_state = 39, .external_lex_state = 2}, [2190] = {.lex_state = 38, .external_lex_state = 2}, [2191] = {.lex_state = 38, .external_lex_state = 2}, [2192] = {.lex_state = 38, .external_lex_state = 2}, @@ -24335,27 +24399,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2198] = {.lex_state = 38, .external_lex_state = 2}, [2199] = {.lex_state = 38, .external_lex_state = 2}, [2200] = {.lex_state = 38, .external_lex_state = 2}, - [2201] = {.lex_state = 48, .external_lex_state = 5}, - [2202] = {.lex_state = 48, .external_lex_state = 5}, - [2203] = {.lex_state = 29, .external_lex_state = 4}, - [2204] = {.lex_state = 29, .external_lex_state = 4}, + [2201] = {.lex_state = 29, .external_lex_state = 4}, + [2202] = {.lex_state = 29, .external_lex_state = 4}, + [2203] = {.lex_state = 48, .external_lex_state = 5}, + [2204] = {.lex_state = 48, .external_lex_state = 5}, [2205] = {.lex_state = 29, .external_lex_state = 3}, [2206] = {.lex_state = 29, .external_lex_state = 3}, [2207] = {.lex_state = 29, .external_lex_state = 3}, - [2208] = {.lex_state = 29, .external_lex_state = 3}, + [2208] = {.lex_state = 39, .external_lex_state = 2}, [2209] = {.lex_state = 29, .external_lex_state = 3}, - [2210] = {.lex_state = 39, .external_lex_state = 2}, + [2210] = {.lex_state = 29, .external_lex_state = 3}, [2211] = {.lex_state = 29, .external_lex_state = 3}, [2212] = {.lex_state = 29, .external_lex_state = 3}, - [2213] = {.lex_state = 29, .external_lex_state = 3}, + [2213] = {.lex_state = 29, .external_lex_state = 4}, [2214] = {.lex_state = 29, .external_lex_state = 4}, [2215] = {.lex_state = 29, .external_lex_state = 3}, - [2216] = {.lex_state = 29, .external_lex_state = 3}, + [2216] = {.lex_state = 29, .external_lex_state = 4}, [2217] = {.lex_state = 29, .external_lex_state = 3}, [2218] = {.lex_state = 29, .external_lex_state = 3}, [2219] = {.lex_state = 29, .external_lex_state = 3}, - [2220] = {.lex_state = 29, .external_lex_state = 4}, - [2221] = {.lex_state = 29, .external_lex_state = 4}, + [2220] = {.lex_state = 29, .external_lex_state = 3}, + [2221] = {.lex_state = 29, .external_lex_state = 3}, [2222] = {.lex_state = 29, .external_lex_state = 3}, [2223] = {.lex_state = 29, .external_lex_state = 3}, [2224] = {.lex_state = 29, .external_lex_state = 3}, @@ -24372,10 +24436,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2235] = {.lex_state = 29, .external_lex_state = 3}, [2236] = {.lex_state = 29, .external_lex_state = 3}, [2237] = {.lex_state = 29, .external_lex_state = 3}, - [2238] = {.lex_state = 29, .external_lex_state = 4}, + [2238] = {.lex_state = 29, .external_lex_state = 3}, [2239] = {.lex_state = 29, .external_lex_state = 3}, [2240] = {.lex_state = 29, .external_lex_state = 3}, - [2241] = {.lex_state = 29, .external_lex_state = 3}, + [2241] = {.lex_state = 39, .external_lex_state = 5}, [2242] = {.lex_state = 29, .external_lex_state = 3}, [2243] = {.lex_state = 29, .external_lex_state = 3}, [2244] = {.lex_state = 29, .external_lex_state = 3}, @@ -24384,21 +24448,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2247] = {.lex_state = 29, .external_lex_state = 3}, [2248] = {.lex_state = 29, .external_lex_state = 3}, [2249] = {.lex_state = 29, .external_lex_state = 3}, - [2250] = {.lex_state = 29, .external_lex_state = 3}, + [2250] = {.lex_state = 29, .external_lex_state = 4}, [2251] = {.lex_state = 29, .external_lex_state = 3}, [2252] = {.lex_state = 29, .external_lex_state = 3}, - [2253] = {.lex_state = 29, .external_lex_state = 4}, + [2253] = {.lex_state = 29, .external_lex_state = 3}, [2254] = {.lex_state = 29, .external_lex_state = 3}, - [2255] = {.lex_state = 39, .external_lex_state = 5}, + [2255] = {.lex_state = 29, .external_lex_state = 3}, [2256] = {.lex_state = 29, .external_lex_state = 3}, - [2257] = {.lex_state = 29, .external_lex_state = 3}, + [2257] = {.lex_state = 39, .external_lex_state = 5}, [2258] = {.lex_state = 29, .external_lex_state = 3}, [2259] = {.lex_state = 29, .external_lex_state = 3}, [2260] = {.lex_state = 29, .external_lex_state = 3}, [2261] = {.lex_state = 29, .external_lex_state = 3}, - [2262] = {.lex_state = 29, .external_lex_state = 3}, + [2262] = {.lex_state = 39, .external_lex_state = 5}, [2263] = {.lex_state = 29, .external_lex_state = 3}, - [2264] = {.lex_state = 29, .external_lex_state = 3}, + [2264] = {.lex_state = 29, .external_lex_state = 4}, [2265] = {.lex_state = 29, .external_lex_state = 3}, [2266] = {.lex_state = 29, .external_lex_state = 3}, [2267] = {.lex_state = 29, .external_lex_state = 3}, @@ -24443,13 +24507,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2306] = {.lex_state = 29, .external_lex_state = 3}, [2307] = {.lex_state = 29, .external_lex_state = 3}, [2308] = {.lex_state = 29, .external_lex_state = 3}, - [2309] = {.lex_state = 39, .external_lex_state = 5}, - [2310] = {.lex_state = 29, .external_lex_state = 4}, + [2309] = {.lex_state = 29, .external_lex_state = 3}, + [2310] = {.lex_state = 29, .external_lex_state = 3}, [2311] = {.lex_state = 29, .external_lex_state = 3}, [2312] = {.lex_state = 29, .external_lex_state = 3}, [2313] = {.lex_state = 29, .external_lex_state = 3}, [2314] = {.lex_state = 29, .external_lex_state = 3}, - [2315] = {.lex_state = 29, .external_lex_state = 4}, + [2315] = {.lex_state = 29, .external_lex_state = 3}, [2316] = {.lex_state = 29, .external_lex_state = 3}, [2317] = {.lex_state = 29, .external_lex_state = 3}, [2318] = {.lex_state = 29, .external_lex_state = 3}, @@ -24460,23 +24524,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2323] = {.lex_state = 29, .external_lex_state = 3}, [2324] = {.lex_state = 29, .external_lex_state = 3}, [2325] = {.lex_state = 29, .external_lex_state = 3}, - [2326] = {.lex_state = 29, .external_lex_state = 3}, + [2326] = {.lex_state = 39, .external_lex_state = 5}, [2327] = {.lex_state = 29, .external_lex_state = 3}, [2328] = {.lex_state = 29, .external_lex_state = 3}, [2329] = {.lex_state = 29, .external_lex_state = 3}, [2330] = {.lex_state = 29, .external_lex_state = 3}, [2331] = {.lex_state = 29, .external_lex_state = 3}, - [2332] = {.lex_state = 39, .external_lex_state = 5}, + [2332] = {.lex_state = 29, .external_lex_state = 3}, [2333] = {.lex_state = 29, .external_lex_state = 3}, [2334] = {.lex_state = 29, .external_lex_state = 3}, [2335] = {.lex_state = 29, .external_lex_state = 3}, [2336] = {.lex_state = 29, .external_lex_state = 3}, - [2337] = {.lex_state = 39, .external_lex_state = 5}, + [2337] = {.lex_state = 29, .external_lex_state = 3}, [2338] = {.lex_state = 29, .external_lex_state = 3}, [2339] = {.lex_state = 29, .external_lex_state = 3}, [2340] = {.lex_state = 29, .external_lex_state = 3}, [2341] = {.lex_state = 29, .external_lex_state = 3}, - [2342] = {.lex_state = 29, .external_lex_state = 3}, + [2342] = {.lex_state = 29, .external_lex_state = 4}, [2343] = {.lex_state = 29, .external_lex_state = 3}, [2344] = {.lex_state = 29, .external_lex_state = 3}, [2345] = {.lex_state = 29, .external_lex_state = 3}, @@ -24486,7 +24550,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2349] = {.lex_state = 29, .external_lex_state = 3}, [2350] = {.lex_state = 29, .external_lex_state = 3}, [2351] = {.lex_state = 29, .external_lex_state = 3}, - [2352] = {.lex_state = 29, .external_lex_state = 3}, + [2352] = {.lex_state = 29, .external_lex_state = 4}, [2353] = {.lex_state = 29, .external_lex_state = 3}, [2354] = {.lex_state = 29, .external_lex_state = 3}, [2355] = {.lex_state = 29, .external_lex_state = 3}, @@ -24507,7 +24571,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2370] = {.lex_state = 29, .external_lex_state = 3}, [2371] = {.lex_state = 29, .external_lex_state = 3}, [2372] = {.lex_state = 29, .external_lex_state = 3}, - [2373] = {.lex_state = 39, .external_lex_state = 5}, + [2373] = {.lex_state = 29, .external_lex_state = 3}, [2374] = {.lex_state = 29, .external_lex_state = 3}, [2375] = {.lex_state = 29, .external_lex_state = 3}, [2376] = {.lex_state = 29, .external_lex_state = 3}, @@ -24515,7 +24579,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2378] = {.lex_state = 29, .external_lex_state = 3}, [2379] = {.lex_state = 29, .external_lex_state = 3}, [2380] = {.lex_state = 29, .external_lex_state = 3}, - [2381] = {.lex_state = 29, .external_lex_state = 3}, + [2381] = {.lex_state = 39, .external_lex_state = 5}, [2382] = {.lex_state = 29, .external_lex_state = 3}, [2383] = {.lex_state = 29, .external_lex_state = 3}, [2384] = {.lex_state = 29, .external_lex_state = 3}, @@ -24523,331 +24587,331 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2386] = {.lex_state = 29, .external_lex_state = 3}, [2387] = {.lex_state = 29, .external_lex_state = 3}, [2388] = {.lex_state = 29, .external_lex_state = 3}, - [2389] = {.lex_state = 29, .external_lex_state = 3}, + [2389] = {.lex_state = 39, .external_lex_state = 5}, [2390] = {.lex_state = 29, .external_lex_state = 4}, - [2391] = {.lex_state = 29, .external_lex_state = 4}, - [2392] = {.lex_state = 29, .external_lex_state = 4}, - [2393] = {.lex_state = 29, .external_lex_state = 3}, - [2394] = {.lex_state = 29, .external_lex_state = 3}, - [2395] = {.lex_state = 29, .external_lex_state = 4}, + [2391] = {.lex_state = 29, .external_lex_state = 3}, + [2392] = {.lex_state = 29, .external_lex_state = 3}, + [2393] = {.lex_state = 39, .external_lex_state = 5}, + [2394] = {.lex_state = 29, .external_lex_state = 4}, + [2395] = {.lex_state = 39, .external_lex_state = 5}, [2396] = {.lex_state = 29, .external_lex_state = 3}, [2397] = {.lex_state = 29, .external_lex_state = 3}, [2398] = {.lex_state = 29, .external_lex_state = 3}, [2399] = {.lex_state = 29, .external_lex_state = 3}, [2400] = {.lex_state = 29, .external_lex_state = 3}, - [2401] = {.lex_state = 39, .external_lex_state = 5}, - [2402] = {.lex_state = 39, .external_lex_state = 5}, + [2401] = {.lex_state = 29, .external_lex_state = 4}, + [2402] = {.lex_state = 29, .external_lex_state = 3}, [2403] = {.lex_state = 29, .external_lex_state = 3}, - [2404] = {.lex_state = 29, .external_lex_state = 3}, - [2405] = {.lex_state = 29, .external_lex_state = 4}, + [2404] = {.lex_state = 39, .external_lex_state = 5}, + [2405] = {.lex_state = 39, .external_lex_state = 5}, [2406] = {.lex_state = 29, .external_lex_state = 4}, [2407] = {.lex_state = 29, .external_lex_state = 3}, - [2408] = {.lex_state = 29, .external_lex_state = 3}, - [2409] = {.lex_state = 29, .external_lex_state = 3}, - [2410] = {.lex_state = 29, .external_lex_state = 4}, - [2411] = {.lex_state = 29, .external_lex_state = 4}, + [2408] = {.lex_state = 29, .external_lex_state = 4}, + [2409] = {.lex_state = 29, .external_lex_state = 4}, + [2410] = {.lex_state = 29, .external_lex_state = 3}, + [2411] = {.lex_state = 29, .external_lex_state = 3}, [2412] = {.lex_state = 29, .external_lex_state = 4}, - [2413] = {.lex_state = 29, .external_lex_state = 3}, - [2414] = {.lex_state = 39, .external_lex_state = 5}, + [2413] = {.lex_state = 29, .external_lex_state = 4}, + [2414] = {.lex_state = 29, .external_lex_state = 4}, [2415] = {.lex_state = 29, .external_lex_state = 3}, [2416] = {.lex_state = 29, .external_lex_state = 3}, [2417] = {.lex_state = 29, .external_lex_state = 3}, - [2418] = {.lex_state = 29, .external_lex_state = 3}, - [2419] = {.lex_state = 29, .external_lex_state = 3}, + [2418] = {.lex_state = 29, .external_lex_state = 4}, + [2419] = {.lex_state = 29, .external_lex_state = 4}, [2420] = {.lex_state = 29, .external_lex_state = 3}, [2421] = {.lex_state = 29, .external_lex_state = 3}, - [2422] = {.lex_state = 29, .external_lex_state = 3}, + [2422] = {.lex_state = 29, .external_lex_state = 4}, [2423] = {.lex_state = 29, .external_lex_state = 3}, [2424] = {.lex_state = 29, .external_lex_state = 3}, - [2425] = {.lex_state = 39, .external_lex_state = 5}, - [2426] = {.lex_state = 29, .external_lex_state = 4}, - [2427] = {.lex_state = 39, .external_lex_state = 5}, + [2425] = {.lex_state = 29, .external_lex_state = 3}, + [2426] = {.lex_state = 29, .external_lex_state = 3}, + [2427] = {.lex_state = 29, .external_lex_state = 3}, [2428] = {.lex_state = 29, .external_lex_state = 3}, - [2429] = {.lex_state = 29, .external_lex_state = 3}, - [2430] = {.lex_state = 29, .external_lex_state = 3}, + [2429] = {.lex_state = 39, .external_lex_state = 5}, + [2430] = {.lex_state = 29, .external_lex_state = 4}, [2431] = {.lex_state = 29, .external_lex_state = 3}, - [2432] = {.lex_state = 29, .external_lex_state = 3}, - [2433] = {.lex_state = 39, .external_lex_state = 5}, - [2434] = {.lex_state = 39, .external_lex_state = 5}, + [2432] = {.lex_state = 39, .external_lex_state = 5}, + [2433] = {.lex_state = 29, .external_lex_state = 3}, + [2434] = {.lex_state = 29, .external_lex_state = 3}, [2435] = {.lex_state = 29, .external_lex_state = 4}, - [2436] = {.lex_state = 39, .external_lex_state = 5}, - [2437] = {.lex_state = 29, .external_lex_state = 3}, - [2438] = {.lex_state = 29, .external_lex_state = 4}, - [2439] = {.lex_state = 29, .external_lex_state = 4}, + [2436] = {.lex_state = 29, .external_lex_state = 3}, + [2437] = {.lex_state = 29, .external_lex_state = 4}, + [2438] = {.lex_state = 29, .external_lex_state = 3}, + [2439] = {.lex_state = 29, .external_lex_state = 3}, [2440] = {.lex_state = 29, .external_lex_state = 4}, - [2441] = {.lex_state = 29, .external_lex_state = 3}, - [2442] = {.lex_state = 39, .external_lex_state = 5}, + [2441] = {.lex_state = 29, .external_lex_state = 4}, + [2442] = {.lex_state = 29, .external_lex_state = 3}, [2443] = {.lex_state = 29, .external_lex_state = 3}, - [2444] = {.lex_state = 29, .external_lex_state = 3}, - [2445] = {.lex_state = 29, .external_lex_state = 4}, + [2444] = {.lex_state = 29, .external_lex_state = 4}, + [2445] = {.lex_state = 29, .external_lex_state = 3}, [2446] = {.lex_state = 29, .external_lex_state = 4}, [2447] = {.lex_state = 29, .external_lex_state = 3}, - [2448] = {.lex_state = 29, .external_lex_state = 3}, - [2449] = {.lex_state = 29, .external_lex_state = 4}, + [2448] = {.lex_state = 29, .external_lex_state = 4}, + [2449] = {.lex_state = 29, .external_lex_state = 3}, [2450] = {.lex_state = 29, .external_lex_state = 4}, [2451] = {.lex_state = 29, .external_lex_state = 4}, - [2452] = {.lex_state = 29, .external_lex_state = 4}, - [2453] = {.lex_state = 29, .external_lex_state = 4}, + [2452] = {.lex_state = 29, .external_lex_state = 3}, + [2453] = {.lex_state = 29, .external_lex_state = 3}, [2454] = {.lex_state = 29, .external_lex_state = 3}, [2455] = {.lex_state = 29, .external_lex_state = 3}, - [2456] = {.lex_state = 29, .external_lex_state = 3}, - [2457] = {.lex_state = 29, .external_lex_state = 3}, - [2458] = {.lex_state = 29, .external_lex_state = 3}, + [2456] = {.lex_state = 29, .external_lex_state = 4}, + [2457] = {.lex_state = 29, .external_lex_state = 4}, + [2458] = {.lex_state = 29, .external_lex_state = 4}, [2459] = {.lex_state = 29, .external_lex_state = 4}, - [2460] = {.lex_state = 29, .external_lex_state = 3}, + [2460] = {.lex_state = 29, .external_lex_state = 4}, [2461] = {.lex_state = 29, .external_lex_state = 4}, [2462] = {.lex_state = 29, .external_lex_state = 4}, [2463] = {.lex_state = 29, .external_lex_state = 3}, - [2464] = {.lex_state = 29, .external_lex_state = 3}, - [2465] = {.lex_state = 29, .external_lex_state = 4}, - [2466] = {.lex_state = 29, .external_lex_state = 3}, + [2464] = {.lex_state = 29, .external_lex_state = 4}, + [2465] = {.lex_state = 29, .external_lex_state = 3}, + [2466] = {.lex_state = 29, .external_lex_state = 4}, [2467] = {.lex_state = 29, .external_lex_state = 4}, - [2468] = {.lex_state = 29, .external_lex_state = 4}, - [2469] = {.lex_state = 29, .external_lex_state = 4}, + [2468] = {.lex_state = 29, .external_lex_state = 3}, + [2469] = {.lex_state = 29, .external_lex_state = 3}, [2470] = {.lex_state = 29, .external_lex_state = 4}, [2471] = {.lex_state = 29, .external_lex_state = 4}, [2472] = {.lex_state = 29, .external_lex_state = 4}, - [2473] = {.lex_state = 29, .external_lex_state = 3}, - [2474] = {.lex_state = 29, .external_lex_state = 3}, - [2475] = {.lex_state = 29, .external_lex_state = 3}, + [2473] = {.lex_state = 29, .external_lex_state = 4}, + [2474] = {.lex_state = 29, .external_lex_state = 4}, + [2475] = {.lex_state = 29, .external_lex_state = 4}, [2476] = {.lex_state = 29, .external_lex_state = 3}, [2477] = {.lex_state = 29, .external_lex_state = 3}, [2478] = {.lex_state = 29, .external_lex_state = 3}, - [2479] = {.lex_state = 29, .external_lex_state = 3}, + [2479] = {.lex_state = 29, .external_lex_state = 4}, [2480] = {.lex_state = 29, .external_lex_state = 3}, [2481] = {.lex_state = 29, .external_lex_state = 4}, [2482] = {.lex_state = 29, .external_lex_state = 4}, - [2483] = {.lex_state = 29, .external_lex_state = 3}, - [2484] = {.lex_state = 29, .external_lex_state = 3}, - [2485] = {.lex_state = 29, .external_lex_state = 4}, + [2483] = {.lex_state = 29, .external_lex_state = 4}, + [2484] = {.lex_state = 29, .external_lex_state = 4}, + [2485] = {.lex_state = 29, .external_lex_state = 3}, [2486] = {.lex_state = 29, .external_lex_state = 3}, [2487] = {.lex_state = 29, .external_lex_state = 3}, - [2488] = {.lex_state = 29, .external_lex_state = 3}, - [2489] = {.lex_state = 29, .external_lex_state = 3}, + [2488] = {.lex_state = 29, .external_lex_state = 4}, + [2489] = {.lex_state = 29, .external_lex_state = 4}, [2490] = {.lex_state = 29, .external_lex_state = 4}, [2491] = {.lex_state = 29, .external_lex_state = 4}, [2492] = {.lex_state = 29, .external_lex_state = 3}, - [2493] = {.lex_state = 29, .external_lex_state = 3}, - [2494] = {.lex_state = 29, .external_lex_state = 3}, - [2495] = {.lex_state = 29, .external_lex_state = 4}, + [2493] = {.lex_state = 29, .external_lex_state = 4}, + [2494] = {.lex_state = 29, .external_lex_state = 4}, + [2495] = {.lex_state = 29, .external_lex_state = 3}, [2496] = {.lex_state = 29, .external_lex_state = 3}, [2497] = {.lex_state = 29, .external_lex_state = 4}, [2498] = {.lex_state = 29, .external_lex_state = 4}, [2499] = {.lex_state = 29, .external_lex_state = 4}, - [2500] = {.lex_state = 29, .external_lex_state = 3}, - [2501] = {.lex_state = 29, .external_lex_state = 4}, - [2502] = {.lex_state = 29, .external_lex_state = 4}, - [2503] = {.lex_state = 29, .external_lex_state = 4}, + [2500] = {.lex_state = 29, .external_lex_state = 4}, + [2501] = {.lex_state = 29, .external_lex_state = 3}, + [2502] = {.lex_state = 29, .external_lex_state = 3}, + [2503] = {.lex_state = 29, .external_lex_state = 3}, [2504] = {.lex_state = 29, .external_lex_state = 3}, [2505] = {.lex_state = 29, .external_lex_state = 3}, [2506] = {.lex_state = 29, .external_lex_state = 3}, - [2507] = {.lex_state = 29, .external_lex_state = 3}, + [2507] = {.lex_state = 29, .external_lex_state = 4}, [2508] = {.lex_state = 29, .external_lex_state = 4}, [2509] = {.lex_state = 29, .external_lex_state = 4}, [2510] = {.lex_state = 29, .external_lex_state = 4}, - [2511] = {.lex_state = 29, .external_lex_state = 3}, + [2511] = {.lex_state = 29, .external_lex_state = 4}, [2512] = {.lex_state = 29, .external_lex_state = 4}, [2513] = {.lex_state = 29, .external_lex_state = 4}, - [2514] = {.lex_state = 29, .external_lex_state = 4}, + [2514] = {.lex_state = 29, .external_lex_state = 3}, [2515] = {.lex_state = 29, .external_lex_state = 4}, [2516] = {.lex_state = 29, .external_lex_state = 4}, - [2517] = {.lex_state = 29, .external_lex_state = 4}, + [2517] = {.lex_state = 29, .external_lex_state = 3}, [2518] = {.lex_state = 29, .external_lex_state = 4}, - [2519] = {.lex_state = 29, .external_lex_state = 4}, + [2519] = {.lex_state = 29, .external_lex_state = 3}, [2520] = {.lex_state = 29, .external_lex_state = 3}, [2521] = {.lex_state = 29, .external_lex_state = 4}, [2522] = {.lex_state = 29, .external_lex_state = 3}, [2523] = {.lex_state = 29, .external_lex_state = 4}, - [2524] = {.lex_state = 29, .external_lex_state = 3}, - [2525] = {.lex_state = 29, .external_lex_state = 4}, + [2524] = {.lex_state = 29, .external_lex_state = 4}, + [2525] = {.lex_state = 39, .external_lex_state = 5}, [2526] = {.lex_state = 29, .external_lex_state = 4}, - [2527] = {.lex_state = 29, .external_lex_state = 4}, + [2527] = {.lex_state = 29, .external_lex_state = 3}, [2528] = {.lex_state = 29, .external_lex_state = 3}, [2529] = {.lex_state = 39, .external_lex_state = 5}, - [2530] = {.lex_state = 29, .external_lex_state = 3}, - [2531] = {.lex_state = 39, .external_lex_state = 5}, + [2530] = {.lex_state = 29, .external_lex_state = 4}, + [2531] = {.lex_state = 29, .external_lex_state = 3}, [2532] = {.lex_state = 29, .external_lex_state = 4}, - [2533] = {.lex_state = 29, .external_lex_state = 3}, - [2534] = {.lex_state = 29, .external_lex_state = 4}, + [2533] = {.lex_state = 29, .external_lex_state = 4}, + [2534] = {.lex_state = 29, .external_lex_state = 3}, [2535] = {.lex_state = 29, .external_lex_state = 3}, [2536] = {.lex_state = 29, .external_lex_state = 4}, [2537] = {.lex_state = 29, .external_lex_state = 4}, [2538] = {.lex_state = 29, .external_lex_state = 4}, - [2539] = {.lex_state = 29, .external_lex_state = 4}, - [2540] = {.lex_state = 29, .external_lex_state = 4}, - [2541] = {.lex_state = 29, .external_lex_state = 3}, - [2542] = {.lex_state = 29, .external_lex_state = 3}, + [2539] = {.lex_state = 29, .external_lex_state = 3}, + [2540] = {.lex_state = 29, .external_lex_state = 3}, + [2541] = {.lex_state = 29, .external_lex_state = 4}, + [2542] = {.lex_state = 29, .external_lex_state = 4}, [2543] = {.lex_state = 29, .external_lex_state = 4}, - [2544] = {.lex_state = 29, .external_lex_state = 4}, - [2545] = {.lex_state = 29, .external_lex_state = 4}, + [2544] = {.lex_state = 29, .external_lex_state = 3}, + [2545] = {.lex_state = 29, .external_lex_state = 3}, [2546] = {.lex_state = 29, .external_lex_state = 4}, [2547] = {.lex_state = 29, .external_lex_state = 4}, [2548] = {.lex_state = 29, .external_lex_state = 3}, [2549] = {.lex_state = 29, .external_lex_state = 4}, [2550] = {.lex_state = 29, .external_lex_state = 3}, [2551] = {.lex_state = 29, .external_lex_state = 4}, - [2552] = {.lex_state = 29, .external_lex_state = 4}, - [2553] = {.lex_state = 29, .external_lex_state = 4}, + [2552] = {.lex_state = 29, .external_lex_state = 3}, + [2553] = {.lex_state = 29, .external_lex_state = 3}, [2554] = {.lex_state = 29, .external_lex_state = 3}, - [2555] = {.lex_state = 29, .external_lex_state = 3}, + [2555] = {.lex_state = 29, .external_lex_state = 4}, [2556] = {.lex_state = 29, .external_lex_state = 4}, - [2557] = {.lex_state = 29, .external_lex_state = 3}, - [2558] = {.lex_state = 29, .external_lex_state = 4}, - [2559] = {.lex_state = 29, .external_lex_state = 4}, + [2557] = {.lex_state = 29, .external_lex_state = 4}, + [2558] = {.lex_state = 29, .external_lex_state = 3}, + [2559] = {.lex_state = 39, .external_lex_state = 5}, [2560] = {.lex_state = 29, .external_lex_state = 4}, [2561] = {.lex_state = 29, .external_lex_state = 3}, - [2562] = {.lex_state = 29, .external_lex_state = 4}, - [2563] = {.lex_state = 29, .external_lex_state = 3}, + [2562] = {.lex_state = 39, .external_lex_state = 5}, + [2563] = {.lex_state = 29, .external_lex_state = 4}, [2564] = {.lex_state = 29, .external_lex_state = 4}, [2565] = {.lex_state = 29, .external_lex_state = 4}, [2566] = {.lex_state = 29, .external_lex_state = 4}, [2567] = {.lex_state = 29, .external_lex_state = 4}, [2568] = {.lex_state = 29, .external_lex_state = 4}, [2569] = {.lex_state = 29, .external_lex_state = 4}, - [2570] = {.lex_state = 29, .external_lex_state = 4}, - [2571] = {.lex_state = 29, .external_lex_state = 4}, + [2570] = {.lex_state = 29, .external_lex_state = 3}, + [2571] = {.lex_state = 29, .external_lex_state = 3}, [2572] = {.lex_state = 29, .external_lex_state = 4}, - [2573] = {.lex_state = 29, .external_lex_state = 4}, - [2574] = {.lex_state = 29, .external_lex_state = 4}, + [2573] = {.lex_state = 29, .external_lex_state = 3}, + [2574] = {.lex_state = 29, .external_lex_state = 3}, [2575] = {.lex_state = 29, .external_lex_state = 3}, - [2576] = {.lex_state = 29, .external_lex_state = 4}, - [2577] = {.lex_state = 29, .external_lex_state = 4}, + [2576] = {.lex_state = 29, .external_lex_state = 3}, + [2577] = {.lex_state = 29, .external_lex_state = 3}, [2578] = {.lex_state = 29, .external_lex_state = 4}, [2579] = {.lex_state = 29, .external_lex_state = 3}, [2580] = {.lex_state = 29, .external_lex_state = 3}, - [2581] = {.lex_state = 38, .external_lex_state = 5}, + [2581] = {.lex_state = 39, .external_lex_state = 5}, [2582] = {.lex_state = 29, .external_lex_state = 3}, - [2583] = {.lex_state = 29, .external_lex_state = 3}, - [2584] = {.lex_state = 29, .external_lex_state = 4}, - [2585] = {.lex_state = 29, .external_lex_state = 4}, + [2583] = {.lex_state = 29, .external_lex_state = 4}, + [2584] = {.lex_state = 29, .external_lex_state = 3}, + [2585] = {.lex_state = 29, .external_lex_state = 3}, [2586] = {.lex_state = 29, .external_lex_state = 3}, [2587] = {.lex_state = 29, .external_lex_state = 3}, [2588] = {.lex_state = 29, .external_lex_state = 3}, - [2589] = {.lex_state = 29, .external_lex_state = 3}, - [2590] = {.lex_state = 29, .external_lex_state = 3}, - [2591] = {.lex_state = 29, .external_lex_state = 3}, + [2589] = {.lex_state = 29, .external_lex_state = 4}, + [2590] = {.lex_state = 29, .external_lex_state = 4}, + [2591] = {.lex_state = 29, .external_lex_state = 4}, [2592] = {.lex_state = 29, .external_lex_state = 4}, - [2593] = {.lex_state = 29, .external_lex_state = 3}, - [2594] = {.lex_state = 29, .external_lex_state = 3}, + [2593] = {.lex_state = 29, .external_lex_state = 4}, + [2594] = {.lex_state = 29, .external_lex_state = 4}, [2595] = {.lex_state = 29, .external_lex_state = 3}, - [2596] = {.lex_state = 29, .external_lex_state = 3}, - [2597] = {.lex_state = 29, .external_lex_state = 3}, + [2596] = {.lex_state = 39, .external_lex_state = 5}, + [2597] = {.lex_state = 29, .external_lex_state = 4}, [2598] = {.lex_state = 29, .external_lex_state = 3}, [2599] = {.lex_state = 29, .external_lex_state = 3}, - [2600] = {.lex_state = 29, .external_lex_state = 3}, + [2600] = {.lex_state = 29, .external_lex_state = 4}, [2601] = {.lex_state = 29, .external_lex_state = 3}, [2602] = {.lex_state = 29, .external_lex_state = 3}, [2603] = {.lex_state = 29, .external_lex_state = 3}, - [2604] = {.lex_state = 29, .external_lex_state = 3}, + [2604] = {.lex_state = 39, .external_lex_state = 5}, [2605] = {.lex_state = 29, .external_lex_state = 3}, [2606] = {.lex_state = 29, .external_lex_state = 3}, - [2607] = {.lex_state = 29, .external_lex_state = 3}, + [2607] = {.lex_state = 29, .external_lex_state = 4}, [2608] = {.lex_state = 29, .external_lex_state = 3}, - [2609] = {.lex_state = 29, .external_lex_state = 3}, + [2609] = {.lex_state = 38, .external_lex_state = 5}, [2610] = {.lex_state = 29, .external_lex_state = 3}, - [2611] = {.lex_state = 29, .external_lex_state = 3}, - [2612] = {.lex_state = 29, .external_lex_state = 4}, - [2613] = {.lex_state = 29, .external_lex_state = 4}, - [2614] = {.lex_state = 29, .external_lex_state = 3}, + [2611] = {.lex_state = 39, .external_lex_state = 5}, + [2612] = {.lex_state = 29, .external_lex_state = 3}, + [2613] = {.lex_state = 29, .external_lex_state = 3}, + [2614] = {.lex_state = 29, .external_lex_state = 4}, [2615] = {.lex_state = 29, .external_lex_state = 3}, [2616] = {.lex_state = 29, .external_lex_state = 3}, [2617] = {.lex_state = 29, .external_lex_state = 3}, [2618] = {.lex_state = 29, .external_lex_state = 3}, [2619] = {.lex_state = 29, .external_lex_state = 3}, [2620] = {.lex_state = 29, .external_lex_state = 3}, - [2621] = {.lex_state = 29, .external_lex_state = 4}, + [2621] = {.lex_state = 29, .external_lex_state = 3}, [2622] = {.lex_state = 29, .external_lex_state = 3}, [2623] = {.lex_state = 29, .external_lex_state = 3}, - [2624] = {.lex_state = 39, .external_lex_state = 5}, + [2624] = {.lex_state = 29, .external_lex_state = 3}, [2625] = {.lex_state = 29, .external_lex_state = 3}, - [2626] = {.lex_state = 29, .external_lex_state = 4}, + [2626] = {.lex_state = 29, .external_lex_state = 3}, [2627] = {.lex_state = 29, .external_lex_state = 4}, [2628] = {.lex_state = 29, .external_lex_state = 3}, - [2629] = {.lex_state = 29, .external_lex_state = 3}, + [2629] = {.lex_state = 29, .external_lex_state = 4}, [2630] = {.lex_state = 29, .external_lex_state = 3}, - [2631] = {.lex_state = 39, .external_lex_state = 5}, - [2632] = {.lex_state = 29, .external_lex_state = 3}, - [2633] = {.lex_state = 29, .external_lex_state = 4}, + [2631] = {.lex_state = 29, .external_lex_state = 3}, + [2632] = {.lex_state = 38, .external_lex_state = 5}, + [2633] = {.lex_state = 29, .external_lex_state = 3}, [2634] = {.lex_state = 29, .external_lex_state = 3}, [2635] = {.lex_state = 29, .external_lex_state = 3}, - [2636] = {.lex_state = 29, .external_lex_state = 4}, - [2637] = {.lex_state = 38, .external_lex_state = 5}, - [2638] = {.lex_state = 29, .external_lex_state = 4}, - [2639] = {.lex_state = 29, .external_lex_state = 4}, + [2636] = {.lex_state = 29, .external_lex_state = 3}, + [2637] = {.lex_state = 29, .external_lex_state = 4}, + [2638] = {.lex_state = 29, .external_lex_state = 3}, + [2639] = {.lex_state = 29, .external_lex_state = 3}, [2640] = {.lex_state = 29, .external_lex_state = 3}, [2641] = {.lex_state = 29, .external_lex_state = 3}, - [2642] = {.lex_state = 29, .external_lex_state = 4}, + [2642] = {.lex_state = 29, .external_lex_state = 3}, [2643] = {.lex_state = 29, .external_lex_state = 4}, [2644] = {.lex_state = 29, .external_lex_state = 3}, [2645] = {.lex_state = 29, .external_lex_state = 3}, - [2646] = {.lex_state = 29, .external_lex_state = 3}, - [2647] = {.lex_state = 29, .external_lex_state = 4}, - [2648] = {.lex_state = 29, .external_lex_state = 3}, + [2646] = {.lex_state = 29, .external_lex_state = 4}, + [2647] = {.lex_state = 29, .external_lex_state = 3}, + [2648] = {.lex_state = 29, .external_lex_state = 4}, [2649] = {.lex_state = 29, .external_lex_state = 3}, [2650] = {.lex_state = 29, .external_lex_state = 3}, - [2651] = {.lex_state = 29, .external_lex_state = 3}, + [2651] = {.lex_state = 29, .external_lex_state = 4}, [2652] = {.lex_state = 29, .external_lex_state = 3}, [2653] = {.lex_state = 29, .external_lex_state = 3}, [2654] = {.lex_state = 29, .external_lex_state = 3}, - [2655] = {.lex_state = 29, .external_lex_state = 3}, - [2656] = {.lex_state = 39, .external_lex_state = 5}, + [2655] = {.lex_state = 39, .external_lex_state = 5}, + [2656] = {.lex_state = 29, .external_lex_state = 3}, [2657] = {.lex_state = 29, .external_lex_state = 3}, [2658] = {.lex_state = 29, .external_lex_state = 3}, [2659] = {.lex_state = 29, .external_lex_state = 4}, [2660] = {.lex_state = 29, .external_lex_state = 3}, [2661] = {.lex_state = 29, .external_lex_state = 3}, [2662] = {.lex_state = 29, .external_lex_state = 3}, - [2663] = {.lex_state = 29, .external_lex_state = 3}, + [2663] = {.lex_state = 39, .external_lex_state = 5}, [2664] = {.lex_state = 29, .external_lex_state = 3}, [2665] = {.lex_state = 29, .external_lex_state = 3}, - [2666] = {.lex_state = 29, .external_lex_state = 3}, - [2667] = {.lex_state = 29, .external_lex_state = 4}, - [2668] = {.lex_state = 39, .external_lex_state = 5}, + [2666] = {.lex_state = 29, .external_lex_state = 4}, + [2667] = {.lex_state = 29, .external_lex_state = 3}, + [2668] = {.lex_state = 29, .external_lex_state = 4}, [2669] = {.lex_state = 29, .external_lex_state = 3}, [2670] = {.lex_state = 29, .external_lex_state = 3}, [2671] = {.lex_state = 29, .external_lex_state = 4}, [2672] = {.lex_state = 29, .external_lex_state = 3}, - [2673] = {.lex_state = 29, .external_lex_state = 4}, + [2673] = {.lex_state = 29, .external_lex_state = 3}, [2674] = {.lex_state = 29, .external_lex_state = 3}, [2675] = {.lex_state = 29, .external_lex_state = 3}, - [2676] = {.lex_state = 29, .external_lex_state = 4}, - [2677] = {.lex_state = 39, .external_lex_state = 5}, + [2676] = {.lex_state = 29, .external_lex_state = 3}, + [2677] = {.lex_state = 29, .external_lex_state = 3}, [2678] = {.lex_state = 29, .external_lex_state = 4}, [2679] = {.lex_state = 29, .external_lex_state = 3}, - [2680] = {.lex_state = 29, .external_lex_state = 4}, + [2680] = {.lex_state = 29, .external_lex_state = 3}, [2681] = {.lex_state = 29, .external_lex_state = 3}, - [2682] = {.lex_state = 39, .external_lex_state = 5}, - [2683] = {.lex_state = 29, .external_lex_state = 4}, - [2684] = {.lex_state = 29, .external_lex_state = 4}, + [2682] = {.lex_state = 29, .external_lex_state = 3}, + [2683] = {.lex_state = 29, .external_lex_state = 3}, + [2684] = {.lex_state = 38, .external_lex_state = 5}, [2685] = {.lex_state = 29, .external_lex_state = 4}, - [2686] = {.lex_state = 39, .external_lex_state = 5}, - [2687] = {.lex_state = 39, .external_lex_state = 5}, - [2688] = {.lex_state = 29, .external_lex_state = 4}, - [2689] = {.lex_state = 29, .external_lex_state = 4}, + [2686] = {.lex_state = 29, .external_lex_state = 4}, + [2687] = {.lex_state = 29, .external_lex_state = 4}, + [2688] = {.lex_state = 29, .external_lex_state = 3}, + [2689] = {.lex_state = 39, .external_lex_state = 2}, [2690] = {.lex_state = 29, .external_lex_state = 3}, - [2691] = {.lex_state = 39, .external_lex_state = 5}, + [2691] = {.lex_state = 29, .external_lex_state = 4}, [2692] = {.lex_state = 29, .external_lex_state = 4}, [2693] = {.lex_state = 29, .external_lex_state = 4}, - [2694] = {.lex_state = 29, .external_lex_state = 3}, - [2695] = {.lex_state = 29, .external_lex_state = 3}, - [2696] = {.lex_state = 29, .external_lex_state = 3}, - [2697] = {.lex_state = 39, .external_lex_state = 5}, - [2698] = {.lex_state = 29, .external_lex_state = 4}, + [2694] = {.lex_state = 29, .external_lex_state = 4}, + [2695] = {.lex_state = 38, .external_lex_state = 5}, + [2696] = {.lex_state = 29, .external_lex_state = 4}, + [2697] = {.lex_state = 29, .external_lex_state = 4}, + [2698] = {.lex_state = 29, .external_lex_state = 3}, [2699] = {.lex_state = 38, .external_lex_state = 5}, - [2700] = {.lex_state = 38, .external_lex_state = 5}, - [2701] = {.lex_state = 39, .external_lex_state = 2}, - [2702] = {.lex_state = 39, .external_lex_state = 5}, + [2700] = {.lex_state = 29, .external_lex_state = 4}, + [2701] = {.lex_state = 29, .external_lex_state = 4}, + [2702] = {.lex_state = 29, .external_lex_state = 4}, [2703] = {.lex_state = 29, .external_lex_state = 4}, - [2704] = {.lex_state = 39, .external_lex_state = 2}, - [2705] = {.lex_state = 29, .external_lex_state = 4}, + [2704] = {.lex_state = 29, .external_lex_state = 4}, + [2705] = {.lex_state = 39, .external_lex_state = 5}, [2706] = {.lex_state = 29, .external_lex_state = 4}, [2707] = {.lex_state = 29, .external_lex_state = 4}, [2708] = {.lex_state = 29, .external_lex_state = 4}, [2709] = {.lex_state = 29, .external_lex_state = 4}, [2710] = {.lex_state = 29, .external_lex_state = 4}, - [2711] = {.lex_state = 29, .external_lex_state = 3}, + [2711] = {.lex_state = 29, .external_lex_state = 4}, [2712] = {.lex_state = 29, .external_lex_state = 4}, - [2713] = {.lex_state = 29, .external_lex_state = 3}, + [2713] = {.lex_state = 29, .external_lex_state = 4}, [2714] = {.lex_state = 29, .external_lex_state = 4}, [2715] = {.lex_state = 29, .external_lex_state = 4}, [2716] = {.lex_state = 29, .external_lex_state = 4}, @@ -24855,20 +24919,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2718] = {.lex_state = 29, .external_lex_state = 4}, [2719] = {.lex_state = 29, .external_lex_state = 4}, [2720] = {.lex_state = 29, .external_lex_state = 4}, - [2721] = {.lex_state = 29, .external_lex_state = 3}, + [2721] = {.lex_state = 29, .external_lex_state = 4}, [2722] = {.lex_state = 29, .external_lex_state = 4}, - [2723] = {.lex_state = 29, .external_lex_state = 4}, + [2723] = {.lex_state = 29, .external_lex_state = 3}, [2724] = {.lex_state = 29, .external_lex_state = 4}, [2725] = {.lex_state = 29, .external_lex_state = 4}, [2726] = {.lex_state = 29, .external_lex_state = 4}, - [2727] = {.lex_state = 29, .external_lex_state = 4}, + [2727] = {.lex_state = 29, .external_lex_state = 3}, [2728] = {.lex_state = 29, .external_lex_state = 4}, [2729] = {.lex_state = 29, .external_lex_state = 4}, [2730] = {.lex_state = 29, .external_lex_state = 4}, - [2731] = {.lex_state = 29, .external_lex_state = 4}, + [2731] = {.lex_state = 29, .external_lex_state = 3}, [2732] = {.lex_state = 29, .external_lex_state = 4}, [2733] = {.lex_state = 29, .external_lex_state = 4}, - [2734] = {.lex_state = 29, .external_lex_state = 4}, + [2734] = {.lex_state = 29, .external_lex_state = 3}, [2735] = {.lex_state = 29, .external_lex_state = 3}, [2736] = {.lex_state = 29, .external_lex_state = 4}, [2737] = {.lex_state = 29, .external_lex_state = 4}, @@ -24882,25 +24946,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2745] = {.lex_state = 29, .external_lex_state = 4}, [2746] = {.lex_state = 29, .external_lex_state = 4}, [2747] = {.lex_state = 29, .external_lex_state = 4}, - [2748] = {.lex_state = 29, .external_lex_state = 4}, + [2748] = {.lex_state = 39, .external_lex_state = 5}, [2749] = {.lex_state = 29, .external_lex_state = 4}, - [2750] = {.lex_state = 29, .external_lex_state = 4}, - [2751] = {.lex_state = 29, .external_lex_state = 4}, + [2750] = {.lex_state = 29, .external_lex_state = 3}, + [2751] = {.lex_state = 29, .external_lex_state = 3}, [2752] = {.lex_state = 29, .external_lex_state = 4}, - [2753] = {.lex_state = 39, .external_lex_state = 2}, - [2754] = {.lex_state = 29, .external_lex_state = 4}, - [2755] = {.lex_state = 29, .external_lex_state = 4}, - [2756] = {.lex_state = 29, .external_lex_state = 4}, + [2753] = {.lex_state = 29, .external_lex_state = 4}, + [2754] = {.lex_state = 29, .external_lex_state = 3}, + [2755] = {.lex_state = 29, .external_lex_state = 3}, + [2756] = {.lex_state = 39, .external_lex_state = 2}, [2757] = {.lex_state = 29, .external_lex_state = 4}, - [2758] = {.lex_state = 29, .external_lex_state = 3}, - [2759] = {.lex_state = 29, .external_lex_state = 3}, - [2760] = {.lex_state = 39, .external_lex_state = 2}, + [2758] = {.lex_state = 29, .external_lex_state = 4}, + [2759] = {.lex_state = 29, .external_lex_state = 4}, + [2760] = {.lex_state = 29, .external_lex_state = 4}, [2761] = {.lex_state = 29, .external_lex_state = 4}, [2762] = {.lex_state = 29, .external_lex_state = 4}, - [2763] = {.lex_state = 29, .external_lex_state = 4}, + [2763] = {.lex_state = 29, .external_lex_state = 3}, [2764] = {.lex_state = 29, .external_lex_state = 4}, - [2765] = {.lex_state = 29, .external_lex_state = 3}, - [2766] = {.lex_state = 39, .external_lex_state = 5}, + [2765] = {.lex_state = 29, .external_lex_state = 4}, + [2766] = {.lex_state = 29, .external_lex_state = 4}, [2767] = {.lex_state = 29, .external_lex_state = 4}, [2768] = {.lex_state = 29, .external_lex_state = 4}, [2769] = {.lex_state = 29, .external_lex_state = 4}, @@ -24916,74 +24980,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2779] = {.lex_state = 29, .external_lex_state = 4}, [2780] = {.lex_state = 29, .external_lex_state = 4}, [2781] = {.lex_state = 29, .external_lex_state = 4}, - [2782] = {.lex_state = 29, .external_lex_state = 4}, - [2783] = {.lex_state = 39, .external_lex_state = 2}, + [2782] = {.lex_state = 29, .external_lex_state = 3}, + [2783] = {.lex_state = 29, .external_lex_state = 3}, [2784] = {.lex_state = 29, .external_lex_state = 4}, [2785] = {.lex_state = 29, .external_lex_state = 4}, [2786] = {.lex_state = 29, .external_lex_state = 4}, - [2787] = {.lex_state = 38, .external_lex_state = 5}, + [2787] = {.lex_state = 29, .external_lex_state = 4}, [2788] = {.lex_state = 29, .external_lex_state = 4}, - [2789] = {.lex_state = 39, .external_lex_state = 5}, - [2790] = {.lex_state = 38, .external_lex_state = 5}, - [2791] = {.lex_state = 38, .external_lex_state = 5}, - [2792] = {.lex_state = 39, .external_lex_state = 5}, + [2789] = {.lex_state = 29, .external_lex_state = 4}, + [2790] = {.lex_state = 29, .external_lex_state = 3}, + [2791] = {.lex_state = 29, .external_lex_state = 4}, + [2792] = {.lex_state = 39, .external_lex_state = 2}, [2793] = {.lex_state = 29, .external_lex_state = 4}, - [2794] = {.lex_state = 39, .external_lex_state = 2}, - [2795] = {.lex_state = 29, .external_lex_state = 4}, + [2794] = {.lex_state = 29, .external_lex_state = 4}, + [2795] = {.lex_state = 39, .external_lex_state = 5}, [2796] = {.lex_state = 29, .external_lex_state = 4}, [2797] = {.lex_state = 29, .external_lex_state = 4}, [2798] = {.lex_state = 29, .external_lex_state = 4}, - [2799] = {.lex_state = 29, .external_lex_state = 4}, - [2800] = {.lex_state = 29, .external_lex_state = 3}, - [2801] = {.lex_state = 29, .external_lex_state = 3}, - [2802] = {.lex_state = 29, .external_lex_state = 4}, - [2803] = {.lex_state = 29, .external_lex_state = 4}, - [2804] = {.lex_state = 29, .external_lex_state = 4}, + [2799] = {.lex_state = 38, .external_lex_state = 5}, + [2800] = {.lex_state = 39, .external_lex_state = 2}, + [2801] = {.lex_state = 29, .external_lex_state = 4}, + [2802] = {.lex_state = 29, .external_lex_state = 3}, + [2803] = {.lex_state = 39, .external_lex_state = 5}, + [2804] = {.lex_state = 29, .external_lex_state = 3}, [2805] = {.lex_state = 29, .external_lex_state = 4}, [2806] = {.lex_state = 29, .external_lex_state = 4}, [2807] = {.lex_state = 29, .external_lex_state = 4}, - [2808] = {.lex_state = 29, .external_lex_state = 4}, + [2808] = {.lex_state = 39, .external_lex_state = 2}, [2809] = {.lex_state = 29, .external_lex_state = 4}, - [2810] = {.lex_state = 29, .external_lex_state = 4}, + [2810] = {.lex_state = 38, .external_lex_state = 5}, [2811] = {.lex_state = 29, .external_lex_state = 4}, [2812] = {.lex_state = 29, .external_lex_state = 4}, [2813] = {.lex_state = 29, .external_lex_state = 4}, - [2814] = {.lex_state = 29, .external_lex_state = 4}, + [2814] = {.lex_state = 29, .external_lex_state = 3}, [2815] = {.lex_state = 29, .external_lex_state = 4}, [2816] = {.lex_state = 29, .external_lex_state = 4}, [2817] = {.lex_state = 29, .external_lex_state = 4}, [2818] = {.lex_state = 29, .external_lex_state = 4}, - [2819] = {.lex_state = 29, .external_lex_state = 3}, - [2820] = {.lex_state = 29, .external_lex_state = 3}, - [2821] = {.lex_state = 29, .external_lex_state = 3}, - [2822] = {.lex_state = 29, .external_lex_state = 3}, - [2823] = {.lex_state = 29, .external_lex_state = 3}, - [2824] = {.lex_state = 29, .external_lex_state = 3}, + [2819] = {.lex_state = 29, .external_lex_state = 4}, + [2820] = {.lex_state = 29, .external_lex_state = 4}, + [2821] = {.lex_state = 29, .external_lex_state = 4}, + [2822] = {.lex_state = 29, .external_lex_state = 4}, + [2823] = {.lex_state = 39, .external_lex_state = 2}, + [2824] = {.lex_state = 29, .external_lex_state = 4}, [2825] = {.lex_state = 29, .external_lex_state = 3}, - [2826] = {.lex_state = 29, .external_lex_state = 3}, - [2827] = {.lex_state = 29, .external_lex_state = 3}, + [2826] = {.lex_state = 29, .external_lex_state = 4}, + [2827] = {.lex_state = 29, .external_lex_state = 4}, [2828] = {.lex_state = 29, .external_lex_state = 3}, [2829] = {.lex_state = 29, .external_lex_state = 3}, - [2830] = {.lex_state = 29, .external_lex_state = 3}, - [2831] = {.lex_state = 29, .external_lex_state = 3}, - [2832] = {.lex_state = 29, .external_lex_state = 3}, - [2833] = {.lex_state = 29, .external_lex_state = 4}, - [2834] = {.lex_state = 29, .external_lex_state = 3}, - [2835] = {.lex_state = 29, .external_lex_state = 3}, - [2836] = {.lex_state = 29, .external_lex_state = 3}, - [2837] = {.lex_state = 29, .external_lex_state = 3}, - [2838] = {.lex_state = 29, .external_lex_state = 3}, - [2839] = {.lex_state = 29, .external_lex_state = 3}, + [2830] = {.lex_state = 29, .external_lex_state = 4}, + [2831] = {.lex_state = 29, .external_lex_state = 4}, + [2832] = {.lex_state = 29, .external_lex_state = 4}, + [2833] = {.lex_state = 39, .external_lex_state = 2}, + [2834] = {.lex_state = 29, .external_lex_state = 4}, + [2835] = {.lex_state = 29, .external_lex_state = 4}, + [2836] = {.lex_state = 29, .external_lex_state = 4}, + [2837] = {.lex_state = 29, .external_lex_state = 4}, + [2838] = {.lex_state = 38, .external_lex_state = 5}, + [2839] = {.lex_state = 29, .external_lex_state = 4}, [2840] = {.lex_state = 29, .external_lex_state = 4}, [2841] = {.lex_state = 29, .external_lex_state = 3}, - [2842] = {.lex_state = 29, .external_lex_state = 3}, - [2843] = {.lex_state = 29, .external_lex_state = 4}, - [2844] = {.lex_state = 29, .external_lex_state = 3}, - [2845] = {.lex_state = 39, .external_lex_state = 2}, + [2842] = {.lex_state = 29, .external_lex_state = 4}, + [2843] = {.lex_state = 29, .external_lex_state = 3}, + [2844] = {.lex_state = 29, .external_lex_state = 4}, + [2845] = {.lex_state = 29, .external_lex_state = 3}, [2846] = {.lex_state = 29, .external_lex_state = 3}, - [2847] = {.lex_state = 29, .external_lex_state = 3}, - [2848] = {.lex_state = 29, .external_lex_state = 3}, - [2849] = {.lex_state = 29, .external_lex_state = 3}, + [2847] = {.lex_state = 29, .external_lex_state = 4}, + [2848] = {.lex_state = 39, .external_lex_state = 2}, + [2849] = {.lex_state = 29, .external_lex_state = 4}, [2850] = {.lex_state = 29, .external_lex_state = 4}, [2851] = {.lex_state = 29, .external_lex_state = 4}, [2852] = {.lex_state = 29, .external_lex_state = 4}, @@ -24991,42 +25055,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2854] = {.lex_state = 29, .external_lex_state = 4}, [2855] = {.lex_state = 29, .external_lex_state = 4}, [2856] = {.lex_state = 29, .external_lex_state = 4}, - [2857] = {.lex_state = 29, .external_lex_state = 3}, - [2858] = {.lex_state = 29, .external_lex_state = 4}, + [2857] = {.lex_state = 29, .external_lex_state = 4}, + [2858] = {.lex_state = 29, .external_lex_state = 3}, [2859] = {.lex_state = 29, .external_lex_state = 4}, - [2860] = {.lex_state = 29, .external_lex_state = 4}, + [2860] = {.lex_state = 29, .external_lex_state = 3}, [2861] = {.lex_state = 29, .external_lex_state = 4}, [2862] = {.lex_state = 29, .external_lex_state = 4}, [2863] = {.lex_state = 29, .external_lex_state = 4}, - [2864] = {.lex_state = 29, .external_lex_state = 4}, - [2865] = {.lex_state = 29, .external_lex_state = 4}, + [2864] = {.lex_state = 29, .external_lex_state = 3}, + [2865] = {.lex_state = 29, .external_lex_state = 3}, [2866] = {.lex_state = 29, .external_lex_state = 3}, - [2867] = {.lex_state = 29, .external_lex_state = 3}, - [2868] = {.lex_state = 29, .external_lex_state = 3}, + [2867] = {.lex_state = 39, .external_lex_state = 2}, + [2868] = {.lex_state = 29, .external_lex_state = 4}, [2869] = {.lex_state = 29, .external_lex_state = 4}, - [2870] = {.lex_state = 29, .external_lex_state = 4}, - [2871] = {.lex_state = 29, .external_lex_state = 4}, + [2870] = {.lex_state = 29, .external_lex_state = 3}, + [2871] = {.lex_state = 29, .external_lex_state = 3}, [2872] = {.lex_state = 29, .external_lex_state = 4}, [2873] = {.lex_state = 29, .external_lex_state = 4}, - [2874] = {.lex_state = 29, .external_lex_state = 4}, + [2874] = {.lex_state = 29, .external_lex_state = 3}, [2875] = {.lex_state = 29, .external_lex_state = 4}, - [2876] = {.lex_state = 29, .external_lex_state = 4}, - [2877] = {.lex_state = 29, .external_lex_state = 4}, - [2878] = {.lex_state = 29, .external_lex_state = 4}, - [2879] = {.lex_state = 29, .external_lex_state = 4}, + [2876] = {.lex_state = 29, .external_lex_state = 3}, + [2877] = {.lex_state = 29, .external_lex_state = 3}, + [2878] = {.lex_state = 29, .external_lex_state = 3}, + [2879] = {.lex_state = 29, .external_lex_state = 3}, [2880] = {.lex_state = 29, .external_lex_state = 4}, [2881] = {.lex_state = 29, .external_lex_state = 4}, [2882] = {.lex_state = 29, .external_lex_state = 4}, - [2883] = {.lex_state = 29, .external_lex_state = 4}, - [2884] = {.lex_state = 29, .external_lex_state = 4}, + [2883] = {.lex_state = 39, .external_lex_state = 5}, + [2884] = {.lex_state = 39, .external_lex_state = 5}, [2885] = {.lex_state = 29, .external_lex_state = 4}, [2886] = {.lex_state = 29, .external_lex_state = 4}, - [2887] = {.lex_state = 29, .external_lex_state = 4}, + [2887] = {.lex_state = 29, .external_lex_state = 3}, [2888] = {.lex_state = 29, .external_lex_state = 4}, [2889] = {.lex_state = 29, .external_lex_state = 4}, [2890] = {.lex_state = 29, .external_lex_state = 4}, [2891] = {.lex_state = 29, .external_lex_state = 4}, - [2892] = {.lex_state = 29, .external_lex_state = 4}, + [2892] = {.lex_state = 29, .external_lex_state = 3}, [2893] = {.lex_state = 29, .external_lex_state = 4}, [2894] = {.lex_state = 29, .external_lex_state = 4}, [2895] = {.lex_state = 29, .external_lex_state = 4}, @@ -25034,235 +25098,235 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2897] = {.lex_state = 29, .external_lex_state = 4}, [2898] = {.lex_state = 29, .external_lex_state = 4}, [2899] = {.lex_state = 29, .external_lex_state = 4}, - [2900] = {.lex_state = 29, .external_lex_state = 4}, + [2900] = {.lex_state = 39, .external_lex_state = 5}, [2901] = {.lex_state = 29, .external_lex_state = 4}, - [2902] = {.lex_state = 29, .external_lex_state = 3}, - [2903] = {.lex_state = 29, .external_lex_state = 3}, + [2902] = {.lex_state = 29, .external_lex_state = 4}, + [2903] = {.lex_state = 29, .external_lex_state = 4}, [2904] = {.lex_state = 29, .external_lex_state = 4}, - [2905] = {.lex_state = 29, .external_lex_state = 4}, - [2906] = {.lex_state = 29, .external_lex_state = 4}, - [2907] = {.lex_state = 29, .external_lex_state = 4}, - [2908] = {.lex_state = 29, .external_lex_state = 4}, - [2909] = {.lex_state = 29, .external_lex_state = 4}, + [2905] = {.lex_state = 29, .external_lex_state = 3}, + [2906] = {.lex_state = 29, .external_lex_state = 3}, + [2907] = {.lex_state = 29, .external_lex_state = 3}, + [2908] = {.lex_state = 29, .external_lex_state = 3}, + [2909] = {.lex_state = 29, .external_lex_state = 3}, [2910] = {.lex_state = 29, .external_lex_state = 4}, [2911] = {.lex_state = 29, .external_lex_state = 4}, - [2912] = {.lex_state = 38, .external_lex_state = 5}, - [2913] = {.lex_state = 27, .external_lex_state = 3}, - [2914] = {.lex_state = 29, .external_lex_state = 4}, - [2915] = {.lex_state = 39, .external_lex_state = 2}, - [2916] = {.lex_state = 39, .external_lex_state = 2}, + [2912] = {.lex_state = 27, .external_lex_state = 3}, + [2913] = {.lex_state = 29, .external_lex_state = 4}, + [2914] = {.lex_state = 29, .external_lex_state = 3}, + [2915] = {.lex_state = 29, .external_lex_state = 4}, + [2916] = {.lex_state = 29, .external_lex_state = 4}, [2917] = {.lex_state = 29, .external_lex_state = 4}, - [2918] = {.lex_state = 29, .external_lex_state = 4}, + [2918] = {.lex_state = 39, .external_lex_state = 5}, [2919] = {.lex_state = 29, .external_lex_state = 4}, - [2920] = {.lex_state = 29, .external_lex_state = 3}, - [2921] = {.lex_state = 29, .external_lex_state = 3}, - [2922] = {.lex_state = 29, .external_lex_state = 4}, + [2920] = {.lex_state = 29, .external_lex_state = 4}, + [2921] = {.lex_state = 29, .external_lex_state = 4}, + [2922] = {.lex_state = 29, .external_lex_state = 3}, [2923] = {.lex_state = 29, .external_lex_state = 4}, - [2924] = {.lex_state = 29, .external_lex_state = 4}, - [2925] = {.lex_state = 29, .external_lex_state = 4}, + [2924] = {.lex_state = 29, .external_lex_state = 3}, + [2925] = {.lex_state = 39, .external_lex_state = 5}, [2926] = {.lex_state = 29, .external_lex_state = 4}, - [2927] = {.lex_state = 29, .external_lex_state = 4}, + [2927] = {.lex_state = 29, .external_lex_state = 3}, [2928] = {.lex_state = 29, .external_lex_state = 3}, - [2929] = {.lex_state = 29, .external_lex_state = 4}, - [2930] = {.lex_state = 29, .external_lex_state = 3}, - [2931] = {.lex_state = 29, .external_lex_state = 3}, + [2929] = {.lex_state = 29, .external_lex_state = 3}, + [2930] = {.lex_state = 39, .external_lex_state = 5}, + [2931] = {.lex_state = 39, .external_lex_state = 5}, [2932] = {.lex_state = 29, .external_lex_state = 3}, [2933] = {.lex_state = 29, .external_lex_state = 3}, - [2934] = {.lex_state = 39, .external_lex_state = 5}, - [2935] = {.lex_state = 39, .external_lex_state = 5}, - [2936] = {.lex_state = 29, .external_lex_state = 4}, + [2934] = {.lex_state = 29, .external_lex_state = 4}, + [2935] = {.lex_state = 29, .external_lex_state = 3}, + [2936] = {.lex_state = 29, .external_lex_state = 3}, [2937] = {.lex_state = 29, .external_lex_state = 3}, - [2938] = {.lex_state = 29, .external_lex_state = 3}, - [2939] = {.lex_state = 39, .external_lex_state = 5}, + [2938] = {.lex_state = 29, .external_lex_state = 4}, + [2939] = {.lex_state = 29, .external_lex_state = 3}, [2940] = {.lex_state = 29, .external_lex_state = 4}, - [2941] = {.lex_state = 29, .external_lex_state = 4}, + [2941] = {.lex_state = 29, .external_lex_state = 3}, [2942] = {.lex_state = 29, .external_lex_state = 4}, [2943] = {.lex_state = 29, .external_lex_state = 3}, - [2944] = {.lex_state = 29, .external_lex_state = 3}, + [2944] = {.lex_state = 29, .external_lex_state = 4}, [2945] = {.lex_state = 29, .external_lex_state = 3}, [2946] = {.lex_state = 29, .external_lex_state = 3}, [2947] = {.lex_state = 29, .external_lex_state = 3}, - [2948] = {.lex_state = 29, .external_lex_state = 3}, - [2949] = {.lex_state = 39, .external_lex_state = 5}, - [2950] = {.lex_state = 39, .external_lex_state = 5}, - [2951] = {.lex_state = 39, .external_lex_state = 5}, + [2948] = {.lex_state = 39, .external_lex_state = 5}, + [2949] = {.lex_state = 29, .external_lex_state = 4}, + [2950] = {.lex_state = 29, .external_lex_state = 4}, + [2951] = {.lex_state = 29, .external_lex_state = 4}, [2952] = {.lex_state = 39, .external_lex_state = 5}, - [2953] = {.lex_state = 39, .external_lex_state = 2}, - [2954] = {.lex_state = 39, .external_lex_state = 2}, - [2955] = {.lex_state = 29, .external_lex_state = 3}, - [2956] = {.lex_state = 39, .external_lex_state = 2}, + [2953] = {.lex_state = 39, .external_lex_state = 5}, + [2954] = {.lex_state = 39, .external_lex_state = 5}, + [2955] = {.lex_state = 39, .external_lex_state = 5}, + [2956] = {.lex_state = 30, .external_lex_state = 4}, [2957] = {.lex_state = 29, .external_lex_state = 4}, - [2958] = {.lex_state = 39, .external_lex_state = 5}, - [2959] = {.lex_state = 39, .external_lex_state = 2}, - [2960] = {.lex_state = 29, .external_lex_state = 3}, - [2961] = {.lex_state = 39, .external_lex_state = 2}, - [2962] = {.lex_state = 29, .external_lex_state = 3}, - [2963] = {.lex_state = 39, .external_lex_state = 5}, - [2964] = {.lex_state = 29, .external_lex_state = 4}, - [2965] = {.lex_state = 29, .external_lex_state = 4}, - [2966] = {.lex_state = 39, .external_lex_state = 5}, - [2967] = {.lex_state = 39, .external_lex_state = 5}, - [2968] = {.lex_state = 39, .external_lex_state = 2}, - [2969] = {.lex_state = 29, .external_lex_state = 3}, - [2970] = {.lex_state = 39, .external_lex_state = 5}, - [2971] = {.lex_state = 39, .external_lex_state = 2}, - [2972] = {.lex_state = 29, .external_lex_state = 3}, - [2973] = {.lex_state = 29, .external_lex_state = 3}, - [2974] = {.lex_state = 29, .external_lex_state = 3}, + [2958] = {.lex_state = 29, .external_lex_state = 4}, + [2959] = {.lex_state = 39, .external_lex_state = 5}, + [2960] = {.lex_state = 29, .external_lex_state = 4}, + [2961] = {.lex_state = 29, .external_lex_state = 4}, + [2962] = {.lex_state = 39, .external_lex_state = 2}, + [2963] = {.lex_state = 29, .external_lex_state = 3}, + [2964] = {.lex_state = 39, .external_lex_state = 2}, + [2965] = {.lex_state = 39, .external_lex_state = 2}, + [2966] = {.lex_state = 39, .external_lex_state = 2}, + [2967] = {.lex_state = 29, .external_lex_state = 4}, + [2968] = {.lex_state = 39, .external_lex_state = 5}, + [2969] = {.lex_state = 39, .external_lex_state = 5}, + [2970] = {.lex_state = 29, .external_lex_state = 4}, + [2971] = {.lex_state = 27, .external_lex_state = 4}, + [2972] = {.lex_state = 29, .external_lex_state = 4}, + [2973] = {.lex_state = 29, .external_lex_state = 4}, + [2974] = {.lex_state = 29, .external_lex_state = 4}, [2975] = {.lex_state = 39, .external_lex_state = 5}, [2976] = {.lex_state = 29, .external_lex_state = 3}, [2977] = {.lex_state = 39, .external_lex_state = 5}, - [2978] = {.lex_state = 29, .external_lex_state = 4}, + [2978] = {.lex_state = 39, .external_lex_state = 5}, [2979] = {.lex_state = 29, .external_lex_state = 4}, [2980] = {.lex_state = 29, .external_lex_state = 4}, - [2981] = {.lex_state = 39, .external_lex_state = 5}, + [2981] = {.lex_state = 29, .external_lex_state = 4}, [2982] = {.lex_state = 39, .external_lex_state = 5}, - [2983] = {.lex_state = 29, .external_lex_state = 4}, - [2984] = {.lex_state = 39, .external_lex_state = 2}, - [2985] = {.lex_state = 29, .external_lex_state = 4}, - [2986] = {.lex_state = 39, .external_lex_state = 2}, + [2983] = {.lex_state = 39, .external_lex_state = 5}, + [2984] = {.lex_state = 29, .external_lex_state = 4}, + [2985] = {.lex_state = 39, .external_lex_state = 2}, + [2986] = {.lex_state = 29, .external_lex_state = 4}, [2987] = {.lex_state = 29, .external_lex_state = 4}, [2988] = {.lex_state = 29, .external_lex_state = 4}, [2989] = {.lex_state = 29, .external_lex_state = 4}, - [2990] = {.lex_state = 29, .external_lex_state = 4}, + [2990] = {.lex_state = 29, .external_lex_state = 3}, [2991] = {.lex_state = 29, .external_lex_state = 4}, - [2992] = {.lex_state = 39, .external_lex_state = 5}, - [2993] = {.lex_state = 29, .external_lex_state = 3}, + [2992] = {.lex_state = 29, .external_lex_state = 4}, + [2993] = {.lex_state = 39, .external_lex_state = 2}, [2994] = {.lex_state = 29, .external_lex_state = 3}, - [2995] = {.lex_state = 29, .external_lex_state = 4}, - [2996] = {.lex_state = 29, .external_lex_state = 4}, + [2995] = {.lex_state = 39, .external_lex_state = 5}, + [2996] = {.lex_state = 39, .external_lex_state = 5}, [2997] = {.lex_state = 29, .external_lex_state = 4}, - [2998] = {.lex_state = 29, .external_lex_state = 3}, - [2999] = {.lex_state = 29, .external_lex_state = 3}, + [2998] = {.lex_state = 29, .external_lex_state = 4}, + [2999] = {.lex_state = 29, .external_lex_state = 4}, [3000] = {.lex_state = 29, .external_lex_state = 4}, - [3001] = {.lex_state = 39, .external_lex_state = 5}, + [3001] = {.lex_state = 29, .external_lex_state = 3}, [3002] = {.lex_state = 29, .external_lex_state = 3}, - [3003] = {.lex_state = 29, .external_lex_state = 4}, + [3003] = {.lex_state = 29, .external_lex_state = 3}, [3004] = {.lex_state = 29, .external_lex_state = 4}, - [3005] = {.lex_state = 29, .external_lex_state = 4}, + [3005] = {.lex_state = 29, .external_lex_state = 3}, [3006] = {.lex_state = 29, .external_lex_state = 4}, [3007] = {.lex_state = 29, .external_lex_state = 3}, - [3008] = {.lex_state = 39, .external_lex_state = 5}, - [3009] = {.lex_state = 29, .external_lex_state = 4}, + [3008] = {.lex_state = 29, .external_lex_state = 4}, + [3009] = {.lex_state = 29, .external_lex_state = 3}, [3010] = {.lex_state = 29, .external_lex_state = 4}, [3011] = {.lex_state = 29, .external_lex_state = 4}, - [3012] = {.lex_state = 39, .external_lex_state = 5}, + [3012] = {.lex_state = 29, .external_lex_state = 3}, [3013] = {.lex_state = 29, .external_lex_state = 4}, - [3014] = {.lex_state = 29, .external_lex_state = 4}, - [3015] = {.lex_state = 29, .external_lex_state = 3}, + [3014] = {.lex_state = 29, .external_lex_state = 3}, + [3015] = {.lex_state = 39, .external_lex_state = 5}, [3016] = {.lex_state = 29, .external_lex_state = 4}, - [3017] = {.lex_state = 29, .external_lex_state = 3}, - [3018] = {.lex_state = 29, .external_lex_state = 4}, - [3019] = {.lex_state = 29, .external_lex_state = 4}, - [3020] = {.lex_state = 29, .external_lex_state = 3}, + [3017] = {.lex_state = 29, .external_lex_state = 4}, + [3018] = {.lex_state = 29, .external_lex_state = 3}, + [3019] = {.lex_state = 29, .external_lex_state = 3}, + [3020] = {.lex_state = 29, .external_lex_state = 4}, [3021] = {.lex_state = 29, .external_lex_state = 4}, - [3022] = {.lex_state = 29, .external_lex_state = 4}, + [3022] = {.lex_state = 29, .external_lex_state = 3}, [3023] = {.lex_state = 29, .external_lex_state = 4}, [3024] = {.lex_state = 29, .external_lex_state = 3}, - [3025] = {.lex_state = 29, .external_lex_state = 4}, + [3025] = {.lex_state = 29, .external_lex_state = 3}, [3026] = {.lex_state = 29, .external_lex_state = 4}, - [3027] = {.lex_state = 29, .external_lex_state = 4}, + [3027] = {.lex_state = 29, .external_lex_state = 3}, [3028] = {.lex_state = 29, .external_lex_state = 4}, - [3029] = {.lex_state = 29, .external_lex_state = 4}, + [3029] = {.lex_state = 29, .external_lex_state = 3}, [3030] = {.lex_state = 29, .external_lex_state = 4}, [3031] = {.lex_state = 29, .external_lex_state = 4}, - [3032] = {.lex_state = 39, .external_lex_state = 5}, - [3033] = {.lex_state = 27, .external_lex_state = 4}, - [3034] = {.lex_state = 29, .external_lex_state = 3}, - [3035] = {.lex_state = 29, .external_lex_state = 3}, + [3032] = {.lex_state = 29, .external_lex_state = 4}, + [3033] = {.lex_state = 29, .external_lex_state = 4}, + [3034] = {.lex_state = 29, .external_lex_state = 4}, + [3035] = {.lex_state = 29, .external_lex_state = 4}, [3036] = {.lex_state = 29, .external_lex_state = 3}, - [3037] = {.lex_state = 29, .external_lex_state = 4}, - [3038] = {.lex_state = 39, .external_lex_state = 5}, - [3039] = {.lex_state = 29, .external_lex_state = 4}, - [3040] = {.lex_state = 29, .external_lex_state = 4}, - [3041] = {.lex_state = 29, .external_lex_state = 4}, - [3042] = {.lex_state = 29, .external_lex_state = 4}, + [3037] = {.lex_state = 39, .external_lex_state = 5}, + [3038] = {.lex_state = 29, .external_lex_state = 3}, + [3039] = {.lex_state = 29, .external_lex_state = 3}, + [3040] = {.lex_state = 29, .external_lex_state = 3}, + [3041] = {.lex_state = 39, .external_lex_state = 5}, + [3042] = {.lex_state = 39, .external_lex_state = 5}, [3043] = {.lex_state = 29, .external_lex_state = 4}, - [3044] = {.lex_state = 29, .external_lex_state = 3}, - [3045] = {.lex_state = 29, .external_lex_state = 4}, + [3044] = {.lex_state = 39, .external_lex_state = 5}, + [3045] = {.lex_state = 39, .external_lex_state = 5}, [3046] = {.lex_state = 29, .external_lex_state = 3}, - [3047] = {.lex_state = 29, .external_lex_state = 4}, - [3048] = {.lex_state = 29, .external_lex_state = 4}, - [3049] = {.lex_state = 29, .external_lex_state = 4}, - [3050] = {.lex_state = 29, .external_lex_state = 4}, + [3047] = {.lex_state = 39, .external_lex_state = 5}, + [3048] = {.lex_state = 29, .external_lex_state = 3}, + [3049] = {.lex_state = 39, .external_lex_state = 5}, + [3050] = {.lex_state = 29, .external_lex_state = 3}, [3051] = {.lex_state = 29, .external_lex_state = 4}, - [3052] = {.lex_state = 29, .external_lex_state = 4}, - [3053] = {.lex_state = 39, .external_lex_state = 5}, - [3054] = {.lex_state = 29, .external_lex_state = 3}, - [3055] = {.lex_state = 39, .external_lex_state = 5}, - [3056] = {.lex_state = 29, .external_lex_state = 4}, + [3052] = {.lex_state = 29, .external_lex_state = 3}, + [3053] = {.lex_state = 29, .external_lex_state = 4}, + [3054] = {.lex_state = 29, .external_lex_state = 4}, + [3055] = {.lex_state = 29, .external_lex_state = 4}, + [3056] = {.lex_state = 29, .external_lex_state = 3}, [3057] = {.lex_state = 29, .external_lex_state = 4}, - [3058] = {.lex_state = 29, .external_lex_state = 4}, - [3059] = {.lex_state = 29, .external_lex_state = 3}, + [3058] = {.lex_state = 29, .external_lex_state = 3}, + [3059] = {.lex_state = 29, .external_lex_state = 4}, [3060] = {.lex_state = 29, .external_lex_state = 4}, - [3061] = {.lex_state = 29, .external_lex_state = 4}, - [3062] = {.lex_state = 39, .external_lex_state = 5}, - [3063] = {.lex_state = 39, .external_lex_state = 5}, - [3064] = {.lex_state = 29, .external_lex_state = 4}, - [3065] = {.lex_state = 29, .external_lex_state = 4}, - [3066] = {.lex_state = 29, .external_lex_state = 4}, - [3067] = {.lex_state = 29, .external_lex_state = 3}, - [3068] = {.lex_state = 29, .external_lex_state = 3}, - [3069] = {.lex_state = 29, .external_lex_state = 3}, - [3070] = {.lex_state = 29, .external_lex_state = 4}, - [3071] = {.lex_state = 39, .external_lex_state = 5}, - [3072] = {.lex_state = 29, .external_lex_state = 3}, - [3073] = {.lex_state = 39, .external_lex_state = 5}, - [3074] = {.lex_state = 29, .external_lex_state = 4}, - [3075] = {.lex_state = 29, .external_lex_state = 4}, - [3076] = {.lex_state = 29, .external_lex_state = 4}, - [3077] = {.lex_state = 29, .external_lex_state = 3}, - [3078] = {.lex_state = 29, .external_lex_state = 3}, - [3079] = {.lex_state = 29, .external_lex_state = 3}, - [3080] = {.lex_state = 29, .external_lex_state = 4}, - [3081] = {.lex_state = 29, .external_lex_state = 4}, - [3082] = {.lex_state = 29, .external_lex_state = 4}, - [3083] = {.lex_state = 29, .external_lex_state = 3}, + [3061] = {.lex_state = 39, .external_lex_state = 5}, + [3062] = {.lex_state = 29, .external_lex_state = 4}, + [3063] = {.lex_state = 29, .external_lex_state = 4}, + [3064] = {.lex_state = 39, .external_lex_state = 5}, + [3065] = {.lex_state = 39, .external_lex_state = 5}, + [3066] = {.lex_state = 29, .external_lex_state = 3}, + [3067] = {.lex_state = 29, .external_lex_state = 4}, + [3068] = {.lex_state = 29, .external_lex_state = 4}, + [3069] = {.lex_state = 29, .external_lex_state = 4}, + [3070] = {.lex_state = 29, .external_lex_state = 3}, + [3071] = {.lex_state = 29, .external_lex_state = 4}, + [3072] = {.lex_state = 29, .external_lex_state = 4}, + [3073] = {.lex_state = 29, .external_lex_state = 3}, + [3074] = {.lex_state = 29, .external_lex_state = 3}, + [3075] = {.lex_state = 39, .external_lex_state = 2}, + [3076] = {.lex_state = 39, .external_lex_state = 2}, + [3077] = {.lex_state = 29, .external_lex_state = 4}, + [3078] = {.lex_state = 39, .external_lex_state = 5}, + [3079] = {.lex_state = 39, .external_lex_state = 5}, + [3080] = {.lex_state = 29, .external_lex_state = 3}, + [3081] = {.lex_state = 29, .external_lex_state = 3}, + [3082] = {.lex_state = 39, .external_lex_state = 5}, + [3083] = {.lex_state = 29, .external_lex_state = 4}, [3084] = {.lex_state = 29, .external_lex_state = 3}, - [3085] = {.lex_state = 29, .external_lex_state = 4}, - [3086] = {.lex_state = 29, .external_lex_state = 3}, + [3085] = {.lex_state = 29, .external_lex_state = 3}, + [3086] = {.lex_state = 29, .external_lex_state = 4}, [3087] = {.lex_state = 29, .external_lex_state = 3}, - [3088] = {.lex_state = 39, .external_lex_state = 5}, - [3089] = {.lex_state = 39, .external_lex_state = 2}, + [3088] = {.lex_state = 39, .external_lex_state = 2}, + [3089] = {.lex_state = 29, .external_lex_state = 4}, [3090] = {.lex_state = 29, .external_lex_state = 3}, - [3091] = {.lex_state = 39, .external_lex_state = 2}, - [3092] = {.lex_state = 29, .external_lex_state = 4}, + [3091] = {.lex_state = 29, .external_lex_state = 3}, + [3092] = {.lex_state = 29, .external_lex_state = 3}, [3093] = {.lex_state = 39, .external_lex_state = 5}, - [3094] = {.lex_state = 29, .external_lex_state = 3}, + [3094] = {.lex_state = 29, .external_lex_state = 4}, [3095] = {.lex_state = 39, .external_lex_state = 2}, - [3096] = {.lex_state = 39, .external_lex_state = 2}, + [3096] = {.lex_state = 39, .external_lex_state = 5}, [3097] = {.lex_state = 29, .external_lex_state = 4}, [3098] = {.lex_state = 29, .external_lex_state = 4}, [3099] = {.lex_state = 29, .external_lex_state = 3}, - [3100] = {.lex_state = 39, .external_lex_state = 5}, + [3100] = {.lex_state = 29, .external_lex_state = 3}, [3101] = {.lex_state = 29, .external_lex_state = 3}, - [3102] = {.lex_state = 39, .external_lex_state = 5}, + [3102] = {.lex_state = 29, .external_lex_state = 3}, [3103] = {.lex_state = 29, .external_lex_state = 3}, - [3104] = {.lex_state = 29, .external_lex_state = 4}, - [3105] = {.lex_state = 29, .external_lex_state = 3}, - [3106] = {.lex_state = 39, .external_lex_state = 5}, - [3107] = {.lex_state = 39, .external_lex_state = 5}, + [3104] = {.lex_state = 29, .external_lex_state = 3}, + [3105] = {.lex_state = 29, .external_lex_state = 4}, + [3106] = {.lex_state = 39, .external_lex_state = 2}, + [3107] = {.lex_state = 39, .external_lex_state = 2}, [3108] = {.lex_state = 29, .external_lex_state = 3}, [3109] = {.lex_state = 29, .external_lex_state = 3}, - [3110] = {.lex_state = 29, .external_lex_state = 3}, - [3111] = {.lex_state = 29, .external_lex_state = 3}, + [3110] = {.lex_state = 29, .external_lex_state = 4}, + [3111] = {.lex_state = 39, .external_lex_state = 5}, [3112] = {.lex_state = 39, .external_lex_state = 5}, - [3113] = {.lex_state = 39, .external_lex_state = 5}, - [3114] = {.lex_state = 29, .external_lex_state = 4}, - [3115] = {.lex_state = 29, .external_lex_state = 4}, - [3116] = {.lex_state = 39, .external_lex_state = 5}, + [3113] = {.lex_state = 29, .external_lex_state = 4}, + [3114] = {.lex_state = 29, .external_lex_state = 3}, + [3115] = {.lex_state = 29, .external_lex_state = 3}, + [3116] = {.lex_state = 29, .external_lex_state = 3}, [3117] = {.lex_state = 29, .external_lex_state = 4}, - [3118] = {.lex_state = 39, .external_lex_state = 2}, + [3118] = {.lex_state = 29, .external_lex_state = 3}, [3119] = {.lex_state = 39, .external_lex_state = 5}, - [3120] = {.lex_state = 39, .external_lex_state = 5}, + [3120] = {.lex_state = 29, .external_lex_state = 3}, [3121] = {.lex_state = 29, .external_lex_state = 3}, - [3122] = {.lex_state = 39, .external_lex_state = 5}, - [3123] = {.lex_state = 29, .external_lex_state = 3}, - [3124] = {.lex_state = 39, .external_lex_state = 2}, + [3122] = {.lex_state = 29, .external_lex_state = 3}, + [3123] = {.lex_state = 29, .external_lex_state = 4}, + [3124] = {.lex_state = 29, .external_lex_state = 3}, [3125] = {.lex_state = 29, .external_lex_state = 3}, - [3126] = {.lex_state = 29, .external_lex_state = 4}, + [3126] = {.lex_state = 29, .external_lex_state = 3}, [3127] = {.lex_state = 29, .external_lex_state = 3}, - [3128] = {.lex_state = 39, .external_lex_state = 5}, + [3128] = {.lex_state = 29, .external_lex_state = 4}, [3129] = {.lex_state = 29, .external_lex_state = 3}, [3130] = {.lex_state = 29, .external_lex_state = 4}, [3131] = {.lex_state = 39, .external_lex_state = 5}, @@ -25270,236 +25334,236 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3133] = {.lex_state = 29, .external_lex_state = 3}, [3134] = {.lex_state = 29, .external_lex_state = 3}, [3135] = {.lex_state = 29, .external_lex_state = 3}, - [3136] = {.lex_state = 29, .external_lex_state = 4}, + [3136] = {.lex_state = 29, .external_lex_state = 3}, [3137] = {.lex_state = 29, .external_lex_state = 3}, - [3138] = {.lex_state = 29, .external_lex_state = 3}, - [3139] = {.lex_state = 29, .external_lex_state = 3}, - [3140] = {.lex_state = 39, .external_lex_state = 5}, + [3138] = {.lex_state = 29, .external_lex_state = 4}, + [3139] = {.lex_state = 39, .external_lex_state = 5}, + [3140] = {.lex_state = 29, .external_lex_state = 4}, [3141] = {.lex_state = 39, .external_lex_state = 5}, [3142] = {.lex_state = 29, .external_lex_state = 4}, - [3143] = {.lex_state = 29, .external_lex_state = 4}, + [3143] = {.lex_state = 29, .external_lex_state = 3}, [3144] = {.lex_state = 29, .external_lex_state = 4}, - [3145] = {.lex_state = 29, .external_lex_state = 4}, - [3146] = {.lex_state = 29, .external_lex_state = 3}, - [3147] = {.lex_state = 29, .external_lex_state = 4}, + [3145] = {.lex_state = 29, .external_lex_state = 3}, + [3146] = {.lex_state = 29, .external_lex_state = 4}, + [3147] = {.lex_state = 39, .external_lex_state = 2}, [3148] = {.lex_state = 29, .external_lex_state = 3}, - [3149] = {.lex_state = 30, .external_lex_state = 4}, + [3149] = {.lex_state = 39, .external_lex_state = 2}, [3150] = {.lex_state = 29, .external_lex_state = 3}, - [3151] = {.lex_state = 29, .external_lex_state = 3}, - [3152] = {.lex_state = 29, .external_lex_state = 4}, - [3153] = {.lex_state = 39, .external_lex_state = 5}, - [3154] = {.lex_state = 39, .external_lex_state = 5}, + [3151] = {.lex_state = 29, .external_lex_state = 4}, + [3152] = {.lex_state = 39, .external_lex_state = 5}, + [3153] = {.lex_state = 29, .external_lex_state = 3}, + [3154] = {.lex_state = 29, .external_lex_state = 4}, [3155] = {.lex_state = 29, .external_lex_state = 4}, - [3156] = {.lex_state = 29, .external_lex_state = 3}, + [3156] = {.lex_state = 29, .external_lex_state = 4}, [3157] = {.lex_state = 29, .external_lex_state = 3}, - [3158] = {.lex_state = 29, .external_lex_state = 3}, + [3158] = {.lex_state = 29, .external_lex_state = 4}, [3159] = {.lex_state = 29, .external_lex_state = 3}, [3160] = {.lex_state = 29, .external_lex_state = 3}, - [3161] = {.lex_state = 29, .external_lex_state = 3}, - [3162] = {.lex_state = 29, .external_lex_state = 4}, - [3163] = {.lex_state = 29, .external_lex_state = 3}, - [3164] = {.lex_state = 29, .external_lex_state = 3}, - [3165] = {.lex_state = 29, .external_lex_state = 3}, + [3161] = {.lex_state = 29, .external_lex_state = 4}, + [3162] = {.lex_state = 29, .external_lex_state = 3}, + [3163] = {.lex_state = 29, .external_lex_state = 4}, + [3164] = {.lex_state = 39, .external_lex_state = 5}, + [3165] = {.lex_state = 29, .external_lex_state = 4}, [3166] = {.lex_state = 29, .external_lex_state = 3}, - [3167] = {.lex_state = 29, .external_lex_state = 4}, + [3167] = {.lex_state = 29, .external_lex_state = 3}, [3168] = {.lex_state = 29, .external_lex_state = 3}, - [3169] = {.lex_state = 29, .external_lex_state = 3}, - [3170] = {.lex_state = 29, .external_lex_state = 3}, - [3171] = {.lex_state = 29, .external_lex_state = 3}, - [3172] = {.lex_state = 29, .external_lex_state = 3}, - [3173] = {.lex_state = 29, .external_lex_state = 3}, - [3174] = {.lex_state = 29, .external_lex_state = 3}, - [3175] = {.lex_state = 29, .external_lex_state = 3}, + [3169] = {.lex_state = 29, .external_lex_state = 4}, + [3170] = {.lex_state = 29, .external_lex_state = 4}, + [3171] = {.lex_state = 29, .external_lex_state = 4}, + [3172] = {.lex_state = 39, .external_lex_state = 5}, + [3173] = {.lex_state = 39, .external_lex_state = 5}, + [3174] = {.lex_state = 29, .external_lex_state = 4}, + [3175] = {.lex_state = 29, .external_lex_state = 4}, [3176] = {.lex_state = 29, .external_lex_state = 3}, - [3177] = {.lex_state = 29, .external_lex_state = 4}, - [3178] = {.lex_state = 29, .external_lex_state = 4}, - [3179] = {.lex_state = 29, .external_lex_state = 3}, + [3177] = {.lex_state = 39, .external_lex_state = 5}, + [3178] = {.lex_state = 39, .external_lex_state = 2}, + [3179] = {.lex_state = 39, .external_lex_state = 5}, [3180] = {.lex_state = 29, .external_lex_state = 4}, - [3181] = {.lex_state = 29, .external_lex_state = 3}, - [3182] = {.lex_state = 29, .external_lex_state = 4}, - [3183] = {.lex_state = 29, .external_lex_state = 4}, + [3181] = {.lex_state = 29, .external_lex_state = 4}, + [3182] = {.lex_state = 29, .external_lex_state = 3}, + [3183] = {.lex_state = 29, .external_lex_state = 3}, [3184] = {.lex_state = 29, .external_lex_state = 4}, [3185] = {.lex_state = 29, .external_lex_state = 4}, - [3186] = {.lex_state = 39, .external_lex_state = 2}, - [3187] = {.lex_state = 29, .external_lex_state = 3}, - [3188] = {.lex_state = 39, .external_lex_state = 5}, - [3189] = {.lex_state = 29, .external_lex_state = 4}, + [3186] = {.lex_state = 29, .external_lex_state = 4}, + [3187] = {.lex_state = 29, .external_lex_state = 4}, + [3188] = {.lex_state = 39, .external_lex_state = 2}, + [3189] = {.lex_state = 39, .external_lex_state = 5}, [3190] = {.lex_state = 29, .external_lex_state = 3}, [3191] = {.lex_state = 29, .external_lex_state = 3}, [3192] = {.lex_state = 29, .external_lex_state = 3}, - [3193] = {.lex_state = 39, .external_lex_state = 5}, + [3193] = {.lex_state = 29, .external_lex_state = 3}, [3194] = {.lex_state = 29, .external_lex_state = 3}, [3195] = {.lex_state = 29, .external_lex_state = 3}, [3196] = {.lex_state = 29, .external_lex_state = 3}, - [3197] = {.lex_state = 29, .external_lex_state = 3}, + [3197] = {.lex_state = 39, .external_lex_state = 2}, [3198] = {.lex_state = 29, .external_lex_state = 3}, [3199] = {.lex_state = 29, .external_lex_state = 3}, [3200] = {.lex_state = 29, .external_lex_state = 3}, - [3201] = {.lex_state = 29, .external_lex_state = 3}, - [3202] = {.lex_state = 29, .external_lex_state = 3}, - [3203] = {.lex_state = 29, .external_lex_state = 3}, - [3204] = {.lex_state = 29, .external_lex_state = 3}, - [3205] = {.lex_state = 32, .external_lex_state = 3}, + [3201] = {.lex_state = 39, .external_lex_state = 5}, + [3202] = {.lex_state = 29, .external_lex_state = 4}, + [3203] = {.lex_state = 39, .external_lex_state = 5}, + [3204] = {.lex_state = 32, .external_lex_state = 3}, + [3205] = {.lex_state = 29, .external_lex_state = 3}, [3206] = {.lex_state = 29, .external_lex_state = 3}, [3207] = {.lex_state = 39, .external_lex_state = 5}, [3208] = {.lex_state = 29, .external_lex_state = 3}, [3209] = {.lex_state = 29, .external_lex_state = 3}, - [3210] = {.lex_state = 39, .external_lex_state = 5}, - [3211] = {.lex_state = 39, .external_lex_state = 2}, - [3212] = {.lex_state = 39, .external_lex_state = 5}, - [3213] = {.lex_state = 39, .external_lex_state = 5}, - [3214] = {.lex_state = 39, .external_lex_state = 5}, - [3215] = {.lex_state = 39, .external_lex_state = 5}, + [3210] = {.lex_state = 29, .external_lex_state = 3}, + [3211] = {.lex_state = 39, .external_lex_state = 5}, + [3212] = {.lex_state = 29, .external_lex_state = 3}, + [3213] = {.lex_state = 29, .external_lex_state = 3}, + [3214] = {.lex_state = 29, .external_lex_state = 3}, + [3215] = {.lex_state = 29, .external_lex_state = 3}, [3216] = {.lex_state = 29, .external_lex_state = 3}, - [3217] = {.lex_state = 29, .external_lex_state = 4}, + [3217] = {.lex_state = 29, .external_lex_state = 3}, [3218] = {.lex_state = 29, .external_lex_state = 3}, - [3219] = {.lex_state = 39, .external_lex_state = 5}, - [3220] = {.lex_state = 39, .external_lex_state = 5}, + [3219] = {.lex_state = 29, .external_lex_state = 3}, + [3220] = {.lex_state = 29, .external_lex_state = 3}, [3221] = {.lex_state = 29, .external_lex_state = 3}, [3222] = {.lex_state = 29, .external_lex_state = 3}, - [3223] = {.lex_state = 29, .external_lex_state = 4}, - [3224] = {.lex_state = 29, .external_lex_state = 3}, - [3225] = {.lex_state = 29, .external_lex_state = 3}, - [3226] = {.lex_state = 29, .external_lex_state = 3}, - [3227] = {.lex_state = 29, .external_lex_state = 3}, - [3228] = {.lex_state = 29, .external_lex_state = 3}, + [3223] = {.lex_state = 39, .external_lex_state = 2}, + [3224] = {.lex_state = 39, .external_lex_state = 5}, + [3225] = {.lex_state = 39, .external_lex_state = 2}, + [3226] = {.lex_state = 29, .external_lex_state = 4}, + [3227] = {.lex_state = 39, .external_lex_state = 5}, + [3228] = {.lex_state = 39, .external_lex_state = 5}, [3229] = {.lex_state = 29, .external_lex_state = 3}, - [3230] = {.lex_state = 29, .external_lex_state = 3}, - [3231] = {.lex_state = 29, .external_lex_state = 3}, - [3232] = {.lex_state = 29, .external_lex_state = 3}, - [3233] = {.lex_state = 29, .external_lex_state = 3}, - [3234] = {.lex_state = 39, .external_lex_state = 2}, - [3235] = {.lex_state = 29, .external_lex_state = 3}, + [3230] = {.lex_state = 29, .external_lex_state = 4}, + [3231] = {.lex_state = 39, .external_lex_state = 5}, + [3232] = {.lex_state = 39, .external_lex_state = 5}, + [3233] = {.lex_state = 39, .external_lex_state = 2}, + [3234] = {.lex_state = 39, .external_lex_state = 5}, + [3235] = {.lex_state = 39, .external_lex_state = 2}, [3236] = {.lex_state = 29, .external_lex_state = 3}, - [3237] = {.lex_state = 39, .external_lex_state = 5}, - [3238] = {.lex_state = 39, .external_lex_state = 2}, - [3239] = {.lex_state = 39, .external_lex_state = 5}, + [3237] = {.lex_state = 29, .external_lex_state = 3}, + [3238] = {.lex_state = 39, .external_lex_state = 5}, + [3239] = {.lex_state = 39, .external_lex_state = 2}, [3240] = {.lex_state = 39, .external_lex_state = 5}, [3241] = {.lex_state = 39, .external_lex_state = 5}, - [3242] = {.lex_state = 39, .external_lex_state = 5}, - [3243] = {.lex_state = 39, .external_lex_state = 2}, - [3244] = {.lex_state = 39, .external_lex_state = 2}, - [3245] = {.lex_state = 29, .external_lex_state = 3}, + [3242] = {.lex_state = 29, .external_lex_state = 3}, + [3243] = {.lex_state = 39, .external_lex_state = 5}, + [3244] = {.lex_state = 39, .external_lex_state = 5}, + [3245] = {.lex_state = 39, .external_lex_state = 5}, [3246] = {.lex_state = 39, .external_lex_state = 2}, [3247] = {.lex_state = 39, .external_lex_state = 5}, - [3248] = {.lex_state = 39, .external_lex_state = 5}, + [3248] = {.lex_state = 29, .external_lex_state = 3}, [3249] = {.lex_state = 29, .external_lex_state = 3}, - [3250] = {.lex_state = 29, .external_lex_state = 3}, + [3250] = {.lex_state = 39, .external_lex_state = 2}, [3251] = {.lex_state = 29, .external_lex_state = 3}, - [3252] = {.lex_state = 29, .external_lex_state = 3}, + [3252] = {.lex_state = 39, .external_lex_state = 5}, [3253] = {.lex_state = 39, .external_lex_state = 5}, - [3254] = {.lex_state = 39, .external_lex_state = 5}, + [3254] = {.lex_state = 39, .external_lex_state = 2}, [3255] = {.lex_state = 29, .external_lex_state = 3}, - [3256] = {.lex_state = 39, .external_lex_state = 2}, - [3257] = {.lex_state = 39, .external_lex_state = 2}, + [3256] = {.lex_state = 29, .external_lex_state = 3}, + [3257] = {.lex_state = 29, .external_lex_state = 3}, [3258] = {.lex_state = 39, .external_lex_state = 5}, - [3259] = {.lex_state = 29, .external_lex_state = 4}, - [3260] = {.lex_state = 39, .external_lex_state = 5}, - [3261] = {.lex_state = 39, .external_lex_state = 5}, - [3262] = {.lex_state = 39, .external_lex_state = 5}, - [3263] = {.lex_state = 39, .external_lex_state = 2}, - [3264] = {.lex_state = 29, .external_lex_state = 3}, - [3265] = {.lex_state = 39, .external_lex_state = 5}, - [3266] = {.lex_state = 39, .external_lex_state = 2}, - [3267] = {.lex_state = 29, .external_lex_state = 3}, + [3259] = {.lex_state = 29, .external_lex_state = 3}, + [3260] = {.lex_state = 29, .external_lex_state = 3}, + [3261] = {.lex_state = 39, .external_lex_state = 2}, + [3262] = {.lex_state = 29, .external_lex_state = 4}, + [3263] = {.lex_state = 29, .external_lex_state = 3}, + [3264] = {.lex_state = 39, .external_lex_state = 5}, + [3265] = {.lex_state = 29, .external_lex_state = 3}, + [3266] = {.lex_state = 39, .external_lex_state = 5}, + [3267] = {.lex_state = 39, .external_lex_state = 5}, [3268] = {.lex_state = 29, .external_lex_state = 3}, - [3269] = {.lex_state = 39, .external_lex_state = 5}, - [3270] = {.lex_state = 39, .external_lex_state = 2}, - [3271] = {.lex_state = 38, .external_lex_state = 5}, + [3269] = {.lex_state = 38, .external_lex_state = 5}, + [3270] = {.lex_state = 29, .external_lex_state = 3}, + [3271] = {.lex_state = 29, .external_lex_state = 3}, [3272] = {.lex_state = 39, .external_lex_state = 2}, [3273] = {.lex_state = 29, .external_lex_state = 3}, [3274] = {.lex_state = 29, .external_lex_state = 3}, - [3275] = {.lex_state = 38, .external_lex_state = 5}, + [3275] = {.lex_state = 29, .external_lex_state = 3}, [3276] = {.lex_state = 29, .external_lex_state = 3}, - [3277] = {.lex_state = 29, .external_lex_state = 3}, - [3278] = {.lex_state = 39, .external_lex_state = 2}, + [3277] = {.lex_state = 29, .external_lex_state = 4}, + [3278] = {.lex_state = 29, .external_lex_state = 3}, [3279] = {.lex_state = 29, .external_lex_state = 3}, - [3280] = {.lex_state = 29, .external_lex_state = 3}, - [3281] = {.lex_state = 29, .external_lex_state = 3}, - [3282] = {.lex_state = 29, .external_lex_state = 3}, + [3280] = {.lex_state = 39, .external_lex_state = 5}, + [3281] = {.lex_state = 39, .external_lex_state = 2}, + [3282] = {.lex_state = 38, .external_lex_state = 5}, [3283] = {.lex_state = 39, .external_lex_state = 2}, [3284] = {.lex_state = 39, .external_lex_state = 5}, - [3285] = {.lex_state = 39, .external_lex_state = 2}, - [3286] = {.lex_state = 38, .external_lex_state = 5}, + [3285] = {.lex_state = 38, .external_lex_state = 5}, + [3286] = {.lex_state = 39, .external_lex_state = 2}, [3287] = {.lex_state = 29, .external_lex_state = 3}, - [3288] = {.lex_state = 38, .external_lex_state = 5}, - [3289] = {.lex_state = 29, .external_lex_state = 3}, - [3290] = {.lex_state = 39, .external_lex_state = 5}, - [3291] = {.lex_state = 38, .external_lex_state = 5}, - [3292] = {.lex_state = 38, .external_lex_state = 2}, + [3288] = {.lex_state = 39, .external_lex_state = 2}, + [3289] = {.lex_state = 38, .external_lex_state = 2}, + [3290] = {.lex_state = 29, .external_lex_state = 3}, + [3291] = {.lex_state = 39, .external_lex_state = 5}, + [3292] = {.lex_state = 29, .external_lex_state = 3}, [3293] = {.lex_state = 29, .external_lex_state = 3}, - [3294] = {.lex_state = 39, .external_lex_state = 5}, - [3295] = {.lex_state = 39, .external_lex_state = 5}, - [3296] = {.lex_state = 29, .external_lex_state = 4}, - [3297] = {.lex_state = 38, .external_lex_state = 5}, - [3298] = {.lex_state = 29, .external_lex_state = 4}, - [3299] = {.lex_state = 39, .external_lex_state = 5}, - [3300] = {.lex_state = 29, .external_lex_state = 3}, + [3294] = {.lex_state = 29, .external_lex_state = 3}, + [3295] = {.lex_state = 38, .external_lex_state = 5}, + [3296] = {.lex_state = 39, .external_lex_state = 5}, + [3297] = {.lex_state = 29, .external_lex_state = 4}, + [3298] = {.lex_state = 29, .external_lex_state = 3}, + [3299] = {.lex_state = 29, .external_lex_state = 3}, + [3300] = {.lex_state = 38, .external_lex_state = 5}, [3301] = {.lex_state = 39, .external_lex_state = 5}, - [3302] = {.lex_state = 29, .external_lex_state = 3}, + [3302] = {.lex_state = 39, .external_lex_state = 5}, [3303] = {.lex_state = 29, .external_lex_state = 3}, [3304] = {.lex_state = 29, .external_lex_state = 3}, [3305] = {.lex_state = 29, .external_lex_state = 3}, - [3306] = {.lex_state = 29, .external_lex_state = 3}, - [3307] = {.lex_state = 39, .external_lex_state = 5}, - [3308] = {.lex_state = 39, .external_lex_state = 2}, - [3309] = {.lex_state = 39, .external_lex_state = 2}, + [3306] = {.lex_state = 39, .external_lex_state = 5}, + [3307] = {.lex_state = 29, .external_lex_state = 3}, + [3308] = {.lex_state = 38, .external_lex_state = 5}, + [3309] = {.lex_state = 29, .external_lex_state = 3}, [3310] = {.lex_state = 39, .external_lex_state = 5}, - [3311] = {.lex_state = 39, .external_lex_state = 5}, - [3312] = {.lex_state = 29, .external_lex_state = 3}, - [3313] = {.lex_state = 39, .external_lex_state = 2}, - [3314] = {.lex_state = 29, .external_lex_state = 3}, - [3315] = {.lex_state = 39, .external_lex_state = 5}, + [3311] = {.lex_state = 39, .external_lex_state = 2}, + [3312] = {.lex_state = 39, .external_lex_state = 5}, + [3313] = {.lex_state = 29, .external_lex_state = 3}, + [3314] = {.lex_state = 39, .external_lex_state = 5}, + [3315] = {.lex_state = 39, .external_lex_state = 2}, [3316] = {.lex_state = 39, .external_lex_state = 2}, [3317] = {.lex_state = 39, .external_lex_state = 5}, [3318] = {.lex_state = 39, .external_lex_state = 5}, [3319] = {.lex_state = 39, .external_lex_state = 5}, [3320] = {.lex_state = 39, .external_lex_state = 5}, - [3321] = {.lex_state = 39, .external_lex_state = 2}, - [3322] = {.lex_state = 39, .external_lex_state = 2}, - [3323] = {.lex_state = 39, .external_lex_state = 2}, - [3324] = {.lex_state = 29, .external_lex_state = 3}, + [3321] = {.lex_state = 39, .external_lex_state = 5}, + [3322] = {.lex_state = 29, .external_lex_state = 3}, + [3323] = {.lex_state = 30, .external_lex_state = 3}, + [3324] = {.lex_state = 39, .external_lex_state = 5}, [3325] = {.lex_state = 39, .external_lex_state = 2}, - [3326] = {.lex_state = 29, .external_lex_state = 3}, + [3326] = {.lex_state = 39, .external_lex_state = 2}, [3327] = {.lex_state = 39, .external_lex_state = 5}, [3328] = {.lex_state = 39, .external_lex_state = 2}, - [3329] = {.lex_state = 39, .external_lex_state = 5}, - [3330] = {.lex_state = 39, .external_lex_state = 5}, - [3331] = {.lex_state = 29, .external_lex_state = 3}, - [3332] = {.lex_state = 39, .external_lex_state = 2}, - [3333] = {.lex_state = 39, .external_lex_state = 2}, - [3334] = {.lex_state = 39, .external_lex_state = 5}, - [3335] = {.lex_state = 39, .external_lex_state = 5}, + [3329] = {.lex_state = 39, .external_lex_state = 2}, + [3330] = {.lex_state = 39, .external_lex_state = 2}, + [3331] = {.lex_state = 39, .external_lex_state = 2}, + [3332] = {.lex_state = 39, .external_lex_state = 5}, + [3333] = {.lex_state = 39, .external_lex_state = 5}, + [3334] = {.lex_state = 39, .external_lex_state = 2}, + [3335] = {.lex_state = 39, .external_lex_state = 2}, [3336] = {.lex_state = 39, .external_lex_state = 5}, - [3337] = {.lex_state = 39, .external_lex_state = 2}, - [3338] = {.lex_state = 39, .external_lex_state = 5}, - [3339] = {.lex_state = 39, .external_lex_state = 5}, - [3340] = {.lex_state = 39, .external_lex_state = 5}, - [3341] = {.lex_state = 39, .external_lex_state = 2}, + [3337] = {.lex_state = 39, .external_lex_state = 5}, + [3338] = {.lex_state = 39, .external_lex_state = 2}, + [3339] = {.lex_state = 39, .external_lex_state = 2}, + [3340] = {.lex_state = 29, .external_lex_state = 3}, + [3341] = {.lex_state = 39, .external_lex_state = 5}, [3342] = {.lex_state = 29, .external_lex_state = 3}, [3343] = {.lex_state = 39, .external_lex_state = 2}, - [3344] = {.lex_state = 39, .external_lex_state = 2}, - [3345] = {.lex_state = 29, .external_lex_state = 3}, - [3346] = {.lex_state = 30, .external_lex_state = 3}, + [3344] = {.lex_state = 39, .external_lex_state = 5}, + [3345] = {.lex_state = 39, .external_lex_state = 2}, + [3346] = {.lex_state = 39, .external_lex_state = 2}, [3347] = {.lex_state = 39, .external_lex_state = 2}, - [3348] = {.lex_state = 39, .external_lex_state = 2}, + [3348] = {.lex_state = 39, .external_lex_state = 5}, [3349] = {.lex_state = 39, .external_lex_state = 2}, [3350] = {.lex_state = 29, .external_lex_state = 3}, [3351] = {.lex_state = 29, .external_lex_state = 3}, [3352] = {.lex_state = 29, .external_lex_state = 3}, [3353] = {.lex_state = 29, .external_lex_state = 3}, - [3354] = {.lex_state = 29, .external_lex_state = 3}, - [3355] = {.lex_state = 39, .external_lex_state = 2}, + [3354] = {.lex_state = 39, .external_lex_state = 2}, + [3355] = {.lex_state = 29, .external_lex_state = 3}, [3356] = {.lex_state = 29, .external_lex_state = 3}, [3357] = {.lex_state = 29, .external_lex_state = 3}, [3358] = {.lex_state = 29, .external_lex_state = 3}, [3359] = {.lex_state = 29, .external_lex_state = 3}, - [3360] = {.lex_state = 38, .external_lex_state = 5}, - [3361] = {.lex_state = 38, .external_lex_state = 5}, + [3360] = {.lex_state = 29, .external_lex_state = 3}, + [3361] = {.lex_state = 29, .external_lex_state = 3}, [3362] = {.lex_state = 38, .external_lex_state = 5}, [3363] = {.lex_state = 38, .external_lex_state = 5}, [3364] = {.lex_state = 38, .external_lex_state = 5}, - [3365] = {.lex_state = 39, .external_lex_state = 2}, + [3365] = {.lex_state = 38, .external_lex_state = 5}, [3366] = {.lex_state = 38, .external_lex_state = 5}, [3367] = {.lex_state = 38, .external_lex_state = 5}, [3368] = {.lex_state = 38, .external_lex_state = 5}, @@ -25510,9 +25574,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3373] = {.lex_state = 38, .external_lex_state = 5}, [3374] = {.lex_state = 38, .external_lex_state = 5}, [3375] = {.lex_state = 38, .external_lex_state = 5}, - [3376] = {.lex_state = 38, .external_lex_state = 5}, - [3377] = {.lex_state = 38, .external_lex_state = 5}, - [3378] = {.lex_state = 38, .external_lex_state = 5}, + [3376] = {.lex_state = 39, .external_lex_state = 2}, + [3377] = {.lex_state = 39, .external_lex_state = 2}, + [3378] = {.lex_state = 39, .external_lex_state = 2}, [3379] = {.lex_state = 38, .external_lex_state = 5}, [3380] = {.lex_state = 38, .external_lex_state = 5}, [3381] = {.lex_state = 38, .external_lex_state = 5}, @@ -25538,13 +25602,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3401] = {.lex_state = 38, .external_lex_state = 5}, [3402] = {.lex_state = 38, .external_lex_state = 5}, [3403] = {.lex_state = 38, .external_lex_state = 5}, - [3404] = {.lex_state = 39, .external_lex_state = 2}, - [3405] = {.lex_state = 39, .external_lex_state = 2}, + [3404] = {.lex_state = 38, .external_lex_state = 5}, + [3405] = {.lex_state = 38, .external_lex_state = 5}, [3406] = {.lex_state = 38, .external_lex_state = 5}, - [3407] = {.lex_state = 38, .external_lex_state = 2}, - [3408] = {.lex_state = 39, .external_lex_state = 2}, + [3407] = {.lex_state = 38, .external_lex_state = 5}, + [3408] = {.lex_state = 38, .external_lex_state = 5}, [3409] = {.lex_state = 38, .external_lex_state = 5}, - [3410] = {.lex_state = 38, .external_lex_state = 5}, + [3410] = {.lex_state = 38, .external_lex_state = 2}, [3411] = {.lex_state = 38, .external_lex_state = 5}, [3412] = {.lex_state = 38, .external_lex_state = 5}, [3413] = {.lex_state = 38, .external_lex_state = 5}, @@ -25552,40 +25616,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3415] = {.lex_state = 38, .external_lex_state = 5}, [3416] = {.lex_state = 38, .external_lex_state = 5}, [3417] = {.lex_state = 39, .external_lex_state = 2}, - [3418] = {.lex_state = 38, .external_lex_state = 2}, - [3419] = {.lex_state = 38, .external_lex_state = 2}, + [3418] = {.lex_state = 39, .external_lex_state = 2}, + [3419] = {.lex_state = 38, .external_lex_state = 5}, [3420] = {.lex_state = 39, .external_lex_state = 2}, [3421] = {.lex_state = 39, .external_lex_state = 2}, - [3422] = {.lex_state = 39, .external_lex_state = 2}, + [3422] = {.lex_state = 38, .external_lex_state = 2}, [3423] = {.lex_state = 39, .external_lex_state = 2}, [3424] = {.lex_state = 38, .external_lex_state = 2}, [3425] = {.lex_state = 38, .external_lex_state = 2}, - [3426] = {.lex_state = 39, .external_lex_state = 2}, + [3426] = {.lex_state = 38, .external_lex_state = 2}, [3427] = {.lex_state = 38, .external_lex_state = 2}, - [3428] = {.lex_state = 38, .external_lex_state = 2}, + [3428] = {.lex_state = 39, .external_lex_state = 2}, [3429] = {.lex_state = 38, .external_lex_state = 2}, [3430] = {.lex_state = 39, .external_lex_state = 2}, - [3431] = {.lex_state = 38, .external_lex_state = 2}, + [3431] = {.lex_state = 39, .external_lex_state = 2}, [3432] = {.lex_state = 39, .external_lex_state = 2}, - [3433] = {.lex_state = 39, .external_lex_state = 2}, + [3433] = {.lex_state = 38, .external_lex_state = 2}, [3434] = {.lex_state = 39, .external_lex_state = 2}, - [3435] = {.lex_state = 39, .external_lex_state = 2}, + [3435] = {.lex_state = 38, .external_lex_state = 2}, [3436] = {.lex_state = 39, .external_lex_state = 2}, [3437] = {.lex_state = 39, .external_lex_state = 2}, - [3438] = {.lex_state = 39, .external_lex_state = 2}, + [3438] = {.lex_state = 38, .external_lex_state = 2}, [3439] = {.lex_state = 39, .external_lex_state = 2}, [3440] = {.lex_state = 39, .external_lex_state = 2}, [3441] = {.lex_state = 39, .external_lex_state = 2}, [3442] = {.lex_state = 39, .external_lex_state = 2}, [3443] = {.lex_state = 39, .external_lex_state = 2}, [3444] = {.lex_state = 39, .external_lex_state = 2}, - [3445] = {.lex_state = 39, .external_lex_state = 2}, + [3445] = {.lex_state = 38, .external_lex_state = 2}, [3446] = {.lex_state = 39, .external_lex_state = 2}, [3447] = {.lex_state = 39, .external_lex_state = 2}, [3448] = {.lex_state = 39, .external_lex_state = 2}, [3449] = {.lex_state = 39, .external_lex_state = 2}, [3450] = {.lex_state = 39, .external_lex_state = 2}, - [3451] = {.lex_state = 38, .external_lex_state = 2}, + [3451] = {.lex_state = 39, .external_lex_state = 2}, [3452] = {.lex_state = 39, .external_lex_state = 2}, [3453] = {.lex_state = 39, .external_lex_state = 2}, [3454] = {.lex_state = 39, .external_lex_state = 2}, @@ -25594,63 +25658,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3457] = {.lex_state = 39, .external_lex_state = 2}, [3458] = {.lex_state = 39, .external_lex_state = 2}, [3459] = {.lex_state = 39, .external_lex_state = 2}, - [3460] = {.lex_state = 39, .external_lex_state = 2}, + [3460] = {.lex_state = 38, .external_lex_state = 2}, [3461] = {.lex_state = 39, .external_lex_state = 2}, [3462] = {.lex_state = 39, .external_lex_state = 2}, - [3463] = {.lex_state = 38, .external_lex_state = 2}, + [3463] = {.lex_state = 39, .external_lex_state = 2}, [3464] = {.lex_state = 39, .external_lex_state = 2}, - [3465] = {.lex_state = 38, .external_lex_state = 2}, + [3465] = {.lex_state = 39, .external_lex_state = 2}, [3466] = {.lex_state = 39, .external_lex_state = 2}, [3467] = {.lex_state = 39, .external_lex_state = 2}, [3468] = {.lex_state = 39, .external_lex_state = 2}, - [3469] = {.lex_state = 39, .external_lex_state = 2}, + [3469] = {.lex_state = 405, .external_lex_state = 2}, [3470] = {.lex_state = 39, .external_lex_state = 2}, - [3471] = {.lex_state = 39, .external_lex_state = 2}, + [3471] = {.lex_state = 405, .external_lex_state = 2}, [3472] = {.lex_state = 39, .external_lex_state = 2}, [3473] = {.lex_state = 39, .external_lex_state = 2}, - [3474] = {.lex_state = 405, .external_lex_state = 2}, - [3475] = {.lex_state = 405, .external_lex_state = 2}, + [3474] = {.lex_state = 39, .external_lex_state = 2}, + [3475] = {.lex_state = 39, .external_lex_state = 2}, [3476] = {.lex_state = 39, .external_lex_state = 2}, [3477] = {.lex_state = 39, .external_lex_state = 2}, [3478] = {.lex_state = 39, .external_lex_state = 2}, [3479] = {.lex_state = 39, .external_lex_state = 2}, - [3480] = {.lex_state = 405, .external_lex_state = 2}, + [3480] = {.lex_state = 38, .external_lex_state = 2}, [3481] = {.lex_state = 39, .external_lex_state = 2}, [3482] = {.lex_state = 39, .external_lex_state = 2}, - [3483] = {.lex_state = 405, .external_lex_state = 2}, - [3484] = {.lex_state = 405, .external_lex_state = 2}, - [3485] = {.lex_state = 38, .external_lex_state = 2}, + [3483] = {.lex_state = 39, .external_lex_state = 2}, + [3484] = {.lex_state = 39, .external_lex_state = 2}, + [3485] = {.lex_state = 39, .external_lex_state = 2}, [3486] = {.lex_state = 39, .external_lex_state = 2}, [3487] = {.lex_state = 39, .external_lex_state = 2}, [3488] = {.lex_state = 39, .external_lex_state = 2}, - [3489] = {.lex_state = 38, .external_lex_state = 2}, + [3489] = {.lex_state = 39, .external_lex_state = 2}, [3490] = {.lex_state = 39, .external_lex_state = 2}, - [3491] = {.lex_state = 39, .external_lex_state = 2}, + [3491] = {.lex_state = 405, .external_lex_state = 2}, [3492] = {.lex_state = 39, .external_lex_state = 2}, - [3493] = {.lex_state = 39, .external_lex_state = 2}, - [3494] = {.lex_state = 39, .external_lex_state = 2}, + [3493] = {.lex_state = 405, .external_lex_state = 2}, + [3494] = {.lex_state = 405, .external_lex_state = 2}, [3495] = {.lex_state = 39, .external_lex_state = 2}, - [3496] = {.lex_state = 39, .external_lex_state = 2}, - [3497] = {.lex_state = 39, .external_lex_state = 2}, - [3498] = {.lex_state = 39, .external_lex_state = 2}, + [3496] = {.lex_state = 38, .external_lex_state = 2}, + [3497] = {.lex_state = 405, .external_lex_state = 2}, + [3498] = {.lex_state = 405, .external_lex_state = 2}, [3499] = {.lex_state = 405, .external_lex_state = 2}, [3500] = {.lex_state = 39, .external_lex_state = 2}, - [3501] = {.lex_state = 38, .external_lex_state = 2}, - [3502] = {.lex_state = 405, .external_lex_state = 2}, - [3503] = {.lex_state = 39, .external_lex_state = 2}, - [3504] = {.lex_state = 405, .external_lex_state = 2}, + [3501] = {.lex_state = 39, .external_lex_state = 2}, + [3502] = {.lex_state = 39, .external_lex_state = 2}, + [3503] = {.lex_state = 405, .external_lex_state = 2}, + [3504] = {.lex_state = 39, .external_lex_state = 2}, [3505] = {.lex_state = 39, .external_lex_state = 2}, - [3506] = {.lex_state = 405, .external_lex_state = 2}, + [3506] = {.lex_state = 39, .external_lex_state = 2}, [3507] = {.lex_state = 39, .external_lex_state = 2}, - [3508] = {.lex_state = 39, .external_lex_state = 2}, - [3509] = {.lex_state = 39, .external_lex_state = 2}, + [3508] = {.lex_state = 405, .external_lex_state = 2}, + [3509] = {.lex_state = 405, .external_lex_state = 2}, [3510] = {.lex_state = 39, .external_lex_state = 2}, - [3511] = {.lex_state = 405, .external_lex_state = 2}, - [3512] = {.lex_state = 405, .external_lex_state = 2}, + [3511] = {.lex_state = 39, .external_lex_state = 2}, + [3512] = {.lex_state = 39, .external_lex_state = 2}, [3513] = {.lex_state = 39, .external_lex_state = 2}, [3514] = {.lex_state = 39, .external_lex_state = 2}, - [3515] = {.lex_state = 405, .external_lex_state = 2}, - [3516] = {.lex_state = 39, .external_lex_state = 2}, + [3515] = {.lex_state = 38, .external_lex_state = 2}, + [3516] = {.lex_state = 405, .external_lex_state = 2}, [3517] = {.lex_state = 39, .external_lex_state = 2}, [3518] = {.lex_state = 39, .external_lex_state = 2}, [3519] = {.lex_state = 39, .external_lex_state = 2}, @@ -25671,24 +25735,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3534] = {.lex_state = 39, .external_lex_state = 2}, [3535] = {.lex_state = 39, .external_lex_state = 2}, [3536] = {.lex_state = 39, .external_lex_state = 2}, - [3537] = {.lex_state = 38, .external_lex_state = 2}, - [3538] = {.lex_state = 38, .external_lex_state = 2}, + [3537] = {.lex_state = 39, .external_lex_state = 2}, + [3538] = {.lex_state = 39, .external_lex_state = 2}, [3539] = {.lex_state = 39, .external_lex_state = 2}, [3540] = {.lex_state = 39, .external_lex_state = 2}, [3541] = {.lex_state = 39, .external_lex_state = 2}, [3542] = {.lex_state = 39, .external_lex_state = 2}, - [3543] = {.lex_state = 38, .external_lex_state = 2}, + [3543] = {.lex_state = 39, .external_lex_state = 2}, [3544] = {.lex_state = 39, .external_lex_state = 2}, [3545] = {.lex_state = 39, .external_lex_state = 2}, [3546] = {.lex_state = 39, .external_lex_state = 2}, [3547] = {.lex_state = 39, .external_lex_state = 2}, - [3548] = {.lex_state = 38, .external_lex_state = 2}, + [3548] = {.lex_state = 39, .external_lex_state = 2}, [3549] = {.lex_state = 39, .external_lex_state = 2}, [3550] = {.lex_state = 39, .external_lex_state = 2}, [3551] = {.lex_state = 39, .external_lex_state = 2}, [3552] = {.lex_state = 39, .external_lex_state = 2}, [3553] = {.lex_state = 39, .external_lex_state = 2}, - [3554] = {.lex_state = 39, .external_lex_state = 2}, + [3554] = {.lex_state = 38, .external_lex_state = 2}, [3555] = {.lex_state = 39, .external_lex_state = 2}, [3556] = {.lex_state = 39, .external_lex_state = 2}, [3557] = {.lex_state = 39, .external_lex_state = 2}, @@ -25698,12 +25762,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3561] = {.lex_state = 39, .external_lex_state = 2}, [3562] = {.lex_state = 39, .external_lex_state = 2}, [3563] = {.lex_state = 39, .external_lex_state = 2}, - [3564] = {.lex_state = 38, .external_lex_state = 2}, + [3564] = {.lex_state = 39, .external_lex_state = 2}, [3565] = {.lex_state = 39, .external_lex_state = 2}, [3566] = {.lex_state = 39, .external_lex_state = 2}, [3567] = {.lex_state = 39, .external_lex_state = 2}, - [3568] = {.lex_state = 39, .external_lex_state = 2}, - [3569] = {.lex_state = 39, .external_lex_state = 2}, + [3568] = {.lex_state = 38, .external_lex_state = 2}, + [3569] = {.lex_state = 38, .external_lex_state = 2}, [3570] = {.lex_state = 39, .external_lex_state = 2}, [3571] = {.lex_state = 39, .external_lex_state = 2}, [3572] = {.lex_state = 39, .external_lex_state = 2}, @@ -25712,13 +25776,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3575] = {.lex_state = 39, .external_lex_state = 2}, [3576] = {.lex_state = 39, .external_lex_state = 2}, [3577] = {.lex_state = 39, .external_lex_state = 2}, - [3578] = {.lex_state = 38, .external_lex_state = 2}, + [3578] = {.lex_state = 39, .external_lex_state = 2}, [3579] = {.lex_state = 39, .external_lex_state = 2}, [3580] = {.lex_state = 39, .external_lex_state = 2}, - [3581] = {.lex_state = 39, .external_lex_state = 2}, + [3581] = {.lex_state = 38, .external_lex_state = 2}, [3582] = {.lex_state = 39, .external_lex_state = 2}, [3583] = {.lex_state = 39, .external_lex_state = 2}, - [3584] = {.lex_state = 39, .external_lex_state = 2}, + [3584] = {.lex_state = 38, .external_lex_state = 2}, [3585] = {.lex_state = 39, .external_lex_state = 2}, [3586] = {.lex_state = 39, .external_lex_state = 2}, [3587] = {.lex_state = 39, .external_lex_state = 2}, @@ -25728,34 +25792,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3591] = {.lex_state = 39, .external_lex_state = 2}, [3592] = {.lex_state = 39, .external_lex_state = 2}, [3593] = {.lex_state = 39, .external_lex_state = 2}, - [3594] = {.lex_state = 38, .external_lex_state = 2}, - [3595] = {.lex_state = 39, .external_lex_state = 2}, + [3594] = {.lex_state = 39, .external_lex_state = 2}, + [3595] = {.lex_state = 38, .external_lex_state = 2}, [3596] = {.lex_state = 39, .external_lex_state = 2}, [3597] = {.lex_state = 39, .external_lex_state = 2}, - [3598] = {.lex_state = 86, .external_lex_state = 2}, - [3599] = {.lex_state = 49, .external_lex_state = 2}, - [3600] = {.lex_state = 49, .external_lex_state = 2}, + [3598] = {.lex_state = 39, .external_lex_state = 2}, + [3599] = {.lex_state = 38, .external_lex_state = 2}, + [3600] = {.lex_state = 86, .external_lex_state = 2}, [3601] = {.lex_state = 49, .external_lex_state = 2}, [3602] = {.lex_state = 49, .external_lex_state = 2}, [3603] = {.lex_state = 49, .external_lex_state = 2}, [3604] = {.lex_state = 49, .external_lex_state = 2}, - [3605] = {.lex_state = 63, .external_lex_state = 2}, - [3606] = {.lex_state = 63, .external_lex_state = 2}, - [3607] = {.lex_state = 49, .external_lex_state = 2}, - [3608] = {.lex_state = 49, .external_lex_state = 2}, + [3605] = {.lex_state = 49, .external_lex_state = 2}, + [3606] = {.lex_state = 49, .external_lex_state = 2}, + [3607] = {.lex_state = 63, .external_lex_state = 2}, + [3608] = {.lex_state = 63, .external_lex_state = 2}, [3609] = {.lex_state = 49, .external_lex_state = 2}, [3610] = {.lex_state = 49, .external_lex_state = 2}, [3611] = {.lex_state = 49, .external_lex_state = 2}, [3612] = {.lex_state = 49, .external_lex_state = 2}, [3613] = {.lex_state = 49, .external_lex_state = 2}, - [3614] = {.lex_state = 49, .external_lex_state = 2}, + [3614] = {.lex_state = 63, .external_lex_state = 2}, [3615] = {.lex_state = 49, .external_lex_state = 2}, [3616] = {.lex_state = 49, .external_lex_state = 2}, [3617] = {.lex_state = 49, .external_lex_state = 2}, [3618] = {.lex_state = 49, .external_lex_state = 2}, [3619] = {.lex_state = 49, .external_lex_state = 2}, [3620] = {.lex_state = 49, .external_lex_state = 2}, - [3621] = {.lex_state = 63, .external_lex_state = 2}, + [3621] = {.lex_state = 49, .external_lex_state = 2}, [3622] = {.lex_state = 49, .external_lex_state = 2}, [3623] = {.lex_state = 49, .external_lex_state = 2}, [3624] = {.lex_state = 49, .external_lex_state = 2}, @@ -25776,107 +25840,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3639] = {.lex_state = 49, .external_lex_state = 2}, [3640] = {.lex_state = 49, .external_lex_state = 2}, [3641] = {.lex_state = 49, .external_lex_state = 2}, - [3642] = {.lex_state = 55, .external_lex_state = 2}, - [3643] = {.lex_state = 55, .external_lex_state = 2}, - [3644] = {.lex_state = 64, .external_lex_state = 2}, - [3645] = {.lex_state = 64, .external_lex_state = 2}, + [3642] = {.lex_state = 49, .external_lex_state = 2}, + [3643] = {.lex_state = 49, .external_lex_state = 2}, + [3644] = {.lex_state = 55, .external_lex_state = 2}, + [3645] = {.lex_state = 55, .external_lex_state = 2}, [3646] = {.lex_state = 55, .external_lex_state = 2}, - [3647] = {.lex_state = 63, .external_lex_state = 2}, + [3647] = {.lex_state = 55, .external_lex_state = 2}, [3648] = {.lex_state = 55, .external_lex_state = 2}, - [3649] = {.lex_state = 55, .external_lex_state = 2}, - [3650] = {.lex_state = 49, .external_lex_state = 5}, + [3649] = {.lex_state = 64, .external_lex_state = 2}, + [3650] = {.lex_state = 64, .external_lex_state = 2}, [3651] = {.lex_state = 63, .external_lex_state = 2}, [3652] = {.lex_state = 63, .external_lex_state = 2}, - [3653] = {.lex_state = 49, .external_lex_state = 2}, - [3654] = {.lex_state = 63, .external_lex_state = 2}, - [3655] = {.lex_state = 63, .external_lex_state = 2}, - [3656] = {.lex_state = 63, .external_lex_state = 2}, + [3653] = {.lex_state = 63, .external_lex_state = 2}, + [3654] = {.lex_state = 49, .external_lex_state = 5}, + [3655] = {.lex_state = 49, .external_lex_state = 2}, + [3656] = {.lex_state = 49, .external_lex_state = 5}, [3657] = {.lex_state = 63, .external_lex_state = 2}, - [3658] = {.lex_state = 63, .external_lex_state = 2}, - [3659] = {.lex_state = 49, .external_lex_state = 2}, - [3660] = {.lex_state = 49, .external_lex_state = 2}, - [3661] = {.lex_state = 48, .external_lex_state = 5}, + [3658] = {.lex_state = 49, .external_lex_state = 5}, + [3659] = {.lex_state = 63, .external_lex_state = 2}, + [3660] = {.lex_state = 63, .external_lex_state = 2}, + [3661] = {.lex_state = 63, .external_lex_state = 2}, [3662] = {.lex_state = 63, .external_lex_state = 2}, - [3663] = {.lex_state = 63, .external_lex_state = 2}, - [3664] = {.lex_state = 48, .external_lex_state = 5}, + [3663] = {.lex_state = 49, .external_lex_state = 2}, + [3664] = {.lex_state = 63, .external_lex_state = 2}, [3665] = {.lex_state = 63, .external_lex_state = 2}, [3666] = {.lex_state = 63, .external_lex_state = 2}, - [3667] = {.lex_state = 63, .external_lex_state = 2}, + [3667] = {.lex_state = 49, .external_lex_state = 2}, [3668] = {.lex_state = 63, .external_lex_state = 2}, [3669] = {.lex_state = 63, .external_lex_state = 2}, [3670] = {.lex_state = 63, .external_lex_state = 2}, - [3671] = {.lex_state = 49, .external_lex_state = 5}, + [3671] = {.lex_state = 63, .external_lex_state = 2}, [3672] = {.lex_state = 63, .external_lex_state = 2}, [3673] = {.lex_state = 63, .external_lex_state = 2}, - [3674] = {.lex_state = 49, .external_lex_state = 5}, - [3675] = {.lex_state = 49, .external_lex_state = 2}, + [3674] = {.lex_state = 49, .external_lex_state = 2}, + [3675] = {.lex_state = 63, .external_lex_state = 2}, [3676] = {.lex_state = 63, .external_lex_state = 2}, [3677] = {.lex_state = 63, .external_lex_state = 2}, - [3678] = {.lex_state = 63, .external_lex_state = 2}, - [3679] = {.lex_state = 63, .external_lex_state = 2}, + [3678] = {.lex_state = 48, .external_lex_state = 5}, + [3679] = {.lex_state = 48, .external_lex_state = 5}, [3680] = {.lex_state = 63, .external_lex_state = 2}, [3681] = {.lex_state = 63, .external_lex_state = 2}, [3682] = {.lex_state = 63, .external_lex_state = 2}, - [3683] = {.lex_state = 405, .external_lex_state = 2}, - [3684] = {.lex_state = 405, .external_lex_state = 2}, + [3683] = {.lex_state = 63, .external_lex_state = 2}, + [3684] = {.lex_state = 63, .external_lex_state = 2}, [3685] = {.lex_state = 63, .external_lex_state = 2}, - [3686] = {.lex_state = 405, .external_lex_state = 2}, - [3687] = {.lex_state = 405, .external_lex_state = 2}, - [3688] = {.lex_state = 405, .external_lex_state = 2}, - [3689] = {.lex_state = 49, .external_lex_state = 6}, - [3690] = {.lex_state = 49, .external_lex_state = 6}, - [3691] = {.lex_state = 405, .external_lex_state = 2}, + [3686] = {.lex_state = 63, .external_lex_state = 2}, + [3687] = {.lex_state = 63, .external_lex_state = 2}, + [3688] = {.lex_state = 63, .external_lex_state = 2}, + [3689] = {.lex_state = 63, .external_lex_state = 2}, + [3690] = {.lex_state = 63, .external_lex_state = 2}, + [3691] = {.lex_state = 63, .external_lex_state = 2}, [3692] = {.lex_state = 63, .external_lex_state = 2}, - [3693] = {.lex_state = 405, .external_lex_state = 2}, + [3693] = {.lex_state = 63, .external_lex_state = 2}, [3694] = {.lex_state = 63, .external_lex_state = 2}, [3695] = {.lex_state = 63, .external_lex_state = 2}, - [3696] = {.lex_state = 49, .external_lex_state = 6}, - [3697] = {.lex_state = 63, .external_lex_state = 2}, - [3698] = {.lex_state = 63, .external_lex_state = 2}, + [3696] = {.lex_state = 63, .external_lex_state = 2}, + [3697] = {.lex_state = 405, .external_lex_state = 2}, + [3698] = {.lex_state = 405, .external_lex_state = 2}, [3699] = {.lex_state = 63, .external_lex_state = 2}, [3700] = {.lex_state = 63, .external_lex_state = 2}, - [3701] = {.lex_state = 63, .external_lex_state = 2}, - [3702] = {.lex_state = 63, .external_lex_state = 2}, + [3701] = {.lex_state = 405, .external_lex_state = 2}, + [3702] = {.lex_state = 405, .external_lex_state = 2}, [3703] = {.lex_state = 63, .external_lex_state = 2}, - [3704] = {.lex_state = 63, .external_lex_state = 2}, - [3705] = {.lex_state = 63, .external_lex_state = 2}, + [3704] = {.lex_state = 405, .external_lex_state = 2}, + [3705] = {.lex_state = 405, .external_lex_state = 2}, [3706] = {.lex_state = 63, .external_lex_state = 2}, - [3707] = {.lex_state = 63, .external_lex_state = 2}, - [3708] = {.lex_state = 63, .external_lex_state = 2}, - [3709] = {.lex_state = 63, .external_lex_state = 2}, - [3710] = {.lex_state = 63, .external_lex_state = 2}, + [3707] = {.lex_state = 405, .external_lex_state = 2}, + [3708] = {.lex_state = 405, .external_lex_state = 2}, + [3709] = {.lex_state = 405, .external_lex_state = 2}, + [3710] = {.lex_state = 48, .external_lex_state = 5}, [3711] = {.lex_state = 405, .external_lex_state = 2}, - [3712] = {.lex_state = 63, .external_lex_state = 2}, - [3713] = {.lex_state = 63, .external_lex_state = 2}, - [3714] = {.lex_state = 63, .external_lex_state = 2}, + [3712] = {.lex_state = 405, .external_lex_state = 2}, + [3713] = {.lex_state = 405, .external_lex_state = 2}, + [3714] = {.lex_state = 405, .external_lex_state = 2}, [3715] = {.lex_state = 63, .external_lex_state = 2}, - [3716] = {.lex_state = 63, .external_lex_state = 2}, + [3716] = {.lex_state = 405, .external_lex_state = 2}, [3717] = {.lex_state = 63, .external_lex_state = 2}, [3718] = {.lex_state = 63, .external_lex_state = 2}, - [3719] = {.lex_state = 63, .external_lex_state = 2}, - [3720] = {.lex_state = 63, .external_lex_state = 2}, - [3721] = {.lex_state = 405, .external_lex_state = 2}, - [3722] = {.lex_state = 405, .external_lex_state = 2}, - [3723] = {.lex_state = 49, .external_lex_state = 5}, + [3719] = {.lex_state = 49, .external_lex_state = 6}, + [3720] = {.lex_state = 405, .external_lex_state = 2}, + [3721] = {.lex_state = 49, .external_lex_state = 6}, + [3722] = {.lex_state = 63, .external_lex_state = 2}, + [3723] = {.lex_state = 63, .external_lex_state = 2}, [3724] = {.lex_state = 49, .external_lex_state = 5}, - [3725] = {.lex_state = 49, .external_lex_state = 5}, - [3726] = {.lex_state = 405, .external_lex_state = 2}, - [3727] = {.lex_state = 48, .external_lex_state = 5}, - [3728] = {.lex_state = 405, .external_lex_state = 2}, - [3729] = {.lex_state = 405, .external_lex_state = 2}, - [3730] = {.lex_state = 405, .external_lex_state = 2}, - [3731] = {.lex_state = 63, .external_lex_state = 2}, - [3732] = {.lex_state = 405, .external_lex_state = 2}, - [3733] = {.lex_state = 405, .external_lex_state = 2}, - [3734] = {.lex_state = 405, .external_lex_state = 2}, + [3725] = {.lex_state = 63, .external_lex_state = 2}, + [3726] = {.lex_state = 63, .external_lex_state = 2}, + [3727] = {.lex_state = 63, .external_lex_state = 2}, + [3728] = {.lex_state = 49, .external_lex_state = 6}, + [3729] = {.lex_state = 49, .external_lex_state = 5}, + [3730] = {.lex_state = 63, .external_lex_state = 2}, + [3731] = {.lex_state = 405, .external_lex_state = 2}, + [3732] = {.lex_state = 63, .external_lex_state = 2}, + [3733] = {.lex_state = 49, .external_lex_state = 5}, + [3734] = {.lex_state = 63, .external_lex_state = 2}, [3735] = {.lex_state = 405, .external_lex_state = 2}, - [3736] = {.lex_state = 405, .external_lex_state = 2}, - [3737] = {.lex_state = 49, .external_lex_state = 5}, - [3738] = {.lex_state = 49, .external_lex_state = 5}, + [3736] = {.lex_state = 63, .external_lex_state = 2}, + [3737] = {.lex_state = 63, .external_lex_state = 2}, + [3738] = {.lex_state = 63, .external_lex_state = 2}, [3739] = {.lex_state = 405, .external_lex_state = 2}, - [3740] = {.lex_state = 49, .external_lex_state = 5}, - [3741] = {.lex_state = 49, .external_lex_state = 5}, - [3742] = {.lex_state = 49, .external_lex_state = 5}, + [3740] = {.lex_state = 63, .external_lex_state = 2}, + [3741] = {.lex_state = 63, .external_lex_state = 2}, + [3742] = {.lex_state = 63, .external_lex_state = 2}, [3743] = {.lex_state = 49, .external_lex_state = 5}, [3744] = {.lex_state = 49, .external_lex_state = 5}, [3745] = {.lex_state = 49, .external_lex_state = 5}, @@ -25888,199 +25952,199 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3751] = {.lex_state = 49, .external_lex_state = 5}, [3752] = {.lex_state = 49, .external_lex_state = 5}, [3753] = {.lex_state = 49, .external_lex_state = 5}, - [3754] = {.lex_state = 405, .external_lex_state = 2}, - [3755] = {.lex_state = 405, .external_lex_state = 2}, + [3754] = {.lex_state = 49, .external_lex_state = 5}, + [3755] = {.lex_state = 49, .external_lex_state = 5}, [3756] = {.lex_state = 49, .external_lex_state = 5}, - [3757] = {.lex_state = 49, .external_lex_state = 5}, - [3758] = {.lex_state = 49, .external_lex_state = 5}, - [3759] = {.lex_state = 49, .external_lex_state = 5}, - [3760] = {.lex_state = 405, .external_lex_state = 2}, + [3757] = {.lex_state = 63, .external_lex_state = 2}, + [3758] = {.lex_state = 63, .external_lex_state = 2}, + [3759] = {.lex_state = 405, .external_lex_state = 2}, + [3760] = {.lex_state = 49, .external_lex_state = 5}, [3761] = {.lex_state = 405, .external_lex_state = 2}, - [3762] = {.lex_state = 63, .external_lex_state = 2}, + [3762] = {.lex_state = 49, .external_lex_state = 5}, [3763] = {.lex_state = 63, .external_lex_state = 2}, - [3764] = {.lex_state = 63, .external_lex_state = 2}, + [3764] = {.lex_state = 405, .external_lex_state = 2}, [3765] = {.lex_state = 405, .external_lex_state = 2}, [3766] = {.lex_state = 405, .external_lex_state = 2}, [3767] = {.lex_state = 63, .external_lex_state = 2}, - [3768] = {.lex_state = 63, .external_lex_state = 2}, - [3769] = {.lex_state = 63, .external_lex_state = 2}, - [3770] = {.lex_state = 63, .external_lex_state = 2}, + [3768] = {.lex_state = 405, .external_lex_state = 2}, + [3769] = {.lex_state = 405, .external_lex_state = 2}, + [3770] = {.lex_state = 405, .external_lex_state = 2}, [3771] = {.lex_state = 63, .external_lex_state = 2}, - [3772] = {.lex_state = 63, .external_lex_state = 2}, - [3773] = {.lex_state = 63, .external_lex_state = 2}, - [3774] = {.lex_state = 49, .external_lex_state = 5}, + [3772] = {.lex_state = 49, .external_lex_state = 5}, + [3773] = {.lex_state = 49, .external_lex_state = 5}, + [3774] = {.lex_state = 405, .external_lex_state = 2}, [3775] = {.lex_state = 49, .external_lex_state = 5}, - [3776] = {.lex_state = 49, .external_lex_state = 5}, + [3776] = {.lex_state = 63, .external_lex_state = 2}, [3777] = {.lex_state = 49, .external_lex_state = 5}, - [3778] = {.lex_state = 49, .external_lex_state = 5}, + [3778] = {.lex_state = 63, .external_lex_state = 2}, [3779] = {.lex_state = 49, .external_lex_state = 5}, - [3780] = {.lex_state = 49, .external_lex_state = 5}, - [3781] = {.lex_state = 49, .external_lex_state = 5}, - [3782] = {.lex_state = 49, .external_lex_state = 5}, - [3783] = {.lex_state = 49, .external_lex_state = 5}, + [3780] = {.lex_state = 63, .external_lex_state = 2}, + [3781] = {.lex_state = 63, .external_lex_state = 2}, + [3782] = {.lex_state = 405, .external_lex_state = 2}, + [3783] = {.lex_state = 63, .external_lex_state = 2}, [3784] = {.lex_state = 63, .external_lex_state = 2}, - [3785] = {.lex_state = 63, .external_lex_state = 2}, - [3786] = {.lex_state = 63, .external_lex_state = 2}, - [3787] = {.lex_state = 63, .external_lex_state = 2}, - [3788] = {.lex_state = 63, .external_lex_state = 2}, - [3789] = {.lex_state = 63, .external_lex_state = 2}, - [3790] = {.lex_state = 405, .external_lex_state = 2}, - [3791] = {.lex_state = 405, .external_lex_state = 2}, - [3792] = {.lex_state = 405, .external_lex_state = 2}, + [3785] = {.lex_state = 405, .external_lex_state = 2}, + [3786] = {.lex_state = 49, .external_lex_state = 5}, + [3787] = {.lex_state = 49, .external_lex_state = 5}, + [3788] = {.lex_state = 49, .external_lex_state = 5}, + [3789] = {.lex_state = 49, .external_lex_state = 5}, + [3790] = {.lex_state = 49, .external_lex_state = 5}, + [3791] = {.lex_state = 49, .external_lex_state = 5}, + [3792] = {.lex_state = 49, .external_lex_state = 5}, [3793] = {.lex_state = 49, .external_lex_state = 5}, - [3794] = {.lex_state = 48, .external_lex_state = 5}, - [3795] = {.lex_state = 48, .external_lex_state = 5}, - [3796] = {.lex_state = 56, .external_lex_state = 2}, + [3794] = {.lex_state = 49, .external_lex_state = 5}, + [3795] = {.lex_state = 49, .external_lex_state = 5}, + [3796] = {.lex_state = 48, .external_lex_state = 5}, [3797] = {.lex_state = 48, .external_lex_state = 5}, - [3798] = {.lex_state = 48, .external_lex_state = 2}, - [3799] = {.lex_state = 56, .external_lex_state = 2}, + [3798] = {.lex_state = 48, .external_lex_state = 5}, + [3799] = {.lex_state = 87, .external_lex_state = 2}, [3800] = {.lex_state = 48, .external_lex_state = 5}, - [3801] = {.lex_state = 48, .external_lex_state = 5}, + [3801] = {.lex_state = 87, .external_lex_state = 2}, [3802] = {.lex_state = 48, .external_lex_state = 5}, [3803] = {.lex_state = 48, .external_lex_state = 5}, [3804] = {.lex_state = 48, .external_lex_state = 5}, - [3805] = {.lex_state = 87, .external_lex_state = 2}, - [3806] = {.lex_state = 48, .external_lex_state = 5}, + [3805] = {.lex_state = 56, .external_lex_state = 2}, + [3806] = {.lex_state = 87, .external_lex_state = 2}, [3807] = {.lex_state = 48, .external_lex_state = 5}, [3808] = {.lex_state = 48, .external_lex_state = 5}, [3809] = {.lex_state = 48, .external_lex_state = 5}, [3810] = {.lex_state = 48, .external_lex_state = 5}, [3811] = {.lex_state = 48, .external_lex_state = 5}, - [3812] = {.lex_state = 56, .external_lex_state = 2}, + [3812] = {.lex_state = 48, .external_lex_state = 5}, [3813] = {.lex_state = 56, .external_lex_state = 2}, [3814] = {.lex_state = 48, .external_lex_state = 5}, [3815] = {.lex_state = 48, .external_lex_state = 5}, [3816] = {.lex_state = 87, .external_lex_state = 2}, [3817] = {.lex_state = 48, .external_lex_state = 5}, - [3818] = {.lex_state = 64, .external_lex_state = 2}, - [3819] = {.lex_state = 48, .external_lex_state = 5}, - [3820] = {.lex_state = 48, .external_lex_state = 5}, + [3818] = {.lex_state = 48, .external_lex_state = 5}, + [3819] = {.lex_state = 56, .external_lex_state = 2}, + [3820] = {.lex_state = 64, .external_lex_state = 2}, [3821] = {.lex_state = 48, .external_lex_state = 5}, [3822] = {.lex_state = 48, .external_lex_state = 5}, [3823] = {.lex_state = 48, .external_lex_state = 5}, [3824] = {.lex_state = 48, .external_lex_state = 5}, - [3825] = {.lex_state = 48, .external_lex_state = 5}, + [3825] = {.lex_state = 87, .external_lex_state = 2}, [3826] = {.lex_state = 56, .external_lex_state = 2}, - [3827] = {.lex_state = 87, .external_lex_state = 2}, + [3827] = {.lex_state = 48, .external_lex_state = 5}, [3828] = {.lex_state = 48, .external_lex_state = 5}, - [3829] = {.lex_state = 48, .external_lex_state = 5}, - [3830] = {.lex_state = 87, .external_lex_state = 2}, - [3831] = {.lex_state = 48, .external_lex_state = 5}, + [3829] = {.lex_state = 48, .external_lex_state = 2}, + [3830] = {.lex_state = 48, .external_lex_state = 5}, + [3831] = {.lex_state = 56, .external_lex_state = 2}, [3832] = {.lex_state = 48, .external_lex_state = 5}, [3833] = {.lex_state = 48, .external_lex_state = 5}, - [3834] = {.lex_state = 87, .external_lex_state = 2}, - [3835] = {.lex_state = 49, .external_lex_state = 6}, - [3836] = {.lex_state = 48, .external_lex_state = 6}, - [3837] = {.lex_state = 48, .external_lex_state = 5}, + [3834] = {.lex_state = 48, .external_lex_state = 5}, + [3835] = {.lex_state = 48, .external_lex_state = 5}, + [3836] = {.lex_state = 48, .external_lex_state = 5}, + [3837] = {.lex_state = 49, .external_lex_state = 6}, [3838] = {.lex_state = 49, .external_lex_state = 6}, - [3839] = {.lex_state = 65, .external_lex_state = 2}, - [3840] = {.lex_state = 81, .external_lex_state = 2}, + [3839] = {.lex_state = 49, .external_lex_state = 6}, + [3840] = {.lex_state = 49, .external_lex_state = 6}, [3841] = {.lex_state = 49, .external_lex_state = 6}, - [3842] = {.lex_state = 48, .external_lex_state = 5}, - [3843] = {.lex_state = 49, .external_lex_state = 6}, + [3842] = {.lex_state = 49, .external_lex_state = 6}, + [3843] = {.lex_state = 49, .external_lex_state = 5}, [3844] = {.lex_state = 49, .external_lex_state = 6}, [3845] = {.lex_state = 49, .external_lex_state = 6}, - [3846] = {.lex_state = 65, .external_lex_state = 2}, - [3847] = {.lex_state = 49, .external_lex_state = 5}, - [3848] = {.lex_state = 48, .external_lex_state = 5}, - [3849] = {.lex_state = 48, .external_lex_state = 5}, - [3850] = {.lex_state = 49, .external_lex_state = 5}, - [3851] = {.lex_state = 48, .external_lex_state = 5}, - [3852] = {.lex_state = 49, .external_lex_state = 5}, + [3846] = {.lex_state = 49, .external_lex_state = 6}, + [3847] = {.lex_state = 49, .external_lex_state = 6}, + [3848] = {.lex_state = 49, .external_lex_state = 6}, + [3849] = {.lex_state = 49, .external_lex_state = 6}, + [3850] = {.lex_state = 49, .external_lex_state = 6}, + [3851] = {.lex_state = 49, .external_lex_state = 6}, + [3852] = {.lex_state = 49, .external_lex_state = 6}, [3853] = {.lex_state = 48, .external_lex_state = 5}, - [3854] = {.lex_state = 65, .external_lex_state = 2}, + [3854] = {.lex_state = 49, .external_lex_state = 6}, [3855] = {.lex_state = 49, .external_lex_state = 6}, - [3856] = {.lex_state = 48, .external_lex_state = 5}, + [3856] = {.lex_state = 49, .external_lex_state = 6}, [3857] = {.lex_state = 48, .external_lex_state = 5}, [3858] = {.lex_state = 49, .external_lex_state = 6}, - [3859] = {.lex_state = 48, .external_lex_state = 5}, - [3860] = {.lex_state = 48, .external_lex_state = 5}, - [3861] = {.lex_state = 49, .external_lex_state = 6}, - [3862] = {.lex_state = 65, .external_lex_state = 2}, - [3863] = {.lex_state = 49, .external_lex_state = 6}, - [3864] = {.lex_state = 48, .external_lex_state = 5}, - [3865] = {.lex_state = 49, .external_lex_state = 6}, + [3859] = {.lex_state = 49, .external_lex_state = 6}, + [3860] = {.lex_state = 49, .external_lex_state = 6}, + [3861] = {.lex_state = 81, .external_lex_state = 2}, + [3862] = {.lex_state = 48, .external_lex_state = 5}, + [3863] = {.lex_state = 65, .external_lex_state = 2}, + [3864] = {.lex_state = 81, .external_lex_state = 2}, + [3865] = {.lex_state = 65, .external_lex_state = 2}, [3866] = {.lex_state = 48, .external_lex_state = 5}, - [3867] = {.lex_state = 49, .external_lex_state = 5}, - [3868] = {.lex_state = 49, .external_lex_state = 5}, + [3867] = {.lex_state = 48, .external_lex_state = 5}, + [3868] = {.lex_state = 48, .external_lex_state = 5}, [3869] = {.lex_state = 48, .external_lex_state = 5}, - [3870] = {.lex_state = 48, .external_lex_state = 5}, - [3871] = {.lex_state = 49, .external_lex_state = 5}, + [3870] = {.lex_state = 49, .external_lex_state = 6}, + [3871] = {.lex_state = 49, .external_lex_state = 6}, [3872] = {.lex_state = 49, .external_lex_state = 6}, - [3873] = {.lex_state = 49, .external_lex_state = 6}, - [3874] = {.lex_state = 49, .external_lex_state = 6}, - [3875] = {.lex_state = 49, .external_lex_state = 6}, + [3873] = {.lex_state = 65, .external_lex_state = 2}, + [3874] = {.lex_state = 48, .external_lex_state = 5}, + [3875] = {.lex_state = 65, .external_lex_state = 2}, [3876] = {.lex_state = 49, .external_lex_state = 6}, [3877] = {.lex_state = 49, .external_lex_state = 6}, - [3878] = {.lex_state = 48, .external_lex_state = 5}, - [3879] = {.lex_state = 48, .external_lex_state = 5}, + [3878] = {.lex_state = 49, .external_lex_state = 6}, + [3879] = {.lex_state = 49, .external_lex_state = 6}, [3880] = {.lex_state = 48, .external_lex_state = 5}, [3881] = {.lex_state = 49, .external_lex_state = 6}, [3882] = {.lex_state = 49, .external_lex_state = 6}, [3883] = {.lex_state = 49, .external_lex_state = 6}, - [3884] = {.lex_state = 49, .external_lex_state = 6}, + [3884] = {.lex_state = 48, .external_lex_state = 6}, [3885] = {.lex_state = 49, .external_lex_state = 6}, - [3886] = {.lex_state = 49, .external_lex_state = 6}, - [3887] = {.lex_state = 49, .external_lex_state = 6}, + [3886] = {.lex_state = 65, .external_lex_state = 2}, + [3887] = {.lex_state = 48, .external_lex_state = 5}, [3888] = {.lex_state = 49, .external_lex_state = 6}, - [3889] = {.lex_state = 49, .external_lex_state = 6}, - [3890] = {.lex_state = 49, .external_lex_state = 6}, - [3891] = {.lex_state = 49, .external_lex_state = 6}, - [3892] = {.lex_state = 49, .external_lex_state = 6}, + [3889] = {.lex_state = 48, .external_lex_state = 5}, + [3890] = {.lex_state = 48, .external_lex_state = 5}, + [3891] = {.lex_state = 65, .external_lex_state = 2}, + [3892] = {.lex_state = 48, .external_lex_state = 5}, [3893] = {.lex_state = 48, .external_lex_state = 5}, - [3894] = {.lex_state = 49, .external_lex_state = 6}, - [3895] = {.lex_state = 49, .external_lex_state = 6}, - [3896] = {.lex_state = 49, .external_lex_state = 6}, - [3897] = {.lex_state = 49, .external_lex_state = 6}, + [3894] = {.lex_state = 48, .external_lex_state = 5}, + [3895] = {.lex_state = 48, .external_lex_state = 5}, + [3896] = {.lex_state = 48, .external_lex_state = 5}, + [3897] = {.lex_state = 49, .external_lex_state = 5}, [3898] = {.lex_state = 49, .external_lex_state = 6}, - [3899] = {.lex_state = 65, .external_lex_state = 2}, - [3900] = {.lex_state = 65, .external_lex_state = 2}, - [3901] = {.lex_state = 81, .external_lex_state = 2}, - [3902] = {.lex_state = 65, .external_lex_state = 2}, + [3899] = {.lex_state = 48, .external_lex_state = 5}, + [3900] = {.lex_state = 49, .external_lex_state = 5}, + [3901] = {.lex_state = 49, .external_lex_state = 5}, + [3902] = {.lex_state = 49, .external_lex_state = 5}, [3903] = {.lex_state = 48, .external_lex_state = 5}, [3904] = {.lex_state = 49, .external_lex_state = 5}, - [3905] = {.lex_state = 65, .external_lex_state = 2}, - [3906] = {.lex_state = 48, .external_lex_state = 5}, - [3907] = {.lex_state = 48, .external_lex_state = 5}, + [3905] = {.lex_state = 49, .external_lex_state = 5}, + [3906] = {.lex_state = 65, .external_lex_state = 2}, + [3907] = {.lex_state = 65, .external_lex_state = 2}, [3908] = {.lex_state = 48, .external_lex_state = 5}, [3909] = {.lex_state = 48, .external_lex_state = 5}, [3910] = {.lex_state = 48, .external_lex_state = 5}, [3911] = {.lex_state = 48, .external_lex_state = 5}, [3912] = {.lex_state = 48, .external_lex_state = 5}, [3913] = {.lex_state = 48, .external_lex_state = 5}, - [3914] = {.lex_state = 48, .external_lex_state = 5}, + [3914] = {.lex_state = 81, .external_lex_state = 2}, [3915] = {.lex_state = 48, .external_lex_state = 5}, - [3916] = {.lex_state = 81, .external_lex_state = 2}, + [3916] = {.lex_state = 48, .external_lex_state = 5}, [3917] = {.lex_state = 48, .external_lex_state = 5}, [3918] = {.lex_state = 48, .external_lex_state = 5}, [3919] = {.lex_state = 48, .external_lex_state = 5}, [3920] = {.lex_state = 48, .external_lex_state = 5}, - [3921] = {.lex_state = 55, .external_lex_state = 2}, - [3922] = {.lex_state = 48, .external_lex_state = 5}, + [3921] = {.lex_state = 48, .external_lex_state = 5}, + [3922] = {.lex_state = 55, .external_lex_state = 2}, [3923] = {.lex_state = 48, .external_lex_state = 5}, [3924] = {.lex_state = 48, .external_lex_state = 5}, [3925] = {.lex_state = 48, .external_lex_state = 5}, [3926] = {.lex_state = 48, .external_lex_state = 5}, - [3927] = {.lex_state = 55, .external_lex_state = 2}, - [3928] = {.lex_state = 48, .external_lex_state = 5}, + [3927] = {.lex_state = 48, .external_lex_state = 5}, + [3928] = {.lex_state = 48, .external_lex_state = 2}, [3929] = {.lex_state = 48, .external_lex_state = 5}, - [3930] = {.lex_state = 48, .external_lex_state = 5}, - [3931] = {.lex_state = 65, .external_lex_state = 2}, + [3930] = {.lex_state = 55, .external_lex_state = 2}, + [3931] = {.lex_state = 48, .external_lex_state = 5}, [3932] = {.lex_state = 48, .external_lex_state = 5}, [3933] = {.lex_state = 48, .external_lex_state = 5}, [3934] = {.lex_state = 48, .external_lex_state = 5}, [3935] = {.lex_state = 48, .external_lex_state = 5}, - [3936] = {.lex_state = 81, .external_lex_state = 2}, - [3937] = {.lex_state = 55, .external_lex_state = 2}, - [3938] = {.lex_state = 81, .external_lex_state = 2}, + [3936] = {.lex_state = 48, .external_lex_state = 5}, + [3937] = {.lex_state = 48, .external_lex_state = 5}, + [3938] = {.lex_state = 48, .external_lex_state = 5}, [3939] = {.lex_state = 48, .external_lex_state = 5}, [3940] = {.lex_state = 48, .external_lex_state = 5}, [3941] = {.lex_state = 48, .external_lex_state = 5}, - [3942] = {.lex_state = 55, .external_lex_state = 2}, + [3942] = {.lex_state = 48, .external_lex_state = 5}, [3943] = {.lex_state = 48, .external_lex_state = 5}, [3944] = {.lex_state = 48, .external_lex_state = 5}, [3945] = {.lex_state = 48, .external_lex_state = 5}, - [3946] = {.lex_state = 81, .external_lex_state = 2}, + [3946] = {.lex_state = 48, .external_lex_state = 5}, [3947] = {.lex_state = 48, .external_lex_state = 5}, [3948] = {.lex_state = 48, .external_lex_state = 5}, [3949] = {.lex_state = 55, .external_lex_state = 2}, @@ -26089,37 +26153,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3952] = {.lex_state = 48, .external_lex_state = 5}, [3953] = {.lex_state = 48, .external_lex_state = 5}, [3954] = {.lex_state = 48, .external_lex_state = 5}, - [3955] = {.lex_state = 48, .external_lex_state = 5}, + [3955] = {.lex_state = 55, .external_lex_state = 2}, [3956] = {.lex_state = 48, .external_lex_state = 5}, [3957] = {.lex_state = 48, .external_lex_state = 5}, - [3958] = {.lex_state = 48, .external_lex_state = 5}, + [3958] = {.lex_state = 65, .external_lex_state = 2}, [3959] = {.lex_state = 48, .external_lex_state = 5}, - [3960] = {.lex_state = 48, .external_lex_state = 2}, - [3961] = {.lex_state = 48, .external_lex_state = 5}, - [3962] = {.lex_state = 48, .external_lex_state = 5}, - [3963] = {.lex_state = 48, .external_lex_state = 6}, + [3960] = {.lex_state = 48, .external_lex_state = 5}, + [3961] = {.lex_state = 55, .external_lex_state = 2}, + [3962] = {.lex_state = 81, .external_lex_state = 2}, + [3963] = {.lex_state = 81, .external_lex_state = 2}, [3964] = {.lex_state = 48, .external_lex_state = 5}, [3965] = {.lex_state = 48, .external_lex_state = 5}, [3966] = {.lex_state = 48, .external_lex_state = 5}, - [3967] = {.lex_state = 48, .external_lex_state = 5}, - [3968] = {.lex_state = 48, .external_lex_state = 5}, + [3967] = {.lex_state = 48, .external_lex_state = 6}, + [3968] = {.lex_state = 81, .external_lex_state = 2}, [3969] = {.lex_state = 48, .external_lex_state = 5}, [3970] = {.lex_state = 48, .external_lex_state = 5}, [3971] = {.lex_state = 48, .external_lex_state = 5}, - [3972] = {.lex_state = 49, .external_lex_state = 6}, + [3972] = {.lex_state = 48, .external_lex_state = 5}, [3973] = {.lex_state = 48, .external_lex_state = 5}, [3974] = {.lex_state = 48, .external_lex_state = 5}, - [3975] = {.lex_state = 48, .external_lex_state = 5}, - [3976] = {.lex_state = 48, .external_lex_state = 6}, - [3977] = {.lex_state = 48, .external_lex_state = 5}, - [3978] = {.lex_state = 48, .external_lex_state = 5}, + [3975] = {.lex_state = 49, .external_lex_state = 6}, + [3976] = {.lex_state = 48, .external_lex_state = 5}, + [3977] = {.lex_state = 49, .external_lex_state = 6}, + [3978] = {.lex_state = 48, .external_lex_state = 6}, [3979] = {.lex_state = 48, .external_lex_state = 5}, - [3980] = {.lex_state = 48, .external_lex_state = 5}, - [3981] = {.lex_state = 48, .external_lex_state = 5}, - [3982] = {.lex_state = 48, .external_lex_state = 5}, + [3980] = {.lex_state = 49, .external_lex_state = 6}, + [3981] = {.lex_state = 48, .external_lex_state = 6}, + [3982] = {.lex_state = 48, .external_lex_state = 6}, [3983] = {.lex_state = 48, .external_lex_state = 5}, [3984] = {.lex_state = 48, .external_lex_state = 5}, - [3985] = {.lex_state = 55, .external_lex_state = 2}, + [3985] = {.lex_state = 48, .external_lex_state = 5}, [3986] = {.lex_state = 48, .external_lex_state = 5}, [3987] = {.lex_state = 48, .external_lex_state = 5}, [3988] = {.lex_state = 48, .external_lex_state = 5}, @@ -26128,1322 +26192,1322 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3991] = {.lex_state = 48, .external_lex_state = 5}, [3992] = {.lex_state = 48, .external_lex_state = 5}, [3993] = {.lex_state = 48, .external_lex_state = 5}, - [3994] = {.lex_state = 49, .external_lex_state = 6}, + [3994] = {.lex_state = 48, .external_lex_state = 5}, [3995] = {.lex_state = 48, .external_lex_state = 5}, [3996] = {.lex_state = 48, .external_lex_state = 5}, [3997] = {.lex_state = 48, .external_lex_state = 5}, [3998] = {.lex_state = 48, .external_lex_state = 5}, - [3999] = {.lex_state = 48, .external_lex_state = 5}, + [3999] = {.lex_state = 49, .external_lex_state = 6}, [4000] = {.lex_state = 48, .external_lex_state = 5}, [4001] = {.lex_state = 48, .external_lex_state = 5}, [4002] = {.lex_state = 48, .external_lex_state = 5}, [4003] = {.lex_state = 48, .external_lex_state = 5}, [4004] = {.lex_state = 48, .external_lex_state = 5}, - [4005] = {.lex_state = 49, .external_lex_state = 6}, + [4005] = {.lex_state = 48, .external_lex_state = 5}, [4006] = {.lex_state = 48, .external_lex_state = 5}, [4007] = {.lex_state = 48, .external_lex_state = 5}, [4008] = {.lex_state = 48, .external_lex_state = 5}, [4009] = {.lex_state = 48, .external_lex_state = 5}, [4010] = {.lex_state = 48, .external_lex_state = 5}, - [4011] = {.lex_state = 48, .external_lex_state = 6}, + [4011] = {.lex_state = 48, .external_lex_state = 5}, [4012] = {.lex_state = 48, .external_lex_state = 5}, - [4013] = {.lex_state = 49, .external_lex_state = 6}, + [4013] = {.lex_state = 48, .external_lex_state = 5}, [4014] = {.lex_state = 48, .external_lex_state = 5}, [4015] = {.lex_state = 48, .external_lex_state = 5}, - [4016] = {.lex_state = 48, .external_lex_state = 5}, - [4017] = {.lex_state = 49, .external_lex_state = 6}, + [4016] = {.lex_state = 49, .external_lex_state = 6}, + [4017] = {.lex_state = 48, .external_lex_state = 5}, [4018] = {.lex_state = 48, .external_lex_state = 5}, [4019] = {.lex_state = 48, .external_lex_state = 5}, - [4020] = {.lex_state = 48, .external_lex_state = 6}, + [4020] = {.lex_state = 48, .external_lex_state = 5}, [4021] = {.lex_state = 48, .external_lex_state = 5}, [4022] = {.lex_state = 48, .external_lex_state = 5}, - [4023] = {.lex_state = 48, .external_lex_state = 5}, + [4023] = {.lex_state = 55, .external_lex_state = 2}, [4024] = {.lex_state = 48, .external_lex_state = 5}, [4025] = {.lex_state = 49, .external_lex_state = 6}, [4026] = {.lex_state = 48, .external_lex_state = 5}, [4027] = {.lex_state = 48, .external_lex_state = 5}, - [4028] = {.lex_state = 48, .external_lex_state = 5}, - [4029] = {.lex_state = 49, .external_lex_state = 6}, + [4028] = {.lex_state = 49, .external_lex_state = 6}, + [4029] = {.lex_state = 48, .external_lex_state = 5}, [4030] = {.lex_state = 48, .external_lex_state = 5}, [4031] = {.lex_state = 48, .external_lex_state = 5}, - [4032] = {.lex_state = 83, .external_lex_state = 2}, - [4033] = {.lex_state = 49, .external_lex_state = 5}, + [4032] = {.lex_state = 48, .external_lex_state = 5}, + [4033] = {.lex_state = 48, .external_lex_state = 5}, [4034] = {.lex_state = 83, .external_lex_state = 2}, - [4035] = {.lex_state = 83, .external_lex_state = 2}, - [4036] = {.lex_state = 48, .external_lex_state = 5}, - [4037] = {.lex_state = 48, .external_lex_state = 5}, - [4038] = {.lex_state = 81, .external_lex_state = 2}, - [4039] = {.lex_state = 405, .external_lex_state = 5}, - [4040] = {.lex_state = 83, .external_lex_state = 2}, - [4041] = {.lex_state = 83, .external_lex_state = 2}, - [4042] = {.lex_state = 55, .external_lex_state = 2}, - [4043] = {.lex_state = 83, .external_lex_state = 2}, - [4044] = {.lex_state = 405, .external_lex_state = 5}, - [4045] = {.lex_state = 83, .external_lex_state = 2}, - [4046] = {.lex_state = 83, .external_lex_state = 2}, - [4047] = {.lex_state = 57, .external_lex_state = 2}, + [4035] = {.lex_state = 48, .external_lex_state = 2}, + [4036] = {.lex_state = 83, .external_lex_state = 2}, + [4037] = {.lex_state = 83, .external_lex_state = 2}, + [4038] = {.lex_state = 83, .external_lex_state = 2}, + [4039] = {.lex_state = 83, .external_lex_state = 2}, + [4040] = {.lex_state = 55, .external_lex_state = 2}, + [4041] = {.lex_state = 405, .external_lex_state = 5}, + [4042] = {.lex_state = 83, .external_lex_state = 2}, + [4043] = {.lex_state = 81, .external_lex_state = 2}, + [4044] = {.lex_state = 49, .external_lex_state = 5}, + [4045] = {.lex_state = 49, .external_lex_state = 5}, + [4046] = {.lex_state = 55, .external_lex_state = 2}, + [4047] = {.lex_state = 83, .external_lex_state = 2}, [4048] = {.lex_state = 83, .external_lex_state = 2}, - [4049] = {.lex_state = 49, .external_lex_state = 5}, - [4050] = {.lex_state = 48, .external_lex_state = 6}, - [4051] = {.lex_state = 81, .external_lex_state = 2}, + [4049] = {.lex_state = 405, .external_lex_state = 5}, + [4050] = {.lex_state = 48, .external_lex_state = 5}, + [4051] = {.lex_state = 83, .external_lex_state = 2}, [4052] = {.lex_state = 48, .external_lex_state = 6}, - [4053] = {.lex_state = 48, .external_lex_state = 6}, - [4054] = {.lex_state = 83, .external_lex_state = 2}, - [4055] = {.lex_state = 48, .external_lex_state = 6}, - [4056] = {.lex_state = 81, .external_lex_state = 2}, + [4053] = {.lex_state = 405, .external_lex_state = 5}, + [4054] = {.lex_state = 48, .external_lex_state = 6}, + [4055] = {.lex_state = 83, .external_lex_state = 2}, + [4056] = {.lex_state = 83, .external_lex_state = 2}, [4057] = {.lex_state = 83, .external_lex_state = 2}, [4058] = {.lex_state = 81, .external_lex_state = 2}, [4059] = {.lex_state = 83, .external_lex_state = 2}, - [4060] = {.lex_state = 83, .external_lex_state = 2}, - [4061] = {.lex_state = 405, .external_lex_state = 5}, - [4062] = {.lex_state = 83, .external_lex_state = 2}, - [4063] = {.lex_state = 83, .external_lex_state = 2}, - [4064] = {.lex_state = 48, .external_lex_state = 2}, + [4060] = {.lex_state = 48, .external_lex_state = 6}, + [4061] = {.lex_state = 48, .external_lex_state = 6}, + [4062] = {.lex_state = 81, .external_lex_state = 2}, + [4063] = {.lex_state = 55, .external_lex_state = 2}, + [4064] = {.lex_state = 83, .external_lex_state = 2}, [4065] = {.lex_state = 83, .external_lex_state = 2}, - [4066] = {.lex_state = 83, .external_lex_state = 2}, - [4067] = {.lex_state = 55, .external_lex_state = 2}, - [4068] = {.lex_state = 55, .external_lex_state = 2}, - [4069] = {.lex_state = 48, .external_lex_state = 6}, - [4070] = {.lex_state = 48, .external_lex_state = 2}, - [4071] = {.lex_state = 48, .external_lex_state = 5}, - [4072] = {.lex_state = 48, .external_lex_state = 6}, - [4073] = {.lex_state = 48, .external_lex_state = 6}, - [4074] = {.lex_state = 48, .external_lex_state = 6}, - [4075] = {.lex_state = 48, .external_lex_state = 2}, - [4076] = {.lex_state = 48, .external_lex_state = 6}, - [4077] = {.lex_state = 48, .external_lex_state = 6}, - [4078] = {.lex_state = 48, .external_lex_state = 6}, - [4079] = {.lex_state = 81, .external_lex_state = 2}, - [4080] = {.lex_state = 81, .external_lex_state = 2}, + [4066] = {.lex_state = 81, .external_lex_state = 2}, + [4067] = {.lex_state = 48, .external_lex_state = 5}, + [4068] = {.lex_state = 48, .external_lex_state = 6}, + [4069] = {.lex_state = 83, .external_lex_state = 2}, + [4070] = {.lex_state = 57, .external_lex_state = 2}, + [4071] = {.lex_state = 83, .external_lex_state = 2}, + [4072] = {.lex_state = 48, .external_lex_state = 5}, + [4073] = {.lex_state = 48, .external_lex_state = 5}, + [4074] = {.lex_state = 81, .external_lex_state = 2}, + [4075] = {.lex_state = 48, .external_lex_state = 5}, + [4076] = {.lex_state = 49, .external_lex_state = 2}, + [4077] = {.lex_state = 48, .external_lex_state = 5}, + [4078] = {.lex_state = 48, .external_lex_state = 2}, + [4079] = {.lex_state = 48, .external_lex_state = 5}, + [4080] = {.lex_state = 48, .external_lex_state = 6}, [4081] = {.lex_state = 81, .external_lex_state = 2}, - [4082] = {.lex_state = 81, .external_lex_state = 2}, - [4083] = {.lex_state = 48, .external_lex_state = 6}, + [4082] = {.lex_state = 48, .external_lex_state = 5}, + [4083] = {.lex_state = 48, .external_lex_state = 2}, [4084] = {.lex_state = 48, .external_lex_state = 2}, - [4085] = {.lex_state = 405, .external_lex_state = 5}, + [4085] = {.lex_state = 49, .external_lex_state = 2}, [4086] = {.lex_state = 48, .external_lex_state = 6}, - [4087] = {.lex_state = 48, .external_lex_state = 5}, - [4088] = {.lex_state = 81, .external_lex_state = 2}, - [4089] = {.lex_state = 81, .external_lex_state = 2}, - [4090] = {.lex_state = 81, .external_lex_state = 2}, + [4087] = {.lex_state = 81, .external_lex_state = 2}, + [4088] = {.lex_state = 48, .external_lex_state = 5}, + [4089] = {.lex_state = 48, .external_lex_state = 2}, + [4090] = {.lex_state = 48, .external_lex_state = 5}, [4091] = {.lex_state = 48, .external_lex_state = 2}, - [4092] = {.lex_state = 81, .external_lex_state = 2}, + [4092] = {.lex_state = 48, .external_lex_state = 5}, [4093] = {.lex_state = 81, .external_lex_state = 2}, - [4094] = {.lex_state = 81, .external_lex_state = 2}, - [4095] = {.lex_state = 48, .external_lex_state = 6}, - [4096] = {.lex_state = 48, .external_lex_state = 2}, - [4097] = {.lex_state = 48, .external_lex_state = 6}, - [4098] = {.lex_state = 48, .external_lex_state = 2}, - [4099] = {.lex_state = 48, .external_lex_state = 6}, - [4100] = {.lex_state = 48, .external_lex_state = 6}, - [4101] = {.lex_state = 48, .external_lex_state = 2}, - [4102] = {.lex_state = 49, .external_lex_state = 2}, - [4103] = {.lex_state = 48, .external_lex_state = 6}, - [4104] = {.lex_state = 49, .external_lex_state = 2}, - [4105] = {.lex_state = 49, .external_lex_state = 2}, - [4106] = {.lex_state = 48, .external_lex_state = 2}, + [4094] = {.lex_state = 48, .external_lex_state = 2}, + [4095] = {.lex_state = 48, .external_lex_state = 2}, + [4096] = {.lex_state = 81, .external_lex_state = 2}, + [4097] = {.lex_state = 48, .external_lex_state = 2}, + [4098] = {.lex_state = 48, .external_lex_state = 5}, + [4099] = {.lex_state = 81, .external_lex_state = 2}, + [4100] = {.lex_state = 48, .external_lex_state = 5}, + [4101] = {.lex_state = 81, .external_lex_state = 2}, + [4102] = {.lex_state = 48, .external_lex_state = 5}, + [4103] = {.lex_state = 81, .external_lex_state = 2}, + [4104] = {.lex_state = 81, .external_lex_state = 2}, + [4105] = {.lex_state = 48, .external_lex_state = 5}, + [4106] = {.lex_state = 63, .external_lex_state = 2}, [4107] = {.lex_state = 48, .external_lex_state = 2}, - [4108] = {.lex_state = 48, .external_lex_state = 5}, - [4109] = {.lex_state = 405, .external_lex_state = 2}, + [4108] = {.lex_state = 81, .external_lex_state = 2}, + [4109] = {.lex_state = 48, .external_lex_state = 2}, [4110] = {.lex_state = 48, .external_lex_state = 2}, - [4111] = {.lex_state = 48, .external_lex_state = 2}, - [4112] = {.lex_state = 48, .external_lex_state = 2}, + [4111] = {.lex_state = 48, .external_lex_state = 5}, + [4112] = {.lex_state = 55, .external_lex_state = 2}, [4113] = {.lex_state = 48, .external_lex_state = 6}, [4114] = {.lex_state = 48, .external_lex_state = 6}, [4115] = {.lex_state = 81, .external_lex_state = 2}, [4116] = {.lex_state = 81, .external_lex_state = 2}, - [4117] = {.lex_state = 49, .external_lex_state = 2}, - [4118] = {.lex_state = 55, .external_lex_state = 2}, - [4119] = {.lex_state = 48, .external_lex_state = 2}, - [4120] = {.lex_state = 48, .external_lex_state = 5}, - [4121] = {.lex_state = 48, .external_lex_state = 5}, - [4122] = {.lex_state = 81, .external_lex_state = 2}, + [4117] = {.lex_state = 48, .external_lex_state = 6}, + [4118] = {.lex_state = 48, .external_lex_state = 5}, + [4119] = {.lex_state = 48, .external_lex_state = 5}, + [4120] = {.lex_state = 48, .external_lex_state = 2}, + [4121] = {.lex_state = 48, .external_lex_state = 2}, + [4122] = {.lex_state = 49, .external_lex_state = 2}, [4123] = {.lex_state = 48, .external_lex_state = 5}, [4124] = {.lex_state = 48, .external_lex_state = 5}, [4125] = {.lex_state = 48, .external_lex_state = 2}, - [4126] = {.lex_state = 48, .external_lex_state = 5}, - [4127] = {.lex_state = 63, .external_lex_state = 2}, - [4128] = {.lex_state = 48, .external_lex_state = 6}, - [4129] = {.lex_state = 48, .external_lex_state = 6}, - [4130] = {.lex_state = 81, .external_lex_state = 2}, - [4131] = {.lex_state = 48, .external_lex_state = 5}, - [4132] = {.lex_state = 48, .external_lex_state = 6}, - [4133] = {.lex_state = 48, .external_lex_state = 6}, - [4134] = {.lex_state = 48, .external_lex_state = 5}, - [4135] = {.lex_state = 63, .external_lex_state = 2}, - [4136] = {.lex_state = 48, .external_lex_state = 5}, - [4137] = {.lex_state = 48, .external_lex_state = 2}, - [4138] = {.lex_state = 48, .external_lex_state = 2}, - [4139] = {.lex_state = 48, .external_lex_state = 5}, - [4140] = {.lex_state = 63, .external_lex_state = 2}, + [4126] = {.lex_state = 48, .external_lex_state = 2}, + [4127] = {.lex_state = 405, .external_lex_state = 6}, + [4128] = {.lex_state = 81, .external_lex_state = 2}, + [4129] = {.lex_state = 48, .external_lex_state = 2}, + [4130] = {.lex_state = 48, .external_lex_state = 5}, + [4131] = {.lex_state = 48, .external_lex_state = 2}, + [4132] = {.lex_state = 48, .external_lex_state = 2}, + [4133] = {.lex_state = 81, .external_lex_state = 2}, + [4134] = {.lex_state = 81, .external_lex_state = 2}, + [4135] = {.lex_state = 81, .external_lex_state = 2}, + [4136] = {.lex_state = 48, .external_lex_state = 2}, + [4137] = {.lex_state = 81, .external_lex_state = 2}, + [4138] = {.lex_state = 48, .external_lex_state = 6}, + [4139] = {.lex_state = 48, .external_lex_state = 6}, + [4140] = {.lex_state = 48, .external_lex_state = 2}, [4141] = {.lex_state = 48, .external_lex_state = 6}, [4142] = {.lex_state = 48, .external_lex_state = 6}, [4143] = {.lex_state = 48, .external_lex_state = 6}, [4144] = {.lex_state = 48, .external_lex_state = 2}, - [4145] = {.lex_state = 48, .external_lex_state = 5}, - [4146] = {.lex_state = 48, .external_lex_state = 5}, - [4147] = {.lex_state = 48, .external_lex_state = 5}, - [4148] = {.lex_state = 48, .external_lex_state = 6}, + [4145] = {.lex_state = 48, .external_lex_state = 6}, + [4146] = {.lex_state = 49, .external_lex_state = 2}, + [4147] = {.lex_state = 48, .external_lex_state = 6}, + [4148] = {.lex_state = 63, .external_lex_state = 2}, [4149] = {.lex_state = 48, .external_lex_state = 5}, - [4150] = {.lex_state = 48, .external_lex_state = 5}, + [4150] = {.lex_state = 48, .external_lex_state = 6}, [4151] = {.lex_state = 48, .external_lex_state = 6}, - [4152] = {.lex_state = 48, .external_lex_state = 2}, - [4153] = {.lex_state = 48, .external_lex_state = 5}, - [4154] = {.lex_state = 48, .external_lex_state = 2}, - [4155] = {.lex_state = 48, .external_lex_state = 6}, + [4152] = {.lex_state = 49, .external_lex_state = 2}, + [4153] = {.lex_state = 48, .external_lex_state = 6}, + [4154] = {.lex_state = 48, .external_lex_state = 5}, + [4155] = {.lex_state = 48, .external_lex_state = 5}, [4156] = {.lex_state = 48, .external_lex_state = 2}, - [4157] = {.lex_state = 48, .external_lex_state = 2}, - [4158] = {.lex_state = 49, .external_lex_state = 5}, - [4159] = {.lex_state = 49, .external_lex_state = 5}, - [4160] = {.lex_state = 48, .external_lex_state = 6}, - [4161] = {.lex_state = 48, .external_lex_state = 2}, - [4162] = {.lex_state = 405, .external_lex_state = 5}, + [4157] = {.lex_state = 81, .external_lex_state = 2}, + [4158] = {.lex_state = 48, .external_lex_state = 5}, + [4159] = {.lex_state = 49, .external_lex_state = 2}, + [4160] = {.lex_state = 48, .external_lex_state = 2}, + [4161] = {.lex_state = 81, .external_lex_state = 2}, + [4162] = {.lex_state = 48, .external_lex_state = 2}, [4163] = {.lex_state = 48, .external_lex_state = 5}, - [4164] = {.lex_state = 405, .external_lex_state = 5}, - [4165] = {.lex_state = 405, .external_lex_state = 5}, - [4166] = {.lex_state = 48, .external_lex_state = 2}, - [4167] = {.lex_state = 405, .external_lex_state = 5}, + [4164] = {.lex_state = 81, .external_lex_state = 2}, + [4165] = {.lex_state = 48, .external_lex_state = 2}, + [4166] = {.lex_state = 48, .external_lex_state = 5}, + [4167] = {.lex_state = 81, .external_lex_state = 2}, [4168] = {.lex_state = 48, .external_lex_state = 2}, - [4169] = {.lex_state = 63, .external_lex_state = 2}, - [4170] = {.lex_state = 48, .external_lex_state = 5}, - [4171] = {.lex_state = 48, .external_lex_state = 2}, - [4172] = {.lex_state = 48, .external_lex_state = 5}, - [4173] = {.lex_state = 48, .external_lex_state = 6}, - [4174] = {.lex_state = 48, .external_lex_state = 5}, - [4175] = {.lex_state = 48, .external_lex_state = 6}, + [4169] = {.lex_state = 81, .external_lex_state = 2}, + [4170] = {.lex_state = 81, .external_lex_state = 2}, + [4171] = {.lex_state = 48, .external_lex_state = 5}, + [4172] = {.lex_state = 49, .external_lex_state = 2}, + [4173] = {.lex_state = 81, .external_lex_state = 2}, + [4174] = {.lex_state = 48, .external_lex_state = 2}, + [4175] = {.lex_state = 81, .external_lex_state = 2}, [4176] = {.lex_state = 48, .external_lex_state = 2}, - [4177] = {.lex_state = 81, .external_lex_state = 2}, - [4178] = {.lex_state = 48, .external_lex_state = 6}, - [4179] = {.lex_state = 48, .external_lex_state = 5}, - [4180] = {.lex_state = 48, .external_lex_state = 2}, - [4181] = {.lex_state = 63, .external_lex_state = 2}, - [4182] = {.lex_state = 48, .external_lex_state = 5}, - [4183] = {.lex_state = 48, .external_lex_state = 5}, - [4184] = {.lex_state = 48, .external_lex_state = 5}, - [4185] = {.lex_state = 48, .external_lex_state = 5}, - [4186] = {.lex_state = 48, .external_lex_state = 5}, - [4187] = {.lex_state = 49, .external_lex_state = 2}, + [4177] = {.lex_state = 63, .external_lex_state = 2}, + [4178] = {.lex_state = 48, .external_lex_state = 2}, + [4179] = {.lex_state = 81, .external_lex_state = 2}, + [4180] = {.lex_state = 81, .external_lex_state = 2}, + [4181] = {.lex_state = 81, .external_lex_state = 2}, + [4182] = {.lex_state = 405, .external_lex_state = 6}, + [4183] = {.lex_state = 81, .external_lex_state = 2}, + [4184] = {.lex_state = 81, .external_lex_state = 2}, + [4185] = {.lex_state = 48, .external_lex_state = 2}, + [4186] = {.lex_state = 81, .external_lex_state = 2}, + [4187] = {.lex_state = 48, .external_lex_state = 5}, [4188] = {.lex_state = 48, .external_lex_state = 2}, - [4189] = {.lex_state = 81, .external_lex_state = 2}, - [4190] = {.lex_state = 81, .external_lex_state = 2}, + [4189] = {.lex_state = 48, .external_lex_state = 6}, + [4190] = {.lex_state = 49, .external_lex_state = 2}, [4191] = {.lex_state = 48, .external_lex_state = 6}, - [4192] = {.lex_state = 81, .external_lex_state = 2}, - [4193] = {.lex_state = 81, .external_lex_state = 2}, - [4194] = {.lex_state = 48, .external_lex_state = 6}, - [4195] = {.lex_state = 48, .external_lex_state = 2}, - [4196] = {.lex_state = 49, .external_lex_state = 2}, - [4197] = {.lex_state = 81, .external_lex_state = 2}, - [4198] = {.lex_state = 81, .external_lex_state = 2}, - [4199] = {.lex_state = 48, .external_lex_state = 5}, - [4200] = {.lex_state = 48, .external_lex_state = 5}, - [4201] = {.lex_state = 48, .external_lex_state = 5}, - [4202] = {.lex_state = 48, .external_lex_state = 2}, - [4203] = {.lex_state = 48, .external_lex_state = 6}, - [4204] = {.lex_state = 48, .external_lex_state = 6}, - [4205] = {.lex_state = 48, .external_lex_state = 6}, - [4206] = {.lex_state = 48, .external_lex_state = 2}, - [4207] = {.lex_state = 81, .external_lex_state = 2}, + [4192] = {.lex_state = 49, .external_lex_state = 5}, + [4193] = {.lex_state = 48, .external_lex_state = 6}, + [4194] = {.lex_state = 49, .external_lex_state = 5}, + [4195] = {.lex_state = 48, .external_lex_state = 6}, + [4196] = {.lex_state = 48, .external_lex_state = 6}, + [4197] = {.lex_state = 48, .external_lex_state = 2}, + [4198] = {.lex_state = 48, .external_lex_state = 6}, + [4199] = {.lex_state = 48, .external_lex_state = 6}, + [4200] = {.lex_state = 48, .external_lex_state = 6}, + [4201] = {.lex_state = 48, .external_lex_state = 2}, + [4202] = {.lex_state = 48, .external_lex_state = 5}, + [4203] = {.lex_state = 48, .external_lex_state = 2}, + [4204] = {.lex_state = 48, .external_lex_state = 5}, + [4205] = {.lex_state = 48, .external_lex_state = 5}, + [4206] = {.lex_state = 48, .external_lex_state = 5}, + [4207] = {.lex_state = 48, .external_lex_state = 6}, [4208] = {.lex_state = 48, .external_lex_state = 2}, - [4209] = {.lex_state = 48, .external_lex_state = 5}, - [4210] = {.lex_state = 48, .external_lex_state = 2}, - [4211] = {.lex_state = 81, .external_lex_state = 2}, - [4212] = {.lex_state = 48, .external_lex_state = 6}, - [4213] = {.lex_state = 81, .external_lex_state = 2}, - [4214] = {.lex_state = 48, .external_lex_state = 5}, + [4209] = {.lex_state = 48, .external_lex_state = 2}, + [4210] = {.lex_state = 48, .external_lex_state = 5}, + [4211] = {.lex_state = 63, .external_lex_state = 2}, + [4212] = {.lex_state = 48, .external_lex_state = 2}, + [4213] = {.lex_state = 48, .external_lex_state = 6}, + [4214] = {.lex_state = 48, .external_lex_state = 6}, [4215] = {.lex_state = 48, .external_lex_state = 6}, - [4216] = {.lex_state = 405, .external_lex_state = 6}, - [4217] = {.lex_state = 48, .external_lex_state = 5}, - [4218] = {.lex_state = 49, .external_lex_state = 2}, + [4216] = {.lex_state = 48, .external_lex_state = 2}, + [4217] = {.lex_state = 48, .external_lex_state = 6}, + [4218] = {.lex_state = 48, .external_lex_state = 6}, [4219] = {.lex_state = 48, .external_lex_state = 6}, - [4220] = {.lex_state = 49, .external_lex_state = 2}, - [4221] = {.lex_state = 48, .external_lex_state = 2}, - [4222] = {.lex_state = 81, .external_lex_state = 2}, - [4223] = {.lex_state = 81, .external_lex_state = 2}, - [4224] = {.lex_state = 81, .external_lex_state = 2}, - [4225] = {.lex_state = 48, .external_lex_state = 2}, - [4226] = {.lex_state = 81, .external_lex_state = 2}, - [4227] = {.lex_state = 81, .external_lex_state = 2}, + [4220] = {.lex_state = 48, .external_lex_state = 6}, + [4221] = {.lex_state = 48, .external_lex_state = 6}, + [4222] = {.lex_state = 48, .external_lex_state = 2}, + [4223] = {.lex_state = 48, .external_lex_state = 2}, + [4224] = {.lex_state = 48, .external_lex_state = 6}, + [4225] = {.lex_state = 48, .external_lex_state = 5}, + [4226] = {.lex_state = 63, .external_lex_state = 2}, + [4227] = {.lex_state = 48, .external_lex_state = 2}, [4228] = {.lex_state = 81, .external_lex_state = 2}, - [4229] = {.lex_state = 48, .external_lex_state = 6}, - [4230] = {.lex_state = 48, .external_lex_state = 2}, - [4231] = {.lex_state = 48, .external_lex_state = 2}, - [4232] = {.lex_state = 48, .external_lex_state = 2}, + [4229] = {.lex_state = 81, .external_lex_state = 2}, + [4230] = {.lex_state = 48, .external_lex_state = 6}, + [4231] = {.lex_state = 48, .external_lex_state = 6}, + [4232] = {.lex_state = 48, .external_lex_state = 6}, [4233] = {.lex_state = 48, .external_lex_state = 6}, [4234] = {.lex_state = 48, .external_lex_state = 6}, - [4235] = {.lex_state = 48, .external_lex_state = 2}, - [4236] = {.lex_state = 49, .external_lex_state = 2}, - [4237] = {.lex_state = 48, .external_lex_state = 2}, - [4238] = {.lex_state = 48, .external_lex_state = 5}, - [4239] = {.lex_state = 48, .external_lex_state = 6}, - [4240] = {.lex_state = 81, .external_lex_state = 2}, - [4241] = {.lex_state = 48, .external_lex_state = 6}, - [4242] = {.lex_state = 48, .external_lex_state = 6}, - [4243] = {.lex_state = 48, .external_lex_state = 2}, - [4244] = {.lex_state = 48, .external_lex_state = 6}, - [4245] = {.lex_state = 63, .external_lex_state = 2}, + [4235] = {.lex_state = 49, .external_lex_state = 2}, + [4236] = {.lex_state = 48, .external_lex_state = 6}, + [4237] = {.lex_state = 48, .external_lex_state = 6}, + [4238] = {.lex_state = 63, .external_lex_state = 2}, + [4239] = {.lex_state = 48, .external_lex_state = 5}, + [4240] = {.lex_state = 49, .external_lex_state = 2}, + [4241] = {.lex_state = 55, .external_lex_state = 2}, + [4242] = {.lex_state = 48, .external_lex_state = 2}, + [4243] = {.lex_state = 48, .external_lex_state = 6}, + [4244] = {.lex_state = 48, .external_lex_state = 2}, + [4245] = {.lex_state = 48, .external_lex_state = 6}, [4246] = {.lex_state = 48, .external_lex_state = 2}, - [4247] = {.lex_state = 48, .external_lex_state = 2}, - [4248] = {.lex_state = 48, .external_lex_state = 5}, - [4249] = {.lex_state = 48, .external_lex_state = 2}, - [4250] = {.lex_state = 48, .external_lex_state = 6}, - [4251] = {.lex_state = 48, .external_lex_state = 2}, - [4252] = {.lex_state = 48, .external_lex_state = 6}, - [4253] = {.lex_state = 48, .external_lex_state = 2}, - [4254] = {.lex_state = 48, .external_lex_state = 6}, - [4255] = {.lex_state = 48, .external_lex_state = 6}, - [4256] = {.lex_state = 48, .external_lex_state = 6}, - [4257] = {.lex_state = 48, .external_lex_state = 6}, - [4258] = {.lex_state = 48, .external_lex_state = 2}, - [4259] = {.lex_state = 405, .external_lex_state = 5}, - [4260] = {.lex_state = 48, .external_lex_state = 6}, - [4261] = {.lex_state = 81, .external_lex_state = 2}, - [4262] = {.lex_state = 49, .external_lex_state = 2}, - [4263] = {.lex_state = 81, .external_lex_state = 2}, + [4247] = {.lex_state = 81, .external_lex_state = 2}, + [4248] = {.lex_state = 55, .external_lex_state = 2}, + [4249] = {.lex_state = 48, .external_lex_state = 5}, + [4250] = {.lex_state = 48, .external_lex_state = 5}, + [4251] = {.lex_state = 48, .external_lex_state = 5}, + [4252] = {.lex_state = 48, .external_lex_state = 5}, + [4253] = {.lex_state = 405, .external_lex_state = 5}, + [4254] = {.lex_state = 405, .external_lex_state = 5}, + [4255] = {.lex_state = 48, .external_lex_state = 2}, + [4256] = {.lex_state = 405, .external_lex_state = 5}, + [4257] = {.lex_state = 48, .external_lex_state = 2}, + [4258] = {.lex_state = 81, .external_lex_state = 2}, + [4259] = {.lex_state = 405, .external_lex_state = 2}, + [4260] = {.lex_state = 405, .external_lex_state = 5}, + [4261] = {.lex_state = 405, .external_lex_state = 5}, + [4262] = {.lex_state = 405, .external_lex_state = 5}, + [4263] = {.lex_state = 48, .external_lex_state = 2}, [4264] = {.lex_state = 48, .external_lex_state = 2}, - [4265] = {.lex_state = 48, .external_lex_state = 2}, + [4265] = {.lex_state = 81, .external_lex_state = 2}, [4266] = {.lex_state = 48, .external_lex_state = 6}, - [4267] = {.lex_state = 48, .external_lex_state = 2}, + [4267] = {.lex_state = 49, .external_lex_state = 2}, [4268] = {.lex_state = 48, .external_lex_state = 2}, [4269] = {.lex_state = 48, .external_lex_state = 2}, - [4270] = {.lex_state = 81, .external_lex_state = 2}, - [4271] = {.lex_state = 81, .external_lex_state = 2}, - [4272] = {.lex_state = 49, .external_lex_state = 2}, - [4273] = {.lex_state = 48, .external_lex_state = 2}, - [4274] = {.lex_state = 48, .external_lex_state = 5}, + [4270] = {.lex_state = 48, .external_lex_state = 2}, + [4271] = {.lex_state = 48, .external_lex_state = 5}, + [4272] = {.lex_state = 48, .external_lex_state = 6}, + [4273] = {.lex_state = 48, .external_lex_state = 6}, + [4274] = {.lex_state = 48, .external_lex_state = 2}, [4275] = {.lex_state = 48, .external_lex_state = 5}, [4276] = {.lex_state = 48, .external_lex_state = 2}, - [4277] = {.lex_state = 81, .external_lex_state = 2}, - [4278] = {.lex_state = 48, .external_lex_state = 5}, - [4279] = {.lex_state = 81, .external_lex_state = 2}, - [4280] = {.lex_state = 48, .external_lex_state = 6}, - [4281] = {.lex_state = 55, .external_lex_state = 2}, - [4282] = {.lex_state = 48, .external_lex_state = 6}, - [4283] = {.lex_state = 48, .external_lex_state = 6}, + [4277] = {.lex_state = 48, .external_lex_state = 6}, + [4278] = {.lex_state = 48, .external_lex_state = 6}, + [4279] = {.lex_state = 48, .external_lex_state = 6}, + [4280] = {.lex_state = 48, .external_lex_state = 5}, + [4281] = {.lex_state = 48, .external_lex_state = 6}, + [4282] = {.lex_state = 81, .external_lex_state = 2}, + [4283] = {.lex_state = 48, .external_lex_state = 5}, [4284] = {.lex_state = 48, .external_lex_state = 6}, [4285] = {.lex_state = 48, .external_lex_state = 5}, - [4286] = {.lex_state = 405, .external_lex_state = 6}, - [4287] = {.lex_state = 48, .external_lex_state = 2}, - [4288] = {.lex_state = 48, .external_lex_state = 2}, - [4289] = {.lex_state = 48, .external_lex_state = 5}, - [4290] = {.lex_state = 49, .external_lex_state = 2}, - [4291] = {.lex_state = 48, .external_lex_state = 2}, + [4286] = {.lex_state = 48, .external_lex_state = 5}, + [4287] = {.lex_state = 48, .external_lex_state = 6}, + [4288] = {.lex_state = 48, .external_lex_state = 6}, + [4289] = {.lex_state = 48, .external_lex_state = 6}, + [4290] = {.lex_state = 48, .external_lex_state = 2}, + [4291] = {.lex_state = 48, .external_lex_state = 6}, [4292] = {.lex_state = 48, .external_lex_state = 6}, - [4293] = {.lex_state = 49, .external_lex_state = 2}, - [4294] = {.lex_state = 48, .external_lex_state = 2}, - [4295] = {.lex_state = 55, .external_lex_state = 2}, + [4293] = {.lex_state = 48, .external_lex_state = 6}, + [4294] = {.lex_state = 48, .external_lex_state = 6}, + [4295] = {.lex_state = 49, .external_lex_state = 2}, [4296] = {.lex_state = 48, .external_lex_state = 6}, - [4297] = {.lex_state = 48, .external_lex_state = 5}, - [4298] = {.lex_state = 48, .external_lex_state = 6}, - [4299] = {.lex_state = 48, .external_lex_state = 6}, - [4300] = {.lex_state = 48, .external_lex_state = 6}, - [4301] = {.lex_state = 48, .external_lex_state = 5}, - [4302] = {.lex_state = 48, .external_lex_state = 6}, - [4303] = {.lex_state = 48, .external_lex_state = 5}, - [4304] = {.lex_state = 405, .external_lex_state = 7}, - [4305] = {.lex_state = 85, .external_lex_state = 2}, + [4297] = {.lex_state = 48, .external_lex_state = 6}, + [4298] = {.lex_state = 48, .external_lex_state = 2}, + [4299] = {.lex_state = 48, .external_lex_state = 2}, + [4300] = {.lex_state = 49, .external_lex_state = 2}, + [4301] = {.lex_state = 48, .external_lex_state = 2}, + [4302] = {.lex_state = 48, .external_lex_state = 2}, + [4303] = {.lex_state = 48, .external_lex_state = 6}, + [4304] = {.lex_state = 48, .external_lex_state = 6}, + [4305] = {.lex_state = 48, .external_lex_state = 6}, [4306] = {.lex_state = 405, .external_lex_state = 7}, - [4307] = {.lex_state = 48, .external_lex_state = 5}, - [4308] = {.lex_state = 48, .external_lex_state = 2}, - [4309] = {.lex_state = 75, .external_lex_state = 2}, - [4310] = {.lex_state = 91, .external_lex_state = 2}, - [4311] = {.lex_state = 405, .external_lex_state = 6}, - [4312] = {.lex_state = 75, .external_lex_state = 2}, - [4313] = {.lex_state = 48, .external_lex_state = 6}, - [4314] = {.lex_state = 405, .external_lex_state = 7}, - [4315] = {.lex_state = 55, .external_lex_state = 2}, - [4316] = {.lex_state = 405, .external_lex_state = 5}, - [4317] = {.lex_state = 75, .external_lex_state = 2}, - [4318] = {.lex_state = 405, .external_lex_state = 5}, - [4319] = {.lex_state = 48, .external_lex_state = 5}, - [4320] = {.lex_state = 48, .external_lex_state = 5}, - [4321] = {.lex_state = 48, .external_lex_state = 5}, - [4322] = {.lex_state = 75, .external_lex_state = 2}, - [4323] = {.lex_state = 405, .external_lex_state = 7}, - [4324] = {.lex_state = 405, .external_lex_state = 7}, - [4325] = {.lex_state = 75, .external_lex_state = 2}, - [4326] = {.lex_state = 405, .external_lex_state = 7}, - [4327] = {.lex_state = 48, .external_lex_state = 2}, - [4328] = {.lex_state = 75, .external_lex_state = 2}, - [4329] = {.lex_state = 405, .external_lex_state = 5}, - [4330] = {.lex_state = 85, .external_lex_state = 2}, - [4331] = {.lex_state = 75, .external_lex_state = 2}, - [4332] = {.lex_state = 85, .external_lex_state = 2}, - [4333] = {.lex_state = 85, .external_lex_state = 2}, - [4334] = {.lex_state = 75, .external_lex_state = 2}, - [4335] = {.lex_state = 75, .external_lex_state = 2}, + [4307] = {.lex_state = 405, .external_lex_state = 5}, + [4308] = {.lex_state = 85, .external_lex_state = 2}, + [4309] = {.lex_state = 91, .external_lex_state = 2}, + [4310] = {.lex_state = 75, .external_lex_state = 2}, + [4311] = {.lex_state = 75, .external_lex_state = 2}, + [4312] = {.lex_state = 405, .external_lex_state = 5}, + [4313] = {.lex_state = 75, .external_lex_state = 2}, + [4314] = {.lex_state = 48, .external_lex_state = 2}, + [4315] = {.lex_state = 91, .external_lex_state = 2}, + [4316] = {.lex_state = 405, .external_lex_state = 7}, + [4317] = {.lex_state = 405, .external_lex_state = 5}, + [4318] = {.lex_state = 48, .external_lex_state = 2}, + [4319] = {.lex_state = 85, .external_lex_state = 2}, + [4320] = {.lex_state = 75, .external_lex_state = 2}, + [4321] = {.lex_state = 55, .external_lex_state = 2}, + [4322] = {.lex_state = 405, .external_lex_state = 7}, + [4323] = {.lex_state = 405, .external_lex_state = 5}, + [4324] = {.lex_state = 85, .external_lex_state = 2}, + [4325] = {.lex_state = 405, .external_lex_state = 7}, + [4326] = {.lex_state = 48, .external_lex_state = 5}, + [4327] = {.lex_state = 48, .external_lex_state = 5}, + [4328] = {.lex_state = 48, .external_lex_state = 5}, + [4329] = {.lex_state = 75, .external_lex_state = 2}, + [4330] = {.lex_state = 75, .external_lex_state = 2}, + [4331] = {.lex_state = 48, .external_lex_state = 5}, + [4332] = {.lex_state = 75, .external_lex_state = 2}, + [4333] = {.lex_state = 75, .external_lex_state = 2}, + [4334] = {.lex_state = 85, .external_lex_state = 2}, + [4335] = {.lex_state = 405, .external_lex_state = 7}, [4336] = {.lex_state = 85, .external_lex_state = 2}, [4337] = {.lex_state = 405, .external_lex_state = 5}, - [4338] = {.lex_state = 91, .external_lex_state = 2}, - [4339] = {.lex_state = 405, .external_lex_state = 5}, - [4340] = {.lex_state = 405, .external_lex_state = 7}, - [4341] = {.lex_state = 85, .external_lex_state = 2}, - [4342] = {.lex_state = 405, .external_lex_state = 7}, - [4343] = {.lex_state = 75, .external_lex_state = 2}, - [4344] = {.lex_state = 50, .external_lex_state = 2}, - [4345] = {.lex_state = 88, .external_lex_state = 2}, - [4346] = {.lex_state = 405, .external_lex_state = 5}, - [4347] = {.lex_state = 405, .external_lex_state = 2}, - [4348] = {.lex_state = 405, .external_lex_state = 2}, - [4349] = {.lex_state = 50, .external_lex_state = 2}, - [4350] = {.lex_state = 405, .external_lex_state = 5}, - [4351] = {.lex_state = 405, .external_lex_state = 5}, - [4352] = {.lex_state = 405, .external_lex_state = 2}, - [4353] = {.lex_state = 405, .external_lex_state = 2}, - [4354] = {.lex_state = 405, .external_lex_state = 2}, + [4338] = {.lex_state = 405, .external_lex_state = 7}, + [4339] = {.lex_state = 405, .external_lex_state = 7}, + [4340] = {.lex_state = 405, .external_lex_state = 6}, + [4341] = {.lex_state = 48, .external_lex_state = 6}, + [4342] = {.lex_state = 85, .external_lex_state = 2}, + [4343] = {.lex_state = 405, .external_lex_state = 7}, + [4344] = {.lex_state = 75, .external_lex_state = 2}, + [4345] = {.lex_state = 405, .external_lex_state = 5}, + [4346] = {.lex_state = 50, .external_lex_state = 2}, + [4347] = {.lex_state = 405, .external_lex_state = 5}, + [4348] = {.lex_state = 49, .external_lex_state = 5}, + [4349] = {.lex_state = 405, .external_lex_state = 2}, + [4350] = {.lex_state = 50, .external_lex_state = 2}, + [4351] = {.lex_state = 50, .external_lex_state = 2}, + [4352] = {.lex_state = 405, .external_lex_state = 6}, + [4353] = {.lex_state = 405, .external_lex_state = 5}, + [4354] = {.lex_state = 405, .external_lex_state = 6}, [4355] = {.lex_state = 405, .external_lex_state = 5}, [4356] = {.lex_state = 405, .external_lex_state = 5}, - [4357] = {.lex_state = 405, .external_lex_state = 5}, - [4358] = {.lex_state = 405, .external_lex_state = 5}, - [4359] = {.lex_state = 405, .external_lex_state = 5}, - [4360] = {.lex_state = 405, .external_lex_state = 2}, - [4361] = {.lex_state = 405, .external_lex_state = 5}, + [4357] = {.lex_state = 405, .external_lex_state = 6}, + [4358] = {.lex_state = 50, .external_lex_state = 2}, + [4359] = {.lex_state = 49, .external_lex_state = 5}, + [4360] = {.lex_state = 49, .external_lex_state = 5}, + [4361] = {.lex_state = 81, .external_lex_state = 2}, [4362] = {.lex_state = 405, .external_lex_state = 5}, - [4363] = {.lex_state = 405, .external_lex_state = 5}, - [4364] = {.lex_state = 405, .external_lex_state = 5}, - [4365] = {.lex_state = 405, .external_lex_state = 5}, - [4366] = {.lex_state = 405, .external_lex_state = 5}, + [4363] = {.lex_state = 81, .external_lex_state = 2}, + [4364] = {.lex_state = 75, .external_lex_state = 2}, + [4365] = {.lex_state = 50, .external_lex_state = 2}, + [4366] = {.lex_state = 75, .external_lex_state = 2}, [4367] = {.lex_state = 405, .external_lex_state = 5}, [4368] = {.lex_state = 405, .external_lex_state = 5}, - [4369] = {.lex_state = 405, .external_lex_state = 5}, - [4370] = {.lex_state = 405, .external_lex_state = 5}, + [4369] = {.lex_state = 405, .external_lex_state = 2}, + [4370] = {.lex_state = 405, .external_lex_state = 2}, [4371] = {.lex_state = 405, .external_lex_state = 5}, - [4372] = {.lex_state = 405, .external_lex_state = 5}, + [4372] = {.lex_state = 50, .external_lex_state = 2}, [4373] = {.lex_state = 405, .external_lex_state = 5}, - [4374] = {.lex_state = 405, .external_lex_state = 5}, + [4374] = {.lex_state = 405, .external_lex_state = 2}, [4375] = {.lex_state = 405, .external_lex_state = 5}, - [4376] = {.lex_state = 405, .external_lex_state = 5}, + [4376] = {.lex_state = 405, .external_lex_state = 6}, [4377] = {.lex_state = 405, .external_lex_state = 5}, - [4378] = {.lex_state = 405, .external_lex_state = 5}, - [4379] = {.lex_state = 405, .external_lex_state = 5}, - [4380] = {.lex_state = 405, .external_lex_state = 5}, + [4378] = {.lex_state = 405, .external_lex_state = 6}, + [4379] = {.lex_state = 405, .external_lex_state = 2}, + [4380] = {.lex_state = 405, .external_lex_state = 2}, [4381] = {.lex_state = 405, .external_lex_state = 5}, - [4382] = {.lex_state = 405, .external_lex_state = 5}, - [4383] = {.lex_state = 405, .external_lex_state = 5}, - [4384] = {.lex_state = 405, .external_lex_state = 5}, - [4385] = {.lex_state = 405, .external_lex_state = 5}, + [4382] = {.lex_state = 405, .external_lex_state = 2}, + [4383] = {.lex_state = 81, .external_lex_state = 2}, + [4384] = {.lex_state = 50, .external_lex_state = 2}, + [4385] = {.lex_state = 48, .external_lex_state = 2}, [4386] = {.lex_state = 405, .external_lex_state = 5}, [4387] = {.lex_state = 405, .external_lex_state = 5}, [4388] = {.lex_state = 405, .external_lex_state = 5}, [4389] = {.lex_state = 405, .external_lex_state = 5}, - [4390] = {.lex_state = 405, .external_lex_state = 5}, - [4391] = {.lex_state = 405, .external_lex_state = 5}, - [4392] = {.lex_state = 405, .external_lex_state = 5}, - [4393] = {.lex_state = 405, .external_lex_state = 5}, - [4394] = {.lex_state = 50, .external_lex_state = 2}, + [4390] = {.lex_state = 50, .external_lex_state = 2}, + [4391] = {.lex_state = 405, .external_lex_state = 2}, + [4392] = {.lex_state = 75, .external_lex_state = 2}, + [4393] = {.lex_state = 50, .external_lex_state = 2}, + [4394] = {.lex_state = 405, .external_lex_state = 5}, [4395] = {.lex_state = 405, .external_lex_state = 5}, - [4396] = {.lex_state = 405, .external_lex_state = 5}, - [4397] = {.lex_state = 75, .external_lex_state = 2}, - [4398] = {.lex_state = 405, .external_lex_state = 5}, + [4396] = {.lex_state = 405, .external_lex_state = 2}, + [4397] = {.lex_state = 405, .external_lex_state = 5}, + [4398] = {.lex_state = 405, .external_lex_state = 2}, [4399] = {.lex_state = 405, .external_lex_state = 5}, - [4400] = {.lex_state = 405, .external_lex_state = 5}, - [4401] = {.lex_state = 405, .external_lex_state = 2}, - [4402] = {.lex_state = 88, .external_lex_state = 2}, + [4400] = {.lex_state = 50, .external_lex_state = 2}, + [4401] = {.lex_state = 405, .external_lex_state = 5}, + [4402] = {.lex_state = 405, .external_lex_state = 5}, [4403] = {.lex_state = 405, .external_lex_state = 5}, [4404] = {.lex_state = 405, .external_lex_state = 5}, - [4405] = {.lex_state = 405, .external_lex_state = 2}, - [4406] = {.lex_state = 50, .external_lex_state = 2}, - [4407] = {.lex_state = 405, .external_lex_state = 2}, - [4408] = {.lex_state = 405, .external_lex_state = 2}, - [4409] = {.lex_state = 405, .external_lex_state = 2}, - [4410] = {.lex_state = 405, .external_lex_state = 2}, - [4411] = {.lex_state = 405, .external_lex_state = 2}, + [4405] = {.lex_state = 405, .external_lex_state = 5}, + [4406] = {.lex_state = 405, .external_lex_state = 5}, + [4407] = {.lex_state = 405, .external_lex_state = 5}, + [4408] = {.lex_state = 50, .external_lex_state = 2}, + [4409] = {.lex_state = 50, .external_lex_state = 2}, + [4410] = {.lex_state = 405, .external_lex_state = 5}, + [4411] = {.lex_state = 405, .external_lex_state = 5}, [4412] = {.lex_state = 405, .external_lex_state = 5}, - [4413] = {.lex_state = 405, .external_lex_state = 2}, + [4413] = {.lex_state = 75, .external_lex_state = 2}, [4414] = {.lex_state = 405, .external_lex_state = 5}, - [4415] = {.lex_state = 405, .external_lex_state = 2}, - [4416] = {.lex_state = 405, .external_lex_state = 2}, - [4417] = {.lex_state = 405, .external_lex_state = 5}, + [4415] = {.lex_state = 405, .external_lex_state = 5}, + [4416] = {.lex_state = 405, .external_lex_state = 5}, + [4417] = {.lex_state = 50, .external_lex_state = 2}, [4418] = {.lex_state = 405, .external_lex_state = 5}, - [4419] = {.lex_state = 405, .external_lex_state = 5}, - [4420] = {.lex_state = 405, .external_lex_state = 5}, - [4421] = {.lex_state = 50, .external_lex_state = 2}, - [4422] = {.lex_state = 405, .external_lex_state = 2}, - [4423] = {.lex_state = 75, .external_lex_state = 2}, - [4424] = {.lex_state = 405, .external_lex_state = 5}, - [4425] = {.lex_state = 405, .external_lex_state = 5}, - [4426] = {.lex_state = 405, .external_lex_state = 5}, - [4427] = {.lex_state = 405, .external_lex_state = 5}, + [4419] = {.lex_state = 405, .external_lex_state = 2}, + [4420] = {.lex_state = 75, .external_lex_state = 2}, + [4421] = {.lex_state = 405, .external_lex_state = 5}, + [4422] = {.lex_state = 50, .external_lex_state = 2}, + [4423] = {.lex_state = 405, .external_lex_state = 5}, + [4424] = {.lex_state = 50, .external_lex_state = 2}, + [4425] = {.lex_state = 50, .external_lex_state = 2}, + [4426] = {.lex_state = 48, .external_lex_state = 2}, + [4427] = {.lex_state = 49, .external_lex_state = 5}, [4428] = {.lex_state = 405, .external_lex_state = 2}, - [4429] = {.lex_state = 405, .external_lex_state = 5}, + [4429] = {.lex_state = 405, .external_lex_state = 2}, [4430] = {.lex_state = 405, .external_lex_state = 5}, - [4431] = {.lex_state = 88, .external_lex_state = 2}, + [4431] = {.lex_state = 405, .external_lex_state = 5}, [4432] = {.lex_state = 405, .external_lex_state = 5}, - [4433] = {.lex_state = 405, .external_lex_state = 2}, + [4433] = {.lex_state = 405, .external_lex_state = 5}, [4434] = {.lex_state = 405, .external_lex_state = 5}, - [4435] = {.lex_state = 405, .external_lex_state = 5}, - [4436] = {.lex_state = 405, .external_lex_state = 5}, + [4435] = {.lex_state = 405, .external_lex_state = 2}, + [4436] = {.lex_state = 405, .external_lex_state = 2}, [4437] = {.lex_state = 405, .external_lex_state = 2}, [4438] = {.lex_state = 405, .external_lex_state = 5}, [4439] = {.lex_state = 405, .external_lex_state = 2}, [4440] = {.lex_state = 405, .external_lex_state = 5}, - [4441] = {.lex_state = 405, .external_lex_state = 2}, - [4442] = {.lex_state = 405, .external_lex_state = 5}, - [4443] = {.lex_state = 405, .external_lex_state = 5}, - [4444] = {.lex_state = 405, .external_lex_state = 5}, - [4445] = {.lex_state = 405, .external_lex_state = 5}, - [4446] = {.lex_state = 405, .external_lex_state = 5}, + [4441] = {.lex_state = 405, .external_lex_state = 6}, + [4442] = {.lex_state = 88, .external_lex_state = 2}, + [4443] = {.lex_state = 405, .external_lex_state = 2}, + [4444] = {.lex_state = 50, .external_lex_state = 2}, + [4445] = {.lex_state = 405, .external_lex_state = 2}, + [4446] = {.lex_state = 48, .external_lex_state = 2}, [4447] = {.lex_state = 405, .external_lex_state = 2}, [4448] = {.lex_state = 405, .external_lex_state = 2}, - [4449] = {.lex_state = 405, .external_lex_state = 2}, - [4450] = {.lex_state = 405, .external_lex_state = 6}, - [4451] = {.lex_state = 405, .external_lex_state = 6}, - [4452] = {.lex_state = 405, .external_lex_state = 6}, - [4453] = {.lex_state = 405, .external_lex_state = 6}, - [4454] = {.lex_state = 405, .external_lex_state = 6}, - [4455] = {.lex_state = 405, .external_lex_state = 6}, - [4456] = {.lex_state = 405, .external_lex_state = 5}, - [4457] = {.lex_state = 405, .external_lex_state = 2}, + [4449] = {.lex_state = 405, .external_lex_state = 5}, + [4450] = {.lex_state = 88, .external_lex_state = 2}, + [4451] = {.lex_state = 405, .external_lex_state = 2}, + [4452] = {.lex_state = 405, .external_lex_state = 5}, + [4453] = {.lex_state = 405, .external_lex_state = 5}, + [4454] = {.lex_state = 405, .external_lex_state = 5}, + [4455] = {.lex_state = 405, .external_lex_state = 5}, + [4456] = {.lex_state = 49, .external_lex_state = 5}, + [4457] = {.lex_state = 405, .external_lex_state = 5}, [4458] = {.lex_state = 405, .external_lex_state = 5}, - [4459] = {.lex_state = 405, .external_lex_state = 5}, - [4460] = {.lex_state = 88, .external_lex_state = 2}, - [4461] = {.lex_state = 405, .external_lex_state = 2}, - [4462] = {.lex_state = 50, .external_lex_state = 2}, - [4463] = {.lex_state = 75, .external_lex_state = 2}, + [4459] = {.lex_state = 48, .external_lex_state = 2}, + [4460] = {.lex_state = 405, .external_lex_state = 2}, + [4461] = {.lex_state = 405, .external_lex_state = 5}, + [4462] = {.lex_state = 405, .external_lex_state = 5}, + [4463] = {.lex_state = 405, .external_lex_state = 5}, [4464] = {.lex_state = 405, .external_lex_state = 2}, - [4465] = {.lex_state = 405, .external_lex_state = 2}, - [4466] = {.lex_state = 405, .external_lex_state = 2}, - [4467] = {.lex_state = 405, .external_lex_state = 2}, - [4468] = {.lex_state = 50, .external_lex_state = 2}, - [4469] = {.lex_state = 405, .external_lex_state = 2}, + [4465] = {.lex_state = 405, .external_lex_state = 5}, + [4466] = {.lex_state = 48, .external_lex_state = 2}, + [4467] = {.lex_state = 405, .external_lex_state = 5}, + [4468] = {.lex_state = 405, .external_lex_state = 5}, + [4469] = {.lex_state = 405, .external_lex_state = 5}, [4470] = {.lex_state = 405, .external_lex_state = 5}, - [4471] = {.lex_state = 405, .external_lex_state = 2}, - [4472] = {.lex_state = 75, .external_lex_state = 2}, - [4473] = {.lex_state = 50, .external_lex_state = 2}, - [4474] = {.lex_state = 405, .external_lex_state = 5}, - [4475] = {.lex_state = 405, .external_lex_state = 2}, - [4476] = {.lex_state = 405, .external_lex_state = 2}, + [4471] = {.lex_state = 48, .external_lex_state = 2}, + [4472] = {.lex_state = 405, .external_lex_state = 5}, + [4473] = {.lex_state = 405, .external_lex_state = 2}, + [4474] = {.lex_state = 50, .external_lex_state = 2}, + [4475] = {.lex_state = 405, .external_lex_state = 5}, + [4476] = {.lex_state = 405, .external_lex_state = 5}, [4477] = {.lex_state = 405, .external_lex_state = 5}, - [4478] = {.lex_state = 405, .external_lex_state = 5}, - [4479] = {.lex_state = 405, .external_lex_state = 5}, - [4480] = {.lex_state = 405, .external_lex_state = 5}, + [4478] = {.lex_state = 49, .external_lex_state = 5}, + [4479] = {.lex_state = 48, .external_lex_state = 2}, + [4480] = {.lex_state = 50, .external_lex_state = 2}, [4481] = {.lex_state = 405, .external_lex_state = 5}, - [4482] = {.lex_state = 405, .external_lex_state = 5}, - [4483] = {.lex_state = 405, .external_lex_state = 5}, + [4482] = {.lex_state = 48, .external_lex_state = 2}, + [4483] = {.lex_state = 48, .external_lex_state = 2}, [4484] = {.lex_state = 405, .external_lex_state = 5}, - [4485] = {.lex_state = 405, .external_lex_state = 5}, - [4486] = {.lex_state = 50, .external_lex_state = 2}, - [4487] = {.lex_state = 405, .external_lex_state = 5}, + [4485] = {.lex_state = 405, .external_lex_state = 2}, + [4486] = {.lex_state = 405, .external_lex_state = 5}, + [4487] = {.lex_state = 88, .external_lex_state = 2}, [4488] = {.lex_state = 405, .external_lex_state = 5}, - [4489] = {.lex_state = 405, .external_lex_state = 5}, - [4490] = {.lex_state = 405, .external_lex_state = 5}, - [4491] = {.lex_state = 405, .external_lex_state = 5}, - [4492] = {.lex_state = 405, .external_lex_state = 5}, + [4489] = {.lex_state = 405, .external_lex_state = 2}, + [4490] = {.lex_state = 48, .external_lex_state = 2}, + [4491] = {.lex_state = 50, .external_lex_state = 2}, + [4492] = {.lex_state = 405, .external_lex_state = 2}, [4493] = {.lex_state = 405, .external_lex_state = 5}, [4494] = {.lex_state = 405, .external_lex_state = 5}, [4495] = {.lex_state = 50, .external_lex_state = 2}, - [4496] = {.lex_state = 405, .external_lex_state = 5}, + [4496] = {.lex_state = 88, .external_lex_state = 2}, [4497] = {.lex_state = 405, .external_lex_state = 5}, [4498] = {.lex_state = 405, .external_lex_state = 5}, - [4499] = {.lex_state = 405, .external_lex_state = 5}, - [4500] = {.lex_state = 405, .external_lex_state = 5}, + [4499] = {.lex_state = 50, .external_lex_state = 2}, + [4500] = {.lex_state = 50, .external_lex_state = 2}, [4501] = {.lex_state = 405, .external_lex_state = 5}, [4502] = {.lex_state = 405, .external_lex_state = 5}, [4503] = {.lex_state = 405, .external_lex_state = 5}, - [4504] = {.lex_state = 405, .external_lex_state = 5}, - [4505] = {.lex_state = 405, .external_lex_state = 5}, + [4504] = {.lex_state = 50, .external_lex_state = 2}, + [4505] = {.lex_state = 50, .external_lex_state = 2}, [4506] = {.lex_state = 405, .external_lex_state = 5}, [4507] = {.lex_state = 405, .external_lex_state = 5}, - [4508] = {.lex_state = 405, .external_lex_state = 2}, + [4508] = {.lex_state = 405, .external_lex_state = 5}, [4509] = {.lex_state = 405, .external_lex_state = 5}, [4510] = {.lex_state = 50, .external_lex_state = 2}, - [4511] = {.lex_state = 50, .external_lex_state = 2}, - [4512] = {.lex_state = 48, .external_lex_state = 2}, - [4513] = {.lex_state = 405, .external_lex_state = 5}, - [4514] = {.lex_state = 50, .external_lex_state = 2}, + [4511] = {.lex_state = 405, .external_lex_state = 5}, + [4512] = {.lex_state = 49, .external_lex_state = 5}, + [4513] = {.lex_state = 49, .external_lex_state = 5}, + [4514] = {.lex_state = 48, .external_lex_state = 2}, [4515] = {.lex_state = 405, .external_lex_state = 5}, [4516] = {.lex_state = 405, .external_lex_state = 5}, - [4517] = {.lex_state = 405, .external_lex_state = 5}, - [4518] = {.lex_state = 405, .external_lex_state = 5}, - [4519] = {.lex_state = 405, .external_lex_state = 2}, - [4520] = {.lex_state = 50, .external_lex_state = 2}, + [4517] = {.lex_state = 75, .external_lex_state = 2}, + [4518] = {.lex_state = 50, .external_lex_state = 2}, + [4519] = {.lex_state = 405, .external_lex_state = 5}, + [4520] = {.lex_state = 405, .external_lex_state = 5}, [4521] = {.lex_state = 405, .external_lex_state = 5}, [4522] = {.lex_state = 405, .external_lex_state = 5}, - [4523] = {.lex_state = 50, .external_lex_state = 2}, - [4524] = {.lex_state = 50, .external_lex_state = 2}, - [4525] = {.lex_state = 50, .external_lex_state = 2}, - [4526] = {.lex_state = 48, .external_lex_state = 2}, - [4527] = {.lex_state = 405, .external_lex_state = 2}, - [4528] = {.lex_state = 50, .external_lex_state = 2}, + [4523] = {.lex_state = 405, .external_lex_state = 5}, + [4524] = {.lex_state = 405, .external_lex_state = 5}, + [4525] = {.lex_state = 405, .external_lex_state = 5}, + [4526] = {.lex_state = 405, .external_lex_state = 5}, + [4527] = {.lex_state = 405, .external_lex_state = 5}, + [4528] = {.lex_state = 405, .external_lex_state = 5}, [4529] = {.lex_state = 405, .external_lex_state = 5}, [4530] = {.lex_state = 405, .external_lex_state = 5}, - [4531] = {.lex_state = 405, .external_lex_state = 2}, + [4531] = {.lex_state = 405, .external_lex_state = 5}, [4532] = {.lex_state = 405, .external_lex_state = 5}, - [4533] = {.lex_state = 405, .external_lex_state = 5}, - [4534] = {.lex_state = 50, .external_lex_state = 2}, - [4535] = {.lex_state = 405, .external_lex_state = 5}, - [4536] = {.lex_state = 405, .external_lex_state = 5}, + [4533] = {.lex_state = 75, .external_lex_state = 2}, + [4534] = {.lex_state = 405, .external_lex_state = 2}, + [4535] = {.lex_state = 405, .external_lex_state = 2}, + [4536] = {.lex_state = 48, .external_lex_state = 2}, [4537] = {.lex_state = 405, .external_lex_state = 5}, - [4538] = {.lex_state = 50, .external_lex_state = 2}, - [4539] = {.lex_state = 405, .external_lex_state = 5}, - [4540] = {.lex_state = 405, .external_lex_state = 5}, + [4538] = {.lex_state = 55, .external_lex_state = 2}, + [4539] = {.lex_state = 50, .external_lex_state = 2}, + [4540] = {.lex_state = 88, .external_lex_state = 2}, [4541] = {.lex_state = 50, .external_lex_state = 2}, [4542] = {.lex_state = 405, .external_lex_state = 5}, [4543] = {.lex_state = 405, .external_lex_state = 5}, - [4544] = {.lex_state = 75, .external_lex_state = 2}, + [4544] = {.lex_state = 405, .external_lex_state = 5}, [4545] = {.lex_state = 405, .external_lex_state = 5}, [4546] = {.lex_state = 405, .external_lex_state = 5}, - [4547] = {.lex_state = 48, .external_lex_state = 2}, - [4548] = {.lex_state = 48, .external_lex_state = 2}, - [4549] = {.lex_state = 405, .external_lex_state = 2}, - [4550] = {.lex_state = 50, .external_lex_state = 2}, - [4551] = {.lex_state = 50, .external_lex_state = 2}, - [4552] = {.lex_state = 48, .external_lex_state = 2}, + [4547] = {.lex_state = 405, .external_lex_state = 2}, + [4548] = {.lex_state = 405, .external_lex_state = 5}, + [4549] = {.lex_state = 405, .external_lex_state = 5}, + [4550] = {.lex_state = 405, .external_lex_state = 5}, + [4551] = {.lex_state = 405, .external_lex_state = 5}, + [4552] = {.lex_state = 405, .external_lex_state = 5}, [4553] = {.lex_state = 405, .external_lex_state = 5}, [4554] = {.lex_state = 405, .external_lex_state = 5}, [4555] = {.lex_state = 405, .external_lex_state = 5}, - [4556] = {.lex_state = 405, .external_lex_state = 5}, - [4557] = {.lex_state = 48, .external_lex_state = 2}, - [4558] = {.lex_state = 405, .external_lex_state = 5}, - [4559] = {.lex_state = 48, .external_lex_state = 2}, - [4560] = {.lex_state = 48, .external_lex_state = 2}, - [4561] = {.lex_state = 405, .external_lex_state = 2}, + [4556] = {.lex_state = 50, .external_lex_state = 2}, + [4557] = {.lex_state = 405, .external_lex_state = 5}, + [4558] = {.lex_state = 405, .external_lex_state = 2}, + [4559] = {.lex_state = 405, .external_lex_state = 2}, + [4560] = {.lex_state = 405, .external_lex_state = 2}, + [4561] = {.lex_state = 405, .external_lex_state = 5}, [4562] = {.lex_state = 49, .external_lex_state = 5}, - [4563] = {.lex_state = 405, .external_lex_state = 2}, + [4563] = {.lex_state = 405, .external_lex_state = 5}, [4564] = {.lex_state = 405, .external_lex_state = 2}, [4565] = {.lex_state = 405, .external_lex_state = 5}, [4566] = {.lex_state = 405, .external_lex_state = 5}, [4567] = {.lex_state = 405, .external_lex_state = 5}, - [4568] = {.lex_state = 50, .external_lex_state = 2}, - [4569] = {.lex_state = 48, .external_lex_state = 2}, + [4568] = {.lex_state = 405, .external_lex_state = 5}, + [4569] = {.lex_state = 405, .external_lex_state = 5}, [4570] = {.lex_state = 405, .external_lex_state = 5}, - [4571] = {.lex_state = 405, .external_lex_state = 5}, - [4572] = {.lex_state = 405, .external_lex_state = 5}, - [4573] = {.lex_state = 405, .external_lex_state = 2}, + [4571] = {.lex_state = 405, .external_lex_state = 2}, + [4572] = {.lex_state = 405, .external_lex_state = 2}, + [4573] = {.lex_state = 405, .external_lex_state = 5}, [4574] = {.lex_state = 405, .external_lex_state = 5}, - [4575] = {.lex_state = 50, .external_lex_state = 2}, + [4575] = {.lex_state = 48, .external_lex_state = 2}, [4576] = {.lex_state = 50, .external_lex_state = 2}, - [4577] = {.lex_state = 75, .external_lex_state = 2}, - [4578] = {.lex_state = 405, .external_lex_state = 2}, + [4577] = {.lex_state = 405, .external_lex_state = 2}, + [4578] = {.lex_state = 405, .external_lex_state = 5}, [4579] = {.lex_state = 50, .external_lex_state = 2}, - [4580] = {.lex_state = 50, .external_lex_state = 2}, - [4581] = {.lex_state = 405, .external_lex_state = 2}, + [4580] = {.lex_state = 405, .external_lex_state = 5}, + [4581] = {.lex_state = 405, .external_lex_state = 5}, [4582] = {.lex_state = 405, .external_lex_state = 5}, [4583] = {.lex_state = 405, .external_lex_state = 5}, - [4584] = {.lex_state = 81, .external_lex_state = 2}, - [4585] = {.lex_state = 48, .external_lex_state = 2}, - [4586] = {.lex_state = 88, .external_lex_state = 2}, - [4587] = {.lex_state = 405, .external_lex_state = 2}, - [4588] = {.lex_state = 48, .external_lex_state = 2}, - [4589] = {.lex_state = 50, .external_lex_state = 2}, + [4584] = {.lex_state = 405, .external_lex_state = 5}, + [4585] = {.lex_state = 405, .external_lex_state = 2}, + [4586] = {.lex_state = 405, .external_lex_state = 5}, + [4587] = {.lex_state = 50, .external_lex_state = 2}, + [4588] = {.lex_state = 405, .external_lex_state = 2}, + [4589] = {.lex_state = 405, .external_lex_state = 5}, [4590] = {.lex_state = 50, .external_lex_state = 2}, - [4591] = {.lex_state = 49, .external_lex_state = 5}, - [4592] = {.lex_state = 48, .external_lex_state = 2}, + [4591] = {.lex_state = 50, .external_lex_state = 2}, + [4592] = {.lex_state = 405, .external_lex_state = 5}, [4593] = {.lex_state = 50, .external_lex_state = 2}, - [4594] = {.lex_state = 50, .external_lex_state = 2}, - [4595] = {.lex_state = 50, .external_lex_state = 2}, - [4596] = {.lex_state = 50, .external_lex_state = 2}, - [4597] = {.lex_state = 49, .external_lex_state = 5}, - [4598] = {.lex_state = 49, .external_lex_state = 5}, - [4599] = {.lex_state = 405, .external_lex_state = 5}, - [4600] = {.lex_state = 49, .external_lex_state = 5}, - [4601] = {.lex_state = 405, .external_lex_state = 5}, - [4602] = {.lex_state = 50, .external_lex_state = 2}, - [4603] = {.lex_state = 48, .external_lex_state = 2}, + [4594] = {.lex_state = 405, .external_lex_state = 2}, + [4595] = {.lex_state = 405, .external_lex_state = 5}, + [4596] = {.lex_state = 405, .external_lex_state = 5}, + [4597] = {.lex_state = 50, .external_lex_state = 2}, + [4598] = {.lex_state = 405, .external_lex_state = 2}, + [4599] = {.lex_state = 405, .external_lex_state = 2}, + [4600] = {.lex_state = 405, .external_lex_state = 5}, + [4601] = {.lex_state = 405, .external_lex_state = 2}, + [4602] = {.lex_state = 405, .external_lex_state = 2}, + [4603] = {.lex_state = 405, .external_lex_state = 2}, [4604] = {.lex_state = 50, .external_lex_state = 2}, - [4605] = {.lex_state = 49, .external_lex_state = 5}, - [4606] = {.lex_state = 49, .external_lex_state = 5}, - [4607] = {.lex_state = 55, .external_lex_state = 2}, - [4608] = {.lex_state = 50, .external_lex_state = 2}, - [4609] = {.lex_state = 50, .external_lex_state = 2}, - [4610] = {.lex_state = 50, .external_lex_state = 2}, - [4611] = {.lex_state = 48, .external_lex_state = 2}, - [4612] = {.lex_state = 49, .external_lex_state = 5}, - [4613] = {.lex_state = 49, .external_lex_state = 5}, - [4614] = {.lex_state = 81, .external_lex_state = 2}, - [4615] = {.lex_state = 81, .external_lex_state = 2}, - [4616] = {.lex_state = 405, .external_lex_state = 6}, - [4617] = {.lex_state = 48, .external_lex_state = 2}, - [4618] = {.lex_state = 48, .external_lex_state = 2}, - [4619] = {.lex_state = 405, .external_lex_state = 2}, - [4620] = {.lex_state = 50, .external_lex_state = 2}, - [4621] = {.lex_state = 405, .external_lex_state = 2}, - [4622] = {.lex_state = 48, .external_lex_state = 2}, + [4605] = {.lex_state = 50, .external_lex_state = 2}, + [4606] = {.lex_state = 405, .external_lex_state = 5}, + [4607] = {.lex_state = 405, .external_lex_state = 5}, + [4608] = {.lex_state = 405, .external_lex_state = 5}, + [4609] = {.lex_state = 405, .external_lex_state = 5}, + [4610] = {.lex_state = 405, .external_lex_state = 5}, + [4611] = {.lex_state = 405, .external_lex_state = 5}, + [4612] = {.lex_state = 405, .external_lex_state = 5}, + [4613] = {.lex_state = 48, .external_lex_state = 2}, + [4614] = {.lex_state = 405, .external_lex_state = 5}, + [4615] = {.lex_state = 405, .external_lex_state = 5}, + [4616] = {.lex_state = 405, .external_lex_state = 2}, + [4617] = {.lex_state = 405, .external_lex_state = 5}, + [4618] = {.lex_state = 405, .external_lex_state = 5}, + [4619] = {.lex_state = 405, .external_lex_state = 5}, + [4620] = {.lex_state = 48, .external_lex_state = 2}, + [4621] = {.lex_state = 48, .external_lex_state = 2}, + [4622] = {.lex_state = 405, .external_lex_state = 5}, [4623] = {.lex_state = 48, .external_lex_state = 2}, - [4624] = {.lex_state = 405, .external_lex_state = 2}, + [4624] = {.lex_state = 48, .external_lex_state = 2}, [4625] = {.lex_state = 48, .external_lex_state = 2}, - [4626] = {.lex_state = 405, .external_lex_state = 5}, - [4627] = {.lex_state = 405, .external_lex_state = 6}, - [4628] = {.lex_state = 405, .external_lex_state = 6}, - [4629] = {.lex_state = 48, .external_lex_state = 2}, - [4630] = {.lex_state = 405, .external_lex_state = 6}, - [4631] = {.lex_state = 405, .external_lex_state = 5}, - [4632] = {.lex_state = 405, .external_lex_state = 5}, - [4633] = {.lex_state = 50, .external_lex_state = 2}, - [4634] = {.lex_state = 50, .external_lex_state = 2}, - [4635] = {.lex_state = 405, .external_lex_state = 6}, - [4636] = {.lex_state = 50, .external_lex_state = 2}, - [4637] = {.lex_state = 50, .external_lex_state = 2}, + [4626] = {.lex_state = 48, .external_lex_state = 2}, + [4627] = {.lex_state = 48, .external_lex_state = 2}, + [4628] = {.lex_state = 405, .external_lex_state = 5}, + [4629] = {.lex_state = 405, .external_lex_state = 5}, + [4630] = {.lex_state = 405, .external_lex_state = 5}, + [4631] = {.lex_state = 405, .external_lex_state = 6}, + [4632] = {.lex_state = 48, .external_lex_state = 2}, + [4633] = {.lex_state = 405, .external_lex_state = 5}, + [4634] = {.lex_state = 405, .external_lex_state = 2}, + [4635] = {.lex_state = 48, .external_lex_state = 2}, + [4636] = {.lex_state = 405, .external_lex_state = 5}, + [4637] = {.lex_state = 405, .external_lex_state = 2}, [4638] = {.lex_state = 405, .external_lex_state = 5}, - [4639] = {.lex_state = 50, .external_lex_state = 2}, - [4640] = {.lex_state = 48, .external_lex_state = 2}, + [4639] = {.lex_state = 405, .external_lex_state = 6}, + [4640] = {.lex_state = 50, .external_lex_state = 2}, [4641] = {.lex_state = 50, .external_lex_state = 2}, - [4642] = {.lex_state = 50, .external_lex_state = 2}, - [4643] = {.lex_state = 48, .external_lex_state = 2}, - [4644] = {.lex_state = 48, .external_lex_state = 2}, + [4642] = {.lex_state = 405, .external_lex_state = 6}, + [4643] = {.lex_state = 50, .external_lex_state = 2}, + [4644] = {.lex_state = 405, .external_lex_state = 2}, [4645] = {.lex_state = 48, .external_lex_state = 2}, [4646] = {.lex_state = 48, .external_lex_state = 2}, - [4647] = {.lex_state = 405, .external_lex_state = 2}, - [4648] = {.lex_state = 405, .external_lex_state = 6}, - [4649] = {.lex_state = 48, .external_lex_state = 2}, - [4650] = {.lex_state = 48, .external_lex_state = 2}, - [4651] = {.lex_state = 48, .external_lex_state = 2}, - [4652] = {.lex_state = 405, .external_lex_state = 6}, - [4653] = {.lex_state = 405, .external_lex_state = 6}, - [4654] = {.lex_state = 48, .external_lex_state = 2}, - [4655] = {.lex_state = 405, .external_lex_state = 6}, + [4647] = {.lex_state = 48, .external_lex_state = 2}, + [4648] = {.lex_state = 48, .external_lex_state = 2}, + [4649] = {.lex_state = 50, .external_lex_state = 2}, + [4650] = {.lex_state = 50, .external_lex_state = 2}, + [4651] = {.lex_state = 405, .external_lex_state = 2}, + [4652] = {.lex_state = 50, .external_lex_state = 2}, + [4653] = {.lex_state = 405, .external_lex_state = 2}, + [4654] = {.lex_state = 405, .external_lex_state = 2}, + [4655] = {.lex_state = 48, .external_lex_state = 2}, [4656] = {.lex_state = 405, .external_lex_state = 6}, [4657] = {.lex_state = 405, .external_lex_state = 2}, - [4658] = {.lex_state = 405, .external_lex_state = 5}, - [4659] = {.lex_state = 405, .external_lex_state = 5}, - [4660] = {.lex_state = 48, .external_lex_state = 2}, - [4661] = {.lex_state = 48, .external_lex_state = 2}, + [4658] = {.lex_state = 48, .external_lex_state = 2}, + [4659] = {.lex_state = 405, .external_lex_state = 6}, + [4660] = {.lex_state = 405, .external_lex_state = 2}, + [4661] = {.lex_state = 405, .external_lex_state = 2}, [4662] = {.lex_state = 405, .external_lex_state = 5}, - [4663] = {.lex_state = 405, .external_lex_state = 5}, - [4664] = {.lex_state = 75, .external_lex_state = 2}, - [4665] = {.lex_state = 405, .external_lex_state = 6}, - [4666] = {.lex_state = 405, .external_lex_state = 5}, - [4667] = {.lex_state = 405, .external_lex_state = 5}, - [4668] = {.lex_state = 65, .external_lex_state = 2}, - [4669] = {.lex_state = 405, .external_lex_state = 2}, - [4670] = {.lex_state = 405, .external_lex_state = 2}, + [4663] = {.lex_state = 405, .external_lex_state = 6}, + [4664] = {.lex_state = 50, .external_lex_state = 2}, + [4665] = {.lex_state = 50, .external_lex_state = 2}, + [4666] = {.lex_state = 405, .external_lex_state = 2}, + [4667] = {.lex_state = 405, .external_lex_state = 2}, + [4668] = {.lex_state = 50, .external_lex_state = 2}, + [4669] = {.lex_state = 405, .external_lex_state = 5}, + [4670] = {.lex_state = 48, .external_lex_state = 2}, [4671] = {.lex_state = 405, .external_lex_state = 5}, - [4672] = {.lex_state = 48, .external_lex_state = 2}, - [4673] = {.lex_state = 405, .external_lex_state = 5}, - [4674] = {.lex_state = 50, .external_lex_state = 2}, - [4675] = {.lex_state = 405, .external_lex_state = 2}, - [4676] = {.lex_state = 50, .external_lex_state = 2}, - [4677] = {.lex_state = 48, .external_lex_state = 2}, - [4678] = {.lex_state = 405, .external_lex_state = 5}, - [4679] = {.lex_state = 405, .external_lex_state = 2}, - [4680] = {.lex_state = 405, .external_lex_state = 2}, - [4681] = {.lex_state = 50, .external_lex_state = 2}, + [4672] = {.lex_state = 405, .external_lex_state = 6}, + [4673] = {.lex_state = 405, .external_lex_state = 2}, + [4674] = {.lex_state = 48, .external_lex_state = 2}, + [4675] = {.lex_state = 48, .external_lex_state = 2}, + [4676] = {.lex_state = 405, .external_lex_state = 5}, + [4677] = {.lex_state = 81, .external_lex_state = 2}, + [4678] = {.lex_state = 65, .external_lex_state = 2}, + [4679] = {.lex_state = 65, .external_lex_state = 2}, + [4680] = {.lex_state = 48, .external_lex_state = 2}, + [4681] = {.lex_state = 405, .external_lex_state = 2}, [4682] = {.lex_state = 405, .external_lex_state = 6}, - [4683] = {.lex_state = 405, .external_lex_state = 2}, - [4684] = {.lex_state = 405, .external_lex_state = 6}, - [4685] = {.lex_state = 405, .external_lex_state = 5}, - [4686] = {.lex_state = 48, .external_lex_state = 2}, - [4687] = {.lex_state = 405, .external_lex_state = 2}, + [4683] = {.lex_state = 405, .external_lex_state = 5}, + [4684] = {.lex_state = 48, .external_lex_state = 2}, + [4685] = {.lex_state = 50, .external_lex_state = 2}, + [4686] = {.lex_state = 50, .external_lex_state = 2}, + [4687] = {.lex_state = 50, .external_lex_state = 2}, [4688] = {.lex_state = 405, .external_lex_state = 2}, [4689] = {.lex_state = 48, .external_lex_state = 2}, - [4690] = {.lex_state = 405, .external_lex_state = 2}, - [4691] = {.lex_state = 48, .external_lex_state = 2}, - [4692] = {.lex_state = 405, .external_lex_state = 2}, - [4693] = {.lex_state = 405, .external_lex_state = 5}, - [4694] = {.lex_state = 48, .external_lex_state = 2}, - [4695] = {.lex_state = 65, .external_lex_state = 2}, - [4696] = {.lex_state = 65, .external_lex_state = 2}, - [4697] = {.lex_state = 65, .external_lex_state = 2}, + [4690] = {.lex_state = 65, .external_lex_state = 2}, + [4691] = {.lex_state = 81, .external_lex_state = 2}, + [4692] = {.lex_state = 81, .external_lex_state = 2}, + [4693] = {.lex_state = 65, .external_lex_state = 2}, + [4694] = {.lex_state = 405, .external_lex_state = 7}, + [4695] = {.lex_state = 405, .external_lex_state = 7}, + [4696] = {.lex_state = 405, .external_lex_state = 2}, + [4697] = {.lex_state = 405, .external_lex_state = 7}, [4698] = {.lex_state = 48, .external_lex_state = 2}, [4699] = {.lex_state = 48, .external_lex_state = 2}, - [4700] = {.lex_state = 405, .external_lex_state = 5}, - [4701] = {.lex_state = 405, .external_lex_state = 5}, + [4700] = {.lex_state = 405, .external_lex_state = 6}, + [4701] = {.lex_state = 48, .external_lex_state = 2}, [4702] = {.lex_state = 405, .external_lex_state = 6}, - [4703] = {.lex_state = 65, .external_lex_state = 2}, + [4703] = {.lex_state = 405, .external_lex_state = 5}, [4704] = {.lex_state = 405, .external_lex_state = 5}, - [4705] = {.lex_state = 65, .external_lex_state = 2}, + [4705] = {.lex_state = 48, .external_lex_state = 2}, [4706] = {.lex_state = 405, .external_lex_state = 2}, - [4707] = {.lex_state = 405, .external_lex_state = 2}, - [4708] = {.lex_state = 48, .external_lex_state = 2}, - [4709] = {.lex_state = 405, .external_lex_state = 6}, - [4710] = {.lex_state = 50, .external_lex_state = 2}, - [4711] = {.lex_state = 405, .external_lex_state = 6}, - [4712] = {.lex_state = 50, .external_lex_state = 2}, - [4713] = {.lex_state = 405, .external_lex_state = 6}, + [4707] = {.lex_state = 65, .external_lex_state = 2}, + [4708] = {.lex_state = 405, .external_lex_state = 5}, + [4709] = {.lex_state = 65, .external_lex_state = 2}, + [4710] = {.lex_state = 405, .external_lex_state = 6}, + [4711] = {.lex_state = 50, .external_lex_state = 2}, + [4712] = {.lex_state = 405, .external_lex_state = 6}, + [4713] = {.lex_state = 50, .external_lex_state = 2}, [4714] = {.lex_state = 50, .external_lex_state = 2}, - [4715] = {.lex_state = 405, .external_lex_state = 2}, + [4715] = {.lex_state = 405, .external_lex_state = 5}, [4716] = {.lex_state = 405, .external_lex_state = 6}, - [4717] = {.lex_state = 65, .external_lex_state = 2}, - [4718] = {.lex_state = 65, .external_lex_state = 2}, - [4719] = {.lex_state = 50, .external_lex_state = 2}, - [4720] = {.lex_state = 405, .external_lex_state = 2}, - [4721] = {.lex_state = 65, .external_lex_state = 2}, + [4717] = {.lex_state = 48, .external_lex_state = 2}, + [4718] = {.lex_state = 405, .external_lex_state = 7}, + [4719] = {.lex_state = 405, .external_lex_state = 2}, + [4720] = {.lex_state = 405, .external_lex_state = 6}, + [4721] = {.lex_state = 48, .external_lex_state = 2}, [4722] = {.lex_state = 48, .external_lex_state = 2}, - [4723] = {.lex_state = 50, .external_lex_state = 2}, - [4724] = {.lex_state = 48, .external_lex_state = 2}, + [4723] = {.lex_state = 405, .external_lex_state = 5}, + [4724] = {.lex_state = 405, .external_lex_state = 5}, [4725] = {.lex_state = 48, .external_lex_state = 2}, - [4726] = {.lex_state = 48, .external_lex_state = 2}, - [4727] = {.lex_state = 48, .external_lex_state = 2}, - [4728] = {.lex_state = 65, .external_lex_state = 2}, - [4729] = {.lex_state = 81, .external_lex_state = 2}, - [4730] = {.lex_state = 65, .external_lex_state = 2}, + [4726] = {.lex_state = 405, .external_lex_state = 5}, + [4727] = {.lex_state = 405, .external_lex_state = 5}, + [4728] = {.lex_state = 50, .external_lex_state = 2}, + [4729] = {.lex_state = 405, .external_lex_state = 2}, + [4730] = {.lex_state = 405, .external_lex_state = 5}, [4731] = {.lex_state = 405, .external_lex_state = 5}, - [4732] = {.lex_state = 65, .external_lex_state = 2}, - [4733] = {.lex_state = 405, .external_lex_state = 6}, - [4734] = {.lex_state = 81, .external_lex_state = 2}, + [4732] = {.lex_state = 48, .external_lex_state = 2}, + [4733] = {.lex_state = 405, .external_lex_state = 2}, + [4734] = {.lex_state = 50, .external_lex_state = 2}, [4735] = {.lex_state = 50, .external_lex_state = 2}, - [4736] = {.lex_state = 405, .external_lex_state = 6}, + [4736] = {.lex_state = 405, .external_lex_state = 5}, [4737] = {.lex_state = 405, .external_lex_state = 6}, [4738] = {.lex_state = 48, .external_lex_state = 2}, - [4739] = {.lex_state = 81, .external_lex_state = 2}, + [4739] = {.lex_state = 405, .external_lex_state = 6}, [4740] = {.lex_state = 50, .external_lex_state = 2}, - [4741] = {.lex_state = 405, .external_lex_state = 5}, + [4741] = {.lex_state = 48, .external_lex_state = 2}, [4742] = {.lex_state = 65, .external_lex_state = 2}, - [4743] = {.lex_state = 50, .external_lex_state = 2}, - [4744] = {.lex_state = 405, .external_lex_state = 7}, + [4743] = {.lex_state = 48, .external_lex_state = 2}, + [4744] = {.lex_state = 405, .external_lex_state = 6}, [4745] = {.lex_state = 405, .external_lex_state = 5}, [4746] = {.lex_state = 50, .external_lex_state = 2}, - [4747] = {.lex_state = 48, .external_lex_state = 2}, - [4748] = {.lex_state = 48, .external_lex_state = 2}, + [4747] = {.lex_state = 50, .external_lex_state = 2}, + [4748] = {.lex_state = 405, .external_lex_state = 5}, [4749] = {.lex_state = 405, .external_lex_state = 5}, - [4750] = {.lex_state = 405, .external_lex_state = 6}, - [4751] = {.lex_state = 405, .external_lex_state = 5}, - [4752] = {.lex_state = 48, .external_lex_state = 2}, + [4750] = {.lex_state = 48, .external_lex_state = 2}, + [4751] = {.lex_state = 75, .external_lex_state = 2}, + [4752] = {.lex_state = 405, .external_lex_state = 6}, [4753] = {.lex_state = 65, .external_lex_state = 2}, - [4754] = {.lex_state = 65, .external_lex_state = 2}, - [4755] = {.lex_state = 405, .external_lex_state = 5}, - [4756] = {.lex_state = 48, .external_lex_state = 2}, + [4754] = {.lex_state = 405, .external_lex_state = 6}, + [4755] = {.lex_state = 65, .external_lex_state = 2}, + [4756] = {.lex_state = 405, .external_lex_state = 5}, [4757] = {.lex_state = 48, .external_lex_state = 2}, - [4758] = {.lex_state = 405, .external_lex_state = 5}, + [4758] = {.lex_state = 50, .external_lex_state = 2}, [4759] = {.lex_state = 405, .external_lex_state = 5}, [4760] = {.lex_state = 405, .external_lex_state = 5}, - [4761] = {.lex_state = 405, .external_lex_state = 5}, - [4762] = {.lex_state = 405, .external_lex_state = 6}, - [4763] = {.lex_state = 65, .external_lex_state = 2}, - [4764] = {.lex_state = 405, .external_lex_state = 5}, - [4765] = {.lex_state = 405, .external_lex_state = 5}, - [4766] = {.lex_state = 405, .external_lex_state = 5}, - [4767] = {.lex_state = 65, .external_lex_state = 2}, - [4768] = {.lex_state = 405, .external_lex_state = 5}, - [4769] = {.lex_state = 405, .external_lex_state = 5}, - [4770] = {.lex_state = 65, .external_lex_state = 2}, - [4771] = {.lex_state = 405, .external_lex_state = 5}, - [4772] = {.lex_state = 50, .external_lex_state = 2}, - [4773] = {.lex_state = 50, .external_lex_state = 2}, - [4774] = {.lex_state = 48, .external_lex_state = 2}, + [4761] = {.lex_state = 65, .external_lex_state = 2}, + [4762] = {.lex_state = 65, .external_lex_state = 2}, + [4763] = {.lex_state = 48, .external_lex_state = 2}, + [4764] = {.lex_state = 50, .external_lex_state = 2}, + [4765] = {.lex_state = 50, .external_lex_state = 2}, + [4766] = {.lex_state = 65, .external_lex_state = 2}, + [4767] = {.lex_state = 50, .external_lex_state = 2}, + [4768] = {.lex_state = 65, .external_lex_state = 2}, + [4769] = {.lex_state = 50, .external_lex_state = 2}, + [4770] = {.lex_state = 48, .external_lex_state = 2}, + [4771] = {.lex_state = 48, .external_lex_state = 2}, + [4772] = {.lex_state = 405, .external_lex_state = 6}, + [4773] = {.lex_state = 405, .external_lex_state = 5}, + [4774] = {.lex_state = 405, .external_lex_state = 5}, [4775] = {.lex_state = 405, .external_lex_state = 5}, - [4776] = {.lex_state = 65, .external_lex_state = 2}, - [4777] = {.lex_state = 405, .external_lex_state = 5}, - [4778] = {.lex_state = 405, .external_lex_state = 2}, - [4779] = {.lex_state = 65, .external_lex_state = 2}, - [4780] = {.lex_state = 65, .external_lex_state = 2}, - [4781] = {.lex_state = 50, .external_lex_state = 2}, - [4782] = {.lex_state = 405, .external_lex_state = 5}, - [4783] = {.lex_state = 405, .external_lex_state = 5}, - [4784] = {.lex_state = 405, .external_lex_state = 7}, - [4785] = {.lex_state = 405, .external_lex_state = 7}, - [4786] = {.lex_state = 405, .external_lex_state = 6}, - [4787] = {.lex_state = 405, .external_lex_state = 5}, - [4788] = {.lex_state = 65, .external_lex_state = 2}, - [4789] = {.lex_state = 405, .external_lex_state = 6}, - [4790] = {.lex_state = 405, .external_lex_state = 7}, - [4791] = {.lex_state = 48, .external_lex_state = 2}, - [4792] = {.lex_state = 65, .external_lex_state = 2}, - [4793] = {.lex_state = 65, .external_lex_state = 2}, - [4794] = {.lex_state = 48, .external_lex_state = 2}, - [4795] = {.lex_state = 50, .external_lex_state = 2}, + [4776] = {.lex_state = 405, .external_lex_state = 5}, + [4777] = {.lex_state = 50, .external_lex_state = 2}, + [4778] = {.lex_state = 48, .external_lex_state = 2}, + [4779] = {.lex_state = 405, .external_lex_state = 2}, + [4780] = {.lex_state = 405, .external_lex_state = 6}, + [4781] = {.lex_state = 405, .external_lex_state = 2}, + [4782] = {.lex_state = 405, .external_lex_state = 6}, + [4783] = {.lex_state = 50, .external_lex_state = 2}, + [4784] = {.lex_state = 81, .external_lex_state = 2}, + [4785] = {.lex_state = 405, .external_lex_state = 2}, + [4786] = {.lex_state = 405, .external_lex_state = 2}, + [4787] = {.lex_state = 65, .external_lex_state = 2}, + [4788] = {.lex_state = 48, .external_lex_state = 2}, + [4789] = {.lex_state = 50, .external_lex_state = 2}, + [4790] = {.lex_state = 405, .external_lex_state = 6}, + [4791] = {.lex_state = 405, .external_lex_state = 5}, + [4792] = {.lex_state = 405, .external_lex_state = 6}, + [4793] = {.lex_state = 50, .external_lex_state = 2}, + [4794] = {.lex_state = 405, .external_lex_state = 2}, + [4795] = {.lex_state = 48, .external_lex_state = 2}, [4796] = {.lex_state = 48, .external_lex_state = 2}, - [4797] = {.lex_state = 405, .external_lex_state = 5}, + [4797] = {.lex_state = 65, .external_lex_state = 2}, [4798] = {.lex_state = 50, .external_lex_state = 2}, - [4799] = {.lex_state = 405, .external_lex_state = 6}, - [4800] = {.lex_state = 50, .external_lex_state = 2}, - [4801] = {.lex_state = 48, .external_lex_state = 2}, - [4802] = {.lex_state = 50, .external_lex_state = 2}, - [4803] = {.lex_state = 405, .external_lex_state = 2}, - [4804] = {.lex_state = 405, .external_lex_state = 7}, - [4805] = {.lex_state = 50, .external_lex_state = 2}, - [4806] = {.lex_state = 50, .external_lex_state = 2}, - [4807] = {.lex_state = 50, .external_lex_state = 2}, - [4808] = {.lex_state = 405, .external_lex_state = 2}, - [4809] = {.lex_state = 50, .external_lex_state = 2}, - [4810] = {.lex_state = 50, .external_lex_state = 2}, - [4811] = {.lex_state = 48, .external_lex_state = 2}, - [4812] = {.lex_state = 405, .external_lex_state = 2}, - [4813] = {.lex_state = 405, .external_lex_state = 2}, - [4814] = {.lex_state = 405, .external_lex_state = 2}, - [4815] = {.lex_state = 50, .external_lex_state = 2}, - [4816] = {.lex_state = 75, .external_lex_state = 2}, - [4817] = {.lex_state = 50, .external_lex_state = 2}, - [4818] = {.lex_state = 50, .external_lex_state = 2}, + [4799] = {.lex_state = 50, .external_lex_state = 2}, + [4800] = {.lex_state = 65, .external_lex_state = 2}, + [4801] = {.lex_state = 65, .external_lex_state = 2}, + [4802] = {.lex_state = 65, .external_lex_state = 2}, + [4803] = {.lex_state = 65, .external_lex_state = 2}, + [4804] = {.lex_state = 65, .external_lex_state = 2}, + [4805] = {.lex_state = 65, .external_lex_state = 2}, + [4806] = {.lex_state = 65, .external_lex_state = 2}, + [4807] = {.lex_state = 75, .external_lex_state = 2}, + [4808] = {.lex_state = 65, .external_lex_state = 2}, + [4809] = {.lex_state = 65, .external_lex_state = 2}, + [4810] = {.lex_state = 405, .external_lex_state = 6}, + [4811] = {.lex_state = 405, .external_lex_state = 6}, + [4812] = {.lex_state = 48, .external_lex_state = 2}, + [4813] = {.lex_state = 65, .external_lex_state = 2}, + [4814] = {.lex_state = 65, .external_lex_state = 2}, + [4815] = {.lex_state = 48, .external_lex_state = 2}, + [4816] = {.lex_state = 50, .external_lex_state = 2}, + [4817] = {.lex_state = 65, .external_lex_state = 2}, + [4818] = {.lex_state = 65, .external_lex_state = 2}, [4819] = {.lex_state = 50, .external_lex_state = 2}, - [4820] = {.lex_state = 405, .external_lex_state = 6}, + [4820] = {.lex_state = 405, .external_lex_state = 5}, [4821] = {.lex_state = 65, .external_lex_state = 2}, - [4822] = {.lex_state = 50, .external_lex_state = 2}, - [4823] = {.lex_state = 50, .external_lex_state = 2}, - [4824] = {.lex_state = 48, .external_lex_state = 2}, - [4825] = {.lex_state = 50, .external_lex_state = 2}, + [4822] = {.lex_state = 65, .external_lex_state = 2}, + [4823] = {.lex_state = 48, .external_lex_state = 2}, + [4824] = {.lex_state = 405, .external_lex_state = 5}, + [4825] = {.lex_state = 65, .external_lex_state = 2}, [4826] = {.lex_state = 50, .external_lex_state = 2}, - [4827] = {.lex_state = 405, .external_lex_state = 5}, - [4828] = {.lex_state = 65, .external_lex_state = 2}, - [4829] = {.lex_state = 65, .external_lex_state = 2}, - [4830] = {.lex_state = 65, .external_lex_state = 2}, - [4831] = {.lex_state = 65, .external_lex_state = 2}, - [4832] = {.lex_state = 65, .external_lex_state = 2}, - [4833] = {.lex_state = 48, .external_lex_state = 2}, - [4834] = {.lex_state = 48, .external_lex_state = 2}, - [4835] = {.lex_state = 405, .external_lex_state = 6}, + [4827] = {.lex_state = 50, .external_lex_state = 2}, + [4828] = {.lex_state = 48, .external_lex_state = 2}, + [4829] = {.lex_state = 405, .external_lex_state = 5}, + [4830] = {.lex_state = 50, .external_lex_state = 2}, + [4831] = {.lex_state = 48, .external_lex_state = 2}, + [4832] = {.lex_state = 48, .external_lex_state = 2}, + [4833] = {.lex_state = 405, .external_lex_state = 5}, + [4834] = {.lex_state = 405, .external_lex_state = 7}, + [4835] = {.lex_state = 405, .external_lex_state = 5}, [4836] = {.lex_state = 48, .external_lex_state = 2}, - [4837] = {.lex_state = 65, .external_lex_state = 2}, - [4838] = {.lex_state = 48, .external_lex_state = 2}, - [4839] = {.lex_state = 48, .external_lex_state = 2}, - [4840] = {.lex_state = 405, .external_lex_state = 6}, + [4837] = {.lex_state = 48, .external_lex_state = 2}, + [4838] = {.lex_state = 50, .external_lex_state = 2}, + [4839] = {.lex_state = 405, .external_lex_state = 6}, + [4840] = {.lex_state = 50, .external_lex_state = 2}, [4841] = {.lex_state = 48, .external_lex_state = 2}, - [4842] = {.lex_state = 48, .external_lex_state = 2}, - [4843] = {.lex_state = 48, .external_lex_state = 2}, + [4842] = {.lex_state = 405, .external_lex_state = 2}, + [4843] = {.lex_state = 50, .external_lex_state = 2}, [4844] = {.lex_state = 50, .external_lex_state = 2}, - [4845] = {.lex_state = 81, .external_lex_state = 2}, - [4846] = {.lex_state = 405, .external_lex_state = 5}, - [4847] = {.lex_state = 405, .external_lex_state = 5}, - [4848] = {.lex_state = 48, .external_lex_state = 2}, - [4849] = {.lex_state = 405, .external_lex_state = 5}, + [4845] = {.lex_state = 405, .external_lex_state = 6}, + [4846] = {.lex_state = 48, .external_lex_state = 2}, + [4847] = {.lex_state = 405, .external_lex_state = 6}, + [4848] = {.lex_state = 405, .external_lex_state = 5}, + [4849] = {.lex_state = 405, .external_lex_state = 2}, [4850] = {.lex_state = 405, .external_lex_state = 5}, - [4851] = {.lex_state = 48, .external_lex_state = 2}, + [4851] = {.lex_state = 405, .external_lex_state = 8}, [4852] = {.lex_state = 405, .external_lex_state = 2}, [4853] = {.lex_state = 405, .external_lex_state = 5}, - [4854] = {.lex_state = 405, .external_lex_state = 8}, - [4855] = {.lex_state = 405, .external_lex_state = 5}, - [4856] = {.lex_state = 48, .external_lex_state = 2}, - [4857] = {.lex_state = 405, .external_lex_state = 5}, - [4858] = {.lex_state = 405, .external_lex_state = 5}, - [4859] = {.lex_state = 48, .external_lex_state = 2}, - [4860] = {.lex_state = 48, .external_lex_state = 2}, - [4861] = {.lex_state = 48, .external_lex_state = 2}, - [4862] = {.lex_state = 405, .external_lex_state = 6}, - [4863] = {.lex_state = 48, .external_lex_state = 2}, + [4854] = {.lex_state = 405, .external_lex_state = 5}, + [4855] = {.lex_state = 405, .external_lex_state = 6}, + [4856] = {.lex_state = 405, .external_lex_state = 5}, + [4857] = {.lex_state = 405, .external_lex_state = 2}, + [4858] = {.lex_state = 75, .external_lex_state = 2}, + [4859] = {.lex_state = 405, .external_lex_state = 5}, + [4860] = {.lex_state = 405, .external_lex_state = 2}, + [4861] = {.lex_state = 405, .external_lex_state = 5}, + [4862] = {.lex_state = 63, .external_lex_state = 2}, + [4863] = {.lex_state = 405, .external_lex_state = 2}, [4864] = {.lex_state = 405, .external_lex_state = 5}, [4865] = {.lex_state = 405, .external_lex_state = 5}, - [4866] = {.lex_state = 405, .external_lex_state = 5}, - [4867] = {.lex_state = 405, .external_lex_state = 5}, - [4868] = {.lex_state = 405, .external_lex_state = 5}, - [4869] = {.lex_state = 48, .external_lex_state = 2}, - [4870] = {.lex_state = 48, .external_lex_state = 2}, - [4871] = {.lex_state = 48, .external_lex_state = 2}, - [4872] = {.lex_state = 48, .external_lex_state = 2}, - [4873] = {.lex_state = 48, .external_lex_state = 2}, - [4874] = {.lex_state = 48, .external_lex_state = 2}, - [4875] = {.lex_state = 405, .external_lex_state = 6}, + [4866] = {.lex_state = 48, .external_lex_state = 2}, + [4867] = {.lex_state = 48, .external_lex_state = 2}, + [4868] = {.lex_state = 49, .external_lex_state = 2}, + [4869] = {.lex_state = 405, .external_lex_state = 5}, + [4870] = {.lex_state = 75, .external_lex_state = 2}, + [4871] = {.lex_state = 75, .external_lex_state = 2}, + [4872] = {.lex_state = 405, .external_lex_state = 5}, + [4873] = {.lex_state = 405, .external_lex_state = 5}, + [4874] = {.lex_state = 405, .external_lex_state = 5}, + [4875] = {.lex_state = 405, .external_lex_state = 2}, [4876] = {.lex_state = 405, .external_lex_state = 5}, [4877] = {.lex_state = 405, .external_lex_state = 5}, - [4878] = {.lex_state = 405, .external_lex_state = 8}, - [4879] = {.lex_state = 48, .external_lex_state = 2}, - [4880] = {.lex_state = 48, .external_lex_state = 2}, + [4878] = {.lex_state = 405, .external_lex_state = 6}, + [4879] = {.lex_state = 405, .external_lex_state = 5}, + [4880] = {.lex_state = 405, .external_lex_state = 2}, [4881] = {.lex_state = 405, .external_lex_state = 5}, [4882] = {.lex_state = 405, .external_lex_state = 5}, [4883] = {.lex_state = 405, .external_lex_state = 5}, [4884] = {.lex_state = 405, .external_lex_state = 5}, [4885] = {.lex_state = 405, .external_lex_state = 5}, [4886] = {.lex_state = 405, .external_lex_state = 5}, - [4887] = {.lex_state = 48, .external_lex_state = 2}, + [4887] = {.lex_state = 405, .external_lex_state = 5}, [4888] = {.lex_state = 405, .external_lex_state = 5}, - [4889] = {.lex_state = 48, .external_lex_state = 2}, - [4890] = {.lex_state = 405, .external_lex_state = 5}, - [4891] = {.lex_state = 405, .external_lex_state = 5}, - [4892] = {.lex_state = 405, .external_lex_state = 2}, + [4889] = {.lex_state = 405, .external_lex_state = 5}, + [4890] = {.lex_state = 81, .external_lex_state = 2}, + [4891] = {.lex_state = 81, .external_lex_state = 2}, + [4892] = {.lex_state = 81, .external_lex_state = 2}, [4893] = {.lex_state = 405, .external_lex_state = 5}, [4894] = {.lex_state = 405, .external_lex_state = 5}, - [4895] = {.lex_state = 405, .external_lex_state = 2}, - [4896] = {.lex_state = 49, .external_lex_state = 2}, + [4895] = {.lex_state = 405, .external_lex_state = 5}, + [4896] = {.lex_state = 405, .external_lex_state = 5}, [4897] = {.lex_state = 405, .external_lex_state = 5}, - [4898] = {.lex_state = 48, .external_lex_state = 2}, + [4898] = {.lex_state = 405, .external_lex_state = 5}, [4899] = {.lex_state = 405, .external_lex_state = 5}, - [4900] = {.lex_state = 48, .external_lex_state = 2}, + [4900] = {.lex_state = 405, .external_lex_state = 5}, [4901] = {.lex_state = 405, .external_lex_state = 5}, [4902] = {.lex_state = 405, .external_lex_state = 5}, - [4903] = {.lex_state = 75, .external_lex_state = 2}, + [4903] = {.lex_state = 405, .external_lex_state = 5}, [4904] = {.lex_state = 405, .external_lex_state = 5}, - [4905] = {.lex_state = 48, .external_lex_state = 2}, - [4906] = {.lex_state = 48, .external_lex_state = 2}, - [4907] = {.lex_state = 405, .external_lex_state = 5}, - [4908] = {.lex_state = 405, .external_lex_state = 5}, - [4909] = {.lex_state = 405, .external_lex_state = 5}, - [4910] = {.lex_state = 405, .external_lex_state = 5}, - [4911] = {.lex_state = 405, .external_lex_state = 5}, - [4912] = {.lex_state = 48, .external_lex_state = 2}, - [4913] = {.lex_state = 49, .external_lex_state = 2}, - [4914] = {.lex_state = 63, .external_lex_state = 2}, + [4905] = {.lex_state = 405, .external_lex_state = 5}, + [4906] = {.lex_state = 405, .external_lex_state = 5}, + [4907] = {.lex_state = 81, .external_lex_state = 2}, + [4908] = {.lex_state = 81, .external_lex_state = 2}, + [4909] = {.lex_state = 81, .external_lex_state = 2}, + [4910] = {.lex_state = 81, .external_lex_state = 2}, + [4911] = {.lex_state = 81, .external_lex_state = 2}, + [4912] = {.lex_state = 405, .external_lex_state = 5}, + [4913] = {.lex_state = 405, .external_lex_state = 5}, + [4914] = {.lex_state = 405, .external_lex_state = 5}, [4915] = {.lex_state = 405, .external_lex_state = 5}, - [4916] = {.lex_state = 405, .external_lex_state = 2}, - [4917] = {.lex_state = 48, .external_lex_state = 2}, - [4918] = {.lex_state = 405, .external_lex_state = 5}, - [4919] = {.lex_state = 48, .external_lex_state = 2}, + [4916] = {.lex_state = 405, .external_lex_state = 5}, + [4917] = {.lex_state = 81, .external_lex_state = 2}, + [4918] = {.lex_state = 81, .external_lex_state = 2}, + [4919] = {.lex_state = 405, .external_lex_state = 5}, [4920] = {.lex_state = 405, .external_lex_state = 5}, - [4921] = {.lex_state = 405, .external_lex_state = 2}, + [4921] = {.lex_state = 405, .external_lex_state = 5}, [4922] = {.lex_state = 405, .external_lex_state = 5}, - [4923] = {.lex_state = 405, .external_lex_state = 2}, - [4924] = {.lex_state = 405, .external_lex_state = 2}, - [4925] = {.lex_state = 81, .external_lex_state = 2}, - [4926] = {.lex_state = 405, .external_lex_state = 2}, + [4923] = {.lex_state = 405, .external_lex_state = 5}, + [4924] = {.lex_state = 405, .external_lex_state = 5}, + [4925] = {.lex_state = 405, .external_lex_state = 5}, + [4926] = {.lex_state = 405, .external_lex_state = 5}, [4927] = {.lex_state = 405, .external_lex_state = 5}, - [4928] = {.lex_state = 405, .external_lex_state = 2}, + [4928] = {.lex_state = 405, .external_lex_state = 5}, [4929] = {.lex_state = 405, .external_lex_state = 5}, - [4930] = {.lex_state = 81, .external_lex_state = 2}, + [4930] = {.lex_state = 405, .external_lex_state = 5}, [4931] = {.lex_state = 405, .external_lex_state = 5}, - [4932] = {.lex_state = 405, .external_lex_state = 2}, - [4933] = {.lex_state = 405, .external_lex_state = 5}, - [4934] = {.lex_state = 405, .external_lex_state = 5}, - [4935] = {.lex_state = 405, .external_lex_state = 5}, - [4936] = {.lex_state = 48, .external_lex_state = 2}, - [4937] = {.lex_state = 405, .external_lex_state = 2}, + [4932] = {.lex_state = 81, .external_lex_state = 2}, + [4933] = {.lex_state = 81, .external_lex_state = 2}, + [4934] = {.lex_state = 81, .external_lex_state = 2}, + [4935] = {.lex_state = 81, .external_lex_state = 2}, + [4936] = {.lex_state = 81, .external_lex_state = 2}, + [4937] = {.lex_state = 405, .external_lex_state = 5}, [4938] = {.lex_state = 405, .external_lex_state = 5}, - [4939] = {.lex_state = 48, .external_lex_state = 2}, + [4939] = {.lex_state = 405, .external_lex_state = 5}, [4940] = {.lex_state = 405, .external_lex_state = 5}, - [4941] = {.lex_state = 405, .external_lex_state = 5}, - [4942] = {.lex_state = 405, .external_lex_state = 5}, - [4943] = {.lex_state = 48, .external_lex_state = 2}, - [4944] = {.lex_state = 405, .external_lex_state = 5}, - [4945] = {.lex_state = 50, .external_lex_state = 2}, - [4946] = {.lex_state = 48, .external_lex_state = 2}, - [4947] = {.lex_state = 405, .external_lex_state = 2}, + [4941] = {.lex_state = 81, .external_lex_state = 2}, + [4942] = {.lex_state = 81, .external_lex_state = 2}, + [4943] = {.lex_state = 81, .external_lex_state = 2}, + [4944] = {.lex_state = 81, .external_lex_state = 2}, + [4945] = {.lex_state = 81, .external_lex_state = 2}, + [4946] = {.lex_state = 81, .external_lex_state = 2}, + [4947] = {.lex_state = 405, .external_lex_state = 5}, [4948] = {.lex_state = 405, .external_lex_state = 5}, - [4949] = {.lex_state = 48, .external_lex_state = 2}, - [4950] = {.lex_state = 48, .external_lex_state = 2}, + [4949] = {.lex_state = 405, .external_lex_state = 5}, + [4950] = {.lex_state = 405, .external_lex_state = 5}, [4951] = {.lex_state = 405, .external_lex_state = 5}, - [4952] = {.lex_state = 405, .external_lex_state = 6}, + [4952] = {.lex_state = 405, .external_lex_state = 5}, [4953] = {.lex_state = 405, .external_lex_state = 5}, [4954] = {.lex_state = 405, .external_lex_state = 5}, - [4955] = {.lex_state = 48, .external_lex_state = 5}, + [4955] = {.lex_state = 405, .external_lex_state = 5}, [4956] = {.lex_state = 405, .external_lex_state = 5}, - [4957] = {.lex_state = 405, .external_lex_state = 6}, - [4958] = {.lex_state = 48, .external_lex_state = 5}, - [4959] = {.lex_state = 405, .external_lex_state = 2}, - [4960] = {.lex_state = 405, .external_lex_state = 5}, - [4961] = {.lex_state = 48, .external_lex_state = 2}, - [4962] = {.lex_state = 405, .external_lex_state = 5}, - [4963] = {.lex_state = 48, .external_lex_state = 2}, + [4957] = {.lex_state = 405, .external_lex_state = 5}, + [4958] = {.lex_state = 405, .external_lex_state = 5}, + [4959] = {.lex_state = 405, .external_lex_state = 5}, + [4960] = {.lex_state = 81, .external_lex_state = 2}, + [4961] = {.lex_state = 81, .external_lex_state = 2}, + [4962] = {.lex_state = 81, .external_lex_state = 2}, + [4963] = {.lex_state = 405, .external_lex_state = 5}, [4964] = {.lex_state = 405, .external_lex_state = 5}, - [4965] = {.lex_state = 48, .external_lex_state = 2}, - [4966] = {.lex_state = 405, .external_lex_state = 5}, - [4967] = {.lex_state = 48, .external_lex_state = 2}, - [4968] = {.lex_state = 48, .external_lex_state = 2}, + [4965] = {.lex_state = 405, .external_lex_state = 5}, + [4966] = {.lex_state = 81, .external_lex_state = 2}, + [4967] = {.lex_state = 81, .external_lex_state = 2}, + [4968] = {.lex_state = 405, .external_lex_state = 5}, [4969] = {.lex_state = 405, .external_lex_state = 5}, - [4970] = {.lex_state = 405, .external_lex_state = 5}, - [4971] = {.lex_state = 48, .external_lex_state = 2}, - [4972] = {.lex_state = 48, .external_lex_state = 5}, - [4973] = {.lex_state = 405, .external_lex_state = 2}, + [4970] = {.lex_state = 81, .external_lex_state = 2}, + [4971] = {.lex_state = 405, .external_lex_state = 5}, + [4972] = {.lex_state = 405, .external_lex_state = 5}, + [4973] = {.lex_state = 405, .external_lex_state = 5}, [4974] = {.lex_state = 405, .external_lex_state = 5}, - [4975] = {.lex_state = 49, .external_lex_state = 5}, - [4976] = {.lex_state = 49, .external_lex_state = 5}, + [4975] = {.lex_state = 405, .external_lex_state = 5}, + [4976] = {.lex_state = 405, .external_lex_state = 5}, [4977] = {.lex_state = 405, .external_lex_state = 5}, - [4978] = {.lex_state = 48, .external_lex_state = 2}, - [4979] = {.lex_state = 405, .external_lex_state = 5}, + [4978] = {.lex_state = 48, .external_lex_state = 5}, + [4979] = {.lex_state = 405, .external_lex_state = 2}, [4980] = {.lex_state = 48, .external_lex_state = 2}, - [4981] = {.lex_state = 405, .external_lex_state = 5}, - [4982] = {.lex_state = 48, .external_lex_state = 2}, - [4983] = {.lex_state = 405, .external_lex_state = 5}, - [4984] = {.lex_state = 405, .external_lex_state = 8}, + [4981] = {.lex_state = 405, .external_lex_state = 2}, + [4982] = {.lex_state = 405, .external_lex_state = 5}, + [4983] = {.lex_state = 81, .external_lex_state = 2}, + [4984] = {.lex_state = 405, .external_lex_state = 5}, [4985] = {.lex_state = 48, .external_lex_state = 2}, - [4986] = {.lex_state = 405, .external_lex_state = 5}, - [4987] = {.lex_state = 48, .external_lex_state = 2}, + [4986] = {.lex_state = 405, .external_lex_state = 8}, + [4987] = {.lex_state = 405, .external_lex_state = 6}, [4988] = {.lex_state = 405, .external_lex_state = 5}, [4989] = {.lex_state = 405, .external_lex_state = 5}, - [4990] = {.lex_state = 405, .external_lex_state = 5}, - [4991] = {.lex_state = 405, .external_lex_state = 6}, - [4992] = {.lex_state = 48, .external_lex_state = 2}, - [4993] = {.lex_state = 405, .external_lex_state = 5}, - [4994] = {.lex_state = 48, .external_lex_state = 2}, - [4995] = {.lex_state = 405, .external_lex_state = 5}, + [4990] = {.lex_state = 405, .external_lex_state = 2}, + [4991] = {.lex_state = 81, .external_lex_state = 2}, + [4992] = {.lex_state = 50, .external_lex_state = 2}, + [4993] = {.lex_state = 405, .external_lex_state = 2}, + [4994] = {.lex_state = 405, .external_lex_state = 5}, + [4995] = {.lex_state = 50, .external_lex_state = 2}, [4996] = {.lex_state = 405, .external_lex_state = 5}, - [4997] = {.lex_state = 405, .external_lex_state = 5}, - [4998] = {.lex_state = 48, .external_lex_state = 2}, + [4997] = {.lex_state = 48, .external_lex_state = 2}, + [4998] = {.lex_state = 405, .external_lex_state = 5}, [4999] = {.lex_state = 405, .external_lex_state = 5}, - [5000] = {.lex_state = 48, .external_lex_state = 2}, - [5001] = {.lex_state = 405, .external_lex_state = 5}, + [5000] = {.lex_state = 405, .external_lex_state = 2}, + [5001] = {.lex_state = 48, .external_lex_state = 2}, [5002] = {.lex_state = 48, .external_lex_state = 2}, - [5003] = {.lex_state = 48, .external_lex_state = 2}, - [5004] = {.lex_state = 405, .external_lex_state = 2}, + [5003] = {.lex_state = 405, .external_lex_state = 5}, + [5004] = {.lex_state = 405, .external_lex_state = 6}, [5005] = {.lex_state = 405, .external_lex_state = 5}, - [5006] = {.lex_state = 405, .external_lex_state = 5}, - [5007] = {.lex_state = 48, .external_lex_state = 2}, - [5008] = {.lex_state = 405, .external_lex_state = 5}, + [5006] = {.lex_state = 48, .external_lex_state = 5}, + [5007] = {.lex_state = 405, .external_lex_state = 5}, + [5008] = {.lex_state = 405, .external_lex_state = 2}, [5009] = {.lex_state = 405, .external_lex_state = 5}, [5010] = {.lex_state = 405, .external_lex_state = 5}, [5011] = {.lex_state = 405, .external_lex_state = 5}, - [5012] = {.lex_state = 405, .external_lex_state = 5}, - [5013] = {.lex_state = 405, .external_lex_state = 2}, - [5014] = {.lex_state = 405, .external_lex_state = 6}, - [5015] = {.lex_state = 48, .external_lex_state = 2}, + [5012] = {.lex_state = 48, .external_lex_state = 2}, + [5013] = {.lex_state = 405, .external_lex_state = 5}, + [5014] = {.lex_state = 48, .external_lex_state = 2}, + [5015] = {.lex_state = 405, .external_lex_state = 2}, [5016] = {.lex_state = 405, .external_lex_state = 5}, - [5017] = {.lex_state = 48, .external_lex_state = 2}, + [5017] = {.lex_state = 405, .external_lex_state = 5}, [5018] = {.lex_state = 405, .external_lex_state = 5}, [5019] = {.lex_state = 48, .external_lex_state = 5}, [5020] = {.lex_state = 405, .external_lex_state = 5}, [5021] = {.lex_state = 405, .external_lex_state = 5}, - [5022] = {.lex_state = 405, .external_lex_state = 5}, + [5022] = {.lex_state = 48, .external_lex_state = 2}, [5023] = {.lex_state = 48, .external_lex_state = 2}, - [5024] = {.lex_state = 405, .external_lex_state = 6}, + [5024] = {.lex_state = 405, .external_lex_state = 8}, [5025] = {.lex_state = 405, .external_lex_state = 5}, - [5026] = {.lex_state = 405, .external_lex_state = 6}, + [5026] = {.lex_state = 405, .external_lex_state = 5}, [5027] = {.lex_state = 48, .external_lex_state = 2}, [5028] = {.lex_state = 48, .external_lex_state = 2}, - [5029] = {.lex_state = 405, .external_lex_state = 5}, - [5030] = {.lex_state = 405, .external_lex_state = 5}, - [5031] = {.lex_state = 405, .external_lex_state = 5}, - [5032] = {.lex_state = 405, .external_lex_state = 5}, - [5033] = {.lex_state = 405, .external_lex_state = 5}, - [5034] = {.lex_state = 50, .external_lex_state = 2}, - [5035] = {.lex_state = 405, .external_lex_state = 5}, - [5036] = {.lex_state = 405, .external_lex_state = 6}, + [5029] = {.lex_state = 48, .external_lex_state = 2}, + [5030] = {.lex_state = 48, .external_lex_state = 2}, + [5031] = {.lex_state = 48, .external_lex_state = 2}, + [5032] = {.lex_state = 48, .external_lex_state = 2}, + [5033] = {.lex_state = 48, .external_lex_state = 2}, + [5034] = {.lex_state = 48, .external_lex_state = 2}, + [5035] = {.lex_state = 405, .external_lex_state = 6}, + [5036] = {.lex_state = 81, .external_lex_state = 2}, [5037] = {.lex_state = 405, .external_lex_state = 5}, [5038] = {.lex_state = 405, .external_lex_state = 5}, - [5039] = {.lex_state = 48, .external_lex_state = 2}, - [5040] = {.lex_state = 405, .external_lex_state = 5}, - [5041] = {.lex_state = 405, .external_lex_state = 5}, + [5039] = {.lex_state = 405, .external_lex_state = 2}, + [5040] = {.lex_state = 48, .external_lex_state = 2}, + [5041] = {.lex_state = 48, .external_lex_state = 2}, [5042] = {.lex_state = 405, .external_lex_state = 5}, - [5043] = {.lex_state = 81, .external_lex_state = 2}, + [5043] = {.lex_state = 405, .external_lex_state = 5}, [5044] = {.lex_state = 405, .external_lex_state = 5}, - [5045] = {.lex_state = 81, .external_lex_state = 2}, - [5046] = {.lex_state = 81, .external_lex_state = 2}, - [5047] = {.lex_state = 405, .external_lex_state = 5}, - [5048] = {.lex_state = 405, .external_lex_state = 5}, - [5049] = {.lex_state = 48, .external_lex_state = 2}, - [5050] = {.lex_state = 405, .external_lex_state = 6}, - [5051] = {.lex_state = 405, .external_lex_state = 5}, - [5052] = {.lex_state = 405, .external_lex_state = 5}, - [5053] = {.lex_state = 405, .external_lex_state = 2}, - [5054] = {.lex_state = 405, .external_lex_state = 5}, - [5055] = {.lex_state = 81, .external_lex_state = 2}, - [5056] = {.lex_state = 405, .external_lex_state = 2}, - [5057] = {.lex_state = 405, .external_lex_state = 5}, + [5045] = {.lex_state = 48, .external_lex_state = 2}, + [5046] = {.lex_state = 48, .external_lex_state = 2}, + [5047] = {.lex_state = 48, .external_lex_state = 2}, + [5048] = {.lex_state = 48, .external_lex_state = 2}, + [5049] = {.lex_state = 405, .external_lex_state = 5}, + [5050] = {.lex_state = 405, .external_lex_state = 5}, + [5051] = {.lex_state = 48, .external_lex_state = 2}, + [5052] = {.lex_state = 405, .external_lex_state = 2}, + [5053] = {.lex_state = 405, .external_lex_state = 5}, + [5054] = {.lex_state = 75, .external_lex_state = 2}, + [5055] = {.lex_state = 48, .external_lex_state = 2}, + [5056] = {.lex_state = 405, .external_lex_state = 5}, + [5057] = {.lex_state = 405, .external_lex_state = 2}, [5058] = {.lex_state = 405, .external_lex_state = 5}, - [5059] = {.lex_state = 405, .external_lex_state = 5}, + [5059] = {.lex_state = 48, .external_lex_state = 2}, [5060] = {.lex_state = 48, .external_lex_state = 2}, [5061] = {.lex_state = 405, .external_lex_state = 5}, - [5062] = {.lex_state = 405, .external_lex_state = 5}, - [5063] = {.lex_state = 405, .external_lex_state = 5}, - [5064] = {.lex_state = 405, .external_lex_state = 5}, - [5065] = {.lex_state = 48, .external_lex_state = 5}, + [5062] = {.lex_state = 48, .external_lex_state = 2}, + [5063] = {.lex_state = 48, .external_lex_state = 2}, + [5064] = {.lex_state = 48, .external_lex_state = 2}, + [5065] = {.lex_state = 48, .external_lex_state = 2}, [5066] = {.lex_state = 405, .external_lex_state = 5}, - [5067] = {.lex_state = 405, .external_lex_state = 5}, - [5068] = {.lex_state = 405, .external_lex_state = 5}, - [5069] = {.lex_state = 405, .external_lex_state = 5}, - [5070] = {.lex_state = 405, .external_lex_state = 5}, - [5071] = {.lex_state = 405, .external_lex_state = 5}, + [5067] = {.lex_state = 50, .external_lex_state = 2}, + [5068] = {.lex_state = 48, .external_lex_state = 2}, + [5069] = {.lex_state = 405, .external_lex_state = 2}, + [5070] = {.lex_state = 48, .external_lex_state = 2}, + [5071] = {.lex_state = 48, .external_lex_state = 2}, [5072] = {.lex_state = 48, .external_lex_state = 2}, - [5073] = {.lex_state = 405, .external_lex_state = 5}, - [5074] = {.lex_state = 405, .external_lex_state = 5}, - [5075] = {.lex_state = 48, .external_lex_state = 2}, - [5076] = {.lex_state = 405, .external_lex_state = 5}, - [5077] = {.lex_state = 405, .external_lex_state = 5}, - [5078] = {.lex_state = 48, .external_lex_state = 2}, + [5073] = {.lex_state = 405, .external_lex_state = 6}, + [5074] = {.lex_state = 48, .external_lex_state = 2}, + [5075] = {.lex_state = 405, .external_lex_state = 5}, + [5076] = {.lex_state = 48, .external_lex_state = 2}, + [5077] = {.lex_state = 48, .external_lex_state = 2}, + [5078] = {.lex_state = 405, .external_lex_state = 5}, [5079] = {.lex_state = 405, .external_lex_state = 5}, [5080] = {.lex_state = 405, .external_lex_state = 5}, - [5081] = {.lex_state = 405, .external_lex_state = 5}, - [5082] = {.lex_state = 48, .external_lex_state = 2}, + [5081] = {.lex_state = 81, .external_lex_state = 2}, + [5082] = {.lex_state = 405, .external_lex_state = 5}, [5083] = {.lex_state = 48, .external_lex_state = 2}, - [5084] = {.lex_state = 48, .external_lex_state = 2}, - [5085] = {.lex_state = 405, .external_lex_state = 5}, + [5084] = {.lex_state = 405, .external_lex_state = 5}, + [5085] = {.lex_state = 48, .external_lex_state = 2}, [5086] = {.lex_state = 405, .external_lex_state = 5}, - [5087] = {.lex_state = 405, .external_lex_state = 8}, - [5088] = {.lex_state = 405, .external_lex_state = 5}, + [5087] = {.lex_state = 48, .external_lex_state = 5}, + [5088] = {.lex_state = 48, .external_lex_state = 2}, [5089] = {.lex_state = 48, .external_lex_state = 2}, - [5090] = {.lex_state = 405, .external_lex_state = 5}, + [5090] = {.lex_state = 48, .external_lex_state = 2}, [5091] = {.lex_state = 405, .external_lex_state = 5}, - [5092] = {.lex_state = 405, .external_lex_state = 5}, - [5093] = {.lex_state = 48, .external_lex_state = 2}, + [5092] = {.lex_state = 81, .external_lex_state = 2}, + [5093] = {.lex_state = 405, .external_lex_state = 5}, [5094] = {.lex_state = 405, .external_lex_state = 5}, [5095] = {.lex_state = 405, .external_lex_state = 5}, [5096] = {.lex_state = 405, .external_lex_state = 5}, [5097] = {.lex_state = 405, .external_lex_state = 5}, - [5098] = {.lex_state = 405, .external_lex_state = 5}, - [5099] = {.lex_state = 405, .external_lex_state = 5}, - [5100] = {.lex_state = 405, .external_lex_state = 5}, - [5101] = {.lex_state = 81, .external_lex_state = 2}, - [5102] = {.lex_state = 405, .external_lex_state = 5}, + [5098] = {.lex_state = 405, .external_lex_state = 8}, + [5099] = {.lex_state = 48, .external_lex_state = 2}, + [5100] = {.lex_state = 48, .external_lex_state = 2}, + [5101] = {.lex_state = 405, .external_lex_state = 5}, + [5102] = {.lex_state = 48, .external_lex_state = 2}, [5103] = {.lex_state = 405, .external_lex_state = 5}, - [5104] = {.lex_state = 405, .external_lex_state = 5}, - [5105] = {.lex_state = 405, .external_lex_state = 5}, + [5104] = {.lex_state = 48, .external_lex_state = 2}, + [5105] = {.lex_state = 48, .external_lex_state = 2}, [5106] = {.lex_state = 405, .external_lex_state = 5}, - [5107] = {.lex_state = 81, .external_lex_state = 2}, - [5108] = {.lex_state = 405, .external_lex_state = 5}, - [5109] = {.lex_state = 48, .external_lex_state = 2}, + [5107] = {.lex_state = 48, .external_lex_state = 2}, + [5108] = {.lex_state = 48, .external_lex_state = 2}, + [5109] = {.lex_state = 405, .external_lex_state = 5}, [5110] = {.lex_state = 405, .external_lex_state = 5}, - [5111] = {.lex_state = 405, .external_lex_state = 5}, - [5112] = {.lex_state = 405, .external_lex_state = 5}, - [5113] = {.lex_state = 405, .external_lex_state = 2}, - [5114] = {.lex_state = 405, .external_lex_state = 5}, - [5115] = {.lex_state = 405, .external_lex_state = 5}, - [5116] = {.lex_state = 405, .external_lex_state = 5}, - [5117] = {.lex_state = 405, .external_lex_state = 5}, - [5118] = {.lex_state = 48, .external_lex_state = 5}, + [5111] = {.lex_state = 48, .external_lex_state = 2}, + [5112] = {.lex_state = 405, .external_lex_state = 2}, + [5113] = {.lex_state = 48, .external_lex_state = 2}, + [5114] = {.lex_state = 48, .external_lex_state = 2}, + [5115] = {.lex_state = 405, .external_lex_state = 6}, + [5116] = {.lex_state = 48, .external_lex_state = 2}, + [5117] = {.lex_state = 48, .external_lex_state = 2}, + [5118] = {.lex_state = 81, .external_lex_state = 2}, [5119] = {.lex_state = 405, .external_lex_state = 2}, [5120] = {.lex_state = 405, .external_lex_state = 5}, [5121] = {.lex_state = 405, .external_lex_state = 5}, [5122] = {.lex_state = 405, .external_lex_state = 5}, - [5123] = {.lex_state = 48, .external_lex_state = 2}, - [5124] = {.lex_state = 405, .external_lex_state = 5}, - [5125] = {.lex_state = 405, .external_lex_state = 5}, - [5126] = {.lex_state = 405, .external_lex_state = 5}, - [5127] = {.lex_state = 75, .external_lex_state = 2}, - [5128] = {.lex_state = 405, .external_lex_state = 5}, - [5129] = {.lex_state = 405, .external_lex_state = 5}, - [5130] = {.lex_state = 405, .external_lex_state = 5}, - [5131] = {.lex_state = 405, .external_lex_state = 2}, - [5132] = {.lex_state = 48, .external_lex_state = 2}, - [5133] = {.lex_state = 81, .external_lex_state = 2}, + [5123] = {.lex_state = 405, .external_lex_state = 5}, + [5124] = {.lex_state = 405, .external_lex_state = 2}, + [5125] = {.lex_state = 405, .external_lex_state = 2}, + [5126] = {.lex_state = 405, .external_lex_state = 2}, + [5127] = {.lex_state = 49, .external_lex_state = 2}, + [5128] = {.lex_state = 48, .external_lex_state = 2}, + [5129] = {.lex_state = 405, .external_lex_state = 6}, + [5130] = {.lex_state = 50, .external_lex_state = 2}, + [5131] = {.lex_state = 48, .external_lex_state = 2}, + [5132] = {.lex_state = 405, .external_lex_state = 6}, + [5133] = {.lex_state = 48, .external_lex_state = 5}, [5134] = {.lex_state = 48, .external_lex_state = 2}, - [5135] = {.lex_state = 405, .external_lex_state = 5}, - [5136] = {.lex_state = 48, .external_lex_state = 5}, - [5137] = {.lex_state = 405, .external_lex_state = 5}, + [5135] = {.lex_state = 48, .external_lex_state = 2}, + [5136] = {.lex_state = 49, .external_lex_state = 5}, + [5137] = {.lex_state = 49, .external_lex_state = 5}, [5138] = {.lex_state = 405, .external_lex_state = 5}, - [5139] = {.lex_state = 405, .external_lex_state = 6}, - [5140] = {.lex_state = 405, .external_lex_state = 5}, + [5139] = {.lex_state = 48, .external_lex_state = 2}, + [5140] = {.lex_state = 48, .external_lex_state = 2}, [5141] = {.lex_state = 405, .external_lex_state = 5}, - [5142] = {.lex_state = 75, .external_lex_state = 2}, - [5143] = {.lex_state = 75, .external_lex_state = 2}, - [5144] = {.lex_state = 405, .external_lex_state = 2}, - [5145] = {.lex_state = 81, .external_lex_state = 2}, - [5146] = {.lex_state = 48, .external_lex_state = 2}, + [5142] = {.lex_state = 48, .external_lex_state = 2}, + [5143] = {.lex_state = 48, .external_lex_state = 2}, + [5144] = {.lex_state = 48, .external_lex_state = 2}, + [5145] = {.lex_state = 405, .external_lex_state = 5}, + [5146] = {.lex_state = 405, .external_lex_state = 5}, [5147] = {.lex_state = 405, .external_lex_state = 5}, - [5148] = {.lex_state = 48, .external_lex_state = 2}, - [5149] = {.lex_state = 405, .external_lex_state = 5}, + [5148] = {.lex_state = 81, .external_lex_state = 2}, + [5149] = {.lex_state = 48, .external_lex_state = 2}, [5150] = {.lex_state = 405, .external_lex_state = 5}, - [5151] = {.lex_state = 405, .external_lex_state = 2}, - [5152] = {.lex_state = 48, .external_lex_state = 2}, - [5153] = {.lex_state = 81, .external_lex_state = 2}, + [5151] = {.lex_state = 405, .external_lex_state = 6}, + [5152] = {.lex_state = 405, .external_lex_state = 6}, + [5153] = {.lex_state = 48, .external_lex_state = 2}, [5154] = {.lex_state = 405, .external_lex_state = 6}, - [5155] = {.lex_state = 81, .external_lex_state = 2}, + [5155] = {.lex_state = 48, .external_lex_state = 2}, [5156] = {.lex_state = 405, .external_lex_state = 5}, [5157] = {.lex_state = 405, .external_lex_state = 5}, [5158] = {.lex_state = 405, .external_lex_state = 5}, - [5159] = {.lex_state = 81, .external_lex_state = 2}, - [5160] = {.lex_state = 48, .external_lex_state = 5}, - [5161] = {.lex_state = 405, .external_lex_state = 5}, - [5162] = {.lex_state = 405, .external_lex_state = 6}, - [5163] = {.lex_state = 81, .external_lex_state = 2}, - [5164] = {.lex_state = 405, .external_lex_state = 6}, - [5165] = {.lex_state = 405, .external_lex_state = 5}, - [5166] = {.lex_state = 405, .external_lex_state = 5}, + [5159] = {.lex_state = 48, .external_lex_state = 2}, + [5160] = {.lex_state = 48, .external_lex_state = 2}, + [5161] = {.lex_state = 48, .external_lex_state = 2}, + [5162] = {.lex_state = 48, .external_lex_state = 2}, + [5163] = {.lex_state = 405, .external_lex_state = 5}, + [5164] = {.lex_state = 48, .external_lex_state = 2}, + [5165] = {.lex_state = 405, .external_lex_state = 8}, + [5166] = {.lex_state = 48, .external_lex_state = 2}, [5167] = {.lex_state = 48, .external_lex_state = 2}, - [5168] = {.lex_state = 75, .external_lex_state = 2}, - [5169] = {.lex_state = 405, .external_lex_state = 5}, + [5168] = {.lex_state = 48, .external_lex_state = 2}, + [5169] = {.lex_state = 48, .external_lex_state = 2}, [5170] = {.lex_state = 405, .external_lex_state = 5}, - [5171] = {.lex_state = 48, .external_lex_state = 2}, - [5172] = {.lex_state = 81, .external_lex_state = 2}, - [5173] = {.lex_state = 81, .external_lex_state = 2}, + [5171] = {.lex_state = 405, .external_lex_state = 5}, + [5172] = {.lex_state = 48, .external_lex_state = 2}, + [5173] = {.lex_state = 48, .external_lex_state = 2}, [5174] = {.lex_state = 405, .external_lex_state = 5}, - [5175] = {.lex_state = 405, .external_lex_state = 6}, - [5176] = {.lex_state = 405, .external_lex_state = 5}, - [5177] = {.lex_state = 405, .external_lex_state = 2}, + [5175] = {.lex_state = 405, .external_lex_state = 8}, + [5176] = {.lex_state = 405, .external_lex_state = 6}, + [5177] = {.lex_state = 405, .external_lex_state = 5}, [5178] = {.lex_state = 48, .external_lex_state = 2}, - [5179] = {.lex_state = 81, .external_lex_state = 2}, - [5180] = {.lex_state = 405, .external_lex_state = 5}, - [5181] = {.lex_state = 405, .external_lex_state = 5}, - [5182] = {.lex_state = 48, .external_lex_state = 2}, - [5183] = {.lex_state = 405, .external_lex_state = 8}, - [5184] = {.lex_state = 405, .external_lex_state = 5}, - [5185] = {.lex_state = 405, .external_lex_state = 5}, - [5186] = {.lex_state = 405, .external_lex_state = 5}, - [5187] = {.lex_state = 405, .external_lex_state = 5}, - [5188] = {.lex_state = 405, .external_lex_state = 5}, + [5179] = {.lex_state = 405, .external_lex_state = 5}, + [5180] = {.lex_state = 405, .external_lex_state = 2}, + [5181] = {.lex_state = 75, .external_lex_state = 2}, + [5182] = {.lex_state = 405, .external_lex_state = 5}, + [5183] = {.lex_state = 405, .external_lex_state = 5}, + [5184] = {.lex_state = 48, .external_lex_state = 2}, + [5185] = {.lex_state = 48, .external_lex_state = 2}, + [5186] = {.lex_state = 81, .external_lex_state = 2}, + [5187] = {.lex_state = 81, .external_lex_state = 2}, + [5188] = {.lex_state = 405, .external_lex_state = 2}, [5189] = {.lex_state = 405, .external_lex_state = 5}, [5190] = {.lex_state = 405, .external_lex_state = 5}, - [5191] = {.lex_state = 48, .external_lex_state = 2}, + [5191] = {.lex_state = 405, .external_lex_state = 5}, [5192] = {.lex_state = 405, .external_lex_state = 5}, - [5193] = {.lex_state = 405, .external_lex_state = 5}, - [5194] = {.lex_state = 405, .external_lex_state = 5}, - [5195] = {.lex_state = 405, .external_lex_state = 5}, - [5196] = {.lex_state = 81, .external_lex_state = 2}, - [5197] = {.lex_state = 405, .external_lex_state = 5}, - [5198] = {.lex_state = 405, .external_lex_state = 5}, - [5199] = {.lex_state = 405, .external_lex_state = 5}, - [5200] = {.lex_state = 405, .external_lex_state = 8}, - [5201] = {.lex_state = 405, .external_lex_state = 5}, + [5193] = {.lex_state = 48, .external_lex_state = 2}, + [5194] = {.lex_state = 48, .external_lex_state = 2}, + [5195] = {.lex_state = 405, .external_lex_state = 6}, + [5196] = {.lex_state = 48, .external_lex_state = 2}, + [5197] = {.lex_state = 48, .external_lex_state = 2}, + [5198] = {.lex_state = 48, .external_lex_state = 2}, + [5199] = {.lex_state = 405, .external_lex_state = 2}, + [5200] = {.lex_state = 49, .external_lex_state = 2}, + [5201] = {.lex_state = 49, .external_lex_state = 2}, [5202] = {.lex_state = 405, .external_lex_state = 5}, - [5203] = {.lex_state = 49, .external_lex_state = 2}, - [5204] = {.lex_state = 405, .external_lex_state = 5}, - [5205] = {.lex_state = 405, .external_lex_state = 5}, - [5206] = {.lex_state = 405, .external_lex_state = 5}, - [5207] = {.lex_state = 405, .external_lex_state = 6}, - [5208] = {.lex_state = 405, .external_lex_state = 5}, + [5203] = {.lex_state = 405, .external_lex_state = 8}, + [5204] = {.lex_state = 48, .external_lex_state = 2}, + [5205] = {.lex_state = 405, .external_lex_state = 2}, + [5206] = {.lex_state = 48, .external_lex_state = 2}, + [5207] = {.lex_state = 48, .external_lex_state = 2}, + [5208] = {.lex_state = 48, .external_lex_state = 5}, [5209] = {.lex_state = 48, .external_lex_state = 2}, - [5210] = {.lex_state = 405, .external_lex_state = 5}, - [5211] = {.lex_state = 405, .external_lex_state = 5}, - [5212] = {.lex_state = 81, .external_lex_state = 2}, - [5213] = {.lex_state = 81, .external_lex_state = 2}, - [5214] = {.lex_state = 405, .external_lex_state = 5}, + [5210] = {.lex_state = 405, .external_lex_state = 6}, + [5211] = {.lex_state = 49, .external_lex_state = 2}, + [5212] = {.lex_state = 405, .external_lex_state = 5}, + [5213] = {.lex_state = 405, .external_lex_state = 5}, + [5214] = {.lex_state = 48, .external_lex_state = 2}, [5215] = {.lex_state = 405, .external_lex_state = 5}, [5216] = {.lex_state = 405, .external_lex_state = 5}, - [5217] = {.lex_state = 48, .external_lex_state = 5}, - [5218] = {.lex_state = 48, .external_lex_state = 2}, - [5219] = {.lex_state = 405, .external_lex_state = 5}, - [5220] = {.lex_state = 405, .external_lex_state = 2}, + [5217] = {.lex_state = 405, .external_lex_state = 5}, + [5218] = {.lex_state = 405, .external_lex_state = 5}, + [5219] = {.lex_state = 48, .external_lex_state = 2}, + [5220] = {.lex_state = 405, .external_lex_state = 6}, [5221] = {.lex_state = 405, .external_lex_state = 5}, [5222] = {.lex_state = 405, .external_lex_state = 5}, - [5223] = {.lex_state = 405, .external_lex_state = 2}, - [5224] = {.lex_state = 75, .external_lex_state = 2}, + [5223] = {.lex_state = 405, .external_lex_state = 5}, + [5224] = {.lex_state = 405, .external_lex_state = 5}, [5225] = {.lex_state = 405, .external_lex_state = 5}, [5226] = {.lex_state = 405, .external_lex_state = 5}, - [5227] = {.lex_state = 48, .external_lex_state = 2}, - [5228] = {.lex_state = 48, .external_lex_state = 2}, - [5229] = {.lex_state = 48, .external_lex_state = 2}, + [5227] = {.lex_state = 75, .external_lex_state = 2}, + [5228] = {.lex_state = 405, .external_lex_state = 5}, + [5229] = {.lex_state = 405, .external_lex_state = 5}, [5230] = {.lex_state = 405, .external_lex_state = 5}, - [5231] = {.lex_state = 405, .external_lex_state = 5}, + [5231] = {.lex_state = 48, .external_lex_state = 2}, [5232] = {.lex_state = 405, .external_lex_state = 5}, - [5233] = {.lex_state = 48, .external_lex_state = 5}, + [5233] = {.lex_state = 405, .external_lex_state = 5}, [5234] = {.lex_state = 405, .external_lex_state = 5}, - [5235] = {.lex_state = 48, .external_lex_state = 2}, - [5236] = {.lex_state = 405, .external_lex_state = 6}, + [5235] = {.lex_state = 405, .external_lex_state = 5}, + [5236] = {.lex_state = 405, .external_lex_state = 5}, [5237] = {.lex_state = 405, .external_lex_state = 5}, - [5238] = {.lex_state = 48, .external_lex_state = 2}, + [5238] = {.lex_state = 405, .external_lex_state = 5}, [5239] = {.lex_state = 405, .external_lex_state = 5}, - [5240] = {.lex_state = 405, .external_lex_state = 2}, + [5240] = {.lex_state = 405, .external_lex_state = 5}, [5241] = {.lex_state = 405, .external_lex_state = 5}, [5242] = {.lex_state = 405, .external_lex_state = 5}, [5243] = {.lex_state = 405, .external_lex_state = 5}, - [5244] = {.lex_state = 405, .external_lex_state = 6}, - [5245] = {.lex_state = 405, .external_lex_state = 5}, + [5244] = {.lex_state = 405, .external_lex_state = 5}, + [5245] = {.lex_state = 405, .external_lex_state = 8}, [5246] = {.lex_state = 405, .external_lex_state = 5}, [5247] = {.lex_state = 405, .external_lex_state = 5}, - [5248] = {.lex_state = 405, .external_lex_state = 8}, - [5249] = {.lex_state = 405, .external_lex_state = 5}, - [5250] = {.lex_state = 405, .external_lex_state = 2}, - [5251] = {.lex_state = 405, .external_lex_state = 5}, - [5252] = {.lex_state = 405, .external_lex_state = 5}, - [5253] = {.lex_state = 405, .external_lex_state = 5}, + [5248] = {.lex_state = 405, .external_lex_state = 5}, + [5249] = {.lex_state = 48, .external_lex_state = 2}, + [5250] = {.lex_state = 405, .external_lex_state = 5}, + [5251] = {.lex_state = 405, .external_lex_state = 6}, + [5252] = {.lex_state = 81, .external_lex_state = 2}, + [5253] = {.lex_state = 405, .external_lex_state = 2}, [5254] = {.lex_state = 405, .external_lex_state = 5}, - [5255] = {.lex_state = 48, .external_lex_state = 2}, - [5256] = {.lex_state = 405, .external_lex_state = 5}, - [5257] = {.lex_state = 48, .external_lex_state = 2}, + [5255] = {.lex_state = 405, .external_lex_state = 5}, + [5256] = {.lex_state = 405, .external_lex_state = 2}, + [5257] = {.lex_state = 405, .external_lex_state = 5}, [5258] = {.lex_state = 405, .external_lex_state = 5}, [5259] = {.lex_state = 48, .external_lex_state = 5}, - [5260] = {.lex_state = 405, .external_lex_state = 6}, + [5260] = {.lex_state = 75, .external_lex_state = 2}, [5261] = {.lex_state = 405, .external_lex_state = 5}, [5262] = {.lex_state = 405, .external_lex_state = 5}, [5263] = {.lex_state = 405, .external_lex_state = 5}, - [5264] = {.lex_state = 405, .external_lex_state = 5}, - [5265] = {.lex_state = 405, .external_lex_state = 5}, - [5266] = {.lex_state = 81, .external_lex_state = 2}, + [5264] = {.lex_state = 405, .external_lex_state = 6}, + [5265] = {.lex_state = 48, .external_lex_state = 5}, + [5266] = {.lex_state = 405, .external_lex_state = 5}, [5267] = {.lex_state = 405, .external_lex_state = 5}, - [5268] = {.lex_state = 81, .external_lex_state = 2}, + [5268] = {.lex_state = 48, .external_lex_state = 2}, [5269] = {.lex_state = 405, .external_lex_state = 5}, [5270] = {.lex_state = 405, .external_lex_state = 5}, - [5271] = {.lex_state = 405, .external_lex_state = 6}, - [5272] = {.lex_state = 405, .external_lex_state = 5}, - [5273] = {.lex_state = 48, .external_lex_state = 5}, - [5274] = {.lex_state = 405, .external_lex_state = 5}, + [5271] = {.lex_state = 405, .external_lex_state = 5}, + [5272] = {.lex_state = 48, .external_lex_state = 2}, + [5273] = {.lex_state = 405, .external_lex_state = 5}, + [5274] = {.lex_state = 405, .external_lex_state = 6}, [5275] = {.lex_state = 405, .external_lex_state = 5}, - [5276] = {.lex_state = 405, .external_lex_state = 5}, - [5277] = {.lex_state = 81, .external_lex_state = 2}, - [5278] = {.lex_state = 81, .external_lex_state = 2}, - [5279] = {.lex_state = 75, .external_lex_state = 2}, + [5276] = {.lex_state = 48, .external_lex_state = 5}, + [5277] = {.lex_state = 405, .external_lex_state = 5}, + [5278] = {.lex_state = 405, .external_lex_state = 5}, + [5279] = {.lex_state = 405, .external_lex_state = 5}, [5280] = {.lex_state = 405, .external_lex_state = 5}, - [5281] = {.lex_state = 405, .external_lex_state = 5}, + [5281] = {.lex_state = 48, .external_lex_state = 5}, [5282] = {.lex_state = 405, .external_lex_state = 5}, - [5283] = {.lex_state = 405, .external_lex_state = 6}, - [5284] = {.lex_state = 405, .external_lex_state = 8}, + [5283] = {.lex_state = 48, .external_lex_state = 2}, + [5284] = {.lex_state = 405, .external_lex_state = 5}, [5285] = {.lex_state = 405, .external_lex_state = 5}, [5286] = {.lex_state = 405, .external_lex_state = 5}, [5287] = {.lex_state = 405, .external_lex_state = 5}, - [5288] = {.lex_state = 81, .external_lex_state = 2}, + [5288] = {.lex_state = 405, .external_lex_state = 5}, [5289] = {.lex_state = 405, .external_lex_state = 5}, - [5290] = {.lex_state = 48, .external_lex_state = 2}, + [5290] = {.lex_state = 405, .external_lex_state = 5}, [5291] = {.lex_state = 405, .external_lex_state = 5}, - [5292] = {.lex_state = 48, .external_lex_state = 2}, + [5292] = {.lex_state = 405, .external_lex_state = 5}, [5293] = {.lex_state = 405, .external_lex_state = 5}, [5294] = {.lex_state = 405, .external_lex_state = 5}, - [5295] = {.lex_state = 48, .external_lex_state = 2}, - [5296] = {.lex_state = 50, .external_lex_state = 2}, + [5295] = {.lex_state = 405, .external_lex_state = 5}, + [5296] = {.lex_state = 405, .external_lex_state = 5}, [5297] = {.lex_state = 405, .external_lex_state = 5}, - [5298] = {.lex_state = 405, .external_lex_state = 8}, + [5298] = {.lex_state = 405, .external_lex_state = 5}, [5299] = {.lex_state = 405, .external_lex_state = 5}, [5300] = {.lex_state = 405, .external_lex_state = 5}, - [5301] = {.lex_state = 405, .external_lex_state = 2}, + [5301] = {.lex_state = 405, .external_lex_state = 8}, [5302] = {.lex_state = 405, .external_lex_state = 5}, [5303] = {.lex_state = 405, .external_lex_state = 5}, [5304] = {.lex_state = 405, .external_lex_state = 5}, [5305] = {.lex_state = 405, .external_lex_state = 5}, - [5306] = {.lex_state = 405, .external_lex_state = 6}, + [5306] = {.lex_state = 405, .external_lex_state = 5}, [5307] = {.lex_state = 405, .external_lex_state = 5}, [5308] = {.lex_state = 405, .external_lex_state = 5}, - [5309] = {.lex_state = 405, .external_lex_state = 5}, + [5309] = {.lex_state = 405, .external_lex_state = 6}, [5310] = {.lex_state = 405, .external_lex_state = 5}, [5311] = {.lex_state = 405, .external_lex_state = 5}, [5312] = {.lex_state = 405, .external_lex_state = 5}, @@ -27452,637 +27516,637 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5315] = {.lex_state = 405, .external_lex_state = 5}, [5316] = {.lex_state = 405, .external_lex_state = 5}, [5317] = {.lex_state = 405, .external_lex_state = 5}, - [5318] = {.lex_state = 405, .external_lex_state = 2}, + [5318] = {.lex_state = 405, .external_lex_state = 5}, [5319] = {.lex_state = 405, .external_lex_state = 5}, - [5320] = {.lex_state = 405, .external_lex_state = 5}, - [5321] = {.lex_state = 405, .external_lex_state = 5}, - [5322] = {.lex_state = 48, .external_lex_state = 2}, + [5320] = {.lex_state = 48, .external_lex_state = 5}, + [5321] = {.lex_state = 405, .external_lex_state = 2}, + [5322] = {.lex_state = 405, .external_lex_state = 5}, [5323] = {.lex_state = 405, .external_lex_state = 5}, - [5324] = {.lex_state = 81, .external_lex_state = 2}, - [5325] = {.lex_state = 405, .external_lex_state = 5}, - [5326] = {.lex_state = 405, .external_lex_state = 5}, + [5324] = {.lex_state = 405, .external_lex_state = 5}, + [5325] = {.lex_state = 48, .external_lex_state = 5}, + [5326] = {.lex_state = 405, .external_lex_state = 6}, [5327] = {.lex_state = 405, .external_lex_state = 5}, - [5328] = {.lex_state = 48, .external_lex_state = 2}, + [5328] = {.lex_state = 405, .external_lex_state = 5}, [5329] = {.lex_state = 405, .external_lex_state = 5}, [5330] = {.lex_state = 405, .external_lex_state = 5}, - [5331] = {.lex_state = 405, .external_lex_state = 5}, - [5332] = {.lex_state = 405, .external_lex_state = 2}, - [5333] = {.lex_state = 405, .external_lex_state = 5}, - [5334] = {.lex_state = 405, .external_lex_state = 2}, - [5335] = {.lex_state = 81, .external_lex_state = 2}, - [5336] = {.lex_state = 405, .external_lex_state = 5}, - [5337] = {.lex_state = 405, .external_lex_state = 5}, - [5338] = {.lex_state = 81, .external_lex_state = 2}, - [5339] = {.lex_state = 48, .external_lex_state = 2}, - [5340] = {.lex_state = 81, .external_lex_state = 2}, + [5331] = {.lex_state = 405, .external_lex_state = 2}, + [5332] = {.lex_state = 405, .external_lex_state = 6}, + [5333] = {.lex_state = 48, .external_lex_state = 5}, + [5334] = {.lex_state = 405, .external_lex_state = 5}, + [5335] = {.lex_state = 405, .external_lex_state = 2}, + [5336] = {.lex_state = 405, .external_lex_state = 6}, + [5337] = {.lex_state = 405, .external_lex_state = 2}, + [5338] = {.lex_state = 405, .external_lex_state = 5}, + [5339] = {.lex_state = 405, .external_lex_state = 5}, + [5340] = {.lex_state = 405, .external_lex_state = 5}, [5341] = {.lex_state = 405, .external_lex_state = 5}, [5342] = {.lex_state = 405, .external_lex_state = 5}, [5343] = {.lex_state = 405, .external_lex_state = 5}, - [5344] = {.lex_state = 405, .external_lex_state = 6}, - [5345] = {.lex_state = 48, .external_lex_state = 2}, - [5346] = {.lex_state = 48, .external_lex_state = 2}, - [5347] = {.lex_state = 81, .external_lex_state = 2}, - [5348] = {.lex_state = 48, .external_lex_state = 5}, - [5349] = {.lex_state = 81, .external_lex_state = 2}, - [5350] = {.lex_state = 50, .external_lex_state = 2}, - [5351] = {.lex_state = 405, .external_lex_state = 5}, - [5352] = {.lex_state = 48, .external_lex_state = 2}, + [5344] = {.lex_state = 75, .external_lex_state = 2}, + [5345] = {.lex_state = 405, .external_lex_state = 5}, + [5346] = {.lex_state = 405, .external_lex_state = 6}, + [5347] = {.lex_state = 405, .external_lex_state = 6}, + [5348] = {.lex_state = 405, .external_lex_state = 5}, + [5349] = {.lex_state = 405, .external_lex_state = 5}, + [5350] = {.lex_state = 48, .external_lex_state = 2}, + [5351] = {.lex_state = 48, .external_lex_state = 5}, + [5352] = {.lex_state = 405, .external_lex_state = 5}, [5353] = {.lex_state = 405, .external_lex_state = 5}, - [5354] = {.lex_state = 405, .external_lex_state = 5}, - [5355] = {.lex_state = 81, .external_lex_state = 2}, - [5356] = {.lex_state = 48, .external_lex_state = 2}, - [5357] = {.lex_state = 48, .external_lex_state = 2}, - [5358] = {.lex_state = 81, .external_lex_state = 2}, - [5359] = {.lex_state = 48, .external_lex_state = 2}, - [5360] = {.lex_state = 405, .external_lex_state = 6}, + [5354] = {.lex_state = 48, .external_lex_state = 2}, + [5355] = {.lex_state = 48, .external_lex_state = 2}, + [5356] = {.lex_state = 405, .external_lex_state = 5}, + [5357] = {.lex_state = 405, .external_lex_state = 5}, + [5358] = {.lex_state = 405, .external_lex_state = 5}, + [5359] = {.lex_state = 405, .external_lex_state = 5}, + [5360] = {.lex_state = 405, .external_lex_state = 5}, [5361] = {.lex_state = 405, .external_lex_state = 5}, - [5362] = {.lex_state = 405, .external_lex_state = 5}, + [5362] = {.lex_state = 48, .external_lex_state = 2}, [5363] = {.lex_state = 405, .external_lex_state = 5}, [5364] = {.lex_state = 405, .external_lex_state = 5}, - [5365] = {.lex_state = 405, .external_lex_state = 8}, - [5366] = {.lex_state = 48, .external_lex_state = 5}, + [5365] = {.lex_state = 48, .external_lex_state = 2}, + [5366] = {.lex_state = 405, .external_lex_state = 5}, [5367] = {.lex_state = 48, .external_lex_state = 2}, [5368] = {.lex_state = 405, .external_lex_state = 5}, - [5369] = {.lex_state = 405, .external_lex_state = 6}, + [5369] = {.lex_state = 405, .external_lex_state = 5}, [5370] = {.lex_state = 405, .external_lex_state = 5}, - [5371] = {.lex_state = 75, .external_lex_state = 2}, + [5371] = {.lex_state = 405, .external_lex_state = 5}, [5372] = {.lex_state = 405, .external_lex_state = 5}, - [5373] = {.lex_state = 48, .external_lex_state = 2}, - [5374] = {.lex_state = 48, .external_lex_state = 2}, - [5375] = {.lex_state = 81, .external_lex_state = 2}, - [5376] = {.lex_state = 48, .external_lex_state = 2}, + [5373] = {.lex_state = 81, .external_lex_state = 2}, + [5374] = {.lex_state = 405, .external_lex_state = 5}, + [5375] = {.lex_state = 405, .external_lex_state = 5}, + [5376] = {.lex_state = 405, .external_lex_state = 5}, [5377] = {.lex_state = 405, .external_lex_state = 5}, - [5378] = {.lex_state = 49, .external_lex_state = 2}, + [5378] = {.lex_state = 48, .external_lex_state = 2}, [5379] = {.lex_state = 48, .external_lex_state = 5}, [5380] = {.lex_state = 405, .external_lex_state = 5}, [5381] = {.lex_state = 405, .external_lex_state = 5}, - [5382] = {.lex_state = 405, .external_lex_state = 6}, + [5382] = {.lex_state = 48, .external_lex_state = 2}, [5383] = {.lex_state = 405, .external_lex_state = 5}, - [5384] = {.lex_state = 405, .external_lex_state = 2}, + [5384] = {.lex_state = 405, .external_lex_state = 5}, [5385] = {.lex_state = 405, .external_lex_state = 5}, - [5386] = {.lex_state = 48, .external_lex_state = 2}, - [5387] = {.lex_state = 81, .external_lex_state = 2}, - [5388] = {.lex_state = 48, .external_lex_state = 2}, - [5389] = {.lex_state = 48, .external_lex_state = 5}, - [5390] = {.lex_state = 405, .external_lex_state = 2}, - [5391] = {.lex_state = 81, .external_lex_state = 2}, - [5392] = {.lex_state = 405, .external_lex_state = 6}, - [5393] = {.lex_state = 405, .external_lex_state = 8}, - [5394] = {.lex_state = 75, .external_lex_state = 2}, - [5395] = {.lex_state = 48, .external_lex_state = 2}, - [5396] = {.lex_state = 49, .external_lex_state = 2}, + [5386] = {.lex_state = 405, .external_lex_state = 8}, + [5387] = {.lex_state = 405, .external_lex_state = 2}, + [5388] = {.lex_state = 405, .external_lex_state = 5}, + [5389] = {.lex_state = 48, .external_lex_state = 2}, + [5390] = {.lex_state = 405, .external_lex_state = 5}, + [5391] = {.lex_state = 405, .external_lex_state = 5}, + [5392] = {.lex_state = 48, .external_lex_state = 5}, + [5393] = {.lex_state = 405, .external_lex_state = 6}, + [5394] = {.lex_state = 48, .external_lex_state = 2}, + [5395] = {.lex_state = 405, .external_lex_state = 5}, + [5396] = {.lex_state = 405, .external_lex_state = 2}, [5397] = {.lex_state = 48, .external_lex_state = 2}, - [5398] = {.lex_state = 48, .external_lex_state = 2}, - [5399] = {.lex_state = 405, .external_lex_state = 2}, - [5400] = {.lex_state = 48, .external_lex_state = 2}, - [5401] = {.lex_state = 81, .external_lex_state = 2}, - [5402] = {.lex_state = 48, .external_lex_state = 5}, - [5403] = {.lex_state = 405, .external_lex_state = 6}, - [5404] = {.lex_state = 81, .external_lex_state = 2}, - [5405] = {.lex_state = 48, .external_lex_state = 2}, - [5406] = {.lex_state = 48, .external_lex_state = 2}, - [5407] = {.lex_state = 48, .external_lex_state = 2}, - [5408] = {.lex_state = 48, .external_lex_state = 5}, - [5409] = {.lex_state = 405, .external_lex_state = 5}, - [5410] = {.lex_state = 66, .external_lex_state = 2}, - [5411] = {.lex_state = 59, .external_lex_state = 9}, - [5412] = {.lex_state = 405, .external_lex_state = 5}, + [5398] = {.lex_state = 405, .external_lex_state = 5}, + [5399] = {.lex_state = 405, .external_lex_state = 5}, + [5400] = {.lex_state = 405, .external_lex_state = 5}, + [5401] = {.lex_state = 405, .external_lex_state = 6}, + [5402] = {.lex_state = 405, .external_lex_state = 8}, + [5403] = {.lex_state = 48, .external_lex_state = 5}, + [5404] = {.lex_state = 405, .external_lex_state = 6}, + [5405] = {.lex_state = 405, .external_lex_state = 5}, + [5406] = {.lex_state = 405, .external_lex_state = 5}, + [5407] = {.lex_state = 405, .external_lex_state = 5}, + [5408] = {.lex_state = 405, .external_lex_state = 5}, + [5409] = {.lex_state = 48, .external_lex_state = 5}, + [5410] = {.lex_state = 405, .external_lex_state = 5}, + [5411] = {.lex_state = 75, .external_lex_state = 2}, + [5412] = {.lex_state = 59, .external_lex_state = 9}, [5413] = {.lex_state = 48, .external_lex_state = 2}, [5414] = {.lex_state = 48, .external_lex_state = 2}, - [5415] = {.lex_state = 48, .external_lex_state = 2}, + [5415] = {.lex_state = 405, .external_lex_state = 5}, [5416] = {.lex_state = 48, .external_lex_state = 2}, [5417] = {.lex_state = 48, .external_lex_state = 2}, - [5418] = {.lex_state = 405, .external_lex_state = 2}, - [5419] = {.lex_state = 405, .external_lex_state = 2}, - [5420] = {.lex_state = 27, .external_lex_state = 2}, + [5418] = {.lex_state = 68, .external_lex_state = 9}, + [5419] = {.lex_state = 48, .external_lex_state = 2}, + [5420] = {.lex_state = 405, .external_lex_state = 5}, [5421] = {.lex_state = 48, .external_lex_state = 2}, - [5422] = {.lex_state = 48, .external_lex_state = 2}, + [5422] = {.lex_state = 405, .external_lex_state = 5}, [5423] = {.lex_state = 48, .external_lex_state = 2}, [5424] = {.lex_state = 405, .external_lex_state = 5}, - [5425] = {.lex_state = 66, .external_lex_state = 2}, - [5426] = {.lex_state = 54, .external_lex_state = 2}, - [5427] = {.lex_state = 24, .external_lex_state = 2}, - [5428] = {.lex_state = 48, .external_lex_state = 2}, - [5429] = {.lex_state = 59, .external_lex_state = 9}, - [5430] = {.lex_state = 405, .external_lex_state = 5}, - [5431] = {.lex_state = 48, .external_lex_state = 2}, - [5432] = {.lex_state = 405, .external_lex_state = 5}, - [5433] = {.lex_state = 405, .external_lex_state = 5}, - [5434] = {.lex_state = 68, .external_lex_state = 9}, - [5435] = {.lex_state = 48, .external_lex_state = 2}, + [5425] = {.lex_state = 405, .external_lex_state = 5}, + [5426] = {.lex_state = 405, .external_lex_state = 5}, + [5427] = {.lex_state = 48, .external_lex_state = 2}, + [5428] = {.lex_state = 405, .external_lex_state = 5}, + [5429] = {.lex_state = 66, .external_lex_state = 2}, + [5430] = {.lex_state = 48, .external_lex_state = 2}, + [5431] = {.lex_state = 54, .external_lex_state = 2}, + [5432] = {.lex_state = 48, .external_lex_state = 2}, + [5433] = {.lex_state = 59, .external_lex_state = 9}, + [5434] = {.lex_state = 48, .external_lex_state = 2}, + [5435] = {.lex_state = 68, .external_lex_state = 9}, [5436] = {.lex_state = 405, .external_lex_state = 5}, [5437] = {.lex_state = 405, .external_lex_state = 5}, - [5438] = {.lex_state = 2, .external_lex_state = 2}, - [5439] = {.lex_state = 405, .external_lex_state = 5}, + [5438] = {.lex_state = 68, .external_lex_state = 9}, + [5439] = {.lex_state = 59, .external_lex_state = 9}, [5440] = {.lex_state = 405, .external_lex_state = 5}, - [5441] = {.lex_state = 405, .external_lex_state = 5}, + [5441] = {.lex_state = 59, .external_lex_state = 9}, [5442] = {.lex_state = 405, .external_lex_state = 5}, [5443] = {.lex_state = 405, .external_lex_state = 5}, - [5444] = {.lex_state = 405, .external_lex_state = 5}, + [5444] = {.lex_state = 48, .external_lex_state = 2}, [5445] = {.lex_state = 405, .external_lex_state = 5}, [5446] = {.lex_state = 405, .external_lex_state = 5}, [5447] = {.lex_state = 405, .external_lex_state = 5}, - [5448] = {.lex_state = 59, .external_lex_state = 9}, - [5449] = {.lex_state = 68, .external_lex_state = 9}, - [5450] = {.lex_state = 84, .external_lex_state = 2}, - [5451] = {.lex_state = 405, .external_lex_state = 5}, - [5452] = {.lex_state = 405, .external_lex_state = 5}, - [5453] = {.lex_state = 405, .external_lex_state = 5}, - [5454] = {.lex_state = 405, .external_lex_state = 5}, + [5448] = {.lex_state = 405, .external_lex_state = 5}, + [5449] = {.lex_state = 405, .external_lex_state = 5}, + [5450] = {.lex_state = 405, .external_lex_state = 5}, + [5451] = {.lex_state = 48, .external_lex_state = 2}, + [5452] = {.lex_state = 84, .external_lex_state = 2}, + [5453] = {.lex_state = 59, .external_lex_state = 9}, + [5454] = {.lex_state = 68, .external_lex_state = 9}, [5455] = {.lex_state = 405, .external_lex_state = 5}, [5456] = {.lex_state = 405, .external_lex_state = 5}, - [5457] = {.lex_state = 48, .external_lex_state = 2}, - [5458] = {.lex_state = 48, .external_lex_state = 2}, - [5459] = {.lex_state = 48, .external_lex_state = 2}, - [5460] = {.lex_state = 405, .external_lex_state = 5}, - [5461] = {.lex_state = 48, .external_lex_state = 2}, + [5457] = {.lex_state = 59, .external_lex_state = 9}, + [5458] = {.lex_state = 68, .external_lex_state = 9}, + [5459] = {.lex_state = 405, .external_lex_state = 5}, + [5460] = {.lex_state = 68, .external_lex_state = 9}, + [5461] = {.lex_state = 59, .external_lex_state = 9}, [5462] = {.lex_state = 405, .external_lex_state = 5}, - [5463] = {.lex_state = 405, .external_lex_state = 5}, + [5463] = {.lex_state = 48, .external_lex_state = 2}, [5464] = {.lex_state = 48, .external_lex_state = 2}, [5465] = {.lex_state = 48, .external_lex_state = 2}, - [5466] = {.lex_state = 48, .external_lex_state = 2}, + [5466] = {.lex_state = 59, .external_lex_state = 9}, [5467] = {.lex_state = 48, .external_lex_state = 2}, - [5468] = {.lex_state = 405, .external_lex_state = 2}, - [5469] = {.lex_state = 48, .external_lex_state = 2}, - [5470] = {.lex_state = 84, .external_lex_state = 2}, - [5471] = {.lex_state = 405, .external_lex_state = 2}, + [5468] = {.lex_state = 68, .external_lex_state = 9}, + [5469] = {.lex_state = 59, .external_lex_state = 9}, + [5470] = {.lex_state = 68, .external_lex_state = 9}, + [5471] = {.lex_state = 405, .external_lex_state = 5}, [5472] = {.lex_state = 48, .external_lex_state = 2}, [5473] = {.lex_state = 48, .external_lex_state = 2}, [5474] = {.lex_state = 59, .external_lex_state = 9}, - [5475] = {.lex_state = 68, .external_lex_state = 9}, + [5475] = {.lex_state = 48, .external_lex_state = 2}, [5476] = {.lex_state = 68, .external_lex_state = 9}, - [5477] = {.lex_state = 48, .external_lex_state = 2}, - [5478] = {.lex_state = 59, .external_lex_state = 9}, - [5479] = {.lex_state = 59, .external_lex_state = 9}, - [5480] = {.lex_state = 68, .external_lex_state = 9}, - [5481] = {.lex_state = 405, .external_lex_state = 6}, - [5482] = {.lex_state = 405, .external_lex_state = 5}, - [5483] = {.lex_state = 405, .external_lex_state = 5}, - [5484] = {.lex_state = 405, .external_lex_state = 5}, - [5485] = {.lex_state = 405, .external_lex_state = 5}, - [5486] = {.lex_state = 405, .external_lex_state = 5}, - [5487] = {.lex_state = 405, .external_lex_state = 5}, + [5477] = {.lex_state = 59, .external_lex_state = 9}, + [5478] = {.lex_state = 68, .external_lex_state = 9}, + [5479] = {.lex_state = 66, .external_lex_state = 2}, + [5480] = {.lex_state = 59, .external_lex_state = 9}, + [5481] = {.lex_state = 68, .external_lex_state = 9}, + [5482] = {.lex_state = 405, .external_lex_state = 2}, + [5483] = {.lex_state = 59, .external_lex_state = 9}, + [5484] = {.lex_state = 68, .external_lex_state = 9}, + [5485] = {.lex_state = 27, .external_lex_state = 2}, + [5486] = {.lex_state = 59, .external_lex_state = 9}, + [5487] = {.lex_state = 68, .external_lex_state = 9}, [5488] = {.lex_state = 59, .external_lex_state = 9}, [5489] = {.lex_state = 68, .external_lex_state = 9}, - [5490] = {.lex_state = 405, .external_lex_state = 5}, - [5491] = {.lex_state = 405, .external_lex_state = 2}, - [5492] = {.lex_state = 48, .external_lex_state = 2}, - [5493] = {.lex_state = 405, .external_lex_state = 5}, - [5494] = {.lex_state = 405, .external_lex_state = 5}, - [5495] = {.lex_state = 405, .external_lex_state = 5}, - [5496] = {.lex_state = 405, .external_lex_state = 5}, - [5497] = {.lex_state = 405, .external_lex_state = 5}, - [5498] = {.lex_state = 405, .external_lex_state = 5}, - [5499] = {.lex_state = 405, .external_lex_state = 5}, + [5490] = {.lex_state = 54, .external_lex_state = 2}, + [5491] = {.lex_state = 59, .external_lex_state = 9}, + [5492] = {.lex_state = 68, .external_lex_state = 9}, + [5493] = {.lex_state = 68, .external_lex_state = 9}, + [5494] = {.lex_state = 59, .external_lex_state = 9}, + [5495] = {.lex_state = 48, .external_lex_state = 2}, + [5496] = {.lex_state = 68, .external_lex_state = 9}, + [5497] = {.lex_state = 59, .external_lex_state = 9}, + [5498] = {.lex_state = 48, .external_lex_state = 2}, + [5499] = {.lex_state = 68, .external_lex_state = 9}, [5500] = {.lex_state = 405, .external_lex_state = 5}, - [5501] = {.lex_state = 405, .external_lex_state = 5}, - [5502] = {.lex_state = 48, .external_lex_state = 2}, + [5501] = {.lex_state = 2, .external_lex_state = 2}, + [5502] = {.lex_state = 84, .external_lex_state = 2}, [5503] = {.lex_state = 405, .external_lex_state = 5}, - [5504] = {.lex_state = 405, .external_lex_state = 5}, + [5504] = {.lex_state = 405, .external_lex_state = 2}, [5505] = {.lex_state = 48, .external_lex_state = 2}, - [5506] = {.lex_state = 405, .external_lex_state = 2}, - [5507] = {.lex_state = 405, .external_lex_state = 2}, - [5508] = {.lex_state = 405, .external_lex_state = 5}, - [5509] = {.lex_state = 84, .external_lex_state = 2}, - [5510] = {.lex_state = 48, .external_lex_state = 2}, - [5511] = {.lex_state = 48, .external_lex_state = 2}, - [5512] = {.lex_state = 27, .external_lex_state = 2}, - [5513] = {.lex_state = 27, .external_lex_state = 2}, - [5514] = {.lex_state = 27, .external_lex_state = 2}, - [5515] = {.lex_state = 50, .external_lex_state = 2}, - [5516] = {.lex_state = 405, .external_lex_state = 5}, - [5517] = {.lex_state = 59, .external_lex_state = 9}, - [5518] = {.lex_state = 68, .external_lex_state = 9}, + [5506] = {.lex_state = 48, .external_lex_state = 2}, + [5507] = {.lex_state = 48, .external_lex_state = 2}, + [5508] = {.lex_state = 48, .external_lex_state = 2}, + [5509] = {.lex_state = 27, .external_lex_state = 2}, + [5510] = {.lex_state = 27, .external_lex_state = 2}, + [5511] = {.lex_state = 27, .external_lex_state = 2}, + [5512] = {.lex_state = 48, .external_lex_state = 2}, + [5513] = {.lex_state = 50, .external_lex_state = 2}, + [5514] = {.lex_state = 405, .external_lex_state = 5}, + [5515] = {.lex_state = 405, .external_lex_state = 5}, + [5516] = {.lex_state = 405, .external_lex_state = 2}, + [5517] = {.lex_state = 66, .external_lex_state = 2}, + [5518] = {.lex_state = 59, .external_lex_state = 9}, [5519] = {.lex_state = 405, .external_lex_state = 5}, - [5520] = {.lex_state = 68, .external_lex_state = 9}, - [5521] = {.lex_state = 68, .external_lex_state = 9}, - [5522] = {.lex_state = 59, .external_lex_state = 9}, - [5523] = {.lex_state = 59, .external_lex_state = 9}, + [5520] = {.lex_state = 405, .external_lex_state = 5}, + [5521] = {.lex_state = 54, .external_lex_state = 2}, + [5522] = {.lex_state = 48, .external_lex_state = 2}, + [5523] = {.lex_state = 48, .external_lex_state = 2}, [5524] = {.lex_state = 405, .external_lex_state = 5}, - [5525] = {.lex_state = 405, .external_lex_state = 2}, - [5526] = {.lex_state = 59, .external_lex_state = 9}, + [5525] = {.lex_state = 48, .external_lex_state = 2}, + [5526] = {.lex_state = 405, .external_lex_state = 5}, [5527] = {.lex_state = 405, .external_lex_state = 5}, - [5528] = {.lex_state = 48, .external_lex_state = 2}, - [5529] = {.lex_state = 59, .external_lex_state = 9}, - [5530] = {.lex_state = 68, .external_lex_state = 9}, - [5531] = {.lex_state = 54, .external_lex_state = 2}, + [5528] = {.lex_state = 405, .external_lex_state = 5}, + [5529] = {.lex_state = 405, .external_lex_state = 5}, + [5530] = {.lex_state = 405, .external_lex_state = 5}, + [5531] = {.lex_state = 48, .external_lex_state = 2}, [5532] = {.lex_state = 405, .external_lex_state = 5}, - [5533] = {.lex_state = 405, .external_lex_state = 5}, - [5534] = {.lex_state = 48, .external_lex_state = 2}, - [5535] = {.lex_state = 48, .external_lex_state = 2}, - [5536] = {.lex_state = 48, .external_lex_state = 2}, - [5537] = {.lex_state = 48, .external_lex_state = 2}, - [5538] = {.lex_state = 405, .external_lex_state = 5}, - [5539] = {.lex_state = 405, .external_lex_state = 5}, - [5540] = {.lex_state = 405, .external_lex_state = 5}, - [5541] = {.lex_state = 405, .external_lex_state = 5}, - [5542] = {.lex_state = 59, .external_lex_state = 9}, - [5543] = {.lex_state = 68, .external_lex_state = 9}, + [5533] = {.lex_state = 59, .external_lex_state = 9}, + [5534] = {.lex_state = 68, .external_lex_state = 9}, + [5535] = {.lex_state = 405, .external_lex_state = 2}, + [5536] = {.lex_state = 405, .external_lex_state = 2}, + [5537] = {.lex_state = 49, .external_lex_state = 2}, + [5538] = {.lex_state = 405, .external_lex_state = 7}, + [5539] = {.lex_state = 27, .external_lex_state = 2}, + [5540] = {.lex_state = 405, .external_lex_state = 2}, + [5541] = {.lex_state = 405, .external_lex_state = 7}, + [5542] = {.lex_state = 84, .external_lex_state = 2}, + [5543] = {.lex_state = 405, .external_lex_state = 5}, [5544] = {.lex_state = 48, .external_lex_state = 2}, - [5545] = {.lex_state = 59, .external_lex_state = 9}, - [5546] = {.lex_state = 68, .external_lex_state = 9}, + [5545] = {.lex_state = 48, .external_lex_state = 2}, + [5546] = {.lex_state = 48, .external_lex_state = 2}, [5547] = {.lex_state = 68, .external_lex_state = 9}, - [5548] = {.lex_state = 48, .external_lex_state = 2}, - [5549] = {.lex_state = 59, .external_lex_state = 9}, - [5550] = {.lex_state = 68, .external_lex_state = 9}, - [5551] = {.lex_state = 405, .external_lex_state = 5}, - [5552] = {.lex_state = 405, .external_lex_state = 5}, - [5553] = {.lex_state = 405, .external_lex_state = 5}, - [5554] = {.lex_state = 59, .external_lex_state = 9}, - [5555] = {.lex_state = 68, .external_lex_state = 9}, - [5556] = {.lex_state = 48, .external_lex_state = 2}, + [5548] = {.lex_state = 405, .external_lex_state = 5}, + [5549] = {.lex_state = 405, .external_lex_state = 2}, + [5550] = {.lex_state = 48, .external_lex_state = 2}, + [5551] = {.lex_state = 68, .external_lex_state = 9}, + [5552] = {.lex_state = 59, .external_lex_state = 9}, + [5553] = {.lex_state = 48, .external_lex_state = 2}, + [5554] = {.lex_state = 48, .external_lex_state = 2}, + [5555] = {.lex_state = 405, .external_lex_state = 2}, + [5556] = {.lex_state = 405, .external_lex_state = 5}, [5557] = {.lex_state = 405, .external_lex_state = 2}, - [5558] = {.lex_state = 2, .external_lex_state = 2}, - [5559] = {.lex_state = 2, .external_lex_state = 2}, + [5558] = {.lex_state = 405, .external_lex_state = 2}, + [5559] = {.lex_state = 405, .external_lex_state = 5}, [5560] = {.lex_state = 405, .external_lex_state = 5}, - [5561] = {.lex_state = 405, .external_lex_state = 2}, - [5562] = {.lex_state = 48, .external_lex_state = 2}, - [5563] = {.lex_state = 405, .external_lex_state = 2}, - [5564] = {.lex_state = 59, .external_lex_state = 9}, - [5565] = {.lex_state = 68, .external_lex_state = 9}, - [5566] = {.lex_state = 68, .external_lex_state = 9}, - [5567] = {.lex_state = 59, .external_lex_state = 9}, - [5568] = {.lex_state = 59, .external_lex_state = 9}, + [5561] = {.lex_state = 405, .external_lex_state = 5}, + [5562] = {.lex_state = 405, .external_lex_state = 5}, + [5563] = {.lex_state = 405, .external_lex_state = 5}, + [5564] = {.lex_state = 405, .external_lex_state = 5}, + [5565] = {.lex_state = 405, .external_lex_state = 5}, + [5566] = {.lex_state = 405, .external_lex_state = 5}, + [5567] = {.lex_state = 405, .external_lex_state = 5}, + [5568] = {.lex_state = 405, .external_lex_state = 5}, [5569] = {.lex_state = 405, .external_lex_state = 5}, - [5570] = {.lex_state = 68, .external_lex_state = 9}, - [5571] = {.lex_state = 405, .external_lex_state = 7}, - [5572] = {.lex_state = 59, .external_lex_state = 9}, - [5573] = {.lex_state = 50, .external_lex_state = 2}, - [5574] = {.lex_state = 405, .external_lex_state = 5}, + [5570] = {.lex_state = 405, .external_lex_state = 2}, + [5571] = {.lex_state = 48, .external_lex_state = 2}, + [5572] = {.lex_state = 68, .external_lex_state = 9}, + [5573] = {.lex_state = 59, .external_lex_state = 9}, + [5574] = {.lex_state = 48, .external_lex_state = 2}, [5575] = {.lex_state = 405, .external_lex_state = 5}, - [5576] = {.lex_state = 405, .external_lex_state = 5}, + [5576] = {.lex_state = 48, .external_lex_state = 2}, [5577] = {.lex_state = 405, .external_lex_state = 5}, - [5578] = {.lex_state = 68, .external_lex_state = 9}, - [5579] = {.lex_state = 48, .external_lex_state = 2}, - [5580] = {.lex_state = 68, .external_lex_state = 9}, - [5581] = {.lex_state = 59, .external_lex_state = 9}, - [5582] = {.lex_state = 68, .external_lex_state = 9}, + [5578] = {.lex_state = 405, .external_lex_state = 5}, + [5579] = {.lex_state = 405, .external_lex_state = 5}, + [5580] = {.lex_state = 405, .external_lex_state = 5}, + [5581] = {.lex_state = 405, .external_lex_state = 5}, + [5582] = {.lex_state = 50, .external_lex_state = 2}, [5583] = {.lex_state = 48, .external_lex_state = 2}, - [5584] = {.lex_state = 59, .external_lex_state = 9}, - [5585] = {.lex_state = 68, .external_lex_state = 9}, - [5586] = {.lex_state = 59, .external_lex_state = 9}, - [5587] = {.lex_state = 68, .external_lex_state = 9}, - [5588] = {.lex_state = 59, .external_lex_state = 9}, + [5584] = {.lex_state = 405, .external_lex_state = 2}, + [5585] = {.lex_state = 48, .external_lex_state = 2}, + [5586] = {.lex_state = 2, .external_lex_state = 2}, + [5587] = {.lex_state = 84, .external_lex_state = 2}, + [5588] = {.lex_state = 48, .external_lex_state = 2}, [5589] = {.lex_state = 68, .external_lex_state = 9}, - [5590] = {.lex_state = 59, .external_lex_state = 9}, + [5590] = {.lex_state = 48, .external_lex_state = 2}, [5591] = {.lex_state = 59, .external_lex_state = 9}, - [5592] = {.lex_state = 68, .external_lex_state = 9}, - [5593] = {.lex_state = 48, .external_lex_state = 2}, - [5594] = {.lex_state = 48, .external_lex_state = 2}, - [5595] = {.lex_state = 48, .external_lex_state = 2}, - [5596] = {.lex_state = 48, .external_lex_state = 2}, + [5592] = {.lex_state = 48, .external_lex_state = 2}, + [5593] = {.lex_state = 405, .external_lex_state = 2}, + [5594] = {.lex_state = 405, .external_lex_state = 6}, + [5595] = {.lex_state = 59, .external_lex_state = 9}, + [5596] = {.lex_state = 68, .external_lex_state = 9}, [5597] = {.lex_state = 68, .external_lex_state = 9}, - [5598] = {.lex_state = 405, .external_lex_state = 5}, - [5599] = {.lex_state = 48, .external_lex_state = 2}, - [5600] = {.lex_state = 49, .external_lex_state = 2}, - [5601] = {.lex_state = 68, .external_lex_state = 9}, - [5602] = {.lex_state = 48, .external_lex_state = 2}, + [5598] = {.lex_state = 59, .external_lex_state = 9}, + [5599] = {.lex_state = 405, .external_lex_state = 2}, + [5600] = {.lex_state = 405, .external_lex_state = 2}, + [5601] = {.lex_state = 48, .external_lex_state = 2}, + [5602] = {.lex_state = 405, .external_lex_state = 5}, [5603] = {.lex_state = 405, .external_lex_state = 5}, - [5604] = {.lex_state = 405, .external_lex_state = 2}, - [5605] = {.lex_state = 59, .external_lex_state = 9}, - [5606] = {.lex_state = 405, .external_lex_state = 5}, - [5607] = {.lex_state = 2, .external_lex_state = 2}, - [5608] = {.lex_state = 405, .external_lex_state = 2}, - [5609] = {.lex_state = 66, .external_lex_state = 2}, - [5610] = {.lex_state = 405, .external_lex_state = 2}, - [5611] = {.lex_state = 48, .external_lex_state = 2}, - [5612] = {.lex_state = 54, .external_lex_state = 2}, - [5613] = {.lex_state = 405, .external_lex_state = 2}, - [5614] = {.lex_state = 405, .external_lex_state = 7}, - [5615] = {.lex_state = 405, .external_lex_state = 5}, - [5616] = {.lex_state = 48, .external_lex_state = 2}, - [5617] = {.lex_state = 27, .external_lex_state = 2}, - [5618] = {.lex_state = 405, .external_lex_state = 2}, - [5619] = {.lex_state = 405, .external_lex_state = 2}, + [5604] = {.lex_state = 48, .external_lex_state = 2}, + [5605] = {.lex_state = 405, .external_lex_state = 5}, + [5606] = {.lex_state = 48, .external_lex_state = 2}, + [5607] = {.lex_state = 405, .external_lex_state = 5}, + [5608] = {.lex_state = 405, .external_lex_state = 5}, + [5609] = {.lex_state = 48, .external_lex_state = 2}, + [5610] = {.lex_state = 48, .external_lex_state = 2}, + [5611] = {.lex_state = 24, .external_lex_state = 2}, + [5612] = {.lex_state = 405, .external_lex_state = 5}, + [5613] = {.lex_state = 2, .external_lex_state = 2}, + [5614] = {.lex_state = 405, .external_lex_state = 5}, + [5615] = {.lex_state = 405, .external_lex_state = 2}, + [5616] = {.lex_state = 405, .external_lex_state = 2}, + [5617] = {.lex_state = 48, .external_lex_state = 2}, + [5618] = {.lex_state = 405, .external_lex_state = 7}, + [5619] = {.lex_state = 68, .external_lex_state = 9}, [5620] = {.lex_state = 48, .external_lex_state = 2}, - [5621] = {.lex_state = 48, .external_lex_state = 2}, + [5621] = {.lex_state = 59, .external_lex_state = 9}, [5622] = {.lex_state = 405, .external_lex_state = 5}, [5623] = {.lex_state = 405, .external_lex_state = 2}, - [5624] = {.lex_state = 405, .external_lex_state = 5}, - [5625] = {.lex_state = 48, .external_lex_state = 2}, - [5626] = {.lex_state = 405, .external_lex_state = 7}, - [5627] = {.lex_state = 405, .external_lex_state = 5}, + [5624] = {.lex_state = 59, .external_lex_state = 9}, + [5625] = {.lex_state = 405, .external_lex_state = 5}, + [5626] = {.lex_state = 405, .external_lex_state = 5}, + [5627] = {.lex_state = 405, .external_lex_state = 2}, [5628] = {.lex_state = 405, .external_lex_state = 5}, [5629] = {.lex_state = 405, .external_lex_state = 5}, - [5630] = {.lex_state = 405, .external_lex_state = 5}, - [5631] = {.lex_state = 405, .external_lex_state = 5}, + [5630] = {.lex_state = 48, .external_lex_state = 2}, + [5631] = {.lex_state = 405, .external_lex_state = 2}, [5632] = {.lex_state = 48, .external_lex_state = 2}, - [5633] = {.lex_state = 405, .external_lex_state = 2}, - [5634] = {.lex_state = 84, .external_lex_state = 2}, - [5635] = {.lex_state = 405, .external_lex_state = 2}, + [5633] = {.lex_state = 405, .external_lex_state = 5}, + [5634] = {.lex_state = 405, .external_lex_state = 5}, + [5635] = {.lex_state = 405, .external_lex_state = 5}, [5636] = {.lex_state = 48, .external_lex_state = 2}, - [5637] = {.lex_state = 405, .external_lex_state = 2}, - [5638] = {.lex_state = 48, .external_lex_state = 2}, - [5639] = {.lex_state = 48, .external_lex_state = 2}, - [5640] = {.lex_state = 48, .external_lex_state = 2}, - [5641] = {.lex_state = 48, .external_lex_state = 2}, + [5637] = {.lex_state = 405, .external_lex_state = 5}, + [5638] = {.lex_state = 405, .external_lex_state = 5}, + [5639] = {.lex_state = 405, .external_lex_state = 5}, + [5640] = {.lex_state = 405, .external_lex_state = 2}, + [5641] = {.lex_state = 2, .external_lex_state = 2}, [5642] = {.lex_state = 405, .external_lex_state = 5}, [5643] = {.lex_state = 405, .external_lex_state = 5}, [5644] = {.lex_state = 48, .external_lex_state = 2}, - [5645] = {.lex_state = 405, .external_lex_state = 5}, - [5646] = {.lex_state = 405, .external_lex_state = 2}, - [5647] = {.lex_state = 27, .external_lex_state = 2}, - [5648] = {.lex_state = 27, .external_lex_state = 2}, + [5645] = {.lex_state = 68, .external_lex_state = 9}, + [5646] = {.lex_state = 405, .external_lex_state = 5}, + [5647] = {.lex_state = 405, .external_lex_state = 5}, + [5648] = {.lex_state = 405, .external_lex_state = 2}, [5649] = {.lex_state = 405, .external_lex_state = 2}, - [5650] = {.lex_state = 50, .external_lex_state = 5}, - [5651] = {.lex_state = 50, .external_lex_state = 5}, - [5652] = {.lex_state = 48, .external_lex_state = 2}, - [5653] = {.lex_state = 405, .external_lex_state = 2}, + [5650] = {.lex_state = 24, .external_lex_state = 2}, + [5651] = {.lex_state = 55, .external_lex_state = 2}, + [5652] = {.lex_state = 55, .external_lex_state = 2}, + [5653] = {.lex_state = 405, .external_lex_state = 5}, [5654] = {.lex_state = 405, .external_lex_state = 2}, - [5655] = {.lex_state = 48, .external_lex_state = 2}, - [5656] = {.lex_state = 405, .external_lex_state = 2}, - [5657] = {.lex_state = 50, .external_lex_state = 2}, + [5655] = {.lex_state = 405, .external_lex_state = 2}, + [5656] = {.lex_state = 405, .external_lex_state = 5}, + [5657] = {.lex_state = 405, .external_lex_state = 2}, [5658] = {.lex_state = 405, .external_lex_state = 5}, [5659] = {.lex_state = 405, .external_lex_state = 5}, - [5660] = {.lex_state = 405, .external_lex_state = 2}, - [5661] = {.lex_state = 405, .external_lex_state = 2}, - [5662] = {.lex_state = 405, .external_lex_state = 2}, - [5663] = {.lex_state = 48, .external_lex_state = 2}, - [5664] = {.lex_state = 24, .external_lex_state = 2}, - [5665] = {.lex_state = 405, .external_lex_state = 2}, - [5666] = {.lex_state = 50, .external_lex_state = 2}, + [5660] = {.lex_state = 405, .external_lex_state = 5}, + [5661] = {.lex_state = 405, .external_lex_state = 5}, + [5662] = {.lex_state = 405, .external_lex_state = 5}, + [5663] = {.lex_state = 405, .external_lex_state = 5}, + [5664] = {.lex_state = 405, .external_lex_state = 5}, + [5665] = {.lex_state = 405, .external_lex_state = 5}, + [5666] = {.lex_state = 405, .external_lex_state = 2}, [5667] = {.lex_state = 405, .external_lex_state = 2}, - [5668] = {.lex_state = 405, .external_lex_state = 2}, - [5669] = {.lex_state = 27, .external_lex_state = 2}, - [5670] = {.lex_state = 48, .external_lex_state = 2}, + [5668] = {.lex_state = 405, .external_lex_state = 5}, + [5669] = {.lex_state = 405, .external_lex_state = 5}, + [5670] = {.lex_state = 405, .external_lex_state = 5}, [5671] = {.lex_state = 405, .external_lex_state = 5}, - [5672] = {.lex_state = 405, .external_lex_state = 5}, + [5672] = {.lex_state = 405, .external_lex_state = 2}, [5673] = {.lex_state = 405, .external_lex_state = 2}, - [5674] = {.lex_state = 405, .external_lex_state = 2}, - [5675] = {.lex_state = 405, .external_lex_state = 2}, - [5676] = {.lex_state = 48, .external_lex_state = 2}, - [5677] = {.lex_state = 405, .external_lex_state = 5}, - [5678] = {.lex_state = 405, .external_lex_state = 5}, - [5679] = {.lex_state = 405, .external_lex_state = 5}, - [5680] = {.lex_state = 405, .external_lex_state = 2}, - [5681] = {.lex_state = 405, .external_lex_state = 5}, - [5682] = {.lex_state = 405, .external_lex_state = 2}, + [5674] = {.lex_state = 27, .external_lex_state = 2}, + [5675] = {.lex_state = 405, .external_lex_state = 5}, + [5676] = {.lex_state = 405, .external_lex_state = 2}, + [5677] = {.lex_state = 405, .external_lex_state = 2}, + [5678] = {.lex_state = 405, .external_lex_state = 2}, + [5679] = {.lex_state = 405, .external_lex_state = 2}, + [5680] = {.lex_state = 405, .external_lex_state = 5}, + [5681] = {.lex_state = 50, .external_lex_state = 5}, + [5682] = {.lex_state = 405, .external_lex_state = 5}, [5683] = {.lex_state = 405, .external_lex_state = 5}, [5684] = {.lex_state = 405, .external_lex_state = 5}, [5685] = {.lex_state = 405, .external_lex_state = 2}, - [5686] = {.lex_state = 48, .external_lex_state = 2}, - [5687] = {.lex_state = 75, .external_lex_state = 2}, - [5688] = {.lex_state = 405, .external_lex_state = 2}, - [5689] = {.lex_state = 405, .external_lex_state = 2}, - [5690] = {.lex_state = 405, .external_lex_state = 2}, - [5691] = {.lex_state = 75, .external_lex_state = 2}, - [5692] = {.lex_state = 405, .external_lex_state = 2}, + [5686] = {.lex_state = 405, .external_lex_state = 5}, + [5687] = {.lex_state = 405, .external_lex_state = 5}, + [5688] = {.lex_state = 405, .external_lex_state = 5}, + [5689] = {.lex_state = 405, .external_lex_state = 8}, + [5690] = {.lex_state = 48, .external_lex_state = 2}, + [5691] = {.lex_state = 405, .external_lex_state = 2}, + [5692] = {.lex_state = 50, .external_lex_state = 5}, [5693] = {.lex_state = 405, .external_lex_state = 2}, - [5694] = {.lex_state = 405, .external_lex_state = 2}, + [5694] = {.lex_state = 405, .external_lex_state = 5}, [5695] = {.lex_state = 405, .external_lex_state = 2}, - [5696] = {.lex_state = 59, .external_lex_state = 9}, - [5697] = {.lex_state = 68, .external_lex_state = 9}, - [5698] = {.lex_state = 84, .external_lex_state = 2}, - [5699] = {.lex_state = 405, .external_lex_state = 2}, - [5700] = {.lex_state = 405, .external_lex_state = 2}, + [5696] = {.lex_state = 48, .external_lex_state = 2}, + [5697] = {.lex_state = 405, .external_lex_state = 2}, + [5698] = {.lex_state = 405, .external_lex_state = 5}, + [5699] = {.lex_state = 405, .external_lex_state = 5}, + [5700] = {.lex_state = 405, .external_lex_state = 5}, [5701] = {.lex_state = 405, .external_lex_state = 5}, - [5702] = {.lex_state = 405, .external_lex_state = 5}, - [5703] = {.lex_state = 50, .external_lex_state = 2}, - [5704] = {.lex_state = 50, .external_lex_state = 2}, + [5702] = {.lex_state = 405, .external_lex_state = 2}, + [5703] = {.lex_state = 405, .external_lex_state = 2}, + [5704] = {.lex_state = 89, .external_lex_state = 2}, [5705] = {.lex_state = 405, .external_lex_state = 5}, [5706] = {.lex_state = 405, .external_lex_state = 5}, - [5707] = {.lex_state = 405, .external_lex_state = 5}, + [5707] = {.lex_state = 405, .external_lex_state = 2}, [5708] = {.lex_state = 405, .external_lex_state = 5}, [5709] = {.lex_state = 405, .external_lex_state = 5}, - [5710] = {.lex_state = 405, .external_lex_state = 2}, - [5711] = {.lex_state = 48, .external_lex_state = 2}, - [5712] = {.lex_state = 405, .external_lex_state = 2}, + [5710] = {.lex_state = 405, .external_lex_state = 5}, + [5711] = {.lex_state = 24, .external_lex_state = 2}, + [5712] = {.lex_state = 405, .external_lex_state = 5}, [5713] = {.lex_state = 405, .external_lex_state = 5}, - [5714] = {.lex_state = 405, .external_lex_state = 2}, - [5715] = {.lex_state = 24, .external_lex_state = 2}, - [5716] = {.lex_state = 48, .external_lex_state = 2}, - [5717] = {.lex_state = 405, .external_lex_state = 2}, - [5718] = {.lex_state = 405, .external_lex_state = 5}, - [5719] = {.lex_state = 48, .external_lex_state = 2}, - [5720] = {.lex_state = 405, .external_lex_state = 2}, + [5714] = {.lex_state = 50, .external_lex_state = 2}, + [5715] = {.lex_state = 405, .external_lex_state = 2}, + [5716] = {.lex_state = 405, .external_lex_state = 2}, + [5717] = {.lex_state = 405, .external_lex_state = 5}, + [5718] = {.lex_state = 405, .external_lex_state = 2}, + [5719] = {.lex_state = 27, .external_lex_state = 2}, + [5720] = {.lex_state = 48, .external_lex_state = 2}, [5721] = {.lex_state = 405, .external_lex_state = 2}, - [5722] = {.lex_state = 405, .external_lex_state = 2}, - [5723] = {.lex_state = 405, .external_lex_state = 5}, - [5724] = {.lex_state = 405, .external_lex_state = 2}, + [5722] = {.lex_state = 405, .external_lex_state = 5}, + [5723] = {.lex_state = 50, .external_lex_state = 2}, + [5724] = {.lex_state = 405, .external_lex_state = 5}, [5725] = {.lex_state = 405, .external_lex_state = 2}, - [5726] = {.lex_state = 27, .external_lex_state = 2}, - [5727] = {.lex_state = 405, .external_lex_state = 2}, - [5728] = {.lex_state = 405, .external_lex_state = 2}, - [5729] = {.lex_state = 405, .external_lex_state = 2}, - [5730] = {.lex_state = 50, .external_lex_state = 2}, + [5726] = {.lex_state = 405, .external_lex_state = 5}, + [5727] = {.lex_state = 50, .external_lex_state = 2}, + [5728] = {.lex_state = 24, .external_lex_state = 2}, + [5729] = {.lex_state = 405, .external_lex_state = 5}, + [5730] = {.lex_state = 27, .external_lex_state = 2}, [5731] = {.lex_state = 405, .external_lex_state = 5}, - [5732] = {.lex_state = 24, .external_lex_state = 2}, - [5733] = {.lex_state = 48, .external_lex_state = 2}, - [5734] = {.lex_state = 405, .external_lex_state = 2}, - [5735] = {.lex_state = 405, .external_lex_state = 2}, - [5736] = {.lex_state = 48, .external_lex_state = 2}, - [5737] = {.lex_state = 405, .external_lex_state = 5}, - [5738] = {.lex_state = 48, .external_lex_state = 2}, - [5739] = {.lex_state = 75, .external_lex_state = 2}, - [5740] = {.lex_state = 24, .external_lex_state = 2}, - [5741] = {.lex_state = 405, .external_lex_state = 2}, - [5742] = {.lex_state = 405, .external_lex_state = 2}, + [5732] = {.lex_state = 405, .external_lex_state = 2}, + [5733] = {.lex_state = 405, .external_lex_state = 2}, + [5734] = {.lex_state = 405, .external_lex_state = 5}, + [5735] = {.lex_state = 405, .external_lex_state = 5}, + [5736] = {.lex_state = 405, .external_lex_state = 2}, + [5737] = {.lex_state = 48, .external_lex_state = 2}, + [5738] = {.lex_state = 405, .external_lex_state = 5}, + [5739] = {.lex_state = 48, .external_lex_state = 2}, + [5740] = {.lex_state = 48, .external_lex_state = 2}, + [5741] = {.lex_state = 405, .external_lex_state = 5}, + [5742] = {.lex_state = 48, .external_lex_state = 2}, [5743] = {.lex_state = 405, .external_lex_state = 2}, - [5744] = {.lex_state = 49, .external_lex_state = 2}, - [5745] = {.lex_state = 405, .external_lex_state = 5}, - [5746] = {.lex_state = 89, .external_lex_state = 2}, - [5747] = {.lex_state = 89, .external_lex_state = 2}, - [5748] = {.lex_state = 405, .external_lex_state = 2}, - [5749] = {.lex_state = 405, .external_lex_state = 2}, - [5750] = {.lex_state = 405, .external_lex_state = 5}, + [5744] = {.lex_state = 27, .external_lex_state = 2}, + [5745] = {.lex_state = 405, .external_lex_state = 2}, + [5746] = {.lex_state = 405, .external_lex_state = 5}, + [5747] = {.lex_state = 405, .external_lex_state = 2}, + [5748] = {.lex_state = 48, .external_lex_state = 2}, + [5749] = {.lex_state = 405, .external_lex_state = 5}, + [5750] = {.lex_state = 48, .external_lex_state = 2}, [5751] = {.lex_state = 405, .external_lex_state = 5}, - [5752] = {.lex_state = 405, .external_lex_state = 5}, - [5753] = {.lex_state = 405, .external_lex_state = 2}, - [5754] = {.lex_state = 50, .external_lex_state = 2}, - [5755] = {.lex_state = 405, .external_lex_state = 2}, - [5756] = {.lex_state = 405, .external_lex_state = 5}, + [5752] = {.lex_state = 48, .external_lex_state = 2}, + [5753] = {.lex_state = 48, .external_lex_state = 2}, + [5754] = {.lex_state = 405, .external_lex_state = 5}, + [5755] = {.lex_state = 405, .external_lex_state = 5}, + [5756] = {.lex_state = 89, .external_lex_state = 2}, [5757] = {.lex_state = 405, .external_lex_state = 5}, - [5758] = {.lex_state = 24, .external_lex_state = 2}, - [5759] = {.lex_state = 50, .external_lex_state = 2}, + [5758] = {.lex_state = 27, .external_lex_state = 2}, + [5759] = {.lex_state = 405, .external_lex_state = 5}, [5760] = {.lex_state = 405, .external_lex_state = 5}, - [5761] = {.lex_state = 50, .external_lex_state = 2}, + [5761] = {.lex_state = 405, .external_lex_state = 5}, [5762] = {.lex_state = 405, .external_lex_state = 5}, [5763] = {.lex_state = 50, .external_lex_state = 2}, - [5764] = {.lex_state = 49, .external_lex_state = 2}, + [5764] = {.lex_state = 405, .external_lex_state = 2}, [5765] = {.lex_state = 50, .external_lex_state = 2}, - [5766] = {.lex_state = 405, .external_lex_state = 5}, - [5767] = {.lex_state = 405, .external_lex_state = 2}, - [5768] = {.lex_state = 405, .external_lex_state = 2}, - [5769] = {.lex_state = 405, .external_lex_state = 2}, + [5766] = {.lex_state = 48, .external_lex_state = 2}, + [5767] = {.lex_state = 50, .external_lex_state = 2}, + [5768] = {.lex_state = 405, .external_lex_state = 5}, + [5769] = {.lex_state = 50, .external_lex_state = 2}, [5770] = {.lex_state = 405, .external_lex_state = 5}, [5771] = {.lex_state = 405, .external_lex_state = 2}, - [5772] = {.lex_state = 405, .external_lex_state = 5}, - [5773] = {.lex_state = 405, .external_lex_state = 5}, - [5774] = {.lex_state = 405, .external_lex_state = 2}, + [5772] = {.lex_state = 405, .external_lex_state = 2}, + [5773] = {.lex_state = 27, .external_lex_state = 2}, + [5774] = {.lex_state = 405, .external_lex_state = 5}, [5775] = {.lex_state = 405, .external_lex_state = 5}, - [5776] = {.lex_state = 405, .external_lex_state = 2}, + [5776] = {.lex_state = 55, .external_lex_state = 2}, [5777] = {.lex_state = 405, .external_lex_state = 5}, - [5778] = {.lex_state = 405, .external_lex_state = 5}, - [5779] = {.lex_state = 405, .external_lex_state = 5}, - [5780] = {.lex_state = 405, .external_lex_state = 5}, + [5778] = {.lex_state = 405, .external_lex_state = 2}, + [5779] = {.lex_state = 27, .external_lex_state = 2}, + [5780] = {.lex_state = 405, .external_lex_state = 2}, [5781] = {.lex_state = 405, .external_lex_state = 5}, - [5782] = {.lex_state = 405, .external_lex_state = 5}, + [5782] = {.lex_state = 55, .external_lex_state = 2}, [5783] = {.lex_state = 405, .external_lex_state = 5}, [5784] = {.lex_state = 405, .external_lex_state = 5}, - [5785] = {.lex_state = 89, .external_lex_state = 2}, + [5785] = {.lex_state = 405, .external_lex_state = 2}, [5786] = {.lex_state = 405, .external_lex_state = 5}, - [5787] = {.lex_state = 405, .external_lex_state = 5}, - [5788] = {.lex_state = 405, .external_lex_state = 5}, - [5789] = {.lex_state = 405, .external_lex_state = 5}, + [5787] = {.lex_state = 405, .external_lex_state = 2}, + [5788] = {.lex_state = 24, .external_lex_state = 2}, + [5789] = {.lex_state = 405, .external_lex_state = 2}, [5790] = {.lex_state = 405, .external_lex_state = 5}, [5791] = {.lex_state = 405, .external_lex_state = 5}, [5792] = {.lex_state = 405, .external_lex_state = 2}, - [5793] = {.lex_state = 405, .external_lex_state = 5}, - [5794] = {.lex_state = 405, .external_lex_state = 2}, + [5793] = {.lex_state = 50, .external_lex_state = 2}, + [5794] = {.lex_state = 24, .external_lex_state = 2}, [5795] = {.lex_state = 405, .external_lex_state = 2}, - [5796] = {.lex_state = 405, .external_lex_state = 5}, - [5797] = {.lex_state = 405, .external_lex_state = 2}, + [5796] = {.lex_state = 48, .external_lex_state = 2}, + [5797] = {.lex_state = 27, .external_lex_state = 2}, [5798] = {.lex_state = 405, .external_lex_state = 5}, [5799] = {.lex_state = 50, .external_lex_state = 2}, - [5800] = {.lex_state = 405, .external_lex_state = 5}, - [5801] = {.lex_state = 24, .external_lex_state = 2}, + [5800] = {.lex_state = 27, .external_lex_state = 2}, + [5801] = {.lex_state = 405, .external_lex_state = 5}, [5802] = {.lex_state = 405, .external_lex_state = 5}, - [5803] = {.lex_state = 405, .external_lex_state = 2}, + [5803] = {.lex_state = 405, .external_lex_state = 5}, [5804] = {.lex_state = 405, .external_lex_state = 5}, - [5805] = {.lex_state = 405, .external_lex_state = 2}, + [5805] = {.lex_state = 405, .external_lex_state = 5}, [5806] = {.lex_state = 405, .external_lex_state = 5}, [5807] = {.lex_state = 405, .external_lex_state = 5}, [5808] = {.lex_state = 405, .external_lex_state = 5}, [5809] = {.lex_state = 405, .external_lex_state = 5}, [5810] = {.lex_state = 405, .external_lex_state = 5}, - [5811] = {.lex_state = 405, .external_lex_state = 5}, - [5812] = {.lex_state = 405, .external_lex_state = 5}, - [5813] = {.lex_state = 405, .external_lex_state = 5}, - [5814] = {.lex_state = 405, .external_lex_state = 5}, - [5815] = {.lex_state = 405, .external_lex_state = 5}, - [5816] = {.lex_state = 405, .external_lex_state = 5}, - [5817] = {.lex_state = 405, .external_lex_state = 5}, - [5818] = {.lex_state = 405, .external_lex_state = 5}, - [5819] = {.lex_state = 405, .external_lex_state = 5}, - [5820] = {.lex_state = 405, .external_lex_state = 5}, - [5821] = {.lex_state = 405, .external_lex_state = 5}, + [5811] = {.lex_state = 27, .external_lex_state = 2}, + [5812] = {.lex_state = 27, .external_lex_state = 2}, + [5813] = {.lex_state = 48, .external_lex_state = 2}, + [5814] = {.lex_state = 27, .external_lex_state = 2}, + [5815] = {.lex_state = 405, .external_lex_state = 2}, + [5816] = {.lex_state = 405, .external_lex_state = 2}, + [5817] = {.lex_state = 48, .external_lex_state = 2}, + [5818] = {.lex_state = 405, .external_lex_state = 2}, + [5819] = {.lex_state = 50, .external_lex_state = 2}, + [5820] = {.lex_state = 75, .external_lex_state = 2}, + [5821] = {.lex_state = 50, .external_lex_state = 2}, [5822] = {.lex_state = 405, .external_lex_state = 5}, [5823] = {.lex_state = 405, .external_lex_state = 5}, - [5824] = {.lex_state = 405, .external_lex_state = 5}, - [5825] = {.lex_state = 405, .external_lex_state = 5}, + [5824] = {.lex_state = 50, .external_lex_state = 2}, + [5825] = {.lex_state = 50, .external_lex_state = 2}, [5826] = {.lex_state = 405, .external_lex_state = 5}, [5827] = {.lex_state = 405, .external_lex_state = 5}, - [5828] = {.lex_state = 405, .external_lex_state = 5}, + [5828] = {.lex_state = 405, .external_lex_state = 2}, [5829] = {.lex_state = 405, .external_lex_state = 5}, - [5830] = {.lex_state = 50, .external_lex_state = 2}, + [5830] = {.lex_state = 405, .external_lex_state = 5}, [5831] = {.lex_state = 405, .external_lex_state = 5}, [5832] = {.lex_state = 405, .external_lex_state = 5}, - [5833] = {.lex_state = 405, .external_lex_state = 5}, + [5833] = {.lex_state = 405, .external_lex_state = 2}, [5834] = {.lex_state = 405, .external_lex_state = 5}, [5835] = {.lex_state = 405, .external_lex_state = 5}, [5836] = {.lex_state = 405, .external_lex_state = 5}, [5837] = {.lex_state = 405, .external_lex_state = 5}, [5838] = {.lex_state = 405, .external_lex_state = 5}, [5839] = {.lex_state = 405, .external_lex_state = 5}, - [5840] = {.lex_state = 405, .external_lex_state = 5}, - [5841] = {.lex_state = 50, .external_lex_state = 5}, + [5840] = {.lex_state = 405, .external_lex_state = 2}, + [5841] = {.lex_state = 405, .external_lex_state = 5}, [5842] = {.lex_state = 405, .external_lex_state = 2}, [5843] = {.lex_state = 405, .external_lex_state = 5}, - [5844] = {.lex_state = 405, .external_lex_state = 5}, + [5844] = {.lex_state = 405, .external_lex_state = 2}, [5845] = {.lex_state = 405, .external_lex_state = 5}, - [5846] = {.lex_state = 50, .external_lex_state = 5}, - [5847] = {.lex_state = 50, .external_lex_state = 5}, - [5848] = {.lex_state = 405, .external_lex_state = 5}, - [5849] = {.lex_state = 50, .external_lex_state = 5}, - [5850] = {.lex_state = 405, .external_lex_state = 5}, - [5851] = {.lex_state = 405, .external_lex_state = 5}, + [5846] = {.lex_state = 405, .external_lex_state = 2}, + [5847] = {.lex_state = 405, .external_lex_state = 5}, + [5848] = {.lex_state = 405, .external_lex_state = 2}, + [5849] = {.lex_state = 405, .external_lex_state = 2}, + [5850] = {.lex_state = 50, .external_lex_state = 5}, + [5851] = {.lex_state = 50, .external_lex_state = 5}, [5852] = {.lex_state = 405, .external_lex_state = 5}, [5853] = {.lex_state = 405, .external_lex_state = 5}, [5854] = {.lex_state = 405, .external_lex_state = 5}, [5855] = {.lex_state = 405, .external_lex_state = 2}, [5856] = {.lex_state = 405, .external_lex_state = 5}, - [5857] = {.lex_state = 48, .external_lex_state = 2}, - [5858] = {.lex_state = 405, .external_lex_state = 5}, + [5857] = {.lex_state = 405, .external_lex_state = 5}, + [5858] = {.lex_state = 405, .external_lex_state = 2}, [5859] = {.lex_state = 405, .external_lex_state = 5}, - [5860] = {.lex_state = 405, .external_lex_state = 5}, + [5860] = {.lex_state = 405, .external_lex_state = 2}, [5861] = {.lex_state = 405, .external_lex_state = 5}, [5862] = {.lex_state = 405, .external_lex_state = 5}, [5863] = {.lex_state = 405, .external_lex_state = 5}, [5864] = {.lex_state = 405, .external_lex_state = 5}, [5865] = {.lex_state = 405, .external_lex_state = 5}, - [5866] = {.lex_state = 405, .external_lex_state = 5}, + [5866] = {.lex_state = 27, .external_lex_state = 2}, [5867] = {.lex_state = 405, .external_lex_state = 5}, - [5868] = {.lex_state = 405, .external_lex_state = 5}, - [5869] = {.lex_state = 405, .external_lex_state = 5}, + [5868] = {.lex_state = 27, .external_lex_state = 2}, + [5869] = {.lex_state = 405, .external_lex_state = 2}, [5870] = {.lex_state = 405, .external_lex_state = 5}, - [5871] = {.lex_state = 27, .external_lex_state = 2}, + [5871] = {.lex_state = 405, .external_lex_state = 5}, [5872] = {.lex_state = 405, .external_lex_state = 5}, [5873] = {.lex_state = 405, .external_lex_state = 5}, - [5874] = {.lex_state = 405, .external_lex_state = 5}, + [5874] = {.lex_state = 405, .external_lex_state = 2}, [5875] = {.lex_state = 405, .external_lex_state = 5}, [5876] = {.lex_state = 405, .external_lex_state = 5}, [5877] = {.lex_state = 405, .external_lex_state = 5}, [5878] = {.lex_state = 405, .external_lex_state = 5}, [5879] = {.lex_state = 405, .external_lex_state = 5}, - [5880] = {.lex_state = 405, .external_lex_state = 2}, - [5881] = {.lex_state = 405, .external_lex_state = 2}, + [5880] = {.lex_state = 405, .external_lex_state = 5}, + [5881] = {.lex_state = 405, .external_lex_state = 5}, [5882] = {.lex_state = 405, .external_lex_state = 5}, [5883] = {.lex_state = 405, .external_lex_state = 2}, - [5884] = {.lex_state = 405, .external_lex_state = 5}, - [5885] = {.lex_state = 405, .external_lex_state = 5}, + [5884] = {.lex_state = 49, .external_lex_state = 2}, + [5885] = {.lex_state = 405, .external_lex_state = 2}, [5886] = {.lex_state = 405, .external_lex_state = 5}, - [5887] = {.lex_state = 405, .external_lex_state = 5}, + [5887] = {.lex_state = 405, .external_lex_state = 2}, [5888] = {.lex_state = 405, .external_lex_state = 5}, - [5889] = {.lex_state = 405, .external_lex_state = 5}, - [5890] = {.lex_state = 405, .external_lex_state = 5}, + [5889] = {.lex_state = 84, .external_lex_state = 2}, + [5890] = {.lex_state = 405, .external_lex_state = 2}, [5891] = {.lex_state = 405, .external_lex_state = 5}, - [5892] = {.lex_state = 405, .external_lex_state = 5}, + [5892] = {.lex_state = 405, .external_lex_state = 2}, [5893] = {.lex_state = 405, .external_lex_state = 5}, - [5894] = {.lex_state = 405, .external_lex_state = 5}, + [5894] = {.lex_state = 405, .external_lex_state = 2}, [5895] = {.lex_state = 405, .external_lex_state = 5}, [5896] = {.lex_state = 405, .external_lex_state = 2}, [5897] = {.lex_state = 405, .external_lex_state = 5}, [5898] = {.lex_state = 405, .external_lex_state = 5}, - [5899] = {.lex_state = 405, .external_lex_state = 5}, - [5900] = {.lex_state = 405, .external_lex_state = 5}, - [5901] = {.lex_state = 405, .external_lex_state = 5}, - [5902] = {.lex_state = 405, .external_lex_state = 5}, + [5899] = {.lex_state = 405, .external_lex_state = 2}, + [5900] = {.lex_state = 405, .external_lex_state = 2}, + [5901] = {.lex_state = 48, .external_lex_state = 2}, + [5902] = {.lex_state = 89, .external_lex_state = 2}, [5903] = {.lex_state = 405, .external_lex_state = 5}, [5904] = {.lex_state = 405, .external_lex_state = 5}, - [5905] = {.lex_state = 405, .external_lex_state = 5}, - [5906] = {.lex_state = 2, .external_lex_state = 2}, - [5907] = {.lex_state = 405, .external_lex_state = 5}, - [5908] = {.lex_state = 405, .external_lex_state = 5}, - [5909] = {.lex_state = 405, .external_lex_state = 5}, + [5905] = {.lex_state = 48, .external_lex_state = 2}, + [5906] = {.lex_state = 405, .external_lex_state = 5}, + [5907] = {.lex_state = 48, .external_lex_state = 2}, + [5908] = {.lex_state = 2, .external_lex_state = 2}, + [5909] = {.lex_state = 27, .external_lex_state = 2}, [5910] = {.lex_state = 405, .external_lex_state = 5}, [5911] = {.lex_state = 405, .external_lex_state = 5}, - [5912] = {.lex_state = 405, .external_lex_state = 5}, - [5913] = {.lex_state = 405, .external_lex_state = 5}, - [5914] = {.lex_state = 405, .external_lex_state = 5}, - [5915] = {.lex_state = 405, .external_lex_state = 5}, - [5916] = {.lex_state = 405, .external_lex_state = 5}, + [5912] = {.lex_state = 405, .external_lex_state = 2}, + [5913] = {.lex_state = 24, .external_lex_state = 2}, + [5914] = {.lex_state = 84, .external_lex_state = 2}, + [5915] = {.lex_state = 50, .external_lex_state = 2}, + [5916] = {.lex_state = 75, .external_lex_state = 2}, [5917] = {.lex_state = 405, .external_lex_state = 5}, [5918] = {.lex_state = 405, .external_lex_state = 5}, [5919] = {.lex_state = 405, .external_lex_state = 5}, [5920] = {.lex_state = 405, .external_lex_state = 5}, [5921] = {.lex_state = 405, .external_lex_state = 5}, - [5922] = {.lex_state = 405, .external_lex_state = 5}, - [5923] = {.lex_state = 405, .external_lex_state = 5}, + [5922] = {.lex_state = 48, .external_lex_state = 2}, + [5923] = {.lex_state = 50, .external_lex_state = 2}, [5924] = {.lex_state = 405, .external_lex_state = 5}, - [5925] = {.lex_state = 405, .external_lex_state = 5}, + [5925] = {.lex_state = 405, .external_lex_state = 2}, [5926] = {.lex_state = 405, .external_lex_state = 5}, - [5927] = {.lex_state = 89, .external_lex_state = 2}, + [5927] = {.lex_state = 405, .external_lex_state = 5}, [5928] = {.lex_state = 405, .external_lex_state = 5}, [5929] = {.lex_state = 405, .external_lex_state = 5}, - [5930] = {.lex_state = 48, .external_lex_state = 2}, + [5930] = {.lex_state = 405, .external_lex_state = 5}, [5931] = {.lex_state = 405, .external_lex_state = 5}, - [5932] = {.lex_state = 405, .external_lex_state = 5}, - [5933] = {.lex_state = 405, .external_lex_state = 5}, - [5934] = {.lex_state = 50, .external_lex_state = 2}, - [5935] = {.lex_state = 24, .external_lex_state = 2}, - [5936] = {.lex_state = 405, .external_lex_state = 5}, + [5932] = {.lex_state = 405, .external_lex_state = 2}, + [5933] = {.lex_state = 48, .external_lex_state = 2}, + [5934] = {.lex_state = 405, .external_lex_state = 5}, + [5935] = {.lex_state = 50, .external_lex_state = 5}, + [5936] = {.lex_state = 50, .external_lex_state = 5}, [5937] = {.lex_state = 405, .external_lex_state = 5}, [5938] = {.lex_state = 405, .external_lex_state = 5}, - [5939] = {.lex_state = 405, .external_lex_state = 5}, - [5940] = {.lex_state = 24, .external_lex_state = 2}, - [5941] = {.lex_state = 405, .external_lex_state = 2}, - [5942] = {.lex_state = 405, .external_lex_state = 5}, - [5943] = {.lex_state = 405, .external_lex_state = 5}, - [5944] = {.lex_state = 405, .external_lex_state = 2}, - [5945] = {.lex_state = 405, .external_lex_state = 5}, + [5939] = {.lex_state = 405, .external_lex_state = 2}, + [5940] = {.lex_state = 405, .external_lex_state = 5}, + [5941] = {.lex_state = 405, .external_lex_state = 5}, + [5942] = {.lex_state = 405, .external_lex_state = 2}, + [5943] = {.lex_state = 50, .external_lex_state = 2}, + [5944] = {.lex_state = 24, .external_lex_state = 2}, + [5945] = {.lex_state = 405, .external_lex_state = 2}, [5946] = {.lex_state = 405, .external_lex_state = 5}, [5947] = {.lex_state = 405, .external_lex_state = 5}, - [5948] = {.lex_state = 405, .external_lex_state = 5}, + [5948] = {.lex_state = 405, .external_lex_state = 2}, [5949] = {.lex_state = 405, .external_lex_state = 5}, [5950] = {.lex_state = 405, .external_lex_state = 5}, [5951] = {.lex_state = 405, .external_lex_state = 5}, @@ -28091,186 +28155,186 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5954] = {.lex_state = 405, .external_lex_state = 5}, [5955] = {.lex_state = 405, .external_lex_state = 5}, [5956] = {.lex_state = 405, .external_lex_state = 2}, - [5957] = {.lex_state = 27, .external_lex_state = 2}, + [5957] = {.lex_state = 405, .external_lex_state = 2}, [5958] = {.lex_state = 405, .external_lex_state = 5}, - [5959] = {.lex_state = 27, .external_lex_state = 2}, + [5959] = {.lex_state = 405, .external_lex_state = 5}, [5960] = {.lex_state = 405, .external_lex_state = 5}, [5961] = {.lex_state = 405, .external_lex_state = 5}, - [5962] = {.lex_state = 27, .external_lex_state = 2}, - [5963] = {.lex_state = 27, .external_lex_state = 2}, + [5962] = {.lex_state = 405, .external_lex_state = 5}, + [5963] = {.lex_state = 405, .external_lex_state = 5}, [5964] = {.lex_state = 405, .external_lex_state = 5}, [5965] = {.lex_state = 405, .external_lex_state = 5}, - [5966] = {.lex_state = 405, .external_lex_state = 2}, - [5967] = {.lex_state = 405, .external_lex_state = 2}, + [5966] = {.lex_state = 27, .external_lex_state = 2}, + [5967] = {.lex_state = 405, .external_lex_state = 5}, [5968] = {.lex_state = 405, .external_lex_state = 5}, [5969] = {.lex_state = 405, .external_lex_state = 5}, - [5970] = {.lex_state = 24, .external_lex_state = 2}, - [5971] = {.lex_state = 405, .external_lex_state = 5}, - [5972] = {.lex_state = 55, .external_lex_state = 2}, + [5970] = {.lex_state = 405, .external_lex_state = 2}, + [5971] = {.lex_state = 405, .external_lex_state = 2}, + [5972] = {.lex_state = 405, .external_lex_state = 5}, [5973] = {.lex_state = 405, .external_lex_state = 5}, - [5974] = {.lex_state = 55, .external_lex_state = 2}, - [5975] = {.lex_state = 405, .external_lex_state = 2}, + [5974] = {.lex_state = 405, .external_lex_state = 5}, + [5975] = {.lex_state = 27, .external_lex_state = 2}, [5976] = {.lex_state = 405, .external_lex_state = 5}, - [5977] = {.lex_state = 48, .external_lex_state = 2}, + [5977] = {.lex_state = 405, .external_lex_state = 5}, [5978] = {.lex_state = 405, .external_lex_state = 5}, [5979] = {.lex_state = 405, .external_lex_state = 5}, [5980] = {.lex_state = 405, .external_lex_state = 5}, - [5981] = {.lex_state = 405, .external_lex_state = 5}, + [5981] = {.lex_state = 48, .external_lex_state = 2}, [5982] = {.lex_state = 405, .external_lex_state = 5}, [5983] = {.lex_state = 405, .external_lex_state = 5}, - [5984] = {.lex_state = 405, .external_lex_state = 2}, - [5985] = {.lex_state = 27, .external_lex_state = 2}, + [5984] = {.lex_state = 405, .external_lex_state = 5}, + [5985] = {.lex_state = 405, .external_lex_state = 5}, [5986] = {.lex_state = 27, .external_lex_state = 2}, - [5987] = {.lex_state = 27, .external_lex_state = 2}, + [5987] = {.lex_state = 405, .external_lex_state = 5}, [5988] = {.lex_state = 405, .external_lex_state = 2}, - [5989] = {.lex_state = 405, .external_lex_state = 2}, + [5989] = {.lex_state = 405, .external_lex_state = 5}, [5990] = {.lex_state = 27, .external_lex_state = 2}, - [5991] = {.lex_state = 27, .external_lex_state = 2}, + [5991] = {.lex_state = 405, .external_lex_state = 5}, [5992] = {.lex_state = 405, .external_lex_state = 5}, [5993] = {.lex_state = 405, .external_lex_state = 5}, - [5994] = {.lex_state = 27, .external_lex_state = 2}, - [5995] = {.lex_state = 27, .external_lex_state = 2}, - [5996] = {.lex_state = 27, .external_lex_state = 2}, + [5994] = {.lex_state = 405, .external_lex_state = 5}, + [5995] = {.lex_state = 405, .external_lex_state = 2}, + [5996] = {.lex_state = 405, .external_lex_state = 5}, [5997] = {.lex_state = 405, .external_lex_state = 5}, - [5998] = {.lex_state = 405, .external_lex_state = 5}, + [5998] = {.lex_state = 405, .external_lex_state = 2}, [5999] = {.lex_state = 405, .external_lex_state = 5}, [6000] = {.lex_state = 405, .external_lex_state = 5}, - [6001] = {.lex_state = 405, .external_lex_state = 5}, - [6002] = {.lex_state = 405, .external_lex_state = 2}, + [6001] = {.lex_state = 89, .external_lex_state = 2}, + [6002] = {.lex_state = 405, .external_lex_state = 5}, [6003] = {.lex_state = 405, .external_lex_state = 5}, [6004] = {.lex_state = 405, .external_lex_state = 5}, - [6005] = {.lex_state = 405, .external_lex_state = 5}, - [6006] = {.lex_state = 48, .external_lex_state = 2}, + [6005] = {.lex_state = 75, .external_lex_state = 2}, + [6006] = {.lex_state = 405, .external_lex_state = 2}, [6007] = {.lex_state = 405, .external_lex_state = 5}, [6008] = {.lex_state = 405, .external_lex_state = 5}, [6009] = {.lex_state = 405, .external_lex_state = 5}, - [6010] = {.lex_state = 405, .external_lex_state = 5}, - [6011] = {.lex_state = 405, .external_lex_state = 5}, + [6010] = {.lex_state = 48, .external_lex_state = 2}, + [6011] = {.lex_state = 405, .external_lex_state = 2}, [6012] = {.lex_state = 405, .external_lex_state = 5}, [6013] = {.lex_state = 405, .external_lex_state = 5}, [6014] = {.lex_state = 405, .external_lex_state = 5}, [6015] = {.lex_state = 405, .external_lex_state = 5}, - [6016] = {.lex_state = 27, .external_lex_state = 2}, + [6016] = {.lex_state = 405, .external_lex_state = 5}, [6017] = {.lex_state = 405, .external_lex_state = 5}, - [6018] = {.lex_state = 405, .external_lex_state = 2}, - [6019] = {.lex_state = 405, .external_lex_state = 2}, - [6020] = {.lex_state = 405, .external_lex_state = 5}, - [6021] = {.lex_state = 48, .external_lex_state = 2}, + [6018] = {.lex_state = 405, .external_lex_state = 8}, + [6019] = {.lex_state = 405, .external_lex_state = 5}, + [6020] = {.lex_state = 27, .external_lex_state = 2}, + [6021] = {.lex_state = 405, .external_lex_state = 5}, [6022] = {.lex_state = 405, .external_lex_state = 2}, - [6023] = {.lex_state = 48, .external_lex_state = 2}, - [6024] = {.lex_state = 405, .external_lex_state = 8}, + [6023] = {.lex_state = 405, .external_lex_state = 2}, + [6024] = {.lex_state = 405, .external_lex_state = 5}, [6025] = {.lex_state = 48, .external_lex_state = 2}, [6026] = {.lex_state = 405, .external_lex_state = 5}, [6027] = {.lex_state = 48, .external_lex_state = 2}, [6028] = {.lex_state = 405, .external_lex_state = 5}, - [6029] = {.lex_state = 405, .external_lex_state = 5}, - [6030] = {.lex_state = 405, .external_lex_state = 2}, + [6029] = {.lex_state = 48, .external_lex_state = 2}, + [6030] = {.lex_state = 405, .external_lex_state = 5}, [6031] = {.lex_state = 405, .external_lex_state = 5}, [6032] = {.lex_state = 405, .external_lex_state = 2}, [6033] = {.lex_state = 405, .external_lex_state = 5}, [6034] = {.lex_state = 405, .external_lex_state = 5}, [6035] = {.lex_state = 405, .external_lex_state = 5}, [6036] = {.lex_state = 405, .external_lex_state = 5}, - [6037] = {.lex_state = 405, .external_lex_state = 5}, + [6037] = {.lex_state = 54, .external_lex_state = 2}, [6038] = {.lex_state = 405, .external_lex_state = 5}, [6039] = {.lex_state = 405, .external_lex_state = 5}, - [6040] = {.lex_state = 405, .external_lex_state = 5}, + [6040] = {.lex_state = 405, .external_lex_state = 2}, [6041] = {.lex_state = 405, .external_lex_state = 5}, [6042] = {.lex_state = 405, .external_lex_state = 5}, [6043] = {.lex_state = 405, .external_lex_state = 5}, - [6044] = {.lex_state = 405, .external_lex_state = 2}, + [6044] = {.lex_state = 405, .external_lex_state = 5}, [6045] = {.lex_state = 405, .external_lex_state = 5}, [6046] = {.lex_state = 405, .external_lex_state = 5}, - [6047] = {.lex_state = 405, .external_lex_state = 5}, + [6047] = {.lex_state = 66, .external_lex_state = 2}, [6048] = {.lex_state = 405, .external_lex_state = 5}, - [6049] = {.lex_state = 405, .external_lex_state = 2}, - [6050] = {.lex_state = 405, .external_lex_state = 2}, - [6051] = {.lex_state = 405, .external_lex_state = 5}, + [6049] = {.lex_state = 48, .external_lex_state = 2}, + [6050] = {.lex_state = 27, .external_lex_state = 2}, + [6051] = {.lex_state = 48, .external_lex_state = 2}, [6052] = {.lex_state = 405, .external_lex_state = 5}, - [6053] = {.lex_state = 405, .external_lex_state = 2}, - [6054] = {.lex_state = 405, .external_lex_state = 5}, - [6055] = {.lex_state = 405, .external_lex_state = 5}, + [6053] = {.lex_state = 405, .external_lex_state = 5}, + [6054] = {.lex_state = 405, .external_lex_state = 2}, + [6055] = {.lex_state = 405, .external_lex_state = 2}, [6056] = {.lex_state = 405, .external_lex_state = 5}, - [6057] = {.lex_state = 405, .external_lex_state = 2}, + [6057] = {.lex_state = 405, .external_lex_state = 5}, [6058] = {.lex_state = 405, .external_lex_state = 5}, - [6059] = {.lex_state = 405, .external_lex_state = 2}, - [6060] = {.lex_state = 405, .external_lex_state = 5}, - [6061] = {.lex_state = 27, .external_lex_state = 2}, + [6059] = {.lex_state = 405, .external_lex_state = 5}, + [6060] = {.lex_state = 405, .external_lex_state = 2}, + [6061] = {.lex_state = 405, .external_lex_state = 2}, [6062] = {.lex_state = 405, .external_lex_state = 5}, - [6063] = {.lex_state = 405, .external_lex_state = 5}, + [6063] = {.lex_state = 405, .external_lex_state = 2}, [6064] = {.lex_state = 405, .external_lex_state = 5}, [6065] = {.lex_state = 405, .external_lex_state = 5}, - [6066] = {.lex_state = 48, .external_lex_state = 2}, + [6066] = {.lex_state = 405, .external_lex_state = 2}, [6067] = {.lex_state = 405, .external_lex_state = 5}, [6068] = {.lex_state = 405, .external_lex_state = 5}, [6069] = {.lex_state = 405, .external_lex_state = 5}, - [6070] = {.lex_state = 405, .external_lex_state = 2}, + [6070] = {.lex_state = 405, .external_lex_state = 5}, [6071] = {.lex_state = 405, .external_lex_state = 5}, [6072] = {.lex_state = 405, .external_lex_state = 5}, - [6073] = {.lex_state = 89, .external_lex_state = 2}, + [6073] = {.lex_state = 405, .external_lex_state = 5}, [6074] = {.lex_state = 405, .external_lex_state = 5}, - [6075] = {.lex_state = 405, .external_lex_state = 5}, - [6076] = {.lex_state = 405, .external_lex_state = 5}, + [6075] = {.lex_state = 405, .external_lex_state = 2}, + [6076] = {.lex_state = 59, .external_lex_state = 9}, [6077] = {.lex_state = 405, .external_lex_state = 5}, - [6078] = {.lex_state = 405, .external_lex_state = 5}, + [6078] = {.lex_state = 68, .external_lex_state = 9}, [6079] = {.lex_state = 405, .external_lex_state = 5}, - [6080] = {.lex_state = 405, .external_lex_state = 5}, + [6080] = {.lex_state = 84, .external_lex_state = 2}, [6081] = {.lex_state = 405, .external_lex_state = 5}, - [6082] = {.lex_state = 405, .external_lex_state = 5}, + [6082] = {.lex_state = 405, .external_lex_state = 2}, [6083] = {.lex_state = 405, .external_lex_state = 5}, [6084] = {.lex_state = 405, .external_lex_state = 5}, - [6085] = {.lex_state = 66, .external_lex_state = 2}, - [6086] = {.lex_state = 27, .external_lex_state = 2}, + [6085] = {.lex_state = 405, .external_lex_state = 5}, + [6086] = {.lex_state = 405, .external_lex_state = 5}, [6087] = {.lex_state = 405, .external_lex_state = 5}, - [6088] = {.lex_state = 405, .external_lex_state = 2}, - [6089] = {.lex_state = 405, .external_lex_state = 2}, - [6090] = {.lex_state = 48, .external_lex_state = 2}, - [6091] = {.lex_state = 48, .external_lex_state = 2}, - [6092] = {.lex_state = 48, .external_lex_state = 2}, - [6093] = {.lex_state = 405, .external_lex_state = 5}, - [6094] = {.lex_state = 405, .external_lex_state = 5}, + [6088] = {.lex_state = 405, .external_lex_state = 5}, + [6089] = {.lex_state = 405, .external_lex_state = 5}, + [6090] = {.lex_state = 405, .external_lex_state = 5}, + [6091] = {.lex_state = 50, .external_lex_state = 2}, + [6092] = {.lex_state = 405, .external_lex_state = 5}, + [6093] = {.lex_state = 405, .external_lex_state = 2}, + [6094] = {.lex_state = 24, .external_lex_state = 2}, [6095] = {.lex_state = 405, .external_lex_state = 5}, [6096] = {.lex_state = 405, .external_lex_state = 5}, [6097] = {.lex_state = 405, .external_lex_state = 5}, - [6098] = {.lex_state = 405, .external_lex_state = 5}, - [6099] = {.lex_state = 84, .external_lex_state = 2}, + [6098] = {.lex_state = 50, .external_lex_state = 2}, + [6099] = {.lex_state = 50, .external_lex_state = 2}, [6100] = {.lex_state = 405, .external_lex_state = 5}, - [6101] = {.lex_state = 54, .external_lex_state = 2}, + [6101] = {.lex_state = 50, .external_lex_state = 2}, [6102] = {.lex_state = 405, .external_lex_state = 5}, - [6103] = {.lex_state = 405, .external_lex_state = 8}, - [6104] = {.lex_state = 405, .external_lex_state = 2}, + [6103] = {.lex_state = 405, .external_lex_state = 5}, + [6104] = {.lex_state = 405, .external_lex_state = 5}, [6105] = {.lex_state = 405, .external_lex_state = 5}, [6106] = {.lex_state = 405, .external_lex_state = 5}, - [6107] = {.lex_state = 405, .external_lex_state = 2}, + [6107] = {.lex_state = 405, .external_lex_state = 5}, [6108] = {.lex_state = 405, .external_lex_state = 5}, [6109] = {.lex_state = 405, .external_lex_state = 5}, [6110] = {.lex_state = 405, .external_lex_state = 5}, - [6111] = {.lex_state = 405, .external_lex_state = 2}, + [6111] = {.lex_state = 405, .external_lex_state = 5}, [6112] = {.lex_state = 405, .external_lex_state = 5}, [6113] = {.lex_state = 405, .external_lex_state = 5}, [6114] = {.lex_state = 405, .external_lex_state = 5}, - [6115] = {.lex_state = 50, .external_lex_state = 5}, - [6116] = {.lex_state = 50, .external_lex_state = 5}, + [6115] = {.lex_state = 405, .external_lex_state = 2}, + [6116] = {.lex_state = 405, .external_lex_state = 5}, [6117] = {.lex_state = 405, .external_lex_state = 5}, - [6118] = {.lex_state = 50, .external_lex_state = 2}, - [6119] = {.lex_state = 24, .external_lex_state = 2}, - [6120] = {.lex_state = 405, .external_lex_state = 5}, + [6118] = {.lex_state = 405, .external_lex_state = 5}, + [6119] = {.lex_state = 50, .external_lex_state = 5}, + [6120] = {.lex_state = 50, .external_lex_state = 5}, [6121] = {.lex_state = 405, .external_lex_state = 5}, [6122] = {.lex_state = 405, .external_lex_state = 5}, [6123] = {.lex_state = 405, .external_lex_state = 5}, [6124] = {.lex_state = 405, .external_lex_state = 5}, [6125] = {.lex_state = 405, .external_lex_state = 5}, - [6126] = {.lex_state = 55, .external_lex_state = 2}, - [6127] = {.lex_state = 55, .external_lex_state = 2}, - [6128] = {.lex_state = 405, .external_lex_state = 2}, - [6129] = {.lex_state = 405, .external_lex_state = 2}, + [6126] = {.lex_state = 405, .external_lex_state = 5}, + [6127] = {.lex_state = 405, .external_lex_state = 5}, + [6128] = {.lex_state = 405, .external_lex_state = 5}, + [6129] = {.lex_state = 405, .external_lex_state = 5}, [6130] = {.lex_state = 405, .external_lex_state = 5}, [6131] = {.lex_state = 405, .external_lex_state = 5}, [6132] = {.lex_state = 405, .external_lex_state = 5}, [6133] = {.lex_state = 405, .external_lex_state = 5}, - [6134] = {.lex_state = 405, .external_lex_state = 2}, + [6134] = {.lex_state = 405, .external_lex_state = 5}, [6135] = {.lex_state = 405, .external_lex_state = 5}, - [6136] = {.lex_state = 405, .external_lex_state = 5}, + [6136] = {.lex_state = 48, .external_lex_state = 2}, [6137] = {.lex_state = 405, .external_lex_state = 5}, [6138] = {.lex_state = 405, .external_lex_state = 5}, [6139] = {.lex_state = 405, .external_lex_state = 5}, @@ -28278,38 +28342,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6141] = {.lex_state = 405, .external_lex_state = 5}, [6142] = {.lex_state = 405, .external_lex_state = 5}, [6143] = {.lex_state = 405, .external_lex_state = 5}, - [6144] = {.lex_state = 405, .external_lex_state = 2}, + [6144] = {.lex_state = 405, .external_lex_state = 5}, [6145] = {.lex_state = 405, .external_lex_state = 5}, [6146] = {.lex_state = 405, .external_lex_state = 5}, [6147] = {.lex_state = 405, .external_lex_state = 5}, - [6148] = {.lex_state = 405, .external_lex_state = 5}, + [6148] = {.lex_state = 48, .external_lex_state = 2}, [6149] = {.lex_state = 405, .external_lex_state = 5}, - [6150] = {.lex_state = 405, .external_lex_state = 5}, + [6150] = {.lex_state = 48, .external_lex_state = 2}, [6151] = {.lex_state = 405, .external_lex_state = 5}, - [6152] = {.lex_state = 48, .external_lex_state = 2}, + [6152] = {.lex_state = 405, .external_lex_state = 5}, [6153] = {.lex_state = 405, .external_lex_state = 5}, - [6154] = {.lex_state = 405, .external_lex_state = 5}, + [6154] = {.lex_state = 405, .external_lex_state = 2}, [6155] = {.lex_state = 405, .external_lex_state = 5}, - [6156] = {.lex_state = 48, .external_lex_state = 2}, + [6156] = {.lex_state = 405, .external_lex_state = 5}, [6157] = {.lex_state = 405, .external_lex_state = 5}, - [6158] = {.lex_state = 48, .external_lex_state = 2}, + [6158] = {.lex_state = 405, .external_lex_state = 5}, [6159] = {.lex_state = 405, .external_lex_state = 5}, - [6160] = {.lex_state = 405, .external_lex_state = 2}, - [6161] = {.lex_state = 405, .external_lex_state = 5}, + [6160] = {.lex_state = 405, .external_lex_state = 5}, + [6161] = {.lex_state = 405, .external_lex_state = 2}, [6162] = {.lex_state = 405, .external_lex_state = 5}, - [6163] = {.lex_state = 50, .external_lex_state = 5}, - [6164] = {.lex_state = 405, .external_lex_state = 5}, - [6165] = {.lex_state = 50, .external_lex_state = 5}, - [6166] = {.lex_state = 405, .external_lex_state = 5}, - [6167] = {.lex_state = 405, .external_lex_state = 2}, + [6163] = {.lex_state = 405, .external_lex_state = 5}, + [6164] = {.lex_state = 405, .external_lex_state = 2}, + [6165] = {.lex_state = 405, .external_lex_state = 2}, + [6166] = {.lex_state = 405, .external_lex_state = 2}, + [6167] = {.lex_state = 405, .external_lex_state = 5}, [6168] = {.lex_state = 405, .external_lex_state = 5}, [6169] = {.lex_state = 405, .external_lex_state = 5}, - [6170] = {.lex_state = 405, .external_lex_state = 5}, + [6170] = {.lex_state = 48, .external_lex_state = 2}, [6171] = {.lex_state = 405, .external_lex_state = 5}, - [6172] = {.lex_state = 405, .external_lex_state = 2}, + [6172] = {.lex_state = 405, .external_lex_state = 5}, [6173] = {.lex_state = 405, .external_lex_state = 5}, - [6174] = {.lex_state = 27, .external_lex_state = 2}, - [6175] = {.lex_state = 50, .external_lex_state = 2}, + [6174] = {.lex_state = 405, .external_lex_state = 5}, + [6175] = {.lex_state = 405, .external_lex_state = 2}, [6176] = {.lex_state = 405, .external_lex_state = 5}, [6177] = {.lex_state = 405, .external_lex_state = 5}, [6178] = {.lex_state = 405, .external_lex_state = 5}, @@ -28318,295 +28382,295 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6181] = {.lex_state = 405, .external_lex_state = 5}, [6182] = {.lex_state = 405, .external_lex_state = 5}, [6183] = {.lex_state = 405, .external_lex_state = 5}, - [6184] = {.lex_state = 405, .external_lex_state = 5}, + [6184] = {.lex_state = 405, .external_lex_state = 2}, [6185] = {.lex_state = 405, .external_lex_state = 5}, - [6186] = {.lex_state = 405, .external_lex_state = 5}, + [6186] = {.lex_state = 24, .external_lex_state = 2}, [6187] = {.lex_state = 405, .external_lex_state = 5}, [6188] = {.lex_state = 405, .external_lex_state = 5}, - [6189] = {.lex_state = 405, .external_lex_state = 2}, + [6189] = {.lex_state = 405, .external_lex_state = 5}, [6190] = {.lex_state = 405, .external_lex_state = 5}, [6191] = {.lex_state = 405, .external_lex_state = 5}, [6192] = {.lex_state = 405, .external_lex_state = 5}, [6193] = {.lex_state = 405, .external_lex_state = 5}, - [6194] = {.lex_state = 48, .external_lex_state = 2}, - [6195] = {.lex_state = 405, .external_lex_state = 5}, + [6194] = {.lex_state = 405, .external_lex_state = 5}, + [6195] = {.lex_state = 405, .external_lex_state = 2}, [6196] = {.lex_state = 405, .external_lex_state = 5}, [6197] = {.lex_state = 405, .external_lex_state = 5}, - [6198] = {.lex_state = 405, .external_lex_state = 5}, + [6198] = {.lex_state = 405, .external_lex_state = 2}, [6199] = {.lex_state = 405, .external_lex_state = 5}, - [6200] = {.lex_state = 405, .external_lex_state = 2}, + [6200] = {.lex_state = 405, .external_lex_state = 5}, [6201] = {.lex_state = 405, .external_lex_state = 5}, - [6202] = {.lex_state = 405, .external_lex_state = 2}, - [6203] = {.lex_state = 405, .external_lex_state = 2}, + [6202] = {.lex_state = 48, .external_lex_state = 2}, + [6203] = {.lex_state = 405, .external_lex_state = 5}, [6204] = {.lex_state = 405, .external_lex_state = 2}, [6205] = {.lex_state = 405, .external_lex_state = 5}, [6206] = {.lex_state = 405, .external_lex_state = 5}, - [6207] = {.lex_state = 405, .external_lex_state = 2}, - [6208] = {.lex_state = 50, .external_lex_state = 2}, - [6209] = {.lex_state = 405, .external_lex_state = 5}, - [6210] = {.lex_state = 50, .external_lex_state = 2}, - [6211] = {.lex_state = 405, .external_lex_state = 2}, + [6207] = {.lex_state = 27, .external_lex_state = 2}, + [6208] = {.lex_state = 405, .external_lex_state = 5}, + [6209] = {.lex_state = 405, .external_lex_state = 2}, + [6210] = {.lex_state = 405, .external_lex_state = 5}, + [6211] = {.lex_state = 405, .external_lex_state = 5}, [6212] = {.lex_state = 405, .external_lex_state = 5}, - [6213] = {.lex_state = 405, .external_lex_state = 5}, - [6214] = {.lex_state = 50, .external_lex_state = 2}, - [6215] = {.lex_state = 27, .external_lex_state = 2}, - [6216] = {.lex_state = 50, .external_lex_state = 2}, + [6213] = {.lex_state = 405, .external_lex_state = 2}, + [6214] = {.lex_state = 405, .external_lex_state = 5}, + [6215] = {.lex_state = 405, .external_lex_state = 5}, + [6216] = {.lex_state = 405, .external_lex_state = 5}, [6217] = {.lex_state = 405, .external_lex_state = 5}, [6218] = {.lex_state = 405, .external_lex_state = 5}, - [6219] = {.lex_state = 405, .external_lex_state = 2}, + [6219] = {.lex_state = 27, .external_lex_state = 2}, [6220] = {.lex_state = 405, .external_lex_state = 2}, [6221] = {.lex_state = 405, .external_lex_state = 5}, [6222] = {.lex_state = 405, .external_lex_state = 5}, - [6223] = {.lex_state = 405, .external_lex_state = 5}, + [6223] = {.lex_state = 405, .external_lex_state = 2}, [6224] = {.lex_state = 405, .external_lex_state = 2}, - [6225] = {.lex_state = 405, .external_lex_state = 2}, + [6225] = {.lex_state = 405, .external_lex_state = 5}, [6226] = {.lex_state = 405, .external_lex_state = 5}, - [6227] = {.lex_state = 48, .external_lex_state = 2}, - [6228] = {.lex_state = 48, .external_lex_state = 2}, + [6227] = {.lex_state = 405, .external_lex_state = 2}, + [6228] = {.lex_state = 405, .external_lex_state = 5}, [6229] = {.lex_state = 405, .external_lex_state = 5}, [6230] = {.lex_state = 405, .external_lex_state = 5}, - [6231] = {.lex_state = 48, .external_lex_state = 2}, - [6232] = {.lex_state = 405, .external_lex_state = 2}, - [6233] = {.lex_state = 405, .external_lex_state = 5}, + [6231] = {.lex_state = 405, .external_lex_state = 5}, + [6232] = {.lex_state = 405, .external_lex_state = 5}, + [6233] = {.lex_state = 405, .external_lex_state = 2}, [6234] = {.lex_state = 405, .external_lex_state = 5}, - [6235] = {.lex_state = 405, .external_lex_state = 5}, + [6235] = {.lex_state = 405, .external_lex_state = 2}, [6236] = {.lex_state = 405, .external_lex_state = 5}, [6237] = {.lex_state = 405, .external_lex_state = 5}, [6238] = {.lex_state = 405, .external_lex_state = 5}, - [6239] = {.lex_state = 405, .external_lex_state = 2}, - [6240] = {.lex_state = 405, .external_lex_state = 2}, - [6241] = {.lex_state = 405, .external_lex_state = 5}, - [6242] = {.lex_state = 405, .external_lex_state = 5}, - [6243] = {.lex_state = 405, .external_lex_state = 2}, + [6239] = {.lex_state = 48, .external_lex_state = 2}, + [6240] = {.lex_state = 405, .external_lex_state = 5}, + [6241] = {.lex_state = 405, .external_lex_state = 2}, + [6242] = {.lex_state = 405, .external_lex_state = 2}, + [6243] = {.lex_state = 405, .external_lex_state = 5}, [6244] = {.lex_state = 405, .external_lex_state = 5}, - [6245] = {.lex_state = 48, .external_lex_state = 2}, + [6245] = {.lex_state = 405, .external_lex_state = 5}, [6246] = {.lex_state = 405, .external_lex_state = 5}, [6247] = {.lex_state = 405, .external_lex_state = 5}, - [6248] = {.lex_state = 405, .external_lex_state = 2}, - [6249] = {.lex_state = 405, .external_lex_state = 2}, - [6250] = {.lex_state = 405, .external_lex_state = 2}, - [6251] = {.lex_state = 405, .external_lex_state = 2}, - [6252] = {.lex_state = 405, .external_lex_state = 2}, - [6253] = {.lex_state = 405, .external_lex_state = 5}, - [6254] = {.lex_state = 405, .external_lex_state = 5}, - [6255] = {.lex_state = 48, .external_lex_state = 2}, - [6256] = {.lex_state = 84, .external_lex_state = 2}, + [6248] = {.lex_state = 48, .external_lex_state = 2}, + [6249] = {.lex_state = 405, .external_lex_state = 5}, + [6250] = {.lex_state = 48, .external_lex_state = 2}, + [6251] = {.lex_state = 405, .external_lex_state = 5}, + [6252] = {.lex_state = 405, .external_lex_state = 5}, + [6253] = {.lex_state = 405, .external_lex_state = 2}, + [6254] = {.lex_state = 405, .external_lex_state = 2}, + [6255] = {.lex_state = 405, .external_lex_state = 2}, + [6256] = {.lex_state = 48, .external_lex_state = 2}, [6257] = {.lex_state = 405, .external_lex_state = 5}, - [6258] = {.lex_state = 405, .external_lex_state = 5}, - [6259] = {.lex_state = 405, .external_lex_state = 5}, - [6260] = {.lex_state = 405, .external_lex_state = 5}, + [6258] = {.lex_state = 405, .external_lex_state = 2}, + [6259] = {.lex_state = 48, .external_lex_state = 2}, + [6260] = {.lex_state = 405, .external_lex_state = 2}, [6261] = {.lex_state = 405, .external_lex_state = 5}, - [6262] = {.lex_state = 405, .external_lex_state = 5}, - [6263] = {.lex_state = 27, .external_lex_state = 2}, - [6264] = {.lex_state = 405, .external_lex_state = 5}, - [6265] = {.lex_state = 405, .external_lex_state = 2}, - [6266] = {.lex_state = 405, .external_lex_state = 2}, - [6267] = {.lex_state = 405, .external_lex_state = 5}, - [6268] = {.lex_state = 48, .external_lex_state = 2}, - [6269] = {.lex_state = 405, .external_lex_state = 5}, - [6270] = {.lex_state = 48, .external_lex_state = 2}, + [6262] = {.lex_state = 24, .external_lex_state = 2}, + [6263] = {.lex_state = 405, .external_lex_state = 2}, + [6264] = {.lex_state = 48, .external_lex_state = 2}, + [6265] = {.lex_state = 27, .external_lex_state = 2}, + [6266] = {.lex_state = 405, .external_lex_state = 5}, + [6267] = {.lex_state = 27, .external_lex_state = 2}, + [6268] = {.lex_state = 405, .external_lex_state = 5}, + [6269] = {.lex_state = 405, .external_lex_state = 2}, + [6270] = {.lex_state = 405, .external_lex_state = 2}, [6271] = {.lex_state = 405, .external_lex_state = 5}, [6272] = {.lex_state = 48, .external_lex_state = 2}, [6273] = {.lex_state = 405, .external_lex_state = 5}, - [6274] = {.lex_state = 405, .external_lex_state = 2}, - [6275] = {.lex_state = 405, .external_lex_state = 2}, - [6276] = {.lex_state = 405, .external_lex_state = 5}, - [6277] = {.lex_state = 405, .external_lex_state = 2}, + [6274] = {.lex_state = 48, .external_lex_state = 2}, + [6275] = {.lex_state = 405, .external_lex_state = 5}, + [6276] = {.lex_state = 48, .external_lex_state = 2}, + [6277] = {.lex_state = 405, .external_lex_state = 5}, [6278] = {.lex_state = 405, .external_lex_state = 5}, - [6279] = {.lex_state = 405, .external_lex_state = 5}, + [6279] = {.lex_state = 89, .external_lex_state = 2}, [6280] = {.lex_state = 405, .external_lex_state = 5}, [6281] = {.lex_state = 405, .external_lex_state = 5}, - [6282] = {.lex_state = 405, .external_lex_state = 2}, + [6282] = {.lex_state = 405, .external_lex_state = 5}, [6283] = {.lex_state = 405, .external_lex_state = 5}, [6284] = {.lex_state = 405, .external_lex_state = 5}, [6285] = {.lex_state = 405, .external_lex_state = 5}, - [6286] = {.lex_state = 50, .external_lex_state = 2}, - [6287] = {.lex_state = 48, .external_lex_state = 2}, + [6286] = {.lex_state = 405, .external_lex_state = 5}, + [6287] = {.lex_state = 50, .external_lex_state = 5}, [6288] = {.lex_state = 405, .external_lex_state = 5}, [6289] = {.lex_state = 405, .external_lex_state = 2}, - [6290] = {.lex_state = 405, .external_lex_state = 5}, - [6291] = {.lex_state = 405, .external_lex_state = 2}, - [6292] = {.lex_state = 48, .external_lex_state = 2}, - [6293] = {.lex_state = 50, .external_lex_state = 2}, - [6294] = {.lex_state = 48, .external_lex_state = 2}, - [6295] = {.lex_state = 50, .external_lex_state = 2}, - [6296] = {.lex_state = 48, .external_lex_state = 2}, + [6290] = {.lex_state = 405, .external_lex_state = 2}, + [6291] = {.lex_state = 405, .external_lex_state = 5}, + [6292] = {.lex_state = 27, .external_lex_state = 2}, + [6293] = {.lex_state = 405, .external_lex_state = 5}, + [6294] = {.lex_state = 405, .external_lex_state = 5}, + [6295] = {.lex_state = 405, .external_lex_state = 5}, + [6296] = {.lex_state = 405, .external_lex_state = 5}, [6297] = {.lex_state = 50, .external_lex_state = 2}, - [6298] = {.lex_state = 405, .external_lex_state = 2}, + [6298] = {.lex_state = 405, .external_lex_state = 5}, [6299] = {.lex_state = 50, .external_lex_state = 2}, - [6300] = {.lex_state = 405, .external_lex_state = 5}, - [6301] = {.lex_state = 405, .external_lex_state = 2}, - [6302] = {.lex_state = 405, .external_lex_state = 2}, - [6303] = {.lex_state = 27, .external_lex_state = 2}, - [6304] = {.lex_state = 405, .external_lex_state = 2}, - [6305] = {.lex_state = 405, .external_lex_state = 5}, - [6306] = {.lex_state = 405, .external_lex_state = 5}, + [6300] = {.lex_state = 50, .external_lex_state = 5}, + [6301] = {.lex_state = 50, .external_lex_state = 2}, + [6302] = {.lex_state = 405, .external_lex_state = 5}, + [6303] = {.lex_state = 50, .external_lex_state = 2}, + [6304] = {.lex_state = 405, .external_lex_state = 5}, + [6305] = {.lex_state = 405, .external_lex_state = 2}, + [6306] = {.lex_state = 48, .external_lex_state = 2}, [6307] = {.lex_state = 405, .external_lex_state = 5}, - [6308] = {.lex_state = 405, .external_lex_state = 2}, + [6308] = {.lex_state = 405, .external_lex_state = 5}, [6309] = {.lex_state = 405, .external_lex_state = 5}, [6310] = {.lex_state = 405, .external_lex_state = 2}, - [6311] = {.lex_state = 27, .external_lex_state = 2}, - [6312] = {.lex_state = 405, .external_lex_state = 5}, + [6311] = {.lex_state = 405, .external_lex_state = 5}, + [6312] = {.lex_state = 405, .external_lex_state = 2}, [6313] = {.lex_state = 405, .external_lex_state = 5}, - [6314] = {.lex_state = 405, .external_lex_state = 5}, - [6315] = {.lex_state = 405, .external_lex_state = 2}, + [6314] = {.lex_state = 405, .external_lex_state = 2}, + [6315] = {.lex_state = 405, .external_lex_state = 5}, [6316] = {.lex_state = 405, .external_lex_state = 2}, [6317] = {.lex_state = 405, .external_lex_state = 2}, [6318] = {.lex_state = 405, .external_lex_state = 2}, [6319] = {.lex_state = 405, .external_lex_state = 2}, [6320] = {.lex_state = 405, .external_lex_state = 5}, - [6321] = {.lex_state = 405, .external_lex_state = 2}, - [6322] = {.lex_state = 27, .external_lex_state = 2}, - [6323] = {.lex_state = 405, .external_lex_state = 5}, - [6324] = {.lex_state = 405, .external_lex_state = 2}, - [6325] = {.lex_state = 48, .external_lex_state = 2}, - [6326] = {.lex_state = 405, .external_lex_state = 2}, + [6321] = {.lex_state = 405, .external_lex_state = 5}, + [6322] = {.lex_state = 405, .external_lex_state = 2}, + [6323] = {.lex_state = 405, .external_lex_state = 2}, + [6324] = {.lex_state = 405, .external_lex_state = 5}, + [6325] = {.lex_state = 405, .external_lex_state = 5}, + [6326] = {.lex_state = 48, .external_lex_state = 2}, [6327] = {.lex_state = 405, .external_lex_state = 5}, [6328] = {.lex_state = 405, .external_lex_state = 2}, - [6329] = {.lex_state = 405, .external_lex_state = 2}, - [6330] = {.lex_state = 405, .external_lex_state = 5}, - [6331] = {.lex_state = 405, .external_lex_state = 5}, - [6332] = {.lex_state = 405, .external_lex_state = 5}, - [6333] = {.lex_state = 405, .external_lex_state = 5}, + [6329] = {.lex_state = 405, .external_lex_state = 5}, + [6330] = {.lex_state = 405, .external_lex_state = 2}, + [6331] = {.lex_state = 405, .external_lex_state = 2}, + [6332] = {.lex_state = 405, .external_lex_state = 2}, + [6333] = {.lex_state = 49, .external_lex_state = 2}, [6334] = {.lex_state = 405, .external_lex_state = 5}, - [6335] = {.lex_state = 48, .external_lex_state = 2}, + [6335] = {.lex_state = 405, .external_lex_state = 5}, [6336] = {.lex_state = 405, .external_lex_state = 5}, [6337] = {.lex_state = 405, .external_lex_state = 2}, [6338] = {.lex_state = 405, .external_lex_state = 2}, [6339] = {.lex_state = 405, .external_lex_state = 2}, [6340] = {.lex_state = 405, .external_lex_state = 2}, [6341] = {.lex_state = 405, .external_lex_state = 2}, - [6342] = {.lex_state = 405, .external_lex_state = 5}, + [6342] = {.lex_state = 405, .external_lex_state = 2}, [6343] = {.lex_state = 405, .external_lex_state = 2}, - [6344] = {.lex_state = 405, .external_lex_state = 5}, - [6345] = {.lex_state = 405, .external_lex_state = 5}, + [6344] = {.lex_state = 405, .external_lex_state = 2}, + [6345] = {.lex_state = 405, .external_lex_state = 2}, [6346] = {.lex_state = 405, .external_lex_state = 2}, - [6347] = {.lex_state = 405, .external_lex_state = 2}, - [6348] = {.lex_state = 405, .external_lex_state = 5}, + [6347] = {.lex_state = 50, .external_lex_state = 2}, + [6348] = {.lex_state = 405, .external_lex_state = 2}, [6349] = {.lex_state = 405, .external_lex_state = 2}, - [6350] = {.lex_state = 50, .external_lex_state = 2}, - [6351] = {.lex_state = 49, .external_lex_state = 2}, - [6352] = {.lex_state = 405, .external_lex_state = 5}, + [6350] = {.lex_state = 405, .external_lex_state = 2}, + [6351] = {.lex_state = 405, .external_lex_state = 2}, + [6352] = {.lex_state = 405, .external_lex_state = 2}, [6353] = {.lex_state = 405, .external_lex_state = 2}, - [6354] = {.lex_state = 405, .external_lex_state = 2}, + [6354] = {.lex_state = 405, .external_lex_state = 5}, [6355] = {.lex_state = 405, .external_lex_state = 2}, - [6356] = {.lex_state = 81, .external_lex_state = 2}, + [6356] = {.lex_state = 405, .external_lex_state = 2}, [6357] = {.lex_state = 405, .external_lex_state = 2}, [6358] = {.lex_state = 405, .external_lex_state = 2}, [6359] = {.lex_state = 405, .external_lex_state = 2}, - [6360] = {.lex_state = 405, .external_lex_state = 5}, - [6361] = {.lex_state = 405, .external_lex_state = 5}, + [6360] = {.lex_state = 405, .external_lex_state = 2}, + [6361] = {.lex_state = 405, .external_lex_state = 2}, [6362] = {.lex_state = 405, .external_lex_state = 2}, - [6363] = {.lex_state = 405, .external_lex_state = 5}, - [6364] = {.lex_state = 405, .external_lex_state = 2}, - [6365] = {.lex_state = 405, .external_lex_state = 5}, - [6366] = {.lex_state = 50, .external_lex_state = 2}, + [6363] = {.lex_state = 50, .external_lex_state = 2}, + [6364] = {.lex_state = 405, .external_lex_state = 5}, + [6365] = {.lex_state = 405, .external_lex_state = 2}, + [6366] = {.lex_state = 405, .external_lex_state = 2}, [6367] = {.lex_state = 405, .external_lex_state = 2}, [6368] = {.lex_state = 405, .external_lex_state = 2}, - [6369] = {.lex_state = 405, .external_lex_state = 2}, - [6370] = {.lex_state = 2, .external_lex_state = 2}, + [6369] = {.lex_state = 50, .external_lex_state = 2}, + [6370] = {.lex_state = 405, .external_lex_state = 2}, [6371] = {.lex_state = 405, .external_lex_state = 2}, - [6372] = {.lex_state = 405, .external_lex_state = 2}, - [6373] = {.lex_state = 405, .external_lex_state = 2}, - [6374] = {.lex_state = 50, .external_lex_state = 2}, - [6375] = {.lex_state = 49, .external_lex_state = 2}, + [6372] = {.lex_state = 50, .external_lex_state = 2}, + [6373] = {.lex_state = 50, .external_lex_state = 2}, + [6374] = {.lex_state = 405, .external_lex_state = 2}, + [6375] = {.lex_state = 405, .external_lex_state = 2}, [6376] = {.lex_state = 405, .external_lex_state = 2}, - [6377] = {.lex_state = 405, .external_lex_state = 2}, + [6377] = {.lex_state = 50, .external_lex_state = 2}, [6378] = {.lex_state = 405, .external_lex_state = 2}, [6379] = {.lex_state = 405, .external_lex_state = 2}, [6380] = {.lex_state = 405, .external_lex_state = 2}, - [6381] = {.lex_state = 405, .external_lex_state = 2}, + [6381] = {.lex_state = 405, .external_lex_state = 5}, [6382] = {.lex_state = 405, .external_lex_state = 2}, - [6383] = {.lex_state = 405, .external_lex_state = 5}, + [6383] = {.lex_state = 405, .external_lex_state = 2}, [6384] = {.lex_state = 405, .external_lex_state = 2}, [6385] = {.lex_state = 405, .external_lex_state = 2}, [6386] = {.lex_state = 405, .external_lex_state = 2}, - [6387] = {.lex_state = 405, .external_lex_state = 2}, - [6388] = {.lex_state = 405, .external_lex_state = 2}, - [6389] = {.lex_state = 405, .external_lex_state = 5}, - [6390] = {.lex_state = 405, .external_lex_state = 5}, - [6391] = {.lex_state = 405, .external_lex_state = 5}, + [6387] = {.lex_state = 405, .external_lex_state = 5}, + [6388] = {.lex_state = 405, .external_lex_state = 5}, + [6389] = {.lex_state = 405, .external_lex_state = 2}, + [6390] = {.lex_state = 405, .external_lex_state = 2}, + [6391] = {.lex_state = 405, .external_lex_state = 2}, [6392] = {.lex_state = 405, .external_lex_state = 2}, - [6393] = {.lex_state = 50, .external_lex_state = 2}, - [6394] = {.lex_state = 405, .external_lex_state = 2}, - [6395] = {.lex_state = 405, .external_lex_state = 2}, - [6396] = {.lex_state = 405, .external_lex_state = 2}, + [6393] = {.lex_state = 405, .external_lex_state = 5}, + [6394] = {.lex_state = 405, .external_lex_state = 5}, + [6395] = {.lex_state = 50, .external_lex_state = 2}, + [6396] = {.lex_state = 50, .external_lex_state = 2}, [6397] = {.lex_state = 405, .external_lex_state = 2}, [6398] = {.lex_state = 405, .external_lex_state = 2}, [6399] = {.lex_state = 405, .external_lex_state = 2}, [6400] = {.lex_state = 405, .external_lex_state = 2}, - [6401] = {.lex_state = 405, .external_lex_state = 5}, + [6401] = {.lex_state = 50, .external_lex_state = 2}, [6402] = {.lex_state = 405, .external_lex_state = 2}, - [6403] = {.lex_state = 50, .external_lex_state = 2}, - [6404] = {.lex_state = 405, .external_lex_state = 5}, + [6403] = {.lex_state = 405, .external_lex_state = 2}, + [6404] = {.lex_state = 50, .external_lex_state = 2}, [6405] = {.lex_state = 405, .external_lex_state = 2}, [6406] = {.lex_state = 405, .external_lex_state = 2}, [6407] = {.lex_state = 405, .external_lex_state = 2}, [6408] = {.lex_state = 405, .external_lex_state = 2}, [6409] = {.lex_state = 405, .external_lex_state = 2}, [6410] = {.lex_state = 405, .external_lex_state = 2}, - [6411] = {.lex_state = 405, .external_lex_state = 2}, + [6411] = {.lex_state = 405, .external_lex_state = 5}, [6412] = {.lex_state = 405, .external_lex_state = 2}, [6413] = {.lex_state = 405, .external_lex_state = 2}, [6414] = {.lex_state = 405, .external_lex_state = 2}, [6415] = {.lex_state = 405, .external_lex_state = 2}, - [6416] = {.lex_state = 405, .external_lex_state = 5}, + [6416] = {.lex_state = 405, .external_lex_state = 2}, [6417] = {.lex_state = 405, .external_lex_state = 5}, [6418] = {.lex_state = 405, .external_lex_state = 2}, [6419] = {.lex_state = 405, .external_lex_state = 2}, - [6420] = {.lex_state = 405, .external_lex_state = 2}, - [6421] = {.lex_state = 405, .external_lex_state = 2}, - [6422] = {.lex_state = 50, .external_lex_state = 2}, + [6420] = {.lex_state = 405, .external_lex_state = 5}, + [6421] = {.lex_state = 405, .external_lex_state = 5}, + [6422] = {.lex_state = 405, .external_lex_state = 2}, [6423] = {.lex_state = 405, .external_lex_state = 2}, [6424] = {.lex_state = 405, .external_lex_state = 2}, - [6425] = {.lex_state = 405, .external_lex_state = 2}, - [6426] = {.lex_state = 405, .external_lex_state = 5}, + [6425] = {.lex_state = 50, .external_lex_state = 2}, + [6426] = {.lex_state = 405, .external_lex_state = 2}, [6427] = {.lex_state = 405, .external_lex_state = 2}, - [6428] = {.lex_state = 405, .external_lex_state = 2}, - [6429] = {.lex_state = 405, .external_lex_state = 5}, + [6428] = {.lex_state = 50, .external_lex_state = 2}, + [6429] = {.lex_state = 405, .external_lex_state = 2}, [6430] = {.lex_state = 405, .external_lex_state = 2}, [6431] = {.lex_state = 405, .external_lex_state = 2}, [6432] = {.lex_state = 405, .external_lex_state = 2}, [6433] = {.lex_state = 405, .external_lex_state = 2}, [6434] = {.lex_state = 405, .external_lex_state = 2}, - [6435] = {.lex_state = 405, .external_lex_state = 5}, + [6435] = {.lex_state = 405, .external_lex_state = 2}, [6436] = {.lex_state = 405, .external_lex_state = 2}, [6437] = {.lex_state = 405, .external_lex_state = 2}, - [6438] = {.lex_state = 50, .external_lex_state = 2}, + [6438] = {.lex_state = 405, .external_lex_state = 2}, [6439] = {.lex_state = 405, .external_lex_state = 2}, - [6440] = {.lex_state = 50, .external_lex_state = 2}, + [6440] = {.lex_state = 405, .external_lex_state = 2}, [6441] = {.lex_state = 405, .external_lex_state = 2}, - [6442] = {.lex_state = 50, .external_lex_state = 2}, + [6442] = {.lex_state = 405, .external_lex_state = 2}, [6443] = {.lex_state = 405, .external_lex_state = 2}, - [6444] = {.lex_state = 405, .external_lex_state = 5}, - [6445] = {.lex_state = 405, .external_lex_state = 2}, - [6446] = {.lex_state = 50, .external_lex_state = 2}, - [6447] = {.lex_state = 405, .external_lex_state = 2}, - [6448] = {.lex_state = 405, .external_lex_state = 2}, + [6444] = {.lex_state = 405, .external_lex_state = 2}, + [6445] = {.lex_state = 405, .external_lex_state = 5}, + [6446] = {.lex_state = 405, .external_lex_state = 2}, + [6447] = {.lex_state = 405, .external_lex_state = 5}, + [6448] = {.lex_state = 50, .external_lex_state = 2}, [6449] = {.lex_state = 405, .external_lex_state = 2}, - [6450] = {.lex_state = 405, .external_lex_state = 2}, - [6451] = {.lex_state = 405, .external_lex_state = 2}, - [6452] = {.lex_state = 405, .external_lex_state = 5}, - [6453] = {.lex_state = 50, .external_lex_state = 2}, - [6454] = {.lex_state = 50, .external_lex_state = 2}, + [6450] = {.lex_state = 405, .external_lex_state = 5}, + [6451] = {.lex_state = 405, .external_lex_state = 5}, + [6452] = {.lex_state = 405, .external_lex_state = 2}, + [6453] = {.lex_state = 405, .external_lex_state = 2}, + [6454] = {.lex_state = 405, .external_lex_state = 2}, [6455] = {.lex_state = 405, .external_lex_state = 2}, [6456] = {.lex_state = 405, .external_lex_state = 2}, - [6457] = {.lex_state = 405, .external_lex_state = 2}, + [6457] = {.lex_state = 50, .external_lex_state = 2}, [6458] = {.lex_state = 405, .external_lex_state = 2}, [6459] = {.lex_state = 405, .external_lex_state = 2}, - [6460] = {.lex_state = 405, .external_lex_state = 2}, + [6460] = {.lex_state = 405, .external_lex_state = 5}, [6461] = {.lex_state = 405, .external_lex_state = 2}, [6462] = {.lex_state = 405, .external_lex_state = 2}, [6463] = {.lex_state = 405, .external_lex_state = 2}, - [6464] = {.lex_state = 405, .external_lex_state = 2}, + [6464] = {.lex_state = 405, .external_lex_state = 5}, [6465] = {.lex_state = 405, .external_lex_state = 2}, [6466] = {.lex_state = 405, .external_lex_state = 2}, [6467] = {.lex_state = 405, .external_lex_state = 2}, [6468] = {.lex_state = 405, .external_lex_state = 2}, - [6469] = {.lex_state = 405, .external_lex_state = 2}, + [6469] = {.lex_state = 50, .external_lex_state = 2}, [6470] = {.lex_state = 405, .external_lex_state = 2}, [6471] = {.lex_state = 405, .external_lex_state = 2}, - [6472] = {.lex_state = 50, .external_lex_state = 2}, + [6472] = {.lex_state = 405, .external_lex_state = 2}, [6473] = {.lex_state = 405, .external_lex_state = 2}, [6474] = {.lex_state = 405, .external_lex_state = 2}, [6475] = {.lex_state = 405, .external_lex_state = 2}, @@ -28615,72 +28679,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6478] = {.lex_state = 405, .external_lex_state = 2}, [6479] = {.lex_state = 405, .external_lex_state = 2}, [6480] = {.lex_state = 405, .external_lex_state = 2}, - [6481] = {.lex_state = 50, .external_lex_state = 2}, + [6481] = {.lex_state = 405, .external_lex_state = 2}, [6482] = {.lex_state = 405, .external_lex_state = 2}, [6483] = {.lex_state = 405, .external_lex_state = 2}, [6484] = {.lex_state = 405, .external_lex_state = 2}, - [6485] = {.lex_state = 405, .external_lex_state = 2}, - [6486] = {.lex_state = 405, .external_lex_state = 2}, + [6485] = {.lex_state = 405, .external_lex_state = 5}, + [6486] = {.lex_state = 405, .external_lex_state = 5}, [6487] = {.lex_state = 405, .external_lex_state = 2}, - [6488] = {.lex_state = 405, .external_lex_state = 2}, - [6489] = {.lex_state = 405, .external_lex_state = 2}, + [6488] = {.lex_state = 405, .external_lex_state = 5}, + [6489] = {.lex_state = 405, .external_lex_state = 5}, [6490] = {.lex_state = 50, .external_lex_state = 2}, [6491] = {.lex_state = 405, .external_lex_state = 2}, - [6492] = {.lex_state = 405, .external_lex_state = 2}, - [6493] = {.lex_state = 405, .external_lex_state = 2}, - [6494] = {.lex_state = 48, .external_lex_state = 2}, + [6492] = {.lex_state = 405, .external_lex_state = 5}, + [6493] = {.lex_state = 405, .external_lex_state = 5}, + [6494] = {.lex_state = 405, .external_lex_state = 5}, [6495] = {.lex_state = 405, .external_lex_state = 2}, - [6496] = {.lex_state = 50, .external_lex_state = 2}, - [6497] = {.lex_state = 48, .external_lex_state = 2}, - [6498] = {.lex_state = 405, .external_lex_state = 5}, - [6499] = {.lex_state = 405, .external_lex_state = 2}, + [6496] = {.lex_state = 405, .external_lex_state = 2}, + [6497] = {.lex_state = 405, .external_lex_state = 2}, + [6498] = {.lex_state = 405, .external_lex_state = 2}, + [6499] = {.lex_state = 50, .external_lex_state = 2}, [6500] = {.lex_state = 405, .external_lex_state = 2}, [6501] = {.lex_state = 405, .external_lex_state = 2}, - [6502] = {.lex_state = 48, .external_lex_state = 2}, - [6503] = {.lex_state = 405, .external_lex_state = 5}, - [6504] = {.lex_state = 405, .external_lex_state = 5}, - [6505] = {.lex_state = 405, .external_lex_state = 5}, + [6502] = {.lex_state = 405, .external_lex_state = 2}, + [6503] = {.lex_state = 405, .external_lex_state = 2}, + [6504] = {.lex_state = 405, .external_lex_state = 2}, + [6505] = {.lex_state = 405, .external_lex_state = 2}, [6506] = {.lex_state = 405, .external_lex_state = 5}, [6507] = {.lex_state = 405, .external_lex_state = 2}, - [6508] = {.lex_state = 405, .external_lex_state = 5}, - [6509] = {.lex_state = 405, .external_lex_state = 5}, + [6508] = {.lex_state = 405, .external_lex_state = 2}, + [6509] = {.lex_state = 405, .external_lex_state = 2}, [6510] = {.lex_state = 405, .external_lex_state = 2}, - [6511] = {.lex_state = 405, .external_lex_state = 2}, - [6512] = {.lex_state = 405, .external_lex_state = 2}, + [6511] = {.lex_state = 405, .external_lex_state = 5}, + [6512] = {.lex_state = 405, .external_lex_state = 5}, [6513] = {.lex_state = 405, .external_lex_state = 5}, - [6514] = {.lex_state = 405, .external_lex_state = 5}, - [6515] = {.lex_state = 405, .external_lex_state = 5}, - [6516] = {.lex_state = 405, .external_lex_state = 2}, + [6514] = {.lex_state = 405, .external_lex_state = 2}, + [6515] = {.lex_state = 405, .external_lex_state = 2}, + [6516] = {.lex_state = 405, .external_lex_state = 5}, [6517] = {.lex_state = 405, .external_lex_state = 2}, - [6518] = {.lex_state = 405, .external_lex_state = 5}, + [6518] = {.lex_state = 405, .external_lex_state = 2}, [6519] = {.lex_state = 405, .external_lex_state = 2}, [6520] = {.lex_state = 405, .external_lex_state = 2}, - [6521] = {.lex_state = 405, .external_lex_state = 2}, - [6522] = {.lex_state = 48, .external_lex_state = 2}, - [6523] = {.lex_state = 405, .external_lex_state = 5}, + [6521] = {.lex_state = 405, .external_lex_state = 5}, + [6522] = {.lex_state = 405, .external_lex_state = 2}, + [6523] = {.lex_state = 405, .external_lex_state = 2}, [6524] = {.lex_state = 405, .external_lex_state = 2}, - [6525] = {.lex_state = 405, .external_lex_state = 2}, - [6526] = {.lex_state = 405, .external_lex_state = 2}, + [6525] = {.lex_state = 2, .external_lex_state = 2}, + [6526] = {.lex_state = 405, .external_lex_state = 5}, [6527] = {.lex_state = 405, .external_lex_state = 2}, [6528] = {.lex_state = 405, .external_lex_state = 2}, [6529] = {.lex_state = 405, .external_lex_state = 2}, [6530] = {.lex_state = 405, .external_lex_state = 2}, [6531] = {.lex_state = 405, .external_lex_state = 2}, - [6532] = {.lex_state = 50, .external_lex_state = 2}, - [6533] = {.lex_state = 405, .external_lex_state = 2}, - [6534] = {.lex_state = 405, .external_lex_state = 5}, - [6535] = {.lex_state = 405, .external_lex_state = 5}, - [6536] = {.lex_state = 48, .external_lex_state = 2}, + [6532] = {.lex_state = 405, .external_lex_state = 2}, + [6533] = {.lex_state = 405, .external_lex_state = 5}, + [6534] = {.lex_state = 405, .external_lex_state = 2}, + [6535] = {.lex_state = 405, .external_lex_state = 2}, + [6536] = {.lex_state = 405, .external_lex_state = 2}, [6537] = {.lex_state = 50, .external_lex_state = 2}, - [6538] = {.lex_state = 405, .external_lex_state = 2}, + [6538] = {.lex_state = 50, .external_lex_state = 2}, [6539] = {.lex_state = 405, .external_lex_state = 2}, - [6540] = {.lex_state = 405, .external_lex_state = 2}, + [6540] = {.lex_state = 405, .external_lex_state = 5}, [6541] = {.lex_state = 405, .external_lex_state = 2}, - [6542] = {.lex_state = 50, .external_lex_state = 2}, + [6542] = {.lex_state = 405, .external_lex_state = 2}, [6543] = {.lex_state = 405, .external_lex_state = 2}, - [6544] = {.lex_state = 50, .external_lex_state = 2}, - [6545] = {.lex_state = 405, .external_lex_state = 2}, - [6546] = {.lex_state = 405, .external_lex_state = 5}, + [6544] = {.lex_state = 405, .external_lex_state = 2}, + [6545] = {.lex_state = 405, .external_lex_state = 5}, + [6546] = {.lex_state = 405, .external_lex_state = 2}, [6547] = {.lex_state = 405, .external_lex_state = 2}, [6548] = {.lex_state = 405, .external_lex_state = 2}, [6549] = {.lex_state = 405, .external_lex_state = 2}, @@ -28690,114 +28754,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6553] = {.lex_state = 405, .external_lex_state = 2}, [6554] = {.lex_state = 405, .external_lex_state = 2}, [6555] = {.lex_state = 405, .external_lex_state = 2}, - [6556] = {.lex_state = 405, .external_lex_state = 5}, + [6556] = {.lex_state = 405, .external_lex_state = 2}, [6557] = {.lex_state = 405, .external_lex_state = 2}, - [6558] = {.lex_state = 405, .external_lex_state = 5}, + [6558] = {.lex_state = 405, .external_lex_state = 2}, [6559] = {.lex_state = 405, .external_lex_state = 2}, [6560] = {.lex_state = 405, .external_lex_state = 2}, [6561] = {.lex_state = 405, .external_lex_state = 2}, - [6562] = {.lex_state = 405, .external_lex_state = 5}, - [6563] = {.lex_state = 405, .external_lex_state = 5}, - [6564] = {.lex_state = 405, .external_lex_state = 2}, - [6565] = {.lex_state = 405, .external_lex_state = 5}, + [6562] = {.lex_state = 405, .external_lex_state = 2}, + [6563] = {.lex_state = 405, .external_lex_state = 2}, + [6564] = {.lex_state = 405, .external_lex_state = 5}, + [6565] = {.lex_state = 405, .external_lex_state = 2}, [6566] = {.lex_state = 405, .external_lex_state = 2}, [6567] = {.lex_state = 405, .external_lex_state = 2}, - [6568] = {.lex_state = 405, .external_lex_state = 2}, + [6568] = {.lex_state = 81, .external_lex_state = 2}, [6569] = {.lex_state = 405, .external_lex_state = 2}, - [6570] = {.lex_state = 405, .external_lex_state = 5}, - [6571] = {.lex_state = 405, .external_lex_state = 5}, - [6572] = {.lex_state = 405, .external_lex_state = 5}, - [6573] = {.lex_state = 405, .external_lex_state = 5}, + [6570] = {.lex_state = 48, .external_lex_state = 2}, + [6571] = {.lex_state = 405, .external_lex_state = 2}, + [6572] = {.lex_state = 405, .external_lex_state = 2}, + [6573] = {.lex_state = 405, .external_lex_state = 2}, [6574] = {.lex_state = 405, .external_lex_state = 2}, - [6575] = {.lex_state = 405, .external_lex_state = 5}, + [6575] = {.lex_state = 405, .external_lex_state = 2}, [6576] = {.lex_state = 405, .external_lex_state = 2}, [6577] = {.lex_state = 405, .external_lex_state = 2}, - [6578] = {.lex_state = 405, .external_lex_state = 5}, + [6578] = {.lex_state = 405, .external_lex_state = 2}, [6579] = {.lex_state = 405, .external_lex_state = 2}, - [6580] = {.lex_state = 405, .external_lex_state = 5}, - [6581] = {.lex_state = 405, .external_lex_state = 5}, + [6580] = {.lex_state = 405, .external_lex_state = 2}, + [6581] = {.lex_state = 405, .external_lex_state = 2}, [6582] = {.lex_state = 405, .external_lex_state = 2}, [6583] = {.lex_state = 405, .external_lex_state = 2}, - [6584] = {.lex_state = 405, .external_lex_state = 2}, - [6585] = {.lex_state = 405, .external_lex_state = 2}, - [6586] = {.lex_state = 50, .external_lex_state = 2}, + [6584] = {.lex_state = 405, .external_lex_state = 5}, + [6585] = {.lex_state = 50, .external_lex_state = 2}, + [6586] = {.lex_state = 405, .external_lex_state = 2}, [6587] = {.lex_state = 405, .external_lex_state = 2}, - [6588] = {.lex_state = 405, .external_lex_state = 2}, + [6588] = {.lex_state = 50, .external_lex_state = 2}, [6589] = {.lex_state = 50, .external_lex_state = 2}, - [6590] = {.lex_state = 405, .external_lex_state = 2}, - [6591] = {.lex_state = 405, .external_lex_state = 2}, - [6592] = {.lex_state = 405, .external_lex_state = 2}, + [6590] = {.lex_state = 48, .external_lex_state = 2}, + [6591] = {.lex_state = 50, .external_lex_state = 2}, + [6592] = {.lex_state = 48, .external_lex_state = 2}, [6593] = {.lex_state = 405, .external_lex_state = 2}, [6594] = {.lex_state = 405, .external_lex_state = 2}, [6595] = {.lex_state = 405, .external_lex_state = 2}, [6596] = {.lex_state = 405, .external_lex_state = 2}, - [6597] = {.lex_state = 405, .external_lex_state = 5}, - [6598] = {.lex_state = 405, .external_lex_state = 2}, - [6599] = {.lex_state = 50, .external_lex_state = 2}, - [6600] = {.lex_state = 405, .external_lex_state = 5}, - [6601] = {.lex_state = 405, .external_lex_state = 5}, - [6602] = {.lex_state = 405, .external_lex_state = 5}, - [6603] = {.lex_state = 405, .external_lex_state = 5}, - [6604] = {.lex_state = 405, .external_lex_state = 2}, - [6605] = {.lex_state = 50, .external_lex_state = 2}, - [6606] = {.lex_state = 405, .external_lex_state = 5}, + [6597] = {.lex_state = 405, .external_lex_state = 2}, + [6598] = {.lex_state = 405, .external_lex_state = 5}, + [6599] = {.lex_state = 405, .external_lex_state = 2}, + [6600] = {.lex_state = 405, .external_lex_state = 2}, + [6601] = {.lex_state = 405, .external_lex_state = 2}, + [6602] = {.lex_state = 405, .external_lex_state = 2}, + [6603] = {.lex_state = 405, .external_lex_state = 2}, + [6604] = {.lex_state = 50, .external_lex_state = 2}, + [6605] = {.lex_state = 405, .external_lex_state = 2}, + [6606] = {.lex_state = 405, .external_lex_state = 2}, [6607] = {.lex_state = 405, .external_lex_state = 2}, - [6608] = {.lex_state = 405, .external_lex_state = 2}, - [6609] = {.lex_state = 405, .external_lex_state = 2}, + [6608] = {.lex_state = 405, .external_lex_state = 5}, + [6609] = {.lex_state = 405, .external_lex_state = 5}, [6610] = {.lex_state = 405, .external_lex_state = 2}, [6611] = {.lex_state = 405, .external_lex_state = 2}, [6612] = {.lex_state = 405, .external_lex_state = 2}, [6613] = {.lex_state = 405, .external_lex_state = 2}, - [6614] = {.lex_state = 405, .external_lex_state = 2}, - [6615] = {.lex_state = 405, .external_lex_state = 2}, + [6614] = {.lex_state = 405, .external_lex_state = 5}, + [6615] = {.lex_state = 405, .external_lex_state = 5}, [6616] = {.lex_state = 405, .external_lex_state = 2}, - [6617] = {.lex_state = 405, .external_lex_state = 2}, + [6617] = {.lex_state = 405, .external_lex_state = 5}, [6618] = {.lex_state = 405, .external_lex_state = 2}, [6619] = {.lex_state = 405, .external_lex_state = 2}, - [6620] = {.lex_state = 405, .external_lex_state = 2}, + [6620] = {.lex_state = 50, .external_lex_state = 2}, [6621] = {.lex_state = 405, .external_lex_state = 2}, [6622] = {.lex_state = 405, .external_lex_state = 2}, [6623] = {.lex_state = 405, .external_lex_state = 2}, [6624] = {.lex_state = 405, .external_lex_state = 2}, - [6625] = {.lex_state = 49, .external_lex_state = 2}, + [6625] = {.lex_state = 405, .external_lex_state = 2}, [6626] = {.lex_state = 405, .external_lex_state = 2}, [6627] = {.lex_state = 405, .external_lex_state = 2}, - [6628] = {.lex_state = 405, .external_lex_state = 5}, - [6629] = {.lex_state = 405, .external_lex_state = 5}, + [6628] = {.lex_state = 405, .external_lex_state = 2}, + [6629] = {.lex_state = 405, .external_lex_state = 2}, [6630] = {.lex_state = 405, .external_lex_state = 2}, [6631] = {.lex_state = 405, .external_lex_state = 2}, [6632] = {.lex_state = 405, .external_lex_state = 2}, [6633] = {.lex_state = 405, .external_lex_state = 2}, - [6634] = {.lex_state = 405, .external_lex_state = 5}, + [6634] = {.lex_state = 405, .external_lex_state = 2}, [6635] = {.lex_state = 405, .external_lex_state = 2}, [6636] = {.lex_state = 405, .external_lex_state = 2}, [6637] = {.lex_state = 405, .external_lex_state = 2}, - [6638] = {.lex_state = 405, .external_lex_state = 2}, - [6639] = {.lex_state = 405, .external_lex_state = 2}, - [6640] = {.lex_state = 405, .external_lex_state = 2}, + [6638] = {.lex_state = 405, .external_lex_state = 5}, + [6639] = {.lex_state = 405, .external_lex_state = 5}, + [6640] = {.lex_state = 405, .external_lex_state = 5}, [6641] = {.lex_state = 405, .external_lex_state = 2}, [6642] = {.lex_state = 405, .external_lex_state = 2}, - [6643] = {.lex_state = 405, .external_lex_state = 2}, + [6643] = {.lex_state = 405, .external_lex_state = 5}, [6644] = {.lex_state = 405, .external_lex_state = 5}, [6645] = {.lex_state = 405, .external_lex_state = 5}, [6646] = {.lex_state = 405, .external_lex_state = 2}, - [6647] = {.lex_state = 405, .external_lex_state = 2}, + [6647] = {.lex_state = 48, .external_lex_state = 2}, [6648] = {.lex_state = 405, .external_lex_state = 2}, - [6649] = {.lex_state = 405, .external_lex_state = 2}, + [6649] = {.lex_state = 48, .external_lex_state = 2}, [6650] = {.lex_state = 405, .external_lex_state = 2}, [6651] = {.lex_state = 405, .external_lex_state = 2}, - [6652] = {.lex_state = 50, .external_lex_state = 2}, + [6652] = {.lex_state = 405, .external_lex_state = 2}, [6653] = {.lex_state = 405, .external_lex_state = 2}, [6654] = {.lex_state = 405, .external_lex_state = 2}, [6655] = {.lex_state = 405, .external_lex_state = 2}, - [6656] = {.lex_state = 50, .external_lex_state = 2}, + [6656] = {.lex_state = 405, .external_lex_state = 2}, [6657] = {.lex_state = 405, .external_lex_state = 2}, [6658] = {.lex_state = 405, .external_lex_state = 2}, [6659] = {.lex_state = 405, .external_lex_state = 2}, - [6660] = {.lex_state = 405, .external_lex_state = 2}, + [6660] = {.lex_state = 50, .external_lex_state = 2}, [6661] = {.lex_state = 405, .external_lex_state = 2}, - [6662] = {.lex_state = 405, .external_lex_state = 2}, - [6663] = {.lex_state = 2, .external_lex_state = 2}, + [6662] = {.lex_state = 405, .external_lex_state = 5}, + [6663] = {.lex_state = 405, .external_lex_state = 2}, [6664] = {.lex_state = 405, .external_lex_state = 2}, [6665] = {.lex_state = 405, .external_lex_state = 2}, [6666] = {.lex_state = 405, .external_lex_state = 2}, @@ -28805,63 +28869,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6668] = {.lex_state = 405, .external_lex_state = 2}, [6669] = {.lex_state = 405, .external_lex_state = 2}, [6670] = {.lex_state = 405, .external_lex_state = 2}, - [6671] = {.lex_state = 405, .external_lex_state = 5}, + [6671] = {.lex_state = 50, .external_lex_state = 2}, [6672] = {.lex_state = 405, .external_lex_state = 2}, - [6673] = {.lex_state = 405, .external_lex_state = 2}, + [6673] = {.lex_state = 405, .external_lex_state = 5}, [6674] = {.lex_state = 405, .external_lex_state = 2}, [6675] = {.lex_state = 405, .external_lex_state = 2}, - [6676] = {.lex_state = 405, .external_lex_state = 2}, - [6677] = {.lex_state = 405, .external_lex_state = 2}, - [6678] = {.lex_state = 405, .external_lex_state = 2}, - [6679] = {.lex_state = 405, .external_lex_state = 2}, + [6676] = {.lex_state = 405, .external_lex_state = 5}, + [6677] = {.lex_state = 405, .external_lex_state = 5}, + [6678] = {.lex_state = 405, .external_lex_state = 5}, + [6679] = {.lex_state = 405, .external_lex_state = 5}, [6680] = {.lex_state = 405, .external_lex_state = 2}, [6681] = {.lex_state = 405, .external_lex_state = 2}, [6682] = {.lex_state = 405, .external_lex_state = 2}, [6683] = {.lex_state = 405, .external_lex_state = 2}, [6684] = {.lex_state = 405, .external_lex_state = 2}, - [6685] = {.lex_state = 405, .external_lex_state = 2}, + [6685] = {.lex_state = 49, .external_lex_state = 2}, [6686] = {.lex_state = 405, .external_lex_state = 2}, [6687] = {.lex_state = 405, .external_lex_state = 2}, [6688] = {.lex_state = 405, .external_lex_state = 2}, - [6689] = {.lex_state = 405, .external_lex_state = 5}, + [6689] = {.lex_state = 405, .external_lex_state = 2}, [6690] = {.lex_state = 405, .external_lex_state = 2}, - [6691] = {.lex_state = 50, .external_lex_state = 2}, + [6691] = {.lex_state = 405, .external_lex_state = 2}, [6692] = {.lex_state = 405, .external_lex_state = 2}, [6693] = {.lex_state = 405, .external_lex_state = 2}, - [6694] = {.lex_state = 50, .external_lex_state = 2}, - [6695] = {.lex_state = 405, .external_lex_state = 2}, + [6694] = {.lex_state = 405, .external_lex_state = 2}, + [6695] = {.lex_state = 81, .external_lex_state = 2}, [6696] = {.lex_state = 405, .external_lex_state = 2}, [6697] = {.lex_state = 405, .external_lex_state = 2}, - [6698] = {.lex_state = 50, .external_lex_state = 2}, - [6699] = {.lex_state = 405, .external_lex_state = 2}, + [6698] = {.lex_state = 405, .external_lex_state = 2}, + [6699] = {.lex_state = 50, .external_lex_state = 2}, [6700] = {.lex_state = 405, .external_lex_state = 2}, [6701] = {.lex_state = 405, .external_lex_state = 2}, - [6702] = {.lex_state = 405, .external_lex_state = 2}, - [6703] = {.lex_state = 50, .external_lex_state = 2}, - [6704] = {.lex_state = 405, .external_lex_state = 2}, - [6705] = {.lex_state = 50, .external_lex_state = 2}, - [6706] = {.lex_state = 405, .external_lex_state = 5}, - [6707] = {.lex_state = 50, .external_lex_state = 2}, - [6708] = {.lex_state = 50, .external_lex_state = 2}, + [6702] = {.lex_state = 49, .external_lex_state = 2}, + [6703] = {.lex_state = 405, .external_lex_state = 2}, + [6704] = {.lex_state = 405, .external_lex_state = 5}, + [6705] = {.lex_state = 405, .external_lex_state = 5}, + [6706] = {.lex_state = 405, .external_lex_state = 2}, + [6707] = {.lex_state = 405, .external_lex_state = 2}, + [6708] = {.lex_state = 405, .external_lex_state = 2}, [6709] = {.lex_state = 405, .external_lex_state = 2}, - [6710] = {.lex_state = 50, .external_lex_state = 2}, - [6711] = {.lex_state = 50, .external_lex_state = 2}, + [6710] = {.lex_state = 405, .external_lex_state = 2}, + [6711] = {.lex_state = 405, .external_lex_state = 2}, [6712] = {.lex_state = 405, .external_lex_state = 2}, [6713] = {.lex_state = 405, .external_lex_state = 2}, - [6714] = {.lex_state = 50, .external_lex_state = 2}, - [6715] = {.lex_state = 405, .external_lex_state = 5}, + [6714] = {.lex_state = 405, .external_lex_state = 2}, + [6715] = {.lex_state = 405, .external_lex_state = 2}, [6716] = {.lex_state = 405, .external_lex_state = 2}, - [6717] = {.lex_state = 405, .external_lex_state = 5}, + [6717] = {.lex_state = 405, .external_lex_state = 2}, [6718] = {.lex_state = 405, .external_lex_state = 2}, [6719] = {.lex_state = 405, .external_lex_state = 2}, - [6720] = {.lex_state = 405, .external_lex_state = 2}, - [6721] = {.lex_state = 405, .external_lex_state = 2}, - [6722] = {.lex_state = 405, .external_lex_state = 2}, + [6720] = {.lex_state = 48, .external_lex_state = 2}, + [6721] = {.lex_state = 50, .external_lex_state = 2}, + [6722] = {.lex_state = 48, .external_lex_state = 2}, [6723] = {.lex_state = 405, .external_lex_state = 2}, [6724] = {.lex_state = 405, .external_lex_state = 2}, [6725] = {.lex_state = 405, .external_lex_state = 2}, [6726] = {.lex_state = 405, .external_lex_state = 2}, - [6727] = {.lex_state = 405, .external_lex_state = 2}, + [6727] = {.lex_state = 405, .external_lex_state = 5}, [6728] = {.lex_state = 405, .external_lex_state = 2}, [6729] = {.lex_state = 405, .external_lex_state = 2}, [6730] = {.lex_state = 405, .external_lex_state = 2}, @@ -28872,115 +28936,115 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6735] = {.lex_state = 405, .external_lex_state = 2}, [6736] = {.lex_state = 405, .external_lex_state = 2}, [6737] = {.lex_state = 405, .external_lex_state = 2}, - [6738] = {.lex_state = 50, .external_lex_state = 2}, - [6739] = {.lex_state = 48, .external_lex_state = 2}, + [6738] = {.lex_state = 405, .external_lex_state = 2}, + [6739] = {.lex_state = 405, .external_lex_state = 5}, [6740] = {.lex_state = 405, .external_lex_state = 2}, - [6741] = {.lex_state = 405, .external_lex_state = 2}, + [6741] = {.lex_state = 405, .external_lex_state = 5}, [6742] = {.lex_state = 405, .external_lex_state = 2}, [6743] = {.lex_state = 405, .external_lex_state = 2}, - [6744] = {.lex_state = 405, .external_lex_state = 2}, - [6745] = {.lex_state = 48, .external_lex_state = 2}, + [6744] = {.lex_state = 405, .external_lex_state = 5}, + [6745] = {.lex_state = 405, .external_lex_state = 2}, [6746] = {.lex_state = 405, .external_lex_state = 2}, - [6747] = {.lex_state = 405, .external_lex_state = 2}, + [6747] = {.lex_state = 405, .external_lex_state = 5}, [6748] = {.lex_state = 405, .external_lex_state = 2}, - [6749] = {.lex_state = 50, .external_lex_state = 2}, + [6749] = {.lex_state = 405, .external_lex_state = 2}, [6750] = {.lex_state = 405, .external_lex_state = 2}, [6751] = {.lex_state = 405, .external_lex_state = 2}, [6752] = {.lex_state = 405, .external_lex_state = 2}, - [6753] = {.lex_state = 405, .external_lex_state = 2}, + [6753] = {.lex_state = 50, .external_lex_state = 2}, [6754] = {.lex_state = 405, .external_lex_state = 2}, - [6755] = {.lex_state = 405, .external_lex_state = 5}, + [6755] = {.lex_state = 405, .external_lex_state = 2}, [6756] = {.lex_state = 405, .external_lex_state = 2}, - [6757] = {.lex_state = 50, .external_lex_state = 2}, - [6758] = {.lex_state = 50, .external_lex_state = 2}, - [6759] = {.lex_state = 50, .external_lex_state = 2}, - [6760] = {.lex_state = 50, .external_lex_state = 2}, + [6757] = {.lex_state = 405, .external_lex_state = 5}, + [6758] = {.lex_state = 405, .external_lex_state = 5}, + [6759] = {.lex_state = 48, .external_lex_state = 2}, + [6760] = {.lex_state = 405, .external_lex_state = 2}, [6761] = {.lex_state = 405, .external_lex_state = 2}, [6762] = {.lex_state = 405, .external_lex_state = 2}, [6763] = {.lex_state = 405, .external_lex_state = 2}, [6764] = {.lex_state = 405, .external_lex_state = 2}, - [6765] = {.lex_state = 48, .external_lex_state = 2}, + [6765] = {.lex_state = 405, .external_lex_state = 2}, [6766] = {.lex_state = 405, .external_lex_state = 2}, - [6767] = {.lex_state = 405, .external_lex_state = 5}, + [6767] = {.lex_state = 405, .external_lex_state = 2}, [6768] = {.lex_state = 405, .external_lex_state = 2}, - [6769] = {.lex_state = 405, .external_lex_state = 2}, + [6769] = {.lex_state = 405, .external_lex_state = 5}, [6770] = {.lex_state = 405, .external_lex_state = 2}, - [6771] = {.lex_state = 405, .external_lex_state = 2}, + [6771] = {.lex_state = 405, .external_lex_state = 5}, [6772] = {.lex_state = 405, .external_lex_state = 2}, [6773] = {.lex_state = 405, .external_lex_state = 2}, [6774] = {.lex_state = 405, .external_lex_state = 2}, - [6775] = {.lex_state = 405, .external_lex_state = 2}, - [6776] = {.lex_state = 50, .external_lex_state = 2}, - [6777] = {.lex_state = 48, .external_lex_state = 2}, + [6775] = {.lex_state = 405, .external_lex_state = 5}, + [6776] = {.lex_state = 405, .external_lex_state = 5}, + [6777] = {.lex_state = 405, .external_lex_state = 2}, [6778] = {.lex_state = 405, .external_lex_state = 2}, - [6779] = {.lex_state = 405, .external_lex_state = 2}, + [6779] = {.lex_state = 405, .external_lex_state = 5}, [6780] = {.lex_state = 405, .external_lex_state = 2}, [6781] = {.lex_state = 405, .external_lex_state = 2}, [6782] = {.lex_state = 405, .external_lex_state = 2}, [6783] = {.lex_state = 405, .external_lex_state = 2}, [6784] = {.lex_state = 405, .external_lex_state = 5}, [6785] = {.lex_state = 405, .external_lex_state = 2}, - [6786] = {.lex_state = 50, .external_lex_state = 2}, + [6786] = {.lex_state = 405, .external_lex_state = 2}, [6787] = {.lex_state = 405, .external_lex_state = 2}, [6788] = {.lex_state = 405, .external_lex_state = 2}, [6789] = {.lex_state = 405, .external_lex_state = 2}, - [6790] = {.lex_state = 405, .external_lex_state = 2}, - [6791] = {.lex_state = 405, .external_lex_state = 2}, - [6792] = {.lex_state = 405, .external_lex_state = 2}, - [6793] = {.lex_state = 405, .external_lex_state = 2}, - [6794] = {.lex_state = 405, .external_lex_state = 2}, - [6795] = {.lex_state = 405, .external_lex_state = 2}, - [6796] = {.lex_state = 405, .external_lex_state = 2}, - [6797] = {.lex_state = 405, .external_lex_state = 2}, + [6790] = {.lex_state = 50, .external_lex_state = 2}, + [6791] = {.lex_state = 405, .external_lex_state = 5}, + [6792] = {.lex_state = 50, .external_lex_state = 2}, + [6793] = {.lex_state = 405, .external_lex_state = 5}, + [6794] = {.lex_state = 50, .external_lex_state = 2}, + [6795] = {.lex_state = 405, .external_lex_state = 5}, + [6796] = {.lex_state = 50, .external_lex_state = 2}, + [6797] = {.lex_state = 50, .external_lex_state = 2}, [6798] = {.lex_state = 405, .external_lex_state = 2}, [6799] = {.lex_state = 405, .external_lex_state = 2}, - [6800] = {.lex_state = 405, .external_lex_state = 5}, + [6800] = {.lex_state = 405, .external_lex_state = 2}, [6801] = {.lex_state = 405, .external_lex_state = 2}, [6802] = {.lex_state = 405, .external_lex_state = 2}, - [6803] = {.lex_state = 405, .external_lex_state = 2}, - [6804] = {.lex_state = 50, .external_lex_state = 2}, + [6803] = {.lex_state = 405, .external_lex_state = 5}, + [6804] = {.lex_state = 405, .external_lex_state = 2}, [6805] = {.lex_state = 405, .external_lex_state = 2}, [6806] = {.lex_state = 405, .external_lex_state = 2}, - [6807] = {.lex_state = 405, .external_lex_state = 2}, - [6808] = {.lex_state = 50, .external_lex_state = 2}, + [6807] = {.lex_state = 50, .external_lex_state = 2}, + [6808] = {.lex_state = 405, .external_lex_state = 2}, [6809] = {.lex_state = 405, .external_lex_state = 2}, [6810] = {.lex_state = 405, .external_lex_state = 2}, - [6811] = {.lex_state = 405, .external_lex_state = 2}, + [6811] = {.lex_state = 405, .external_lex_state = 5}, [6812] = {.lex_state = 405, .external_lex_state = 2}, - [6813] = {.lex_state = 405, .external_lex_state = 2}, - [6814] = {.lex_state = 405, .external_lex_state = 2}, - [6815] = {.lex_state = 50, .external_lex_state = 2}, + [6813] = {.lex_state = 50, .external_lex_state = 2}, + [6814] = {.lex_state = 50, .external_lex_state = 2}, + [6815] = {.lex_state = 405, .external_lex_state = 2}, [6816] = {.lex_state = 405, .external_lex_state = 2}, [6817] = {.lex_state = 405, .external_lex_state = 2}, [6818] = {.lex_state = 405, .external_lex_state = 2}, [6819] = {.lex_state = 405, .external_lex_state = 2}, - [6820] = {.lex_state = 50, .external_lex_state = 2}, - [6821] = {.lex_state = 405, .external_lex_state = 2}, + [6820] = {.lex_state = 405, .external_lex_state = 2}, + [6821] = {.lex_state = 405, .external_lex_state = 5}, [6822] = {.lex_state = 405, .external_lex_state = 2}, - [6823] = {.lex_state = 405, .external_lex_state = 5}, + [6823] = {.lex_state = 405, .external_lex_state = 2}, [6824] = {.lex_state = 405, .external_lex_state = 2}, - [6825] = {.lex_state = 405, .external_lex_state = 5}, - [6826] = {.lex_state = 405, .external_lex_state = 5}, + [6825] = {.lex_state = 405, .external_lex_state = 2}, + [6826] = {.lex_state = 50, .external_lex_state = 2}, [6827] = {.lex_state = 405, .external_lex_state = 2}, - [6828] = {.lex_state = 405, .external_lex_state = 2}, + [6828] = {.lex_state = 49, .external_lex_state = 2}, [6829] = {.lex_state = 405, .external_lex_state = 2}, [6830] = {.lex_state = 405, .external_lex_state = 2}, [6831] = {.lex_state = 405, .external_lex_state = 2}, [6832] = {.lex_state = 405, .external_lex_state = 2}, [6833] = {.lex_state = 405, .external_lex_state = 2}, [6834] = {.lex_state = 405, .external_lex_state = 2}, - [6835] = {.lex_state = 405, .external_lex_state = 5}, + [6835] = {.lex_state = 405, .external_lex_state = 2}, [6836] = {.lex_state = 405, .external_lex_state = 5}, [6837] = {.lex_state = 405, .external_lex_state = 2}, [6838] = {.lex_state = 405, .external_lex_state = 2}, [6839] = {.lex_state = 405, .external_lex_state = 2}, - [6840] = {.lex_state = 405, .external_lex_state = 5}, - [6841] = {.lex_state = 405, .external_lex_state = 5}, - [6842] = {.lex_state = 405, .external_lex_state = 2}, + [6840] = {.lex_state = 405, .external_lex_state = 2}, + [6841] = {.lex_state = 405, .external_lex_state = 2}, + [6842] = {.lex_state = 50, .external_lex_state = 2}, [6843] = {.lex_state = 405, .external_lex_state = 2}, - [6844] = {.lex_state = 48, .external_lex_state = 2}, - [6845] = {.lex_state = 50, .external_lex_state = 2}, - [6846] = {.lex_state = 405, .external_lex_state = 2}, + [6844] = {.lex_state = 405, .external_lex_state = 2}, + [6845] = {.lex_state = 405, .external_lex_state = 2}, + [6846] = {.lex_state = 405, .external_lex_state = 5}, [6847] = {.lex_state = 405, .external_lex_state = 2}, [6848] = {.lex_state = 405, .external_lex_state = 2}, [6849] = {.lex_state = 405, .external_lex_state = 2}, @@ -28991,153 +29055,153 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6854] = {.lex_state = 405, .external_lex_state = 2}, [6855] = {.lex_state = 405, .external_lex_state = 2}, [6856] = {.lex_state = 405, .external_lex_state = 2}, - [6857] = {.lex_state = 405, .external_lex_state = 2}, - [6858] = {.lex_state = 405, .external_lex_state = 5}, - [6859] = {.lex_state = 405, .external_lex_state = 5}, + [6857] = {.lex_state = 50, .external_lex_state = 2}, + [6858] = {.lex_state = 405, .external_lex_state = 2}, + [6859] = {.lex_state = 405, .external_lex_state = 2}, [6860] = {.lex_state = 405, .external_lex_state = 2}, [6861] = {.lex_state = 405, .external_lex_state = 2}, [6862] = {.lex_state = 405, .external_lex_state = 2}, [6863] = {.lex_state = 405, .external_lex_state = 2}, [6864] = {.lex_state = 405, .external_lex_state = 2}, - [6865] = {.lex_state = 405, .external_lex_state = 5}, + [6865] = {.lex_state = 405, .external_lex_state = 2}, [6866] = {.lex_state = 405, .external_lex_state = 2}, [6867] = {.lex_state = 405, .external_lex_state = 2}, [6868] = {.lex_state = 405, .external_lex_state = 2}, [6869] = {.lex_state = 405, .external_lex_state = 2}, [6870] = {.lex_state = 405, .external_lex_state = 2}, - [6871] = {.lex_state = 405, .external_lex_state = 2}, - [6872] = {.lex_state = 405, .external_lex_state = 5}, - [6873] = {.lex_state = 405, .external_lex_state = 2}, - [6874] = {.lex_state = 405, .external_lex_state = 2}, - [6875] = {.lex_state = 405, .external_lex_state = 2}, + [6871] = {.lex_state = 50, .external_lex_state = 2}, + [6872] = {.lex_state = 405, .external_lex_state = 2}, + [6873] = {.lex_state = 50, .external_lex_state = 2}, + [6874] = {.lex_state = 50, .external_lex_state = 2}, + [6875] = {.lex_state = 50, .external_lex_state = 2}, [6876] = {.lex_state = 405, .external_lex_state = 2}, [6877] = {.lex_state = 405, .external_lex_state = 2}, - [6878] = {.lex_state = 405, .external_lex_state = 2}, - [6879] = {.lex_state = 50, .external_lex_state = 2}, - [6880] = {.lex_state = 405, .external_lex_state = 2}, - [6881] = {.lex_state = 50, .external_lex_state = 2}, + [6878] = {.lex_state = 405, .external_lex_state = 5}, + [6879] = {.lex_state = 405, .external_lex_state = 2}, + [6880] = {.lex_state = 50, .external_lex_state = 2}, + [6881] = {.lex_state = 405, .external_lex_state = 2}, [6882] = {.lex_state = 405, .external_lex_state = 2}, [6883] = {.lex_state = 405, .external_lex_state = 2}, [6884] = {.lex_state = 405, .external_lex_state = 2}, - [6885] = {.lex_state = 50, .external_lex_state = 2}, + [6885] = {.lex_state = 405, .external_lex_state = 2}, [6886] = {.lex_state = 405, .external_lex_state = 2}, [6887] = {.lex_state = 50, .external_lex_state = 2}, [6888] = {.lex_state = 405, .external_lex_state = 2}, - [6889] = {.lex_state = 405, .external_lex_state = 2}, - [6890] = {.lex_state = 405, .external_lex_state = 2}, + [6889] = {.lex_state = 50, .external_lex_state = 2}, + [6890] = {.lex_state = 50, .external_lex_state = 2}, [6891] = {.lex_state = 405, .external_lex_state = 2}, - [6892] = {.lex_state = 405, .external_lex_state = 5}, - [6893] = {.lex_state = 405, .external_lex_state = 5}, - [6894] = {.lex_state = 405, .external_lex_state = 2}, + [6892] = {.lex_state = 405, .external_lex_state = 2}, + [6893] = {.lex_state = 50, .external_lex_state = 2}, + [6894] = {.lex_state = 50, .external_lex_state = 2}, [6895] = {.lex_state = 405, .external_lex_state = 2}, [6896] = {.lex_state = 405, .external_lex_state = 2}, - [6897] = {.lex_state = 405, .external_lex_state = 2}, + [6897] = {.lex_state = 50, .external_lex_state = 2}, [6898] = {.lex_state = 405, .external_lex_state = 2}, [6899] = {.lex_state = 405, .external_lex_state = 2}, [6900] = {.lex_state = 50, .external_lex_state = 2}, [6901] = {.lex_state = 405, .external_lex_state = 2}, [6902] = {.lex_state = 405, .external_lex_state = 2}, [6903] = {.lex_state = 405, .external_lex_state = 2}, - [6904] = {.lex_state = 405, .external_lex_state = 2}, + [6904] = {.lex_state = 48, .external_lex_state = 2}, [6905] = {.lex_state = 405, .external_lex_state = 2}, - [6906] = {.lex_state = 405, .external_lex_state = 2}, + [6906] = {.lex_state = 50, .external_lex_state = 2}, [6907] = {.lex_state = 405, .external_lex_state = 2}, - [6908] = {.lex_state = 405, .external_lex_state = 2}, - [6909] = {.lex_state = 405, .external_lex_state = 5}, + [6908] = {.lex_state = 50, .external_lex_state = 2}, + [6909] = {.lex_state = 48, .external_lex_state = 2}, [6910] = {.lex_state = 405, .external_lex_state = 2}, [6911] = {.lex_state = 405, .external_lex_state = 2}, [6912] = {.lex_state = 405, .external_lex_state = 2}, [6913] = {.lex_state = 405, .external_lex_state = 2}, [6914] = {.lex_state = 405, .external_lex_state = 2}, - [6915] = {.lex_state = 405, .external_lex_state = 5}, - [6916] = {.lex_state = 405, .external_lex_state = 2}, + [6915] = {.lex_state = 405, .external_lex_state = 2}, + [6916] = {.lex_state = 48, .external_lex_state = 2}, [6917] = {.lex_state = 405, .external_lex_state = 2}, [6918] = {.lex_state = 405, .external_lex_state = 2}, [6919] = {.lex_state = 405, .external_lex_state = 2}, [6920] = {.lex_state = 405, .external_lex_state = 2}, - [6921] = {.lex_state = 48, .external_lex_state = 2}, + [6921] = {.lex_state = 2, .external_lex_state = 2}, [6922] = {.lex_state = 405, .external_lex_state = 2}, - [6923] = {.lex_state = 405, .external_lex_state = 2}, + [6923] = {.lex_state = 405, .external_lex_state = 5}, [6924] = {.lex_state = 405, .external_lex_state = 2}, [6925] = {.lex_state = 405, .external_lex_state = 2}, [6926] = {.lex_state = 405, .external_lex_state = 2}, - [6927] = {.lex_state = 48, .external_lex_state = 2}, - [6928] = {.lex_state = 405, .external_lex_state = 2}, + [6927] = {.lex_state = 405, .external_lex_state = 2}, + [6928] = {.lex_state = 405, .external_lex_state = 5}, [6929] = {.lex_state = 405, .external_lex_state = 2}, [6930] = {.lex_state = 405, .external_lex_state = 2}, [6931] = {.lex_state = 405, .external_lex_state = 5}, - [6932] = {.lex_state = 405, .external_lex_state = 5}, - [6933] = {.lex_state = 405, .external_lex_state = 2}, + [6932] = {.lex_state = 405, .external_lex_state = 2}, + [6933] = {.lex_state = 405, .external_lex_state = 5}, [6934] = {.lex_state = 405, .external_lex_state = 2}, - [6935] = {.lex_state = 405, .external_lex_state = 5}, + [6935] = {.lex_state = 405, .external_lex_state = 2}, [6936] = {.lex_state = 405, .external_lex_state = 2}, [6937] = {.lex_state = 405, .external_lex_state = 5}, - [6938] = {.lex_state = 50, .external_lex_state = 2}, + [6938] = {.lex_state = 405, .external_lex_state = 2}, [6939] = {.lex_state = 405, .external_lex_state = 2}, - [6940] = {.lex_state = 405, .external_lex_state = 2}, + [6940] = {.lex_state = 405, .external_lex_state = 5}, [6941] = {.lex_state = 405, .external_lex_state = 2}, - [6942] = {.lex_state = 405, .external_lex_state = 2}, - [6943] = {.lex_state = 405, .external_lex_state = 2}, + [6942] = {.lex_state = 50, .external_lex_state = 2}, + [6943] = {.lex_state = 405, .external_lex_state = 5}, [6944] = {.lex_state = 405, .external_lex_state = 2}, - [6945] = {.lex_state = 405, .external_lex_state = 2}, + [6945] = {.lex_state = 405, .external_lex_state = 5}, [6946] = {.lex_state = 405, .external_lex_state = 2}, - [6947] = {.lex_state = 50, .external_lex_state = 2}, - [6948] = {.lex_state = 405, .external_lex_state = 2}, - [6949] = {.lex_state = 405, .external_lex_state = 2}, + [6947] = {.lex_state = 405, .external_lex_state = 2}, + [6948] = {.lex_state = 405, .external_lex_state = 5}, + [6949] = {.lex_state = 405, .external_lex_state = 5}, [6950] = {.lex_state = 405, .external_lex_state = 2}, - [6951] = {.lex_state = 405, .external_lex_state = 2}, + [6951] = {.lex_state = 48, .external_lex_state = 2}, [6952] = {.lex_state = 405, .external_lex_state = 2}, [6953] = {.lex_state = 405, .external_lex_state = 2}, - [6954] = {.lex_state = 405, .external_lex_state = 5}, - [6955] = {.lex_state = 405, .external_lex_state = 5}, - [6956] = {.lex_state = 405, .external_lex_state = 5}, - [6957] = {.lex_state = 405, .external_lex_state = 5}, + [6954] = {.lex_state = 405, .external_lex_state = 2}, + [6955] = {.lex_state = 48, .external_lex_state = 2}, + [6956] = {.lex_state = 405, .external_lex_state = 2}, + [6957] = {.lex_state = 405, .external_lex_state = 2}, [6958] = {.lex_state = 405, .external_lex_state = 2}, [6959] = {.lex_state = 405, .external_lex_state = 2}, [6960] = {.lex_state = 405, .external_lex_state = 2}, [6961] = {.lex_state = 405, .external_lex_state = 2}, [6962] = {.lex_state = 405, .external_lex_state = 2}, [6963] = {.lex_state = 405, .external_lex_state = 2}, - [6964] = {.lex_state = 405, .external_lex_state = 2}, - [6965] = {.lex_state = 405, .external_lex_state = 5}, + [6964] = {.lex_state = 405, .external_lex_state = 5}, + [6965] = {.lex_state = 405, .external_lex_state = 2}, [6966] = {.lex_state = 405, .external_lex_state = 2}, - [6967] = {.lex_state = 405, .external_lex_state = 2}, + [6967] = {.lex_state = 405, .external_lex_state = 5}, [6968] = {.lex_state = 405, .external_lex_state = 2}, - [6969] = {.lex_state = 405, .external_lex_state = 2}, - [6970] = {.lex_state = 405, .external_lex_state = 2}, + [6969] = {.lex_state = 405, .external_lex_state = 5}, + [6970] = {.lex_state = 405, .external_lex_state = 5}, [6971] = {.lex_state = 405, .external_lex_state = 2}, [6972] = {.lex_state = 405, .external_lex_state = 2}, [6973] = {.lex_state = 405, .external_lex_state = 2}, - [6974] = {.lex_state = 48, .external_lex_state = 2}, + [6974] = {.lex_state = 405, .external_lex_state = 2}, [6975] = {.lex_state = 405, .external_lex_state = 2}, [6976] = {.lex_state = 405, .external_lex_state = 2}, - [6977] = {.lex_state = 405, .external_lex_state = 5}, + [6977] = {.lex_state = 405, .external_lex_state = 2}, [6978] = {.lex_state = 405, .external_lex_state = 2}, - [6979] = {.lex_state = 81, .external_lex_state = 2}, + [6979] = {.lex_state = 405, .external_lex_state = 2}, [6980] = {.lex_state = 405, .external_lex_state = 2}, [6981] = {.lex_state = 405, .external_lex_state = 2}, [6982] = {.lex_state = 405, .external_lex_state = 2}, [6983] = {.lex_state = 405, .external_lex_state = 2}, [6984] = {.lex_state = 405, .external_lex_state = 2}, - [6985] = {.lex_state = 405, .external_lex_state = 5}, + [6985] = {.lex_state = 405, .external_lex_state = 2}, [6986] = {.lex_state = 405, .external_lex_state = 2}, [6987] = {.lex_state = 405, .external_lex_state = 2}, [6988] = {.lex_state = 405, .external_lex_state = 2}, [6989] = {.lex_state = 405, .external_lex_state = 2}, - [6990] = {.lex_state = 405, .external_lex_state = 2}, - [6991] = {.lex_state = 405, .external_lex_state = 2}, - [6992] = {.lex_state = 405, .external_lex_state = 5}, + [6990] = {.lex_state = 405, .external_lex_state = 5}, + [6991] = {.lex_state = 405, .external_lex_state = 5}, + [6992] = {.lex_state = 405, .external_lex_state = 2}, [6993] = {.lex_state = 405, .external_lex_state = 2}, [6994] = {.lex_state = 405, .external_lex_state = 2}, [6995] = {.lex_state = 405, .external_lex_state = 2}, - [6996] = {.lex_state = 50, .external_lex_state = 2}, - [6997] = {.lex_state = 405, .external_lex_state = 2}, - [6998] = {.lex_state = 405, .external_lex_state = 2}, - [6999] = {.lex_state = 405, .external_lex_state = 2}, - [7000] = {.lex_state = 405, .external_lex_state = 2}, + [6996] = {.lex_state = 405, .external_lex_state = 2}, + [6997] = {.lex_state = 405, .external_lex_state = 5}, + [6998] = {.lex_state = 405, .external_lex_state = 5}, + [6999] = {.lex_state = 405, .external_lex_state = 5}, + [7000] = {.lex_state = 50, .external_lex_state = 2}, [7001] = {.lex_state = 405, .external_lex_state = 2}, [7002] = {.lex_state = 405, .external_lex_state = 2}, - [7003] = {.lex_state = 405, .external_lex_state = 2}, + [7003] = {.lex_state = 24, .external_lex_state = 2}, [7004] = {.lex_state = 405, .external_lex_state = 2}, [7005] = {.lex_state = 405, .external_lex_state = 2}, [7006] = {.lex_state = 405, .external_lex_state = 2}, @@ -29145,201 +29209,201 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7008] = {.lex_state = 405, .external_lex_state = 2}, [7009] = {.lex_state = 405, .external_lex_state = 2}, [7010] = {.lex_state = 405, .external_lex_state = 2}, - [7011] = {.lex_state = 405, .external_lex_state = 2}, + [7011] = {.lex_state = 50, .external_lex_state = 2}, [7012] = {.lex_state = 405, .external_lex_state = 2}, [7013] = {.lex_state = 405, .external_lex_state = 2}, [7014] = {.lex_state = 405, .external_lex_state = 2}, [7015] = {.lex_state = 405, .external_lex_state = 2}, - [7016] = {.lex_state = 50, .external_lex_state = 2}, + [7016] = {.lex_state = 405, .external_lex_state = 2}, [7017] = {.lex_state = 405, .external_lex_state = 2}, - [7018] = {.lex_state = 405, .external_lex_state = 2}, + [7018] = {.lex_state = 48, .external_lex_state = 2}, [7019] = {.lex_state = 405, .external_lex_state = 2}, [7020] = {.lex_state = 405, .external_lex_state = 2}, - [7021] = {.lex_state = 3, .external_lex_state = 10}, + [7021] = {.lex_state = 405, .external_lex_state = 2}, [7022] = {.lex_state = 50, .external_lex_state = 2}, [7023] = {.lex_state = 50, .external_lex_state = 2}, [7024] = {.lex_state = 405, .external_lex_state = 2}, - [7025] = {.lex_state = 49, .external_lex_state = 2}, - [7026] = {.lex_state = 49, .external_lex_state = 2}, - [7027] = {.lex_state = 405, .external_lex_state = 2}, + [7025] = {.lex_state = 3, .external_lex_state = 10}, + [7026] = {.lex_state = 50, .external_lex_state = 2}, + [7027] = {.lex_state = 50, .external_lex_state = 2}, [7028] = {.lex_state = 405, .external_lex_state = 2}, [7029] = {.lex_state = 50, .external_lex_state = 2}, [7030] = {.lex_state = 405, .external_lex_state = 2}, - [7031] = {.lex_state = 405, .external_lex_state = 2}, + [7031] = {.lex_state = 50, .external_lex_state = 2}, [7032] = {.lex_state = 405, .external_lex_state = 2}, - [7033] = {.lex_state = 405, .external_lex_state = 2}, + [7033] = {.lex_state = 50, .external_lex_state = 2}, [7034] = {.lex_state = 405, .external_lex_state = 2}, - [7035] = {.lex_state = 50, .external_lex_state = 2}, - [7036] = {.lex_state = 405, .external_lex_state = 2}, + [7035] = {.lex_state = 405, .external_lex_state = 2}, + [7036] = {.lex_state = 50, .external_lex_state = 2}, [7037] = {.lex_state = 405, .external_lex_state = 2}, [7038] = {.lex_state = 50, .external_lex_state = 2}, [7039] = {.lex_state = 50, .external_lex_state = 2}, [7040] = {.lex_state = 405, .external_lex_state = 2}, [7041] = {.lex_state = 405, .external_lex_state = 2}, - [7042] = {.lex_state = 405, .external_lex_state = 2}, + [7042] = {.lex_state = 50, .external_lex_state = 2}, [7043] = {.lex_state = 50, .external_lex_state = 2}, - [7044] = {.lex_state = 405, .external_lex_state = 2}, + [7044] = {.lex_state = 50, .external_lex_state = 2}, [7045] = {.lex_state = 50, .external_lex_state = 2}, - [7046] = {.lex_state = 405, .external_lex_state = 2}, + [7046] = {.lex_state = 50, .external_lex_state = 2}, [7047] = {.lex_state = 50, .external_lex_state = 2}, - [7048] = {.lex_state = 405, .external_lex_state = 2}, - [7049] = {.lex_state = 405, .external_lex_state = 2}, + [7048] = {.lex_state = 3, .external_lex_state = 10}, + [7049] = {.lex_state = 50, .external_lex_state = 2}, [7050] = {.lex_state = 405, .external_lex_state = 2}, [7051] = {.lex_state = 405, .external_lex_state = 2}, - [7052] = {.lex_state = 405, .external_lex_state = 2}, + [7052] = {.lex_state = 82, .external_lex_state = 2}, [7053] = {.lex_state = 405, .external_lex_state = 2}, [7054] = {.lex_state = 405, .external_lex_state = 2}, [7055] = {.lex_state = 405, .external_lex_state = 2}, - [7056] = {.lex_state = 50, .external_lex_state = 2}, + [7056] = {.lex_state = 405, .external_lex_state = 2}, [7057] = {.lex_state = 405, .external_lex_state = 2}, - [7058] = {.lex_state = 82, .external_lex_state = 2}, - [7059] = {.lex_state = 50, .external_lex_state = 2}, - [7060] = {.lex_state = 405, .external_lex_state = 2}, + [7058] = {.lex_state = 405, .external_lex_state = 2}, + [7059] = {.lex_state = 405, .external_lex_state = 2}, + [7060] = {.lex_state = 50, .external_lex_state = 2}, [7061] = {.lex_state = 405, .external_lex_state = 2}, - [7062] = {.lex_state = 50, .external_lex_state = 2}, - [7063] = {.lex_state = 50, .external_lex_state = 2}, - [7064] = {.lex_state = 50, .external_lex_state = 2}, - [7065] = {.lex_state = 50, .external_lex_state = 2}, - [7066] = {.lex_state = 48, .external_lex_state = 2}, - [7067] = {.lex_state = 50, .external_lex_state = 2}, + [7062] = {.lex_state = 405, .external_lex_state = 2}, + [7063] = {.lex_state = 405, .external_lex_state = 2}, + [7064] = {.lex_state = 49, .external_lex_state = 2}, + [7065] = {.lex_state = 405, .external_lex_state = 2}, + [7066] = {.lex_state = 405, .external_lex_state = 2}, + [7067] = {.lex_state = 405, .external_lex_state = 2}, [7068] = {.lex_state = 405, .external_lex_state = 2}, [7069] = {.lex_state = 405, .external_lex_state = 2}, [7070] = {.lex_state = 405, .external_lex_state = 2}, [7071] = {.lex_state = 405, .external_lex_state = 2}, [7072] = {.lex_state = 405, .external_lex_state = 2}, - [7073] = {.lex_state = 50, .external_lex_state = 2}, + [7073] = {.lex_state = 405, .external_lex_state = 2}, [7074] = {.lex_state = 50, .external_lex_state = 2}, [7075] = {.lex_state = 50, .external_lex_state = 2}, - [7076] = {.lex_state = 50, .external_lex_state = 2}, - [7077] = {.lex_state = 3, .external_lex_state = 10}, + [7076] = {.lex_state = 405, .external_lex_state = 2}, + [7077] = {.lex_state = 50, .external_lex_state = 2}, [7078] = {.lex_state = 405, .external_lex_state = 2}, [7079] = {.lex_state = 50, .external_lex_state = 2}, [7080] = {.lex_state = 405, .external_lex_state = 2}, [7081] = {.lex_state = 405, .external_lex_state = 2}, - [7082] = {.lex_state = 405, .external_lex_state = 2}, + [7082] = {.lex_state = 48, .external_lex_state = 2}, [7083] = {.lex_state = 405, .external_lex_state = 2}, - [7084] = {.lex_state = 405, .external_lex_state = 2}, + [7084] = {.lex_state = 50, .external_lex_state = 2}, [7085] = {.lex_state = 50, .external_lex_state = 2}, [7086] = {.lex_state = 405, .external_lex_state = 2}, - [7087] = {.lex_state = 3, .external_lex_state = 10}, + [7087] = {.lex_state = 405, .external_lex_state = 2}, [7088] = {.lex_state = 50, .external_lex_state = 2}, - [7089] = {.lex_state = 50, .external_lex_state = 2}, + [7089] = {.lex_state = 405, .external_lex_state = 2}, [7090] = {.lex_state = 405, .external_lex_state = 2}, - [7091] = {.lex_state = 50, .external_lex_state = 2}, - [7092] = {.lex_state = 405, .external_lex_state = 2}, - [7093] = {.lex_state = 405, .external_lex_state = 2}, + [7091] = {.lex_state = 3, .external_lex_state = 10}, + [7092] = {.lex_state = 50, .external_lex_state = 2}, + [7093] = {.lex_state = 50, .external_lex_state = 2}, [7094] = {.lex_state = 405, .external_lex_state = 2}, [7095] = {.lex_state = 50, .external_lex_state = 2}, [7096] = {.lex_state = 405, .external_lex_state = 2}, [7097] = {.lex_state = 405, .external_lex_state = 2}, [7098] = {.lex_state = 405, .external_lex_state = 2}, - [7099] = {.lex_state = 405, .external_lex_state = 2}, - [7100] = {.lex_state = 405, .external_lex_state = 2}, - [7101] = {.lex_state = 50, .external_lex_state = 2}, - [7102] = {.lex_state = 405, .external_lex_state = 2}, - [7103] = {.lex_state = 405, .external_lex_state = 2}, + [7099] = {.lex_state = 50, .external_lex_state = 2}, + [7100] = {.lex_state = 50, .external_lex_state = 2}, + [7101] = {.lex_state = 405, .external_lex_state = 2}, + [7102] = {.lex_state = 50, .external_lex_state = 2}, + [7103] = {.lex_state = 50, .external_lex_state = 2}, [7104] = {.lex_state = 50, .external_lex_state = 2}, - [7105] = {.lex_state = 405, .external_lex_state = 2}, + [7105] = {.lex_state = 50, .external_lex_state = 2}, [7106] = {.lex_state = 405, .external_lex_state = 2}, [7107] = {.lex_state = 405, .external_lex_state = 2}, - [7108] = {.lex_state = 405, .external_lex_state = 2}, - [7109] = {.lex_state = 50, .external_lex_state = 2}, - [7110] = {.lex_state = 405, .external_lex_state = 2}, + [7108] = {.lex_state = 50, .external_lex_state = 2}, + [7109] = {.lex_state = 405, .external_lex_state = 2}, + [7110] = {.lex_state = 3, .external_lex_state = 10}, [7111] = {.lex_state = 50, .external_lex_state = 2}, [7112] = {.lex_state = 405, .external_lex_state = 2}, - [7113] = {.lex_state = 405, .external_lex_state = 2}, + [7113] = {.lex_state = 50, .external_lex_state = 2}, [7114] = {.lex_state = 405, .external_lex_state = 2}, - [7115] = {.lex_state = 405, .external_lex_state = 2}, + [7115] = {.lex_state = 50, .external_lex_state = 2}, [7116] = {.lex_state = 405, .external_lex_state = 2}, - [7117] = {.lex_state = 49, .external_lex_state = 2}, + [7117] = {.lex_state = 405, .external_lex_state = 2}, [7118] = {.lex_state = 405, .external_lex_state = 2}, - [7119] = {.lex_state = 24, .external_lex_state = 2}, + [7119] = {.lex_state = 50, .external_lex_state = 2}, [7120] = {.lex_state = 405, .external_lex_state = 2}, [7121] = {.lex_state = 405, .external_lex_state = 2}, - [7122] = {.lex_state = 50, .external_lex_state = 2}, + [7122] = {.lex_state = 405, .external_lex_state = 2}, [7123] = {.lex_state = 405, .external_lex_state = 2}, [7124] = {.lex_state = 405, .external_lex_state = 2}, - [7125] = {.lex_state = 48, .external_lex_state = 2}, - [7126] = {.lex_state = 405, .external_lex_state = 2}, - [7127] = {.lex_state = 24, .external_lex_state = 2}, + [7125] = {.lex_state = 50, .external_lex_state = 2}, + [7126] = {.lex_state = 50, .external_lex_state = 2}, + [7127] = {.lex_state = 50, .external_lex_state = 2}, [7128] = {.lex_state = 405, .external_lex_state = 2}, [7129] = {.lex_state = 405, .external_lex_state = 2}, [7130] = {.lex_state = 405, .external_lex_state = 2}, - [7131] = {.lex_state = 405, .external_lex_state = 2}, + [7131] = {.lex_state = 50, .external_lex_state = 2}, [7132] = {.lex_state = 405, .external_lex_state = 2}, [7133] = {.lex_state = 405, .external_lex_state = 2}, - [7134] = {.lex_state = 405, .external_lex_state = 2}, - [7135] = {.lex_state = 405, .external_lex_state = 2}, + [7134] = {.lex_state = 50, .external_lex_state = 2}, + [7135] = {.lex_state = 50, .external_lex_state = 2}, [7136] = {.lex_state = 405, .external_lex_state = 2}, - [7137] = {.lex_state = 405, .external_lex_state = 2}, - [7138] = {.lex_state = 405, .external_lex_state = 2}, + [7137] = {.lex_state = 50, .external_lex_state = 2}, + [7138] = {.lex_state = 50, .external_lex_state = 2}, [7139] = {.lex_state = 405, .external_lex_state = 2}, [7140] = {.lex_state = 405, .external_lex_state = 2}, - [7141] = {.lex_state = 405, .external_lex_state = 2}, - [7142] = {.lex_state = 405, .external_lex_state = 2}, - [7143] = {.lex_state = 405, .external_lex_state = 2}, - [7144] = {.lex_state = 50, .external_lex_state = 2}, + [7141] = {.lex_state = 50, .external_lex_state = 2}, + [7142] = {.lex_state = 50, .external_lex_state = 2}, + [7143] = {.lex_state = 48, .external_lex_state = 2}, + [7144] = {.lex_state = 405, .external_lex_state = 2}, [7145] = {.lex_state = 405, .external_lex_state = 2}, [7146] = {.lex_state = 405, .external_lex_state = 2}, [7147] = {.lex_state = 405, .external_lex_state = 2}, [7148] = {.lex_state = 50, .external_lex_state = 2}, [7149] = {.lex_state = 50, .external_lex_state = 2}, - [7150] = {.lex_state = 50, .external_lex_state = 2}, - [7151] = {.lex_state = 405, .external_lex_state = 2}, - [7152] = {.lex_state = 50, .external_lex_state = 2}, - [7153] = {.lex_state = 405, .external_lex_state = 2}, + [7150] = {.lex_state = 405, .external_lex_state = 2}, + [7151] = {.lex_state = 50, .external_lex_state = 2}, + [7152] = {.lex_state = 405, .external_lex_state = 2}, + [7153] = {.lex_state = 50, .external_lex_state = 2}, [7154] = {.lex_state = 50, .external_lex_state = 2}, - [7155] = {.lex_state = 405, .external_lex_state = 2}, - [7156] = {.lex_state = 405, .external_lex_state = 2}, - [7157] = {.lex_state = 50, .external_lex_state = 2}, - [7158] = {.lex_state = 405, .external_lex_state = 2}, - [7159] = {.lex_state = 50, .external_lex_state = 2}, + [7155] = {.lex_state = 50, .external_lex_state = 2}, + [7156] = {.lex_state = 50, .external_lex_state = 2}, + [7157] = {.lex_state = 405, .external_lex_state = 2}, + [7158] = {.lex_state = 50, .external_lex_state = 2}, + [7159] = {.lex_state = 405, .external_lex_state = 2}, [7160] = {.lex_state = 405, .external_lex_state = 2}, - [7161] = {.lex_state = 405, .external_lex_state = 2}, + [7161] = {.lex_state = 50, .external_lex_state = 2}, [7162] = {.lex_state = 405, .external_lex_state = 2}, [7163] = {.lex_state = 50, .external_lex_state = 2}, - [7164] = {.lex_state = 50, .external_lex_state = 2}, - [7165] = {.lex_state = 50, .external_lex_state = 2}, + [7164] = {.lex_state = 405, .external_lex_state = 2}, + [7165] = {.lex_state = 405, .external_lex_state = 2}, [7166] = {.lex_state = 405, .external_lex_state = 2}, - [7167] = {.lex_state = 405, .external_lex_state = 2}, - [7168] = {.lex_state = 405, .external_lex_state = 2}, + [7167] = {.lex_state = 50, .external_lex_state = 2}, + [7168] = {.lex_state = 49, .external_lex_state = 2}, [7169] = {.lex_state = 50, .external_lex_state = 2}, [7170] = {.lex_state = 50, .external_lex_state = 2}, [7171] = {.lex_state = 405, .external_lex_state = 2}, [7172] = {.lex_state = 405, .external_lex_state = 2}, - [7173] = {.lex_state = 405, .external_lex_state = 2}, - [7174] = {.lex_state = 405, .external_lex_state = 2}, + [7173] = {.lex_state = 50, .external_lex_state = 2}, + [7174] = {.lex_state = 50, .external_lex_state = 2}, [7175] = {.lex_state = 50, .external_lex_state = 2}, - [7176] = {.lex_state = 405, .external_lex_state = 2}, - [7177] = {.lex_state = 405, .external_lex_state = 2}, + [7176] = {.lex_state = 50, .external_lex_state = 2}, + [7177] = {.lex_state = 50, .external_lex_state = 2}, [7178] = {.lex_state = 405, .external_lex_state = 2}, [7179] = {.lex_state = 405, .external_lex_state = 2}, [7180] = {.lex_state = 405, .external_lex_state = 2}, - [7181] = {.lex_state = 405, .external_lex_state = 2}, + [7181] = {.lex_state = 50, .external_lex_state = 2}, [7182] = {.lex_state = 405, .external_lex_state = 2}, [7183] = {.lex_state = 405, .external_lex_state = 2}, [7184] = {.lex_state = 405, .external_lex_state = 2}, [7185] = {.lex_state = 405, .external_lex_state = 2}, [7186] = {.lex_state = 405, .external_lex_state = 2}, - [7187] = {.lex_state = 405, .external_lex_state = 2}, + [7187] = {.lex_state = 50, .external_lex_state = 2}, [7188] = {.lex_state = 405, .external_lex_state = 2}, [7189] = {.lex_state = 50, .external_lex_state = 2}, - [7190] = {.lex_state = 50, .external_lex_state = 2}, + [7190] = {.lex_state = 405, .external_lex_state = 2}, [7191] = {.lex_state = 405, .external_lex_state = 2}, [7192] = {.lex_state = 405, .external_lex_state = 2}, - [7193] = {.lex_state = 49, .external_lex_state = 2}, - [7194] = {.lex_state = 50, .external_lex_state = 2}, + [7193] = {.lex_state = 405, .external_lex_state = 2}, + [7194] = {.lex_state = 405, .external_lex_state = 2}, [7195] = {.lex_state = 405, .external_lex_state = 2}, - [7196] = {.lex_state = 50, .external_lex_state = 2}, - [7197] = {.lex_state = 405, .external_lex_state = 2}, - [7198] = {.lex_state = 50, .external_lex_state = 2}, + [7196] = {.lex_state = 405, .external_lex_state = 2}, + [7197] = {.lex_state = 49, .external_lex_state = 2}, + [7198] = {.lex_state = 405, .external_lex_state = 2}, [7199] = {.lex_state = 405, .external_lex_state = 2}, [7200] = {.lex_state = 405, .external_lex_state = 2}, [7201] = {.lex_state = 405, .external_lex_state = 2}, [7202] = {.lex_state = 405, .external_lex_state = 2}, [7203] = {.lex_state = 405, .external_lex_state = 2}, [7204] = {.lex_state = 405, .external_lex_state = 2}, - [7205] = {.lex_state = 50, .external_lex_state = 2}, + [7205] = {.lex_state = 405, .external_lex_state = 2}, [7206] = {.lex_state = 405, .external_lex_state = 2}, [7207] = {.lex_state = 405, .external_lex_state = 2}, [7208] = {.lex_state = 405, .external_lex_state = 2}, @@ -29349,120 +29413,120 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7212] = {.lex_state = 405, .external_lex_state = 2}, [7213] = {.lex_state = 405, .external_lex_state = 2}, [7214] = {.lex_state = 405, .external_lex_state = 2}, - [7215] = {.lex_state = 50, .external_lex_state = 2}, - [7216] = {.lex_state = 50, .external_lex_state = 2}, + [7215] = {.lex_state = 405, .external_lex_state = 2}, + [7216] = {.lex_state = 405, .external_lex_state = 2}, [7217] = {.lex_state = 405, .external_lex_state = 2}, [7218] = {.lex_state = 405, .external_lex_state = 2}, [7219] = {.lex_state = 405, .external_lex_state = 2}, - [7220] = {.lex_state = 50, .external_lex_state = 2}, + [7220] = {.lex_state = 405, .external_lex_state = 2}, [7221] = {.lex_state = 405, .external_lex_state = 2}, - [7222] = {.lex_state = 50, .external_lex_state = 2}, + [7222] = {.lex_state = 405, .external_lex_state = 2}, [7223] = {.lex_state = 405, .external_lex_state = 2}, - [7224] = {.lex_state = 50, .external_lex_state = 2}, + [7224] = {.lex_state = 405, .external_lex_state = 2}, [7225] = {.lex_state = 405, .external_lex_state = 2}, - [7226] = {.lex_state = 405, .external_lex_state = 2}, + [7226] = {.lex_state = 50, .external_lex_state = 2}, [7227] = {.lex_state = 405, .external_lex_state = 2}, - [7228] = {.lex_state = 50, .external_lex_state = 2}, + [7228] = {.lex_state = 405, .external_lex_state = 2}, [7229] = {.lex_state = 405, .external_lex_state = 2}, [7230] = {.lex_state = 405, .external_lex_state = 2}, [7231] = {.lex_state = 405, .external_lex_state = 2}, - [7232] = {.lex_state = 405, .external_lex_state = 2}, + [7232] = {.lex_state = 50, .external_lex_state = 2}, [7233] = {.lex_state = 405, .external_lex_state = 2}, [7234] = {.lex_state = 405, .external_lex_state = 2}, - [7235] = {.lex_state = 48, .external_lex_state = 2}, + [7235] = {.lex_state = 405, .external_lex_state = 2}, [7236] = {.lex_state = 405, .external_lex_state = 2}, [7237] = {.lex_state = 405, .external_lex_state = 2}, - [7238] = {.lex_state = 50, .external_lex_state = 2}, + [7238] = {.lex_state = 405, .external_lex_state = 2}, [7239] = {.lex_state = 405, .external_lex_state = 2}, [7240] = {.lex_state = 405, .external_lex_state = 2}, - [7241] = {.lex_state = 49, .external_lex_state = 2}, + [7241] = {.lex_state = 405, .external_lex_state = 2}, [7242] = {.lex_state = 405, .external_lex_state = 2}, [7243] = {.lex_state = 405, .external_lex_state = 2}, - [7244] = {.lex_state = 405, .external_lex_state = 2}, - [7245] = {.lex_state = 50, .external_lex_state = 2}, + [7244] = {.lex_state = 50, .external_lex_state = 2}, + [7245] = {.lex_state = 49, .external_lex_state = 2}, [7246] = {.lex_state = 405, .external_lex_state = 2}, [7247] = {.lex_state = 405, .external_lex_state = 2}, [7248] = {.lex_state = 405, .external_lex_state = 2}, - [7249] = {.lex_state = 405, .external_lex_state = 2}, + [7249] = {.lex_state = 24, .external_lex_state = 2}, [7250] = {.lex_state = 405, .external_lex_state = 2}, [7251] = {.lex_state = 405, .external_lex_state = 2}, - [7252] = {.lex_state = 50, .external_lex_state = 2}, - [7253] = {.lex_state = 50, .external_lex_state = 2}, - [7254] = {.lex_state = 405, .external_lex_state = 2}, - [7255] = {.lex_state = 3, .external_lex_state = 10}, + [7252] = {.lex_state = 405, .external_lex_state = 2}, + [7253] = {.lex_state = 405, .external_lex_state = 2}, + [7254] = {.lex_state = 50, .external_lex_state = 2}, + [7255] = {.lex_state = 50, .external_lex_state = 2}, [7256] = {.lex_state = 405, .external_lex_state = 2}, - [7257] = {.lex_state = 82, .external_lex_state = 2}, + [7257] = {.lex_state = 405, .external_lex_state = 2}, [7258] = {.lex_state = 405, .external_lex_state = 2}, - [7259] = {.lex_state = 49, .external_lex_state = 2}, + [7259] = {.lex_state = 50, .external_lex_state = 2}, [7260] = {.lex_state = 405, .external_lex_state = 2}, [7261] = {.lex_state = 405, .external_lex_state = 2}, - [7262] = {.lex_state = 50, .external_lex_state = 2}, + [7262] = {.lex_state = 405, .external_lex_state = 2}, [7263] = {.lex_state = 405, .external_lex_state = 2}, [7264] = {.lex_state = 405, .external_lex_state = 2}, - [7265] = {.lex_state = 50, .external_lex_state = 2}, + [7265] = {.lex_state = 405, .external_lex_state = 2}, [7266] = {.lex_state = 405, .external_lex_state = 2}, [7267] = {.lex_state = 405, .external_lex_state = 2}, [7268] = {.lex_state = 405, .external_lex_state = 2}, [7269] = {.lex_state = 405, .external_lex_state = 2}, [7270] = {.lex_state = 405, .external_lex_state = 2}, [7271] = {.lex_state = 50, .external_lex_state = 2}, - [7272] = {.lex_state = 82, .external_lex_state = 2}, + [7272] = {.lex_state = 405, .external_lex_state = 2}, [7273] = {.lex_state = 405, .external_lex_state = 2}, [7274] = {.lex_state = 405, .external_lex_state = 2}, - [7275] = {.lex_state = 50, .external_lex_state = 2}, + [7275] = {.lex_state = 405, .external_lex_state = 2}, [7276] = {.lex_state = 50, .external_lex_state = 2}, - [7277] = {.lex_state = 405, .external_lex_state = 2}, + [7277] = {.lex_state = 50, .external_lex_state = 2}, [7278] = {.lex_state = 405, .external_lex_state = 2}, - [7279] = {.lex_state = 405, .external_lex_state = 2}, + [7279] = {.lex_state = 50, .external_lex_state = 2}, [7280] = {.lex_state = 405, .external_lex_state = 2}, [7281] = {.lex_state = 405, .external_lex_state = 2}, - [7282] = {.lex_state = 50, .external_lex_state = 2}, - [7283] = {.lex_state = 405, .external_lex_state = 2}, + [7282] = {.lex_state = 405, .external_lex_state = 2}, + [7283] = {.lex_state = 50, .external_lex_state = 2}, [7284] = {.lex_state = 50, .external_lex_state = 2}, [7285] = {.lex_state = 405, .external_lex_state = 2}, - [7286] = {.lex_state = 405, .external_lex_state = 2}, - [7287] = {.lex_state = 50, .external_lex_state = 2}, - [7288] = {.lex_state = 50, .external_lex_state = 2}, + [7286] = {.lex_state = 50, .external_lex_state = 2}, + [7287] = {.lex_state = 405, .external_lex_state = 2}, + [7288] = {.lex_state = 405, .external_lex_state = 2}, [7289] = {.lex_state = 405, .external_lex_state = 2}, [7290] = {.lex_state = 405, .external_lex_state = 2}, [7291] = {.lex_state = 405, .external_lex_state = 2}, - [7292] = {.lex_state = 405, .external_lex_state = 2}, - [7293] = {.lex_state = 50, .external_lex_state = 2}, - [7294] = {.lex_state = 50, .external_lex_state = 2}, + [7292] = {.lex_state = 50, .external_lex_state = 2}, + [7293] = {.lex_state = 82, .external_lex_state = 2}, + [7294] = {.lex_state = 405, .external_lex_state = 2}, [7295] = {.lex_state = 405, .external_lex_state = 2}, - [7296] = {.lex_state = 82, .external_lex_state = 2}, - [7297] = {.lex_state = 49, .external_lex_state = 2}, - [7298] = {.lex_state = 50, .external_lex_state = 2}, + [7296] = {.lex_state = 405, .external_lex_state = 2}, + [7297] = {.lex_state = 405, .external_lex_state = 2}, + [7298] = {.lex_state = 405, .external_lex_state = 2}, [7299] = {.lex_state = 405, .external_lex_state = 2}, [7300] = {.lex_state = 405, .external_lex_state = 2}, - [7301] = {.lex_state = 50, .external_lex_state = 2}, + [7301] = {.lex_state = 405, .external_lex_state = 2}, [7302] = {.lex_state = 405, .external_lex_state = 2}, - [7303] = {.lex_state = 405, .external_lex_state = 2}, + [7303] = {.lex_state = 49, .external_lex_state = 2}, [7304] = {.lex_state = 405, .external_lex_state = 2}, [7305] = {.lex_state = 405, .external_lex_state = 2}, - [7306] = {.lex_state = 50, .external_lex_state = 2}, - [7307] = {.lex_state = 50, .external_lex_state = 2}, - [7308] = {.lex_state = 50, .external_lex_state = 2}, + [7306] = {.lex_state = 405, .external_lex_state = 2}, + [7307] = {.lex_state = 405, .external_lex_state = 2}, + [7308] = {.lex_state = 405, .external_lex_state = 2}, [7309] = {.lex_state = 405, .external_lex_state = 2}, [7310] = {.lex_state = 50, .external_lex_state = 2}, - [7311] = {.lex_state = 50, .external_lex_state = 2}, - [7312] = {.lex_state = 405, .external_lex_state = 2}, + [7311] = {.lex_state = 405, .external_lex_state = 2}, + [7312] = {.lex_state = 50, .external_lex_state = 2}, [7313] = {.lex_state = 405, .external_lex_state = 2}, [7314] = {.lex_state = 405, .external_lex_state = 2}, [7315] = {.lex_state = 405, .external_lex_state = 2}, [7316] = {.lex_state = 50, .external_lex_state = 2}, - [7317] = {.lex_state = 405, .external_lex_state = 2}, + [7317] = {.lex_state = 82, .external_lex_state = 2}, [7318] = {.lex_state = 405, .external_lex_state = 2}, [7319] = {.lex_state = 405, .external_lex_state = 2}, [7320] = {.lex_state = 405, .external_lex_state = 2}, - [7321] = {.lex_state = 24, .external_lex_state = 2}, - [7322] = {.lex_state = 48, .external_lex_state = 2}, - [7323] = {.lex_state = 50, .external_lex_state = 2}, - [7324] = {.lex_state = 49, .external_lex_state = 2}, + [7321] = {.lex_state = 405, .external_lex_state = 2}, + [7322] = {.lex_state = 405, .external_lex_state = 2}, + [7323] = {.lex_state = 405, .external_lex_state = 2}, + [7324] = {.lex_state = 405, .external_lex_state = 2}, [7325] = {.lex_state = 405, .external_lex_state = 2}, - [7326] = {.lex_state = 50, .external_lex_state = 2}, + [7326] = {.lex_state = 405, .external_lex_state = 2}, [7327] = {.lex_state = 405, .external_lex_state = 2}, - [7328] = {.lex_state = 405, .external_lex_state = 2}, + [7328] = {.lex_state = 49, .external_lex_state = 2}, [7329] = {.lex_state = 405, .external_lex_state = 2}, [7330] = {.lex_state = 405, .external_lex_state = 2}, [7331] = {.lex_state = 405, .external_lex_state = 2}, @@ -29477,94 +29541,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7340] = {.lex_state = 405, .external_lex_state = 2}, [7341] = {.lex_state = 405, .external_lex_state = 2}, [7342] = {.lex_state = 405, .external_lex_state = 2}, - [7343] = {.lex_state = 48, .external_lex_state = 2}, - [7344] = {.lex_state = 405, .external_lex_state = 2}, - [7345] = {.lex_state = 50, .external_lex_state = 2}, + [7343] = {.lex_state = 405, .external_lex_state = 2}, + [7344] = {.lex_state = 50, .external_lex_state = 2}, + [7345] = {.lex_state = 405, .external_lex_state = 2}, [7346] = {.lex_state = 405, .external_lex_state = 2}, [7347] = {.lex_state = 50, .external_lex_state = 2}, [7348] = {.lex_state = 50, .external_lex_state = 2}, - [7349] = {.lex_state = 50, .external_lex_state = 2}, + [7349] = {.lex_state = 405, .external_lex_state = 2}, [7350] = {.lex_state = 405, .external_lex_state = 2}, [7351] = {.lex_state = 405, .external_lex_state = 2}, [7352] = {.lex_state = 405, .external_lex_state = 2}, - [7353] = {.lex_state = 405, .external_lex_state = 2}, + [7353] = {.lex_state = 48, .external_lex_state = 2}, [7354] = {.lex_state = 405, .external_lex_state = 2}, [7355] = {.lex_state = 405, .external_lex_state = 2}, [7356] = {.lex_state = 405, .external_lex_state = 2}, - [7357] = {.lex_state = 50, .external_lex_state = 2}, + [7357] = {.lex_state = 405, .external_lex_state = 2}, [7358] = {.lex_state = 50, .external_lex_state = 2}, - [7359] = {.lex_state = 50, .external_lex_state = 2}, + [7359] = {.lex_state = 405, .external_lex_state = 2}, [7360] = {.lex_state = 405, .external_lex_state = 2}, - [7361] = {.lex_state = 405, .external_lex_state = 2}, + [7361] = {.lex_state = 82, .external_lex_state = 2}, [7362] = {.lex_state = 50, .external_lex_state = 2}, - [7363] = {.lex_state = 405, .external_lex_state = 2}, - [7364] = {.lex_state = 405, .external_lex_state = 2}, - [7365] = {.lex_state = 50, .external_lex_state = 2}, - [7366] = {.lex_state = 405, .external_lex_state = 2}, + [7363] = {.lex_state = 49, .external_lex_state = 2}, + [7364] = {.lex_state = 50, .external_lex_state = 2}, + [7365] = {.lex_state = 405, .external_lex_state = 2}, + [7366] = {.lex_state = 50, .external_lex_state = 2}, [7367] = {.lex_state = 405, .external_lex_state = 2}, - [7368] = {.lex_state = 50, .external_lex_state = 2}, + [7368] = {.lex_state = 405, .external_lex_state = 2}, [7369] = {.lex_state = 405, .external_lex_state = 2}, [7370] = {.lex_state = 405, .external_lex_state = 2}, [7371] = {.lex_state = 405, .external_lex_state = 2}, [7372] = {.lex_state = 50, .external_lex_state = 2}, [7373] = {.lex_state = 405, .external_lex_state = 2}, [7374] = {.lex_state = 405, .external_lex_state = 2}, - [7375] = {.lex_state = 82, .external_lex_state = 2}, - [7376] = {.lex_state = 405, .external_lex_state = 2}, + [7375] = {.lex_state = 405, .external_lex_state = 2}, + [7376] = {.lex_state = 50, .external_lex_state = 2}, [7377] = {.lex_state = 405, .external_lex_state = 2}, [7378] = {.lex_state = 405, .external_lex_state = 2}, [7379] = {.lex_state = 405, .external_lex_state = 2}, [7380] = {.lex_state = 405, .external_lex_state = 2}, [7381] = {.lex_state = 405, .external_lex_state = 2}, [7382] = {.lex_state = 405, .external_lex_state = 2}, - [7383] = {.lex_state = 50, .external_lex_state = 2}, + [7383] = {.lex_state = 24, .external_lex_state = 2}, [7384] = {.lex_state = 405, .external_lex_state = 2}, [7385] = {.lex_state = 405, .external_lex_state = 2}, - [7386] = {.lex_state = 50, .external_lex_state = 2}, + [7386] = {.lex_state = 405, .external_lex_state = 2}, [7387] = {.lex_state = 405, .external_lex_state = 2}, - [7388] = {.lex_state = 405, .external_lex_state = 2}, - [7389] = {.lex_state = 50, .external_lex_state = 2}, - [7390] = {.lex_state = 50, .external_lex_state = 2}, + [7388] = {.lex_state = 49, .external_lex_state = 2}, + [7389] = {.lex_state = 405, .external_lex_state = 2}, + [7390] = {.lex_state = 405, .external_lex_state = 2}, [7391] = {.lex_state = 405, .external_lex_state = 2}, - [7392] = {.lex_state = 405, .external_lex_state = 2}, - [7393] = {.lex_state = 50, .external_lex_state = 2}, - [7394] = {.lex_state = 50, .external_lex_state = 2}, + [7392] = {.lex_state = 50, .external_lex_state = 2}, + [7393] = {.lex_state = 405, .external_lex_state = 2}, + [7394] = {.lex_state = 405, .external_lex_state = 2}, [7395] = {.lex_state = 405, .external_lex_state = 2}, - [7396] = {.lex_state = 50, .external_lex_state = 2}, + [7396] = {.lex_state = 405, .external_lex_state = 2}, [7397] = {.lex_state = 405, .external_lex_state = 2}, - [7398] = {.lex_state = 50, .external_lex_state = 2}, + [7398] = {.lex_state = 405, .external_lex_state = 2}, [7399] = {.lex_state = 405, .external_lex_state = 2}, - [7400] = {.lex_state = 405, .external_lex_state = 2}, + [7400] = {.lex_state = 50, .external_lex_state = 2}, [7401] = {.lex_state = 405, .external_lex_state = 2}, - [7402] = {.lex_state = 50, .external_lex_state = 2}, + [7402] = {.lex_state = 405, .external_lex_state = 2}, [7403] = {.lex_state = 405, .external_lex_state = 2}, [7404] = {.lex_state = 405, .external_lex_state = 2}, [7405] = {.lex_state = 405, .external_lex_state = 2}, [7406] = {.lex_state = 50, .external_lex_state = 2}, - [7407] = {.lex_state = 50, .external_lex_state = 2}, + [7407] = {.lex_state = 405, .external_lex_state = 2}, [7408] = {.lex_state = 405, .external_lex_state = 2}, [7409] = {.lex_state = 405, .external_lex_state = 2}, - [7410] = {.lex_state = 405, .external_lex_state = 2}, - [7411] = {.lex_state = 49, .external_lex_state = 2}, + [7410] = {.lex_state = 50, .external_lex_state = 2}, + [7411] = {.lex_state = 405, .external_lex_state = 2}, [7412] = {.lex_state = 405, .external_lex_state = 2}, - [7413] = {.lex_state = 3, .external_lex_state = 10}, + [7413] = {.lex_state = 405, .external_lex_state = 2}, [7414] = {.lex_state = 405, .external_lex_state = 2}, - [7415] = {.lex_state = 405, .external_lex_state = 2}, - [7416] = {.lex_state = 405, .external_lex_state = 2}, + [7415] = {.lex_state = 50, .external_lex_state = 2}, + [7416] = {.lex_state = 50, .external_lex_state = 2}, [7417] = {.lex_state = 405, .external_lex_state = 2}, - [7418] = {.lex_state = 50, .external_lex_state = 2}, - [7419] = {.lex_state = 50, .external_lex_state = 2}, - [7420] = {.lex_state = 50, .external_lex_state = 2}, + [7418] = {.lex_state = 405, .external_lex_state = 2}, + [7419] = {.lex_state = 405, .external_lex_state = 2}, + [7420] = {.lex_state = 405, .external_lex_state = 2}, [7421] = {.lex_state = 405, .external_lex_state = 2}, [7422] = {.lex_state = 405, .external_lex_state = 2}, [7423] = {.lex_state = 405, .external_lex_state = 2}, - [7424] = {.lex_state = 50, .external_lex_state = 2}, + [7424] = {.lex_state = 405, .external_lex_state = 2}, [7425] = {.lex_state = 405, .external_lex_state = 2}, [7426] = {.lex_state = 405, .external_lex_state = 2}, [7427] = {.lex_state = 405, .external_lex_state = 2}, - [7428] = {.lex_state = 405, .external_lex_state = 2}, + [7428] = {.lex_state = 50, .external_lex_state = 2}, [7429] = {.lex_state = 405, .external_lex_state = 2}, - [7430] = {.lex_state = 50, .external_lex_state = 2}, + [7430] = {.lex_state = 405, .external_lex_state = 2}, [7431] = {.lex_state = 405, .external_lex_state = 2}, [7432] = {.lex_state = 405, .external_lex_state = 2}, [7433] = {.lex_state = 405, .external_lex_state = 2}, @@ -29572,54 +29636,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7435] = {.lex_state = 405, .external_lex_state = 2}, [7436] = {.lex_state = 405, .external_lex_state = 2}, [7437] = {.lex_state = 405, .external_lex_state = 2}, - [7438] = {.lex_state = 405, .external_lex_state = 2}, + [7438] = {.lex_state = 50, .external_lex_state = 2}, [7439] = {.lex_state = 405, .external_lex_state = 2}, [7440] = {.lex_state = 405, .external_lex_state = 2}, [7441] = {.lex_state = 405, .external_lex_state = 2}, [7442] = {.lex_state = 405, .external_lex_state = 2}, - [7443] = {.lex_state = 405, .external_lex_state = 2}, - [7444] = {.lex_state = 50, .external_lex_state = 2}, + [7443] = {.lex_state = 50, .external_lex_state = 2}, + [7444] = {.lex_state = 405, .external_lex_state = 2}, [7445] = {.lex_state = 405, .external_lex_state = 2}, [7446] = {.lex_state = 405, .external_lex_state = 2}, - [7447] = {.lex_state = 50, .external_lex_state = 2}, + [7447] = {.lex_state = 405, .external_lex_state = 2}, [7448] = {.lex_state = 405, .external_lex_state = 2}, - [7449] = {.lex_state = 405, .external_lex_state = 2}, + [7449] = {.lex_state = 50, .external_lex_state = 2}, [7450] = {.lex_state = 405, .external_lex_state = 2}, - [7451] = {.lex_state = 405, .external_lex_state = 2}, - [7452] = {.lex_state = 50, .external_lex_state = 2}, + [7451] = {.lex_state = 50, .external_lex_state = 2}, + [7452] = {.lex_state = 405, .external_lex_state = 2}, [7453] = {.lex_state = 405, .external_lex_state = 2}, [7454] = {.lex_state = 405, .external_lex_state = 2}, - [7455] = {.lex_state = 50, .external_lex_state = 2}, - [7456] = {.lex_state = 405, .external_lex_state = 2}, - [7457] = {.lex_state = 50, .external_lex_state = 2}, - [7458] = {.lex_state = 405, .external_lex_state = 2}, - [7459] = {.lex_state = 405, .external_lex_state = 2}, - [7460] = {.lex_state = 50, .external_lex_state = 2}, - [7461] = {.lex_state = 405, .external_lex_state = 2}, - [7462] = {.lex_state = 405, .external_lex_state = 2}, + [7455] = {.lex_state = 405, .external_lex_state = 2}, + [7456] = {.lex_state = 50, .external_lex_state = 2}, + [7457] = {.lex_state = 405, .external_lex_state = 2}, + [7458] = {.lex_state = 82, .external_lex_state = 2}, + [7459] = {.lex_state = 50, .external_lex_state = 2}, + [7460] = {.lex_state = 405, .external_lex_state = 2}, + [7461] = {.lex_state = 49, .external_lex_state = 2}, + [7462] = {.lex_state = 3, .external_lex_state = 10}, [7463] = {.lex_state = 405, .external_lex_state = 2}, [7464] = {.lex_state = 50, .external_lex_state = 2}, [7465] = {.lex_state = 405, .external_lex_state = 2}, - [7466] = {.lex_state = 405, .external_lex_state = 2}, + [7466] = {.lex_state = 50, .external_lex_state = 2}, [7467] = {.lex_state = 50, .external_lex_state = 2}, - [7468] = {.lex_state = 405, .external_lex_state = 2}, + [7468] = {.lex_state = 50, .external_lex_state = 2}, [7469] = {.lex_state = 405, .external_lex_state = 2}, - [7470] = {.lex_state = 50, .external_lex_state = 2}, - [7471] = {.lex_state = 405, .external_lex_state = 2}, - [7472] = {.lex_state = 50, .external_lex_state = 2}, - [7473] = {.lex_state = 405, .external_lex_state = 2}, - [7474] = {.lex_state = 405, .external_lex_state = 2}, + [7470] = {.lex_state = 405, .external_lex_state = 2}, + [7471] = {.lex_state = 50, .external_lex_state = 2}, + [7472] = {.lex_state = 405, .external_lex_state = 2}, + [7473] = {.lex_state = 48, .external_lex_state = 2}, + [7474] = {.lex_state = 50, .external_lex_state = 2}, [7475] = {.lex_state = 50, .external_lex_state = 2}, - [7476] = {.lex_state = 405, .external_lex_state = 2}, - [7477] = {.lex_state = 50, .external_lex_state = 2}, - [7478] = {.lex_state = 405, .external_lex_state = 2}, - [7479] = {.lex_state = 405, .external_lex_state = 2}, - [7480] = {.lex_state = 50, .external_lex_state = 2}, - [7481] = {.lex_state = 405, .external_lex_state = 2}, - [7482] = {.lex_state = 50, .external_lex_state = 2}, + [7476] = {.lex_state = 50, .external_lex_state = 2}, + [7477] = {.lex_state = 405, .external_lex_state = 2}, + [7478] = {.lex_state = 50, .external_lex_state = 2}, + [7479] = {.lex_state = 50, .external_lex_state = 2}, + [7480] = {.lex_state = 405, .external_lex_state = 2}, + [7481] = {.lex_state = 50, .external_lex_state = 2}, + [7482] = {.lex_state = 405, .external_lex_state = 2}, [7483] = {.lex_state = 405, .external_lex_state = 2}, - [7484] = {.lex_state = 405, .external_lex_state = 2}, - [7485] = {(TSStateId)(-1)}, + [7484] = {.lex_state = 50, .external_lex_state = 2}, + [7485] = {.lex_state = 50, .external_lex_state = 2}, + [7486] = {.lex_state = 50, .external_lex_state = 2}, + [7487] = {.lex_state = 405, .external_lex_state = 2}, + [7488] = {.lex_state = 405, .external_lex_state = 2}, + [7489] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -29760,11 +29828,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1), [anon_sym_object] = ACTIONS(1), [anon_sym_abstract] = ACTIONS(1), + [anon_sym_global] = ACTIONS(1), [anon_sym_satisfies] = ACTIONS(1), [anon_sym_require] = ACTIONS(1), [anon_sym_extends] = ACTIONS(1), [anon_sym_implements] = ACTIONS(1), - [anon_sym_global] = ACTIONS(1), [anon_sym_interface] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_DASH_QMARK_COLON] = ACTIONS(1), @@ -29786,89 +29854,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(7385), - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_program] = STATE(7442), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(1), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(36), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -29944,496 +30013,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(2), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5295), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(192), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(158), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(194), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(198), - [anon_sym_number] = ACTIONS(198), - [anon_sym_boolean] = ACTIONS(198), - [anon_sym_string] = ACTIONS(198), - [anon_sym_symbol] = ACTIONS(198), - [anon_sym_object] = ACTIONS(198), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(196), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(200), + [anon_sym_number] = ACTIONS(200), + [anon_sym_boolean] = ACTIONS(200), + [anon_sym_string] = ACTIONS(200), + [anon_sym_symbol] = ACTIONS(200), + [anon_sym_object] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(3), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5295), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(192), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(158), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(194), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(194), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(198), - [anon_sym_number] = ACTIONS(198), - [anon_sym_boolean] = ACTIONS(198), - [anon_sym_string] = ACTIONS(198), - [anon_sym_symbol] = ACTIONS(198), - [anon_sym_object] = ACTIONS(198), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(196), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(200), + [anon_sym_number] = ACTIONS(200), + [anon_sym_boolean] = ACTIONS(200), + [anon_sym_string] = ACTIONS(200), + [anon_sym_symbol] = ACTIONS(200), + [anon_sym_object] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7335), - [sym_spread_element] = STATE(6204), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(3031), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7389), + [sym_spread_element] = STATE(5828), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(3034), [sym_comment] = STATE(4), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(4547), - [sym_computed_property_name] = STATE(4548), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_accessibility_modifier] = STATE(3471), - [sym_override_modifier] = STATE(3523), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_export_statement_repeat1] = STATE(4814), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(221), - [anon_sym_export] = ACTIONS(223), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(227), - [anon_sym_namespace] = ACTIONS(229), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5828), + [sym_pair] = STATE(5828), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(4575), + [sym_computed_property_name] = STATE(4459), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_accessibility_modifier] = STATE(3502), + [sym_override_modifier] = STATE(3520), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4785), + [aux_sym_object_repeat1] = STATE(5925), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(225), + [anon_sym_export] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_type] = ACTIONS(231), + [anon_sym_namespace] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(237), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(235), + [anon_sym_let] = ACTIONS(239), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -30451,16 +30526,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(241), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(239), + [anon_sym_async] = ACTIONS(243), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(241), + [anon_sym_new] = ACTIONS(245), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -30472,8 +30547,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(245), - [sym_private_property_identifier] = ACTIONS(247), + [sym_number] = ACTIONS(249), + [sym_private_property_identifier] = ACTIONS(251), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -30481,135 +30556,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(249), - [anon_sym_readonly] = ACTIONS(251), - [anon_sym_get] = ACTIONS(253), - [anon_sym_set] = ACTIONS(253), - [anon_sym_declare] = ACTIONS(255), - [anon_sym_public] = ACTIONS(257), - [anon_sym_private] = ACTIONS(257), - [anon_sym_protected] = ACTIONS(257), - [anon_sym_override] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_any] = ACTIONS(263), - [anon_sym_number] = ACTIONS(263), - [anon_sym_boolean] = ACTIONS(263), - [anon_sym_string] = ACTIONS(263), - [anon_sym_symbol] = ACTIONS(263), - [anon_sym_object] = ACTIONS(263), + [anon_sym_static] = ACTIONS(253), + [anon_sym_readonly] = ACTIONS(255), + [anon_sym_get] = ACTIONS(257), + [anon_sym_set] = ACTIONS(257), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_public] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_override] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7335), - [sym_spread_element] = STATE(5682), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(3031), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7389), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(3034), [sym_comment] = STATE(5), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(5682), - [sym_pair] = STATE(5682), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(4547), - [sym_computed_property_name] = STATE(4548), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_accessibility_modifier] = STATE(3471), - [sym_override_modifier] = STATE(3523), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(63), - [aux_sym_export_statement_repeat1] = STATE(4814), - [aux_sym_object_repeat1] = STATE(5700), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(265), - [anon_sym_export] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(269), - [anon_sym_namespace] = ACTIONS(271), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(4575), + [sym_computed_property_name] = STATE(4459), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_accessibility_modifier] = STATE(3502), + [sym_override_modifier] = STATE(3520), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4785), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(269), + [anon_sym_export] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_type] = ACTIONS(273), + [anon_sym_namespace] = ACTIONS(275), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(275), + [anon_sym_let] = ACTIONS(279), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -30627,16 +30704,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(241), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(277), + [anon_sym_async] = ACTIONS(281), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(279), + [anon_sym_new] = ACTIONS(283), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -30648,8 +30725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(245), - [sym_private_property_identifier] = ACTIONS(247), + [sym_number] = ACTIONS(249), + [sym_private_property_identifier] = ACTIONS(251), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -30657,135 +30734,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_get] = ACTIONS(285), - [anon_sym_set] = ACTIONS(285), - [anon_sym_declare] = ACTIONS(287), - [anon_sym_public] = ACTIONS(289), - [anon_sym_private] = ACTIONS(289), - [anon_sym_protected] = ACTIONS(289), - [anon_sym_override] = ACTIONS(291), - [anon_sym_module] = ACTIONS(293), - [anon_sym_any] = ACTIONS(295), - [anon_sym_number] = ACTIONS(295), - [anon_sym_boolean] = ACTIONS(295), - [anon_sym_string] = ACTIONS(295), - [anon_sym_symbol] = ACTIONS(295), - [anon_sym_object] = ACTIONS(295), + [anon_sym_static] = ACTIONS(285), + [anon_sym_readonly] = ACTIONS(287), + [anon_sym_get] = ACTIONS(289), + [anon_sym_set] = ACTIONS(289), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_public] = ACTIONS(293), + [anon_sym_private] = ACTIONS(293), + [anon_sym_protected] = ACTIONS(293), + [anon_sym_override] = ACTIONS(295), + [anon_sym_module] = ACTIONS(297), + [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7335), - [sym_spread_element] = STATE(5682), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(3031), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7389), + [sym_spread_element] = STATE(5828), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(3034), [sym_comment] = STATE(6), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(5682), - [sym_pair] = STATE(5682), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(4547), - [sym_computed_property_name] = STATE(4548), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_accessibility_modifier] = STATE(3471), - [sym_override_modifier] = STATE(3523), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4814), - [aux_sym_object_repeat1] = STATE(5700), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(265), - [anon_sym_export] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(269), - [anon_sym_namespace] = ACTIONS(271), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5828), + [sym_pair] = STATE(5828), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(4575), + [sym_computed_property_name] = STATE(4459), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_accessibility_modifier] = STATE(3502), + [sym_override_modifier] = STATE(3520), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(4785), + [aux_sym_object_repeat1] = STATE(5925), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(225), + [anon_sym_export] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_type] = ACTIONS(231), + [anon_sym_namespace] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(275), + [anon_sym_let] = ACTIONS(239), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -30803,16 +30882,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(241), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(277), + [anon_sym_async] = ACTIONS(243), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(279), + [anon_sym_new] = ACTIONS(245), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -30824,8 +30903,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(245), - [sym_private_property_identifier] = ACTIONS(247), + [sym_number] = ACTIONS(249), + [sym_private_property_identifier] = ACTIONS(251), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -30833,135 +30912,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_get] = ACTIONS(285), - [anon_sym_set] = ACTIONS(285), - [anon_sym_declare] = ACTIONS(287), - [anon_sym_public] = ACTIONS(289), - [anon_sym_private] = ACTIONS(289), - [anon_sym_protected] = ACTIONS(289), - [anon_sym_override] = ACTIONS(291), - [anon_sym_module] = ACTIONS(293), - [anon_sym_any] = ACTIONS(295), - [anon_sym_number] = ACTIONS(295), - [anon_sym_boolean] = ACTIONS(295), - [anon_sym_string] = ACTIONS(295), - [anon_sym_symbol] = ACTIONS(295), - [anon_sym_object] = ACTIONS(295), + [anon_sym_static] = ACTIONS(253), + [anon_sym_readonly] = ACTIONS(255), + [anon_sym_get] = ACTIONS(257), + [anon_sym_set] = ACTIONS(257), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_public] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_override] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7335), - [sym_spread_element] = STATE(5682), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(3031), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7389), + [sym_spread_element] = STATE(5828), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(3034), [sym_comment] = STATE(7), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(5682), - [sym_pair] = STATE(5682), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(4547), - [sym_computed_property_name] = STATE(4548), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_accessibility_modifier] = STATE(3471), - [sym_override_modifier] = STATE(3523), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_export_statement_repeat1] = STATE(4814), - [aux_sym_object_repeat1] = STATE(5700), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(265), - [anon_sym_export] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(269), - [anon_sym_namespace] = ACTIONS(271), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5828), + [sym_pair] = STATE(5828), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(4575), + [sym_computed_property_name] = STATE(4459), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_accessibility_modifier] = STATE(3502), + [sym_override_modifier] = STATE(3520), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(4785), + [aux_sym_object_repeat1] = STATE(5925), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(225), + [anon_sym_export] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_type] = ACTIONS(231), + [anon_sym_namespace] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(275), + [anon_sym_let] = ACTIONS(239), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -30979,16 +31060,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(241), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(277), + [anon_sym_async] = ACTIONS(243), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(279), + [anon_sym_new] = ACTIONS(245), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -31000,8 +31081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(245), - [sym_private_property_identifier] = ACTIONS(247), + [sym_number] = ACTIONS(249), + [sym_private_property_identifier] = ACTIONS(251), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -31009,135 +31090,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_get] = ACTIONS(285), - [anon_sym_set] = ACTIONS(285), - [anon_sym_declare] = ACTIONS(287), - [anon_sym_public] = ACTIONS(289), - [anon_sym_private] = ACTIONS(289), - [anon_sym_protected] = ACTIONS(289), - [anon_sym_override] = ACTIONS(291), - [anon_sym_module] = ACTIONS(293), - [anon_sym_any] = ACTIONS(295), - [anon_sym_number] = ACTIONS(295), - [anon_sym_boolean] = ACTIONS(295), - [anon_sym_string] = ACTIONS(295), - [anon_sym_symbol] = ACTIONS(295), - [anon_sym_object] = ACTIONS(295), + [anon_sym_static] = ACTIONS(253), + [anon_sym_readonly] = ACTIONS(255), + [anon_sym_get] = ACTIONS(257), + [anon_sym_set] = ACTIONS(257), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_public] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_override] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7335), - [sym_spread_element] = STATE(5682), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(3031), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7389), + [sym_spread_element] = STATE(5828), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(3034), [sym_comment] = STATE(8), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(5682), - [sym_pair] = STATE(5682), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(4547), - [sym_computed_property_name] = STATE(4548), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_accessibility_modifier] = STATE(3471), - [sym_override_modifier] = STATE(3523), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_export_statement_repeat1] = STATE(4814), - [aux_sym_object_repeat1] = STATE(5700), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(265), - [anon_sym_export] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(269), - [anon_sym_namespace] = ACTIONS(271), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5828), + [sym_pair] = STATE(5828), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(4575), + [sym_computed_property_name] = STATE(4459), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_accessibility_modifier] = STATE(3502), + [sym_override_modifier] = STATE(3520), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(72), + [aux_sym_export_statement_repeat1] = STATE(4785), + [aux_sym_object_repeat1] = STATE(5925), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(225), + [anon_sym_export] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_type] = ACTIONS(231), + [anon_sym_namespace] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(275), + [anon_sym_let] = ACTIONS(239), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31155,16 +31238,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(241), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(277), + [anon_sym_async] = ACTIONS(243), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(279), + [anon_sym_new] = ACTIONS(245), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -31176,8 +31259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(245), - [sym_private_property_identifier] = ACTIONS(247), + [sym_number] = ACTIONS(249), + [sym_private_property_identifier] = ACTIONS(251), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -31185,135 +31268,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_get] = ACTIONS(285), - [anon_sym_set] = ACTIONS(285), - [anon_sym_declare] = ACTIONS(287), - [anon_sym_public] = ACTIONS(289), - [anon_sym_private] = ACTIONS(289), - [anon_sym_protected] = ACTIONS(289), - [anon_sym_override] = ACTIONS(291), - [anon_sym_module] = ACTIONS(293), - [anon_sym_any] = ACTIONS(295), - [anon_sym_number] = ACTIONS(295), - [anon_sym_boolean] = ACTIONS(295), - [anon_sym_string] = ACTIONS(295), - [anon_sym_symbol] = ACTIONS(295), - [anon_sym_object] = ACTIONS(295), + [anon_sym_static] = ACTIONS(253), + [anon_sym_readonly] = ACTIONS(255), + [anon_sym_get] = ACTIONS(257), + [anon_sym_set] = ACTIONS(257), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_public] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_override] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7335), - [sym_spread_element] = STATE(5682), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(3031), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7389), + [sym_spread_element] = STATE(5828), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(3034), [sym_comment] = STATE(9), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(5682), - [sym_pair] = STATE(5682), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(4547), - [sym_computed_property_name] = STATE(4548), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_accessibility_modifier] = STATE(3471), - [sym_override_modifier] = STATE(3523), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(54), - [aux_sym_export_statement_repeat1] = STATE(4814), - [aux_sym_object_repeat1] = STATE(5700), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(265), - [anon_sym_export] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(269), - [anon_sym_namespace] = ACTIONS(271), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5828), + [sym_pair] = STATE(5828), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(4575), + [sym_computed_property_name] = STATE(4459), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_accessibility_modifier] = STATE(3502), + [sym_override_modifier] = STATE(3520), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(35), + [aux_sym_export_statement_repeat1] = STATE(4785), + [aux_sym_object_repeat1] = STATE(5925), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(225), + [anon_sym_export] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_type] = ACTIONS(231), + [anon_sym_namespace] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(275), + [anon_sym_let] = ACTIONS(239), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31331,16 +31416,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(241), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(277), + [anon_sym_async] = ACTIONS(243), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(279), + [anon_sym_new] = ACTIONS(245), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -31352,8 +31437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(245), - [sym_private_property_identifier] = ACTIONS(247), + [sym_number] = ACTIONS(249), + [sym_private_property_identifier] = ACTIONS(251), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -31361,135 +31446,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_get] = ACTIONS(285), - [anon_sym_set] = ACTIONS(285), - [anon_sym_declare] = ACTIONS(287), - [anon_sym_public] = ACTIONS(289), - [anon_sym_private] = ACTIONS(289), - [anon_sym_protected] = ACTIONS(289), - [anon_sym_override] = ACTIONS(291), - [anon_sym_module] = ACTIONS(293), - [anon_sym_any] = ACTIONS(295), - [anon_sym_number] = ACTIONS(295), - [anon_sym_boolean] = ACTIONS(295), - [anon_sym_string] = ACTIONS(295), - [anon_sym_symbol] = ACTIONS(295), - [anon_sym_object] = ACTIONS(295), + [anon_sym_static] = ACTIONS(253), + [anon_sym_readonly] = ACTIONS(255), + [anon_sym_get] = ACTIONS(257), + [anon_sym_set] = ACTIONS(257), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_public] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_override] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7335), - [sym_spread_element] = STATE(6204), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(3031), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7389), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(3034), [sym_comment] = STATE(10), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(4547), - [sym_computed_property_name] = STATE(4548), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_accessibility_modifier] = STATE(3471), - [sym_override_modifier] = STATE(3523), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_export_statement_repeat1] = STATE(4814), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(305), - [anon_sym_export] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(309), - [anon_sym_namespace] = ACTIONS(311), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(4575), + [sym_computed_property_name] = STATE(4459), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_accessibility_modifier] = STATE(3502), + [sym_override_modifier] = STATE(3520), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4785), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(309), + [anon_sym_export] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_type] = ACTIONS(313), + [anon_sym_namespace] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(313), + [anon_sym_let] = ACTIONS(317), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31507,16 +31594,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(241), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(315), + [anon_sym_async] = ACTIONS(319), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(317), + [anon_sym_new] = ACTIONS(321), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -31528,8 +31615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(245), - [sym_private_property_identifier] = ACTIONS(247), + [sym_number] = ACTIONS(249), + [sym_private_property_identifier] = ACTIONS(251), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -31537,135 +31624,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(319), - [anon_sym_readonly] = ACTIONS(321), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - [anon_sym_declare] = ACTIONS(325), - [anon_sym_public] = ACTIONS(327), - [anon_sym_private] = ACTIONS(327), - [anon_sym_protected] = ACTIONS(327), - [anon_sym_override] = ACTIONS(329), - [anon_sym_module] = ACTIONS(331), - [anon_sym_any] = ACTIONS(333), - [anon_sym_number] = ACTIONS(333), - [anon_sym_boolean] = ACTIONS(333), - [anon_sym_string] = ACTIONS(333), - [anon_sym_symbol] = ACTIONS(333), - [anon_sym_object] = ACTIONS(333), + [anon_sym_static] = ACTIONS(323), + [anon_sym_readonly] = ACTIONS(325), + [anon_sym_get] = ACTIONS(327), + [anon_sym_set] = ACTIONS(327), + [anon_sym_declare] = ACTIONS(329), + [anon_sym_public] = ACTIONS(331), + [anon_sym_private] = ACTIONS(331), + [anon_sym_protected] = ACTIONS(331), + [anon_sym_override] = ACTIONS(333), + [anon_sym_module] = ACTIONS(335), + [anon_sym_any] = ACTIONS(337), + [anon_sym_number] = ACTIONS(337), + [anon_sym_boolean] = ACTIONS(337), + [anon_sym_string] = ACTIONS(337), + [anon_sym_symbol] = ACTIONS(337), + [anon_sym_object] = ACTIONS(337), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7335), - [sym_spread_element] = STATE(5682), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(3031), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7389), + [sym_spread_element] = STATE(5828), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(3034), [sym_comment] = STATE(11), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(5682), - [sym_pair] = STATE(5682), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(4547), - [sym_computed_property_name] = STATE(4548), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_accessibility_modifier] = STATE(3471), - [sym_override_modifier] = STATE(3523), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(69), - [aux_sym_export_statement_repeat1] = STATE(4814), - [aux_sym_object_repeat1] = STATE(5700), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(265), - [anon_sym_export] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(269), - [anon_sym_namespace] = ACTIONS(271), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5828), + [sym_pair] = STATE(5828), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(4575), + [sym_computed_property_name] = STATE(4459), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_accessibility_modifier] = STATE(3502), + [sym_override_modifier] = STATE(3520), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_export_statement_repeat1] = STATE(4785), + [aux_sym_object_repeat1] = STATE(5925), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(225), + [anon_sym_export] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_type] = ACTIONS(231), + [anon_sym_namespace] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(339), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(275), + [anon_sym_let] = ACTIONS(239), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31683,16 +31772,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(241), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(277), + [anon_sym_async] = ACTIONS(243), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(279), + [anon_sym_new] = ACTIONS(245), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -31704,8 +31793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(245), - [sym_private_property_identifier] = ACTIONS(247), + [sym_number] = ACTIONS(249), + [sym_private_property_identifier] = ACTIONS(251), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -31713,311 +31802,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_get] = ACTIONS(285), - [anon_sym_set] = ACTIONS(285), - [anon_sym_declare] = ACTIONS(287), - [anon_sym_public] = ACTIONS(289), - [anon_sym_private] = ACTIONS(289), - [anon_sym_protected] = ACTIONS(289), - [anon_sym_override] = ACTIONS(291), - [anon_sym_module] = ACTIONS(293), - [anon_sym_any] = ACTIONS(295), - [anon_sym_number] = ACTIONS(295), - [anon_sym_boolean] = ACTIONS(295), - [anon_sym_string] = ACTIONS(295), - [anon_sym_symbol] = ACTIONS(295), - [anon_sym_object] = ACTIONS(295), + [anon_sym_static] = ACTIONS(253), + [anon_sym_readonly] = ACTIONS(255), + [anon_sym_get] = ACTIONS(257), + [anon_sym_set] = ACTIONS(257), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_public] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_override] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [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_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1411), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1250), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), [sym_comment] = STATE(12), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(340), - [anon_sym_default] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_namespace] = ACTIONS(348), - [anon_sym_LBRACE] = ACTIONS(351), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_typeof] = ACTIONS(354), - [anon_sym_import] = ACTIONS(357), - [anon_sym_with] = ACTIONS(360), - [anon_sym_var] = ACTIONS(363), - [anon_sym_let] = ACTIONS(366), - [anon_sym_const] = ACTIONS(369), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_if] = ACTIONS(372), - [anon_sym_switch] = ACTIONS(375), - [anon_sym_for] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(381), - [anon_sym_await] = ACTIONS(384), - [anon_sym_while] = ACTIONS(387), - [anon_sym_do] = ACTIONS(390), - [anon_sym_try] = ACTIONS(393), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_debugger] = ACTIONS(402), - [anon_sym_return] = ACTIONS(405), - [anon_sym_throw] = ACTIONS(408), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_case] = ACTIONS(343), - [anon_sym_yield] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LTtemplate_GT] = ACTIONS(420), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(426), - [anon_sym_class] = ACTIONS(429), - [anon_sym_async] = ACTIONS(432), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(438), - [anon_sym_using] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(354), - [anon_sym_DASH] = ACTIONS(354), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_TILDE] = ACTIONS(354), - [anon_sym_void] = ACTIONS(354), - [anon_sym_delete] = ACTIONS(354), - [anon_sym_PLUS_PLUS] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(450), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(453), - [sym_number] = ACTIONS(456), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_null] = ACTIONS(456), - [sym_undefined] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(465), - [anon_sym_static] = ACTIONS(468), - [anon_sym_readonly] = ACTIONS(468), - [anon_sym_get] = ACTIONS(468), - [anon_sym_set] = ACTIONS(468), - [anon_sym_declare] = ACTIONS(471), - [anon_sym_public] = ACTIONS(468), - [anon_sym_private] = ACTIONS(468), - [anon_sym_protected] = ACTIONS(468), - [anon_sym_override] = ACTIONS(468), - [anon_sym_module] = ACTIONS(474), - [anon_sym_any] = ACTIONS(468), - [anon_sym_number] = ACTIONS(468), - [anon_sym_boolean] = ACTIONS(468), - [anon_sym_string] = ACTIONS(468), - [anon_sym_symbol] = ACTIONS(468), - [anon_sym_object] = ACTIONS(468), - [anon_sym_abstract] = ACTIONS(477), - [anon_sym_interface] = ACTIONS(480), - [anon_sym_enum] = ACTIONS(483), - [sym_html_comment] = ACTIONS(5), - }, - [13] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1411), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), - [sym_comment] = STATE(13), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_default] = ACTIONS(490), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(490), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_default] = ACTIONS(345), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_case] = ACTIONS(490), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_case] = ACTIONS(345), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32039,148 +31967,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), + [sym_html_comment] = ACTIONS(5), + }, + [13] = { + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1250), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), + [sym_comment] = STATE(13), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(407), + [anon_sym_export] = ACTIONS(410), + [anon_sym_default] = ACTIONS(413), + [anon_sym_type] = ACTIONS(415), + [anon_sym_namespace] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_typeof] = ACTIONS(424), + [anon_sym_import] = ACTIONS(427), + [anon_sym_with] = ACTIONS(430), + [anon_sym_var] = ACTIONS(433), + [anon_sym_let] = ACTIONS(436), + [anon_sym_const] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(445), + [anon_sym_for] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_await] = ACTIONS(454), + [anon_sym_while] = ACTIONS(457), + [anon_sym_do] = ACTIONS(460), + [anon_sym_try] = ACTIONS(463), + [anon_sym_break] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_debugger] = ACTIONS(472), + [anon_sym_return] = ACTIONS(475), + [anon_sym_throw] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_case] = ACTIONS(413), + [anon_sym_yield] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_LTtemplate_GT] = ACTIONS(490), + [anon_sym_DQUOTE] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_class] = ACTIONS(499), + [anon_sym_async] = ACTIONS(502), + [anon_sym_function] = ACTIONS(505), + [anon_sym_new] = ACTIONS(508), + [anon_sym_using] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_void] = ACTIONS(424), + [anon_sym_delete] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(520), + [anon_sym_DASH_DASH] = ACTIONS(520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(523), + [sym_number] = ACTIONS(526), + [sym_private_property_identifier] = ACTIONS(529), + [sym_this] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_true] = ACTIONS(526), + [sym_false] = ACTIONS(526), + [sym_null] = ACTIONS(526), + [sym_undefined] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(535), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(547), + [anon_sym_global] = ACTIONS(550), + [anon_sym_interface] = ACTIONS(553), + [anon_sym_enum] = ACTIONS(556), [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1411), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1250), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), [sym_comment] = STATE(14), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_default] = ACTIONS(552), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(552), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_default] = ACTIONS(559), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(559), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_case] = ACTIONS(552), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_case] = ACTIONS(559), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32202,148 +32297,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1411), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1250), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), [sym_comment] = STATE(15), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_default] = ACTIONS(554), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(554), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_default] = ACTIONS(561), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(561), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_case] = ACTIONS(554), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_case] = ACTIONS(561), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32365,148 +32462,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1411), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1250), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), [sym_comment] = STATE(16), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_default] = ACTIONS(556), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(556), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_default] = ACTIONS(563), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(563), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_case] = ACTIONS(556), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_case] = ACTIONS(563), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32528,278 +32627,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(17), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), - [ts_builtin_sym_end] = ACTIONS(558), - [sym_identifier] = ACTIONS(560), - [anon_sym_export] = ACTIONS(563), - [anon_sym_type] = ACTIONS(566), - [anon_sym_namespace] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_typeof] = ACTIONS(354), - [anon_sym_import] = ACTIONS(575), - [anon_sym_with] = ACTIONS(578), - [anon_sym_var] = ACTIONS(581), - [anon_sym_let] = ACTIONS(584), - [anon_sym_const] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_if] = ACTIONS(590), - [anon_sym_switch] = ACTIONS(593), - [anon_sym_for] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(381), - [anon_sym_await] = ACTIONS(384), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(602), - [anon_sym_try] = ACTIONS(605), - [anon_sym_break] = ACTIONS(608), - [anon_sym_continue] = ACTIONS(611), - [anon_sym_debugger] = ACTIONS(614), - [anon_sym_return] = ACTIONS(617), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_yield] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LTtemplate_GT] = ACTIONS(420), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(426), - [anon_sym_class] = ACTIONS(626), - [anon_sym_async] = ACTIONS(629), - [anon_sym_function] = ACTIONS(632), - [anon_sym_new] = ACTIONS(635), - [anon_sym_using] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(354), - [anon_sym_DASH] = ACTIONS(354), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_TILDE] = ACTIONS(354), - [anon_sym_void] = ACTIONS(354), - [anon_sym_delete] = ACTIONS(354), - [anon_sym_PLUS_PLUS] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(450), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(453), - [sym_number] = ACTIONS(456), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_null] = ACTIONS(456), - [sym_undefined] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(465), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(641), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(644), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_interface] = ACTIONS(650), - [anon_sym_enum] = ACTIONS(653), + [aux_sym_export_statement_repeat1] = STATE(4785), + [ts_builtin_sym_end] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(570), + [anon_sym_type] = ACTIONS(573), + [anon_sym_namespace] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_typeof] = ACTIONS(424), + [anon_sym_import] = ACTIONS(582), + [anon_sym_with] = ACTIONS(585), + [anon_sym_var] = ACTIONS(588), + [anon_sym_let] = ACTIONS(591), + [anon_sym_const] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(600), + [anon_sym_for] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_await] = ACTIONS(454), + [anon_sym_while] = ACTIONS(606), + [anon_sym_do] = ACTIONS(609), + [anon_sym_try] = ACTIONS(612), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_debugger] = ACTIONS(621), + [anon_sym_return] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(627), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_yield] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_LTtemplate_GT] = ACTIONS(490), + [anon_sym_DQUOTE] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_class] = ACTIONS(633), + [anon_sym_async] = ACTIONS(636), + [anon_sym_function] = ACTIONS(639), + [anon_sym_new] = ACTIONS(642), + [anon_sym_using] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_void] = ACTIONS(424), + [anon_sym_delete] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(520), + [anon_sym_DASH_DASH] = ACTIONS(520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(523), + [sym_number] = ACTIONS(526), + [sym_private_property_identifier] = ACTIONS(529), + [sym_this] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_true] = ACTIONS(526), + [sym_false] = ACTIONS(526), + [sym_null] = ACTIONS(526), + [sym_undefined] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(535), + [anon_sym_static] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_get] = ACTIONS(645), + [anon_sym_set] = ACTIONS(645), + [anon_sym_declare] = ACTIONS(648), + [anon_sym_public] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_override] = ACTIONS(645), + [anon_sym_module] = ACTIONS(651), + [anon_sym_any] = ACTIONS(645), + [anon_sym_number] = ACTIONS(645), + [anon_sym_boolean] = ACTIONS(645), + [anon_sym_string] = ACTIONS(645), + [anon_sym_symbol] = ACTIONS(645), + [anon_sym_object] = ACTIONS(645), + [anon_sym_abstract] = ACTIONS(654), + [anon_sym_global] = ACTIONS(550), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(18), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(63), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(39), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(663), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -32868,99 +32971,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(19), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(46), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_RBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33029,99 +33134,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(20), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33190,99 +33297,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(21), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(669), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33351,99 +33460,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(22), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(42), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(671), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33512,99 +33623,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(23), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(673), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33673,99 +33786,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(24), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(675), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33834,99 +33949,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(25), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(677), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33995,99 +34112,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(26), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(679), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34156,99 +34275,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(27), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(681), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34317,99 +34438,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(28), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(683), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34478,99 +34601,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(29), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(685), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34639,99 +34764,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(30), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(54), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(687), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34800,99 +34927,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(31), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(689), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34961,99 +35090,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(32), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(34), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(691), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35122,99 +35253,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(33), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(693), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35283,99 +35416,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(34), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35444,99 +35579,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(35), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(39), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35605,94 +35742,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(36), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), - [ts_builtin_sym_end] = ACTIONS(692), + [aux_sym_export_statement_repeat1] = STATE(4785), + [ts_builtin_sym_end] = ACTIONS(699), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35766,99 +35905,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(37), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(701), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35927,99 +36068,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(38), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(40), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(703), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36088,99 +36231,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(39), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(705), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36249,99 +36394,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(40), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(707), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36410,99 +36557,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(41), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(72), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(42), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(709), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36571,99 +36720,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(42), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(711), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36732,99 +36883,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(43), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(44), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(713), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36893,99 +37046,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(44), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(715), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37054,99 +37209,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(45), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(717), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37215,99 +37372,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(46), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(719), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37376,99 +37535,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(47), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(48), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(57), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(721), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37537,99 +37698,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(48), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(49), + [aux_sym_export_statement_repeat1] = STATE(4785), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [49] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(49), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37698,99 +38024,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(49), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(4814), + [50] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(50), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(51), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37859,99 +38187,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(50), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(69), - [aux_sym_export_statement_repeat1] = STATE(4814), + [51] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(51), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_RBRACE] = ACTIONS(729), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38020,99 +38350,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(51), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [52] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(52), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(35), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(731), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38181,99 +38513,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(52), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(51), - [aux_sym_export_statement_repeat1] = STATE(4814), + [53] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(53), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_RBRACE] = ACTIONS(733), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38342,99 +38676,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(53), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(58), - [aux_sym_export_statement_repeat1] = STATE(4814), - [ts_builtin_sym_end] = ACTIONS(692), + [54] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(54), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(64), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(735), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38503,99 +38839,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(54), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [55] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(55), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(63), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(737), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38664,99 +39002,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(55), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(4814), + [56] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(56), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38825,99 +39165,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(56), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [57] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(57), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38986,99 +39328,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(57), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(61), - [aux_sym_export_statement_repeat1] = STATE(4814), + [58] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(58), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(37), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_RBRACE] = ACTIONS(743), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39147,99 +39491,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(58), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [59] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(59), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), - [ts_builtin_sym_end] = ACTIONS(734), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(745), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39308,99 +39654,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(59), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [60] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(60), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39469,99 +39817,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(60), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [61] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(61), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(749), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39630,99 +39980,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [61] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(61), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [62] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(62), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(71), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(751), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39791,99 +40143,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [62] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(62), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_export_statement_repeat1] = STATE(4814), + [63] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(63), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(753), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39952,99 +40306,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [63] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(63), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [64] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(64), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(755), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40113,99 +40469,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(64), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [65] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(65), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(757), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40274,99 +40632,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [65] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(65), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(71), - [aux_sym_export_statement_repeat1] = STATE(4814), + [66] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(66), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(65), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(759), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40435,99 +40795,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(66), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_export_statement_repeat1] = STATE(4814), + [67] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(67), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(70), + [aux_sym_export_statement_repeat1] = STATE(4785), + [ts_builtin_sym_end] = ACTIONS(699), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(750), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40596,99 +40958,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(67), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(64), - [aux_sym_export_statement_repeat1] = STATE(4814), + [68] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(68), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(761), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40757,99 +41121,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(68), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [69] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(69), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(72), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(763), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40918,99 +41284,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [69] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(69), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [70] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(70), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), + [ts_builtin_sym_end] = ACTIONS(765), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(756), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41079,99 +41447,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [70] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(70), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(59), - [aux_sym_export_statement_repeat1] = STATE(4814), + [71] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(71), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(767), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41240,99 +41610,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [71] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(71), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), + [72] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1477), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(72), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(769), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41401,99 +41773,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [72] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1534), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(72), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4814), + [73] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1532), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(73), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(762), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41562,127 +41934,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [73] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1279), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), - [sym_comment] = STATE(73), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [74] = { + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(6345), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), + [sym_comment] = STATE(74), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -41704,144 +42078,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(6882), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(74), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [75] = { + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1224), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), + [sym_comment] = STATE(75), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -41863,144 +42239,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1436), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), - [sym_comment] = STATE(75), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [76] = { + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(6495), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), + [sym_comment] = STATE(76), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42022,144 +42400,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(6868), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(76), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [77] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1493), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(77), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4785), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42181,144 +42561,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(6846), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(77), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [78] = { + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1163), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), + [sym_comment] = STATE(78), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42340,144 +42722,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1566), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(78), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4814), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [79] = { + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(7106), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), + [sym_comment] = STATE(79), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42499,144 +42883,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1092), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), - [sym_comment] = STATE(79), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [80] = { + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1166), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), + [sym_comment] = STATE(80), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42658,109 +43044,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1462), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(80), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4814), + [81] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1551), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(81), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -42834,92 +43222,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1549), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(81), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4814), + [82] = { + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1479), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), + [sym_comment] = STATE(82), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -42993,127 +43383,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(6704), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(82), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [83] = { + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(6693), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43135,144 +43527,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(6843), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(83), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [84] = { + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1354), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43294,303 +43688,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), - [sym_html_comment] = ACTIONS(5), - }, - [84] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(5748), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(84), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1319), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(7097), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), [sym_comment] = STATE(85), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43612,144 +43849,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [86] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1325), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1567), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(86), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4785), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43771,144 +44010,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1315), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1196), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), [sym_comment] = STATE(87), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43930,144 +44171,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1362), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1013), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), [sym_comment] = STATE(88), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44089,144 +44332,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(7071), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(6912), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), [sym_comment] = STATE(89), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44248,144 +44493,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1306), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(926), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), [sym_comment] = STATE(90), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44407,144 +44654,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1572), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(6801), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), [sym_comment] = STATE(91), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4814), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44566,144 +44815,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1159), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1441), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), [sym_comment] = STATE(92), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44725,144 +44976,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(1065), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(1073), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), [sym_comment] = STATE(93), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44884,144 +45137,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1548), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1379), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), [sym_comment] = STATE(94), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4814), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45043,144 +45298,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(964), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(963), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), [sym_comment] = STATE(95), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45202,144 +45459,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(992), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(6754), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), [sym_comment] = STATE(96), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45361,144 +45620,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(995), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1334), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), [sym_comment] = STATE(97), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45520,144 +45781,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(1128), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(6688), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), [sym_comment] = STATE(98), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45679,144 +45942,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1176), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1303), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), [sym_comment] = STATE(99), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45838,144 +46103,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(1039), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(1069), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), [sym_comment] = STATE(100), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45997,144 +46264,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(7234), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(1065), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), [sym_comment] = STATE(101), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46156,144 +46425,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1208), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1483), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(102), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4785), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46315,144 +46586,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1191), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(1056), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), [sym_comment] = STATE(103), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46474,144 +46747,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(1048), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1528), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(104), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4785), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46633,144 +46908,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(1034), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(7349), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), [sym_comment] = STATE(105), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46792,144 +47069,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(6396), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(5900), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), [sym_comment] = STATE(106), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46951,144 +47230,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1370), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1245), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), [sym_comment] = STATE(107), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47110,427 +47391,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(7300), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), + [sym_export_statement] = STATE(1475), + [sym_declaration] = STATE(1475), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1475), + [sym_statement] = STATE(1457), + [sym_expression_statement] = STATE(1475), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_statement_block] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_for_in_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_try_statement] = STATE(1475), + [sym_with_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_debugger_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_throw_statement] = STATE(1475), + [sym_empty_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6821), + [sym_string] = STATE(2944), [sym_comment] = STATE(108), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), - [sym_html_comment] = ACTIONS(5), - }, - [109] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(913), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), - [sym_comment] = STATE(109), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), - [sym_html_comment] = ACTIONS(5), - }, - [110] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1545), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(110), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4814), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4785), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -47604,286 +47569,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [111] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(6491), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(111), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1016), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), - [sym_comment] = STATE(112), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [109] = { + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1425), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47905,144 +47713,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1526), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(113), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4814), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [110] = { + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(7037), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48064,144 +47874,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(7102), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(114), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [111] = { + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(1033), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48223,144 +48035,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(6611), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(115), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [112] = { + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1242), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48382,144 +48196,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_export_statement] = STATE(1215), - [sym_declaration] = STATE(1215), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1215), - [sym_statement] = STATE(1192), - [sym_expression_statement] = STATE(1215), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_statement_block] = STATE(1215), - [sym_if_statement] = STATE(1215), - [sym_switch_statement] = STATE(1215), - [sym_for_statement] = STATE(1215), - [sym_for_in_statement] = STATE(1215), - [sym_while_statement] = STATE(1215), - [sym_do_statement] = STATE(1215), - [sym_try_statement] = STATE(1215), - [sym_with_statement] = STATE(1215), - [sym_break_statement] = STATE(1215), - [sym_continue_statement] = STATE(1215), - [sym_debugger_statement] = STATE(1215), - [sym_return_statement] = STATE(1215), - [sym_throw_statement] = STATE(1215), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1215), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6992), - [sym_string] = STATE(2924), - [sym_comment] = STATE(116), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [113] = { + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(954), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48541,144 +48357,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_export_statement] = STATE(1147), - [sym_declaration] = STATE(1147), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1147), - [sym_statement] = STATE(954), - [sym_expression_statement] = STATE(1147), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_statement_block] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_with_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_debugger_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_empty_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6360), - [sym_string] = STATE(2924), - [sym_comment] = STATE(117), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [114] = { + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1251), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48700,144 +48518,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1419), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), - [sym_comment] = STATE(118), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), + [115] = { + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1262), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48859,144 +48679,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1428), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), - [sym_comment] = STATE(119), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), + [116] = { + [sym_export_statement] = STATE(1365), + [sym_declaration] = STATE(1365), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1365), + [sym_statement] = STATE(1257), + [sym_expression_statement] = STATE(1365), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_statement_block] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_for_in_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_with_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_debugger_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_empty_statement] = STATE(1365), + [sym_labeled_statement] = STATE(1365), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(2944), + [sym_comment] = STATE(116), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4794), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(845), + [anon_sym_with] = ACTIONS(847), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(851), + [anon_sym_const] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(857), + [anon_sym_for] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(863), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(873), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(885), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49018,144 +48840,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(887), + [anon_sym_readonly] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [anon_sym_declare] = ACTIONS(889), + [anon_sym_public] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_override] = ACTIONS(887), + [anon_sym_module] = ACTIONS(891), + [anon_sym_any] = ACTIONS(887), + [anon_sym_number] = ACTIONS(887), + [anon_sym_boolean] = ACTIONS(887), + [anon_sym_string] = ACTIONS(887), + [anon_sym_symbol] = ACTIONS(887), + [anon_sym_object] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, - [120] = { - [sym_export_statement] = STATE(1232), - [sym_declaration] = STATE(1232), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1232), - [sym_statement] = STATE(1431), - [sym_expression_statement] = STATE(1232), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_statement_block] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_with_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_debugger_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_empty_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6629), - [sym_string] = STATE(2924), - [sym_comment] = STATE(120), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4707), - [sym_identifier] = ACTIONS(486), - [anon_sym_export] = ACTIONS(488), - [anon_sym_type] = ACTIONS(492), - [anon_sym_namespace] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), + [117] = { + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(7040), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), + [sym_comment] = STATE(117), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(498), - [anon_sym_with] = ACTIONS(500), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_const] = ACTIONS(506), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(512), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(514), - [anon_sym_do] = ACTIONS(516), - [anon_sym_try] = ACTIONS(518), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49177,144 +49001,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [anon_sym_declare] = ACTIONS(542), - [anon_sym_public] = ACTIONS(540), - [anon_sym_private] = ACTIONS(540), - [anon_sym_protected] = ACTIONS(540), - [anon_sym_override] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(540), - [anon_sym_number] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_symbol] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_export_statement] = STATE(1535), - [sym_declaration] = STATE(1535), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(1535), - [sym_statement] = STATE(1457), - [sym_expression_statement] = STATE(1535), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_statement_block] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_for_in_statement] = STATE(1535), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_with_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_debugger_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_statement] = STATE(1535), - [sym_empty_statement] = STATE(1535), - [sym_labeled_statement] = STATE(1535), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6435), - [sym_string] = STATE(2924), - [sym_comment] = STATE(121), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4814), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [118] = { + [sym_export_statement] = STATE(1336), + [sym_declaration] = STATE(1336), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1336), + [sym_statement] = STATE(1274), + [sym_expression_statement] = STATE(1336), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_statement_block] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_switch_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_for_in_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_do_statement] = STATE(1336), + [sym_try_statement] = STATE(1336), + [sym_with_statement] = STATE(1336), + [sym_break_statement] = STATE(1336), + [sym_continue_statement] = STATE(1336), + [sym_debugger_statement] = STATE(1336), + [sym_return_statement] = STATE(1336), + [sym_throw_statement] = STATE(1336), + [sym_empty_statement] = STATE(1336), + [sym_labeled_statement] = STATE(1336), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6521), + [sym_string] = STATE(2944), + [sym_comment] = STATE(118), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4719), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(353), + [anon_sym_with] = ACTIONS(355), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_try] = ACTIONS(373), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_debugger] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(393), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49336,144 +49162,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(395), + [anon_sym_readonly] = ACTIONS(395), + [anon_sym_get] = ACTIONS(395), + [anon_sym_set] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_public] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_protected] = ACTIONS(395), + [anon_sym_override] = ACTIONS(395), + [anon_sym_module] = ACTIONS(399), + [anon_sym_any] = ACTIONS(395), + [anon_sym_number] = ACTIONS(395), + [anon_sym_boolean] = ACTIONS(395), + [anon_sym_string] = ACTIONS(395), + [anon_sym_symbol] = ACTIONS(395), + [anon_sym_object] = ACTIONS(395), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_export_statement] = STATE(6925), - [sym_declaration] = STATE(6925), - [sym_import] = STATE(4218), - [sym_import_statement] = STATE(6925), - [sym_statement] = STATE(7036), - [sym_expression_statement] = STATE(6925), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6925), - [sym_if_statement] = STATE(6925), - [sym_switch_statement] = STATE(6925), - [sym_for_statement] = STATE(6925), - [sym_for_in_statement] = STATE(6925), - [sym_while_statement] = STATE(6925), - [sym_do_statement] = STATE(6925), - [sym_try_statement] = STATE(6925), - [sym_with_statement] = STATE(6925), - [sym_break_statement] = STATE(6925), - [sym_continue_statement] = STATE(6925), - [sym_debugger_statement] = STATE(6925), - [sym_return_statement] = STATE(6925), - [sym_throw_statement] = STATE(6925), - [sym_empty_statement] = STATE(6925), - [sym_labeled_statement] = STATE(6925), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6565), - [sym_string] = STATE(2924), - [sym_comment] = STATE(122), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4812), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [119] = { + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(1007), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), + [sym_comment] = STATE(119), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49495,14991 +49323,15672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), + [sym_html_comment] = ACTIONS(5), + }, + [120] = { + [sym_export_statement] = STATE(6619), + [sym_declaration] = STATE(6619), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(6619), + [sym_statement] = STATE(6683), + [sym_expression_statement] = STATE(6619), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_statement_block] = STATE(6619), + [sym_if_statement] = STATE(6619), + [sym_switch_statement] = STATE(6619), + [sym_for_statement] = STATE(6619), + [sym_for_in_statement] = STATE(6619), + [sym_while_statement] = STATE(6619), + [sym_do_statement] = STATE(6619), + [sym_try_statement] = STATE(6619), + [sym_with_statement] = STATE(6619), + [sym_break_statement] = STATE(6619), + [sym_continue_statement] = STATE(6619), + [sym_debugger_statement] = STATE(6619), + [sym_return_statement] = STATE(6619), + [sym_throw_statement] = STATE(6619), + [sym_empty_statement] = STATE(6619), + [sym_labeled_statement] = STATE(6619), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6617), + [sym_string] = STATE(2944), + [sym_comment] = STATE(120), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(781), + [anon_sym_with] = ACTIONS(783), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(787), + [anon_sym_const] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_for] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(799), + [anon_sym_try] = ACTIONS(801), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(805), + [anon_sym_debugger] = ACTIONS(807), + [anon_sym_return] = ACTIONS(809), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(821), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(823), + [anon_sym_readonly] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), + [sym_html_comment] = ACTIONS(5), + }, + [121] = { + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(1021), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), + [sym_comment] = STATE(121), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), + [sym_html_comment] = ACTIONS(5), + }, + [122] = { + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(4235), + [sym_import_statement] = STATE(1133), + [sym_statement] = STATE(986), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6364), + [sym_string] = STATE(2944), + [sym_comment] = STATE(122), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4706), + [sym_identifier] = ACTIONS(899), + [anon_sym_export] = ACTIONS(901), + [anon_sym_type] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(909), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(915), + [anon_sym_const] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(949), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(123), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(976), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(983), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(124), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1004), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(125), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1006), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1044), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(126), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1008), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [127] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), - [sym_comment] = STATE(127), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [127] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), + [sym_comment] = STATE(127), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(6055), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(128), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(5712), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1045), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(6060), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1050), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(5693), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(129), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1047), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1052), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(6055), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(130), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1049), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(6060), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1054), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(131), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1056), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(132), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1053), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1058), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(5693), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(133), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1055), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5716), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1062), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(134), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4926), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1057), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [135] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), - [sym_comment] = STATE(135), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [135] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), + [sym_comment] = STATE(135), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(5125), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(1066), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(136), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4965), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1068), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5139), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1079), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1086), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(137), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5191), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1068), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5140), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1090), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(138), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4978), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1068), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5143), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1085), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1092), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(139), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5295), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1068), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5088), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1094), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(140), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4987), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1068), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5085), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1089), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1096), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(141), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4950), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1068), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5207), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1091), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1098), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(142), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4980), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1068), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1093), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(143), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5295), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1068), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(144), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(124), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1112), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(145), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1127), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(1127), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(146), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_RBRACE] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(217), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(221), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(147), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7352), + [sym_string] = STATE(3014), [sym_comment] = STATE(148), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym__type] = STATE(5553), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_typeof] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1152), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1156), + [sym_number] = ACTIONS(1158), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1160), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1162), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1166), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_protected] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1170), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1172), + [anon_sym_number] = ACTIONS(1172), + [anon_sym_boolean] = ACTIONS(1172), + [anon_sym_string] = ACTIONS(1172), + [anon_sym_symbol] = ACTIONS(1172), + [anon_sym_object] = ACTIONS(1172), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7050), - [sym_string] = STATE(2921), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(149), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym__type] = STATE(5595), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1137), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1145), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1151), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1165), - [anon_sym_number] = ACTIONS(1165), - [anon_sym_boolean] = ACTIONS(1165), - [anon_sym_string] = ACTIONS(1165), - [anon_sym_symbol] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(1165), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7305), - [sym_string] = STATE(2921), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2346), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7384), + [sym_string] = STATE(3014), [sym_comment] = STATE(150), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym__type] = STATE(5638), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1137), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1145), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym__type] = STATE(5553), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_typeof] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1152), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1151), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1165), - [anon_sym_number] = ACTIONS(1165), - [anon_sym_boolean] = ACTIONS(1165), - [anon_sym_string] = ACTIONS(1165), - [anon_sym_symbol] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(1165), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1156), + [sym_number] = ACTIONS(1158), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1160), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1162), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1166), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_protected] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1170), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1172), + [anon_sym_number] = ACTIONS(1172), + [anon_sym_boolean] = ACTIONS(1172), + [anon_sym_string] = ACTIONS(1172), + [anon_sym_symbol] = ACTIONS(1172), + [anon_sym_object] = ACTIONS(1172), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(151), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(124), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [152] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2346), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7384), + [sym_string] = STATE(3014), [sym_comment] = STATE(152), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym__type] = STATE(5617), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1144), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_typeof] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1152), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(987), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1156), + [sym_number] = ACTIONS(1158), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1160), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1162), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1166), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_protected] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1170), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1172), + [anon_sym_number] = ACTIONS(1172), + [anon_sym_boolean] = ACTIONS(1172), + [anon_sym_string] = ACTIONS(1172), + [anon_sym_symbol] = ACTIONS(1172), + [anon_sym_object] = ACTIONS(1172), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [153] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7050), - [sym_string] = STATE(2921), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(153), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym__type] = STATE(5638), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1137), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1145), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1151), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1165), - [anon_sym_number] = ACTIONS(1165), - [anon_sym_boolean] = ACTIONS(1165), - [anon_sym_string] = ACTIONS(1165), - [anon_sym_symbol] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(1165), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(154), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), - [sym_html_comment] = ACTIONS(5), - }, - [155] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), - [sym_comment] = STATE(155), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1169), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1176), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [155] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(155), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(156), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(157), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym__type] = STATE(5638), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(192), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(198), - [anon_sym_number] = ACTIONS(198), - [anon_sym_boolean] = ACTIONS(198), - [anon_sym_string] = ACTIONS(198), - [anon_sym_symbol] = ACTIONS(198), - [anon_sym_object] = ACTIONS(198), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [158] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), - [sym_comment] = STATE(158), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1191), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), - [sym_comment] = STATE(159), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [158] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), + [sym_comment] = STATE(158), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), - [sym_comment] = STATE(160), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(175), + [159] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), + [sym_comment] = STATE(159), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1191), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1192), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_get] = ACTIONS(1184), + [anon_sym_set] = ACTIONS(1184), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_protected] = ACTIONS(1184), + [anon_sym_override] = ACTIONS(1184), + [anon_sym_module] = ACTIONS(1184), + [anon_sym_any] = ACTIONS(1184), + [anon_sym_number] = ACTIONS(1184), + [anon_sym_boolean] = ACTIONS(1184), + [anon_sym_string] = ACTIONS(1184), + [anon_sym_symbol] = ACTIONS(1184), + [anon_sym_object] = ACTIONS(1184), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [160] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), + [sym_comment] = STATE(160), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym__type] = STATE(5463), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(158), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(200), + [anon_sym_number] = ACTIONS(200), + [anon_sym_boolean] = ACTIONS(200), + [anon_sym_string] = ACTIONS(200), + [anon_sym_symbol] = ACTIONS(200), + [anon_sym_object] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(161), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym__type] = STATE(5617), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(158), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(200), + [anon_sym_number] = ACTIONS(200), + [anon_sym_boolean] = ACTIONS(200), + [anon_sym_string] = ACTIONS(200), + [anon_sym_symbol] = ACTIONS(200), + [anon_sym_object] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym_html_comment] = ACTIONS(5), + }, + [162] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), + [sym_comment] = STATE(162), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym__type] = STATE(5553), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(158), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(200), + [anon_sym_number] = ACTIONS(200), + [anon_sym_boolean] = ACTIONS(200), + [anon_sym_string] = ACTIONS(200), + [anon_sym_symbol] = ACTIONS(200), + [anon_sym_object] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym_html_comment] = ACTIONS(5), + }, + [163] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), + [sym_comment] = STATE(163), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), - [sym_html_comment] = ACTIONS(5), - }, - [162] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), - [sym_comment] = STATE(162), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym__type] = STATE(5457), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(192), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(198), - [anon_sym_number] = ACTIONS(198), - [anon_sym_boolean] = ACTIONS(198), - [anon_sym_string] = ACTIONS(198), - [anon_sym_symbol] = ACTIONS(198), - [anon_sym_object] = ACTIONS(198), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [163] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), - [sym_comment] = STATE(163), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym__type] = STATE(5595), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(192), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(198), - [anon_sym_number] = ACTIONS(198), - [anon_sym_boolean] = ACTIONS(198), - [anon_sym_string] = ACTIONS(198), - [anon_sym_symbol] = ACTIONS(198), - [anon_sym_object] = ACTIONS(198), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(164), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(165), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(166), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1192), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(167), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym__type] = STATE(5417), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(158), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(200), + [anon_sym_number] = ACTIONS(200), + [anon_sym_boolean] = ACTIONS(200), + [anon_sym_string] = ACTIONS(200), + [anon_sym_symbol] = ACTIONS(200), + [anon_sym_object] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym_html_comment] = ACTIONS(5), + }, + [168] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), + [sym_comment] = STATE(168), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1192), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), - [sym_html_comment] = ACTIONS(5), - }, - [168] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), - [sym_comment] = STATE(168), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym__type] = STATE(5465), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(192), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(198), - [anon_sym_number] = ACTIONS(198), - [anon_sym_boolean] = ACTIONS(198), - [anon_sym_string] = ACTIONS(198), - [anon_sym_symbol] = ACTIONS(198), - [anon_sym_object] = ACTIONS(198), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_get] = ACTIONS(1184), + [anon_sym_set] = ACTIONS(1184), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_protected] = ACTIONS(1184), + [anon_sym_override] = ACTIONS(1184), + [anon_sym_module] = ACTIONS(1184), + [anon_sym_any] = ACTIONS(1184), + [anon_sym_number] = ACTIONS(1184), + [anon_sym_boolean] = ACTIONS(1184), + [anon_sym_string] = ACTIONS(1184), + [anon_sym_symbol] = ACTIONS(1184), + [anon_sym_object] = ACTIONS(1184), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(169), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(5119), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym__type] = STATE(5416), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(192), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(198), - [anon_sym_number] = ACTIONS(198), - [anon_sym_boolean] = ACTIONS(198), - [anon_sym_string] = ACTIONS(198), - [anon_sym_symbol] = ACTIONS(198), - [anon_sym_object] = ACTIONS(198), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [170] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), - [sym_comment] = STATE(170), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [170] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), + [sym_comment] = STATE(170), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(5057), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym__type] = STATE(5495), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(158), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(200), + [anon_sym_number] = ACTIONS(200), + [anon_sym_boolean] = ACTIONS(200), + [anon_sym_string] = ACTIONS(200), + [anon_sym_symbol] = ACTIONS(200), + [anon_sym_object] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(171), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1010), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1011), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(1012), - [anon_sym_set] = ACTIONS(1012), - [anon_sym_declare] = ACTIONS(1012), - [anon_sym_public] = ACTIONS(1012), - [anon_sym_private] = ACTIONS(1012), - [anon_sym_protected] = ACTIONS(1012), - [anon_sym_override] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_any] = ACTIONS(1012), - [anon_sym_number] = ACTIONS(1012), - [anon_sym_boolean] = ACTIONS(1012), - [anon_sym_string] = ACTIONS(1012), - [anon_sym_symbol] = ACTIONS(1012), - [anon_sym_object] = ACTIONS(1012), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_override] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(172), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1208), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(124), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1223), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1210), - [anon_sym_number] = ACTIONS(1210), - [anon_sym_boolean] = ACTIONS(1210), - [anon_sym_string] = ACTIONS(1210), - [anon_sym_symbol] = ACTIONS(1210), - [anon_sym_object] = ACTIONS(1210), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(1217), + [anon_sym_set] = ACTIONS(1217), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_public] = ACTIONS(1217), + [anon_sym_private] = ACTIONS(1217), + [anon_sym_protected] = ACTIONS(1217), + [anon_sym_override] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_any] = ACTIONS(1217), + [anon_sym_number] = ACTIONS(1217), + [anon_sym_boolean] = ACTIONS(1217), + [anon_sym_string] = ACTIONS(1217), + [anon_sym_symbol] = ACTIONS(1217), + [anon_sym_object] = ACTIONS(1217), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(173), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1225), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(1232), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(174), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1225), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(1232), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), [sym_comment] = STATE(175), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1208), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(124), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1235), + [anon_sym_export] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1237), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1223), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1243), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1247), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1210), - [anon_sym_number] = ACTIONS(1210), - [anon_sym_boolean] = ACTIONS(1210), - [anon_sym_string] = ACTIONS(1210), - [anon_sym_symbol] = ACTIONS(1210), - [anon_sym_object] = ACTIONS(1210), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_readonly] = ACTIONS(1237), + [anon_sym_get] = ACTIONS(1237), + [anon_sym_set] = ACTIONS(1237), + [anon_sym_declare] = ACTIONS(1237), + [anon_sym_public] = ACTIONS(1237), + [anon_sym_private] = ACTIONS(1237), + [anon_sym_protected] = ACTIONS(1237), + [anon_sym_override] = ACTIONS(1237), + [anon_sym_module] = ACTIONS(1237), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(176), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1208), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1249), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1223), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1257), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1261), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1210), - [anon_sym_number] = ACTIONS(1210), - [anon_sym_boolean] = ACTIONS(1210), - [anon_sym_string] = ACTIONS(1210), - [anon_sym_symbol] = ACTIONS(1210), - [anon_sym_object] = ACTIONS(1210), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_get] = ACTIONS(1251), + [anon_sym_set] = ACTIONS(1251), + [anon_sym_declare] = ACTIONS(1251), + [anon_sym_public] = ACTIONS(1251), + [anon_sym_private] = ACTIONS(1251), + [anon_sym_protected] = ACTIONS(1251), + [anon_sym_override] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_any] = ACTIONS(1251), + [anon_sym_number] = ACTIONS(1251), + [anon_sym_boolean] = ACTIONS(1251), + [anon_sym_string] = ACTIONS(1251), + [anon_sym_symbol] = ACTIONS(1251), + [anon_sym_object] = ACTIONS(1251), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(177), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1232), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(178), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(1217), + [anon_sym_set] = ACTIONS(1217), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_public] = ACTIONS(1217), + [anon_sym_private] = ACTIONS(1217), + [anon_sym_protected] = ACTIONS(1217), + [anon_sym_override] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_any] = ACTIONS(1217), + [anon_sym_number] = ACTIONS(1217), + [anon_sym_boolean] = ACTIONS(1217), + [anon_sym_string] = ACTIONS(1217), + [anon_sym_symbol] = ACTIONS(1217), + [anon_sym_object] = ACTIONS(1217), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(179), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1236), - [anon_sym_export] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1249), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1244), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1232), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1246), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1257), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1261), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_readonly] = ACTIONS(1238), - [anon_sym_get] = ACTIONS(1238), - [anon_sym_set] = ACTIONS(1238), - [anon_sym_declare] = ACTIONS(1238), - [anon_sym_public] = ACTIONS(1238), - [anon_sym_private] = ACTIONS(1238), - [anon_sym_protected] = ACTIONS(1238), - [anon_sym_override] = ACTIONS(1238), - [anon_sym_module] = ACTIONS(1238), - [anon_sym_any] = ACTIONS(1238), - [anon_sym_number] = ACTIONS(1238), - [anon_sym_boolean] = ACTIONS(1238), - [anon_sym_string] = ACTIONS(1238), - [anon_sym_symbol] = ACTIONS(1238), - [anon_sym_object] = ACTIONS(1238), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_get] = ACTIONS(1251), + [anon_sym_set] = ACTIONS(1251), + [anon_sym_declare] = ACTIONS(1251), + [anon_sym_public] = ACTIONS(1251), + [anon_sym_private] = ACTIONS(1251), + [anon_sym_protected] = ACTIONS(1251), + [anon_sym_override] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_any] = ACTIONS(1251), + [anon_sym_number] = ACTIONS(1251), + [anon_sym_boolean] = ACTIONS(1251), + [anon_sym_string] = ACTIONS(1251), + [anon_sym_symbol] = ACTIONS(1251), + [anon_sym_object] = ACTIONS(1251), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(180), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1250), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_readonly] = ACTIONS(1252), - [anon_sym_get] = ACTIONS(1252), - [anon_sym_set] = ACTIONS(1252), - [anon_sym_declare] = ACTIONS(1252), - [anon_sym_public] = ACTIONS(1252), - [anon_sym_private] = ACTIONS(1252), - [anon_sym_protected] = ACTIONS(1252), - [anon_sym_override] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_any] = ACTIONS(1252), - [anon_sym_number] = ACTIONS(1252), - [anon_sym_boolean] = ACTIONS(1252), - [anon_sym_string] = ACTIONS(1252), - [anon_sym_symbol] = ACTIONS(1252), - [anon_sym_object] = ACTIONS(1252), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(181), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5332), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6768), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(182), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1236), - [anon_sym_export] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1244), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1232), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1246), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_readonly] = ACTIONS(1238), - [anon_sym_get] = ACTIONS(1238), - [anon_sym_set] = ACTIONS(1238), - [anon_sym_declare] = ACTIONS(1238), - [anon_sym_public] = ACTIONS(1238), - [anon_sym_private] = ACTIONS(1238), - [anon_sym_protected] = ACTIONS(1238), - [anon_sym_override] = ACTIONS(1238), - [anon_sym_module] = ACTIONS(1238), - [anon_sym_any] = ACTIONS(1238), - [anon_sym_number] = ACTIONS(1238), - [anon_sym_boolean] = ACTIONS(1238), - [anon_sym_string] = ACTIONS(1238), - [anon_sym_symbol] = ACTIONS(1238), - [anon_sym_object] = ACTIONS(1238), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(183), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1262), - [anon_sym_export] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(175), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [184] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1987), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2489), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1987), + [sym_subscript_expression] = STATE(1987), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2944), + [sym_comment] = STATE(184), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1987), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1235), + [anon_sym_export] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1237), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1026), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1243), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1247), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(188), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1040), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_readonly] = ACTIONS(1264), - [anon_sym_get] = ACTIONS(1264), - [anon_sym_set] = ACTIONS(1264), - [anon_sym_declare] = ACTIONS(1264), - [anon_sym_public] = ACTIONS(1264), - [anon_sym_private] = ACTIONS(1264), - [anon_sym_protected] = ACTIONS(1264), - [anon_sym_override] = ACTIONS(1264), - [anon_sym_module] = ACTIONS(1264), - [anon_sym_any] = ACTIONS(1264), - [anon_sym_number] = ACTIONS(1264), - [anon_sym_boolean] = ACTIONS(1264), - [anon_sym_string] = ACTIONS(1264), - [anon_sym_symbol] = ACTIONS(1264), - [anon_sym_object] = ACTIONS(1264), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), - [sym_html_comment] = ACTIONS(5), - }, - [184] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(184), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_readonly] = ACTIONS(1237), + [anon_sym_get] = ACTIONS(1237), + [anon_sym_set] = ACTIONS(1237), + [anon_sym_declare] = ACTIONS(1237), + [anon_sym_public] = ACTIONS(1237), + [anon_sym_private] = ACTIONS(1237), + [anon_sym_protected] = ACTIONS(1237), + [anon_sym_override] = ACTIONS(1237), + [anon_sym_module] = ACTIONS(1237), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(185), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1208), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1223), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1210), - [anon_sym_number] = ACTIONS(1210), - [anon_sym_boolean] = ACTIONS(1210), - [anon_sym_string] = ACTIONS(1210), - [anon_sym_symbol] = ACTIONS(1210), - [anon_sym_object] = ACTIONS(1210), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(1217), + [anon_sym_set] = ACTIONS(1217), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_public] = ACTIONS(1217), + [anon_sym_private] = ACTIONS(1217), + [anon_sym_protected] = ACTIONS(1217), + [anon_sym_override] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_any] = ACTIONS(1217), + [anon_sym_number] = ACTIONS(1217), + [anon_sym_boolean] = ACTIONS(1217), + [anon_sym_string] = ACTIONS(1217), + [anon_sym_symbol] = ACTIONS(1217), + [anon_sym_object] = ACTIONS(1217), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(186), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1250), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5335), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6772), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_readonly] = ACTIONS(1252), - [anon_sym_get] = ACTIONS(1252), - [anon_sym_set] = ACTIONS(1252), - [anon_sym_declare] = ACTIONS(1252), - [anon_sym_public] = ACTIONS(1252), - [anon_sym_private] = ACTIONS(1252), - [anon_sym_protected] = ACTIONS(1252), - [anon_sym_override] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_any] = ACTIONS(1252), - [anon_sym_number] = ACTIONS(1252), - [anon_sym_boolean] = ACTIONS(1252), - [anon_sym_string] = ACTIONS(1252), - [anon_sym_symbol] = ACTIONS(1252), - [anon_sym_object] = ACTIONS(1252), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2014), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2570), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2014), - [sym_subscript_expression] = STATE(2014), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(187), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2014), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1262), - [anon_sym_export] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_readonly] = ACTIONS(1264), - [anon_sym_get] = ACTIONS(1264), - [anon_sym_set] = ACTIONS(1264), - [anon_sym_declare] = ACTIONS(1264), - [anon_sym_public] = ACTIONS(1264), - [anon_sym_private] = ACTIONS(1264), - [anon_sym_protected] = ACTIONS(1264), - [anon_sym_override] = ACTIONS(1264), - [anon_sym_module] = ACTIONS(1264), - [anon_sym_any] = ACTIONS(1264), - [anon_sym_number] = ACTIONS(1264), - [anon_sym_boolean] = ACTIONS(1264), - [anon_sym_string] = ACTIONS(1264), - [anon_sym_symbol] = ACTIONS(1264), - [anon_sym_object] = ACTIONS(1264), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(1217), + [anon_sym_set] = ACTIONS(1217), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_public] = ACTIONS(1217), + [anon_sym_private] = ACTIONS(1217), + [anon_sym_protected] = ACTIONS(1217), + [anon_sym_override] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_any] = ACTIONS(1217), + [anon_sym_number] = ACTIONS(1217), + [anon_sym_boolean] = ACTIONS(1217), + [anon_sym_string] = ACTIONS(1217), + [anon_sym_symbol] = ACTIONS(1217), + [anon_sym_object] = ACTIONS(1217), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(188), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(189), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1276), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1288), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_readonly] = ACTIONS(1278), - [anon_sym_get] = ACTIONS(1278), - [anon_sym_set] = ACTIONS(1278), - [anon_sym_declare] = ACTIONS(1278), - [anon_sym_public] = ACTIONS(1278), - [anon_sym_private] = ACTIONS(1278), - [anon_sym_protected] = ACTIONS(1278), - [anon_sym_override] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_any] = ACTIONS(1278), - [anon_sym_number] = ACTIONS(1278), - [anon_sym_boolean] = ACTIONS(1278), - [anon_sym_string] = ACTIONS(1278), - [anon_sym_symbol] = ACTIONS(1278), - [anon_sym_object] = ACTIONS(1278), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(190), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1283), + [anon_sym_export] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1291), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1293), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1295), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1285), + [anon_sym_readonly] = ACTIONS(1285), + [anon_sym_get] = ACTIONS(1285), + [anon_sym_set] = ACTIONS(1285), + [anon_sym_declare] = ACTIONS(1285), + [anon_sym_public] = ACTIONS(1285), + [anon_sym_private] = ACTIONS(1285), + [anon_sym_protected] = ACTIONS(1285), + [anon_sym_override] = ACTIONS(1285), + [anon_sym_module] = ACTIONS(1285), + [anon_sym_any] = ACTIONS(1285), + [anon_sym_number] = ACTIONS(1285), + [anon_sym_boolean] = ACTIONS(1285), + [anon_sym_string] = ACTIONS(1285), + [anon_sym_symbol] = ACTIONS(1285), + [anon_sym_object] = ACTIONS(1285), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(191), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1208), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1223), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1293), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1210), - [anon_sym_number] = ACTIONS(1210), - [anon_sym_boolean] = ACTIONS(1210), - [anon_sym_string] = ACTIONS(1210), - [anon_sym_symbol] = ACTIONS(1210), - [anon_sym_object] = ACTIONS(1210), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(192), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1276), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1288), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_readonly] = ACTIONS(1278), - [anon_sym_get] = ACTIONS(1278), - [anon_sym_set] = ACTIONS(1278), - [anon_sym_declare] = ACTIONS(1278), - [anon_sym_public] = ACTIONS(1278), - [anon_sym_private] = ACTIONS(1278), - [anon_sym_protected] = ACTIONS(1278), - [anon_sym_override] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_any] = ACTIONS(1278), - [anon_sym_number] = ACTIONS(1278), - [anon_sym_boolean] = ACTIONS(1278), - [anon_sym_string] = ACTIONS(1278), - [anon_sym_symbol] = ACTIONS(1278), - [anon_sym_object] = ACTIONS(1278), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(1217), + [anon_sym_set] = ACTIONS(1217), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_public] = ACTIONS(1217), + [anon_sym_private] = ACTIONS(1217), + [anon_sym_protected] = ACTIONS(1217), + [anon_sym_override] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_any] = ACTIONS(1217), + [anon_sym_number] = ACTIONS(1217), + [anon_sym_boolean] = ACTIONS(1217), + [anon_sym_string] = ACTIONS(1217), + [anon_sym_symbol] = ACTIONS(1217), + [anon_sym_object] = ACTIONS(1217), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(193), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(1217), + [anon_sym_set] = ACTIONS(1217), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_public] = ACTIONS(1217), + [anon_sym_private] = ACTIONS(1217), + [anon_sym_protected] = ACTIONS(1217), + [anon_sym_override] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_any] = ACTIONS(1217), + [anon_sym_number] = ACTIONS(1217), + [anon_sym_boolean] = ACTIONS(1217), + [anon_sym_string] = ACTIONS(1217), + [anon_sym_symbol] = ACTIONS(1217), + [anon_sym_object] = ACTIONS(1217), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(194), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1208), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1223), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1210), - [anon_sym_number] = ACTIONS(1210), - [anon_sym_boolean] = ACTIONS(1210), - [anon_sym_string] = ACTIONS(1210), - [anon_sym_symbol] = ACTIONS(1210), - [anon_sym_object] = ACTIONS(1210), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(195), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1283), + [anon_sym_export] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1291), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1293), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1295), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1285), + [anon_sym_readonly] = ACTIONS(1285), + [anon_sym_get] = ACTIONS(1285), + [anon_sym_set] = ACTIONS(1285), + [anon_sym_declare] = ACTIONS(1285), + [anon_sym_public] = ACTIONS(1285), + [anon_sym_private] = ACTIONS(1285), + [anon_sym_protected] = ACTIONS(1285), + [anon_sym_override] = ACTIONS(1285), + [anon_sym_module] = ACTIONS(1285), + [anon_sym_any] = ACTIONS(1285), + [anon_sym_number] = ACTIONS(1285), + [anon_sym_boolean] = ACTIONS(1285), + [anon_sym_string] = ACTIONS(1285), + [anon_sym_symbol] = ACTIONS(1285), + [anon_sym_object] = ACTIONS(1285), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(196), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(197), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(198), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(199), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4190), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2914), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6934), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7024), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2832), [sym_comment] = STATE(200), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4928), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6700), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5253), + [sym_pattern] = STATE(5703), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3909), + [sym__type_query_member_expression_in_type_annotation] = STATE(4049), + [sym__type_query_call_expression_in_type_annotation] = STATE(4312), + [sym__type] = STATE(4050), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1307), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1319), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1331), + [sym_number] = ACTIONS(1333), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1335), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1333), + [sym_false] = ACTIONS(1333), + [sym_null] = ACTIONS(1333), + [sym_undefined] = ACTIONS(1337), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(201), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(202), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(203), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5126), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6882), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(4293), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(6873), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7060), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2710), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(204), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5250), - [sym_pattern] = STATE(5956), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3857), - [sym__type_query_member_expression_in_type_annotation] = STATE(4039), - [sym__type_query_call_expression_in_type_annotation] = STATE(4329), - [sym__type] = STATE(4036), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6746), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1304), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_typeof] = ACTIONS(1310), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(1326), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1328), - [sym_number] = ACTIONS(1330), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [sym_null] = ACTIONS(1330), - [sym_undefined] = ACTIONS(1334), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1336), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(205), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(206), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2208), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2207), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(207), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(4187), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2235), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2428), + [sym_import] = STATE(4122), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2415), [sym_comment] = STATE(208), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4622), - [sym__type_query_call_expression_in_type_annotation] = STATE(5620), - [sym__type] = STATE(4623), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1360), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_typeof] = ACTIONS(1368), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1370), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4770), + [sym__type_query_call_expression_in_type_annotation] = STATE(5632), + [sym__type] = STATE(4771), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1367), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1383), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1374), - [anon_sym_using] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1378), - [sym_number] = ACTIONS(1380), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1382), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [sym_null] = ACTIONS(1380), - [sym_undefined] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1399), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(1403), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1405), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1388), - [anon_sym_number] = ACTIONS(1388), - [anon_sym_boolean] = ACTIONS(1388), - [anon_sym_string] = ACTIONS(1388), - [anon_sym_symbol] = ACTIONS(1388), - [anon_sym_object] = ACTIONS(1388), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_number] = ACTIONS(1409), + [anon_sym_boolean] = ACTIONS(1409), + [anon_sym_string] = ACTIONS(1409), + [anon_sym_symbol] = ACTIONS(1409), + [anon_sym_object] = ACTIONS(1409), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(4105), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2800), + [sym_import] = STATE(4122), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2303), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2415), [sym_comment] = STATE(209), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4622), - [sym__type_query_call_expression_in_type_annotation] = STATE(5620), - [sym__type] = STATE(4623), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1398), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1406), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4770), + [sym__type_query_call_expression_in_type_annotation] = STATE(5632), + [sym__type] = STATE(4771), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1383), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_number] = ACTIONS(1422), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(1426), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1421), + [anon_sym_using] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_number] = ACTIONS(1399), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1403), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1399), + [sym_false] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1425), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1430), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1432), - [anon_sym_number] = ACTIONS(1432), - [anon_sym_boolean] = ACTIONS(1432), - [anon_sym_string] = ACTIONS(1432), - [anon_sym_symbol] = ACTIONS(1432), - [anon_sym_object] = ACTIONS(1432), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_number] = ACTIONS(1429), + [anon_sym_boolean] = ACTIONS(1429), + [anon_sym_string] = ACTIONS(1429), + [anon_sym_symbol] = ACTIONS(1429), + [anon_sym_object] = ACTIONS(1429), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(4105), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3125), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2800), + [sym_import] = STATE(4085), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3219), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2754), [sym_comment] = STATE(210), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4622), - [sym__type_query_call_expression_in_type_annotation] = STATE(5620), - [sym__type] = STATE(4623), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1434), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1440), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1406), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4770), + [sym__type_query_call_expression_in_type_annotation] = STATE(5632), + [sym__type] = STATE(4771), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1431), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1437), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1456), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_number] = ACTIONS(1422), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(1426), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(160), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_number] = ACTIONS(1445), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1447), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1466), - [anon_sym_number] = ACTIONS(1466), - [anon_sym_boolean] = ACTIONS(1466), - [anon_sym_string] = ACTIONS(1466), - [anon_sym_symbol] = ACTIONS(1466), - [anon_sym_object] = ACTIONS(1466), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1451), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_number] = ACTIONS(1453), + [anon_sym_boolean] = ACTIONS(1453), + [anon_sym_string] = ACTIONS(1453), + [anon_sym_symbol] = ACTIONS(1453), + [anon_sym_object] = ACTIONS(1453), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(4105), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3201), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2800), + [sym_import] = STATE(4085), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3121), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2754), [sym_comment] = STATE(211), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4622), - [sym__type_query_call_expression_in_type_annotation] = STATE(5620), - [sym__type] = STATE(4623), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_typeof] = ACTIONS(1472), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1406), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4770), + [sym__type_query_call_expression_in_type_annotation] = STATE(5632), + [sym__type] = STATE(4771), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1455), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_typeof] = ACTIONS(1463), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1437), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_number] = ACTIONS(1422), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1426), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1473), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1479), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_number] = ACTIONS(1445), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(1447), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1480), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1487), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_number] = ACTIONS(1489), + [anon_sym_boolean] = ACTIONS(1489), + [anon_sym_string] = ACTIONS(1489), + [anon_sym_symbol] = ACTIONS(1489), + [anon_sym_object] = ACTIONS(1489), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(4236), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2863), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(3189), + [sym_import] = STATE(4295), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2797), [sym_comment] = STATE(212), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4699), - [sym__type_query_call_expression_in_type_annotation] = STATE(5467), - [sym__type] = STATE(4698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_typeof] = ACTIONS(1492), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1506), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_private_property_identifier] = ACTIONS(1520), - [sym_this] = ACTIONS(1522), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_undefined] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1526), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1528), - [anon_sym_number] = ACTIONS(1528), - [anon_sym_boolean] = ACTIONS(1528), - [anon_sym_string] = ACTIONS(1528), - [anon_sym_symbol] = ACTIONS(1528), - [anon_sym_object] = ACTIONS(1528), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [213] = { - [sym_import] = STATE(4104), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2860), - [sym_comment] = STATE(213), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4699), - [sym__type_query_call_expression_in_type_annotation] = STATE(5467), - [sym__type] = STATE(4698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_typeof] = ACTIONS(1538), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(131), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4648), + [sym__type_query_call_expression_in_type_annotation] = STATE(5444), + [sym__type] = STATE(4645), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1491), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1499), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(133), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_await] = ACTIONS(41), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1544), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1507), [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(1548), + [anon_sym_void] = ACTIONS(1511), [anon_sym_delete] = ACTIONS(21), [anon_sym_PLUS_PLUS] = ACTIONS(85), [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_number] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1513), + [sym_number] = ACTIONS(1515), [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1554), + [sym_this] = ACTIONS(1517), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1552), - [sym_false] = ACTIONS(1552), - [sym_null] = ACTIONS(1552), - [sym_undefined] = ACTIONS(1556), + [sym_true] = ACTIONS(1515), + [sym_false] = ACTIONS(1515), + [sym_null] = ACTIONS(1515), + [sym_undefined] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_readonly] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1493), + [anon_sym_set] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(198), + [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(1523), + [anon_sym_number] = ACTIONS(1523), + [anon_sym_boolean] = ACTIONS(1523), + [anon_sym_string] = ACTIONS(1523), + [anon_sym_symbol] = ACTIONS(1523), + [anon_sym_object] = ACTIONS(1523), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(105), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym_html_comment] = ACTIONS(5), + }, + [213] = { + [sym_import] = STATE(4085), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2814), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2754), + [sym_comment] = STATE(213), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4770), + [sym__type_query_call_expression_in_type_annotation] = STATE(5632), + [sym__type] = STATE(4771), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1525), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_typeof] = ACTIONS(1531), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1547), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_number] = ACTIONS(1445), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(1447), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_undefined] = ACTIONS(1553), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1558), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1560), - [anon_sym_number] = ACTIONS(1560), - [anon_sym_boolean] = ACTIONS(1560), - [anon_sym_string] = ACTIONS(1560), - [anon_sym_symbol] = ACTIONS(1560), - [anon_sym_object] = ACTIONS(1560), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1555), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [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_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(4104), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2860), + [sym_import] = STATE(4085), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2754), [sym_comment] = STATE(214), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4699), - [sym__type_query_call_expression_in_type_annotation] = STATE(5467), - [sym__type] = STATE(4698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1562), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1540), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4770), + [sym__type_query_call_expression_in_type_annotation] = STATE(5632), + [sym__type] = STATE(4771), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1559), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1437), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1578), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_number] = ACTIONS(1552), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(1554), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1552), - [sym_false] = ACTIONS(1552), - [sym_null] = ACTIONS(1552), - [sym_undefined] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1575), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_number] = ACTIONS(1445), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(1447), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_undefined] = ACTIONS(1587), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1592), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1594), - [anon_sym_number] = ACTIONS(1594), - [anon_sym_boolean] = ACTIONS(1594), - [anon_sym_string] = ACTIONS(1594), - [anon_sym_symbol] = ACTIONS(1594), - [anon_sym_object] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1589), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1591), + [anon_sym_number] = ACTIONS(1591), + [anon_sym_boolean] = ACTIONS(1591), + [anon_sym_string] = ACTIONS(1591), + [anon_sym_symbol] = ACTIONS(1591), + [anon_sym_object] = ACTIONS(1591), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(4105), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2998), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2800), + [sym_import] = STATE(4295), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2797), [sym_comment] = STATE(215), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4622), - [sym__type_query_call_expression_in_type_annotation] = STATE(5620), - [sym__type] = STATE(4623), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1596), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_typeof] = ACTIONS(1602), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1406), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4648), + [sym__type_query_call_expression_in_type_annotation] = STATE(5444), + [sym__type] = STATE(4645), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1593), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1618), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_number] = ACTIONS(1422), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(1426), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1624), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1615), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1513), + [sym_number] = ACTIONS(1515), + [sym_private_property_identifier] = ACTIONS(1619), + [sym_this] = ACTIONS(1517), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1515), + [sym_false] = ACTIONS(1515), + [sym_null] = ACTIONS(1515), + [sym_undefined] = ACTIONS(1621), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_number] = ACTIONS(1628), - [anon_sym_boolean] = ACTIONS(1628), - [anon_sym_string] = ACTIONS(1628), - [anon_sym_symbol] = ACTIONS(1628), - [anon_sym_object] = ACTIONS(1628), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1623), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_QMARK] = ACTIONS(198), + [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(1625), + [anon_sym_number] = ACTIONS(1625), + [anon_sym_boolean] = ACTIONS(1625), + [anon_sym_string] = ACTIONS(1625), + [anon_sym_symbol] = ACTIONS(1625), + [anon_sym_object] = ACTIONS(1625), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(105), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(4187), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2632), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2428), + [sym_import] = STATE(4152), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2788), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3202), [sym_comment] = STATE(216), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4622), - [sym__type_query_call_expression_in_type_annotation] = STATE(5620), - [sym__type] = STATE(4623), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1630), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_typeof] = ACTIONS(1636), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1370), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4648), + [sym__type_query_call_expression_in_type_annotation] = STATE(5444), + [sym__type] = STATE(4645), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1627), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1643), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1646), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1652), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1378), - [sym_number] = ACTIONS(1380), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(1382), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [sym_null] = ACTIONS(1380), - [sym_undefined] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1647), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1653), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1657), + [sym_number] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(1663), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1659), + [sym_false] = ACTIONS(1659), + [sym_null] = ACTIONS(1659), + [sym_undefined] = ACTIONS(1665), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1660), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1662), - [anon_sym_number] = ACTIONS(1662), - [anon_sym_boolean] = ACTIONS(1662), - [anon_sym_string] = ACTIONS(1662), - [anon_sym_symbol] = ACTIONS(1662), - [anon_sym_object] = ACTIONS(1662), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1669), + [anon_sym_number] = ACTIONS(1669), + [anon_sym_boolean] = ACTIONS(1669), + [anon_sym_string] = ACTIONS(1669), + [anon_sym_symbol] = ACTIONS(1669), + [anon_sym_object] = ACTIONS(1669), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(105), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7033), - [sym_string] = STATE(2921), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7109), + [sym_string] = STATE(3014), [sym_comment] = STATE(217), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(6027), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(5083), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(5537), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1664), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1668), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5696), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(5162), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(5525), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1671), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_typeof] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1675), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1374), - [anon_sym_using] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1151), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1670), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1421), + [anon_sym_using] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1156), + [sym_number] = ACTIONS(1158), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1677), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1679), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1681), + [anon_sym_number] = ACTIONS(1681), + [anon_sym_boolean] = ACTIONS(1681), + [anon_sym_string] = ACTIONS(1681), + [anon_sym_symbol] = ACTIONS(1681), + [anon_sym_object] = ACTIONS(1681), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2113), - [sym_subscript_expression] = STATE(2113), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4592), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(3293), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4514), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(3298), [sym_comment] = STATE(218), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2113), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5075), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1676), - [anon_sym_export] = ACTIONS(1678), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1678), - [anon_sym_namespace] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_typeof] = ACTIONS(1684), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1686), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5160), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1683), + [anon_sym_export] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1685), + [anon_sym_namespace] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_typeof] = ACTIONS(1691), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1693), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1688), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1690), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1694), - [sym_number] = ACTIONS(1696), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1698), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(1696), - [sym_false] = ACTIONS(1696), - [sym_null] = ACTIONS(1696), - [sym_undefined] = ACTIONS(1700), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1695), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1697), + [anon_sym_using] = ACTIONS(160), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1701), + [sym_number] = ACTIONS(1703), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1705), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(1703), + [sym_false] = ACTIONS(1703), + [sym_null] = ACTIONS(1703), + [sym_undefined] = ACTIONS(1707), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_readonly] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1678), - [anon_sym_set] = ACTIONS(1678), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1678), - [anon_sym_public] = ACTIONS(1678), - [anon_sym_private] = ACTIONS(1678), - [anon_sym_protected] = ACTIONS(1678), - [anon_sym_override] = ACTIONS(1678), - [anon_sym_module] = ACTIONS(1678), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_readonly] = ACTIONS(1709), + [anon_sym_get] = ACTIONS(1685), + [anon_sym_set] = ACTIONS(1685), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1685), + [anon_sym_public] = ACTIONS(1685), + [anon_sym_private] = ACTIONS(1685), + [anon_sym_protected] = ACTIONS(1685), + [anon_sym_override] = ACTIONS(1685), + [anon_sym_module] = ACTIONS(1685), + [anon_sym_any] = ACTIONS(1711), + [anon_sym_number] = ACTIONS(1711), + [anon_sym_boolean] = ACTIONS(1711), + [anon_sym_string] = ACTIONS(1711), + [anon_sym_symbol] = ACTIONS(1711), + [anon_sym_object] = ACTIONS(1711), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_nested_identifier] = STATE(7019), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2044), - [sym_subscript_expression] = STATE(2044), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(5056), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2932), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_nested_identifier] = STATE(7165), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(5000), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2990), [sym_comment] = STATE(219), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(5119), - [sym_non_null_expression] = STATE(2044), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5075), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6951), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1706), - [anon_sym_export] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_namespace] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(5057), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5160), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6700), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1713), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_namespace] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(981), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1716), - [anon_sym_using] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(182), - [sym_number] = ACTIONS(184), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(184), - [sym_false] = ACTIONS(184), - [sym_null] = ACTIONS(184), - [sym_undefined] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1721), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_using] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(997), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(184), + [sym_number] = ACTIONS(186), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(1725), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_readonly] = ACTIONS(1720), - [anon_sym_get] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(1708), - [anon_sym_public] = ACTIONS(1708), - [anon_sym_private] = ACTIONS(1708), - [anon_sym_protected] = ACTIONS(1708), - [anon_sym_override] = ACTIONS(1708), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_any] = ACTIONS(1722), - [anon_sym_number] = ACTIONS(1722), - [anon_sym_boolean] = ACTIONS(1722), - [anon_sym_string] = ACTIONS(1722), - [anon_sym_symbol] = ACTIONS(1722), - [anon_sym_object] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1715), + [anon_sym_readonly] = ACTIONS(1727), + [anon_sym_get] = ACTIONS(1715), + [anon_sym_set] = ACTIONS(1715), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_declare] = ACTIONS(1715), + [anon_sym_public] = ACTIONS(1715), + [anon_sym_private] = ACTIONS(1715), + [anon_sym_protected] = ACTIONS(1715), + [anon_sym_override] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_any] = ACTIONS(1729), + [anon_sym_number] = ACTIONS(1729), + [anon_sym_boolean] = ACTIONS(1729), + [anon_sym_string] = ACTIONS(1729), + [anon_sym_symbol] = ACTIONS(1729), + [anon_sym_object] = ACTIONS(1729), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_global] = ACTIONS(204), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2288), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2374), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(220), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_await] = ACTIONS(970), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1728), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_await] = ACTIONS(977), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(1735), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_satisfies] = ACTIONS(1728), - [sym__ternary_qmark] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(1735), + [sym__ternary_qmark] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2571), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(221), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1735), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), @@ -64496,6608 +65005,6343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [anon_sym_satisfies] = ACTIONS(1728), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym__ternary_qmark] = ACTIONS(1734), + [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_global] = ACTIONS(105), + [anon_sym_satisfies] = ACTIONS(1735), + [sym__automatic_semicolon] = ACTIONS(1741), + [sym__ternary_qmark] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2426), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(222), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_of] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_of] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [anon_sym_satisfies] = ACTIONS(1728), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym__ternary_qmark] = ACTIONS(1734), + [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_global] = ACTIONS(105), + [anon_sym_satisfies] = ACTIONS(1735), + [sym__automatic_semicolon] = ACTIONS(1741), + [sym__ternary_qmark] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2868), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2855), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(223), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [anon_sym_satisfies] = ACTIONS(1728), - [sym__ternary_qmark] = ACTIONS(1734), - [sym_html_comment] = ACTIONS(5), - }, - [224] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2717), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(224), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), + [anon_sym_satisfies] = ACTIONS(1735), + [sym__automatic_semicolon] = ACTIONS(1741), + [sym__ternary_qmark] = ACTIONS(1741), + [sym_html_comment] = ACTIONS(5), + }, + [224] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2887), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(224), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_satisfies] = ACTIONS(1728), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym__ternary_qmark] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(1735), + [sym__ternary_qmark] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2663), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(225), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [anon_sym_satisfies] = ACTIONS(1728), - [anon_sym_implements] = ACTIONS(1728), - [sym__ternary_qmark] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(1735), + [anon_sym_implements] = ACTIONS(1735), + [sym__ternary_qmark] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3101), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2933), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(226), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1728), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_of] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), - [anon_sym_satisfies] = ACTIONS(1728), - [sym__ternary_qmark] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(1735), + [sym__ternary_qmark] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3134), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3108), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(227), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_of] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(1735), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [anon_sym_satisfies] = ACTIONS(1728), - [sym__ternary_qmark] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(1735), + [sym__ternary_qmark] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3206), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3260), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(228), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_GT_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_QMARK_QMARK] = ACTIONS(1735), + [anon_sym_instanceof] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_satisfies] = ACTIONS(1728), - [sym__ternary_qmark] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_satisfies] = ACTIONS(1735), + [sym__ternary_qmark] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_declaration] = STATE(1343), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2693), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(1134), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2732), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(229), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5399), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_namespace] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1796), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1804), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1809), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_declaration] = STATE(6668), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2918), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(1081), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1034), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1034), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1034), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(230), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4921), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1808), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(1034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(366), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4981), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_function] = ACTIONS(947), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1814), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1809), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(957), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_declaration] = STATE(1461), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2719), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(1462), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2752), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(231), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4852), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1818), - [anon_sym_namespace] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1822), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4993), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_namespace] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1817), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1824), + [anon_sym_let] = ACTIONS(1819), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1821), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1828), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1830), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_declaration] = STATE(980), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2688), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(6966), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2730), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(232), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4916), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_namespace] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1836), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5205), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1829), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1842), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1837), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_declaration] = STATE(5363), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(5246), - [sym_lexical_declaration] = STATE(5246), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2729), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(5246), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(5246), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(5246), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(1568), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2789), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1478), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1478), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1478), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(233), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(5246), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(5246), - [sym_abstract_class_declaration] = STATE(5246), - [sym_module] = STATE(5246), - [sym_internal_module] = STATE(3066), - [sym_import_alias] = STATE(5246), - [sym_interface_declaration] = STATE(5246), - [sym_enum_declaration] = STATE(5246), - [sym_type_alias_declaration] = STATE(5246), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5223), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1846), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1848), - [anon_sym_var] = ACTIONS(1850), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(1478), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(458), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(4993), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_namespace] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1858), - [anon_sym_function] = ACTIONS(1860), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1821), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1862), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1864), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(1866), - [anon_sym_interface] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_declaration] = STATE(1277), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2898), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(1247), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2781), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(234), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5053), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_namespace] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1876), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5112), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_namespace] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(853), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1884), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1849), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_declaration] = STATE(1355), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2843), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1216), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1216), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1216), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(4969), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(4973), + [sym_lexical_declaration] = STATE(4973), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2773), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(4973), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(4973), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(4973), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(235), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(1216), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(365), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5053), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_namespace] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1876), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(4973), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(4973), + [sym_abstract_class_declaration] = STATE(4973), + [sym_module] = STATE(4973), + [sym_internal_module] = STATE(3146), + [sym_import_alias] = STATE(4973), + [sym_interface_declaration] = STATE(4973), + [sym_enum_declaration] = STATE(4973), + [sym_type_alias_declaration] = STATE(4973), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5069), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_var] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1865), + [anon_sym_function] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1884), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1869), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1877), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_declaration] = STATE(5262), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(5246), - [sym_lexical_declaration] = STATE(5246), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2793), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(5246), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(5246), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(5246), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(1223), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2796), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(236), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(5246), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(5246), - [sym_abstract_class_declaration] = STATE(5246), - [sym_module] = STATE(5246), - [sym_internal_module] = STATE(3066), - [sym_import_alias] = STATE(5246), - [sym_interface_declaration] = STATE(5246), - [sym_enum_declaration] = STATE(5246), - [sym_type_alias_declaration] = STATE(5246), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5223), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1846), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1848), - [anon_sym_var] = ACTIONS(1850), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5052), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1883), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1858), - [anon_sym_function] = ACTIONS(1860), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1862), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1864), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(1866), - [anon_sym_interface] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1889), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_declaration] = STATE(6883), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(1376), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2847), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1361), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1361), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1361), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(237), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(6924), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3018), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4921), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1808), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(1361), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(403), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5112), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_namespace] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_var] = ACTIONS(849), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(853), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(879), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_function] = ACTIONS(883), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1814), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1849), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(893), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(897), [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_declaration] = STATE(1417), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2705), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1340), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1340), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1340), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(1414), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(1189), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(1189), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(1189), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(238), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(1340), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5399), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_namespace] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1796), - [anon_sym_var] = ACTIONS(502), - [anon_sym_let] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(1189), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5052), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1883), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(532), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_function] = ACTIONS(536), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(387), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_function] = ACTIONS(391), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1804), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(550), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1889), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(401), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(405), [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_declaration] = STATE(1458), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2896), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1527), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1527), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1527), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(6755), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(6630), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(6630), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(6630), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(239), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(1527), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(444), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4852), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1818), - [anon_sym_namespace] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1822), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(6630), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(3071), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5205), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1829), + [anon_sym_var] = ACTIONS(785), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1826), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(815), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(819), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1828), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1830), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1837), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(829), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(833), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_declaration] = STATE(970), - [sym_import] = STATE(4218), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2685), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_class_declaration] = STATE(1157), - [sym_function_expression] = STATE(2924), - [sym_function_declaration] = STATE(1157), - [sym_generator_function] = STATE(2924), - [sym_generator_function_declaration] = STATE(1157), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_declaration] = STATE(4931), + [sym_import] = STATE(4235), + [sym_variable_declaration] = STATE(4973), + [sym_lexical_declaration] = STATE(4973), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2774), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_class_declaration] = STATE(4973), + [sym_function_expression] = STATE(2944), + [sym_function_declaration] = STATE(4973), + [sym_generator_function] = STATE(2944), + [sym_generator_function_declaration] = STATE(4973), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(240), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_function_signature] = STATE(1157), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(4916), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_namespace] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1836), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_function_signature] = STATE(4973), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_ambient_declaration] = STATE(4973), + [sym_abstract_class_declaration] = STATE(4973), + [sym_module] = STATE(4973), + [sym_internal_module] = STATE(3146), + [sym_import_alias] = STATE(4973), + [sym_interface_declaration] = STATE(4973), + [sym_enum_declaration] = STATE(4973), + [sym_type_alias_declaration] = STATE(4973), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5069), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_var] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1865), + [anon_sym_function] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1842), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1869), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1877), [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(241), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(242), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1192), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7352), + [sym_string] = STATE(2506), [sym_comment] = STATE(243), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1923), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1927), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_protected] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1170), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2346), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7384), + [sym_string] = STATE(2506), [sym_comment] = STATE(244), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(1923), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(1927), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_protected] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1170), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(245), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7050), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(6983), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(246), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1916), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7305), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(6983), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(247), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1916), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(5957), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(248), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(249), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1232), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(6983), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(250), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4001), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), - [sym__ternary_qmark] = ACTIONS(212), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1939), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(5676), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(251), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1941), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(6983), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(252), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(6827), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(253), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(6827), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(6983), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(254), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(6827), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(5833), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(255), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(6225), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(6983), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(256), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1958), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [257] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(257), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(6827), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(258), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1960), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1953), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(6827), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym__formal_parameter] = STATE(6983), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(259), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(331), + [sym_override_modifier] = STATE(405), + [sym_required_parameter] = STATE(6616), + [sym_optional_parameter] = STATE(6616), + [sym__parameter_name] = STATE(4479), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1933), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(6827), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(260), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_RBRACK] = ACTIONS(1955), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [anon_sym_extends] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(5690), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(261), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [262] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(262), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1957), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(5742), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(6055), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(263), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(6060), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1959), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(264), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4027), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(265), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(208), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(5693), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(266), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1970), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1985), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(267), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1972), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1987), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym__formal_parameter] = STATE(6827), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(5695), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(268), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4936), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(368), - [sym_override_modifier] = STATE(448), - [sym_required_parameter] = STATE(6567), - [sym_optional_parameter] = STATE(6567), - [sym__parameter_name] = STATE(4560), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5697), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1989), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(6055), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(269), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1974), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(6060), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1991), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [270] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(270), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1976), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2649), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(6055), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(271), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1978), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(6060), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1959), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3080), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(5912), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(272), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_RBRACK] = ACTIONS(1980), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_mapped_type_clause] = STATE(7034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1993), + [anon_sym_export] = ACTIONS(1995), + [anon_sym_type] = ACTIONS(1995), + [anon_sym_namespace] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_RBRACK] = ACTIONS(2005), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2007), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1980), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_extends] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1995), + [anon_sym_readonly] = ACTIONS(1995), + [anon_sym_get] = ACTIONS(1995), + [anon_sym_set] = ACTIONS(1995), + [anon_sym_declare] = ACTIONS(1995), + [anon_sym_public] = ACTIONS(1995), + [anon_sym_private] = ACTIONS(1995), + [anon_sym_protected] = ACTIONS(1995), + [anon_sym_override] = ACTIONS(1995), + [anon_sym_module] = ACTIONS(1995), + [anon_sym_any] = ACTIONS(1995), + [anon_sym_number] = ACTIONS(1995), + [anon_sym_boolean] = ACTIONS(1995), + [anon_sym_string] = ACTIONS(1995), + [anon_sym_symbol] = ACTIONS(1995), + [anon_sym_object] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(5693), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(338), + [sym_variable_declaration] = STATE(338), + [sym_lexical_declaration] = STATE(338), + [sym_empty_statement] = STATE(338), + [sym_parenthesized_expression] = STATE(2041), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2041), + [sym_subscript_expression] = STATE(2041), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(6333), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), [sym_comment] = STATE(273), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1982), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), - [sym_html_comment] = ACTIONS(5), - }, - [274] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2650), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(5693), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(274), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1970), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), - [sym_html_comment] = ACTIONS(5), - }, - [275] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(6249), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(275), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6250), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1984), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), - [sym_html_comment] = ACTIONS(5), - }, - [276] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(420), - [sym_variable_declaration] = STATE(420), - [sym_lexical_declaration] = STATE(420), - [sym_empty_statement] = STATE(420), - [sym_parenthesized_expression] = STATE(2042), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2042), - [sym_subscript_expression] = STATE(2042), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), - [sym_comment] = STATE(276), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2042), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1986), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2041), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(2013), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1998), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2025), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2027), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2029), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(2006), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(2033), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -71117,329 +71361,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [sym_html_comment] = ACTIONS(5), - }, - [277] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3036), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(277), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_mapped_type_clause] = STATE(7145), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_namespace] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(2022), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2026), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(2012), - [anon_sym_set] = ACTIONS(2012), - [anon_sym_declare] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_protected] = ACTIONS(2012), - [anon_sym_override] = ACTIONS(2012), - [anon_sym_module] = ACTIONS(2012), - [anon_sym_any] = ACTIONS(2012), - [anon_sym_number] = ACTIONS(2012), - [anon_sym_boolean] = ACTIONS(2012), - [anon_sym_string] = ACTIONS(2012), - [anon_sym_symbol] = ACTIONS(2012), - [anon_sym_object] = ACTIONS(2012), - [sym_html_comment] = ACTIONS(5), - }, - [278] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(278), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(2035), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_extends] = ACTIONS(1980), - [anon_sym_PIPE_RBRACE] = ACTIONS(1980), - [sym__automatic_semicolon] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2015), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(2015), + [anon_sym_set] = ACTIONS(2015), + [anon_sym_declare] = ACTIONS(2015), + [anon_sym_public] = ACTIONS(2015), + [anon_sym_private] = ACTIONS(2015), + [anon_sym_protected] = ACTIONS(2015), + [anon_sym_override] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_any] = ACTIONS(2015), + [anon_sym_number] = ACTIONS(2015), + [anon_sym_boolean] = ACTIONS(2015), + [anon_sym_string] = ACTIONS(2015), + [anon_sym_symbol] = ACTIONS(2015), + [anon_sym_object] = ACTIONS(2015), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(415), - [sym_variable_declaration] = STATE(415), - [sym_lexical_declaration] = STATE(415), - [sym_empty_statement] = STATE(415), - [sym_parenthesized_expression] = STATE(2042), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2042), - [sym_subscript_expression] = STATE(2042), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), - [sym_comment] = STATE(279), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2042), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1986), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), + [274] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(348), + [sym_variable_declaration] = STATE(348), + [sym_lexical_declaration] = STATE(348), + [sym_empty_statement] = STATE(348), + [sym_parenthesized_expression] = STATE(2041), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2041), + [sym_subscript_expression] = STATE(2041), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(6333), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), + [sym_comment] = STATE(274), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2041), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(2013), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1998), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2025), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2027), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2029), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(2006), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(2033), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -71459,101 +71477,451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2008), + [sym_undefined] = ACTIONS(2035), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(2015), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(2015), + [anon_sym_set] = ACTIONS(2015), + [anon_sym_declare] = ACTIONS(2015), + [anon_sym_public] = ACTIONS(2015), + [anon_sym_private] = ACTIONS(2015), + [anon_sym_protected] = ACTIONS(2015), + [anon_sym_override] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_any] = ACTIONS(2015), + [anon_sym_number] = ACTIONS(2015), + [anon_sym_boolean] = ACTIONS(2015), + [anon_sym_string] = ACTIONS(2015), + [anon_sym_symbol] = ACTIONS(2015), + [anon_sym_object] = ACTIONS(2015), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(391), - [sym_variable_declaration] = STATE(391), - [sym_lexical_declaration] = STATE(391), - [sym_empty_statement] = STATE(391), - [sym_parenthesized_expression] = STATE(2042), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2042), - [sym_subscript_expression] = STATE(2042), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), - [sym_comment] = STATE(280), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2042), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1986), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), + [275] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), + [sym_comment] = STATE(275), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [276] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), + [sym_comment] = STATE(276), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [277] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), + [sym_comment] = STATE(277), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1293), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), + [sym_html_comment] = ACTIONS(5), + }, + [278] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(350), + [sym_variable_declaration] = STATE(350), + [sym_lexical_declaration] = STATE(350), + [sym_empty_statement] = STATE(350), + [sym_parenthesized_expression] = STATE(2041), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2041), + [sym_subscript_expression] = STATE(2041), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(6333), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), + [sym_comment] = STATE(278), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2041), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(2013), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1998), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2025), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2027), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2029), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(2006), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(2033), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -71573,101 +71941,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2008), + [sym_undefined] = ACTIONS(2035), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(2015), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(2015), + [anon_sym_set] = ACTIONS(2015), + [anon_sym_declare] = ACTIONS(2015), + [anon_sym_public] = ACTIONS(2015), + [anon_sym_private] = ACTIONS(2015), + [anon_sym_protected] = ACTIONS(2015), + [anon_sym_override] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_any] = ACTIONS(2015), + [anon_sym_number] = ACTIONS(2015), + [anon_sym_boolean] = ACTIONS(2015), + [anon_sym_string] = ACTIONS(2015), + [anon_sym_symbol] = ACTIONS(2015), + [anon_sym_object] = ACTIONS(2015), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(347), - [sym_variable_declaration] = STATE(347), - [sym_lexical_declaration] = STATE(347), - [sym_empty_statement] = STATE(347), - [sym_parenthesized_expression] = STATE(2042), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2042), - [sym_subscript_expression] = STATE(2042), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), - [sym_comment] = STATE(281), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2042), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1986), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), + [279] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(351), + [sym_variable_declaration] = STATE(351), + [sym_lexical_declaration] = STATE(351), + [sym_empty_statement] = STATE(351), + [sym_parenthesized_expression] = STATE(2041), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2041), + [sym_subscript_expression] = STATE(2041), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(6333), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), + [sym_comment] = STATE(279), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2041), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(2013), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1998), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2025), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2027), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2029), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(2006), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(2033), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -71687,101 +72057,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2008), + [sym_undefined] = ACTIONS(2035), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(2015), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(2015), + [anon_sym_set] = ACTIONS(2015), + [anon_sym_declare] = ACTIONS(2015), + [anon_sym_public] = ACTIONS(2015), + [anon_sym_private] = ACTIONS(2015), + [anon_sym_protected] = ACTIONS(2015), + [anon_sym_override] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_any] = ACTIONS(2015), + [anon_sym_number] = ACTIONS(2015), + [anon_sym_boolean] = ACTIONS(2015), + [anon_sym_string] = ACTIONS(2015), + [anon_sym_symbol] = ACTIONS(2015), + [anon_sym_object] = ACTIONS(2015), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(362), - [sym_variable_declaration] = STATE(362), - [sym_lexical_declaration] = STATE(362), - [sym_empty_statement] = STATE(362), - [sym_parenthesized_expression] = STATE(2042), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2042), - [sym_subscript_expression] = STATE(2042), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), - [sym_comment] = STATE(282), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2042), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1986), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), + [280] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(320), + [sym_variable_declaration] = STATE(320), + [sym_lexical_declaration] = STATE(320), + [sym_empty_statement] = STATE(320), + [sym_parenthesized_expression] = STATE(2041), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2041), + [sym_subscript_expression] = STATE(2041), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(6333), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), + [sym_comment] = STATE(280), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2041), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(2013), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1998), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2025), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2027), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2029), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(2006), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(2033), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -71801,2337 +72173,2945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2008), + [sym_undefined] = ACTIONS(2035), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(2015), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(2015), + [anon_sym_set] = ACTIONS(2015), + [anon_sym_declare] = ACTIONS(2015), + [anon_sym_public] = ACTIONS(2015), + [anon_sym_private] = ACTIONS(2015), + [anon_sym_protected] = ACTIONS(2015), + [anon_sym_override] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_any] = ACTIONS(2015), + [anon_sym_number] = ACTIONS(2015), + [anon_sym_boolean] = ACTIONS(2015), + [anon_sym_string] = ACTIONS(2015), + [anon_sym_symbol] = ACTIONS(2015), + [anon_sym_object] = ACTIONS(2015), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(6967), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(5794), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(283), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5795), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(2035), + [281] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(281), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1955), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [anon_sym_extends] = ACTIONS(1955), + [anon_sym_PIPE_RBRACE] = ACTIONS(1955), + [sym__automatic_semicolon] = ACTIONS(2037), + [sym_html_comment] = ACTIONS(5), + }, + [282] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(282), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_RBRACK] = ACTIONS(1955), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [anon_sym_extends] = ACTIONS(1955), + [sym_html_comment] = ACTIONS(5), + }, + [283] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), + [sym_comment] = STATE(283), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3110), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6366), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(6319), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(284), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(2022), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(6318), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(2042), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2047), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_readonly] = ACTIONS(2041), - [anon_sym_get] = ACTIONS(2041), - [anon_sym_set] = ACTIONS(2041), - [anon_sym_declare] = ACTIONS(2041), - [anon_sym_public] = ACTIONS(2041), - [anon_sym_private] = ACTIONS(2041), - [anon_sym_protected] = ACTIONS(2041), - [anon_sym_override] = ACTIONS(2041), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_any] = ACTIONS(2041), - [anon_sym_number] = ACTIONS(2041), - [anon_sym_boolean] = ACTIONS(2041), - [anon_sym_string] = ACTIONS(2041), - [anon_sym_symbol] = ACTIONS(2041), - [anon_sym_object] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(5692), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6366), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(6319), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(285), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5613), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_pattern_repeat1] = STATE(5695), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_RBRACK] = ACTIONS(2022), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(6318), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(2039), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(6248), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6366), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_spread_element] = STATE(6319), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(286), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5525), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_pattern_repeat1] = STATE(6252), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_RBRACK] = ACTIONS(2049), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(6318), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(2046), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [287] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(6967), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(5794), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(287), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5795), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(2032), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_RBRACK] = ACTIONS(2005), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [288] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3162), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6032), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(5912), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(288), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_RBRACK] = ACTIONS(1980), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5623), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_pattern_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(2050), + [anon_sym_export] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_namespace] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_RBRACK] = ACTIONS(2005), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2056), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2058), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [anon_sym_extends] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_readonly] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(2052), + [anon_sym_set] = ACTIONS(2052), + [anon_sym_declare] = ACTIONS(2052), + [anon_sym_public] = ACTIONS(2052), + [anon_sym_private] = ACTIONS(2052), + [anon_sym_protected] = ACTIONS(2052), + [anon_sym_override] = ACTIONS(2052), + [anon_sym_module] = ACTIONS(2052), + [anon_sym_any] = ACTIONS(2052), + [anon_sym_number] = ACTIONS(2052), + [anon_sym_boolean] = ACTIONS(2052), + [anon_sym_string] = ACTIONS(2052), + [anon_sym_symbol] = ACTIONS(2052), + [anon_sym_object] = ACTIONS(2052), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(6967), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_spread_element] = STATE(5794), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(5693), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(289), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5795), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(2051), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5549), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_pattern_repeat1] = STATE(5702), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_RBRACK] = ACTIONS(2060), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(6967), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6366), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(290), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5795), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_RBRACK] = ACTIONS(2055), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(6318), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2062), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_RBRACK] = ACTIONS(2062), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [291] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(291), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2059), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2059), - [anon_sym_PIPE_PIPE] = ACTIONS(2059), - [anon_sym_GT_GT] = ACTIONS(2059), - [anon_sym_GT_GT_GT] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(2059), - [anon_sym_AMP] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2059), - [anon_sym_STAR_STAR] = ACTIONS(2059), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), - [anon_sym_GT_EQ] = ACTIONS(2059), - [anon_sym_QMARK_QMARK] = ACTIONS(2059), - [anon_sym_instanceof] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2063), - [sym__ternary_qmark] = ACTIONS(2065), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), + [anon_sym_extends] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_statement_block] = STATE(334), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(292), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), + [anon_sym_extends] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_statement_block] = STATE(334), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(293), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [anon_sym_extends] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_statement_block] = STATE(334), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(6319), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(294), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2075), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(2064), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(2064), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [295] = { + [sym_statement_block] = STATE(340), [sym_comment] = STATE(295), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_QMARK_DOT] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2079), - [anon_sym_GT_GT_GT] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2079), - [anon_sym_STAR_STAR] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_QMARK_QMARK] = ACTIONS(2079), - [anon_sym_instanceof] = ACTIONS(2079), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_satisfies] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2081), - [sym__ternary_qmark] = ACTIONS(2083), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [296] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2631), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(6223), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(296), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_QMARK_DOT] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_GT_GT_GT] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_PERCENT] = ACTIONS(2085), - [anon_sym_STAR_STAR] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_QMARK_QMARK] = ACTIONS(2085), - [anon_sym_instanceof] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_satisfies] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2087), - [sym__ternary_qmark] = ACTIONS(2087), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(6224), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [297] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2630), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(6290), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(297), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_case] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2091), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2091), - [anon_sym_PIPE_PIPE] = ACTIONS(2091), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2091), - [anon_sym_EQ_EQ] = ACTIONS(2091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2091), - [anon_sym_QMARK_QMARK] = ACTIONS(2091), - [anon_sym_instanceof] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_private_property_identifier] = ACTIONS(2089), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(2091), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym__automatic_semicolon] = ACTIONS(2093), - [sym__ternary_qmark] = ACTIONS(2095), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(6289), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2080), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [298] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(5715), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(298), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_debugger] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LTtemplate_GT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2099), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), - [anon_sym_GT_EQ] = ACTIONS(2099), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_private_property_identifier] = ACTIONS(2097), - [sym_this] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_null] = ACTIONS(2097), - [sym_undefined] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_get] = ACTIONS(2097), - [anon_sym_set] = ACTIONS(2097), - [anon_sym_declare] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_private] = ACTIONS(2097), - [anon_sym_protected] = ACTIONS(2097), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_any] = ACTIONS(2097), - [anon_sym_number] = ACTIONS(2097), - [anon_sym_boolean] = ACTIONS(2097), - [anon_sym_string] = ACTIONS(2097), - [anon_sym_symbol] = ACTIONS(2097), - [anon_sym_object] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_satisfies] = ACTIONS(2099), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2101), - [sym__ternary_qmark] = ACTIONS(2103), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5948), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [299] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2606), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(6164), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(299), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2107), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(6161), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [300] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(5988), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(300), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2111), - [sym__ternary_qmark] = ACTIONS(2111), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5995), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2086), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [301] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(5970), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2059), - [anon_sym_PIPE_PIPE] = ACTIONS(2059), - [anon_sym_GT_GT] = ACTIONS(2059), - [anon_sym_GT_GT_GT] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(2059), - [anon_sym_AMP] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2059), - [anon_sym_STAR_STAR] = ACTIONS(2059), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), - [anon_sym_GT_EQ] = ACTIONS(2059), - [anon_sym_QMARK_QMARK] = ACTIONS(2059), - [anon_sym_instanceof] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2065), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5971), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2088), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(302), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [anon_sym_extends] = ACTIONS(1980), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_EQ] = ACTIONS(2094), + [anon_sym_as] = ACTIONS(2092), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_QMARK_DOT] = ACTIONS(2092), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_GT_GT_GT] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_CARET] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PERCENT] = ACTIONS(2092), + [anon_sym_STAR_STAR] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2092), + [anon_sym_GT_EQ] = ACTIONS(2092), + [anon_sym_QMARK_QMARK] = ACTIONS(2092), + [anon_sym_instanceof] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_satisfies] = ACTIONS(2092), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2096), + [sym__ternary_qmark] = ACTIONS(2098), [sym_html_comment] = ACTIONS(5), }, [303] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2633), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(5677), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(303), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1980), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_array_repeat1] = STATE(5678), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2100), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [304] = { + [sym_statement_block] = STATE(340), + [sym_comment] = STATE(304), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), + [sym_html_comment] = ACTIONS(5), + }, + [305] = { + [sym_statement_block] = STATE(340), + [sym_comment] = STATE(305), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), + [sym_html_comment] = ACTIONS(5), + }, + [306] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(306), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1955), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1955), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), + [anon_sym_GT] = ACTIONS(1955), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -74152,4866 +75132,4694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [anon_sym_extends] = ACTIONS(1980), - [sym_html_comment] = ACTIONS(5), - }, - [304] = { - [sym_comment] = STATE(304), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2117), - [sym__ternary_qmark] = ACTIONS(2113), - [sym_html_comment] = ACTIONS(5), - }, - [305] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2619), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(5880), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(305), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(5881), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [306] = { - [sym_comment] = STATE(306), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2127), - [anon_sym_PIPE_PIPE] = ACTIONS(2127), - [anon_sym_GT_GT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_STAR_STAR] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2127), - [anon_sym_EQ_EQ] = ACTIONS(2127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), - [anon_sym_GT_EQ] = ACTIONS(2127), - [anon_sym_QMARK_QMARK] = ACTIONS(2127), - [anon_sym_instanceof] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_satisfies] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2129), - [sym__ternary_qmark] = ACTIONS(2131), + [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_global] = ACTIONS(105), + [anon_sym_extends] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [307] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(307), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1955), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), + [anon_sym_GT] = ACTIONS(1955), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [anon_sym_extends] = ACTIONS(1980), + [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_global] = ACTIONS(105), + [anon_sym_extends] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [308] = { - [sym_statement_block] = STATE(376), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2937), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), + [anon_sym_extends] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_statement_block] = STATE(376), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), + [anon_sym_extends] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [310] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2866), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(310), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1980), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(1942), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5014), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_accessibility_modifier] = STATE(345), + [sym_override_modifier] = STATE(391), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(1906), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [anon_sym_extends] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(2104), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(2106), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2108), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [311] = { - [sym_statement_block] = STATE(376), [sym_comment] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_as] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_COMMA] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_else] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_debugger] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_case] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LTtemplate_GT] = ACTIONS(2110), + [anon_sym_GT] = ACTIONS(2112), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_QMARK_DOT] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2112), + [anon_sym_PIPE_PIPE] = ACTIONS(2112), + [anon_sym_GT_GT] = ACTIONS(2112), + [anon_sym_GT_GT_GT] = ACTIONS(2112), + [anon_sym_LT_LT] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_CARET] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_PERCENT] = ACTIONS(2112), + [anon_sym_STAR_STAR] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_LT_EQ] = ACTIONS(2112), + [anon_sym_EQ_EQ] = ACTIONS(2112), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2112), + [anon_sym_GT_EQ] = ACTIONS(2112), + [anon_sym_QMARK_QMARK] = ACTIONS(2112), + [anon_sym_instanceof] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2110), + [anon_sym_delete] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_private_property_identifier] = ACTIONS(2110), + [sym_this] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_true] = ACTIONS(2110), + [sym_false] = ACTIONS(2110), + [sym_null] = ACTIONS(2110), + [sym_undefined] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_global] = ACTIONS(2110), + [anon_sym_satisfies] = ACTIONS(2112), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [sym__automatic_semicolon] = ACTIONS(2114), + [sym__ternary_qmark] = ACTIONS(2116), [sym_html_comment] = ACTIONS(5), }, [312] = { + [sym_import] = STATE(4146), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(312), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_else] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_case] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_using] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2141), - [anon_sym_GT_GT_GT] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2141), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2141), - [anon_sym_STAR_STAR] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), - [anon_sym_GT_EQ] = ACTIONS(2141), - [anon_sym_QMARK_QMARK] = ACTIONS(2141), - [anon_sym_instanceof] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_private_property_identifier] = ACTIONS(2139), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [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_abstract] = ACTIONS(2139), - [anon_sym_satisfies] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym__automatic_semicolon] = ACTIONS(2143), - [sym__ternary_qmark] = ACTIONS(2145), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2118), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [313] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2648), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(5673), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(313), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(5674), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_as] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LTtemplate_GT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_QMARK_DOT] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2120), + [anon_sym_GT_GT_GT] = ACTIONS(2120), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_CARET] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_PERCENT] = ACTIONS(2120), + [anon_sym_STAR_STAR] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_LT_EQ] = ACTIONS(2120), + [anon_sym_EQ_EQ] = ACTIONS(2120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2120), + [anon_sym_GT_EQ] = ACTIONS(2120), + [anon_sym_QMARK_QMARK] = ACTIONS(2120), + [anon_sym_instanceof] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_private_property_identifier] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_global] = ACTIONS(2120), + [anon_sym_satisfies] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [sym__automatic_semicolon] = ACTIONS(2122), + [sym__ternary_qmark] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, [314] = { [sym_comment] = STATE(314), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2149), - [sym__ternary_qmark] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LTtemplate_GT] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_private_property_identifier] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_global] = ACTIONS(2124), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, [315] = { + [sym_import] = STATE(4146), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(315), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_case] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_STAR_STAR] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_QMARK_QMARK] = ACTIONS(2153), - [anon_sym_instanceof] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_satisfies] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [sym__automatic_semicolon] = ACTIONS(2155), - [sym__ternary_qmark] = ACTIONS(2155), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2132), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [316] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(316), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), - [anon_sym_extends] = ACTIONS(1980), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_as] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LTtemplate_GT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2136), + [anon_sym_DOT] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_QMARK_DOT] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(2136), + [anon_sym_GT_GT_GT] = ACTIONS(2136), + [anon_sym_LT_LT] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_CARET] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_PERCENT] = ACTIONS(2136), + [anon_sym_STAR_STAR] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_LT_EQ] = ACTIONS(2136), + [anon_sym_EQ_EQ] = ACTIONS(2136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2136), + [anon_sym_GT_EQ] = ACTIONS(2136), + [anon_sym_QMARK_QMARK] = ACTIONS(2136), + [anon_sym_instanceof] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_global] = ACTIONS(2134), + [anon_sym_satisfies] = ACTIONS(2136), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym__automatic_semicolon] = ACTIONS(2138), + [sym__ternary_qmark] = ACTIONS(2140), [sym_html_comment] = ACTIONS(5), }, [317] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(5794), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2634), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(7086), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7086), + [sym_string] = STATE(2506), [sym_comment] = STATE(317), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2157), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(2157), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [318] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6934), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(318), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [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_abstract] = ACTIONS(2159), - [anon_sym_satisfies] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2163), - [sym__ternary_qmark] = ACTIONS(2165), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5703), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [319] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), + [sym_import] = STATE(4146), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(319), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2146), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [320] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(434), + [sym_empty_statement] = STATE(434), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), + [sym_comment] = STATE(320), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_extends] = ACTIONS(1980), - [sym_html_comment] = ACTIONS(5), - }, - [320] = { - [sym_comment] = STATE(320), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_STAR_STAR] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_QMARK_QMARK] = ACTIONS(2169), - [anon_sym_instanceof] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_satisfies] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2171), - [sym__ternary_qmark] = ACTIONS(2173), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [321] = { [sym_comment] = STATE(321), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_STAR_STAR] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), - [anon_sym_GT_EQ] = ACTIONS(2177), - [anon_sym_QMARK_QMARK] = ACTIONS(2177), - [anon_sym_instanceof] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2179), - [sym__ternary_qmark] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LTtemplate_GT] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2150), + [anon_sym_DOT] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_QMARK_DOT] = ACTIONS(2150), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_PIPE_PIPE] = ACTIONS(2150), + [anon_sym_GT_GT] = ACTIONS(2150), + [anon_sym_GT_GT_GT] = ACTIONS(2150), + [anon_sym_LT_LT] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_CARET] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2150), + [anon_sym_STAR_STAR] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_LT_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2150), + [anon_sym_QMARK_QMARK] = ACTIONS(2150), + [anon_sym_instanceof] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_number] = ACTIONS(2148), + [sym_private_property_identifier] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_global] = ACTIONS(2148), + [anon_sym_satisfies] = ACTIONS(2150), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [sym__automatic_semicolon] = ACTIONS(2152), + [sym__ternary_qmark] = ACTIONS(2154), [sym_html_comment] = ACTIONS(5), }, [322] = { [sym_comment] = STATE(322), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_QMARK_QMARK] = ACTIONS(2183), - [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), - [sym__ternary_qmark] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_GT_GT_GT] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2156), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_QMARK_QMARK] = ACTIONS(2156), + [anon_sym_instanceof] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_global] = ACTIONS(2156), + [anon_sym_satisfies] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2158), + [sym__ternary_qmark] = ACTIONS(2158), [sym_html_comment] = ACTIONS(5), }, [323] = { + [sym_import] = STATE(4159), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(323), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2059), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2059), - [anon_sym_PIPE_PIPE] = ACTIONS(2059), - [anon_sym_GT_GT] = ACTIONS(2059), - [anon_sym_GT_GT_GT] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(2059), - [anon_sym_AMP] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2059), - [anon_sym_STAR_STAR] = ACTIONS(2059), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), - [anon_sym_GT_EQ] = ACTIONS(2059), - [anon_sym_QMARK_QMARK] = ACTIONS(2059), - [anon_sym_instanceof] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2187), - [sym__ternary_qmark] = ACTIONS(2065), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_statement_block] = STATE(346), + [sym_import] = STATE(4159), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(324), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2162), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [325] = { + [sym_import] = STATE(4159), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(325), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_STAR_STAR] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_QMARK_QMARK] = ACTIONS(2193), - [anon_sym_instanceof] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_satisfies] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym__automatic_semicolon] = ACTIONS(2195), - [sym__ternary_qmark] = ACTIONS(2195), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [326] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2681), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_spread_element] = STATE(7140), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7140), + [sym_string] = STATE(2506), [sym_comment] = STATE(326), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_QMARK_QMARK] = ACTIONS(2199), - [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2201), - [sym__ternary_qmark] = ACTIONS(2203), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [327] = { + [sym_import] = STATE(4146), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(327), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2205), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_GT_GT_GT] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2205), - [anon_sym_STAR_STAR] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), - [anon_sym_GT_EQ] = ACTIONS(2205), - [anon_sym_QMARK_QMARK] = ACTIONS(2205), - [anon_sym_instanceof] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_satisfies] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2207), - [sym__ternary_qmark] = ACTIONS(2207), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2168), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [328] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2674), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(5966), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(328), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(5967), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_COMMA] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(2170), + [anon_sym_GT] = ACTIONS(2170), + [anon_sym_DOT] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_QMARK_DOT] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_PIPE_PIPE] = ACTIONS(2170), + [anon_sym_GT_GT] = ACTIONS(2170), + [anon_sym_GT_GT_GT] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_CARET] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_PERCENT] = ACTIONS(2170), + [anon_sym_STAR_STAR] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_LT_EQ] = ACTIONS(2170), + [anon_sym_EQ_EQ] = ACTIONS(2170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), + [anon_sym_BANG_EQ] = ACTIONS(2170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), + [anon_sym_GT_EQ] = ACTIONS(2170), + [anon_sym_QMARK_QMARK] = ACTIONS(2170), + [anon_sym_instanceof] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(2170), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_global] = ACTIONS(2170), + [anon_sym_satisfies] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [sym__automatic_semicolon] = ACTIONS(2172), + [sym__ternary_qmark] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, [329] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3132), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(329), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [anon_sym_extends] = ACTIONS(1980), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_in] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_case] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LTtemplate_GT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_DOT] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_QMARK_DOT] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_AMP_AMP] = ACTIONS(2174), + [anon_sym_PIPE_PIPE] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_GT_GT_GT] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_CARET] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_PERCENT] = ACTIONS(2174), + [anon_sym_STAR_STAR] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_LT_EQ] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2174), + [anon_sym_BANG_EQ] = ACTIONS(2174), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2174), + [anon_sym_GT_EQ] = ACTIONS(2174), + [anon_sym_QMARK_QMARK] = ACTIONS(2174), + [anon_sym_instanceof] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_private_property_identifier] = ACTIONS(2174), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_global] = ACTIONS(2174), + [anon_sym_satisfies] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [sym__automatic_semicolon] = ACTIONS(2176), + [sym__ternary_qmark] = ACTIONS(2176), [sym_html_comment] = ACTIONS(5), }, [330] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2597), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(6304), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(330), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6291), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2180), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2180), + [anon_sym_DOT] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_QMARK_DOT] = ACTIONS(2180), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_PIPE_PIPE] = ACTIONS(2180), + [anon_sym_GT_GT] = ACTIONS(2180), + [anon_sym_GT_GT_GT] = ACTIONS(2180), + [anon_sym_LT_LT] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2180), + [anon_sym_STAR_STAR] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2180), + [anon_sym_EQ_EQ] = ACTIONS(2180), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2180), + [anon_sym_GT_EQ] = ACTIONS(2180), + [anon_sym_QMARK_QMARK] = ACTIONS(2180), + [anon_sym_instanceof] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_global] = ACTIONS(2178), + [anon_sym_satisfies] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2182), + [sym__ternary_qmark] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, [331] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(331), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2217), - [sym__ternary_qmark] = ACTIONS(2219), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_override_modifier] = STATE(392), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2186), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [332] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2582), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(6321), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(332), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6319), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_DOT] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_QMARK_DOT] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2190), + [anon_sym_STAR_STAR] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_LT_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2190), + [anon_sym_QMARK_QMARK] = ACTIONS(2190), + [anon_sym_instanceof] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_global] = ACTIONS(2188), + [anon_sym_satisfies] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2192), + [sym__ternary_qmark] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, [333] = { + [sym_import] = STATE(4146), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2937), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(333), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_else] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_case] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_GT] = ACTIONS(2223), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_QMARK_DOT] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_GT_GT] = ACTIONS(2223), - [anon_sym_GT_GT_GT] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_CARET] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_STAR_STAR] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_LT_EQ] = ACTIONS(2223), - [anon_sym_EQ_EQ] = ACTIONS(2223), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), - [anon_sym_GT_EQ] = ACTIONS(2223), - [anon_sym_QMARK_QMARK] = ACTIONS(2223), - [anon_sym_instanceof] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [sym_private_property_identifier] = ACTIONS(2223), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_satisfies] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [sym__automatic_semicolon] = ACTIONS(2225), - [sym__ternary_qmark] = ACTIONS(2225), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [334] = { [sym_comment] = STATE(334), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_GT] = ACTIONS(2227), - [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_using] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2227), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_STAR_STAR] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_QMARK_QMARK] = ACTIONS(2227), - [anon_sym_instanceof] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [sym_private_property_identifier] = ACTIONS(2227), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_override] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_object] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_satisfies] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [sym__automatic_semicolon] = ACTIONS(2229), - [sym__ternary_qmark] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_as] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_COMMA] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_with] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_debugger] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LTtemplate_GT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_DOT] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_QMARK_DOT] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_GT_GT_GT] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_CARET] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_PERCENT] = ACTIONS(2198), + [anon_sym_STAR_STAR] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_LT_EQ] = ACTIONS(2198), + [anon_sym_EQ_EQ] = ACTIONS(2198), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2198), + [anon_sym_BANG_EQ] = ACTIONS(2198), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2198), + [anon_sym_GT_EQ] = ACTIONS(2198), + [anon_sym_QMARK_QMARK] = ACTIONS(2198), + [anon_sym_instanceof] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_private_property_identifier] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_undefined] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_readonly] = ACTIONS(2198), + [anon_sym_get] = ACTIONS(2198), + [anon_sym_set] = ACTIONS(2198), + [anon_sym_declare] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_module] = ACTIONS(2198), + [anon_sym_any] = ACTIONS(2198), + [anon_sym_number] = ACTIONS(2198), + [anon_sym_boolean] = ACTIONS(2198), + [anon_sym_string] = ACTIONS(2198), + [anon_sym_symbol] = ACTIONS(2198), + [anon_sym_object] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_global] = ACTIONS(2198), + [anon_sym_satisfies] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [sym__automatic_semicolon] = ACTIONS(2200), + [sym__ternary_qmark] = ACTIONS(2200), [sym_html_comment] = ACTIONS(5), }, [335] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_statement_block] = STATE(394), [sym_comment] = STATE(335), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(2009), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5228), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_accessibility_modifier] = STATE(407), - [sym_override_modifier] = STATE(428), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(1912), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(2231), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2235), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [336] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2914), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_assignment_pattern] = STATE(6934), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4483), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(336), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_STAR_STAR] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_QMARK_QMARK] = ACTIONS(2239), - [anon_sym_instanceof] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2241), - [sym__ternary_qmark] = ACTIONS(2243), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5703), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1958), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [337] = { + [sym_statement_block] = STATE(394), [sym_comment] = STATE(337), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_debugger] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LTtemplate_GT] = ACTIONS(2245), - [anon_sym_GT] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2245), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_STAR_STAR] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_QMARK_QMARK] = ACTIONS(2245), - [anon_sym_instanceof] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_private_property_identifier] = ACTIONS(2245), - [sym_this] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_null] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_get] = ACTIONS(2245), - [anon_sym_set] = ACTIONS(2245), - [anon_sym_declare] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_private] = ACTIONS(2245), - [anon_sym_protected] = ACTIONS(2245), - [anon_sym_override] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_any] = ACTIONS(2245), - [anon_sym_number] = ACTIONS(2245), - [anon_sym_boolean] = ACTIONS(2245), - [anon_sym_string] = ACTIONS(2245), - [anon_sym_symbol] = ACTIONS(2245), - [anon_sym_object] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_satisfies] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [sym__automatic_semicolon] = ACTIONS(2247), - [sym__ternary_qmark] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [338] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(433), + [sym_empty_statement] = STATE(433), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), [sym_comment] = STATE(338), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_debugger] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_case] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_QMARK_DOT] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [anon_sym_AMP_AMP] = ACTIONS(2249), - [anon_sym_PIPE_PIPE] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_GT_GT_GT] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_STAR_STAR] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_QMARK_QMARK] = ACTIONS(2249), - [anon_sym_instanceof] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_private_property_identifier] = ACTIONS(2249), - [sym_this] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_null] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(2249), - [anon_sym_set] = ACTIONS(2249), - [anon_sym_declare] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_private] = ACTIONS(2249), - [anon_sym_protected] = ACTIONS(2249), - [anon_sym_override] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_any] = ACTIONS(2249), - [anon_sym_number] = ACTIONS(2249), - [anon_sym_boolean] = ACTIONS(2249), - [anon_sym_string] = ACTIONS(2249), - [anon_sym_symbol] = ACTIONS(2249), - [anon_sym_object] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_satisfies] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [sym__automatic_semicolon] = ACTIONS(2251), - [sym__ternary_qmark] = ACTIONS(2251), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [339] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2605), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(6240), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(339), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6239), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_EQ] = ACTIONS(2094), + [anon_sym_as] = ACTIONS(2092), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_QMARK_DOT] = ACTIONS(2092), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_GT_GT_GT] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_CARET] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PERCENT] = ACTIONS(2092), + [anon_sym_STAR_STAR] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2092), + [anon_sym_GT_EQ] = ACTIONS(2092), + [anon_sym_QMARK_QMARK] = ACTIONS(2092), + [anon_sym_instanceof] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_satisfies] = ACTIONS(2092), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2206), + [sym__ternary_qmark] = ACTIONS(2098), [sym_html_comment] = ACTIONS(5), }, [340] = { - [sym_statement_block] = STATE(346), [sym_comment] = STATE(340), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_global] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2210), + [sym__ternary_qmark] = ACTIONS(2210), [sym_html_comment] = ACTIONS(5), }, [341] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2629), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(6219), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(341), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [aux_sym_array_repeat1] = STATE(6220), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_QMARK_DOT] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_LT_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2214), + [anon_sym_QMARK_QMARK] = ACTIONS(2214), + [anon_sym_instanceof] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_global] = ACTIONS(2212), + [anon_sym_satisfies] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2216), + [sym__ternary_qmark] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, [342] = { - [sym_statement_block] = STATE(346), + [sym_statement_block] = STATE(394), [sym_comment] = STATE(342), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [343] = { [sym_comment] = STATE(343), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_COMMA] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_in] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_case] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_QMARK_DOT] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2261), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(2261), - [anon_sym_GT_GT_GT] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_PERCENT] = ACTIONS(2261), - [anon_sym_STAR_STAR] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), - [anon_sym_GT_EQ] = ACTIONS(2261), - [anon_sym_QMARK_QMARK] = ACTIONS(2261), - [anon_sym_instanceof] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_private_property_identifier] = ACTIONS(2259), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_override] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_object] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_satisfies] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym__automatic_semicolon] = ACTIONS(2263), - [sym__ternary_qmark] = ACTIONS(2265), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_QMARK_DOT] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_global] = ACTIONS(2222), + [anon_sym_satisfies] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2226), + [sym__ternary_qmark] = ACTIONS(2228), [sym_html_comment] = ACTIONS(5), }, [344] = { + [sym_import] = STATE(4172), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(344), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_case] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_STAR_STAR] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_QMARK_QMARK] = ACTIONS(2153), - [anon_sym_instanceof] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_satisfies] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [sym__automatic_semicolon] = ACTIONS(2155), - [sym__ternary_qmark] = ACTIONS(2155), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3656), + [sym__type_query_subscript_expression] = STATE(3658), + [sym__type_query_call_expression] = STATE(3843), + [sym__type_query_instantiation_expression] = STATE(4003), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(4196), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(345), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2267), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5089), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_override_modifier] = STATE(401), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(2232), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [346] = { [sym_comment] = STATE(346), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_GT] = ACTIONS(2227), - [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_using] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2227), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_STAR_STAR] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_QMARK_QMARK] = ACTIONS(2227), - [anon_sym_instanceof] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [sym_private_property_identifier] = ACTIONS(2227), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_override] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_object] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_satisfies] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [sym__automatic_semicolon] = ACTIONS(2229), - [sym__ternary_qmark] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_as] = ACTIONS(2238), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_else] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LTtemplate_GT] = ACTIONS(2236), + [anon_sym_GT] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_QMARK_DOT] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2238), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_instanceof] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [sym_private_property_identifier] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_global] = ACTIONS(2236), + [anon_sym_satisfies] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2240), + [sym__ternary_qmark] = ACTIONS(2242), [sym_html_comment] = ACTIONS(5), }, [347] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(463), - [sym_empty_statement] = STATE(463), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), [sym_comment] = STATE(347), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2248), + [sym_html_comment] = ACTIONS(5), + }, + [348] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(448), + [sym_empty_statement] = STATE(448), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), + [sym_comment] = STATE(348), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2027), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -79033,1635 +79841,2113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [348] = { - [sym_comment] = STATE(348), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2269), - [sym__ternary_qmark] = ACTIONS(2219), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), [sym_comment] = STATE(349), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(2271), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2252), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2252), + [anon_sym_STAR_STAR] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2252), + [anon_sym_GT_EQ] = ACTIONS(2252), + [anon_sym_QMARK_QMARK] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_global] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2252), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2254), + [sym__ternary_qmark] = ACTIONS(2256), + [sym_html_comment] = ACTIONS(5), + }, + [350] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(437), + [sym_empty_statement] = STATE(437), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), + [sym_comment] = STATE(350), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [sym_html_comment] = ACTIONS(5), - }, - [350] = { - [sym_comment] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2273), - [sym__ternary_qmark] = ACTIONS(2113), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [351] = { + [sym_import] = STATE(4235), + [sym_expression_statement] = STATE(463), + [sym_empty_statement] = STATE(463), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6769), + [sym_string] = STATE(2944), [sym_comment] = STATE(351), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_STAR_STAR] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_QMARK_QMARK] = ACTIONS(2193), - [anon_sym_instanceof] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_satisfies] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym__automatic_semicolon] = ACTIONS(2195), - [sym__ternary_qmark] = ACTIONS(2195), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [352] = { [sym_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_debugger] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_QMARK_DOT] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [anon_sym_AMP_AMP] = ACTIONS(2249), - [anon_sym_PIPE_PIPE] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_GT_GT_GT] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_STAR_STAR] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_QMARK_QMARK] = ACTIONS(2249), - [anon_sym_instanceof] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_private_property_identifier] = ACTIONS(2249), - [sym_this] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_null] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(2249), - [anon_sym_set] = ACTIONS(2249), - [anon_sym_declare] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_private] = ACTIONS(2249), - [anon_sym_protected] = ACTIONS(2249), - [anon_sym_override] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_any] = ACTIONS(2249), - [anon_sym_number] = ACTIONS(2249), - [anon_sym_boolean] = ACTIONS(2249), - [anon_sym_string] = ACTIONS(2249), - [anon_sym_symbol] = ACTIONS(2249), - [anon_sym_object] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_satisfies] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [sym__automatic_semicolon] = ACTIONS(2251), - [sym__ternary_qmark] = ACTIONS(2251), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_EQ] = ACTIONS(2094), + [anon_sym_as] = ACTIONS(2092), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_QMARK_DOT] = ACTIONS(2092), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_GT_GT_GT] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_CARET] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PERCENT] = ACTIONS(2092), + [anon_sym_STAR_STAR] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2092), + [anon_sym_GT_EQ] = ACTIONS(2092), + [anon_sym_QMARK_QMARK] = ACTIONS(2092), + [anon_sym_instanceof] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_satisfies] = ACTIONS(2092), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2098), [sym_html_comment] = ACTIONS(5), }, [353] = { + [sym_import] = STATE(4159), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(353), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_STAR_STAR] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_QMARK_QMARK] = ACTIONS(2193), - [anon_sym_instanceof] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_satisfies] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym__automatic_semicolon] = ACTIONS(2195), - [sym__ternary_qmark] = ACTIONS(2195), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2262), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [354] = { - [sym_import] = STATE(4262), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4076), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(354), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(2275), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [355] = { + [sym_import] = STATE(4240), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_STAR_STAR] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_QMARK_QMARK] = ACTIONS(2169), - [anon_sym_instanceof] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_satisfies] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2279), - [sym__ternary_qmark] = ACTIONS(2173), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2266), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [356] = { [sym_comment] = STATE(356), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_QMARK_DOT] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2079), - [anon_sym_GT_GT_GT] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2079), - [anon_sym_STAR_STAR] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_QMARK_QMARK] = ACTIONS(2079), - [anon_sym_instanceof] = ACTIONS(2079), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_satisfies] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2281), - [sym__ternary_qmark] = ACTIONS(2083), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_QMARK_DOT] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_LT_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), + [anon_sym_GT_EQ] = ACTIONS(2270), + [anon_sym_QMARK_QMARK] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_global] = ACTIONS(2268), + [anon_sym_satisfies] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2272), + [sym__ternary_qmark] = ACTIONS(2274), [sym_html_comment] = ACTIONS(5), }, [357] = { [sym_comment] = STATE(357), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_QMARK_QMARK] = ACTIONS(2183), - [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), - [sym__ternary_qmark] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_QMARK_DOT] = ACTIONS(2278), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_GT_GT_GT] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_CARET] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2278), + [anon_sym_STAR_STAR] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), + [anon_sym_GT_EQ] = ACTIONS(2278), + [anon_sym_QMARK_QMARK] = ACTIONS(2278), + [anon_sym_instanceof] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_global] = ACTIONS(2276), + [anon_sym_satisfies] = ACTIONS(2278), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2280), + [sym__ternary_qmark] = ACTIONS(2282), [sym_html_comment] = ACTIONS(5), }, [358] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [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_abstract] = ACTIONS(2159), - [anon_sym_satisfies] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2285), - [sym__ternary_qmark] = ACTIONS(2165), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1619), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [359] = { - [sym_import] = STATE(4196), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(359), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_QMARK_DOT] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_satisfies] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [sym__automatic_semicolon] = ACTIONS(2288), + [sym__ternary_qmark] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [360] = { - [sym_statement_block] = STATE(424), + [sym_statement_block] = STATE(381), [sym_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [361] = { - [sym_statement_block] = STATE(424), + [sym_statement_block] = STATE(381), [sym_comment] = STATE(361), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [362] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(465), - [sym_empty_statement] = STATE(465), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), + [sym_statement_block] = STATE(381), [sym_comment] = STATE(362), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), + [sym_html_comment] = ACTIONS(5), + }, + [363] = { + [sym_comment] = STATE(363), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2248), + [sym__ternary_qmark] = ACTIONS(2248), + [sym_html_comment] = ACTIONS(5), + }, + [364] = { + [sym_comment] = STATE(364), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2298), + [sym__ternary_qmark] = ACTIONS(2298), + [sym_html_comment] = ACTIONS(5), + }, + [365] = { + [sym_comment] = STATE(365), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_as] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_COMMA] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_GT] = ACTIONS(2090), + [anon_sym_DOT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_QMARK_DOT] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_GT_GT_GT] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PERCENT] = ACTIONS(2090), + [anon_sym_STAR_STAR] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2090), + [anon_sym_EQ_EQ] = ACTIONS(2090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2090), + [anon_sym_BANG_EQ] = ACTIONS(2090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2090), + [anon_sym_GT_EQ] = ACTIONS(2090), + [anon_sym_QMARK_QMARK] = ACTIONS(2090), + [anon_sym_instanceof] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_satisfies] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2300), + [sym__ternary_qmark] = ACTIONS(2258), + [sym_html_comment] = ACTIONS(5), + }, + [366] = { + [sym_comment] = STATE(366), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2306), + [sym_html_comment] = ACTIONS(5), + }, + [367] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(367), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(3604), + [sym__type_query_subscript_expression] = STATE(3603), + [sym__type_query_call_expression] = STATE(3655), + [sym__type_query_instantiation_expression] = STATE(3688), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -80683,1745 +81969,1095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [363] = { - [sym_comment] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_STAR_STAR] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_QMARK_QMARK] = ACTIONS(2239), - [anon_sym_instanceof] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2297), - [sym__ternary_qmark] = ACTIONS(2243), - [sym_html_comment] = ACTIONS(5), - }, - [364] = { - [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2111), - [sym__ternary_qmark] = ACTIONS(2111), - [sym_html_comment] = ACTIONS(5), - }, - [365] = { - [sym_comment] = STATE(365), - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_STAR_STAR] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_QMARK_QMARK] = ACTIONS(2153), - [anon_sym_instanceof] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_satisfies] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [sym__automatic_semicolon] = ACTIONS(2155), - [sym__ternary_qmark] = ACTIONS(2155), - [sym_html_comment] = ACTIONS(5), - }, - [366] = { - [sym_statement_block] = STATE(424), - [sym_comment] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2071), - [sym__ternary_qmark] = ACTIONS(2071), - [sym_html_comment] = ACTIONS(5), - }, - [367] = { - [sym_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_QMARK_QMARK] = ACTIONS(2199), - [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2203), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [368] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(368), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5295), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_override_modifier] = STATE(442), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2305), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), + [sym__ternary_qmark] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [369] = { [sym_comment] = STATE(369), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_DOT] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_QMARK_DOT] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2190), + [anon_sym_STAR_STAR] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_LT_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2190), + [anon_sym_QMARK_QMARK] = ACTIONS(2190), + [anon_sym_instanceof] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_global] = ACTIONS(2188), + [anon_sym_satisfies] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2314), + [sym__ternary_qmark] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, [370] = { [sym_comment] = STATE(370), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2059), - [anon_sym_PIPE_PIPE] = ACTIONS(2059), - [anon_sym_GT_GT] = ACTIONS(2059), - [anon_sym_GT_GT_GT] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(2059), - [anon_sym_AMP] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2059), - [anon_sym_STAR_STAR] = ACTIONS(2059), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), - [anon_sym_GT_EQ] = ACTIONS(2059), - [anon_sym_QMARK_QMARK] = ACTIONS(2059), - [anon_sym_instanceof] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2307), - [sym__ternary_qmark] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LTtemplate_GT] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2150), + [anon_sym_DOT] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_QMARK_DOT] = ACTIONS(2150), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_PIPE_PIPE] = ACTIONS(2150), + [anon_sym_GT_GT] = ACTIONS(2150), + [anon_sym_GT_GT_GT] = ACTIONS(2150), + [anon_sym_LT_LT] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_CARET] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2150), + [anon_sym_STAR_STAR] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_LT_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2150), + [anon_sym_QMARK_QMARK] = ACTIONS(2150), + [anon_sym_instanceof] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_number] = ACTIONS(2148), + [sym_private_property_identifier] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_global] = ACTIONS(2148), + [anon_sym_satisfies] = ACTIONS(2150), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [sym__automatic_semicolon] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2154), [sym_html_comment] = ACTIONS(5), }, [371] = { [sym_comment] = STATE(371), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_STAR_STAR] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_QMARK_QMARK] = ACTIONS(2239), - [anon_sym_instanceof] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2309), - [sym__ternary_qmark] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_QMARK_DOT] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_LT_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), + [anon_sym_GT_EQ] = ACTIONS(2270), + [anon_sym_QMARK_QMARK] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_global] = ACTIONS(2268), + [anon_sym_satisfies] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2318), + [sym__ternary_qmark] = ACTIONS(2274), [sym_html_comment] = ACTIONS(5), }, [372] = { [sym_comment] = STATE(372), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_STAR_STAR] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), - [anon_sym_GT_EQ] = ACTIONS(2177), - [anon_sym_QMARK_QMARK] = ACTIONS(2177), - [anon_sym_instanceof] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2311), - [sym__ternary_qmark] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2248), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [373] = { [sym_comment] = STATE(373), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_STAR_STAR] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), - [anon_sym_GT_EQ] = ACTIONS(2177), - [anon_sym_QMARK_QMARK] = ACTIONS(2177), - [anon_sym_instanceof] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2315), - [sym__ternary_qmark] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_as] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_COMMA] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_GT] = ACTIONS(2090), + [anon_sym_DOT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_QMARK_DOT] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_GT_GT_GT] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PERCENT] = ACTIONS(2090), + [anon_sym_STAR_STAR] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2090), + [anon_sym_EQ_EQ] = ACTIONS(2090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2090), + [anon_sym_BANG_EQ] = ACTIONS(2090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2090), + [anon_sym_GT_EQ] = ACTIONS(2090), + [anon_sym_QMARK_QMARK] = ACTIONS(2090), + [anon_sym_instanceof] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_satisfies] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2258), [sym_html_comment] = ACTIONS(5), }, [374] = { - [sym_import] = STATE(4220), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(374), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3650), - [sym__type_query_subscript_expression] = STATE(3671), - [sym__type_query_call_expression] = STATE(3871), - [sym__type_query_instantiation_expression] = STATE(3968), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2317), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_QMARK_DOT] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_satisfies] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [sym__automatic_semicolon] = ACTIONS(2288), + [sym__ternary_qmark] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [375] = { - [sym_import] = STATE(4117), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(375), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2319), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_QMARK_DOT] = ACTIONS(2278), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_GT_GT_GT] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_CARET] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2278), + [anon_sym_STAR_STAR] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), + [anon_sym_GT_EQ] = ACTIONS(2278), + [anon_sym_QMARK_QMARK] = ACTIONS(2278), + [anon_sym_instanceof] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_global] = ACTIONS(2276), + [anon_sym_satisfies] = ACTIONS(2278), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2322), + [sym__ternary_qmark] = ACTIONS(2282), [sym_html_comment] = ACTIONS(5), }, [376] = { [sym_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(2229), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_GT] = ACTIONS(2227), - [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_using] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2227), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_STAR_STAR] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_QMARK_QMARK] = ACTIONS(2227), - [anon_sym_instanceof] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [sym_private_property_identifier] = ACTIONS(2227), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_override] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_object] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_satisfies] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [sym__automatic_semicolon] = ACTIONS(2229), - [sym__ternary_qmark] = ACTIONS(2229), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [377] = { - [sym_import] = STATE(4117), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(2944), [sym_comment] = STATE(377), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2321), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [sym_html_comment] = ACTIONS(5), - }, - [378] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(378), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2326), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -82443,1415 +83079,1317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2328), + [sym_html_comment] = ACTIONS(5), + }, + [378] = { + [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_as] = ACTIONS(2238), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_else] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LTtemplate_GT] = ACTIONS(2236), + [anon_sym_GT] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_QMARK_DOT] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2238), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_instanceof] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [sym_private_property_identifier] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_global] = ACTIONS(2236), + [anon_sym_satisfies] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2332), + [sym__ternary_qmark] = ACTIONS(2242), [sym_html_comment] = ACTIONS(5), }, [379] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(6873), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(379), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5956), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_QMARK_DOT] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_LT_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2214), + [anon_sym_QMARK_QMARK] = ACTIONS(2214), + [anon_sym_instanceof] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_global] = ACTIONS(2212), + [anon_sym_satisfies] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2334), + [sym__ternary_qmark] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, [380] = { [sym_comment] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_QMARK_QMARK] = ACTIONS(2183), - [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), - [sym__ternary_qmark] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(2336), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2252), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2252), + [anon_sym_STAR_STAR] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2252), + [anon_sym_GT_EQ] = ACTIONS(2252), + [anon_sym_QMARK_QMARK] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_global] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2252), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2338), + [sym__ternary_qmark] = ACTIONS(2256), [sym_html_comment] = ACTIONS(5), }, [381] = { [sym_comment] = STATE(381), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_COMMA] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_in] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_case] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_QMARK_DOT] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2261), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(2261), - [anon_sym_GT_GT_GT] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_PERCENT] = ACTIONS(2261), - [anon_sym_STAR_STAR] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), - [anon_sym_GT_EQ] = ACTIONS(2261), - [anon_sym_QMARK_QMARK] = ACTIONS(2261), - [anon_sym_instanceof] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_private_property_identifier] = ACTIONS(2259), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_override] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_object] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_satisfies] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym__automatic_semicolon] = ACTIONS(2325), - [sym__ternary_qmark] = ACTIONS(2265), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_global] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2210), + [sym__ternary_qmark] = ACTIONS(2210), [sym_html_comment] = ACTIONS(5), }, [382] = { - [sym_import] = STATE(4196), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(382), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2327), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_as] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_COMMA] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_else] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_debugger] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LTtemplate_GT] = ACTIONS(2110), + [anon_sym_GT] = ACTIONS(2112), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_QMARK_DOT] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2112), + [anon_sym_PIPE_PIPE] = ACTIONS(2112), + [anon_sym_GT_GT] = ACTIONS(2112), + [anon_sym_GT_GT_GT] = ACTIONS(2112), + [anon_sym_LT_LT] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_CARET] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_PERCENT] = ACTIONS(2112), + [anon_sym_STAR_STAR] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_LT_EQ] = ACTIONS(2112), + [anon_sym_EQ_EQ] = ACTIONS(2112), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2112), + [anon_sym_GT_EQ] = ACTIONS(2112), + [anon_sym_QMARK_QMARK] = ACTIONS(2112), + [anon_sym_instanceof] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2110), + [anon_sym_delete] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_private_property_identifier] = ACTIONS(2110), + [sym_this] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_true] = ACTIONS(2110), + [sym_false] = ACTIONS(2110), + [sym_null] = ACTIONS(2110), + [sym_undefined] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_global] = ACTIONS(2110), + [anon_sym_satisfies] = ACTIONS(2112), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(2116), [sym_html_comment] = ACTIONS(5), }, [383] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2500), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6964), + [sym_string] = STATE(2944), [sym_comment] = STATE(383), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_STAR_STAR] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_QMARK_QMARK] = ACTIONS(2169), - [anon_sym_instanceof] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_satisfies] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2329), - [sym__ternary_qmark] = ACTIONS(2173), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2346), [sym_html_comment] = ACTIONS(5), }, [384] = { [sym_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2205), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_GT_GT_GT] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2205), - [anon_sym_STAR_STAR] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), - [anon_sym_GT_EQ] = ACTIONS(2205), - [anon_sym_QMARK_QMARK] = ACTIONS(2205), - [anon_sym_instanceof] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_satisfies] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2207), - [sym__ternary_qmark] = ACTIONS(2207), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_QMARK_DOT] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_LT_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2214), + [anon_sym_QMARK_QMARK] = ACTIONS(2214), + [anon_sym_instanceof] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_global] = ACTIONS(2212), + [anon_sym_satisfies] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2350), + [sym__ternary_qmark] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, [385] = { [sym_comment] = STATE(385), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2331), - [sym__ternary_qmark] = ACTIONS(2111), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_as] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LTtemplate_GT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2136), + [anon_sym_DOT] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_QMARK_DOT] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(2136), + [anon_sym_GT_GT_GT] = ACTIONS(2136), + [anon_sym_LT_LT] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_CARET] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_PERCENT] = ACTIONS(2136), + [anon_sym_STAR_STAR] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_LT_EQ] = ACTIONS(2136), + [anon_sym_EQ_EQ] = ACTIONS(2136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2136), + [anon_sym_GT_EQ] = ACTIONS(2136), + [anon_sym_QMARK_QMARK] = ACTIONS(2136), + [anon_sym_instanceof] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_global] = ACTIONS(2134), + [anon_sym_satisfies] = ACTIONS(2136), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym__automatic_semicolon] = ACTIONS(2354), + [sym__ternary_qmark] = ACTIONS(2140), [sym_html_comment] = ACTIONS(5), }, [386] = { [sym_comment] = STATE(386), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2127), - [anon_sym_PIPE_PIPE] = ACTIONS(2127), - [anon_sym_GT_GT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_STAR_STAR] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2127), - [anon_sym_EQ_EQ] = ACTIONS(2127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), - [anon_sym_GT_EQ] = ACTIONS(2127), - [anon_sym_QMARK_QMARK] = ACTIONS(2127), - [anon_sym_instanceof] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_satisfies] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2333), - [sym__ternary_qmark] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2356), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [387] = { [sym_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_else] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_using] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2141), - [anon_sym_GT_GT_GT] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2141), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2141), - [anon_sym_STAR_STAR] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), - [anon_sym_GT_EQ] = ACTIONS(2141), - [anon_sym_QMARK_QMARK] = ACTIONS(2141), - [anon_sym_instanceof] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_private_property_identifier] = ACTIONS(2139), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [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_abstract] = ACTIONS(2139), - [anon_sym_satisfies] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym__automatic_semicolon] = ACTIONS(2337), - [sym__ternary_qmark] = ACTIONS(2145), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LTtemplate_GT] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_private_property_identifier] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_global] = ACTIONS(2124), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [sym__automatic_semicolon] = ACTIONS(2360), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, [388] = { [sym_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2341), - [sym__ternary_qmark] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LTtemplate_GT] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_private_property_identifier] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_global] = ACTIONS(2124), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [sym__automatic_semicolon] = ACTIONS(2362), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, [389] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6609), + [sym_string] = STATE(2944), [sym_comment] = STATE(389), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_QMARK_DOT] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_GT_GT_GT] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_PERCENT] = ACTIONS(2085), - [anon_sym_STAR_STAR] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_QMARK_QMARK] = ACTIONS(2085), - [anon_sym_instanceof] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_satisfies] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2087), - [sym__ternary_qmark] = ACTIONS(2087), - [sym_html_comment] = ACTIONS(5), - }, - [390] = { - [sym_comment] = STATE(390), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2205), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_GT_GT_GT] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2205), - [anon_sym_STAR_STAR] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), - [anon_sym_GT_EQ] = ACTIONS(2205), - [anon_sym_QMARK_QMARK] = ACTIONS(2205), - [anon_sym_instanceof] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_satisfies] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2207), - [sym__ternary_qmark] = ACTIONS(2207), - [sym_html_comment] = ACTIONS(5), - }, - [391] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(466), - [sym_empty_statement] = STATE(466), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), - [sym_comment] = STATE(391), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2364), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -83873,8387 +84411,8704 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2366), + [sym_html_comment] = ACTIONS(5), + }, + [390] = { + [sym_comment] = STATE(390), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_as] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_COMMA] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_with] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_debugger] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LTtemplate_GT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_DOT] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_QMARK_DOT] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_GT_GT_GT] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_CARET] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_PERCENT] = ACTIONS(2198), + [anon_sym_STAR_STAR] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_LT_EQ] = ACTIONS(2198), + [anon_sym_EQ_EQ] = ACTIONS(2198), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2198), + [anon_sym_BANG_EQ] = ACTIONS(2198), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2198), + [anon_sym_GT_EQ] = ACTIONS(2198), + [anon_sym_QMARK_QMARK] = ACTIONS(2198), + [anon_sym_instanceof] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_private_property_identifier] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_undefined] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_readonly] = ACTIONS(2198), + [anon_sym_get] = ACTIONS(2198), + [anon_sym_set] = ACTIONS(2198), + [anon_sym_declare] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_module] = ACTIONS(2198), + [anon_sym_any] = ACTIONS(2198), + [anon_sym_number] = ACTIONS(2198), + [anon_sym_boolean] = ACTIONS(2198), + [anon_sym_string] = ACTIONS(2198), + [anon_sym_symbol] = ACTIONS(2198), + [anon_sym_object] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_global] = ACTIONS(2198), + [anon_sym_satisfies] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [sym__automatic_semicolon] = ACTIONS(2200), + [sym__ternary_qmark] = ACTIONS(2200), + [sym_html_comment] = ACTIONS(5), + }, + [391] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(391), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5090), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [392] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_COMMA] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_in] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_QMARK_DOT] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2261), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(2261), - [anon_sym_GT_GT_GT] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_PERCENT] = ACTIONS(2261), - [anon_sym_STAR_STAR] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), - [anon_sym_GT_EQ] = ACTIONS(2261), - [anon_sym_QMARK_QMARK] = ACTIONS(2261), - [anon_sym_instanceof] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_private_property_identifier] = ACTIONS(2259), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_override] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_object] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_satisfies] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym__automatic_semicolon] = ACTIONS(2345), - [sym__ternary_qmark] = ACTIONS(2265), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5085), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1096), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2372), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [393] = { - [sym_import] = STATE(4196), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(393), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2347), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_as] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_COMMA] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_debugger] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_case] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LTtemplate_GT] = ACTIONS(2110), + [anon_sym_GT] = ACTIONS(2112), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_QMARK_DOT] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2112), + [anon_sym_PIPE_PIPE] = ACTIONS(2112), + [anon_sym_GT_GT] = ACTIONS(2112), + [anon_sym_GT_GT_GT] = ACTIONS(2112), + [anon_sym_LT_LT] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_CARET] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_PERCENT] = ACTIONS(2112), + [anon_sym_STAR_STAR] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_LT_EQ] = ACTIONS(2112), + [anon_sym_EQ_EQ] = ACTIONS(2112), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2112), + [anon_sym_GT_EQ] = ACTIONS(2112), + [anon_sym_QMARK_QMARK] = ACTIONS(2112), + [anon_sym_instanceof] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2110), + [anon_sym_delete] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_private_property_identifier] = ACTIONS(2110), + [sym_this] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_true] = ACTIONS(2110), + [sym_false] = ACTIONS(2110), + [sym_null] = ACTIONS(2110), + [sym_undefined] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_global] = ACTIONS(2110), + [anon_sym_satisfies] = ACTIONS(2112), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2116), [sym_html_comment] = ACTIONS(5), }, [394] = { [sym_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_debugger] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LTtemplate_GT] = ACTIONS(2245), - [anon_sym_GT] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2245), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_STAR_STAR] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_QMARK_QMARK] = ACTIONS(2245), - [anon_sym_instanceof] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_private_property_identifier] = ACTIONS(2245), - [sym_this] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_null] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_get] = ACTIONS(2245), - [anon_sym_set] = ACTIONS(2245), - [anon_sym_declare] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_private] = ACTIONS(2245), - [anon_sym_protected] = ACTIONS(2245), - [anon_sym_override] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_any] = ACTIONS(2245), - [anon_sym_number] = ACTIONS(2245), - [anon_sym_boolean] = ACTIONS(2245), - [anon_sym_string] = ACTIONS(2245), - [anon_sym_symbol] = ACTIONS(2245), - [anon_sym_object] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_satisfies] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [sym__automatic_semicolon] = ACTIONS(2247), - [sym__ternary_qmark] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_global] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2210), + [sym__ternary_qmark] = ACTIONS(2210), [sym_html_comment] = ACTIONS(5), }, [395] = { [sym_comment] = STATE(395), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_case] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_GT] = ACTIONS(2223), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_QMARK_DOT] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_GT_GT] = ACTIONS(2223), - [anon_sym_GT_GT_GT] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_CARET] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_STAR_STAR] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_LT_EQ] = ACTIONS(2223), - [anon_sym_EQ_EQ] = ACTIONS(2223), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), - [anon_sym_GT_EQ] = ACTIONS(2223), - [anon_sym_QMARK_QMARK] = ACTIONS(2223), - [anon_sym_instanceof] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [sym_private_property_identifier] = ACTIONS(2223), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_satisfies] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [sym__automatic_semicolon] = ACTIONS(2225), - [sym__ternary_qmark] = ACTIONS(2225), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_QMARK_DOT] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_global] = ACTIONS(2222), + [anon_sym_satisfies] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2228), [sym_html_comment] = ACTIONS(5), }, [396] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6512), + [sym_string] = STATE(2944), [sym_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2349), - [sym__ternary_qmark] = ACTIONS(2111), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2382), [sym_html_comment] = ACTIONS(5), }, [397] = { [sym_comment] = STATE(397), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_debugger] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LTtemplate_GT] = ACTIONS(2245), - [anon_sym_GT] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2245), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_STAR_STAR] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_QMARK_QMARK] = ACTIONS(2245), - [anon_sym_instanceof] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_private_property_identifier] = ACTIONS(2245), - [sym_this] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_null] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_get] = ACTIONS(2245), - [anon_sym_set] = ACTIONS(2245), - [anon_sym_declare] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_private] = ACTIONS(2245), - [anon_sym_protected] = ACTIONS(2245), - [anon_sym_override] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_any] = ACTIONS(2245), - [anon_sym_number] = ACTIONS(2245), - [anon_sym_boolean] = ACTIONS(2245), - [anon_sym_string] = ACTIONS(2245), - [anon_sym_symbol] = ACTIONS(2245), - [anon_sym_object] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_satisfies] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [sym__automatic_semicolon] = ACTIONS(2247), - [sym__ternary_qmark] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_QMARK_DOT] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_global] = ACTIONS(2222), + [anon_sym_satisfies] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2384), + [sym__ternary_qmark] = ACTIONS(2228), [sym_html_comment] = ACTIONS(5), }, [398] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2602), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(7350), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7350), - [sym_string] = STATE(2541), [sym_comment] = STATE(398), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_GT_GT_GT] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2156), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_QMARK_QMARK] = ACTIONS(2156), + [anon_sym_instanceof] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_global] = ACTIONS(2156), + [anon_sym_satisfies] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2158), + [sym__ternary_qmark] = ACTIONS(2158), [sym_html_comment] = ACTIONS(5), }, [399] = { [sym_comment] = STATE(399), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_debugger] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LTtemplate_GT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2099), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), - [anon_sym_GT_EQ] = ACTIONS(2099), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_private_property_identifier] = ACTIONS(2097), - [sym_this] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_null] = ACTIONS(2097), - [sym_undefined] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_get] = ACTIONS(2097), - [anon_sym_set] = ACTIONS(2097), - [anon_sym_declare] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_private] = ACTIONS(2097), - [anon_sym_protected] = ACTIONS(2097), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_any] = ACTIONS(2097), - [anon_sym_number] = ACTIONS(2097), - [anon_sym_boolean] = ACTIONS(2097), - [anon_sym_string] = ACTIONS(2097), - [anon_sym_symbol] = ACTIONS(2097), - [anon_sym_object] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_satisfies] = ACTIONS(2099), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2355), - [sym__ternary_qmark] = ACTIONS(2103), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_EQ] = ACTIONS(2094), + [anon_sym_as] = ACTIONS(2092), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_QMARK_DOT] = ACTIONS(2092), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_GT_GT_GT] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_CARET] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PERCENT] = ACTIONS(2092), + [anon_sym_STAR_STAR] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2092), + [anon_sym_GT_EQ] = ACTIONS(2092), + [anon_sym_QMARK_QMARK] = ACTIONS(2092), + [anon_sym_instanceof] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_satisfies] = ACTIONS(2092), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2386), + [sym__ternary_qmark] = ACTIONS(2098), [sym_html_comment] = ACTIONS(5), }, [400] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6795), + [sym_string] = STATE(2944), [sym_comment] = STATE(400), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_QMARK_QMARK] = ACTIONS(2199), - [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2357), - [sym__ternary_qmark] = ACTIONS(2203), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2390), [sym_html_comment] = ACTIONS(5), }, [401] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(401), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_case] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_using] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2141), - [anon_sym_GT_GT_GT] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2141), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2141), - [anon_sym_STAR_STAR] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), - [anon_sym_GT_EQ] = ACTIONS(2141), - [anon_sym_QMARK_QMARK] = ACTIONS(2141), - [anon_sym_instanceof] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_private_property_identifier] = ACTIONS(2139), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [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_abstract] = ACTIONS(2139), - [anon_sym_satisfies] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym__automatic_semicolon] = ACTIONS(2359), - [sym__ternary_qmark] = ACTIONS(2145), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5142), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(2392), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [402] = { [sym_comment] = STATE(402), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_debugger] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_case] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_QMARK_DOT] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [anon_sym_AMP_AMP] = ACTIONS(2249), - [anon_sym_PIPE_PIPE] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_GT_GT_GT] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_STAR_STAR] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_QMARK_QMARK] = ACTIONS(2249), - [anon_sym_instanceof] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_private_property_identifier] = ACTIONS(2249), - [sym_this] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_null] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(2249), - [anon_sym_set] = ACTIONS(2249), - [anon_sym_declare] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_private] = ACTIONS(2249), - [anon_sym_protected] = ACTIONS(2249), - [anon_sym_override] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_any] = ACTIONS(2249), - [anon_sym_number] = ACTIONS(2249), - [anon_sym_boolean] = ACTIONS(2249), - [anon_sym_string] = ACTIONS(2249), - [anon_sym_symbol] = ACTIONS(2249), - [anon_sym_object] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_satisfies] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [sym__automatic_semicolon] = ACTIONS(2251), - [sym__ternary_qmark] = ACTIONS(2251), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_as] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LTtemplate_GT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_QMARK_DOT] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2120), + [anon_sym_GT_GT_GT] = ACTIONS(2120), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_CARET] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_PERCENT] = ACTIONS(2120), + [anon_sym_STAR_STAR] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_LT_EQ] = ACTIONS(2120), + [anon_sym_EQ_EQ] = ACTIONS(2120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2120), + [anon_sym_GT_EQ] = ACTIONS(2120), + [anon_sym_QMARK_QMARK] = ACTIONS(2120), + [anon_sym_instanceof] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_private_property_identifier] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_global] = ACTIONS(2120), + [anon_sym_satisfies] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [sym__automatic_semicolon] = ACTIONS(2122), + [sym__ternary_qmark] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, [403] = { - [sym_import] = STATE(4102), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(403), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2361), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [404] = { [sym_comment] = STATE(404), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2363), - [sym__ternary_qmark] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [405] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1953), + [sym_subscript_expression] = STATE(1953), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4490), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2127), - [anon_sym_PIPE_PIPE] = ACTIONS(2127), - [anon_sym_GT_GT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_STAR_STAR] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2127), - [anon_sym_EQ_EQ] = ACTIONS(2127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), - [anon_sym_GT_EQ] = ACTIONS(2127), - [anon_sym_QMARK_QMARK] = ACTIONS(2127), - [anon_sym_instanceof] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_satisfies] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2367), - [sym__ternary_qmark] = ACTIONS(2131), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4482), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1953), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_using] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2186), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [406] = { [sym_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_else] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_GT] = ACTIONS(2223), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_QMARK_DOT] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_GT_GT] = ACTIONS(2223), - [anon_sym_GT_GT_GT] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_CARET] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_STAR_STAR] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_LT_EQ] = ACTIONS(2223), - [anon_sym_EQ_EQ] = ACTIONS(2223), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), - [anon_sym_GT_EQ] = ACTIONS(2223), - [anon_sym_QMARK_QMARK] = ACTIONS(2223), - [anon_sym_instanceof] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [sym_private_property_identifier] = ACTIONS(2223), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_satisfies] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [sym__automatic_semicolon] = ACTIONS(2225), - [sym__ternary_qmark] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_in] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_case] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LTtemplate_GT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_DOT] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_QMARK_DOT] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_AMP_AMP] = ACTIONS(2174), + [anon_sym_PIPE_PIPE] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_GT_GT_GT] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_CARET] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_PERCENT] = ACTIONS(2174), + [anon_sym_STAR_STAR] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_LT_EQ] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2174), + [anon_sym_BANG_EQ] = ACTIONS(2174), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2174), + [anon_sym_GT_EQ] = ACTIONS(2174), + [anon_sym_QMARK_QMARK] = ACTIONS(2174), + [anon_sym_instanceof] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_private_property_identifier] = ACTIONS(2174), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_global] = ACTIONS(2174), + [anon_sym_satisfies] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [sym__automatic_semicolon] = ACTIONS(2176), + [sym__ternary_qmark] = ACTIONS(2176), [sym_html_comment] = ACTIONS(5), }, [407] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(407), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4946), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_override_modifier] = STATE(429), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(2369), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), + [sym__ternary_qmark] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [408] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_spread_element] = STATE(7061), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7061), - [sym_string] = STATE(2541), [sym_comment] = STATE(408), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LTtemplate_GT] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2150), + [anon_sym_DOT] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_QMARK_DOT] = ACTIONS(2150), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_PIPE_PIPE] = ACTIONS(2150), + [anon_sym_GT_GT] = ACTIONS(2150), + [anon_sym_GT_GT_GT] = ACTIONS(2150), + [anon_sym_LT_LT] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_CARET] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2150), + [anon_sym_STAR_STAR] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_LT_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2150), + [anon_sym_QMARK_QMARK] = ACTIONS(2150), + [anon_sym_instanceof] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_number] = ACTIONS(2148), + [sym_private_property_identifier] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_global] = ACTIONS(2148), + [anon_sym_satisfies] = ACTIONS(2150), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [sym__automatic_semicolon] = ACTIONS(2400), + [sym__ternary_qmark] = ACTIONS(2154), [sym_html_comment] = ACTIONS(5), }, [409] = { [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_debugger] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LTtemplate_GT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2099), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), - [anon_sym_GT_EQ] = ACTIONS(2099), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_private_property_identifier] = ACTIONS(2097), - [sym_this] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_null] = ACTIONS(2097), - [sym_undefined] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_get] = ACTIONS(2097), - [anon_sym_set] = ACTIONS(2097), - [anon_sym_declare] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_private] = ACTIONS(2097), - [anon_sym_protected] = ACTIONS(2097), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_any] = ACTIONS(2097), - [anon_sym_number] = ACTIONS(2097), - [anon_sym_boolean] = ACTIONS(2097), - [anon_sym_string] = ACTIONS(2097), - [anon_sym_symbol] = ACTIONS(2097), - [anon_sym_object] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_satisfies] = ACTIONS(2099), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2377), - [sym__ternary_qmark] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_as] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LTtemplate_GT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2136), + [anon_sym_DOT] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_QMARK_DOT] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(2136), + [anon_sym_GT_GT_GT] = ACTIONS(2136), + [anon_sym_LT_LT] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_CARET] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_PERCENT] = ACTIONS(2136), + [anon_sym_STAR_STAR] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_LT_EQ] = ACTIONS(2136), + [anon_sym_EQ_EQ] = ACTIONS(2136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2136), + [anon_sym_GT_EQ] = ACTIONS(2136), + [anon_sym_QMARK_QMARK] = ACTIONS(2136), + [anon_sym_instanceof] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_global] = ACTIONS(2134), + [anon_sym_satisfies] = ACTIONS(2136), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym__automatic_semicolon] = ACTIONS(2402), + [sym__ternary_qmark] = ACTIONS(2140), [sym_html_comment] = ACTIONS(5), }, [410] = { + [sym_statement_block] = STATE(461), [sym_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_QMARK_DOT] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2079), - [anon_sym_GT_GT_GT] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2079), - [anon_sym_STAR_STAR] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_QMARK_QMARK] = ACTIONS(2079), - [anon_sym_instanceof] = ACTIONS(2079), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_satisfies] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2381), - [sym__ternary_qmark] = ACTIONS(2083), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [411] = { + [sym_statement_block] = STATE(461), [sym_comment] = STATE(411), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [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_abstract] = ACTIONS(2159), - [anon_sym_satisfies] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2383), - [sym__ternary_qmark] = ACTIONS(2165), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [412] = { [sym_comment] = STATE(412), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2111), - [sym__ternary_qmark] = ACTIONS(2111), + [ts_builtin_sym_end] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_QMARK_DOT] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_LT_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), + [anon_sym_GT_EQ] = ACTIONS(2270), + [anon_sym_QMARK_QMARK] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_global] = ACTIONS(2268), + [anon_sym_satisfies] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(2274), [sym_html_comment] = ACTIONS(5), }, [413] = { - [sym_import] = STATE(4117), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(413), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_QMARK_DOT] = ACTIONS(2278), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_GT_GT_GT] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_CARET] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2278), + [anon_sym_STAR_STAR] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), + [anon_sym_GT_EQ] = ACTIONS(2278), + [anon_sym_QMARK_QMARK] = ACTIONS(2278), + [anon_sym_instanceof] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_global] = ACTIONS(2276), + [anon_sym_satisfies] = ACTIONS(2278), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2414), + [sym__ternary_qmark] = ACTIONS(2282), [sym_html_comment] = ACTIONS(5), }, [414] = { [sym_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_QMARK_DOT] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_GT_GT_GT] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_PERCENT] = ACTIONS(2085), - [anon_sym_STAR_STAR] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_QMARK_QMARK] = ACTIONS(2085), - [anon_sym_instanceof] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_satisfies] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2087), - [sym__ternary_qmark] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2252), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2252), + [anon_sym_STAR_STAR] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2252), + [anon_sym_GT_EQ] = ACTIONS(2252), + [anon_sym_QMARK_QMARK] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_global] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2252), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2256), [sym_html_comment] = ACTIONS(5), }, [415] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(461), - [sym_empty_statement] = STATE(461), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), [sym_comment] = STATE(415), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_COMMA] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(2170), + [anon_sym_GT] = ACTIONS(2170), + [anon_sym_DOT] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_QMARK_DOT] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_PIPE_PIPE] = ACTIONS(2170), + [anon_sym_GT_GT] = ACTIONS(2170), + [anon_sym_GT_GT_GT] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_CARET] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_PERCENT] = ACTIONS(2170), + [anon_sym_STAR_STAR] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_LT_EQ] = ACTIONS(2170), + [anon_sym_EQ_EQ] = ACTIONS(2170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), + [anon_sym_BANG_EQ] = ACTIONS(2170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), + [anon_sym_GT_EQ] = ACTIONS(2170), + [anon_sym_QMARK_QMARK] = ACTIONS(2170), + [anon_sym_instanceof] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(2170), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_global] = ACTIONS(2170), + [anon_sym_satisfies] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [sym__automatic_semicolon] = ACTIONS(2172), + [sym__ternary_qmark] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, [416] = { [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2091), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2091), - [anon_sym_PIPE_PIPE] = ACTIONS(2091), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2091), - [anon_sym_EQ_EQ] = ACTIONS(2091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2091), - [anon_sym_QMARK_QMARK] = ACTIONS(2091), - [anon_sym_instanceof] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_private_property_identifier] = ACTIONS(2089), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(2091), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym__automatic_semicolon] = ACTIONS(2389), - [sym__ternary_qmark] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_as] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_COMMA] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_GT] = ACTIONS(2090), + [anon_sym_DOT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_QMARK_DOT] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_GT_GT_GT] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PERCENT] = ACTIONS(2090), + [anon_sym_STAR_STAR] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2090), + [anon_sym_EQ_EQ] = ACTIONS(2090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2090), + [anon_sym_BANG_EQ] = ACTIONS(2090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2090), + [anon_sym_GT_EQ] = ACTIONS(2090), + [anon_sym_QMARK_QMARK] = ACTIONS(2090), + [anon_sym_instanceof] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_satisfies] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(2258), [sym_html_comment] = ACTIONS(5), }, [417] = { + [sym_statement_block] = STATE(461), [sym_comment] = STATE(417), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2107), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_QMARK_DOT] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2068), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_STAR_STAR] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_instanceof] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_satisfies] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [sym__automatic_semicolon] = ACTIONS(2074), + [sym__ternary_qmark] = ACTIONS(2074), [sym_html_comment] = ACTIONS(5), }, [418] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_assignment_pattern] = STATE(6873), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1942), - [sym_subscript_expression] = STATE(1942), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4557), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(418), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5956), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1942), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_in] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LTtemplate_GT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_DOT] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_QMARK_DOT] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_AMP_AMP] = ACTIONS(2174), + [anon_sym_PIPE_PIPE] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_GT_GT_GT] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_CARET] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_PERCENT] = ACTIONS(2174), + [anon_sym_STAR_STAR] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_LT_EQ] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2174), + [anon_sym_BANG_EQ] = ACTIONS(2174), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2174), + [anon_sym_GT_EQ] = ACTIONS(2174), + [anon_sym_QMARK_QMARK] = ACTIONS(2174), + [anon_sym_instanceof] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_private_property_identifier] = ACTIONS(2174), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_global] = ACTIONS(2174), + [anon_sym_satisfies] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [sym__automatic_semicolon] = ACTIONS(2176), + [sym__ternary_qmark] = ACTIONS(2176), [sym_html_comment] = ACTIONS(5), }, [419] = { - [sym_import] = STATE(4117), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2866), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(419), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2391), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2180), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2180), + [anon_sym_DOT] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_QMARK_DOT] = ACTIONS(2180), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_PIPE_PIPE] = ACTIONS(2180), + [anon_sym_GT_GT] = ACTIONS(2180), + [anon_sym_GT_GT_GT] = ACTIONS(2180), + [anon_sym_LT_LT] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2180), + [anon_sym_STAR_STAR] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2180), + [anon_sym_EQ_EQ] = ACTIONS(2180), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2180), + [anon_sym_GT_EQ] = ACTIONS(2180), + [anon_sym_QMARK_QMARK] = ACTIONS(2180), + [anon_sym_instanceof] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_global] = ACTIONS(2178), + [anon_sym_satisfies] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2422), + [sym__ternary_qmark] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, [420] = { - [sym_import] = STATE(4218), - [sym_expression_statement] = STATE(464), - [sym_empty_statement] = STATE(464), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6965), - [sym_string] = STATE(2924), [sym_comment] = STATE(420), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_as] = ACTIONS(2238), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LTtemplate_GT] = ACTIONS(2236), + [anon_sym_GT] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_QMARK_DOT] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2238), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_instanceof] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [sym_private_property_identifier] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_global] = ACTIONS(2236), + [anon_sym_satisfies] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2424), + [sym__ternary_qmark] = ACTIONS(2242), [sym_html_comment] = ACTIONS(5), }, [421] = { [sym_comment] = STATE(421), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_case] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2091), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2091), - [anon_sym_PIPE_PIPE] = ACTIONS(2091), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2091), - [anon_sym_EQ_EQ] = ACTIONS(2091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2091), - [anon_sym_QMARK_QMARK] = ACTIONS(2091), - [anon_sym_instanceof] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_private_property_identifier] = ACTIONS(2089), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(2091), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym__automatic_semicolon] = ACTIONS(2393), - [sym__ternary_qmark] = ACTIONS(2095), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2298), + [sym__ternary_qmark] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, [422] = { - [sym_import] = STATE(4117), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3132), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(422), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym__type_query_member_expression] = STATE(3602), - [sym__type_query_subscript_expression] = STATE(3601), - [sym__type_query_call_expression] = STATE(3659), - [sym__type_query_instantiation_expression] = STATE(3785), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2395), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), + [sym__ternary_qmark] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [423] = { [sym_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_debugger] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LTtemplate_GT] = ACTIONS(2245), - [anon_sym_GT] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2245), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_STAR_STAR] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_QMARK_QMARK] = ACTIONS(2245), - [anon_sym_instanceof] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_private_property_identifier] = ACTIONS(2245), - [sym_this] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_null] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_get] = ACTIONS(2245), - [anon_sym_set] = ACTIONS(2245), - [anon_sym_declare] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_private] = ACTIONS(2245), - [anon_sym_protected] = ACTIONS(2245), - [anon_sym_override] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_any] = ACTIONS(2245), - [anon_sym_number] = ACTIONS(2245), - [anon_sym_boolean] = ACTIONS(2245), - [anon_sym_string] = ACTIONS(2245), - [anon_sym_symbol] = ACTIONS(2245), - [anon_sym_object] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_satisfies] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [sym__automatic_semicolon] = ACTIONS(2247), - [sym__ternary_qmark] = ACTIONS(2247), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2248), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [424] = { [sym_comment] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(2229), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_GT] = ACTIONS(2227), - [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_using] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2227), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_STAR_STAR] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_QMARK_QMARK] = ACTIONS(2227), - [anon_sym_instanceof] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [sym_private_property_identifier] = ACTIONS(2227), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_override] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_object] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_satisfies] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [sym__automatic_semicolon] = ACTIONS(2229), - [sym__ternary_qmark] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_as] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LTtemplate_GT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_QMARK_DOT] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2120), + [anon_sym_GT_GT_GT] = ACTIONS(2120), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_CARET] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_PERCENT] = ACTIONS(2120), + [anon_sym_STAR_STAR] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_LT_EQ] = ACTIONS(2120), + [anon_sym_EQ_EQ] = ACTIONS(2120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2120), + [anon_sym_GT_EQ] = ACTIONS(2120), + [anon_sym_QMARK_QMARK] = ACTIONS(2120), + [anon_sym_instanceof] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_private_property_identifier] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_global] = ACTIONS(2120), + [anon_sym_satisfies] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [sym__automatic_semicolon] = ACTIONS(2122), + [sym__ternary_qmark] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, [425] = { [sym_comment] = STATE(425), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(2397), - [anon_sym_import] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_LTtemplate_GT] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_function] = ACTIONS(2397), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2397), - [anon_sym_void] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2397), - [sym_number] = ACTIONS(2397), - [sym_private_property_identifier] = ACTIONS(2397), - [sym_this] = ACTIONS(2397), - [sym_super] = ACTIONS(2397), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_undefined] = ACTIONS(2397), - [anon_sym_AT] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_readonly] = ACTIONS(2397), - [anon_sym_get] = ACTIONS(2397), - [anon_sym_set] = ACTIONS(2397), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(2397), - [anon_sym_public] = ACTIONS(2397), - [anon_sym_private] = ACTIONS(2397), - [anon_sym_protected] = ACTIONS(2397), - [anon_sym_override] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_any] = ACTIONS(2397), - [anon_sym_number] = ACTIONS(2397), - [anon_sym_boolean] = ACTIONS(2397), - [anon_sym_string] = ACTIONS(2397), - [anon_sym_symbol] = ACTIONS(2397), - [anon_sym_object] = ACTIONS(2397), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [ts_builtin_sym_end] = ACTIONS(2298), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2298), + [sym__ternary_qmark] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, [426] = { [sym_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2111), - [sym__ternary_qmark] = ACTIONS(2111), + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_DOT] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_QMARK_DOT] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2190), + [anon_sym_STAR_STAR] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_LT_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2190), + [anon_sym_QMARK_QMARK] = ACTIONS(2190), + [anon_sym_instanceof] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_global] = ACTIONS(2188), + [anon_sym_satisfies] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2428), + [sym__ternary_qmark] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, [427] = { [sym_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2399), - [sym__ternary_qmark] = ACTIONS(2111), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_COMMA] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(2170), + [anon_sym_GT] = ACTIONS(2170), + [anon_sym_DOT] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_QMARK_DOT] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_PIPE_PIPE] = ACTIONS(2170), + [anon_sym_GT_GT] = ACTIONS(2170), + [anon_sym_GT_GT_GT] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_CARET] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_PERCENT] = ACTIONS(2170), + [anon_sym_STAR_STAR] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_LT_EQ] = ACTIONS(2170), + [anon_sym_EQ_EQ] = ACTIONS(2170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), + [anon_sym_BANG_EQ] = ACTIONS(2170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), + [anon_sym_GT_EQ] = ACTIONS(2170), + [anon_sym_QMARK_QMARK] = ACTIONS(2170), + [anon_sym_instanceof] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(2170), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_global] = ACTIONS(2170), + [anon_sym_satisfies] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [sym__automatic_semicolon] = ACTIONS(2172), + [sym__ternary_qmark] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, [428] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(428), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4943), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(2401), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_as] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_COMMA] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_with] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_debugger] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LTtemplate_GT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_DOT] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_QMARK_DOT] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_GT_GT_GT] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_CARET] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_PERCENT] = ACTIONS(2198), + [anon_sym_STAR_STAR] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_LT_EQ] = ACTIONS(2198), + [anon_sym_EQ_EQ] = ACTIONS(2198), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2198), + [anon_sym_BANG_EQ] = ACTIONS(2198), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2198), + [anon_sym_GT_EQ] = ACTIONS(2198), + [anon_sym_QMARK_QMARK] = ACTIONS(2198), + [anon_sym_instanceof] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_private_property_identifier] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_undefined] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_readonly] = ACTIONS(2198), + [anon_sym_get] = ACTIONS(2198), + [anon_sym_set] = ACTIONS(2198), + [anon_sym_declare] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_module] = ACTIONS(2198), + [anon_sym_any] = ACTIONS(2198), + [anon_sym_number] = ACTIONS(2198), + [anon_sym_boolean] = ACTIONS(2198), + [anon_sym_string] = ACTIONS(2198), + [anon_sym_symbol] = ACTIONS(2198), + [anon_sym_object] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_global] = ACTIONS(2198), + [anon_sym_satisfies] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [sym__automatic_semicolon] = ACTIONS(2200), + [sym__ternary_qmark] = ACTIONS(2200), [sym_html_comment] = ACTIONS(5), }, [429] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(429), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4985), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(2405), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_GT_GT_GT] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2156), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_QMARK_QMARK] = ACTIONS(2156), + [anon_sym_instanceof] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_global] = ACTIONS(2156), + [anon_sym_satisfies] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2158), + [sym__ternary_qmark] = ACTIONS(2158), [sym_html_comment] = ACTIONS(5), }, [430] = { [sym_comment] = STATE(430), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(2409), - [anon_sym_import] = ACTIONS(2409), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_LTtemplate_GT] = ACTIONS(2409), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_function] = ACTIONS(2409), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2409), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2409), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_void] = ACTIONS(2409), - [anon_sym_delete] = ACTIONS(2409), - [anon_sym_PLUS_PLUS] = ACTIONS(2409), - [anon_sym_DASH_DASH] = ACTIONS(2409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2409), - [sym_number] = ACTIONS(2409), - [sym_private_property_identifier] = ACTIONS(2409), - [sym_this] = ACTIONS(2409), - [sym_super] = ACTIONS(2409), - [sym_true] = ACTIONS(2409), - [sym_false] = ACTIONS(2409), - [sym_null] = ACTIONS(2409), - [sym_undefined] = ACTIONS(2409), - [anon_sym_AT] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_readonly] = ACTIONS(2409), - [anon_sym_get] = ACTIONS(2409), - [anon_sym_set] = ACTIONS(2409), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(2409), - [anon_sym_public] = ACTIONS(2409), - [anon_sym_private] = ACTIONS(2409), - [anon_sym_protected] = ACTIONS(2409), - [anon_sym_override] = ACTIONS(2409), - [anon_sym_module] = ACTIONS(2409), - [anon_sym_any] = ACTIONS(2409), - [anon_sym_number] = ACTIONS(2409), - [anon_sym_boolean] = ACTIONS(2409), - [anon_sym_string] = ACTIONS(2409), - [anon_sym_symbol] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(2409), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_QMARK_DOT] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_satisfies] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [sym__automatic_semicolon] = ACTIONS(2288), + [sym__ternary_qmark] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [431] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6578), - [sym_string] = STATE(2924), [sym_comment] = STATE(431), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym__automatic_semicolon] = ACTIONS(2413), + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2180), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2180), + [anon_sym_DOT] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_QMARK_DOT] = ACTIONS(2180), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_PIPE_PIPE] = ACTIONS(2180), + [anon_sym_GT_GT] = ACTIONS(2180), + [anon_sym_GT_GT_GT] = ACTIONS(2180), + [anon_sym_LT_LT] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2180), + [anon_sym_STAR_STAR] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2180), + [anon_sym_EQ_EQ] = ACTIONS(2180), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2180), + [anon_sym_GT_EQ] = ACTIONS(2180), + [anon_sym_QMARK_QMARK] = ACTIONS(2180), + [anon_sym_instanceof] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_global] = ACTIONS(2178), + [anon_sym_satisfies] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2432), + [sym__ternary_qmark] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, [432] = { [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2415), - [sym__ternary_qmark] = ACTIONS(2219), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LTtemplate_GT] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_private_property_identifier] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_global] = ACTIONS(2124), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [sym__automatic_semicolon] = ACTIONS(2434), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, [433] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6955), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2680), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7069), + [sym_string] = STATE(2506), [sym_comment] = STATE(433), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2436), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym__automatic_semicolon] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [434] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2598), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7001), + [sym_string] = STATE(2506), [sym_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_using] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2141), - [anon_sym_GT_GT_GT] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2141), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2141), - [anon_sym_STAR_STAR] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), - [anon_sym_GT_EQ] = ACTIONS(2141), - [anon_sym_QMARK_QMARK] = ACTIONS(2141), - [anon_sym_instanceof] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_private_property_identifier] = ACTIONS(2139), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [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_abstract] = ACTIONS(2139), - [anon_sym_satisfies] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym__automatic_semicolon] = ACTIONS(2421), - [sym__ternary_qmark] = ACTIONS(2145), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [435] = { [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2107), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_as] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_COMMA] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_GT] = ACTIONS(2090), + [anon_sym_DOT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_QMARK_DOT] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_GT_GT_GT] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PERCENT] = ACTIONS(2090), + [anon_sym_STAR_STAR] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2090), + [anon_sym_EQ_EQ] = ACTIONS(2090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2090), + [anon_sym_BANG_EQ] = ACTIONS(2090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2090), + [anon_sym_GT_EQ] = ACTIONS(2090), + [anon_sym_QMARK_QMARK] = ACTIONS(2090), + [anon_sym_instanceof] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_satisfies] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2258), [sym_html_comment] = ACTIONS(5), }, [436] = { [sym_comment] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_debugger] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LTtemplate_GT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2099), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), - [anon_sym_GT_EQ] = ACTIONS(2099), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_private_property_identifier] = ACTIONS(2097), - [sym_this] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_null] = ACTIONS(2097), - [sym_undefined] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_get] = ACTIONS(2097), - [anon_sym_set] = ACTIONS(2097), - [anon_sym_declare] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_private] = ACTIONS(2097), - [anon_sym_protected] = ACTIONS(2097), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_any] = ACTIONS(2097), - [anon_sym_number] = ACTIONS(2097), - [anon_sym_boolean] = ACTIONS(2097), - [anon_sym_string] = ACTIONS(2097), - [anon_sym_symbol] = ACTIONS(2097), - [anon_sym_object] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_satisfies] = ACTIONS(2099), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2423), - [sym__ternary_qmark] = ACTIONS(2103), + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_GT_GT_GT] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2156), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_QMARK_QMARK] = ACTIONS(2156), + [anon_sym_instanceof] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_global] = ACTIONS(2156), + [anon_sym_satisfies] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2158), + [sym__ternary_qmark] = ACTIONS(2158), [sym_html_comment] = ACTIONS(5), }, [437] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7190), + [sym_string] = STATE(2506), [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2091), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2091), - [anon_sym_PIPE_PIPE] = ACTIONS(2091), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2091), - [anon_sym_EQ_EQ] = ACTIONS(2091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2091), - [anon_sym_QMARK_QMARK] = ACTIONS(2091), - [anon_sym_instanceof] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_private_property_identifier] = ACTIONS(2089), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(2091), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym__automatic_semicolon] = ACTIONS(2425), - [sym__ternary_qmark] = ACTIONS(2095), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [438] = { [sym_comment] = STATE(438), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2397), - [anon_sym_import] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_LTtemplate_GT] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_function] = ACTIONS(2397), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2397), - [anon_sym_void] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2397), - [sym_number] = ACTIONS(2397), - [sym_private_property_identifier] = ACTIONS(2397), - [sym_this] = ACTIONS(2397), - [sym_super] = ACTIONS(2397), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_undefined] = ACTIONS(2397), - [anon_sym_AT] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_readonly] = ACTIONS(2397), - [anon_sym_get] = ACTIONS(2397), - [anon_sym_set] = ACTIONS(2397), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(2397), - [anon_sym_public] = ACTIONS(2397), - [anon_sym_private] = ACTIONS(2397), - [anon_sym_protected] = ACTIONS(2397), - [anon_sym_override] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_any] = ACTIONS(2397), - [anon_sym_number] = ACTIONS(2397), - [anon_sym_boolean] = ACTIONS(2397), - [anon_sym_string] = ACTIONS(2397), - [anon_sym_symbol] = ACTIONS(2397), - [anon_sym_object] = ACTIONS(2397), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2180), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2180), + [anon_sym_DOT] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_QMARK_DOT] = ACTIONS(2180), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_PIPE_PIPE] = ACTIONS(2180), + [anon_sym_GT_GT] = ACTIONS(2180), + [anon_sym_GT_GT_GT] = ACTIONS(2180), + [anon_sym_LT_LT] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2180), + [anon_sym_STAR_STAR] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2180), + [anon_sym_EQ_EQ] = ACTIONS(2180), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2180), + [anon_sym_GT_EQ] = ACTIONS(2180), + [anon_sym_QMARK_QMARK] = ACTIONS(2180), + [anon_sym_instanceof] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_global] = ACTIONS(2178), + [anon_sym_satisfies] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2444), + [sym__ternary_qmark] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, [439] = { [sym_comment] = STATE(439), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2409), - [anon_sym_import] = ACTIONS(2409), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_LTtemplate_GT] = ACTIONS(2409), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_function] = ACTIONS(2409), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2409), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2409), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_void] = ACTIONS(2409), - [anon_sym_delete] = ACTIONS(2409), - [anon_sym_PLUS_PLUS] = ACTIONS(2409), - [anon_sym_DASH_DASH] = ACTIONS(2409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2409), - [sym_number] = ACTIONS(2409), - [sym_private_property_identifier] = ACTIONS(2409), - [sym_this] = ACTIONS(2409), - [sym_super] = ACTIONS(2409), - [sym_true] = ACTIONS(2409), - [sym_false] = ACTIONS(2409), - [sym_null] = ACTIONS(2409), - [sym_undefined] = ACTIONS(2409), - [anon_sym_AT] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_readonly] = ACTIONS(2409), - [anon_sym_get] = ACTIONS(2409), - [anon_sym_set] = ACTIONS(2409), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(2409), - [anon_sym_public] = ACTIONS(2409), - [anon_sym_private] = ACTIONS(2409), - [anon_sym_protected] = ACTIONS(2409), - [anon_sym_override] = ACTIONS(2409), - [anon_sym_module] = ACTIONS(2409), - [anon_sym_any] = ACTIONS(2409), - [anon_sym_number] = ACTIONS(2409), - [anon_sym_boolean] = ACTIONS(2409), - [anon_sym_string] = ACTIONS(2409), - [anon_sym_symbol] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(2409), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_as] = ACTIONS(2238), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LTtemplate_GT] = ACTIONS(2236), + [anon_sym_GT] = ACTIONS(2238), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_QMARK_DOT] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2238), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_instanceof] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [sym_private_property_identifier] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_global] = ACTIONS(2236), + [anon_sym_satisfies] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2446), + [sym__ternary_qmark] = ACTIONS(2242), [sym_html_comment] = ACTIONS(5), }, [440] = { [sym_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_QMARK_DOT] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_GT_GT_GT] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_PERCENT] = ACTIONS(2085), - [anon_sym_STAR_STAR] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_QMARK_QMARK] = ACTIONS(2085), - [anon_sym_instanceof] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_satisfies] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2087), - [sym__ternary_qmark] = ACTIONS(2087), + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_DOT] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_QMARK_DOT] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2190), + [anon_sym_STAR_STAR] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_LT_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2190), + [anon_sym_QMARK_QMARK] = ACTIONS(2190), + [anon_sym_instanceof] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_global] = ACTIONS(2188), + [anon_sym_satisfies] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2448), + [sym__ternary_qmark] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, [441] = { [sym_comment] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_QMARK_DOT] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2079), - [anon_sym_GT_GT_GT] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2079), - [anon_sym_STAR_STAR] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_QMARK_QMARK] = ACTIONS(2079), - [anon_sym_instanceof] = ACTIONS(2079), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_satisfies] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2427), - [sym__ternary_qmark] = ACTIONS(2083), + [ts_builtin_sym_end] = ACTIONS(2336), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2252), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2252), + [anon_sym_STAR_STAR] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2252), + [anon_sym_GT_EQ] = ACTIONS(2252), + [anon_sym_QMARK_QMARK] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_global] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2252), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2450), + [sym__ternary_qmark] = ACTIONS(2256), [sym_html_comment] = ACTIONS(5), }, [442] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(442), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(4965), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1079), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2429), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_as] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LTtemplate_GT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2136), + [anon_sym_DOT] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_QMARK_DOT] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(2136), + [anon_sym_GT_GT_GT] = ACTIONS(2136), + [anon_sym_LT_LT] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_CARET] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_PERCENT] = ACTIONS(2136), + [anon_sym_STAR_STAR] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_LT_EQ] = ACTIONS(2136), + [anon_sym_EQ_EQ] = ACTIONS(2136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2136), + [anon_sym_GT_EQ] = ACTIONS(2136), + [anon_sym_QMARK_QMARK] = ACTIONS(2136), + [anon_sym_instanceof] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_global] = ACTIONS(2134), + [anon_sym_satisfies] = ACTIONS(2136), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2140), [sym_html_comment] = ACTIONS(5), }, [443] = { [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_STAR_STAR] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_QMARK_QMARK] = ACTIONS(2193), - [anon_sym_instanceof] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_satisfies] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym__automatic_semicolon] = ACTIONS(2195), - [sym__ternary_qmark] = ACTIONS(2195), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_as] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LTtemplate_GT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_QMARK_DOT] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2120), + [anon_sym_GT_GT_GT] = ACTIONS(2120), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_CARET] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_PERCENT] = ACTIONS(2120), + [anon_sym_STAR_STAR] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_LT_EQ] = ACTIONS(2120), + [anon_sym_EQ_EQ] = ACTIONS(2120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2120), + [anon_sym_GT_EQ] = ACTIONS(2120), + [anon_sym_QMARK_QMARK] = ACTIONS(2120), + [anon_sym_instanceof] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_private_property_identifier] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_global] = ACTIONS(2120), + [anon_sym_satisfies] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [sym__automatic_semicolon] = ACTIONS(2122), + [sym__ternary_qmark] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, [444] = { [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_STAR_STAR] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_QMARK_QMARK] = ACTIONS(2153), - [anon_sym_instanceof] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_satisfies] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [sym__automatic_semicolon] = ACTIONS(2155), - [sym__ternary_qmark] = ACTIONS(2155), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_COMMA] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(2170), + [anon_sym_GT] = ACTIONS(2170), + [anon_sym_DOT] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_QMARK_DOT] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_PIPE_PIPE] = ACTIONS(2170), + [anon_sym_GT_GT] = ACTIONS(2170), + [anon_sym_GT_GT_GT] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_CARET] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_PERCENT] = ACTIONS(2170), + [anon_sym_STAR_STAR] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_LT_EQ] = ACTIONS(2170), + [anon_sym_EQ_EQ] = ACTIONS(2170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), + [anon_sym_BANG_EQ] = ACTIONS(2170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), + [anon_sym_GT_EQ] = ACTIONS(2170), + [anon_sym_QMARK_QMARK] = ACTIONS(2170), + [anon_sym_instanceof] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(2170), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_global] = ACTIONS(2170), + [anon_sym_satisfies] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [sym__automatic_semicolon] = ACTIONS(2172), + [sym__ternary_qmark] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, [445] = { [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [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_abstract] = ACTIONS(2159), - [anon_sym_satisfies] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2431), - [sym__ternary_qmark] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_import] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LTtemplate_GT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_function] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2454), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2454), + [anon_sym_delete] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [sym_this] = ACTIONS(2454), + [sym_super] = ACTIONS(2454), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [sym_null] = ACTIONS(2454), + [sym_undefined] = ACTIONS(2454), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(2454), + [anon_sym_public] = ACTIONS(2454), + [anon_sym_private] = ACTIONS(2454), + [anon_sym_protected] = ACTIONS(2454), + [anon_sym_override] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_any] = ACTIONS(2454), + [anon_sym_number] = ACTIONS(2454), + [anon_sym_boolean] = ACTIONS(2454), + [anon_sym_string] = ACTIONS(2454), + [anon_sym_symbol] = ACTIONS(2454), + [anon_sym_object] = ACTIONS(2454), + [anon_sym_global] = ACTIONS(2454), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [446] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2556), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2924), [sym_comment] = STATE(446), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym__automatic_semicolon] = ACTIONS(2435), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), + [sym__ternary_qmark] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [447] = { [sym_comment] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_GT] = ACTIONS(2223), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_QMARK_DOT] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_GT_GT] = ACTIONS(2223), - [anon_sym_GT_GT_GT] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_CARET] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_STAR_STAR] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_LT_EQ] = ACTIONS(2223), - [anon_sym_EQ_EQ] = ACTIONS(2223), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), - [anon_sym_GT_EQ] = ACTIONS(2223), - [anon_sym_QMARK_QMARK] = ACTIONS(2223), - [anon_sym_instanceof] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [sym_private_property_identifier] = ACTIONS(2223), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_satisfies] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [sym__automatic_semicolon] = ACTIONS(2225), - [sym__ternary_qmark] = ACTIONS(2225), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_as] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_COMMA] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_with] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_debugger] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LTtemplate_GT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_DOT] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_QMARK_DOT] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_GT_GT_GT] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_CARET] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_PERCENT] = ACTIONS(2198), + [anon_sym_STAR_STAR] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_LT_EQ] = ACTIONS(2198), + [anon_sym_EQ_EQ] = ACTIONS(2198), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2198), + [anon_sym_BANG_EQ] = ACTIONS(2198), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2198), + [anon_sym_GT_EQ] = ACTIONS(2198), + [anon_sym_QMARK_QMARK] = ACTIONS(2198), + [anon_sym_instanceof] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_private_property_identifier] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_undefined] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_readonly] = ACTIONS(2198), + [anon_sym_get] = ACTIONS(2198), + [anon_sym_set] = ACTIONS(2198), + [anon_sym_declare] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_module] = ACTIONS(2198), + [anon_sym_any] = ACTIONS(2198), + [anon_sym_number] = ACTIONS(2198), + [anon_sym_boolean] = ACTIONS(2198), + [anon_sym_string] = ACTIONS(2198), + [anon_sym_symbol] = ACTIONS(2198), + [anon_sym_object] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_global] = ACTIONS(2198), + [anon_sym_satisfies] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [sym__automatic_semicolon] = ACTIONS(2200), + [sym__ternary_qmark] = ACTIONS(2200), [sym_html_comment] = ACTIONS(5), }, [448] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4603), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2683), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7296), + [sym_string] = STATE(2506), [sym_comment] = STATE(448), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_pattern] = STATE(5295), - [sym_rest_pattern] = STATE(4559), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2305), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [449] = { [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2437), - [sym__ternary_qmark] = ACTIONS(2113), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2248), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [450] = { [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_QMARK_QMARK] = ACTIONS(2183), - [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), - [sym__ternary_qmark] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(2298), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2298), + [sym__ternary_qmark] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, [451] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2391), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6506), - [sym_string] = STATE(2924), [sym_comment] = STATE(451), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym__automatic_semicolon] = ACTIONS(2441), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2458), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [452] = { [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_COMMA] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_in] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_QMARK_DOT] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2261), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(2261), - [anon_sym_GT_GT_GT] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_PERCENT] = ACTIONS(2261), - [anon_sym_STAR_STAR] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), - [anon_sym_GT_EQ] = ACTIONS(2261), - [anon_sym_QMARK_QMARK] = ACTIONS(2261), - [anon_sym_instanceof] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_private_property_identifier] = ACTIONS(2259), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_override] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_object] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_satisfies] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym__automatic_semicolon] = ACTIONS(2443), - [sym__ternary_qmark] = ACTIONS(2265), + [ts_builtin_sym_end] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_QMARK_DOT] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_LT_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), + [anon_sym_GT_EQ] = ACTIONS(2270), + [anon_sym_QMARK_QMARK] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_global] = ACTIONS(2268), + [anon_sym_satisfies] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2274), [sym_html_comment] = ACTIONS(5), }, [453] = { [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_STAR_STAR] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), - [anon_sym_GT_EQ] = ACTIONS(2177), - [anon_sym_QMARK_QMARK] = ACTIONS(2177), - [anon_sym_instanceof] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2445), - [sym__ternary_qmark] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [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_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [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_QMARK] = ACTIONS(221), + [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_global] = ACTIONS(2462), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [454] = { [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_STAR_STAR] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_QMARK_QMARK] = ACTIONS(2239), - [anon_sym_instanceof] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2447), - [sym__ternary_qmark] = ACTIONS(2243), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_QMARK_DOT] = ACTIONS(2278), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_GT_GT_GT] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_CARET] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2278), + [anon_sym_STAR_STAR] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), + [anon_sym_GT_EQ] = ACTIONS(2278), + [anon_sym_QMARK_QMARK] = ACTIONS(2278), + [anon_sym_instanceof] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_global] = ACTIONS(2276), + [anon_sym_satisfies] = ACTIONS(2278), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2282), [sym_html_comment] = ACTIONS(5), }, [455] = { [sym_comment] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_STAR_STAR] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_QMARK_QMARK] = ACTIONS(2169), - [anon_sym_instanceof] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_satisfies] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2449), - [sym__ternary_qmark] = ACTIONS(2173), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_QMARK_DOT] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_LT_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2214), + [anon_sym_QMARK_QMARK] = ACTIONS(2214), + [anon_sym_instanceof] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_global] = ACTIONS(2212), + [anon_sym_satisfies] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, [456] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(5884), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2127), - [anon_sym_PIPE_PIPE] = ACTIONS(2127), - [anon_sym_GT_GT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_STAR_STAR] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2127), - [anon_sym_EQ_EQ] = ACTIONS(2127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), - [anon_sym_GT_EQ] = ACTIONS(2127), - [anon_sym_QMARK_QMARK] = ACTIONS(2127), - [anon_sym_instanceof] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_satisfies] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2451), - [sym__ternary_qmark] = ACTIONS(2131), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2093), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2468), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2484), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [457] = { [sym_comment] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_QMARK_QMARK] = ACTIONS(2199), - [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2453), - [sym__ternary_qmark] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_import] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LTtemplate_GT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_function] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2454), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2454), + [anon_sym_delete] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [sym_this] = ACTIONS(2454), + [sym_super] = ACTIONS(2454), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [sym_null] = ACTIONS(2454), + [sym_undefined] = ACTIONS(2454), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(2454), + [anon_sym_public] = ACTIONS(2454), + [anon_sym_private] = ACTIONS(2454), + [anon_sym_protected] = ACTIONS(2454), + [anon_sym_override] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_any] = ACTIONS(2454), + [anon_sym_number] = ACTIONS(2454), + [anon_sym_boolean] = ACTIONS(2454), + [anon_sym_string] = ACTIONS(2454), + [anon_sym_symbol] = ACTIONS(2454), + [anon_sym_object] = ACTIONS(2454), + [anon_sym_global] = ACTIONS(2454), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [458] = { [sym_comment] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_debugger] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_QMARK_DOT] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [anon_sym_AMP_AMP] = ACTIONS(2249), - [anon_sym_PIPE_PIPE] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_GT_GT_GT] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_STAR_STAR] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_QMARK_QMARK] = ACTIONS(2249), - [anon_sym_instanceof] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_private_property_identifier] = ACTIONS(2249), - [sym_this] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_null] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(2249), - [anon_sym_set] = ACTIONS(2249), - [anon_sym_declare] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_private] = ACTIONS(2249), - [anon_sym_protected] = ACTIONS(2249), - [anon_sym_override] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_any] = ACTIONS(2249), - [anon_sym_number] = ACTIONS(2249), - [anon_sym_boolean] = ACTIONS(2249), - [anon_sym_string] = ACTIONS(2249), - [anon_sym_symbol] = ACTIONS(2249), - [anon_sym_object] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_satisfies] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [sym__automatic_semicolon] = ACTIONS(2251), - [sym__ternary_qmark] = ACTIONS(2251), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [459] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6601), - [sym_string] = STATE(2924), [sym_comment] = STATE(459), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym__automatic_semicolon] = ACTIONS(2457), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LTtemplate_GT] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2150), + [anon_sym_DOT] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_QMARK_DOT] = ACTIONS(2150), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_PIPE_PIPE] = ACTIONS(2150), + [anon_sym_GT_GT] = ACTIONS(2150), + [anon_sym_GT_GT_GT] = ACTIONS(2150), + [anon_sym_LT_LT] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_CARET] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2150), + [anon_sym_STAR_STAR] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_LT_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2150), + [anon_sym_QMARK_QMARK] = ACTIONS(2150), + [anon_sym_instanceof] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_number] = ACTIONS(2148), + [sym_private_property_identifier] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_global] = ACTIONS(2148), + [anon_sym_satisfies] = ACTIONS(2150), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [sym__automatic_semicolon] = ACTIONS(2490), + [sym__ternary_qmark] = ACTIONS(2154), [sym_html_comment] = ACTIONS(5), }, [460] = { [sym_comment] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2205), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_GT_GT_GT] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2205), - [anon_sym_STAR_STAR] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), - [anon_sym_GT_EQ] = ACTIONS(2205), - [anon_sym_QMARK_QMARK] = ACTIONS(2205), - [anon_sym_instanceof] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_satisfies] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2207), - [sym__ternary_qmark] = ACTIONS(2207), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_in] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LTtemplate_GT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_DOT] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_QMARK_DOT] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_AMP_AMP] = ACTIONS(2174), + [anon_sym_PIPE_PIPE] = ACTIONS(2174), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_GT_GT_GT] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_CARET] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_PERCENT] = ACTIONS(2174), + [anon_sym_STAR_STAR] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_LT_EQ] = ACTIONS(2174), + [anon_sym_EQ_EQ] = ACTIONS(2174), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2174), + [anon_sym_BANG_EQ] = ACTIONS(2174), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2174), + [anon_sym_GT_EQ] = ACTIONS(2174), + [anon_sym_QMARK_QMARK] = ACTIONS(2174), + [anon_sym_instanceof] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_private_property_identifier] = ACTIONS(2174), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_global] = ACTIONS(2174), + [anon_sym_satisfies] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [sym__automatic_semicolon] = ACTIONS(2176), + [sym__ternary_qmark] = ACTIONS(2176), [sym_html_comment] = ACTIONS(5), }, [461] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7094), - [sym_string] = STATE(2541), [sym_comment] = STATE(461), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_global] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2210), + [sym__ternary_qmark] = ACTIONS(2210), [sym_html_comment] = ACTIONS(5), }, [462] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2109), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2109), - [sym_subscript_expression] = STATE(2109), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(5744), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), [sym_comment] = STATE(462), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2109), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2461), - [anon_sym_export] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2463), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2481), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_readonly] = ACTIONS(2463), - [anon_sym_get] = ACTIONS(2463), - [anon_sym_set] = ACTIONS(2463), - [anon_sym_declare] = ACTIONS(2463), - [anon_sym_public] = ACTIONS(2463), - [anon_sym_private] = ACTIONS(2463), - [anon_sym_protected] = ACTIONS(2463), - [anon_sym_override] = ACTIONS(2463), - [anon_sym_module] = ACTIONS(2463), - [anon_sym_any] = ACTIONS(2463), - [anon_sym_number] = ACTIONS(2463), - [anon_sym_boolean] = ACTIONS(2463), - [anon_sym_string] = ACTIONS(2463), - [anon_sym_symbol] = ACTIONS(2463), - [anon_sym_object] = ACTIONS(2463), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_as] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_COMMA] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_debugger] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LTtemplate_GT] = ACTIONS(2110), + [anon_sym_GT] = ACTIONS(2112), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_QMARK_DOT] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2112), + [anon_sym_PIPE_PIPE] = ACTIONS(2112), + [anon_sym_GT_GT] = ACTIONS(2112), + [anon_sym_GT_GT_GT] = ACTIONS(2112), + [anon_sym_LT_LT] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_CARET] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_PERCENT] = ACTIONS(2112), + [anon_sym_STAR_STAR] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_LT_EQ] = ACTIONS(2112), + [anon_sym_EQ_EQ] = ACTIONS(2112), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2112), + [anon_sym_GT_EQ] = ACTIONS(2112), + [anon_sym_QMARK_QMARK] = ACTIONS(2112), + [anon_sym_instanceof] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2110), + [anon_sym_delete] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_private_property_identifier] = ACTIONS(2110), + [sym_this] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_true] = ACTIONS(2110), + [sym_false] = ACTIONS(2110), + [sym_null] = ACTIONS(2110), + [sym_undefined] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_global] = ACTIONS(2110), + [anon_sym_satisfies] = ACTIONS(2112), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [sym__automatic_semicolon] = ACTIONS(2492), + [sym__ternary_qmark] = ACTIONS(2116), [sym_html_comment] = ACTIONS(5), }, [463] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2646), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7248), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7448), + [sym_string] = STATE(2506), [sym_comment] = STATE(463), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(2494), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [464] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2651), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7172), - [sym_string] = STATE(2541), [sym_comment] = STATE(464), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2485), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_QMARK_DOT] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_satisfies] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [sym__automatic_semicolon] = ACTIONS(2288), + [sym__ternary_qmark] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [465] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2618), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7378), - [sym_string] = STATE(2541), [sym_comment] = STATE(465), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_QMARK_DOT] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_global] = ACTIONS(2222), + [anon_sym_satisfies] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2496), + [sym__ternary_qmark] = ACTIONS(2228), [sym_html_comment] = ACTIONS(5), }, [466] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7270), - [sym_string] = STATE(2541), [sym_comment] = STATE(466), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2489), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [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_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [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_QMARK] = ACTIONS(221), + [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_global] = ACTIONS(2462), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [467] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7225), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7109), + [sym_string] = STATE(2506), [sym_comment] = STATE(467), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [468] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3051), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(468), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(2491), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(2498), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -92262,10 +93117,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -92287,3290 +93142,3461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [469] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6600), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2427), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3193), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(469), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [470] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3056), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2909), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7146), + [sym_string] = STATE(2506), [sym_comment] = STATE(470), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [471] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3013), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2908), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(2506), [sym_comment] = STATE(471), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [472] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2579), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7266), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2642), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7094), + [sym_string] = STATE(2506), [sym_comment] = STATE(472), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [473] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3060), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2907), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2486), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3249), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(473), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [474] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7355), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3074), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(474), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [475] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3060), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3140), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(475), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [476] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7280), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3191), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(476), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [477] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2554), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3250), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2682), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7144), + [sym_string] = STATE(2506), [sym_comment] = STATE(477), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [478] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2487), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3249), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2727), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(478), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [479] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3245), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7066), + [sym_string] = STATE(2506), [sym_comment] = STATE(479), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [480] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2306), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2804), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(480), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [481] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3081), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2891), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7067), + [sym_string] = STATE(2506), [sym_comment] = STATE(481), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [482] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2616), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7051), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2924), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(482), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [483] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3013), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3194), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(483), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [484] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7427), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7114), + [sym_string] = STATE(2506), [sym_comment] = STATE(484), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [485] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2432), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2841), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7068), + [sym_string] = STATE(2506), [sym_comment] = STATE(485), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [486] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2844), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2443), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(486), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [487] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3077), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2486), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2928), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(487), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [488] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2432), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3035), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2486), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2829), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(488), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [489] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2487), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3078), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(2991), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(489), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [sym_html_comment] = ACTIONS(5), - }, - [490] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2554), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3079), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(490), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [sym_html_comment] = ACTIONS(5), - }, - [491] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3056), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2459), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(491), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(492), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym__extends_clause_single] = STATE(5491), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [490] = { + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2427), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(490), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [491] = { + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(491), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [492] = { + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2427), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(492), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [493] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7269), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(493), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [494] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7140), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7150), + [sym_string] = STATE(2506), [sym_comment] = STATE(494), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [495] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2432), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(2991), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2791), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(495), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [496] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2479), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2427), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2623), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(496), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [497] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2487), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2846), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2486), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2624), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(497), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [498] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2554), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2847), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2443), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(498), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [499] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3056), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2501), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(499), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(2491), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1619), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [500] = { + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(500), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(2498), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -95579,10 +96605,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -95604,294 +96630,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [500] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3036), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(500), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_mapped_type_clause] = STATE(7291), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2499), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2499), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2503), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_readonly] = ACTIONS(2499), - [anon_sym_get] = ACTIONS(2499), - [anon_sym_set] = ACTIONS(2499), - [anon_sym_declare] = ACTIONS(2499), - [anon_sym_public] = ACTIONS(2499), - [anon_sym_private] = ACTIONS(2499), - [anon_sym_protected] = ACTIONS(2499), - [anon_sym_override] = ACTIONS(2499), - [anon_sym_module] = ACTIONS(2499), - [anon_sym_any] = ACTIONS(2499), - [anon_sym_number] = ACTIONS(2499), - [anon_sym_boolean] = ACTIONS(2499), - [anon_sym_string] = ACTIONS(2499), - [anon_sym_symbol] = ACTIONS(2499), - [anon_sym_object] = ACTIONS(2499), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [501] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2432), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(501), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [sym_html_comment] = ACTIONS(5), - }, - [502] = { - [sym_import] = STATE(4218), + [sym_import] = STATE(4235), [sym_statement_block] = STATE(3013), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(502), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(2491), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(501), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(2498), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -95900,10 +96714,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -95925,936 +96739,1281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [502] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7053), + [sym_string] = STATE(2506), + [sym_comment] = STATE(502), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [503] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3103), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7015), + [sym_string] = STATE(2506), [sym_comment] = STATE(503), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [504] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3051), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2674), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7098), + [sym_string] = STATE(2506), [sym_comment] = STATE(504), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [505] = { + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3184), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2703), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(505), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [sym_html_comment] = ACTIONS(5), - }, - [505] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7332), - [sym_string] = STATE(2541), - [sym_comment] = STATE(505), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [506] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2801), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6511), + [sym_string] = STATE(2944), [sym_comment] = STATE(506), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [507] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2479), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2824), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3013), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2569), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(507), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [508] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3081), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(508), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [508] = { + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2427), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(508), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [509] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2479), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2237), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2486), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(509), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [510] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7377), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(510), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [511] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3060), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3127), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(511), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(2491), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [512] = { + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2391), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3220), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(512), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [513] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6608), + [sym_string] = STATE(2944), + [sym_comment] = STATE(513), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -96863,10 +98022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -96888,722 +98047,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [512] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3170), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(512), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [sym_html_comment] = ACTIONS(5), - }, - [513] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2292), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7285), - [sym_string] = STATE(2541), - [sym_comment] = STATE(513), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [514] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7158), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3184), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(514), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1619), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [515] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7160), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6928), + [sym_string] = STATE(2944), [sym_comment] = STATE(515), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [516] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7336), - [sym_string] = STATE(2541), - [sym_comment] = STATE(516), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [517] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7033), - [sym_string] = STATE(2541), - [sym_comment] = STATE(517), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [518] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2568), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6580), - [sym_string] = STATE(2924), - [sym_comment] = STATE(518), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -97612,10 +98240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -97637,2113 +98265,2153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [516] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2314), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7393), + [sym_string] = STATE(2506), + [sym_comment] = STATE(516), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [517] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2369), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7300), + [sym_string] = STATE(2506), + [sym_comment] = STATE(517), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [518] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2235), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7193), + [sym_string] = STATE(2506), + [sym_comment] = STATE(518), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [519] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2268), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7437), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(2991), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2408), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(519), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1619), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [520] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2554), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3181), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3080), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(520), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_mapped_type_clause] = STATE(7028), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2504), + [anon_sym_export] = ACTIONS(2506), + [anon_sym_type] = ACTIONS(2506), + [anon_sym_namespace] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2510), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2506), + [anon_sym_get] = ACTIONS(2506), + [anon_sym_set] = ACTIONS(2506), + [anon_sym_declare] = ACTIONS(2506), + [anon_sym_public] = ACTIONS(2506), + [anon_sym_private] = ACTIONS(2506), + [anon_sym_protected] = ACTIONS(2506), + [anon_sym_override] = ACTIONS(2506), + [anon_sym_module] = ACTIONS(2506), + [anon_sym_any] = ACTIONS(2506), + [anon_sym_number] = ACTIONS(2506), + [anon_sym_boolean] = ACTIONS(2506), + [anon_sym_string] = ACTIONS(2506), + [anon_sym_symbol] = ACTIONS(2506), + [anon_sym_object] = ACTIONS(2506), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [521] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2487), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3176), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2443), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3259), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(521), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [522] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2432), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2277), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2427), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(522), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [523] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3174), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2687), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(523), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), - [sym_html_comment] = ACTIONS(5), - }, - [524] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2479), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3200), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(524), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [sym_html_comment] = ACTIONS(5), - }, - [525] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3051), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2862), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(525), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6954), - [sym_string] = STATE(2924), - [sym_comment] = STATE(526), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [524] = { + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2563), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(524), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(95), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [525] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(525), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym__extends_clause_single] = STATE(5593), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [526] = { + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2254), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(526), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [527] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(3081), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3013), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2686), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(527), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [528] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(2919), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2391), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2755), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(528), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [529] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6706), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2443), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2876), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(529), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [530] = { + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2801), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(530), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [530] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3036), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(530), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_mapped_type_clause] = STATE(7145), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2507), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_readonly] = ACTIONS(2509), - [anon_sym_get] = ACTIONS(2509), - [anon_sym_set] = ACTIONS(2509), - [anon_sym_declare] = ACTIONS(2509), - [anon_sym_public] = ACTIONS(2509), - [anon_sym_private] = ACTIONS(2509), - [anon_sym_protected] = ACTIONS(2509), - [anon_sym_override] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_any] = ACTIONS(2509), - [anon_sym_number] = ACTIONS(2509), - [anon_sym_boolean] = ACTIONS(2509), - [anon_sym_string] = ACTIONS(2509), - [anon_sym_symbol] = ACTIONS(2509), - [anon_sym_object] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [531] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2432), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3172), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2443), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(531), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [532] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7309), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3140), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2881), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(532), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [533] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7153), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2252), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(533), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [534] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2554), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2486), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2251), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(534), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [535] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6940), + [sym_string] = STATE(2944), [sym_comment] = STATE(535), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [sym_html_comment] = ACTIONS(5), - }, - [536] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2487), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2594), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(536), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [sym_html_comment] = ACTIONS(5), - }, - [537] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3198), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(537), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [sym_html_comment] = ACTIONS(5), - }, - [538] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_sequence_expression] = STATE(6498), - [sym_string] = STATE(2924), - [sym_comment] = STATE(538), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -99752,10 +100420,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -99777,187 +100445,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [536] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3080), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(536), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_mapped_type_clause] = STATE(7034), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2514), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [537] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7184), + [sym_string] = STATE(2506), + [sym_comment] = STATE(537), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [538] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2318), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7107), + [sym_string] = STATE(2506), + [sym_comment] = STATE(538), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [539] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(2919), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2833), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3140), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2564), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(539), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [540] = { - [sym_import] = STATE(4218), - [sym_statement_block] = STATE(2919), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(6739), + [sym_string] = STATE(2944), [sym_comment] = STATE(540), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(2491), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -99966,10 +100965,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -99991,1042 +100990,1386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2391), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2587), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(541), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [542] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2391), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(542), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym__extends_clause_single] = STATE(6189), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [543] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7242), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7180), + [sym_string] = STATE(2506), [sym_comment] = STATE(543), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [544] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2479), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3121), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2391), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3073), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(544), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [545] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2669), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_sequence_expression] = STATE(7267), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(545), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym__extends_clause_single] = STATE(5818), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [546] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2479), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2920), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_statement_block] = STATE(3184), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(546), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [547] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2293), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_sequence_expression] = STATE(7159), + [sym_string] = STATE(2506), [sym_comment] = STATE(547), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [548] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2487), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2297), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2391), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(548), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [549] = { - [sym_import] = STATE(4272), - [sym_statement_block] = STATE(2554), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2301), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_statement_block] = STATE(2443), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3183), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(549), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2515), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(3058), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(550), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [551] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3190), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(551), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [552] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(552), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2524), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [553] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(553), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101035,10 +102378,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -101060,927 +102403,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [551] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(551), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [554] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(554), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(552), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [555] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2521), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(555), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [553] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2142), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2142), - [sym_subscript_expression] = STATE(2142), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7254), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(553), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2142), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2517), - [anon_sym_export] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2519), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2527), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_readonly] = ACTIONS(2519), - [anon_sym_get] = ACTIONS(2519), - [anon_sym_set] = ACTIONS(2519), - [anon_sym_declare] = ACTIONS(2519), - [anon_sym_public] = ACTIONS(2519), - [anon_sym_private] = ACTIONS(2519), - [anon_sym_protected] = ACTIONS(2519), - [anon_sym_override] = ACTIONS(2519), - [anon_sym_module] = ACTIONS(2519), - [anon_sym_any] = ACTIONS(2519), - [anon_sym_number] = ACTIONS(2519), - [anon_sym_boolean] = ACTIONS(2519), - [anon_sym_string] = ACTIONS(2519), - [anon_sym_symbol] = ACTIONS(2519), - [anon_sym_object] = ACTIONS(2519), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2852), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(554), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [556] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(556), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_number] = ACTIONS(2526), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(555), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [557] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2556), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(557), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [556] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2143), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2143), - [sym_subscript_expression] = STATE(2143), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7373), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(556), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2143), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2529), - [anon_sym_export] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2531), - [anon_sym_namespace] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2535), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2537), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2539), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2531), - [anon_sym_readonly] = ACTIONS(2531), - [anon_sym_get] = ACTIONS(2531), - [anon_sym_set] = ACTIONS(2531), - [anon_sym_declare] = ACTIONS(2531), - [anon_sym_public] = ACTIONS(2531), - [anon_sym_private] = ACTIONS(2531), - [anon_sym_protected] = ACTIONS(2531), - [anon_sym_override] = ACTIONS(2531), - [anon_sym_module] = ACTIONS(2531), - [anon_sym_any] = ACTIONS(2531), - [anon_sym_number] = ACTIONS(2531), - [anon_sym_boolean] = ACTIONS(2531), - [anon_sym_string] = ACTIONS(2531), - [anon_sym_symbol] = ACTIONS(2531), - [anon_sym_object] = ACTIONS(2531), - [sym_html_comment] = ACTIONS(5), - }, - [557] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(557), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [558] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3044), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(3001), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(558), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [559] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2552), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(559), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [560] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(560), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101989,10 +103134,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -102014,1245 +103159,1917 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [560] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(560), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [561] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2861), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(561), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [562] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2140), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2140), - [sym_subscript_expression] = STATE(2140), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7221), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(3038), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(562), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2140), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2541), - [anon_sym_export] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2543), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2543), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_readonly] = ACTIONS(2543), - [anon_sym_get] = ACTIONS(2543), - [anon_sym_set] = ACTIONS(2543), - [anon_sym_declare] = ACTIONS(2543), - [anon_sym_public] = ACTIONS(2543), - [anon_sym_private] = ACTIONS(2543), - [anon_sym_protected] = ACTIONS(2543), - [anon_sym_override] = ACTIONS(2543), - [anon_sym_module] = ACTIONS(2543), - [anon_sym_any] = ACTIONS(2543), - [anon_sym_number] = ACTIONS(2543), - [anon_sym_boolean] = ACTIONS(2543), - [anon_sym_string] = ACTIONS(2543), - [anon_sym_symbol] = ACTIONS(2543), - [anon_sym_object] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [563] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2625), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7225), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(563), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2144), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2528), + [anon_sym_export] = ACTIONS(2530), + [anon_sym_type] = ACTIONS(2530), + [anon_sym_namespace] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2534), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2538), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_readonly] = ACTIONS(2530), + [anon_sym_get] = ACTIONS(2530), + [anon_sym_set] = ACTIONS(2530), + [anon_sym_declare] = ACTIONS(2530), + [anon_sym_public] = ACTIONS(2530), + [anon_sym_private] = ACTIONS(2530), + [anon_sym_protected] = ACTIONS(2530), + [anon_sym_override] = ACTIONS(2530), + [anon_sym_module] = ACTIONS(2530), + [anon_sym_any] = ACTIONS(2530), + [anon_sym_number] = ACTIONS(2530), + [anon_sym_boolean] = ACTIONS(2530), + [anon_sym_string] = ACTIONS(2530), + [anon_sym_symbol] = ACTIONS(2530), + [anon_sym_object] = ACTIONS(2530), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [564] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2230), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3257), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(564), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [565] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2863), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2676), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(565), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [566] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2779), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(566), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3054), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(566), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [567] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(567), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2869), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), + [568] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2914), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(568), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [569] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2140), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2140), + [sym_subscript_expression] = STATE(2140), + [sym_assignment_expression] = STATE(2504), [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(567), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7294), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(569), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2140), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2546), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2548), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2550), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_readonly] = ACTIONS(2542), + [anon_sym_get] = ACTIONS(2542), + [anon_sym_set] = ACTIONS(2542), + [anon_sym_declare] = ACTIONS(2542), + [anon_sym_public] = ACTIONS(2542), + [anon_sym_private] = ACTIONS(2542), + [anon_sym_protected] = ACTIONS(2542), + [anon_sym_override] = ACTIONS(2542), + [anon_sym_module] = ACTIONS(2542), + [anon_sym_any] = ACTIONS(2542), + [anon_sym_number] = ACTIONS(2542), + [anon_sym_boolean] = ACTIONS(2542), + [anon_sym_string] = ACTIONS(2542), + [anon_sym_symbol] = ACTIONS(2542), + [anon_sym_object] = ACTIONS(2542), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [570] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2871), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), + [571] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(571), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [572] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2141), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2504), [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(568), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7318), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(572), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2141), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2552), + [anon_sym_export] = ACTIONS(2554), + [anon_sym_type] = ACTIONS(2554), + [anon_sym_namespace] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2558), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2554), + [anon_sym_readonly] = ACTIONS(2554), + [anon_sym_get] = ACTIONS(2554), + [anon_sym_set] = ACTIONS(2554), + [anon_sym_declare] = ACTIONS(2554), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_override] = ACTIONS(2554), + [anon_sym_module] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2554), + [anon_sym_number] = ACTIONS(2554), + [anon_sym_boolean] = ACTIONS(2554), + [anon_sym_string] = ACTIONS(2554), + [anon_sym_symbol] = ACTIONS(2554), + [anon_sym_object] = ACTIONS(2554), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [573] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(573), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3132), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(569), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [574] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3206), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(574), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2553), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7273), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(570), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2144), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2555), - [anon_sym_export] = ACTIONS(2557), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [575] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(575), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2561), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2564), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_readonly] = ACTIONS(2557), - [anon_sym_get] = ACTIONS(2557), - [anon_sym_set] = ACTIONS(2557), - [anon_sym_declare] = ACTIONS(2557), - [anon_sym_public] = ACTIONS(2557), - [anon_sym_private] = ACTIONS(2557), - [anon_sym_protected] = ACTIONS(2557), - [anon_sym_override] = ACTIONS(2557), - [anon_sym_module] = ACTIONS(2557), - [anon_sym_any] = ACTIONS(2557), - [anon_sym_number] = ACTIONS(2557), - [anon_sym_boolean] = ACTIONS(2557), - [anon_sym_string] = ACTIONS(2557), - [anon_sym_symbol] = ACTIONS(2557), - [anon_sym_object] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(571), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [576] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3196), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(576), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [577] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3195), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(577), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [578] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(578), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -103261,10 +105078,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -103286,79 +105103,1809 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(572), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [579] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3192), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(579), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [580] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3198), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(580), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [581] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3200), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(581), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [582] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3248), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(582), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [583] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3205), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(583), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [584] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(584), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [585] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3210), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(585), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [586] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3213), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(586), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [587] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3214), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(587), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [588] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(588), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [589] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3215), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(589), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [590] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(3148), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(590), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [591] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3216), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(591), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [592] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(592), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [593] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2936), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(593), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [594] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3217), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(594), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [595] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2648), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(595), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -103367,10 +106914,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -103392,1987 +106939,1701 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2872), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), + [596] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3219), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(573), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(596), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [597] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3221), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(597), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [598] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(598), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2873), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(574), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [599] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(599), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2874), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), + [600] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2504), [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(575), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(600), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2145), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2566), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_namespace] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2572), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2576), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_readonly] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_declare] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_protected] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_module] = ACTIONS(2568), + [anon_sym_any] = ACTIONS(2568), + [anon_sym_number] = ACTIONS(2568), + [anon_sym_boolean] = ACTIONS(2568), + [anon_sym_string] = ACTIONS(2568), + [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_object] = ACTIONS(2568), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [601] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(601), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2875), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(576), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [602] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(602), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2867), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(577), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [603] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(603), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2578), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2876), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), + [604] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2138), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2138), + [sym_subscript_expression] = STATE(2138), + [sym_assignment_expression] = STATE(2504), [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(578), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7057), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(604), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2138), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2580), + [anon_sym_export] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_namespace] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [sym_html_comment] = ACTIONS(5), - }, - [579] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2866), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(579), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [580] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(580), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [sym_html_comment] = ACTIONS(5), - }, - [581] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3084), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(581), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [sym_html_comment] = ACTIONS(5), - }, - [582] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(582), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [sym_html_comment] = ACTIONS(5), - }, - [583] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2877), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(583), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2590), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_readonly] = ACTIONS(2582), + [anon_sym_get] = ACTIONS(2582), + [anon_sym_set] = ACTIONS(2582), + [anon_sym_declare] = ACTIONS(2582), + [anon_sym_public] = ACTIONS(2582), + [anon_sym_private] = ACTIONS(2582), + [anon_sym_protected] = ACTIONS(2582), + [anon_sym_override] = ACTIONS(2582), + [anon_sym_module] = ACTIONS(2582), + [anon_sym_any] = ACTIONS(2582), + [anon_sym_number] = ACTIONS(2582), + [anon_sym_boolean] = ACTIONS(2582), + [anon_sym_string] = ACTIONS(2582), + [anon_sym_symbol] = ACTIONS(2582), + [anon_sym_object] = ACTIONS(2582), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2878), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(584), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [605] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2390), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(605), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2884), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(585), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [606] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(606), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2889), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(586), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [607] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(607), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2893), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(587), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [608] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(608), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3094), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(588), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [609] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2638), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(609), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2676), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(589), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [610] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(610), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [590] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3036), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(590), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2642), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(591), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [611] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2651), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(611), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -105381,10 +108642,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -105406,2411 +108667,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [592] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2853), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(592), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [593] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3017), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(593), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [594] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2137), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2137), - [sym_subscript_expression] = STATE(2137), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7337), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(594), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2137), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2567), - [anon_sym_export] = ACTIONS(2569), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_readonly] = ACTIONS(2569), - [anon_sym_get] = ACTIONS(2569), - [anon_sym_set] = ACTIONS(2569), - [anon_sym_declare] = ACTIONS(2569), - [anon_sym_public] = ACTIONS(2569), - [anon_sym_private] = ACTIONS(2569), - [anon_sym_protected] = ACTIONS(2569), - [anon_sym_override] = ACTIONS(2569), - [anon_sym_module] = ACTIONS(2569), - [anon_sym_any] = ACTIONS(2569), - [anon_sym_number] = ACTIONS(2569), - [anon_sym_boolean] = ACTIONS(2569), - [anon_sym_string] = ACTIONS(2569), - [anon_sym_symbol] = ACTIONS(2569), - [anon_sym_object] = ACTIONS(2569), + [anon_sym_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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2911), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), + [612] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3222), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(595), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(612), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3072), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(596), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [613] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2640), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(613), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2914), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(597), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [614] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(614), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [sym_html_comment] = ACTIONS(5), - }, - [598] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2294), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(598), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [599] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2866), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(599), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2553), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [600] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2308), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(600), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [601] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(601), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [602] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(602), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2328), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(603), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [604] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2849), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(604), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [605] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2325), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(605), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [606] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(606), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [607] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2848), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(607), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [608] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3007), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(608), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [609] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(609), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [610] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2229), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(610), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(611), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2313), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(612), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2307), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(613), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [615] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(615), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(614), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [616] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(616), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -107819,10 +109182,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -107844,79 +109207,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(615), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [617] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(617), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -107925,10 +109290,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -107950,8029 +109315,8397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [616] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2304), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(616), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2532), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(617), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [618] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(618), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [sym_html_comment] = ACTIONS(5), - }, - [618] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2842), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(618), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [619] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(619), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2579), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [620] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2839), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(620), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [621] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2516), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(621), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [622] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2838), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2518), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(622), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1619), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [623] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2837), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(623), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1619), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [624] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2605), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(624), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2553), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [625] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2044), - [sym_subscript_expression] = STATE(2044), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(5056), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2409), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(625), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2044), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2581), - [anon_sym_export] = ACTIONS(1708), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_namespace] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2585), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_readonly] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_declare] = ACTIONS(1708), - [anon_sym_public] = ACTIONS(1708), - [anon_sym_private] = ACTIONS(1708), - [anon_sym_protected] = ACTIONS(1708), - [anon_sym_override] = ACTIONS(1708), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_any] = ACTIONS(1708), - [anon_sym_number] = ACTIONS(1708), - [anon_sym_boolean] = ACTIONS(1708), - [anon_sym_string] = ACTIONS(1708), - [anon_sym_symbol] = ACTIONS(1708), - [anon_sym_object] = ACTIONS(1708), - [sym_html_comment] = ACTIONS(5), - }, - [626] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2684), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(626), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(627), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [626] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2963), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(626), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2587), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2572), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(628), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [627] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(627), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [sym_html_comment] = ACTIONS(5), - }, - [629] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2836), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(629), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2835), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(630), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [628] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3256), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(628), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(631), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [629] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(629), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [sym_html_comment] = ACTIONS(5), - }, - [632] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2834), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(632), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3105), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(633), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [630] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(5000), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(630), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_namespace] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1721), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2596), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1715), + [anon_sym_readonly] = ACTIONS(1715), + [anon_sym_get] = ACTIONS(1715), + [anon_sym_set] = ACTIONS(1715), + [anon_sym_declare] = ACTIONS(1715), + [anon_sym_public] = ACTIONS(1715), + [anon_sym_private] = ACTIONS(1715), + [anon_sym_protected] = ACTIONS(1715), + [anon_sym_override] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_any] = ACTIONS(1715), + [anon_sym_number] = ACTIONS(1715), + [anon_sym_boolean] = ACTIONS(1715), + [anon_sym_string] = ACTIONS(1715), + [anon_sym_symbol] = ACTIONS(1715), + [anon_sym_object] = ACTIONS(1715), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(634), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [631] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(631), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(635), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [632] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2793), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(632), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [633] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2790), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(633), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [634] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3101), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(634), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [635] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2698), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(635), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [636] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1944), + [sym_subscript_expression] = STATE(1944), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(4514), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(636), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1944), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2598), + [anon_sym_export] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_namespace] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1931), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2604), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2608), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_readonly] = ACTIONS(2600), + [anon_sym_get] = ACTIONS(2600), + [anon_sym_set] = ACTIONS(2600), + [anon_sym_declare] = ACTIONS(2600), + [anon_sym_public] = ACTIONS(2600), + [anon_sym_private] = ACTIONS(2600), + [anon_sym_protected] = ACTIONS(2600), + [anon_sym_override] = ACTIONS(2600), + [anon_sym_module] = ACTIONS(2600), + [anon_sym_any] = ACTIONS(2600), + [anon_sym_number] = ACTIONS(2600), + [anon_sym_boolean] = ACTIONS(2600), + [anon_sym_string] = ACTIONS(2600), + [anon_sym_symbol] = ACTIONS(2600), + [anon_sym_object] = ACTIONS(2600), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [637] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2831), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(637), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2524), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [638] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2830), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2666), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(638), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [639] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2829), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(3056), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(639), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [640] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2525), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(640), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [641] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2828), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(641), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2564), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [642] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2137), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2137), + [sym_subscript_expression] = STATE(2137), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7341), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(642), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2137), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2610), + [anon_sym_export] = ACTIONS(2612), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_namespace] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2616), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2618), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2620), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_readonly] = ACTIONS(2612), + [anon_sym_get] = ACTIONS(2612), + [anon_sym_set] = ACTIONS(2612), + [anon_sym_declare] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_protected] = ACTIONS(2612), + [anon_sym_override] = ACTIONS(2612), + [anon_sym_module] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2612), + [anon_sym_number] = ACTIONS(2612), + [anon_sym_boolean] = ACTIONS(2612), + [anon_sym_string] = ACTIONS(2612), + [anon_sym_symbol] = ACTIONS(2612), + [anon_sym_object] = ACTIONS(2612), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [643] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2827), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2750), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(643), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [644] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2271), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(644), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [645] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(645), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [646] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2303), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(646), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [647] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2141), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7295), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(647), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2141), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2589), - [anon_sym_export] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2595), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2599), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_readonly] = ACTIONS(2591), - [anon_sym_get] = ACTIONS(2591), - [anon_sym_set] = ACTIONS(2591), - [anon_sym_declare] = ACTIONS(2591), - [anon_sym_public] = ACTIONS(2591), - [anon_sym_private] = ACTIONS(2591), - [anon_sym_protected] = ACTIONS(2591), - [anon_sym_override] = ACTIONS(2591), - [anon_sym_module] = ACTIONS(2591), - [anon_sym_any] = ACTIONS(2591), - [anon_sym_number] = ACTIONS(2591), - [anon_sym_boolean] = ACTIONS(2591), - [anon_sym_string] = ACTIONS(2591), - [anon_sym_symbol] = ACTIONS(2591), - [anon_sym_object] = ACTIONS(2591), - [sym_html_comment] = ACTIONS(5), - }, - [648] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(648), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [649] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(649), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_number] = ACTIONS(2526), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2823), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(650), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [648] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2939), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(648), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2659), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(651), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [649] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2691), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(649), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [652] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(652), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [650] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2839), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(650), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [651] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(1891), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(1891), + [sym_subscript_expression] = STATE(1891), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7129), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(651), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(1891), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_namespace] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2622), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_get] = ACTIONS(1104), + [anon_sym_set] = ACTIONS(1104), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), + [anon_sym_object] = ACTIONS(1104), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [652] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3109), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(652), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [653] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7010), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2256), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(653), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2145), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2601), - [anon_sym_export] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2603), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_readonly] = ACTIONS(2603), - [anon_sym_get] = ACTIONS(2603), - [anon_sym_set] = ACTIONS(2603), - [anon_sym_declare] = ACTIONS(2603), - [anon_sym_public] = ACTIONS(2603), - [anon_sym_private] = ACTIONS(2603), - [anon_sym_protected] = ACTIONS(2603), - [anon_sym_override] = ACTIONS(2603), - [anon_sym_module] = ACTIONS(2603), - [anon_sym_any] = ACTIONS(2603), - [anon_sym_number] = ACTIONS(2603), - [anon_sym_boolean] = ACTIONS(2603), - [anon_sym_string] = ACTIONS(2603), - [anon_sym_symbol] = ACTIONS(2603), - [anon_sym_object] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [654] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2671), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(654), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [655] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2822), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(655), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [656] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2588), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(656), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [657] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(3118), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(657), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [658] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2846), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(658), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [659] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2481), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2814), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(659), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [660] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2470), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(660), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [661] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(661), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2622), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [662] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3129), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(662), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(663), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2820), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2585), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(664), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3124), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(665), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2553), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [666] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3138), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2460), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(666), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [667] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2582), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(667), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2613), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(668), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2937), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(669), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2564), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3157), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(670), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2564), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2662), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2635), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(671), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3125), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(672), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3173), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(673), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [674] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3169), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(674), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [675] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3168), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2615), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(675), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [676] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(4592), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2244), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(676), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2613), - [anon_sym_export] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2619), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_readonly] = ACTIONS(2615), - [anon_sym_get] = ACTIONS(2615), - [anon_sym_set] = ACTIONS(2615), - [anon_sym_declare] = ACTIONS(2615), - [anon_sym_public] = ACTIONS(2615), - [anon_sym_private] = ACTIONS(2615), - [anon_sym_protected] = ACTIONS(2615), - [anon_sym_override] = ACTIONS(2615), - [anon_sym_module] = ACTIONS(2615), - [anon_sym_any] = ACTIONS(2615), - [anon_sym_number] = ACTIONS(2615), - [anon_sym_boolean] = ACTIONS(2615), - [anon_sym_string] = ACTIONS(2615), - [anon_sym_symbol] = ACTIONS(2615), - [anon_sym_object] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [677] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3137), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2927), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(677), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [678] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3226), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2922), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(678), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2314), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2243), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(679), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3196), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(680), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [681] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3156), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(681), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [682] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3161), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2646), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(682), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [683] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3160), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(683), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [684] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3159), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(684), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [685] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(685), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2625), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [686] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3158), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2618), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(686), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [687] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3151), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2619), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(687), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [688] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2238), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(688), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [689] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3148), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2621), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(689), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [690] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3146), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2937), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(690), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [691] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2622), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(691), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [692] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(692), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [693] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2828), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(693), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [694] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2860), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(694), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [695] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2578), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(695), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -115981,10 +117714,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -116006,397 +117739,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [692] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3125), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(692), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), - [sym_html_comment] = ACTIONS(5), - }, - [693] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3046), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(693), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), - [sym_html_comment] = ACTIONS(5), - }, - [694] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(694), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2579), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [695] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(695), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [696] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(696), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -116405,10 +117822,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -116421,7 +117838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [sym_number] = ACTIONS(2526), [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), @@ -116430,3471 +117847,3105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [696] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2305), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(696), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [697] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3111), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(697), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3109), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2864), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(698), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3034), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2935), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(699), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [700] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3087), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3080), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(700), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [701] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3090), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2702), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(701), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [702] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2706), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(702), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2553), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [703] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2928), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2707), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(703), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2626), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(704), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [705] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2933), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2870), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(705), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [706] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2937), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2234), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(706), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2139), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2139), - [sym_subscript_expression] = STATE(2139), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7123), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2142), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2142), + [sym_subscript_expression] = STATE(2142), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7014), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(707), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2139), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2627), - [anon_sym_export] = ACTIONS(2629), - [anon_sym_type] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2142), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2624), + [anon_sym_export] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2633), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2634), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_readonly] = ACTIONS(2629), - [anon_sym_get] = ACTIONS(2629), - [anon_sym_set] = ACTIONS(2629), - [anon_sym_declare] = ACTIONS(2629), - [anon_sym_public] = ACTIONS(2629), - [anon_sym_private] = ACTIONS(2629), - [anon_sym_protected] = ACTIONS(2629), - [anon_sym_override] = ACTIONS(2629), - [anon_sym_module] = ACTIONS(2629), - [anon_sym_any] = ACTIONS(2629), - [anon_sym_number] = ACTIONS(2629), - [anon_sym_boolean] = ACTIONS(2629), - [anon_sym_string] = ACTIONS(2629), - [anon_sym_symbol] = ACTIONS(2629), - [anon_sym_object] = ACTIONS(2629), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_readonly] = ACTIONS(2626), + [anon_sym_get] = ACTIONS(2626), + [anon_sym_set] = ACTIONS(2626), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + [anon_sym_object] = ACTIONS(2626), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [708] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3133), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(708), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [709] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2944), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2871), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(709), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [710] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2879), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(710), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [711] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2948), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2231), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(711), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [712] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2713), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(712), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [713] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2960), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(713), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [714] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3086), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(714), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [715] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2962), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2907), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(715), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [716] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2685), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(716), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2639), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [sym_html_comment] = ACTIONS(5), - }, - [717] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(717), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [717] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2892), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(717), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [718] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2974), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2309), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(718), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [719] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3197), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(719), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [720] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3179), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(720), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [721] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2607), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2866), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(721), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [722] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2606), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2282), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(722), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [723] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2998), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2865), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(723), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [724] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2652), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(724), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [725] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3067), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(725), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [sym_html_comment] = ACTIONS(5), - }, - [726] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3199), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(726), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [sym_html_comment] = ACTIONS(5), - }, - [727] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3201), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(727), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [sym_html_comment] = ACTIONS(5), - }, - [728] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(728), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -119903,10 +120954,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -119928,79 +120979,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [729] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(729), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [726] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3002), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(726), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [727] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(727), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -120009,10 +121170,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -120034,3259 +121195,2889 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [728] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3005), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(728), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [729] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3009), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(729), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [730] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2802), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(730), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [731] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3018), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(731), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [732] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3202), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3019), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(732), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [733] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3208), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3022), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(733), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [734] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3227), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3024), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(734), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [735] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3218), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3029), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(735), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [736] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2633), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2716), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(736), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [737] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3221), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(737), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [738] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2138), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2138), - [sym_subscript_expression] = STATE(2138), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7106), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2717), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(738), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2138), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(2641), - [anon_sym_export] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2647), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_readonly] = ACTIONS(2643), - [anon_sym_get] = ACTIONS(2643), - [anon_sym_set] = ACTIONS(2643), - [anon_sym_declare] = ACTIONS(2643), - [anon_sym_public] = ACTIONS(2643), - [anon_sym_private] = ACTIONS(2643), - [anon_sym_protected] = ACTIONS(2643), - [anon_sym_override] = ACTIONS(2643), - [anon_sym_module] = ACTIONS(2643), - [anon_sym_any] = ACTIONS(2643), - [anon_sym_number] = ACTIONS(2643), - [anon_sym_boolean] = ACTIONS(2643), - [anon_sym_string] = ACTIONS(2643), - [anon_sym_symbol] = ACTIONS(2643), - [anon_sym_object] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [739] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3222), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(739), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [740] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2350), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3135), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(740), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [741] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3224), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(741), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [742] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3203), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2719), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(742), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [743] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(743), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [744] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3228), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3052), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(744), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [745] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(745), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2587), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [746] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3187), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(746), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [747] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2235), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3162), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(747), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [748] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3229), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(748), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [749] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2724), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(749), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [750] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2034), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7386), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3697), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7385), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(750), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2034), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1601), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1196), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_delete] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), + [sym_private_property_identifier] = ACTIONS(1619), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1755), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [751] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3137), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(751), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [752] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2588), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2303), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(752), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [753] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2589), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2736), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(753), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [sym_html_comment] = ACTIONS(5), - }, - [754] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3233), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(754), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [sym_html_comment] = ACTIONS(5), - }, - [755] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2228), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(755), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [756] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2832), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(756), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [757] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2040), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7030), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3734), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7034), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(757), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2040), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_delete] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2579), - [sym_private_property_identifier] = ACTIONS(1588), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [sym_html_comment] = ACTIONS(5), - }, - [758] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(3059), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(758), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), - [sym_html_comment] = ACTIONS(5), - }, - [759] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2840), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(759), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [760] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2626), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(760), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [754] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(754), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -123295,10 +124086,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -123320,291 +124111,1485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [755] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3143), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(755), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [756] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3145), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(756), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [757] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2229), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(757), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [758] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3081), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(758), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [759] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(3066), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(759), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [760] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(760), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [761] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2390), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3157), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(761), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [762] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2076), - [sym_expression] = STATE(2955), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(6998), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7261), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(762), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1424), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_object] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [763] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3159), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(763), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [764] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3116), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(764), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [765] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3160), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(765), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [766] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2751), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(766), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [767] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2690), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(767), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [768] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(768), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -123613,10 +125598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -123638,185 +125623,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [764] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(764), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [765] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2540), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(765), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [769] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(769), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -123825,10 +125706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -123850,715 +125731,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [766] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2128), - [sym_expression] = STATE(3110), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7325), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2128), - [sym_subscript_expression] = STATE(2128), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3765), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7384), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(766), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2128), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1460), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(1436), - [anon_sym_set] = ACTIONS(1436), - [anon_sym_declare] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_protected] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), - [sym_html_comment] = ACTIONS(5), - }, - [767] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2601), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(767), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [sym_html_comment] = ACTIONS(5), - }, - [768] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2604), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(768), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [sym_html_comment] = ACTIONS(5), - }, - [769] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3251), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(769), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [770] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2788), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(770), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1661), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [771] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3252), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(771), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2564), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [772] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2553), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(772), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -124567,10 +126030,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -124592,79 +126055,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [773] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2559), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(773), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -124673,10 +126138,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -124698,185 +126163,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [774] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2811), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(774), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [775] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2564), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(775), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -124885,10 +126354,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -124910,185 +126379,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [776] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(776), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2553), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), - [sym_html_comment] = ACTIONS(5), - }, - [777] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2569), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(777), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -125097,10 +126462,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -125122,291 +126487,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [777] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2861), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(777), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [778] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2609), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2688), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(778), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [779] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2716), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(779), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [780] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2573), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(780), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -125415,10 +126894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -125440,79 +126919,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [781] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2576), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2361), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(781), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [782] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2659), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(782), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -125521,10 +127110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -125546,715 +127135,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(782), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [783] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2713), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3084), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(783), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [784] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2711), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(784), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [785] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2610), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(785), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [sym_html_comment] = ACTIONS(5), - }, - [786] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2075), - [sym_expression] = STATE(2720), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7197), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2075), - [sym_subscript_expression] = STATE(2075), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3761), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7199), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(786), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2075), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_typeof] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1494), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_get] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_declare] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_any] = ACTIONS(1486), - [anon_sym_number] = ACTIONS(1486), - [anon_sym_boolean] = ACTIONS(1486), - [anon_sym_string] = ACTIONS(1486), - [anon_sym_symbol] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [787] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(787), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [785] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2845), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(785), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, - [788] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(788), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [786] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2019), + [sym_expression] = STATE(2843), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7133), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2019), + [sym_subscript_expression] = STATE(2019), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3785), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7062), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(786), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2019), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(975), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_void] = ACTIONS(975), + [anon_sym_delete] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(999), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1001), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_declare] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_private] = ACTIONS(1413), + [anon_sym_protected] = ACTIONS(1413), + [anon_sym_override] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_number] = ACTIONS(1413), + [anon_sym_boolean] = ACTIONS(1413), + [anon_sym_string] = ACTIONS(1413), + [anon_sym_symbol] = ACTIONS(1413), + [anon_sym_object] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [787] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2542), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(787), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -126263,10 +127650,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -126288,185 +127675,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), - [sym_html_comment] = ACTIONS(5), - }, - [789] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(789), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [790] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2558), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(790), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [788] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(788), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -126475,10 +127758,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -126500,1245 +127783,1269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [789] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(789), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), + [sym_html_comment] = ACTIONS(5), + }, + [790] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(3167), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(790), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [791] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2665), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3114), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(791), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [792] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(792), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [793] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3139), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2905), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7002), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7265), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(793), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2078), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_delete] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1551), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1771), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_readonly] = ACTIONS(1527), + [anon_sym_get] = ACTIONS(1527), + [anon_sym_set] = ACTIONS(1527), + [anon_sym_declare] = ACTIONS(1527), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_override] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_any] = ACTIONS(1527), + [anon_sym_number] = ACTIONS(1527), + [anon_sym_boolean] = ACTIONS(1527), + [anon_sym_string] = ACTIONS(1527), + [anon_sym_symbol] = ACTIONS(1527), + [anon_sym_object] = ACTIONS(1527), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [794] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2632), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2143), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2143), + [sym_subscript_expression] = STATE(2143), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7450), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(794), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2143), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2636), + [anon_sym_export] = ACTIONS(2638), + [anon_sym_type] = ACTIONS(2638), + [anon_sym_namespace] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2646), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_readonly] = ACTIONS(2638), + [anon_sym_get] = ACTIONS(2638), + [anon_sym_set] = ACTIONS(2638), + [anon_sym_declare] = ACTIONS(2638), + [anon_sym_public] = ACTIONS(2638), + [anon_sym_private] = ACTIONS(2638), + [anon_sym_protected] = ACTIONS(2638), + [anon_sym_override] = ACTIONS(2638), + [anon_sym_module] = ACTIONS(2638), + [anon_sym_any] = ACTIONS(2638), + [anon_sym_number] = ACTIONS(2638), + [anon_sym_boolean] = ACTIONS(2638), + [anon_sym_string] = ACTIONS(2638), + [anon_sym_symbol] = ACTIONS(2638), + [anon_sym_object] = ACTIONS(2638), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [795] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2667), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(795), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [796] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2640), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(796), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [797] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(1897), - [sym_expression] = STATE(3231), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7116), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(1897), - [sym_subscript_expression] = STATE(1897), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3683), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7302), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2123), + [sym_expression] = STATE(2932), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7302), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2123), + [sym_subscript_expression] = STATE(2123), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3774), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7301), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(797), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(1897), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1117), - [anon_sym_export] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(175), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2123), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(175), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(186), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1585), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1787), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_readonly] = ACTIONS(1119), - [anon_sym_get] = ACTIONS(1119), - [anon_sym_set] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1119), - [anon_sym_public] = ACTIONS(1119), - [anon_sym_private] = ACTIONS(1119), - [anon_sym_protected] = ACTIONS(1119), - [anon_sym_override] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1119), - [anon_sym_any] = ACTIONS(1119), - [anon_sym_number] = ACTIONS(1119), - [anon_sym_boolean] = ACTIONS(1119), - [anon_sym_string] = ACTIONS(1119), - [anon_sym_symbol] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_private] = ACTIONS(1561), + [anon_sym_protected] = ACTIONS(1561), + [anon_sym_override] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_number] = ACTIONS(1561), + [anon_sym_boolean] = ACTIONS(1561), + [anon_sym_string] = ACTIONS(1561), + [anon_sym_symbol] = ACTIONS(1561), + [anon_sym_object] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [798] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3166), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(798), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [799] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3176), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(799), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2639), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [800] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2051), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7423), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2051), - [sym_subscript_expression] = STATE(2051), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3726), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7003), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2565), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(800), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2051), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1638), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1656), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_readonly] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(1632), - [anon_sym_set] = ACTIONS(1632), - [anon_sym_declare] = ACTIONS(1632), - [anon_sym_public] = ACTIONS(1632), - [anon_sym_private] = ACTIONS(1632), - [anon_sym_protected] = ACTIONS(1632), - [anon_sym_override] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_number] = ACTIONS(1632), - [anon_sym_boolean] = ACTIONS(1632), - [anon_sym_string] = ACTIONS(1632), - [anon_sym_symbol] = ACTIONS(1632), - [anon_sym_object] = ACTIONS(1632), - [sym_html_comment] = ACTIONS(5), - }, - [801] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3135), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), - [sym_comment] = STATE(801), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [sym_html_comment] = ACTIONS(5), - }, - [802] = { - [sym_import] = STATE(4218), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(2715), - [sym_yield_expression] = STATE(3004), - [sym_object] = STATE(2924), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2924), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(3004), - [sym_glimmer_opening_tag] = STATE(5607), - [sym_jsx_element] = STATE(3004), - [sym_jsx_opening_element] = STATE(3854), - [sym_jsx_self_closing_element] = STATE(3004), - [sym_class] = STATE(2924), - [sym_function_expression] = STATE(2924), - [sym_generator_function] = STATE(2924), - [sym_arrow_function] = STATE(2924), - [sym__call_signature] = STATE(7382), - [sym_call_expression] = STATE(2924), - [sym_new_expression] = STATE(3004), - [sym_await_expression] = STATE(3004), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(3004), - [sym__augmented_assignment_lhs] = STATE(3722), - [sym_augmented_assignment_expression] = STATE(3004), - [sym__destructuring_pattern] = STATE(7381), - [sym_ternary_expression] = STATE(3004), - [sym_binary_expression] = STATE(3004), - [sym_unary_expression] = STATE(3004), - [sym_update_expression] = STATE(3004), - [sym_string] = STATE(2924), - [sym_comment] = STATE(802), - [sym_template_string] = STATE(2924), - [sym_regex] = STATE(2924), - [sym_meta_property] = STATE(2924), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2028), - [sym_as_expression] = STATE(3004), - [sym_satisfies_expression] = STATE(3004), - [sym_instantiation_expression] = STATE(3004), - [sym_internal_module] = STATE(3004), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5619), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1018), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -127747,10 +129054,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -127772,84697 +129079,85543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_object] = ACTIONS(1532), + [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_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [801] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2081), + [sym_expression] = STATE(2880), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7201), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2081), + [sym_subscript_expression] = STATE(2081), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3704), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), + [sym_comment] = STATE(801), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2081), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_namespace] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1637), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_using] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_delete] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1661), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [802] = { + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3121), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), + [sym_comment] = STATE(802), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [803] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2003), - [sym_expression] = STATE(2262), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7299), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2003), - [sym_subscript_expression] = STATE(2003), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2066), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7365), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2066), + [sym_subscript_expression] = STATE(2066), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7375), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(803), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2003), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2066), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_namespace] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(2564), + [sym_private_property_identifier] = ACTIONS(1401), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1779), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_readonly] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1369), + [anon_sym_set] = ACTIONS(1369), + [anon_sym_declare] = ACTIONS(1369), + [anon_sym_public] = ACTIONS(1369), + [anon_sym_private] = ACTIONS(1369), + [anon_sym_protected] = ACTIONS(1369), + [anon_sym_override] = ACTIONS(1369), + [anon_sym_module] = ACTIONS(1369), + [anon_sym_any] = ACTIONS(1369), + [anon_sym_number] = ACTIONS(1369), + [anon_sym_boolean] = ACTIONS(1369), + [anon_sym_string] = ACTIONS(1369), + [anon_sym_symbol] = ACTIONS(1369), + [anon_sym_object] = ACTIONS(1369), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [804] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3133), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2132), + [sym_expression] = STATE(3115), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7329), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2132), + [sym_subscript_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7387), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(804), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2132), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(1483), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_object] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [805] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3132), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2856), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(5641), + [sym_jsx_element] = STATE(2970), + [sym_jsx_opening_element] = STATE(3907), + [sym_jsx_self_closing_element] = STATE(2970), + [sym_class] = STATE(2944), + [sym_function_expression] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(7437), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(3698), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7431), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(2944), [sym_comment] = STATE(805), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2970), + [sym_non_null_expression] = STATE(2033), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5631), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_function] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [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_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [806] = { - [sym_import] = STATE(4272), - [sym_parenthesized_expression] = STATE(2114), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(2261), - [sym_yield_expression] = STATE(2563), - [sym_object] = STATE(2541), - [sym_object_pattern] = STATE(4245), - [sym_array] = STATE(2541), - [sym_array_pattern] = STATE(4245), - [sym_glimmer_template] = STATE(2563), - [sym_glimmer_opening_tag] = STATE(5559), - [sym_jsx_element] = STATE(2563), - [sym_jsx_opening_element] = STATE(3862), - [sym_jsx_self_closing_element] = STATE(2563), - [sym_class] = STATE(2541), - [sym_function_expression] = STATE(2541), - [sym_generator_function] = STATE(2541), - [sym_arrow_function] = STATE(2541), - [sym__call_signature] = STATE(7264), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(2563), - [sym_await_expression] = STATE(2563), - [sym_member_expression] = STATE(2114), - [sym_subscript_expression] = STATE(2114), - [sym_assignment_expression] = STATE(2563), - [sym__augmented_assignment_lhs] = STATE(3728), - [sym_augmented_assignment_expression] = STATE(2563), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2563), - [sym_binary_expression] = STATE(2563), - [sym_unary_expression] = STATE(2563), - [sym_update_expression] = STATE(2563), - [sym_string] = STATE(2541), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2139), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2275), + [sym_yield_expression] = STATE(2504), + [sym_object] = STATE(2506), + [sym_object_pattern] = STATE(4148), + [sym_array] = STATE(2506), + [sym_array_pattern] = STATE(4148), + [sym_glimmer_template] = STATE(2504), + [sym_glimmer_opening_tag] = STATE(5586), + [sym_jsx_element] = STATE(2504), + [sym_jsx_opening_element] = STATE(3863), + [sym_jsx_self_closing_element] = STATE(2504), + [sym_class] = STATE(2506), + [sym_function_expression] = STATE(2506), + [sym_generator_function] = STATE(2506), + [sym_arrow_function] = STATE(2506), + [sym__call_signature] = STATE(7063), + [sym_call_expression] = STATE(2506), + [sym_new_expression] = STATE(2504), + [sym_await_expression] = STATE(2504), + [sym_member_expression] = STATE(2139), + [sym_subscript_expression] = STATE(2139), + [sym_assignment_expression] = STATE(2504), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(2504), + [sym__destructuring_pattern] = STATE(7051), + [sym_ternary_expression] = STATE(2504), + [sym_binary_expression] = STATE(2504), + [sym_unary_expression] = STATE(2504), + [sym_update_expression] = STATE(2504), + [sym_string] = STATE(2506), [sym_comment] = STATE(806), - [sym_template_string] = STATE(2541), - [sym_regex] = STATE(2541), - [sym_meta_property] = STATE(2541), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4813), - [sym_non_null_expression] = STATE(2114), - [sym_as_expression] = STATE(2563), - [sym_satisfies_expression] = STATE(2563), - [sym_instantiation_expression] = STATE(2563), - [sym_internal_module] = STATE(2563), - [sym_type_parameters] = STATE(6459), - [aux_sym_export_statement_repeat1] = STATE(5610), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_namespace] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_template_string] = STATE(2506), + [sym_regex] = STATE(2506), + [sym_meta_property] = STATE(2506), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4786), + [sym_global_namespace] = STATE(2504), + [sym_non_null_expression] = STATE(2139), + [sym_as_expression] = STATE(2504), + [sym_satisfies_expression] = STATE(2504), + [sym_instantiation_expression] = STATE(2504), + [sym_internal_module] = STATE(2504), + [sym_type_parameters] = STATE(6818), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(2648), + [anon_sym_export] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_namespace] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(177), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1116), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_delete] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(1622), - [sym_this] = ACTIONS(190), - [sym_super] = ACTIONS(190), - [sym_true] = ACTIONS(190), - [sym_false] = ACTIONS(190), - [sym_null] = ACTIONS(190), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_using] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(188), + [sym_this] = ACTIONS(192), + [sym_super] = ACTIONS(192), + [sym_true] = ACTIONS(192), + [sym_false] = ACTIONS(192), + [sym_null] = ACTIONS(192), + [sym_undefined] = ACTIONS(2658), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_get] = ACTIONS(1598), - [anon_sym_set] = ACTIONS(1598), - [anon_sym_declare] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_private] = ACTIONS(1598), - [anon_sym_protected] = ACTIONS(1598), - [anon_sym_override] = ACTIONS(1598), - [anon_sym_module] = ACTIONS(1598), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_get] = ACTIONS(2650), + [anon_sym_set] = ACTIONS(2650), + [anon_sym_declare] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_protected] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_module] = ACTIONS(2650), + [anon_sym_any] = ACTIONS(2650), + [anon_sym_number] = ACTIONS(2650), + [anon_sym_boolean] = ACTIONS(2650), + [anon_sym_string] = ACTIONS(2650), + [anon_sym_symbol] = ACTIONS(2650), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(204), [sym_html_comment] = ACTIONS(5), }, [807] = { - [sym_namespace_export] = STATE(6507), - [sym_export_clause] = STATE(5615), - [sym_declaration] = STATE(1463), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_namespace_export] = STATE(6812), + [sym_export_clause] = STATE(5635), + [sym_declaration] = STATE(1480), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(807), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2709), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [808] = { - [sym_namespace_export] = STATE(6507), - [sym_export_clause] = STATE(5615), - [sym_declaration] = STATE(1463), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_namespace_export] = STATE(6812), + [sym_export_clause] = STATE(5635), + [sym_declaration] = STATE(1480), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(808), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2709), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [809] = { - [sym_namespace_export] = STATE(6507), - [sym_export_clause] = STATE(5615), - [sym_declaration] = STATE(1463), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_namespace_export] = STATE(6812), + [sym_export_clause] = STATE(5635), + [sym_declaration] = STATE(1480), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(809), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2709), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [810] = { - [sym__call_signature] = STATE(7278), - [sym_string] = STATE(4548), + [sym__call_signature] = STATE(7322), + [sym_string] = STATE(4459), [sym_comment] = STATE(810), - [sym_formal_parameters] = STATE(4813), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [sym_type_parameters] = STATE(6459), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2714), - [anon_sym_export] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2716), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2716), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_readonly] = ACTIONS(2716), - [anon_sym_get] = ACTIONS(2736), - [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2716), - [anon_sym_public] = ACTIONS(2716), - [anon_sym_private] = ACTIONS(2716), - [anon_sym_protected] = ACTIONS(2716), - [anon_sym_override] = ACTIONS(2716), - [anon_sym_module] = ACTIONS(2716), - [anon_sym_any] = ACTIONS(2716), - [anon_sym_number] = ACTIONS(2716), - [anon_sym_boolean] = ACTIONS(2716), - [anon_sym_string] = ACTIONS(2716), - [anon_sym_symbol] = ACTIONS(2716), - [anon_sym_object] = ACTIONS(2716), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [sym_type_parameters] = STATE(6818), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2721), + [anon_sym_export] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2723), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2723), + [anon_sym_function] = ACTIONS(2735), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2723), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2723), + [anon_sym_readonly] = ACTIONS(2723), + [anon_sym_get] = ACTIONS(2743), + [anon_sym_set] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2723), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_override] = ACTIONS(2723), + [anon_sym_module] = ACTIONS(2723), + [anon_sym_any] = ACTIONS(2723), + [anon_sym_number] = ACTIONS(2723), + [anon_sym_boolean] = ACTIONS(2723), + [anon_sym_string] = ACTIONS(2723), + [anon_sym_symbol] = ACTIONS(2723), + [anon_sym_object] = ACTIONS(2723), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [811] = { - [sym__call_signature] = STATE(7278), - [sym_string] = STATE(4548), + [sym__call_signature] = STATE(7322), + [sym_string] = STATE(4459), [sym_comment] = STATE(811), - [sym_formal_parameters] = STATE(4813), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [sym_type_parameters] = STATE(6459), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2714), - [anon_sym_export] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2716), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2716), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_readonly] = ACTIONS(2716), - [anon_sym_get] = ACTIONS(2736), - [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2716), - [anon_sym_public] = ACTIONS(2716), - [anon_sym_private] = ACTIONS(2716), - [anon_sym_protected] = ACTIONS(2716), - [anon_sym_override] = ACTIONS(2716), - [anon_sym_module] = ACTIONS(2716), - [anon_sym_any] = ACTIONS(2716), - [anon_sym_number] = ACTIONS(2716), - [anon_sym_boolean] = ACTIONS(2716), - [anon_sym_string] = ACTIONS(2716), - [anon_sym_symbol] = ACTIONS(2716), - [anon_sym_object] = ACTIONS(2716), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [sym_type_parameters] = STATE(6818), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2721), + [anon_sym_export] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2723), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2723), + [anon_sym_function] = ACTIONS(2735), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2723), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2723), + [anon_sym_readonly] = ACTIONS(2723), + [anon_sym_get] = ACTIONS(2743), + [anon_sym_set] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2723), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_override] = ACTIONS(2723), + [anon_sym_module] = ACTIONS(2723), + [anon_sym_any] = ACTIONS(2723), + [anon_sym_number] = ACTIONS(2723), + [anon_sym_boolean] = ACTIONS(2723), + [anon_sym_string] = ACTIONS(2723), + [anon_sym_symbol] = ACTIONS(2723), + [anon_sym_object] = ACTIONS(2723), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [812] = { - [sym__call_signature] = STATE(7278), - [sym_string] = STATE(4548), + [sym__call_signature] = STATE(7322), + [sym_string] = STATE(4459), [sym_comment] = STATE(812), - [sym_formal_parameters] = STATE(4813), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [sym_type_parameters] = STATE(6459), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2714), - [anon_sym_export] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2716), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2716), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_readonly] = ACTIONS(2716), - [anon_sym_get] = ACTIONS(2736), - [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2716), - [anon_sym_public] = ACTIONS(2716), - [anon_sym_private] = ACTIONS(2716), - [anon_sym_protected] = ACTIONS(2716), - [anon_sym_override] = ACTIONS(2716), - [anon_sym_module] = ACTIONS(2716), - [anon_sym_any] = ACTIONS(2716), - [anon_sym_number] = ACTIONS(2716), - [anon_sym_boolean] = ACTIONS(2716), - [anon_sym_string] = ACTIONS(2716), - [anon_sym_symbol] = ACTIONS(2716), - [anon_sym_object] = ACTIONS(2716), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [sym_type_parameters] = STATE(6818), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2721), + [anon_sym_export] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2723), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2723), + [anon_sym_function] = ACTIONS(2735), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2723), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2723), + [anon_sym_readonly] = ACTIONS(2723), + [anon_sym_get] = ACTIONS(2743), + [anon_sym_set] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2723), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_override] = ACTIONS(2723), + [anon_sym_module] = ACTIONS(2723), + [anon_sym_any] = ACTIONS(2723), + [anon_sym_number] = ACTIONS(2723), + [anon_sym_boolean] = ACTIONS(2723), + [anon_sym_string] = ACTIONS(2723), + [anon_sym_symbol] = ACTIONS(2723), + [anon_sym_object] = ACTIONS(2723), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [813] = { - [sym_declaration] = STATE(1563), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_declaration] = STATE(1562), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(813), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2747), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_global] = ACTIONS(2749), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [814] = { - [sym_declaration] = STATE(1563), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_declaration] = STATE(1562), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(814), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2747), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_global] = ACTIONS(2749), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [815] = { - [sym_declaration] = STATE(1563), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_declaration] = STATE(1562), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(815), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2747), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_global] = ACTIONS(2749), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [816] = { - [sym_namespace_export] = STATE(6507), - [sym_export_clause] = STATE(5615), - [sym_declaration] = STATE(1463), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_namespace_export] = STATE(6674), + [sym_export_clause] = STATE(5577), + [sym_declaration] = STATE(6632), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_class_declaration] = STATE(6630), + [sym_function_declaration] = STATE(6630), + [sym_generator_function_declaration] = STATE(6630), [sym_comment] = STATE(816), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2744), - [anon_sym_as] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(6630), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(6634), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [aux_sym_export_statement_repeat1] = STATE(5015), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_EQ] = ACTIONS(2757), + [anon_sym_as] = ACTIONS(2759), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2763), + [anon_sym_var] = ACTIONS(2765), + [anon_sym_let] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_async] = ACTIONS(2775), + [anon_sym_function] = ACTIONS(2777), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2779), + [anon_sym_module] = ACTIONS(2781), + [anon_sym_abstract] = ACTIONS(2783), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2787), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [817] = { - [sym_namespace_export] = STATE(6877), - [sym_export_clause] = STATE(5440), - [sym_declaration] = STATE(1341), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_class_declaration] = STATE(1340), - [sym_function_declaration] = STATE(1340), - [sym_generator_function_declaration] = STATE(1340), + [sym_namespace_export] = STATE(6687), + [sym_export_clause] = STATE(5450), + [sym_declaration] = STATE(1187), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_class_declaration] = STATE(1189), + [sym_function_declaration] = STATE(1189), + [sym_generator_function_declaration] = STATE(1189), [sym_comment] = STATE(817), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1340), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(1342), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [aux_sym_export_statement_repeat1] = STATE(4973), - [anon_sym_STAR] = ACTIONS(2748), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_as] = ACTIONS(2756), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2760), - [anon_sym_var] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_function] = ACTIONS(2774), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2784), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1189), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(1185), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [aux_sym_export_statement_repeat1] = STATE(4857), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_type] = ACTIONS(2793), + [anon_sym_EQ] = ACTIONS(2795), + [anon_sym_as] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_function] = ACTIONS(2815), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2817), + [anon_sym_module] = ACTIONS(2819), + [anon_sym_abstract] = ACTIONS(2821), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2825), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [818] = { - [sym_namespace_export] = STATE(6805), - [sym_export_clause] = STATE(5483), - [sym_declaration] = STATE(1156), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_class_declaration] = STATE(1157), - [sym_function_declaration] = STATE(1157), - [sym_generator_function_declaration] = STATE(1157), + [sym_namespace_export] = STATE(6812), + [sym_export_clause] = STATE(5635), + [sym_declaration] = STATE(1480), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(818), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1157), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(1154), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [aux_sym_export_statement_repeat1] = STATE(5013), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2798), - [anon_sym_var] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_function] = ACTIONS(2812), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2816), - [anon_sym_abstract] = ACTIONS(2818), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2822), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2827), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2709), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [819] = { - [sym_namespace_export] = STATE(6911), - [sym_export_clause] = STATE(5552), - [sym_declaration] = STATE(1220), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_class_declaration] = STATE(1216), - [sym_function_declaration] = STATE(1216), - [sym_generator_function_declaration] = STATE(1216), + [sym_namespace_export] = STATE(6510), + [sym_export_clause] = STATE(5436), + [sym_declaration] = STATE(1042), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_class_declaration] = STATE(1034), + [sym_function_declaration] = STATE(1034), + [sym_generator_function_declaration] = STATE(1034), [sym_comment] = STATE(819), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1216), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(1221), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [aux_sym_export_statement_repeat1] = STATE(4937), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2836), - [anon_sym_var] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2846), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2852), - [anon_sym_module] = ACTIONS(2854), - [anon_sym_abstract] = ACTIONS(2856), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2860), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1034), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(1055), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [aux_sym_export_statement_repeat1] = STATE(4852), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2839), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2843), + [anon_sym_var] = ACTIONS(2845), + [anon_sym_let] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_function] = ACTIONS(2857), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2859), + [anon_sym_module] = ACTIONS(2861), + [anon_sym_abstract] = ACTIONS(2863), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2867), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [820] = { - [sym_namespace_export] = STATE(6670), - [sym_export_clause] = STATE(5551), - [sym_declaration] = STATE(6917), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_class_declaration] = STATE(6924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function_declaration] = STATE(6924), + [sym_namespace_export] = STATE(6915), + [sym_export_clause] = STATE(5556), + [sym_declaration] = STATE(1338), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_class_declaration] = STATE(1361), + [sym_function_declaration] = STATE(1361), + [sym_generator_function_declaration] = STATE(1361), [sym_comment] = STATE(820), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(6924), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(6916), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [aux_sym_export_statement_repeat1] = STATE(5301), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2888), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2892), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2898), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1361), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(1333), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [aux_sym_export_statement_repeat1] = STATE(4979), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_EQ] = ACTIONS(2875), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_var] = ACTIONS(2883), + [anon_sym_let] = ACTIONS(2885), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2893), + [anon_sym_function] = ACTIONS(2895), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2897), + [anon_sym_module] = ACTIONS(2899), + [anon_sym_abstract] = ACTIONS(2901), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2905), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [821] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(821), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [sym_override_modifier] = STATE(3533), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2904), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2908), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [sym_override_modifier] = STATE(3519), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2911), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2915), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [822] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(822), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [sym_override_modifier] = STATE(3533), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2904), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2908), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [sym_override_modifier] = STATE(3519), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2911), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2915), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [823] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(823), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [sym_override_modifier] = STATE(3533), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2904), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2908), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [sym_override_modifier] = STATE(3519), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2911), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2915), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [824] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(824), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [825] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(825), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [826] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(826), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2900), - [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2907), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_get] = ACTIONS(2907), + [anon_sym_set] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [827] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(827), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2900), - [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2907), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_get] = ACTIONS(2907), + [anon_sym_set] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [828] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(828), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2900), - [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2907), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_get] = ACTIONS(2907), + [anon_sym_set] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [829] = { - [sym_string] = STATE(4548), + [sym_string] = STATE(4459), [sym_comment] = STATE(829), - [sym__property_name] = STATE(4640), - [sym_computed_property_name] = STATE(4548), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2900), - [anon_sym_public] = ACTIONS(2900), - [anon_sym_private] = ACTIONS(2900), - [anon_sym_protected] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_any] = ACTIONS(2900), - [anon_sym_number] = ACTIONS(2900), - [anon_sym_boolean] = ACTIONS(2900), - [anon_sym_string] = ACTIONS(2900), - [anon_sym_symbol] = ACTIONS(2900), - [anon_sym_object] = ACTIONS(2900), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__property_name] = STATE(4623), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [830] = { - [sym_declaration] = STATE(1563), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_declaration] = STATE(1271), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_class_declaration] = STATE(1361), + [sym_function_declaration] = STATE(1361), + [sym_generator_function_declaration] = STATE(1361), [sym_comment] = STATE(830), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1361), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(1333), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [aux_sym_export_statement_repeat1] = STATE(4979), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2917), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_var] = ACTIONS(2883), + [anon_sym_let] = ACTIONS(2885), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2893), + [anon_sym_function] = ACTIONS(2895), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2897), + [anon_sym_module] = ACTIONS(2919), + [anon_sym_abstract] = ACTIONS(2901), + [anon_sym_global] = ACTIONS(2921), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2905), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [831] = { - [sym_declaration] = STATE(1087), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_class_declaration] = STATE(1157), - [sym_function_declaration] = STATE(1157), - [sym_generator_function_declaration] = STATE(1157), + [sym_declaration] = STATE(1197), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_class_declaration] = STATE(1189), + [sym_function_declaration] = STATE(1189), + [sym_generator_function_declaration] = STATE(1189), [sym_comment] = STATE(831), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1157), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(1154), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [aux_sym_export_statement_repeat1] = STATE(5013), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2798), - [anon_sym_var] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_function] = ACTIONS(2812), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2818), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2822), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1189), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(1185), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [aux_sym_export_statement_repeat1] = STATE(4857), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_function] = ACTIONS(2815), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2817), + [anon_sym_module] = ACTIONS(2925), + [anon_sym_abstract] = ACTIONS(2821), + [anon_sym_global] = ACTIONS(2927), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2825), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [832] = { - [sym_declaration] = STATE(6896), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_class_declaration] = STATE(6924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function_declaration] = STATE(6924), + [sym_declaration] = STATE(1075), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_class_declaration] = STATE(1034), + [sym_function_declaration] = STATE(1034), + [sym_generator_function_declaration] = STATE(1034), [sym_comment] = STATE(832), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(6924), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(6916), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [aux_sym_export_statement_repeat1] = STATE(5301), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2888), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2898), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1034), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(1055), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [aux_sym_export_statement_repeat1] = STATE(4852), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2843), + [anon_sym_var] = ACTIONS(2845), + [anon_sym_let] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_function] = ACTIONS(2857), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2859), + [anon_sym_module] = ACTIONS(2931), + [anon_sym_abstract] = ACTIONS(2863), + [anon_sym_global] = ACTIONS(2933), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2867), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [833] = { - [sym_declaration] = STATE(1360), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_class_declaration] = STATE(1340), - [sym_function_declaration] = STATE(1340), - [sym_generator_function_declaration] = STATE(1340), + [sym_declaration] = STATE(1562), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(833), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1340), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(1342), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [aux_sym_export_statement_repeat1] = STATE(4973), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2760), - [anon_sym_var] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_function] = ACTIONS(2774), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2784), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2747), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_global] = ACTIONS(2749), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [834] = { - [sym_declaration] = STATE(1261), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_class_declaration] = STATE(1216), - [sym_function_declaration] = STATE(1216), - [sym_generator_function_declaration] = STATE(1216), + [sym_declaration] = STATE(6648), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_class_declaration] = STATE(6630), + [sym_function_declaration] = STATE(6630), + [sym_generator_function_declaration] = STATE(6630), [sym_comment] = STATE(834), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1216), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(1221), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [aux_sym_export_statement_repeat1] = STATE(4937), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_import] = ACTIONS(2836), - [anon_sym_var] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2846), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2852), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2856), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2932), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2860), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(6630), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(6634), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [aux_sym_export_statement_repeat1] = STATE(5015), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_import] = ACTIONS(2763), + [anon_sym_var] = ACTIONS(2765), + [anon_sym_let] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_async] = ACTIONS(2775), + [anon_sym_function] = ACTIONS(2777), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2779), + [anon_sym_module] = ACTIONS(2937), + [anon_sym_abstract] = ACTIONS(2783), + [anon_sym_global] = ACTIONS(2939), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2787), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [835] = { - [sym_declaration] = STATE(1261), - [sym_variable_declaration] = STATE(1216), - [sym_lexical_declaration] = STATE(1216), - [sym_class_declaration] = STATE(1216), - [sym_function_declaration] = STATE(1216), - [sym_generator_function_declaration] = STATE(1216), + [sym_declaration] = STATE(1271), + [sym_variable_declaration] = STATE(1361), + [sym_lexical_declaration] = STATE(1361), + [sym_class_declaration] = STATE(1361), + [sym_function_declaration] = STATE(1361), + [sym_generator_function_declaration] = STATE(1361), [sym_comment] = STATE(835), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1216), - [sym_ambient_declaration] = STATE(1216), - [sym_abstract_class_declaration] = STATE(1216), - [sym_module] = STATE(1216), - [sym_internal_module] = STATE(1221), - [sym_import_alias] = STATE(1216), - [sym_interface_declaration] = STATE(1216), - [sym_enum_declaration] = STATE(1216), - [sym_type_alias_declaration] = STATE(1216), - [aux_sym_export_statement_repeat1] = STATE(4937), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_import] = ACTIONS(2836), - [anon_sym_var] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2846), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2852), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2856), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2932), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2860), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1361), + [sym_ambient_declaration] = STATE(1361), + [sym_abstract_class_declaration] = STATE(1361), + [sym_module] = STATE(1361), + [sym_internal_module] = STATE(1333), + [sym_import_alias] = STATE(1361), + [sym_interface_declaration] = STATE(1361), + [sym_enum_declaration] = STATE(1361), + [sym_type_alias_declaration] = STATE(1361), + [aux_sym_export_statement_repeat1] = STATE(4979), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2917), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_var] = ACTIONS(2883), + [anon_sym_let] = ACTIONS(2885), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2893), + [anon_sym_function] = ACTIONS(2895), + [anon_sym_EQ_GT] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2897), + [anon_sym_module] = ACTIONS(2919), + [anon_sym_abstract] = ACTIONS(2901), + [anon_sym_global] = ACTIONS(2921), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2905), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [836] = { - [sym_declaration] = STATE(6896), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_class_declaration] = STATE(6924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function_declaration] = STATE(6924), [sym_comment] = STATE(836), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(6924), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(6916), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [aux_sym_export_statement_repeat1] = STATE(5301), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2888), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2898), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2454), + [anon_sym_public] = ACTIONS(2454), + [anon_sym_private] = ACTIONS(2454), + [anon_sym_protected] = ACTIONS(2454), + [anon_sym_override] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_any] = ACTIONS(2454), + [anon_sym_number] = ACTIONS(2454), + [anon_sym_boolean] = ACTIONS(2454), + [anon_sym_string] = ACTIONS(2454), + [anon_sym_symbol] = ACTIONS(2454), + [anon_sym_object] = ACTIONS(2454), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [837] = { [sym_comment] = STATE(837), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2409), - [sym_private_property_identifier] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_readonly] = ACTIONS(2409), - [anon_sym_get] = ACTIONS(2409), - [anon_sym_set] = ACTIONS(2409), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2409), - [anon_sym_public] = ACTIONS(2409), - [anon_sym_private] = ACTIONS(2409), - [anon_sym_protected] = ACTIONS(2409), - [anon_sym_override] = ACTIONS(2409), - [anon_sym_module] = ACTIONS(2409), - [anon_sym_any] = ACTIONS(2409), - [anon_sym_number] = ACTIONS(2409), - [anon_sym_boolean] = ACTIONS(2409), - [anon_sym_string] = ACTIONS(2409), - [anon_sym_symbol] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(2409), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2454), + [anon_sym_public] = ACTIONS(2454), + [anon_sym_private] = ACTIONS(2454), + [anon_sym_protected] = ACTIONS(2454), + [anon_sym_override] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_any] = ACTIONS(2454), + [anon_sym_number] = ACTIONS(2454), + [anon_sym_boolean] = ACTIONS(2454), + [anon_sym_string] = ACTIONS(2454), + [anon_sym_symbol] = ACTIONS(2454), + [anon_sym_object] = ACTIONS(2454), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [838] = { - [sym_declaration] = STATE(1360), - [sym_variable_declaration] = STATE(1340), - [sym_lexical_declaration] = STATE(1340), - [sym_class_declaration] = STATE(1340), - [sym_function_declaration] = STATE(1340), - [sym_generator_function_declaration] = STATE(1340), [sym_comment] = STATE(838), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1340), - [sym_ambient_declaration] = STATE(1340), - [sym_abstract_class_declaration] = STATE(1340), - [sym_module] = STATE(1340), - [sym_internal_module] = STATE(1342), - [sym_import_alias] = STATE(1340), - [sym_interface_declaration] = STATE(1340), - [sym_enum_declaration] = STATE(1340), - [sym_type_alias_declaration] = STATE(1340), - [aux_sym_export_statement_repeat1] = STATE(4973), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_import] = ACTIONS(2760), - [anon_sym_var] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_function] = ACTIONS(2774), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2784), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_QMARK] = ACTIONS(1042), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [839] = { [sym_comment] = STATE(839), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2409), - [sym_private_property_identifier] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_readonly] = ACTIONS(2409), - [anon_sym_get] = ACTIONS(2409), - [anon_sym_set] = ACTIONS(2409), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2409), - [anon_sym_public] = ACTIONS(2409), - [anon_sym_private] = ACTIONS(2409), - [anon_sym_protected] = ACTIONS(2409), - [anon_sym_override] = ACTIONS(2409), - [anon_sym_module] = ACTIONS(2409), - [anon_sym_any] = ACTIONS(2409), - [anon_sym_number] = ACTIONS(2409), - [anon_sym_boolean] = ACTIONS(2409), - [anon_sym_string] = ACTIONS(2409), - [anon_sym_symbol] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(2409), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_QMARK] = ACTIONS(1042), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [840] = { + [sym_declaration] = STATE(1562), + [sym_variable_declaration] = STATE(1478), + [sym_lexical_declaration] = STATE(1478), + [sym_class_declaration] = STATE(1478), + [sym_function_declaration] = STATE(1478), + [sym_generator_function_declaration] = STATE(1478), [sym_comment] = STATE(840), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2397), - [sym_private_property_identifier] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_readonly] = ACTIONS(2397), - [anon_sym_get] = ACTIONS(2397), - [anon_sym_set] = ACTIONS(2397), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2397), - [anon_sym_public] = ACTIONS(2397), - [anon_sym_private] = ACTIONS(2397), - [anon_sym_protected] = ACTIONS(2397), - [anon_sym_override] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_any] = ACTIONS(2397), - [anon_sym_number] = ACTIONS(2397), - [anon_sym_boolean] = ACTIONS(2397), - [anon_sym_string] = ACTIONS(2397), - [anon_sym_symbol] = ACTIONS(2397), - [anon_sym_object] = ACTIONS(2397), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1478), + [sym_ambient_declaration] = STATE(1478), + [sym_abstract_class_declaration] = STATE(1478), + [sym_module] = STATE(1478), + [sym_internal_module] = STATE(1481), + [sym_import_alias] = STATE(1478), + [sym_interface_declaration] = STATE(1478), + [sym_enum_declaration] = STATE(1478), + [sym_type_alias_declaration] = STATE(1478), + [aux_sym_export_statement_repeat1] = STATE(4860), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2747), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_global] = ACTIONS(2749), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2715), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [841] = { + [sym_declaration] = STATE(6648), + [sym_variable_declaration] = STATE(6630), + [sym_lexical_declaration] = STATE(6630), + [sym_class_declaration] = STATE(6630), + [sym_function_declaration] = STATE(6630), + [sym_generator_function_declaration] = STATE(6630), [sym_comment] = STATE(841), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2409), - [sym_private_property_identifier] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_readonly] = ACTIONS(2409), - [anon_sym_get] = ACTIONS(2409), - [anon_sym_set] = ACTIONS(2409), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2409), - [anon_sym_public] = ACTIONS(2409), - [anon_sym_private] = ACTIONS(2409), - [anon_sym_protected] = ACTIONS(2409), - [anon_sym_override] = ACTIONS(2409), - [anon_sym_module] = ACTIONS(2409), - [anon_sym_any] = ACTIONS(2409), - [anon_sym_number] = ACTIONS(2409), - [anon_sym_boolean] = ACTIONS(2409), - [anon_sym_string] = ACTIONS(2409), - [anon_sym_symbol] = ACTIONS(2409), - [anon_sym_object] = ACTIONS(2409), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(6630), + [sym_ambient_declaration] = STATE(6630), + [sym_abstract_class_declaration] = STATE(6630), + [sym_module] = STATE(6630), + [sym_internal_module] = STATE(6634), + [sym_import_alias] = STATE(6630), + [sym_interface_declaration] = STATE(6630), + [sym_enum_declaration] = STATE(6630), + [sym_type_alias_declaration] = STATE(6630), + [aux_sym_export_statement_repeat1] = STATE(5015), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_import] = ACTIONS(2763), + [anon_sym_var] = ACTIONS(2765), + [anon_sym_let] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_async] = ACTIONS(2775), + [anon_sym_function] = ACTIONS(2777), + [anon_sym_EQ_GT] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2779), + [anon_sym_module] = ACTIONS(2937), + [anon_sym_abstract] = ACTIONS(2783), + [anon_sym_global] = ACTIONS(2939), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2787), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [842] = { - [sym_declaration] = STATE(1563), - [sym_variable_declaration] = STATE(1527), - [sym_lexical_declaration] = STATE(1527), - [sym_class_declaration] = STATE(1527), - [sym_function_declaration] = STATE(1527), - [sym_generator_function_declaration] = STATE(1527), + [sym_declaration] = STATE(4972), + [sym_variable_declaration] = STATE(4973), + [sym_lexical_declaration] = STATE(4973), + [sym_class_declaration] = STATE(4973), + [sym_function_declaration] = STATE(4973), + [sym_generator_function_declaration] = STATE(4973), [sym_comment] = STATE(842), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1527), - [sym_ambient_declaration] = STATE(1527), - [sym_abstract_class_declaration] = STATE(1527), - [sym_module] = STATE(1527), - [sym_internal_module] = STATE(1482), - [sym_import_alias] = STATE(1527), - [sym_interface_declaration] = STATE(1527), - [sym_enum_declaration] = STATE(1527), - [sym_type_alias_declaration] = STATE(1527), - [aux_sym_export_statement_repeat1] = STATE(4924), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(4973), + [sym_ambient_declaration] = STATE(4973), + [sym_abstract_class_declaration] = STATE(4973), + [sym_module] = STATE(4973), + [sym_internal_module] = STATE(4974), + [sym_import_alias] = STATE(4973), + [sym_interface_declaration] = STATE(4973), + [sym_enum_declaration] = STATE(4973), + [sym_type_alias_declaration] = STATE(4973), + [aux_sym_export_statement_repeat1] = STATE(4863), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2943), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2945), + [anon_sym_import] = ACTIONS(2947), + [anon_sym_var] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2955), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_function] = ACTIONS(2959), + [anon_sym_EQ_GT] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2961), + [anon_sym_module] = ACTIONS(2963), + [anon_sym_abstract] = ACTIONS(2965), + [anon_sym_global] = ACTIONS(2967), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2971), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [843] = { - [sym_declaration] = STATE(1087), - [sym_variable_declaration] = STATE(1157), - [sym_lexical_declaration] = STATE(1157), - [sym_class_declaration] = STATE(1157), - [sym_function_declaration] = STATE(1157), - [sym_generator_function_declaration] = STATE(1157), + [sym_declaration] = STATE(1075), + [sym_variable_declaration] = STATE(1034), + [sym_lexical_declaration] = STATE(1034), + [sym_class_declaration] = STATE(1034), + [sym_function_declaration] = STATE(1034), + [sym_generator_function_declaration] = STATE(1034), [sym_comment] = STATE(843), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(1157), - [sym_ambient_declaration] = STATE(1157), - [sym_abstract_class_declaration] = STATE(1157), - [sym_module] = STATE(1157), - [sym_internal_module] = STATE(1154), - [sym_import_alias] = STATE(1157), - [sym_interface_declaration] = STATE(1157), - [sym_enum_declaration] = STATE(1157), - [sym_type_alias_declaration] = STATE(1157), - [aux_sym_export_statement_repeat1] = STATE(5013), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2796), - [anon_sym_import] = ACTIONS(2798), - [anon_sym_var] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_function] = ACTIONS(2812), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2818), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2822), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1034), + [sym_ambient_declaration] = STATE(1034), + [sym_abstract_class_declaration] = STATE(1034), + [sym_module] = STATE(1034), + [sym_internal_module] = STATE(1055), + [sym_import_alias] = STATE(1034), + [sym_interface_declaration] = STATE(1034), + [sym_enum_declaration] = STATE(1034), + [sym_type_alias_declaration] = STATE(1034), + [aux_sym_export_statement_repeat1] = STATE(4852), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2843), + [anon_sym_var] = ACTIONS(2845), + [anon_sym_let] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_function] = ACTIONS(2857), + [anon_sym_EQ_GT] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2859), + [anon_sym_module] = ACTIONS(2931), + [anon_sym_abstract] = ACTIONS(2863), + [anon_sym_global] = ACTIONS(2933), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2867), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [844] = { - [sym_declaration] = STATE(5249), - [sym_variable_declaration] = STATE(5246), - [sym_lexical_declaration] = STATE(5246), - [sym_class_declaration] = STATE(5246), - [sym_function_declaration] = STATE(5246), - [sym_generator_function_declaration] = STATE(5246), + [sym_declaration] = STATE(1197), + [sym_variable_declaration] = STATE(1189), + [sym_lexical_declaration] = STATE(1189), + [sym_class_declaration] = STATE(1189), + [sym_function_declaration] = STATE(1189), + [sym_generator_function_declaration] = STATE(1189), [sym_comment] = STATE(844), - [sym_decorator] = STATE(5608), - [sym_function_signature] = STATE(5246), - [sym_ambient_declaration] = STATE(5246), - [sym_abstract_class_declaration] = STATE(5246), - [sym_module] = STATE(5246), - [sym_internal_module] = STATE(5245), - [sym_import_alias] = STATE(5246), - [sym_interface_declaration] = STATE(5246), - [sym_enum_declaration] = STATE(5246), - [sym_type_alias_declaration] = STATE(5246), - [aux_sym_export_statement_repeat1] = STATE(4959), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2936), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2940), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2944), - [anon_sym_const] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_class] = ACTIONS(2948), - [anon_sym_async] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(212), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(212), - [anon_sym_PLUS_PLUS] = ACTIONS(212), - [anon_sym_DASH_DASH] = ACTIONS(212), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2956), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_satisfies] = ACTIONS(212), - [anon_sym_global] = ACTIONS(2960), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2964), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_function_signature] = STATE(1189), + [sym_ambient_declaration] = STATE(1189), + [sym_abstract_class_declaration] = STATE(1189), + [sym_module] = STATE(1189), + [sym_internal_module] = STATE(1185), + [sym_import_alias] = STATE(1189), + [sym_interface_declaration] = STATE(1189), + [sym_enum_declaration] = STATE(1189), + [sym_type_alias_declaration] = STATE(1189), + [aux_sym_export_statement_repeat1] = STATE(4857), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(216), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_function] = ACTIONS(2815), + [anon_sym_EQ_GT] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(216), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2698), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2698), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(216), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(216), + [anon_sym_GT_EQ] = ACTIONS(216), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DASH_DASH] = ACTIONS(216), + [aux_sym_comment_token1] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2817), + [anon_sym_module] = ACTIONS(2925), + [anon_sym_abstract] = ACTIONS(2821), + [anon_sym_global] = ACTIONS(2927), + [anon_sym_satisfies] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2825), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [845] = { [sym_comment] = STATE(845), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2397), - [sym_private_property_identifier] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_readonly] = ACTIONS(2397), - [anon_sym_get] = ACTIONS(2397), - [anon_sym_set] = ACTIONS(2397), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2397), - [anon_sym_public] = ACTIONS(2397), - [anon_sym_private] = ACTIONS(2397), - [anon_sym_protected] = ACTIONS(2397), - [anon_sym_override] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_any] = ACTIONS(2397), - [anon_sym_number] = ACTIONS(2397), - [anon_sym_boolean] = ACTIONS(2397), - [anon_sym_string] = ACTIONS(2397), - [anon_sym_symbol] = ACTIONS(2397), - [anon_sym_object] = ACTIONS(2397), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_QMARK] = ACTIONS(1042), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [846] = { [sym_comment] = STATE(846), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2397), - [sym_private_property_identifier] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_readonly] = ACTIONS(2397), - [anon_sym_get] = ACTIONS(2397), - [anon_sym_set] = ACTIONS(2397), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(2397), - [anon_sym_public] = ACTIONS(2397), - [anon_sym_private] = ACTIONS(2397), - [anon_sym_protected] = ACTIONS(2397), - [anon_sym_override] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_any] = ACTIONS(2397), - [anon_sym_number] = ACTIONS(2397), - [anon_sym_boolean] = ACTIONS(2397), - [anon_sym_string] = ACTIONS(2397), - [anon_sym_symbol] = ACTIONS(2397), - [anon_sym_object] = ACTIONS(2397), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(2454), + [anon_sym_public] = ACTIONS(2454), + [anon_sym_private] = ACTIONS(2454), + [anon_sym_protected] = ACTIONS(2454), + [anon_sym_override] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_any] = ACTIONS(2454), + [anon_sym_number] = ACTIONS(2454), + [anon_sym_boolean] = ACTIONS(2454), + [anon_sym_string] = ACTIONS(2454), + [anon_sym_symbol] = ACTIONS(2454), + [anon_sym_object] = ACTIONS(2454), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [847] = { - [sym__call_signature] = STATE(7364), + [sym__call_signature] = STATE(7035), [sym_comment] = STATE(847), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2973), + [anon_sym_export] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_readonly] = ACTIONS(2975), + [anon_sym_get] = ACTIONS(2975), + [anon_sym_set] = ACTIONS(2975), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_private] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_override] = ACTIONS(2975), + [anon_sym_module] = ACTIONS(2975), + [anon_sym_any] = ACTIONS(2975), + [anon_sym_number] = ACTIONS(2975), + [anon_sym_boolean] = ACTIONS(2975), + [anon_sym_string] = ACTIONS(2975), + [anon_sym_symbol] = ACTIONS(2975), + [anon_sym_object] = ACTIONS(2975), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [848] = { - [sym__call_signature] = STATE(7110), + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(848), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_RBRACE] = ACTIONS(217), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(217), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [849] = { - [sym__call_signature] = STATE(7110), + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(849), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(1127), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(1112), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [850] = { - [sym__call_signature] = STATE(7364), + [sym__call_signature] = STATE(7035), [sym_comment] = STATE(850), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2973), + [anon_sym_export] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_readonly] = ACTIONS(2975), + [anon_sym_get] = ACTIONS(2975), + [anon_sym_set] = ACTIONS(2975), + [anon_sym_declare] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_private] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_override] = ACTIONS(2975), + [anon_sym_module] = ACTIONS(2975), + [anon_sym_any] = ACTIONS(2975), + [anon_sym_number] = ACTIONS(2975), + [anon_sym_boolean] = ACTIONS(2975), + [anon_sym_string] = ACTIONS(2975), + [anon_sym_symbol] = ACTIONS(2975), + [anon_sym_object] = ACTIONS(2975), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [851] = { - [sym__call_signature] = STATE(7364), + [sym__call_signature] = STATE(7035), [sym_comment] = STATE(851), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2973), + [anon_sym_export] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_readonly] = ACTIONS(2975), + [anon_sym_get] = ACTIONS(2975), + [anon_sym_set] = ACTIONS(2975), + [anon_sym_declare] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_private] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_override] = ACTIONS(2975), + [anon_sym_module] = ACTIONS(2975), + [anon_sym_any] = ACTIONS(2975), + [anon_sym_number] = ACTIONS(2975), + [anon_sym_boolean] = ACTIONS(2975), + [anon_sym_string] = ACTIONS(2975), + [anon_sym_symbol] = ACTIONS(2975), + [anon_sym_object] = ACTIONS(2975), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [852] = { - [sym__call_signature] = STATE(7057), + [sym__call_signature] = STATE(7035), [sym_comment] = STATE(852), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2973), + [anon_sym_export] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_let] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_readonly] = ACTIONS(2975), + [anon_sym_get] = ACTIONS(2975), + [anon_sym_set] = ACTIONS(2975), + [anon_sym_declare] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_private] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_override] = ACTIONS(2975), + [anon_sym_module] = ACTIONS(2975), + [anon_sym_any] = ACTIONS(2975), + [anon_sym_number] = ACTIONS(2975), + [anon_sym_boolean] = ACTIONS(2975), + [anon_sym_string] = ACTIONS(2975), + [anon_sym_symbol] = ACTIONS(2975), + [anon_sym_object] = ACTIONS(2975), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [853] = { - [sym__call_signature] = STATE(7278), + [sym__call_signature] = STATE(7322), [sym_comment] = STATE(853), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_readonly] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_declare] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_protected] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(2990), - [anon_sym_number] = ACTIONS(2990), - [anon_sym_boolean] = ACTIONS(2990), - [anon_sym_string] = ACTIONS(2990), - [anon_sym_symbol] = ACTIONS(2990), - [anon_sym_object] = ACTIONS(2990), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_get] = ACTIONS(2991), + [anon_sym_set] = ACTIONS(2991), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_private] = ACTIONS(2991), + [anon_sym_protected] = ACTIONS(2991), + [anon_sym_override] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2991), + [anon_sym_any] = ACTIONS(2991), + [anon_sym_number] = ACTIONS(2991), + [anon_sym_boolean] = ACTIONS(2991), + [anon_sym_string] = ACTIONS(2991), + [anon_sym_symbol] = ACTIONS(2991), + [anon_sym_object] = ACTIONS(2991), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [854] = { - [sym__call_signature] = STATE(7278), + [sym__call_signature] = STATE(7379), [sym_comment] = STATE(854), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_readonly] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_declare] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_protected] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(2990), - [anon_sym_number] = ACTIONS(2990), - [anon_sym_boolean] = ACTIONS(2990), - [anon_sym_string] = ACTIONS(2990), - [anon_sym_symbol] = ACTIONS(2990), - [anon_sym_object] = ACTIONS(2990), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2995), + [anon_sym_export] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2997), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_EQ_GT] = ACTIONS(1192), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(2997), + [anon_sym_set] = ACTIONS(2997), + [anon_sym_declare] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_private] = ACTIONS(2997), + [anon_sym_protected] = ACTIONS(2997), + [anon_sym_override] = ACTIONS(2997), + [anon_sym_module] = ACTIONS(2997), + [anon_sym_any] = ACTIONS(2997), + [anon_sym_number] = ACTIONS(2997), + [anon_sym_boolean] = ACTIONS(2997), + [anon_sym_string] = ACTIONS(2997), + [anon_sym_symbol] = ACTIONS(2997), + [anon_sym_object] = ACTIONS(2997), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [855] = { - [sym__call_signature] = STATE(7278), + [sym__call_signature] = STATE(7322), [sym_comment] = STATE(855), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_readonly] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_declare] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_protected] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(2990), - [anon_sym_number] = ACTIONS(2990), - [anon_sym_boolean] = ACTIONS(2990), - [anon_sym_string] = ACTIONS(2990), - [anon_sym_symbol] = ACTIONS(2990), - [anon_sym_object] = ACTIONS(2990), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_get] = ACTIONS(2991), + [anon_sym_set] = ACTIONS(2991), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_private] = ACTIONS(2991), + [anon_sym_protected] = ACTIONS(2991), + [anon_sym_override] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2991), + [anon_sym_any] = ACTIONS(2991), + [anon_sym_number] = ACTIONS(2991), + [anon_sym_boolean] = ACTIONS(2991), + [anon_sym_string] = ACTIONS(2991), + [anon_sym_symbol] = ACTIONS(2991), + [anon_sym_object] = ACTIONS(2991), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [856] = { - [sym__call_signature] = STATE(7278), + [sym__call_signature] = STATE(7322), [sym_comment] = STATE(856), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_readonly] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_declare] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_protected] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(2990), - [anon_sym_number] = ACTIONS(2990), - [anon_sym_boolean] = ACTIONS(2990), - [anon_sym_string] = ACTIONS(2990), - [anon_sym_symbol] = ACTIONS(2990), - [anon_sym_object] = ACTIONS(2990), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_get] = ACTIONS(2991), + [anon_sym_set] = ACTIONS(2991), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_private] = ACTIONS(2991), + [anon_sym_protected] = ACTIONS(2991), + [anon_sym_override] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2991), + [anon_sym_any] = ACTIONS(2991), + [anon_sym_number] = ACTIONS(2991), + [anon_sym_boolean] = ACTIONS(2991), + [anon_sym_string] = ACTIONS(2991), + [anon_sym_symbol] = ACTIONS(2991), + [anon_sym_object] = ACTIONS(2991), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [857] = { - [sym__call_signature] = STATE(7057), + [sym__call_signature] = STATE(7322), [sym_comment] = STATE(857), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_get] = ACTIONS(2991), + [anon_sym_set] = ACTIONS(2991), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_private] = ACTIONS(2991), + [anon_sym_protected] = ACTIONS(2991), + [anon_sym_override] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2991), + [anon_sym_any] = ACTIONS(2991), + [anon_sym_number] = ACTIONS(2991), + [anon_sym_boolean] = ACTIONS(2991), + [anon_sym_string] = ACTIONS(2991), + [anon_sym_symbol] = ACTIONS(2991), + [anon_sym_object] = ACTIONS(2991), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [858] = { - [sym__call_signature] = STATE(7278), + [sym__call_signature] = STATE(7322), [sym_comment] = STATE(858), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_readonly] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_declare] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_protected] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(2990), - [anon_sym_number] = ACTIONS(2990), - [anon_sym_boolean] = ACTIONS(2990), - [anon_sym_string] = ACTIONS(2990), - [anon_sym_symbol] = ACTIONS(2990), - [anon_sym_object] = ACTIONS(2990), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_function] = ACTIONS(3003), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_get] = ACTIONS(2991), + [anon_sym_set] = ACTIONS(2991), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_private] = ACTIONS(2991), + [anon_sym_protected] = ACTIONS(2991), + [anon_sym_override] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2991), + [anon_sym_any] = ACTIONS(2991), + [anon_sym_number] = ACTIONS(2991), + [anon_sym_boolean] = ACTIONS(2991), + [anon_sym_string] = ACTIONS(2991), + [anon_sym_symbol] = ACTIONS(2991), + [anon_sym_object] = ACTIONS(2991), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [859] = { - [sym__call_signature] = STATE(7364), + [sym__call_signature] = STATE(7379), [sym_comment] = STATE(859), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2995), + [anon_sym_export] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2997), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_EQ_GT] = ACTIONS(1192), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(2997), + [anon_sym_set] = ACTIONS(2997), + [anon_sym_declare] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_private] = ACTIONS(2997), + [anon_sym_protected] = ACTIONS(2997), + [anon_sym_override] = ACTIONS(2997), + [anon_sym_module] = ACTIONS(2997), + [anon_sym_any] = ACTIONS(2997), + [anon_sym_number] = ACTIONS(2997), + [anon_sym_boolean] = ACTIONS(2997), + [anon_sym_string] = ACTIONS(2997), + [anon_sym_symbol] = ACTIONS(2997), + [anon_sym_object] = ACTIONS(2997), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [860] = { - [sym__call_signature] = STATE(7278), + [sym__call_signature] = STATE(7322), [sym_comment] = STATE(860), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_readonly] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_declare] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_protected] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(2990), - [anon_sym_number] = ACTIONS(2990), - [anon_sym_boolean] = ACTIONS(2990), - [anon_sym_string] = ACTIONS(2990), - [anon_sym_symbol] = ACTIONS(2990), - [anon_sym_object] = ACTIONS(2990), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_get] = ACTIONS(2991), + [anon_sym_set] = ACTIONS(2991), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_private] = ACTIONS(2991), + [anon_sym_protected] = ACTIONS(2991), + [anon_sym_override] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2991), + [anon_sym_any] = ACTIONS(2991), + [anon_sym_number] = ACTIONS(2991), + [anon_sym_boolean] = ACTIONS(2991), + [anon_sym_string] = ACTIONS(2991), + [anon_sym_symbol] = ACTIONS(2991), + [anon_sym_object] = ACTIONS(2991), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [861] = { - [sym__call_signature] = STATE(7278), + [sym__call_signature] = STATE(7322), [sym_comment] = STATE(861), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_readonly] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_declare] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_protected] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(2990), - [anon_sym_number] = ACTIONS(2990), - [anon_sym_boolean] = ACTIONS(2990), - [anon_sym_string] = ACTIONS(2990), - [anon_sym_symbol] = ACTIONS(2990), - [anon_sym_object] = ACTIONS(2990), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_function] = ACTIONS(2735), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_get] = ACTIONS(2991), + [anon_sym_set] = ACTIONS(2991), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_private] = ACTIONS(2991), + [anon_sym_protected] = ACTIONS(2991), + [anon_sym_override] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2991), + [anon_sym_any] = ACTIONS(2991), + [anon_sym_number] = ACTIONS(2991), + [anon_sym_boolean] = ACTIONS(2991), + [anon_sym_string] = ACTIONS(2991), + [anon_sym_symbol] = ACTIONS(2991), + [anon_sym_object] = ACTIONS(2991), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [862] = { - [sym__call_signature] = STATE(7278), + [sym__call_signature] = STATE(7322), [sym_comment] = STATE(862), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_readonly] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_declare] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_protected] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(2990), - [anon_sym_number] = ACTIONS(2990), - [anon_sym_boolean] = ACTIONS(2990), - [anon_sym_string] = ACTIONS(2990), - [anon_sym_symbol] = ACTIONS(2990), - [anon_sym_object] = ACTIONS(2990), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_get] = ACTIONS(2991), + [anon_sym_set] = ACTIONS(2991), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_private] = ACTIONS(2991), + [anon_sym_protected] = ACTIONS(2991), + [anon_sym_override] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2991), + [anon_sym_any] = ACTIONS(2991), + [anon_sym_number] = ACTIONS(2991), + [anon_sym_boolean] = ACTIONS(2991), + [anon_sym_string] = ACTIONS(2991), + [anon_sym_symbol] = ACTIONS(2991), + [anon_sym_object] = ACTIONS(2991), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [863] = { - [sym__call_signature] = STATE(7329), + [sym__call_signature] = STATE(7441), [sym_comment] = STATE(863), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_readonly] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_declare] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_protected] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [anon_sym_any] = ACTIONS(3002), - [anon_sym_number] = ACTIONS(3002), - [anon_sym_boolean] = ACTIONS(3002), - [anon_sym_string] = ACTIONS(3002), - [anon_sym_symbol] = ACTIONS(3002), - [anon_sym_object] = ACTIONS(3002), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3007), + [anon_sym_export] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3009), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_readonly] = ACTIONS(3009), + [anon_sym_get] = ACTIONS(3009), + [anon_sym_set] = ACTIONS(3009), + [anon_sym_declare] = ACTIONS(3009), + [anon_sym_public] = ACTIONS(3009), + [anon_sym_private] = ACTIONS(3009), + [anon_sym_protected] = ACTIONS(3009), + [anon_sym_override] = ACTIONS(3009), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [864] = { - [sym__call_signature] = STATE(7250), + [sym_catch_clause] = STATE(895), + [sym_finally_clause] = STATE(1053), [sym_comment] = STATE(864), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1232), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(3011), + [anon_sym_export] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_namespace] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_typeof] = ACTIONS(3011), + [anon_sym_import] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + [anon_sym_var] = ACTIONS(3011), + [anon_sym_let] = ACTIONS(3011), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_else] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_await] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_do] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_debugger] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_throw] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_case] = ACTIONS(3011), + [anon_sym_catch] = ACTIONS(3013), + [anon_sym_finally] = ACTIONS(3015), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_LTtemplate_GT] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_class] = ACTIONS(3011), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3011), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_void] = ACTIONS(3011), + [anon_sym_delete] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3011), + [sym_private_property_identifier] = ACTIONS(3011), + [sym_this] = ACTIONS(3011), + [sym_super] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_null] = ACTIONS(3011), + [sym_undefined] = ACTIONS(3011), + [anon_sym_AT] = ACTIONS(3011), + [anon_sym_static] = ACTIONS(3011), + [anon_sym_readonly] = ACTIONS(3011), + [anon_sym_get] = ACTIONS(3011), + [anon_sym_set] = ACTIONS(3011), + [anon_sym_declare] = ACTIONS(3011), + [anon_sym_public] = ACTIONS(3011), + [anon_sym_private] = ACTIONS(3011), + [anon_sym_protected] = ACTIONS(3011), + [anon_sym_override] = ACTIONS(3011), + [anon_sym_module] = ACTIONS(3011), + [anon_sym_any] = ACTIONS(3011), + [anon_sym_number] = ACTIONS(3011), + [anon_sym_boolean] = ACTIONS(3011), + [anon_sym_string] = ACTIONS(3011), + [anon_sym_symbol] = ACTIONS(3011), + [anon_sym_object] = ACTIONS(3011), + [anon_sym_abstract] = ACTIONS(3011), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(3011), + [anon_sym_enum] = ACTIONS(3011), [sym_html_comment] = ACTIONS(5), }, [865] = { - [sym__call_signature] = STATE(7250), + [sym__call_signature] = STATE(7441), [sym_comment] = STATE(865), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1232), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3007), + [anon_sym_export] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3009), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_readonly] = ACTIONS(3009), + [anon_sym_get] = ACTIONS(3009), + [anon_sym_set] = ACTIONS(3009), + [anon_sym_declare] = ACTIONS(3009), + [anon_sym_public] = ACTIONS(3009), + [anon_sym_private] = ACTIONS(3009), + [anon_sym_protected] = ACTIONS(3009), + [anon_sym_override] = ACTIONS(3009), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [866] = { - [sym__call_signature] = STATE(7212), + [sym__call_signature] = STATE(7333), [sym_comment] = STATE(866), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3017), + [anon_sym_export] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3019), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_let] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3019), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3019), + [anon_sym_set] = ACTIONS(3019), + [anon_sym_declare] = ACTIONS(3019), + [anon_sym_public] = ACTIONS(3019), + [anon_sym_private] = ACTIONS(3019), + [anon_sym_protected] = ACTIONS(3019), + [anon_sym_override] = ACTIONS(3019), + [anon_sym_module] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3019), + [anon_sym_number] = ACTIONS(3019), + [anon_sym_boolean] = ACTIONS(3019), + [anon_sym_string] = ACTIONS(3019), + [anon_sym_symbol] = ACTIONS(3019), + [anon_sym_object] = ACTIONS(3019), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [867] = { - [sym__call_signature] = STATE(7212), + [sym__call_signature] = STATE(7216), [sym_comment] = STATE(867), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_override] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_object] = ACTIONS(3023), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [868] = { - [sym__call_signature] = STATE(7329), + [sym__call_signature] = STATE(7333), [sym_comment] = STATE(868), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_readonly] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_declare] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_protected] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [anon_sym_any] = ACTIONS(3002), - [anon_sym_number] = ACTIONS(3002), - [anon_sym_boolean] = ACTIONS(3002), - [anon_sym_string] = ACTIONS(3002), - [anon_sym_symbol] = ACTIONS(3002), - [anon_sym_object] = ACTIONS(3002), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3017), + [anon_sym_export] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3019), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_let] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3019), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3019), + [anon_sym_set] = ACTIONS(3019), + [anon_sym_declare] = ACTIONS(3019), + [anon_sym_public] = ACTIONS(3019), + [anon_sym_private] = ACTIONS(3019), + [anon_sym_protected] = ACTIONS(3019), + [anon_sym_override] = ACTIONS(3019), + [anon_sym_module] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3019), + [anon_sym_number] = ACTIONS(3019), + [anon_sym_boolean] = ACTIONS(3019), + [anon_sym_string] = ACTIONS(3019), + [anon_sym_symbol] = ACTIONS(3019), + [anon_sym_object] = ACTIONS(3019), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [869] = { - [sym__call_signature] = STATE(7329), + [sym__call_signature] = STATE(7216), [sym_comment] = STATE(869), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_readonly] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_declare] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_protected] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [anon_sym_any] = ACTIONS(3002), - [anon_sym_number] = ACTIONS(3002), - [anon_sym_boolean] = ACTIONS(3002), - [anon_sym_string] = ACTIONS(3002), - [anon_sym_symbol] = ACTIONS(3002), - [anon_sym_object] = ACTIONS(3002), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(2735), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_override] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_object] = ACTIONS(3023), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [870] = { - [sym__call_signature] = STATE(7212), + [sym_catch_clause] = STATE(929), + [sym_finally_clause] = STATE(1167), [sym_comment] = STATE(870), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3011), + [anon_sym_export] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_namespace] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_typeof] = ACTIONS(3011), + [anon_sym_import] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + [anon_sym_var] = ACTIONS(3011), + [anon_sym_let] = ACTIONS(3011), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_else] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_await] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_do] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_debugger] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_throw] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_catch] = ACTIONS(3027), + [anon_sym_finally] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_LTtemplate_GT] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_class] = ACTIONS(3011), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3011), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_void] = ACTIONS(3011), + [anon_sym_delete] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3011), + [sym_private_property_identifier] = ACTIONS(3011), + [sym_this] = ACTIONS(3011), + [sym_super] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_null] = ACTIONS(3011), + [sym_undefined] = ACTIONS(3011), + [anon_sym_AT] = ACTIONS(3011), + [anon_sym_static] = ACTIONS(3011), + [anon_sym_readonly] = ACTIONS(3011), + [anon_sym_get] = ACTIONS(3011), + [anon_sym_set] = ACTIONS(3011), + [anon_sym_declare] = ACTIONS(3011), + [anon_sym_public] = ACTIONS(3011), + [anon_sym_private] = ACTIONS(3011), + [anon_sym_protected] = ACTIONS(3011), + [anon_sym_override] = ACTIONS(3011), + [anon_sym_module] = ACTIONS(3011), + [anon_sym_any] = ACTIONS(3011), + [anon_sym_number] = ACTIONS(3011), + [anon_sym_boolean] = ACTIONS(3011), + [anon_sym_string] = ACTIONS(3011), + [anon_sym_symbol] = ACTIONS(3011), + [anon_sym_object] = ACTIONS(3011), + [anon_sym_abstract] = ACTIONS(3011), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(3011), + [anon_sym_enum] = ACTIONS(3011), [sym_html_comment] = ACTIONS(5), }, [871] = { - [sym__call_signature] = STATE(7212), + [sym__call_signature] = STATE(7216), [sym_comment] = STATE(871), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_override] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_object] = ACTIONS(3023), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [872] = { - [sym__call_signature] = STATE(7329), + [sym__call_signature] = STATE(7006), [sym_comment] = STATE(872), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_readonly] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_declare] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_protected] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [anon_sym_any] = ACTIONS(3002), - [anon_sym_number] = ACTIONS(3002), - [anon_sym_boolean] = ACTIONS(3002), - [anon_sym_string] = ACTIONS(3002), - [anon_sym_symbol] = ACTIONS(3002), - [anon_sym_object] = ACTIONS(3002), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3031), + [anon_sym_export] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3033), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3033), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3033), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3033), + [anon_sym_readonly] = ACTIONS(3033), + [anon_sym_get] = ACTIONS(3033), + [anon_sym_set] = ACTIONS(3033), + [anon_sym_declare] = ACTIONS(3033), + [anon_sym_public] = ACTIONS(3033), + [anon_sym_private] = ACTIONS(3033), + [anon_sym_protected] = ACTIONS(3033), + [anon_sym_override] = ACTIONS(3033), + [anon_sym_module] = ACTIONS(3033), + [anon_sym_any] = ACTIONS(3033), + [anon_sym_number] = ACTIONS(3033), + [anon_sym_boolean] = ACTIONS(3033), + [anon_sym_string] = ACTIONS(3033), + [anon_sym_symbol] = ACTIONS(3033), + [anon_sym_object] = ACTIONS(3033), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [873] = { - [sym__call_signature] = STATE(7212), + [sym__call_signature] = STATE(7216), [sym_comment] = STATE(873), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_override] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_object] = ACTIONS(3023), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [874] = { - [sym__call_signature] = STATE(7212), + [sym__call_signature] = STATE(7216), [sym_comment] = STATE(874), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_override] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_object] = ACTIONS(3023), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [875] = { - [sym__call_signature] = STATE(7212), + [sym__call_signature] = STATE(7216), [sym_comment] = STATE(875), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_override] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_object] = ACTIONS(3023), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [876] = { - [sym_catch_clause] = STATE(891), - [sym_finally_clause] = STATE(1017), + [sym_catch_clause] = STATE(937), + [sym_finally_clause] = STATE(1236), [sym_comment] = STATE(876), - [sym_identifier] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_default] = ACTIONS(3012), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_const] = ACTIONS(3012), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_switch] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_await] = ACTIONS(3012), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_debugger] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_catch] = ACTIONS(3014), - [anon_sym_finally] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LTtemplate_GT] = ACTIONS(3012), - [anon_sym_DQUOTE] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3012), - [anon_sym_SLASH] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_void] = ACTIONS(3012), - [anon_sym_delete] = ACTIONS(3012), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3012), - [sym_number] = ACTIONS(3012), - [sym_private_property_identifier] = ACTIONS(3012), - [sym_this] = ACTIONS(3012), - [sym_super] = ACTIONS(3012), - [sym_true] = ACTIONS(3012), - [sym_false] = ACTIONS(3012), - [sym_null] = ACTIONS(3012), - [sym_undefined] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_interface] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3011), + [anon_sym_export] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_namespace] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_typeof] = ACTIONS(3011), + [anon_sym_import] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + [anon_sym_var] = ACTIONS(3011), + [anon_sym_let] = ACTIONS(3011), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_await] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_do] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_debugger] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_throw] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_case] = ACTIONS(3011), + [anon_sym_catch] = ACTIONS(3035), + [anon_sym_finally] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_LTtemplate_GT] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_class] = ACTIONS(3011), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3011), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_void] = ACTIONS(3011), + [anon_sym_delete] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3011), + [sym_private_property_identifier] = ACTIONS(3011), + [sym_this] = ACTIONS(3011), + [sym_super] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_null] = ACTIONS(3011), + [sym_undefined] = ACTIONS(3011), + [anon_sym_AT] = ACTIONS(3011), + [anon_sym_static] = ACTIONS(3011), + [anon_sym_readonly] = ACTIONS(3011), + [anon_sym_get] = ACTIONS(3011), + [anon_sym_set] = ACTIONS(3011), + [anon_sym_declare] = ACTIONS(3011), + [anon_sym_public] = ACTIONS(3011), + [anon_sym_private] = ACTIONS(3011), + [anon_sym_protected] = ACTIONS(3011), + [anon_sym_override] = ACTIONS(3011), + [anon_sym_module] = ACTIONS(3011), + [anon_sym_any] = ACTIONS(3011), + [anon_sym_number] = ACTIONS(3011), + [anon_sym_boolean] = ACTIONS(3011), + [anon_sym_string] = ACTIONS(3011), + [anon_sym_symbol] = ACTIONS(3011), + [anon_sym_object] = ACTIONS(3011), + [anon_sym_abstract] = ACTIONS(3011), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(3011), + [anon_sym_enum] = ACTIONS(3011), [sym_html_comment] = ACTIONS(5), }, [877] = { - [sym__call_signature] = STATE(7002), [sym_comment] = STATE(877), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3018), - [anon_sym_export] = ACTIONS(3020), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3020), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3020), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3020), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3020), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3020), - [anon_sym_readonly] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(3020), - [anon_sym_set] = ACTIONS(3020), - [anon_sym_declare] = ACTIONS(3020), - [anon_sym_public] = ACTIONS(3020), - [anon_sym_private] = ACTIONS(3020), - [anon_sym_protected] = ACTIONS(3020), - [anon_sym_override] = ACTIONS(3020), - [anon_sym_module] = ACTIONS(3020), - [anon_sym_any] = ACTIONS(3020), - [anon_sym_number] = ACTIONS(3020), - [anon_sym_boolean] = ACTIONS(3020), - [anon_sym_string] = ACTIONS(3020), - [anon_sym_symbol] = ACTIONS(3020), - [anon_sym_object] = ACTIONS(3020), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3039), [sym_html_comment] = ACTIONS(5), }, [878] = { - [sym__call_signature] = STATE(7002), [sym_comment] = STATE(878), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3018), - [anon_sym_export] = ACTIONS(3020), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3020), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3020), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3020), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3020), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3020), - [anon_sym_readonly] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(3020), - [anon_sym_set] = ACTIONS(3020), - [anon_sym_declare] = ACTIONS(3020), - [anon_sym_public] = ACTIONS(3020), - [anon_sym_private] = ACTIONS(3020), - [anon_sym_protected] = ACTIONS(3020), - [anon_sym_override] = ACTIONS(3020), - [anon_sym_module] = ACTIONS(3020), - [anon_sym_any] = ACTIONS(3020), - [anon_sym_number] = ACTIONS(3020), - [anon_sym_boolean] = ACTIONS(3020), - [anon_sym_string] = ACTIONS(3020), - [anon_sym_symbol] = ACTIONS(3020), - [anon_sym_object] = ACTIONS(3020), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3041), [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym__call_signature] = STATE(7212), + [sym__call_signature] = STATE(7006), [sym_comment] = STATE(879), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3031), + [anon_sym_export] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3033), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3033), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3033), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3033), + [anon_sym_readonly] = ACTIONS(3033), + [anon_sym_get] = ACTIONS(3033), + [anon_sym_set] = ACTIONS(3033), + [anon_sym_declare] = ACTIONS(3033), + [anon_sym_public] = ACTIONS(3033), + [anon_sym_private] = ACTIONS(3033), + [anon_sym_protected] = ACTIONS(3033), + [anon_sym_override] = ACTIONS(3033), + [anon_sym_module] = ACTIONS(3033), + [anon_sym_any] = ACTIONS(3033), + [anon_sym_number] = ACTIONS(3033), + [anon_sym_boolean] = ACTIONS(3033), + [anon_sym_string] = ACTIONS(3033), + [anon_sym_symbol] = ACTIONS(3033), + [anon_sym_object] = ACTIONS(3033), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [880] = { - [sym__call_signature] = STATE(7329), + [sym__call_signature] = STATE(7216), [sym_comment] = STATE(880), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_readonly] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_declare] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_protected] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [anon_sym_any] = ACTIONS(3002), - [anon_sym_number] = ACTIONS(3002), - [anon_sym_boolean] = ACTIONS(3002), - [anon_sym_string] = ACTIONS(3002), - [anon_sym_symbol] = ACTIONS(3002), - [anon_sym_object] = ACTIONS(3002), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(3003), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_override] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_object] = ACTIONS(3023), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [881] = { - [sym__call_signature] = STATE(7292), + [sym__call_signature] = STATE(7333), [sym_comment] = STATE(881), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3024), - [anon_sym_export] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3026), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3026), - [anon_sym_get] = ACTIONS(3026), - [anon_sym_set] = ACTIONS(3026), - [anon_sym_declare] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_protected] = ACTIONS(3026), - [anon_sym_override] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_any] = ACTIONS(3026), - [anon_sym_number] = ACTIONS(3026), - [anon_sym_boolean] = ACTIONS(3026), - [anon_sym_string] = ACTIONS(3026), - [anon_sym_symbol] = ACTIONS(3026), - [anon_sym_object] = ACTIONS(3026), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3017), + [anon_sym_export] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3019), + [anon_sym_let] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3019), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3019), + [anon_sym_set] = ACTIONS(3019), + [anon_sym_declare] = ACTIONS(3019), + [anon_sym_public] = ACTIONS(3019), + [anon_sym_private] = ACTIONS(3019), + [anon_sym_protected] = ACTIONS(3019), + [anon_sym_override] = ACTIONS(3019), + [anon_sym_module] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3019), + [anon_sym_number] = ACTIONS(3019), + [anon_sym_boolean] = ACTIONS(3019), + [anon_sym_string] = ACTIONS(3019), + [anon_sym_symbol] = ACTIONS(3019), + [anon_sym_object] = ACTIONS(3019), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [882] = { - [sym__call_signature] = STATE(7329), + [sym__call_signature] = STATE(7216), [sym_comment] = STATE(882), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_readonly] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_declare] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_protected] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [anon_sym_any] = ACTIONS(3002), - [anon_sym_number] = ACTIONS(3002), - [anon_sym_boolean] = ACTIONS(3002), - [anon_sym_string] = ACTIONS(3002), - [anon_sym_symbol] = ACTIONS(3002), - [anon_sym_object] = ACTIONS(3002), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_override] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_object] = ACTIONS(3023), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [883] = { + [sym__call_signature] = STATE(7333), [sym_comment] = STATE(883), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_catch] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3028), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3017), + [anon_sym_export] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3019), + [anon_sym_let] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3019), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3019), + [anon_sym_set] = ACTIONS(3019), + [anon_sym_declare] = ACTIONS(3019), + [anon_sym_public] = ACTIONS(3019), + [anon_sym_private] = ACTIONS(3019), + [anon_sym_protected] = ACTIONS(3019), + [anon_sym_override] = ACTIONS(3019), + [anon_sym_module] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3019), + [anon_sym_number] = ACTIONS(3019), + [anon_sym_boolean] = ACTIONS(3019), + [anon_sym_string] = ACTIONS(3019), + [anon_sym_symbol] = ACTIONS(3019), + [anon_sym_object] = ACTIONS(3019), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [884] = { - [sym_catch_clause] = STATE(958), - [sym_finally_clause] = STATE(1416), + [sym__call_signature] = STATE(7243), [sym_comment] = STATE(884), - [sym_identifier] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_default] = ACTIONS(3012), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_const] = ACTIONS(3012), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_switch] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_await] = ACTIONS(3012), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_debugger] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_catch] = ACTIONS(3030), - [anon_sym_finally] = ACTIONS(3032), - [anon_sym_yield] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LTtemplate_GT] = ACTIONS(3012), - [anon_sym_DQUOTE] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3012), - [anon_sym_SLASH] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_void] = ACTIONS(3012), - [anon_sym_delete] = ACTIONS(3012), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3012), - [sym_number] = ACTIONS(3012), - [sym_private_property_identifier] = ACTIONS(3012), - [sym_this] = ACTIONS(3012), - [sym_super] = ACTIONS(3012), - [sym_true] = ACTIONS(3012), - [sym_false] = ACTIONS(3012), - [sym_null] = ACTIONS(3012), - [sym_undefined] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_interface] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3045), + [anon_sym_export] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3047), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_let] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3047), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1293), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_readonly] = ACTIONS(3047), + [anon_sym_get] = ACTIONS(3047), + [anon_sym_set] = ACTIONS(3047), + [anon_sym_declare] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_module] = ACTIONS(3047), + [anon_sym_any] = ACTIONS(3047), + [anon_sym_number] = ACTIONS(3047), + [anon_sym_boolean] = ACTIONS(3047), + [anon_sym_string] = ACTIONS(3047), + [anon_sym_symbol] = ACTIONS(3047), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [885] = { - [sym__call_signature] = STATE(7292), [sym_comment] = STATE(885), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(3024), - [anon_sym_export] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3026), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3026), - [anon_sym_get] = ACTIONS(3026), - [anon_sym_set] = ACTIONS(3026), - [anon_sym_declare] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_protected] = ACTIONS(3026), - [anon_sym_override] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_any] = ACTIONS(3026), - [anon_sym_number] = ACTIONS(3026), - [anon_sym_boolean] = ACTIONS(3026), - [anon_sym_string] = ACTIONS(3026), - [anon_sym_symbol] = ACTIONS(3026), - [anon_sym_object] = ACTIONS(3026), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3049), [sym_html_comment] = ACTIONS(5), }, [886] = { [sym_comment] = STATE(886), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3034), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3051), [sym_html_comment] = ACTIONS(5), }, [887] = { - [sym__call_signature] = STATE(7110), + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(887), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [888] = { - [sym_catch_clause] = STATE(951), - [sym_finally_clause] = STATE(1323), [sym_comment] = STATE(888), - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_const] = ACTIONS(3012), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_switch] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_await] = ACTIONS(3012), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_debugger] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_catch] = ACTIONS(3038), - [anon_sym_finally] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LTtemplate_GT] = ACTIONS(3012), - [anon_sym_DQUOTE] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3012), - [anon_sym_SLASH] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_void] = ACTIONS(3012), - [anon_sym_delete] = ACTIONS(3012), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3012), - [sym_number] = ACTIONS(3012), - [sym_private_property_identifier] = ACTIONS(3012), - [sym_this] = ACTIONS(3012), - [sym_super] = ACTIONS(3012), - [sym_true] = ACTIONS(3012), - [sym_false] = ACTIONS(3012), - [sym_null] = ACTIONS(3012), - [sym_undefined] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_interface] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3053), [sym_html_comment] = ACTIONS(5), }, [889] = { - [sym__call_signature] = STATE(7110), + [sym__call_signature] = STATE(7333), [sym_comment] = STATE(889), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3017), + [anon_sym_export] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3019), + [anon_sym_let] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3019), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3019), + [anon_sym_set] = ACTIONS(3019), + [anon_sym_declare] = ACTIONS(3019), + [anon_sym_public] = ACTIONS(3019), + [anon_sym_private] = ACTIONS(3019), + [anon_sym_protected] = ACTIONS(3019), + [anon_sym_override] = ACTIONS(3019), + [anon_sym_module] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3019), + [anon_sym_number] = ACTIONS(3019), + [anon_sym_boolean] = ACTIONS(3019), + [anon_sym_string] = ACTIONS(3019), + [anon_sym_symbol] = ACTIONS(3019), + [anon_sym_object] = ACTIONS(3019), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [890] = { - [sym_statement_block] = STATE(1118), [sym_comment] = STATE(890), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [891] = { - [sym_finally_clause] = STATE(1094), [sym_comment] = STATE(891), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3046), - [anon_sym_default] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_namespace] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_typeof] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [anon_sym_let] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_await] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_debugger] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_case] = ACTIONS(3046), - [anon_sym_finally] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3046), - [anon_sym_LTtemplate_GT] = ACTIONS(3046), - [anon_sym_DQUOTE] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_class] = ACTIONS(3046), - [anon_sym_async] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_using] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_void] = ACTIONS(3046), - [anon_sym_delete] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3046), - [sym_number] = ACTIONS(3046), - [sym_private_property_identifier] = ACTIONS(3046), - [sym_this] = ACTIONS(3046), - [sym_super] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(3046), - [anon_sym_set] = ACTIONS(3046), - [anon_sym_declare] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_protected] = ACTIONS(3046), - [anon_sym_override] = ACTIONS(3046), - [anon_sym_module] = ACTIONS(3046), - [anon_sym_any] = ACTIONS(3046), - [anon_sym_number] = ACTIONS(3046), - [anon_sym_boolean] = ACTIONS(3046), - [anon_sym_string] = ACTIONS(3046), - [anon_sym_symbol] = ACTIONS(3046), - [anon_sym_object] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [892] = { - [sym__call_signature] = STATE(7110), [sym_comment] = STATE(892), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_finally] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [893] = { - [sym_catch_clause] = STATE(1009), - [sym_finally_clause] = STATE(1560), + [sym_statement_block] = STATE(1061), [sym_comment] = STATE(893), - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_const] = ACTIONS(3012), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_switch] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_await] = ACTIONS(3012), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_debugger] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_catch] = ACTIONS(3048), - [anon_sym_finally] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LTtemplate_GT] = ACTIONS(3012), - [anon_sym_DQUOTE] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3012), - [anon_sym_SLASH] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_void] = ACTIONS(3012), - [anon_sym_delete] = ACTIONS(3012), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3012), - [sym_number] = ACTIONS(3012), - [sym_private_property_identifier] = ACTIONS(3012), - [sym_this] = ACTIONS(3012), - [sym_super] = ACTIONS(3012), - [sym_true] = ACTIONS(3012), - [sym_false] = ACTIONS(3012), - [sym_null] = ACTIONS(3012), - [sym_undefined] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_interface] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [894] = { + [sym__call_signature] = STATE(7243), [sym_comment] = STATE(894), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3052), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3045), + [anon_sym_export] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3047), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_let] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3047), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1293), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_readonly] = ACTIONS(3047), + [anon_sym_get] = ACTIONS(3047), + [anon_sym_set] = ACTIONS(3047), + [anon_sym_declare] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_module] = ACTIONS(3047), + [anon_sym_any] = ACTIONS(3047), + [anon_sym_number] = ACTIONS(3047), + [anon_sym_boolean] = ACTIONS(3047), + [anon_sym_string] = ACTIONS(3047), + [anon_sym_symbol] = ACTIONS(3047), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [895] = { - [sym__call_signature] = STATE(7110), + [sym_finally_clause] = STATE(1041), [sym_comment] = STATE(895), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(3061), + [anon_sym_export] = ACTIONS(3061), + [anon_sym_default] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_namespace] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_typeof] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_var] = ACTIONS(3061), + [anon_sym_let] = ACTIONS(3061), + [anon_sym_const] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_switch] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_await] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_debugger] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_case] = ACTIONS(3061), + [anon_sym_finally] = ACTIONS(3015), + [anon_sym_yield] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_LTtemplate_GT] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_class] = ACTIONS(3061), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_function] = ACTIONS(3061), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_void] = ACTIONS(3061), + [anon_sym_delete] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3061), + [sym_number] = ACTIONS(3061), + [sym_private_property_identifier] = ACTIONS(3061), + [sym_this] = ACTIONS(3061), + [sym_super] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_null] = ACTIONS(3061), + [sym_undefined] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_static] = ACTIONS(3061), + [anon_sym_readonly] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(3061), + [anon_sym_set] = ACTIONS(3061), + [anon_sym_declare] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_module] = ACTIONS(3061), + [anon_sym_any] = ACTIONS(3061), + [anon_sym_number] = ACTIONS(3061), + [anon_sym_boolean] = ACTIONS(3061), + [anon_sym_string] = ACTIONS(3061), + [anon_sym_symbol] = ACTIONS(3061), + [anon_sym_object] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_global] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), [sym_html_comment] = ACTIONS(5), }, [896] = { - [sym__call_signature] = STATE(7110), + [sym_catch_clause] = STATE(1126), + [sym_finally_clause] = STATE(1473), [sym_comment] = STATE(896), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3011), + [anon_sym_export] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_namespace] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_typeof] = ACTIONS(3011), + [anon_sym_import] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + [anon_sym_var] = ACTIONS(3011), + [anon_sym_let] = ACTIONS(3011), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_await] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_do] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_debugger] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_throw] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_catch] = ACTIONS(3063), + [anon_sym_finally] = ACTIONS(3065), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_LTtemplate_GT] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_class] = ACTIONS(3011), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3011), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_void] = ACTIONS(3011), + [anon_sym_delete] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3011), + [sym_private_property_identifier] = ACTIONS(3011), + [sym_this] = ACTIONS(3011), + [sym_super] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_null] = ACTIONS(3011), + [sym_undefined] = ACTIONS(3011), + [anon_sym_AT] = ACTIONS(3011), + [anon_sym_static] = ACTIONS(3011), + [anon_sym_readonly] = ACTIONS(3011), + [anon_sym_get] = ACTIONS(3011), + [anon_sym_set] = ACTIONS(3011), + [anon_sym_declare] = ACTIONS(3011), + [anon_sym_public] = ACTIONS(3011), + [anon_sym_private] = ACTIONS(3011), + [anon_sym_protected] = ACTIONS(3011), + [anon_sym_override] = ACTIONS(3011), + [anon_sym_module] = ACTIONS(3011), + [anon_sym_any] = ACTIONS(3011), + [anon_sym_number] = ACTIONS(3011), + [anon_sym_boolean] = ACTIONS(3011), + [anon_sym_string] = ACTIONS(3011), + [anon_sym_symbol] = ACTIONS(3011), + [anon_sym_object] = ACTIONS(3011), + [anon_sym_abstract] = ACTIONS(3011), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(3011), + [anon_sym_enum] = ACTIONS(3011), [sym_html_comment] = ACTIONS(5), }, [897] = { + [sym_statement_block] = STATE(1061), [sym_comment] = STATE(897), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_catch] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3054), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [898] = { [sym_comment] = STATE(898), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3056), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3069), [sym_html_comment] = ACTIONS(5), }, [899] = { - [sym__call_signature] = STATE(7110), [sym_comment] = STATE(899), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3071), [sym_html_comment] = ACTIONS(5), }, [900] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(900), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_catch] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3058), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [901] = { - [sym_statement_block] = STATE(1118), + [sym__call_signature] = STATE(7333), [sym_comment] = STATE(901), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(3017), + [anon_sym_export] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3019), + [anon_sym_let] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3019), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3019), + [anon_sym_set] = ACTIONS(3019), + [anon_sym_declare] = ACTIONS(3019), + [anon_sym_public] = ACTIONS(3019), + [anon_sym_private] = ACTIONS(3019), + [anon_sym_protected] = ACTIONS(3019), + [anon_sym_override] = ACTIONS(3019), + [anon_sym_module] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3019), + [anon_sym_number] = ACTIONS(3019), + [anon_sym_boolean] = ACTIONS(3019), + [anon_sym_string] = ACTIONS(3019), + [anon_sym_symbol] = ACTIONS(3019), + [anon_sym_object] = ACTIONS(3019), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [902] = { - [sym__call_signature] = STATE(7110), [sym_comment] = STATE(902), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_global] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2254), [sym_html_comment] = ACTIONS(5), }, [903] = { - [sym__call_signature] = STATE(7110), + [sym_statement_block] = STATE(1194), [sym_comment] = STATE(903), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [904] = { [sym_comment] = STATE(904), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3077), [sym_html_comment] = ACTIONS(5), }, [905] = { - [sym__call_signature] = STATE(7110), + [sym_statement_block] = STATE(1061), [sym_comment] = STATE(905), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [906] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(906), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3064), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [907] = { - [sym__call_signature] = STATE(7110), [sym_comment] = STATE(907), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [908] = { [sym_comment] = STATE(908), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_catch] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3079), + [anon_sym_export] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_type] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_typeof] = ACTIONS(3079), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3079), + [anon_sym_var] = ACTIONS(3079), + [anon_sym_let] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_BANG] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_await] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_debugger] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_finally] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_LTtemplate_GT] = ACTIONS(3079), + [anon_sym_DQUOTE] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_SLASH] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_TILDE] = ACTIONS(3079), + [anon_sym_void] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_PLUS_PLUS] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3079), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3079), + [sym_number] = ACTIONS(3079), + [sym_private_property_identifier] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [sym_super] = ACTIONS(3079), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [sym_null] = ACTIONS(3079), + [sym_undefined] = ACTIONS(3079), + [anon_sym_AT] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3079), + [anon_sym_set] = ACTIONS(3079), + [anon_sym_declare] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_private] = ACTIONS(3079), + [anon_sym_protected] = ACTIONS(3079), + [anon_sym_override] = ACTIONS(3079), + [anon_sym_module] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3079), + [anon_sym_number] = ACTIONS(3079), + [anon_sym_boolean] = ACTIONS(3079), + [anon_sym_string] = ACTIONS(3079), + [anon_sym_symbol] = ACTIONS(3079), + [anon_sym_object] = ACTIONS(3079), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_global] = ACTIONS(3079), + [anon_sym_interface] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), [sym_html_comment] = ACTIONS(5), }, [909] = { - [sym__call_signature] = STATE(7110), [sym_comment] = STATE(909), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(3081), + [anon_sym_export] = ACTIONS(3081), + [anon_sym_default] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_namespace] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_typeof] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_var] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_const] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_else] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_switch] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_await] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_debugger] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_throw] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LTtemplate_GT] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_using] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_SLASH] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_void] = ACTIONS(3081), + [anon_sym_delete] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3081), + [sym_number] = ACTIONS(3081), + [sym_private_property_identifier] = ACTIONS(3081), + [sym_this] = ACTIONS(3081), + [sym_super] = ACTIONS(3081), + [sym_true] = ACTIONS(3081), + [sym_false] = ACTIONS(3081), + [sym_null] = ACTIONS(3081), + [sym_undefined] = ACTIONS(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_get] = ACTIONS(3081), + [anon_sym_set] = ACTIONS(3081), + [anon_sym_declare] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_protected] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3081), + [anon_sym_number] = ACTIONS(3081), + [anon_sym_boolean] = ACTIONS(3081), + [anon_sym_string] = ACTIONS(3081), + [anon_sym_symbol] = ACTIONS(3081), + [anon_sym_object] = ACTIONS(3081), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_global] = ACTIONS(3081), + [anon_sym_interface] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(3081), + [sym__automatic_semicolon] = ACTIONS(3083), [sym_html_comment] = ACTIONS(5), }, [910] = { - [sym__call_signature] = STATE(7110), [sym_comment] = STATE(910), - [sym_formal_parameters] = STATE(4813), - [sym_type_parameters] = STATE(6459), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_type] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_typeof] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3085), + [anon_sym_with] = ACTIONS(3085), + [anon_sym_var] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_await] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_debugger] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LTtemplate_GT] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(3085), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_SLASH] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_void] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3085), + [sym_number] = ACTIONS(3085), + [sym_private_property_identifier] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), + [sym_super] = ACTIONS(3085), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [sym_null] = ACTIONS(3085), + [sym_undefined] = ACTIONS(3085), + [anon_sym_AT] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_readonly] = ACTIONS(3085), + [anon_sym_get] = ACTIONS(3085), + [anon_sym_set] = ACTIONS(3085), + [anon_sym_declare] = ACTIONS(3085), + [anon_sym_public] = ACTIONS(3085), + [anon_sym_private] = ACTIONS(3085), + [anon_sym_protected] = ACTIONS(3085), + [anon_sym_override] = ACTIONS(3085), + [anon_sym_module] = ACTIONS(3085), + [anon_sym_any] = ACTIONS(3085), + [anon_sym_number] = ACTIONS(3085), + [anon_sym_boolean] = ACTIONS(3085), + [anon_sym_string] = ACTIONS(3085), + [anon_sym_symbol] = ACTIONS(3085), + [anon_sym_object] = ACTIONS(3085), + [anon_sym_abstract] = ACTIONS(3085), + [anon_sym_global] = ACTIONS(3085), + [anon_sym_interface] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [sym__automatic_semicolon] = ACTIONS(3089), [sym_html_comment] = ACTIONS(5), }, [911] = { [sym_comment] = STATE(911), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LTtemplate_GT] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_global] = ACTIONS(2134), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym__automatic_semicolon] = ACTIONS(2138), [sym_html_comment] = ACTIONS(5), }, [912] = { [sym_comment] = STATE(912), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2241), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, [913] = { - [sym_else_clause] = STATE(1149), + [sym_statement_block] = STATE(1419), [sym_comment] = STATE(913), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LTtemplate_GT] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_void] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3066), - [sym_number] = ACTIONS(3066), - [sym_private_property_identifier] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - [sym_super] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_undefined] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_declare] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_any] = ACTIONS(3066), - [anon_sym_number] = ACTIONS(3066), - [anon_sym_boolean] = ACTIONS(3066), - [anon_sym_string] = ACTIONS(3066), - [anon_sym_symbol] = ACTIONS(3066), - [anon_sym_object] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [914] = { + [sym_statement_block] = STATE(1419), [sym_comment] = STATE(914), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3070), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [915] = { [sym_comment] = STATE(915), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [916] = { [sym_comment] = STATE(916), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_catch] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_global] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, [917] = { + [sym_statement_block] = STATE(1194), [sym_comment] = STATE(917), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2171), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [918] = { [sym_comment] = STATE(918), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym_statement_block] = STATE(1118), [sym_comment] = STATE(919), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3099), [sym_html_comment] = ACTIONS(5), }, [920] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(920), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym_statement_block] = STATE(1301), [sym_comment] = STATE(921), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [sym__automatic_semicolon] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym_statement_block] = STATE(1301), [sym_comment] = STATE(922), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_identifier] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_var] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_await] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_debugger] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_finally] = ACTIONS(3101), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LTtemplate_GT] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_async] = ACTIONS(3101), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_SLASH] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_void] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3101), + [sym_number] = ACTIONS(3101), + [sym_private_property_identifier] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), + [sym_super] = ACTIONS(3101), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [sym_null] = ACTIONS(3101), + [sym_undefined] = ACTIONS(3101), + [anon_sym_AT] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_get] = ACTIONS(3101), + [anon_sym_set] = ACTIONS(3101), + [anon_sym_declare] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_any] = ACTIONS(3101), + [anon_sym_number] = ACTIONS(3101), + [anon_sym_boolean] = ACTIONS(3101), + [anon_sym_string] = ACTIONS(3101), + [anon_sym_symbol] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), [sym_html_comment] = ACTIONS(5), }, [923] = { [sym_comment] = STATE(923), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2217), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3103), [sym_html_comment] = ACTIONS(5), }, [924] = { [sym_comment] = STATE(924), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3078), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_global] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2192), [sym_html_comment] = ACTIONS(5), }, [925] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(925), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [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_abstract] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2163), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [926] = { + [sym_else_clause] = STATE(1216), [sym_comment] = STATE(926), - [sym_identifier] = ACTIONS(3080), - [anon_sym_export] = ACTIONS(3080), - [anon_sym_default] = ACTIONS(3080), - [anon_sym_type] = ACTIONS(3080), - [anon_sym_namespace] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3080), - [anon_sym_import] = ACTIONS(3080), - [anon_sym_with] = ACTIONS(3080), - [anon_sym_var] = ACTIONS(3080), - [anon_sym_let] = ACTIONS(3080), - [anon_sym_const] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_await] = ACTIONS(3080), - [anon_sym_while] = ACTIONS(3080), - [anon_sym_do] = ACTIONS(3080), - [anon_sym_try] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_debugger] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_throw] = ACTIONS(3080), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3080), - [anon_sym_yield] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_LTtemplate_GT] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_class] = ACTIONS(3080), - [anon_sym_async] = ACTIONS(3080), - [anon_sym_function] = ACTIONS(3080), - [anon_sym_new] = ACTIONS(3080), - [anon_sym_using] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_void] = ACTIONS(3080), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3080), - [sym_number] = ACTIONS(3080), - [sym_private_property_identifier] = ACTIONS(3080), - [sym_this] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_null] = ACTIONS(3080), - [sym_undefined] = ACTIONS(3080), - [anon_sym_AT] = ACTIONS(3080), - [anon_sym_static] = ACTIONS(3080), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3080), - [anon_sym_set] = ACTIONS(3080), - [anon_sym_declare] = ACTIONS(3080), - [anon_sym_public] = ACTIONS(3080), - [anon_sym_private] = ACTIONS(3080), - [anon_sym_protected] = ACTIONS(3080), - [anon_sym_override] = ACTIONS(3080), - [anon_sym_module] = ACTIONS(3080), - [anon_sym_any] = ACTIONS(3080), - [anon_sym_number] = ACTIONS(3080), - [anon_sym_boolean] = ACTIONS(3080), - [anon_sym_string] = ACTIONS(3080), - [anon_sym_symbol] = ACTIONS(3080), - [anon_sym_object] = ACTIONS(3080), - [anon_sym_abstract] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_enum] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_type] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_typeof] = ACTIONS(3105), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_await] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_debugger] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LTtemplate_GT] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_async] = ACTIONS(3105), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_SLASH] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_void] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3105), + [sym_number] = ACTIONS(3105), + [sym_private_property_identifier] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), + [sym_super] = ACTIONS(3105), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [sym_null] = ACTIONS(3105), + [sym_undefined] = ACTIONS(3105), + [anon_sym_AT] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_readonly] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3105), + [anon_sym_set] = ACTIONS(3105), + [anon_sym_declare] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_protected] = ACTIONS(3105), + [anon_sym_override] = ACTIONS(3105), + [anon_sym_module] = ACTIONS(3105), + [anon_sym_any] = ACTIONS(3105), + [anon_sym_number] = ACTIONS(3105), + [anon_sym_boolean] = ACTIONS(3105), + [anon_sym_string] = ACTIONS(3105), + [anon_sym_symbol] = ACTIONS(3105), + [anon_sym_object] = ACTIONS(3105), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_global] = ACTIONS(3105), + [anon_sym_interface] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), [sym_html_comment] = ACTIONS(5), }, [927] = { [sym_comment] = STATE(927), - [sym_identifier] = ACTIONS(3086), - [anon_sym_export] = ACTIONS(3086), - [anon_sym_default] = ACTIONS(3086), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_typeof] = ACTIONS(3086), - [anon_sym_import] = ACTIONS(3086), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_var] = ACTIONS(3086), - [anon_sym_let] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_else] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_await] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_debugger] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_case] = ACTIONS(3086), - [anon_sym_finally] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_LTtemplate_GT] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(3086), - [anon_sym_SQUOTE] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_async] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_void] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3086), - [sym_number] = ACTIONS(3086), - [sym_private_property_identifier] = ACTIONS(3086), - [sym_this] = ACTIONS(3086), - [sym_super] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_null] = ACTIONS(3086), - [sym_undefined] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_readonly] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(3086), - [anon_sym_set] = ACTIONS(3086), - [anon_sym_declare] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [anon_sym_override] = ACTIONS(3086), - [anon_sym_module] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(3086), - [anon_sym_number] = ACTIONS(3086), - [anon_sym_boolean] = ACTIONS(3086), - [anon_sym_string] = ACTIONS(3086), - [anon_sym_symbol] = ACTIONS(3086), - [anon_sym_object] = ACTIONS(3086), - [anon_sym_abstract] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3109), [sym_html_comment] = ACTIONS(5), }, [928] = { - [sym_statement_block] = STATE(1292), [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_identifier] = ACTIONS(3111), + [anon_sym_export] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_type] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_typeof] = ACTIONS(3111), + [anon_sym_import] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3111), + [anon_sym_var] = ACTIONS(3111), + [anon_sym_let] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_debugger] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3111), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_LTtemplate_GT] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3111), + [sym_number] = ACTIONS(3111), + [sym_private_property_identifier] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [sym_super] = ACTIONS(3111), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [sym_null] = ACTIONS(3111), + [sym_undefined] = ACTIONS(3111), + [anon_sym_AT] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_get] = ACTIONS(3111), + [anon_sym_set] = ACTIONS(3111), + [anon_sym_declare] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_module] = ACTIONS(3111), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_interface] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), [sym_html_comment] = ACTIONS(5), }, [929] = { - [sym_statement_block] = STATE(1292), + [sym_finally_clause] = STATE(1261), [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [ts_builtin_sym_end] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3061), + [anon_sym_export] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_namespace] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_typeof] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_var] = ACTIONS(3061), + [anon_sym_let] = ACTIONS(3061), + [anon_sym_const] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_switch] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_await] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_debugger] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_finally] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_LTtemplate_GT] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_class] = ACTIONS(3061), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_function] = ACTIONS(3061), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_void] = ACTIONS(3061), + [anon_sym_delete] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3061), + [sym_number] = ACTIONS(3061), + [sym_private_property_identifier] = ACTIONS(3061), + [sym_this] = ACTIONS(3061), + [sym_super] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_null] = ACTIONS(3061), + [sym_undefined] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_static] = ACTIONS(3061), + [anon_sym_readonly] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(3061), + [anon_sym_set] = ACTIONS(3061), + [anon_sym_declare] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_module] = ACTIONS(3061), + [anon_sym_any] = ACTIONS(3061), + [anon_sym_number] = ACTIONS(3061), + [anon_sym_boolean] = ACTIONS(3061), + [anon_sym_string] = ACTIONS(3061), + [anon_sym_symbol] = ACTIONS(3061), + [anon_sym_object] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_global] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), [sym_html_comment] = ACTIONS(5), }, [930] = { [sym_comment] = STATE(930), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3094), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_finally] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [931] = { [sym_comment] = STATE(931), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_catch] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, [932] = { [sym_comment] = STATE(932), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_debugger] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LTtemplate_GT] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_private_property_identifier] = ACTIONS(2097), - [sym_this] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_null] = ACTIONS(2097), - [sym_undefined] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_get] = ACTIONS(2097), - [anon_sym_set] = ACTIONS(2097), - [anon_sym_declare] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_private] = ACTIONS(2097), - [anon_sym_protected] = ACTIONS(2097), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_any] = ACTIONS(2097), - [anon_sym_number] = ACTIONS(2097), - [anon_sym_boolean] = ACTIONS(2097), - [anon_sym_string] = ACTIONS(2097), - [anon_sym_symbol] = ACTIONS(2097), - [anon_sym_object] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2101), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3117), [sym_html_comment] = ACTIONS(5), }, [933] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(933), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_case] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_private_property_identifier] = ACTIONS(2089), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym__automatic_semicolon] = ACTIONS(2093), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [934] = { [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3096), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2096), [sym_html_comment] = ACTIONS(5), }, [935] = { [sym_comment] = STATE(935), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3119), [sym_html_comment] = ACTIONS(5), }, [936] = { [sym_comment] = STATE(936), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_default] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_case] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_private_property_identifier] = ACTIONS(2259), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_override] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_object] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym__automatic_semicolon] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LTtemplate_GT] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_private_property_identifier] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_global] = ACTIONS(2124), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [sym__automatic_semicolon] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, [937] = { + [sym_finally_clause] = STATE(1240), [sym_comment] = STATE(937), - [sym_identifier] = ACTIONS(3098), - [anon_sym_export] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_type] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3098), - [anon_sym_typeof] = ACTIONS(3098), - [anon_sym_import] = ACTIONS(3098), - [anon_sym_with] = ACTIONS(3098), - [anon_sym_var] = ACTIONS(3098), - [anon_sym_let] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym_await] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_debugger] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_finally] = ACTIONS(3098), - [anon_sym_yield] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_LTtemplate_GT] = ACTIONS(3098), - [anon_sym_DQUOTE] = ACTIONS(3098), - [anon_sym_SQUOTE] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_async] = ACTIONS(3098), - [anon_sym_function] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_void] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3098), - [sym_number] = ACTIONS(3098), - [sym_private_property_identifier] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), - [sym_super] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_undefined] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_readonly] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(3098), - [anon_sym_set] = ACTIONS(3098), - [anon_sym_declare] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [anon_sym_override] = ACTIONS(3098), - [anon_sym_module] = ACTIONS(3098), - [anon_sym_any] = ACTIONS(3098), - [anon_sym_number] = ACTIONS(3098), - [anon_sym_boolean] = ACTIONS(3098), - [anon_sym_string] = ACTIONS(3098), - [anon_sym_symbol] = ACTIONS(3098), - [anon_sym_object] = ACTIONS(3098), - [anon_sym_abstract] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3061), + [anon_sym_export] = ACTIONS(3061), + [anon_sym_default] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_namespace] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_typeof] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_var] = ACTIONS(3061), + [anon_sym_let] = ACTIONS(3061), + [anon_sym_const] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_switch] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_await] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_debugger] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_case] = ACTIONS(3061), + [anon_sym_finally] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_LTtemplate_GT] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_class] = ACTIONS(3061), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_function] = ACTIONS(3061), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_void] = ACTIONS(3061), + [anon_sym_delete] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3061), + [sym_number] = ACTIONS(3061), + [sym_private_property_identifier] = ACTIONS(3061), + [sym_this] = ACTIONS(3061), + [sym_super] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_null] = ACTIONS(3061), + [sym_undefined] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_static] = ACTIONS(3061), + [anon_sym_readonly] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(3061), + [anon_sym_set] = ACTIONS(3061), + [anon_sym_declare] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_module] = ACTIONS(3061), + [anon_sym_any] = ACTIONS(3061), + [anon_sym_number] = ACTIONS(3061), + [anon_sym_boolean] = ACTIONS(3061), + [anon_sym_string] = ACTIONS(3061), + [anon_sym_symbol] = ACTIONS(3061), + [anon_sym_object] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_global] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), [sym_html_comment] = ACTIONS(5), }, [938] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(938), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_debugger] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LTtemplate_GT] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_private_property_identifier] = ACTIONS(2245), - [sym_this] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_null] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_get] = ACTIONS(2245), - [anon_sym_set] = ACTIONS(2245), - [anon_sym_declare] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_private] = ACTIONS(2245), - [anon_sym_protected] = ACTIONS(2245), - [anon_sym_override] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_any] = ACTIONS(2245), - [anon_sym_number] = ACTIONS(2245), - [anon_sym_boolean] = ACTIONS(2245), - [anon_sym_string] = ACTIONS(2245), - [anon_sym_symbol] = ACTIONS(2245), - [anon_sym_object] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [939] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(939), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2179), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [940] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_catch] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3100), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [941] = { [sym_comment] = STATE(941), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_else] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_case] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_using] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_private_property_identifier] = ACTIONS(2139), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [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_abstract] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym__automatic_semicolon] = ACTIONS(2143), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [942] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(942), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [943] = { [sym_comment] = STATE(943), - [sym_identifier] = ACTIONS(3102), - [anon_sym_export] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_with] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [anon_sym_let] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_await] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_debugger] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_yield] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_LTtemplate_GT] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_async] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - [sym_super] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_null] = ACTIONS(3102), - [sym_undefined] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_readonly] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_declare] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_module] = ACTIONS(3102), - [anon_sym_any] = ACTIONS(3102), - [anon_sym_number] = ACTIONS(3102), - [anon_sym_boolean] = ACTIONS(3102), - [anon_sym_string] = ACTIONS(3102), - [anon_sym_symbol] = ACTIONS(3102), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_abstract] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [sym__automatic_semicolon] = ACTIONS(3104), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, [944] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(944), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2063), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [945] = { [sym_comment] = STATE(945), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_global] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2216), [sym_html_comment] = ACTIONS(5), }, [946] = { [sym_comment] = STATE(946), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_default] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_case] = ACTIONS(3106), - [anon_sym_finally] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_LTtemplate_GT] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LTtemplate_GT] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_number] = ACTIONS(2148), + [sym_private_property_identifier] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_global] = ACTIONS(2148), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [sym__automatic_semicolon] = ACTIONS(2152), [sym_html_comment] = ACTIONS(5), }, [947] = { [sym_comment] = STATE(947), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3108), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_global] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2272), [sym_html_comment] = ACTIONS(5), }, [948] = { [sym_comment] = STATE(948), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_global] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2280), [sym_html_comment] = ACTIONS(5), }, [949] = { [sym_comment] = STATE(949), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3110), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_else] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LTtemplate_GT] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [sym_private_property_identifier] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_global] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2240), [sym_html_comment] = ACTIONS(5), }, [950] = { [sym_comment] = STATE(950), - [sym_identifier] = ACTIONS(3112), - [anon_sym_export] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_type] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3112), - [anon_sym_import] = ACTIONS(3112), - [anon_sym_with] = ACTIONS(3112), - [anon_sym_var] = ACTIONS(3112), - [anon_sym_let] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_await] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_debugger] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_yield] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_LTtemplate_GT] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_async] = ACTIONS(3112), - [anon_sym_function] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_void] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_number] = ACTIONS(3112), - [sym_private_property_identifier] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - [sym_super] = ACTIONS(3112), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [sym_null] = ACTIONS(3112), - [sym_undefined] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_readonly] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_declare] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_override] = ACTIONS(3112), - [anon_sym_module] = ACTIONS(3112), - [anon_sym_any] = ACTIONS(3112), - [anon_sym_number] = ACTIONS(3112), - [anon_sym_boolean] = ACTIONS(3112), - [anon_sym_string] = ACTIONS(3112), - [anon_sym_symbol] = ACTIONS(3112), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_abstract] = ACTIONS(3112), - [anon_sym_interface] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [sym__automatic_semicolon] = ACTIONS(3114), + [sym_identifier] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_else] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_debugger] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_case] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LTtemplate_GT] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2110), + [anon_sym_delete] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_private_property_identifier] = ACTIONS(2110), + [sym_this] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_true] = ACTIONS(2110), + [sym_false] = ACTIONS(2110), + [sym_null] = ACTIONS(2110), + [sym_undefined] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_global] = ACTIONS(2110), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [sym__automatic_semicolon] = ACTIONS(2114), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym_finally_clause] = STATE(1439), [sym_comment] = STATE(951), - [ts_builtin_sym_end] = ACTIONS(3116), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_namespace] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_typeof] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [anon_sym_let] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_await] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_debugger] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_finally] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3046), - [anon_sym_LTtemplate_GT] = ACTIONS(3046), - [anon_sym_DQUOTE] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_class] = ACTIONS(3046), - [anon_sym_async] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_using] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_void] = ACTIONS(3046), - [anon_sym_delete] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3046), - [sym_number] = ACTIONS(3046), - [sym_private_property_identifier] = ACTIONS(3046), - [sym_this] = ACTIONS(3046), - [sym_super] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(3046), - [anon_sym_set] = ACTIONS(3046), - [anon_sym_declare] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_protected] = ACTIONS(3046), - [anon_sym_override] = ACTIONS(3046), - [anon_sym_module] = ACTIONS(3046), - [anon_sym_any] = ACTIONS(3046), - [anon_sym_number] = ACTIONS(3046), - [anon_sym_boolean] = ACTIONS(3046), - [anon_sym_string] = ACTIONS(3046), - [anon_sym_symbol] = ACTIONS(3046), - [anon_sym_object] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3123), + [anon_sym_export] = ACTIONS(3123), + [anon_sym_default] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_typeof] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_var] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_debugger] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_case] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LTtemplate_GT] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_void] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3123), + [sym_number] = ACTIONS(3123), + [sym_private_property_identifier] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [sym_super] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_AT] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3123), + [anon_sym_set] = ACTIONS(3123), + [anon_sym_declare] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_private] = ACTIONS(3123), + [anon_sym_protected] = ACTIONS(3123), + [anon_sym_override] = ACTIONS(3123), + [anon_sym_module] = ACTIONS(3123), + [anon_sym_any] = ACTIONS(3123), + [anon_sym_number] = ACTIONS(3123), + [anon_sym_boolean] = ACTIONS(3123), + [anon_sym_string] = ACTIONS(3123), + [anon_sym_symbol] = ACTIONS(3123), + [anon_sym_object] = ACTIONS(3123), + [anon_sym_abstract] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_interface] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [sym__automatic_semicolon] = ACTIONS(3125), [sym_html_comment] = ACTIONS(5), }, [952] = { [sym_comment] = STATE(952), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_finally] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [953] = { [sym_comment] = STATE(953), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym__automatic_semicolon] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [954] = { - [sym_else_clause] = STATE(1217), + [sym_else_clause] = STATE(1027), [sym_comment] = STATE(954), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3118), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LTtemplate_GT] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_void] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3066), - [sym_number] = ACTIONS(3066), - [sym_private_property_identifier] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - [sym_super] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_undefined] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_declare] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_any] = ACTIONS(3066), - [anon_sym_number] = ACTIONS(3066), - [anon_sym_boolean] = ACTIONS(3066), - [anon_sym_string] = ACTIONS(3066), - [anon_sym_symbol] = ACTIONS(3066), - [anon_sym_object] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_type] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_typeof] = ACTIONS(3105), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_await] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_debugger] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LTtemplate_GT] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_async] = ACTIONS(3105), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_SLASH] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_void] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3105), + [sym_number] = ACTIONS(3105), + [sym_private_property_identifier] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), + [sym_super] = ACTIONS(3105), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [sym_null] = ACTIONS(3105), + [sym_undefined] = ACTIONS(3105), + [anon_sym_AT] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_readonly] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3105), + [anon_sym_set] = ACTIONS(3105), + [anon_sym_declare] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_protected] = ACTIONS(3105), + [anon_sym_override] = ACTIONS(3105), + [anon_sym_module] = ACTIONS(3105), + [anon_sym_any] = ACTIONS(3105), + [anon_sym_number] = ACTIONS(3105), + [anon_sym_boolean] = ACTIONS(3105), + [anon_sym_string] = ACTIONS(3105), + [anon_sym_symbol] = ACTIONS(3105), + [anon_sym_object] = ACTIONS(3105), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_global] = ACTIONS(3105), + [anon_sym_interface] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), [sym_html_comment] = ACTIONS(5), }, [955] = { [sym_comment] = STATE(955), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3120), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [956] = { [sym_comment] = STATE(956), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LTtemplate_GT] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_private_property_identifier] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_global] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), [sym_html_comment] = ACTIONS(5), }, [957] = { [sym_comment] = STATE(957), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_global] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2226), [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym_finally_clause] = STATE(1184), [sym_comment] = STATE(958), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3046), - [anon_sym_default] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_namespace] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_typeof] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [anon_sym_let] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_await] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_debugger] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_case] = ACTIONS(3046), - [anon_sym_finally] = ACTIONS(3032), - [anon_sym_yield] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3046), - [anon_sym_LTtemplate_GT] = ACTIONS(3046), - [anon_sym_DQUOTE] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_class] = ACTIONS(3046), - [anon_sym_async] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_using] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_void] = ACTIONS(3046), - [anon_sym_delete] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3046), - [sym_number] = ACTIONS(3046), - [sym_private_property_identifier] = ACTIONS(3046), - [sym_this] = ACTIONS(3046), - [sym_super] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(3046), - [anon_sym_set] = ACTIONS(3046), - [anon_sym_declare] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_protected] = ACTIONS(3046), - [anon_sym_override] = ACTIONS(3046), - [anon_sym_module] = ACTIONS(3046), - [anon_sym_any] = ACTIONS(3046), - [anon_sym_number] = ACTIONS(3046), - [anon_sym_boolean] = ACTIONS(3046), - [anon_sym_string] = ACTIONS(3046), - [anon_sym_symbol] = ACTIONS(3046), - [anon_sym_object] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_global] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), [sym_html_comment] = ACTIONS(5), }, [959] = { + [sym__call_signature] = STATE(7058), [sym_comment] = STATE(959), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3122), + [sym_formal_parameters] = STATE(4786), + [sym_type_parameters] = STATE(6818), + [sym_identifier] = ACTIONS(2985), + [anon_sym_export] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_get] = ACTIONS(2987), + [anon_sym_set] = ACTIONS(2987), + [anon_sym_declare] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_private] = ACTIONS(2987), + [anon_sym_protected] = ACTIONS(2987), + [anon_sym_override] = ACTIONS(2987), + [anon_sym_module] = ACTIONS(2987), + [anon_sym_any] = ACTIONS(2987), + [anon_sym_number] = ACTIONS(2987), + [anon_sym_boolean] = ACTIONS(2987), + [anon_sym_string] = ACTIONS(2987), + [anon_sym_symbol] = ACTIONS(2987), + [anon_sym_object] = ACTIONS(2987), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [960] = { [sym_comment] = STATE(960), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_finally] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [961] = { [sym_comment] = STATE(961), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_LTtemplate_GT] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_SQUOTE] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3124), - [sym_number] = ACTIONS(3124), - [sym_private_property_identifier] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_object] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LTtemplate_GT] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_private_property_identifier] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_global] = ACTIONS(2124), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [sym__automatic_semicolon] = ACTIONS(2362), [sym_html_comment] = ACTIONS(5), }, [962] = { [sym_comment] = STATE(962), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2329), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [sym__automatic_semicolon] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [963] = { + [sym_else_clause] = STATE(1253), [sym_comment] = STATE(963), - [sym_identifier] = ACTIONS(3126), - [anon_sym_export] = ACTIONS(3126), - [anon_sym_default] = ACTIONS(3126), - [anon_sym_type] = ACTIONS(3126), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3126), - [anon_sym_import] = ACTIONS(3126), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [anon_sym_let] = ACTIONS(3126), - [anon_sym_const] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_debugger] = ACTIONS(3126), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LTtemplate_GT] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_class] = ACTIONS(3126), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_private_property_identifier] = ACTIONS(3126), - [sym_this] = ACTIONS(3126), - [sym_super] = ACTIONS(3126), - [sym_true] = ACTIONS(3126), - [sym_false] = ACTIONS(3126), - [sym_null] = ACTIONS(3126), - [sym_undefined] = ACTIONS(3126), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_get] = ACTIONS(3126), - [anon_sym_set] = ACTIONS(3126), - [anon_sym_declare] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_module] = ACTIONS(3126), - [anon_sym_any] = ACTIONS(3126), - [anon_sym_number] = ACTIONS(3126), - [anon_sym_boolean] = ACTIONS(3126), - [anon_sym_string] = ACTIONS(3126), - [anon_sym_symbol] = ACTIONS(3126), - [anon_sym_object] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_interface] = ACTIONS(3126), - [anon_sym_enum] = ACTIONS(3126), + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3105), + [anon_sym_type] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_typeof] = ACTIONS(3105), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_await] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_debugger] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LTtemplate_GT] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_async] = ACTIONS(3105), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_SLASH] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_void] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3105), + [sym_number] = ACTIONS(3105), + [sym_private_property_identifier] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), + [sym_super] = ACTIONS(3105), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [sym_null] = ACTIONS(3105), + [sym_undefined] = ACTIONS(3105), + [anon_sym_AT] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_readonly] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3105), + [anon_sym_set] = ACTIONS(3105), + [anon_sym_declare] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_protected] = ACTIONS(3105), + [anon_sym_override] = ACTIONS(3105), + [anon_sym_module] = ACTIONS(3105), + [anon_sym_any] = ACTIONS(3105), + [anon_sym_number] = ACTIONS(3105), + [anon_sym_boolean] = ACTIONS(3105), + [anon_sym_string] = ACTIONS(3105), + [anon_sym_symbol] = ACTIONS(3105), + [anon_sym_object] = ACTIONS(3105), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_global] = ACTIONS(3105), + [anon_sym_interface] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), [sym_html_comment] = ACTIONS(5), }, [964] = { [sym_comment] = STATE(964), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [sym_identifier] = ACTIONS(3135), + [anon_sym_export] = ACTIONS(3135), + [anon_sym_default] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_namespace] = ACTIONS(3135), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_typeof] = ACTIONS(3135), + [anon_sym_import] = ACTIONS(3135), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_var] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_const] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_switch] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_await] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_break] = ACTIONS(3135), + [anon_sym_continue] = ACTIONS(3135), + [anon_sym_debugger] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_throw] = ACTIONS(3135), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_case] = ACTIONS(3135), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LTtemplate_GT] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_SQUOTE] = ACTIONS(3135), + [anon_sym_class] = ACTIONS(3135), + [anon_sym_async] = ACTIONS(3135), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_using] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_void] = ACTIONS(3135), + [anon_sym_delete] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3135), + [sym_number] = ACTIONS(3135), + [sym_private_property_identifier] = ACTIONS(3135), + [sym_this] = ACTIONS(3135), + [sym_super] = ACTIONS(3135), + [sym_true] = ACTIONS(3135), + [sym_false] = ACTIONS(3135), + [sym_null] = ACTIONS(3135), + [sym_undefined] = ACTIONS(3135), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_static] = ACTIONS(3135), + [anon_sym_readonly] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3135), + [anon_sym_set] = ACTIONS(3135), + [anon_sym_declare] = ACTIONS(3135), + [anon_sym_public] = ACTIONS(3135), + [anon_sym_private] = ACTIONS(3135), + [anon_sym_protected] = ACTIONS(3135), + [anon_sym_override] = ACTIONS(3135), + [anon_sym_module] = ACTIONS(3135), + [anon_sym_any] = ACTIONS(3135), + [anon_sym_number] = ACTIONS(3135), + [anon_sym_boolean] = ACTIONS(3135), + [anon_sym_string] = ACTIONS(3135), + [anon_sym_symbol] = ACTIONS(3135), + [anon_sym_object] = ACTIONS(3135), + [anon_sym_abstract] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3135), + [anon_sym_interface] = ACTIONS(3135), + [anon_sym_enum] = ACTIONS(3135), [sym_html_comment] = ACTIONS(5), }, [965] = { [sym_comment] = STATE(965), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_global] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2322), [sym_html_comment] = ACTIONS(5), }, [966] = { [sym_comment] = STATE(966), - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2341), + [sym_identifier] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_debugger] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LTtemplate_GT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3137), + [sym_number] = ACTIONS(3137), + [sym_private_property_identifier] = ACTIONS(3137), + [sym_this] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_undefined] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_declare] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_any] = ACTIONS(3137), + [anon_sym_number] = ACTIONS(3137), + [anon_sym_boolean] = ACTIONS(3137), + [anon_sym_string] = ACTIONS(3137), + [anon_sym_symbol] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), [sym_html_comment] = ACTIONS(5), }, [967] = { [sym_comment] = STATE(967), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_finally] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3130), + [sym_identifier] = ACTIONS(3139), + [anon_sym_export] = ACTIONS(3139), + [anon_sym_default] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_namespace] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_typeof] = ACTIONS(3139), + [anon_sym_import] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), + [anon_sym_var] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_debugger] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_throw] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_case] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LTtemplate_GT] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_class] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3139), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_void] = ACTIONS(3139), + [anon_sym_delete] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3139), + [sym_number] = ACTIONS(3139), + [sym_private_property_identifier] = ACTIONS(3139), + [sym_this] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_true] = ACTIONS(3139), + [sym_false] = ACTIONS(3139), + [sym_null] = ACTIONS(3139), + [sym_undefined] = ACTIONS(3139), + [anon_sym_AT] = ACTIONS(3139), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_readonly] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3139), + [anon_sym_set] = ACTIONS(3139), + [anon_sym_declare] = ACTIONS(3139), + [anon_sym_public] = ACTIONS(3139), + [anon_sym_private] = ACTIONS(3139), + [anon_sym_protected] = ACTIONS(3139), + [anon_sym_override] = ACTIONS(3139), + [anon_sym_module] = ACTIONS(3139), + [anon_sym_any] = ACTIONS(3139), + [anon_sym_number] = ACTIONS(3139), + [anon_sym_boolean] = ACTIONS(3139), + [anon_sym_string] = ACTIONS(3139), + [anon_sym_symbol] = ACTIONS(3139), + [anon_sym_object] = ACTIONS(3139), + [anon_sym_abstract] = ACTIONS(3139), + [anon_sym_global] = ACTIONS(3139), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [968] = { [sym_comment] = STATE(968), - [sym_identifier] = ACTIONS(3102), - [anon_sym_export] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_with] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [anon_sym_let] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_await] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_debugger] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_yield] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_LTtemplate_GT] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_async] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - [sym_super] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_null] = ACTIONS(3102), - [sym_undefined] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_readonly] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_declare] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_module] = ACTIONS(3102), - [anon_sym_any] = ACTIONS(3102), - [anon_sym_number] = ACTIONS(3102), - [anon_sym_boolean] = ACTIONS(3102), - [anon_sym_string] = ACTIONS(3102), - [anon_sym_symbol] = ACTIONS(3102), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_abstract] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [sym__automatic_semicolon] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_debugger] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LTtemplate_GT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3137), + [sym_number] = ACTIONS(3137), + [sym_private_property_identifier] = ACTIONS(3137), + [sym_this] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_undefined] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_declare] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_any] = ACTIONS(3137), + [anon_sym_number] = ACTIONS(3137), + [anon_sym_boolean] = ACTIONS(3137), + [anon_sym_string] = ACTIONS(3137), + [anon_sym_symbol] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), [sym_html_comment] = ACTIONS(5), }, [969] = { [sym_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_global] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2350), [sym_html_comment] = ACTIONS(5), }, [970] = { [sym_comment] = STATE(970), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3141), + [anon_sym_export] = ACTIONS(3141), + [anon_sym_default] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_namespace] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_typeof] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [anon_sym_let] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_debugger] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_case] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LTtemplate_GT] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_void] = ACTIONS(3141), + [anon_sym_delete] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3141), + [sym_number] = ACTIONS(3141), + [sym_private_property_identifier] = ACTIONS(3141), + [sym_this] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_null] = ACTIONS(3141), + [sym_undefined] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_declare] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_module] = ACTIONS(3141), + [anon_sym_any] = ACTIONS(3141), + [anon_sym_number] = ACTIONS(3141), + [anon_sym_boolean] = ACTIONS(3141), + [anon_sym_string] = ACTIONS(3141), + [anon_sym_symbol] = ACTIONS(3141), + [anon_sym_object] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), [sym_html_comment] = ACTIONS(5), }, [971] = { [sym_comment] = STATE(971), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_global] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2334), [sym_html_comment] = ACTIONS(5), }, [972] = { [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3134), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_else] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_debugger] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LTtemplate_GT] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2110), + [anon_sym_delete] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_private_property_identifier] = ACTIONS(2110), + [sym_this] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_true] = ACTIONS(2110), + [sym_false] = ACTIONS(2110), + [sym_null] = ACTIONS(2110), + [sym_undefined] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_global] = ACTIONS(2110), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [sym__automatic_semicolon] = ACTIONS(2342), [sym_html_comment] = ACTIONS(5), }, [973] = { [sym_comment] = STATE(973), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [sym_identifier] = ACTIONS(3143), + [anon_sym_export] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_typeof] = ACTIONS(3143), + [anon_sym_import] = ACTIONS(3143), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_var] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_await] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_debugger] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_case] = ACTIONS(3143), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LTtemplate_GT] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_SQUOTE] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_async] = ACTIONS(3143), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_void] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3143), + [sym_number] = ACTIONS(3143), + [sym_private_property_identifier] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [sym_super] = ACTIONS(3143), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [sym_null] = ACTIONS(3143), + [sym_undefined] = ACTIONS(3143), + [anon_sym_AT] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_readonly] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3143), + [anon_sym_set] = ACTIONS(3143), + [anon_sym_declare] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_private] = ACTIONS(3143), + [anon_sym_protected] = ACTIONS(3143), + [anon_sym_override] = ACTIONS(3143), + [anon_sym_module] = ACTIONS(3143), + [anon_sym_any] = ACTIONS(3143), + [anon_sym_number] = ACTIONS(3143), + [anon_sym_boolean] = ACTIONS(3143), + [anon_sym_string] = ACTIONS(3143), + [anon_sym_symbol] = ACTIONS(3143), + [anon_sym_object] = ACTIONS(3143), + [anon_sym_abstract] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3143), + [anon_sym_interface] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), [sym_html_comment] = ACTIONS(5), }, [974] = { [sym_comment] = STATE(974), - [ts_builtin_sym_end] = ACTIONS(3138), - [sym_identifier] = ACTIONS(3080), - [anon_sym_export] = ACTIONS(3080), - [anon_sym_type] = ACTIONS(3080), - [anon_sym_namespace] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3080), - [anon_sym_import] = ACTIONS(3080), - [anon_sym_with] = ACTIONS(3080), - [anon_sym_var] = ACTIONS(3080), - [anon_sym_let] = ACTIONS(3080), - [anon_sym_const] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_await] = ACTIONS(3080), - [anon_sym_while] = ACTIONS(3080), - [anon_sym_do] = ACTIONS(3080), - [anon_sym_try] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_debugger] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_throw] = ACTIONS(3080), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_LTtemplate_GT] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_class] = ACTIONS(3080), - [anon_sym_async] = ACTIONS(3080), - [anon_sym_function] = ACTIONS(3080), - [anon_sym_new] = ACTIONS(3080), - [anon_sym_using] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_void] = ACTIONS(3080), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3080), - [sym_number] = ACTIONS(3080), - [sym_private_property_identifier] = ACTIONS(3080), - [sym_this] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_null] = ACTIONS(3080), - [sym_undefined] = ACTIONS(3080), - [anon_sym_AT] = ACTIONS(3080), - [anon_sym_static] = ACTIONS(3080), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3080), - [anon_sym_set] = ACTIONS(3080), - [anon_sym_declare] = ACTIONS(3080), - [anon_sym_public] = ACTIONS(3080), - [anon_sym_private] = ACTIONS(3080), - [anon_sym_protected] = ACTIONS(3080), - [anon_sym_override] = ACTIONS(3080), - [anon_sym_module] = ACTIONS(3080), - [anon_sym_any] = ACTIONS(3080), - [anon_sym_number] = ACTIONS(3080), - [anon_sym_boolean] = ACTIONS(3080), - [anon_sym_string] = ACTIONS(3080), - [anon_sym_symbol] = ACTIONS(3080), - [anon_sym_object] = ACTIONS(3080), - [anon_sym_abstract] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_enum] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3145), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_debugger] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_case] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LTtemplate_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3145), + [sym_number] = ACTIONS(3145), + [sym_private_property_identifier] = ACTIONS(3145), + [sym_this] = ACTIONS(3145), + [sym_super] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_null] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_get] = ACTIONS(3145), + [anon_sym_set] = ACTIONS(3145), + [anon_sym_declare] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_module] = ACTIONS(3145), + [anon_sym_any] = ACTIONS(3145), + [anon_sym_number] = ACTIONS(3145), + [anon_sym_boolean] = ACTIONS(3145), + [anon_sym_string] = ACTIONS(3145), + [anon_sym_symbol] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), [sym_html_comment] = ACTIONS(5), }, [975] = { [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(3144), - [sym_identifier] = ACTIONS(3086), - [anon_sym_export] = ACTIONS(3086), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_typeof] = ACTIONS(3086), - [anon_sym_import] = ACTIONS(3086), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_var] = ACTIONS(3086), - [anon_sym_let] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_else] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_await] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_debugger] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_finally] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_LTtemplate_GT] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(3086), - [anon_sym_SQUOTE] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_async] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_void] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3086), - [sym_number] = ACTIONS(3086), - [sym_private_property_identifier] = ACTIONS(3086), - [sym_this] = ACTIONS(3086), - [sym_super] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_null] = ACTIONS(3086), - [sym_undefined] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_readonly] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(3086), - [anon_sym_set] = ACTIONS(3086), - [anon_sym_declare] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [anon_sym_override] = ACTIONS(3086), - [anon_sym_module] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(3086), - [anon_sym_number] = ACTIONS(3086), - [anon_sym_boolean] = ACTIONS(3086), - [anon_sym_string] = ACTIONS(3086), - [anon_sym_symbol] = ACTIONS(3086), - [anon_sym_object] = ACTIONS(3086), - [anon_sym_abstract] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LTtemplate_GT] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [sym_private_property_identifier] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_global] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2424), [sym_html_comment] = ACTIONS(5), }, [976] = { [sym_comment] = STATE(976), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_debugger] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_case] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LTtemplate_GT] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2110), + [anon_sym_delete] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_private_property_identifier] = ACTIONS(2110), + [sym_this] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_true] = ACTIONS(2110), + [sym_false] = ACTIONS(2110), + [sym_null] = ACTIONS(2110), + [sym_undefined] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_global] = ACTIONS(2110), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [sym__automatic_semicolon] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, [977] = { [sym_comment] = STATE(977), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2111), + [sym_identifier] = ACTIONS(3147), + [anon_sym_export] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_typeof] = ACTIONS(3147), + [anon_sym_import] = ACTIONS(3147), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_var] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_else] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_await] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_debugger] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LTtemplate_GT] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_void] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3147), + [sym_number] = ACTIONS(3147), + [sym_private_property_identifier] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), + [sym_super] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_null] = ACTIONS(3147), + [sym_undefined] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_get] = ACTIONS(3147), + [anon_sym_set] = ACTIONS(3147), + [anon_sym_declare] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_private] = ACTIONS(3147), + [anon_sym_protected] = ACTIONS(3147), + [anon_sym_override] = ACTIONS(3147), + [anon_sym_module] = ACTIONS(3147), + [anon_sym_any] = ACTIONS(3147), + [anon_sym_number] = ACTIONS(3147), + [anon_sym_boolean] = ACTIONS(3147), + [anon_sym_string] = ACTIONS(3147), + [anon_sym_symbol] = ACTIONS(3147), + [anon_sym_object] = ACTIONS(3147), + [anon_sym_abstract] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3147), + [anon_sym_interface] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), [sym_html_comment] = ACTIONS(5), }, [978] = { [sym_comment] = STATE(978), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_default] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_case] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), + [sym_identifier] = ACTIONS(3149), + [anon_sym_export] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_debugger] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym_case] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_LTtemplate_GT] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_void] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3149), + [sym_number] = ACTIONS(3149), + [sym_private_property_identifier] = ACTIONS(3149), + [sym_this] = ACTIONS(3149), + [sym_super] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_null] = ACTIONS(3149), + [sym_undefined] = ACTIONS(3149), + [anon_sym_AT] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_get] = ACTIONS(3149), + [anon_sym_set] = ACTIONS(3149), + [anon_sym_declare] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_module] = ACTIONS(3149), + [anon_sym_any] = ACTIONS(3149), + [anon_sym_number] = ACTIONS(3149), + [anon_sym_boolean] = ACTIONS(3149), + [anon_sym_string] = ACTIONS(3149), + [anon_sym_symbol] = ACTIONS(3149), + [anon_sym_object] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), [sym_html_comment] = ACTIONS(5), }, [979] = { [sym_comment] = STATE(979), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_else] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LTtemplate_GT] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [sym_private_property_identifier] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_global] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2332), [sym_html_comment] = ACTIONS(5), }, [980] = { [sym_comment] = STATE(980), - [sym_identifier] = ACTIONS(3150), - [anon_sym_export] = ACTIONS(3150), - [anon_sym_default] = ACTIONS(3150), - [anon_sym_type] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_debugger] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_case] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_LTtemplate_GT] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_void] = ACTIONS(3150), - [anon_sym_delete] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_number] = ACTIONS(3150), - [sym_private_property_identifier] = ACTIONS(3150), - [sym_this] = ACTIONS(3150), - [sym_super] = ACTIONS(3150), - [sym_true] = ACTIONS(3150), - [sym_false] = ACTIONS(3150), - [sym_null] = ACTIONS(3150), - [sym_undefined] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_declare] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_module] = ACTIONS(3150), - [anon_sym_any] = ACTIONS(3150), - [anon_sym_number] = ACTIONS(3150), - [anon_sym_boolean] = ACTIONS(3150), - [anon_sym_string] = ACTIONS(3150), - [anon_sym_symbol] = ACTIONS(3150), - [anon_sym_object] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), + [sym_identifier] = ACTIONS(3151), + [anon_sym_export] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(3151), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_var] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_else] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_await] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_debugger] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LTtemplate_GT] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_SQUOTE] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_async] = ACTIONS(3151), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_void] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3151), + [sym_number] = ACTIONS(3151), + [sym_private_property_identifier] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + [sym_super] = ACTIONS(3151), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_null] = ACTIONS(3151), + [sym_undefined] = ACTIONS(3151), + [anon_sym_AT] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_readonly] = ACTIONS(3151), + [anon_sym_get] = ACTIONS(3151), + [anon_sym_set] = ACTIONS(3151), + [anon_sym_declare] = ACTIONS(3151), + [anon_sym_public] = ACTIONS(3151), + [anon_sym_private] = ACTIONS(3151), + [anon_sym_protected] = ACTIONS(3151), + [anon_sym_override] = ACTIONS(3151), + [anon_sym_module] = ACTIONS(3151), + [anon_sym_any] = ACTIONS(3151), + [anon_sym_number] = ACTIONS(3151), + [anon_sym_boolean] = ACTIONS(3151), + [anon_sym_string] = ACTIONS(3151), + [anon_sym_symbol] = ACTIONS(3151), + [anon_sym_object] = ACTIONS(3151), + [anon_sym_abstract] = ACTIONS(3151), + [anon_sym_global] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), [sym_html_comment] = ACTIONS(5), }, [981] = { [sym_comment] = STATE(981), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), + [sym_identifier] = ACTIONS(3153), + [anon_sym_export] = ACTIONS(3153), + [anon_sym_default] = ACTIONS(3153), + [anon_sym_type] = ACTIONS(3153), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3153), + [anon_sym_import] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_else] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_await] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_debugger] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_case] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_LTtemplate_GT] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_void] = ACTIONS(3153), + [anon_sym_delete] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3153), + [sym_number] = ACTIONS(3153), + [sym_private_property_identifier] = ACTIONS(3153), + [sym_this] = ACTIONS(3153), + [sym_super] = ACTIONS(3153), + [sym_true] = ACTIONS(3153), + [sym_false] = ACTIONS(3153), + [sym_null] = ACTIONS(3153), + [sym_undefined] = ACTIONS(3153), + [anon_sym_AT] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_get] = ACTIONS(3153), + [anon_sym_set] = ACTIONS(3153), + [anon_sym_declare] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_module] = ACTIONS(3153), + [anon_sym_any] = ACTIONS(3153), + [anon_sym_number] = ACTIONS(3153), + [anon_sym_boolean] = ACTIONS(3153), + [anon_sym_string] = ACTIONS(3153), + [anon_sym_symbol] = ACTIONS(3153), + [anon_sym_object] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), [sym_html_comment] = ACTIONS(5), }, [982] = { [sym_comment] = STATE(982), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), + [sym_identifier] = ACTIONS(3155), + [anon_sym_export] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_await] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_debugger] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3155), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LTtemplate_GT] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_async] = ACTIONS(3155), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_void] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3155), + [sym_number] = ACTIONS(3155), + [sym_private_property_identifier] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), + [sym_super] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_null] = ACTIONS(3155), + [sym_undefined] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_readonly] = ACTIONS(3155), + [anon_sym_get] = ACTIONS(3155), + [anon_sym_set] = ACTIONS(3155), + [anon_sym_declare] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_override] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_any] = ACTIONS(3155), + [anon_sym_number] = ACTIONS(3155), + [anon_sym_boolean] = ACTIONS(3155), + [anon_sym_string] = ACTIONS(3155), + [anon_sym_symbol] = ACTIONS(3155), + [anon_sym_object] = ACTIONS(3155), + [anon_sym_abstract] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), [sym_html_comment] = ACTIONS(5), }, [983] = { [sym_comment] = STATE(983), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [ts_builtin_sym_end] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_global] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2410), [sym_html_comment] = ACTIONS(5), }, [984] = { [sym_comment] = STATE(984), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_global] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2318), [sym_html_comment] = ACTIONS(5), }, [985] = { [sym_comment] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_catch] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_debugger] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LTtemplate_GT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3157), + [sym_number] = ACTIONS(3157), + [sym_private_property_identifier] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_super] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_get] = ACTIONS(3157), + [anon_sym_set] = ACTIONS(3157), + [anon_sym_declare] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_any] = ACTIONS(3157), + [anon_sym_number] = ACTIONS(3157), + [anon_sym_boolean] = ACTIONS(3157), + [anon_sym_string] = ACTIONS(3157), + [anon_sym_symbol] = ACTIONS(3157), + [anon_sym_object] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_global] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), [sym_html_comment] = ACTIONS(5), }, [986] = { [sym_comment] = STATE(986), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), + [sym_identifier] = ACTIONS(3159), + [anon_sym_export] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_var] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_await] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_debugger] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LTtemplate_GT] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_SQUOTE] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_async] = ACTIONS(3159), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_void] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3159), + [sym_number] = ACTIONS(3159), + [sym_private_property_identifier] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), + [sym_super] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_null] = ACTIONS(3159), + [sym_undefined] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_readonly] = ACTIONS(3159), + [anon_sym_get] = ACTIONS(3159), + [anon_sym_set] = ACTIONS(3159), + [anon_sym_declare] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_override] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_any] = ACTIONS(3159), + [anon_sym_number] = ACTIONS(3159), + [anon_sym_boolean] = ACTIONS(3159), + [anon_sym_string] = ACTIONS(3159), + [anon_sym_symbol] = ACTIONS(3159), + [anon_sym_object] = ACTIONS(3159), + [anon_sym_abstract] = ACTIONS(3159), + [anon_sym_global] = ACTIONS(3159), + [anon_sym_interface] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), [sym_html_comment] = ACTIONS(5), }, [987] = { [sym_comment] = STATE(987), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3158), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_global] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2414), [sym_html_comment] = ACTIONS(5), }, [988] = { [sym_comment] = STATE(988), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym__automatic_semicolon] = ACTIONS(2195), + [sym_identifier] = ACTIONS(3161), + [anon_sym_export] = ACTIONS(3161), + [anon_sym_default] = ACTIONS(3161), + [anon_sym_type] = ACTIONS(3161), + [anon_sym_namespace] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_typeof] = ACTIONS(3161), + [anon_sym_import] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3161), + [anon_sym_var] = ACTIONS(3161), + [anon_sym_let] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_else] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_switch] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_await] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_do] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_debugger] = ACTIONS(3161), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_case] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_LTtemplate_GT] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_async] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_using] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_SLASH] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_void] = ACTIONS(3161), + [anon_sym_delete] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3161), + [sym_number] = ACTIONS(3161), + [sym_private_property_identifier] = ACTIONS(3161), + [sym_this] = ACTIONS(3161), + [sym_super] = ACTIONS(3161), + [sym_true] = ACTIONS(3161), + [sym_false] = ACTIONS(3161), + [sym_null] = ACTIONS(3161), + [sym_undefined] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3161), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_readonly] = ACTIONS(3161), + [anon_sym_get] = ACTIONS(3161), + [anon_sym_set] = ACTIONS(3161), + [anon_sym_declare] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_private] = ACTIONS(3161), + [anon_sym_protected] = ACTIONS(3161), + [anon_sym_override] = ACTIONS(3161), + [anon_sym_module] = ACTIONS(3161), + [anon_sym_any] = ACTIONS(3161), + [anon_sym_number] = ACTIONS(3161), + [anon_sym_boolean] = ACTIONS(3161), + [anon_sym_string] = ACTIONS(3161), + [anon_sym_symbol] = ACTIONS(3161), + [anon_sym_object] = ACTIONS(3161), + [anon_sym_abstract] = ACTIONS(3161), + [anon_sym_global] = ACTIONS(3161), + [anon_sym_interface] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), [sym_html_comment] = ACTIONS(5), }, [989] = { [sym_comment] = STATE(989), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_global] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), [sym_html_comment] = ACTIONS(5), }, [990] = { [sym_comment] = STATE(990), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_else] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [sym_identifier] = ACTIONS(3165), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_type] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_typeof] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_await] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_debugger] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_case] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LTtemplate_GT] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_void] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3165), + [sym_number] = ACTIONS(3165), + [sym_private_property_identifier] = ACTIONS(3165), + [sym_this] = ACTIONS(3165), + [sym_super] = ACTIONS(3165), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [sym_null] = ACTIONS(3165), + [sym_undefined] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_readonly] = ACTIONS(3165), + [anon_sym_get] = ACTIONS(3165), + [anon_sym_set] = ACTIONS(3165), + [anon_sym_declare] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_any] = ACTIONS(3165), + [anon_sym_number] = ACTIONS(3165), + [anon_sym_boolean] = ACTIONS(3165), + [anon_sym_string] = ACTIONS(3165), + [anon_sym_symbol] = ACTIONS(3165), + [anon_sym_object] = ACTIONS(3165), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_global] = ACTIONS(3165), + [anon_sym_interface] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), [sym_html_comment] = ACTIONS(5), }, [991] = { [sym_comment] = STATE(991), - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [992] = { [sym_comment] = STATE(992), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_default] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_else] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_case] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LTtemplate_GT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_private_property_identifier] = ACTIONS(3162), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), + [sym_identifier] = ACTIONS(3169), + [anon_sym_export] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_type] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_typeof] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_var] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_await] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_debugger] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_case] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LTtemplate_GT] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_async] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_SLASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_void] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3169), + [sym_private_property_identifier] = ACTIONS(3169), + [sym_this] = ACTIONS(3169), + [sym_super] = ACTIONS(3169), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [sym_null] = ACTIONS(3169), + [sym_undefined] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_readonly] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3169), + [anon_sym_set] = ACTIONS(3169), + [anon_sym_declare] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_override] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), + [anon_sym_any] = ACTIONS(3169), + [anon_sym_number] = ACTIONS(3169), + [anon_sym_boolean] = ACTIONS(3169), + [anon_sym_string] = ACTIONS(3169), + [anon_sym_symbol] = ACTIONS(3169), + [anon_sym_object] = ACTIONS(3169), + [anon_sym_abstract] = ACTIONS(3169), + [anon_sym_global] = ACTIONS(3169), + [anon_sym_interface] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), [sym_html_comment] = ACTIONS(5), }, [993] = { [sym_comment] = STATE(993), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), + [sym_identifier] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_typeof] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_var] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_await] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_debugger] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LTtemplate_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3171), + [sym_number] = ACTIONS(3171), + [sym_private_property_identifier] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_undefined] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_readonly] = ACTIONS(3171), + [anon_sym_get] = ACTIONS(3171), + [anon_sym_set] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_any] = ACTIONS(3171), + [anon_sym_number] = ACTIONS(3171), + [anon_sym_boolean] = ACTIONS(3171), + [anon_sym_string] = ACTIONS(3171), + [anon_sym_symbol] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_global] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), [sym_html_comment] = ACTIONS(5), }, [994] = { [sym_comment] = STATE(994), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_LTtemplate_GT] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_override] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), + [sym_identifier] = ACTIONS(3173), + [anon_sym_export] = ACTIONS(3173), + [anon_sym_default] = ACTIONS(3173), + [anon_sym_type] = ACTIONS(3173), + [anon_sym_namespace] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_typeof] = ACTIONS(3173), + [anon_sym_import] = ACTIONS(3173), + [anon_sym_with] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [anon_sym_let] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_else] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_await] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_debugger] = ACTIONS(3173), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_case] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_LTtemplate_GT] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3173), + [anon_sym_async] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_void] = ACTIONS(3173), + [anon_sym_delete] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3173), + [sym_private_property_identifier] = ACTIONS(3173), + [sym_this] = ACTIONS(3173), + [sym_super] = ACTIONS(3173), + [sym_true] = ACTIONS(3173), + [sym_false] = ACTIONS(3173), + [sym_null] = ACTIONS(3173), + [sym_undefined] = ACTIONS(3173), + [anon_sym_AT] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_readonly] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3173), + [anon_sym_set] = ACTIONS(3173), + [anon_sym_declare] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_protected] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_module] = ACTIONS(3173), + [anon_sym_any] = ACTIONS(3173), + [anon_sym_number] = ACTIONS(3173), + [anon_sym_boolean] = ACTIONS(3173), + [anon_sym_string] = ACTIONS(3173), + [anon_sym_symbol] = ACTIONS(3173), + [anon_sym_object] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_global] = ACTIONS(3173), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), [sym_html_comment] = ACTIONS(5), }, [995] = { [sym_comment] = STATE(995), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_default] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_case] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [sym_identifier] = ACTIONS(3175), + [anon_sym_export] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_typeof] = ACTIONS(3175), + [anon_sym_import] = ACTIONS(3175), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_var] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_debugger] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LTtemplate_GT] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_void] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3175), + [sym_number] = ACTIONS(3175), + [sym_private_property_identifier] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3175), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_declare] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_any] = ACTIONS(3175), + [anon_sym_number] = ACTIONS(3175), + [anon_sym_boolean] = ACTIONS(3175), + [anon_sym_string] = ACTIONS(3175), + [anon_sym_symbol] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_global] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), [sym_html_comment] = ACTIONS(5), }, [996] = { [sym_comment] = STATE(996), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LTtemplate_GT] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_private_property_identifier] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_global] = ACTIONS(2124), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [sym__automatic_semicolon] = ACTIONS(2360), [sym_html_comment] = ACTIONS(5), }, [997] = { [sym_comment] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3168), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_global] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2378), [sym_html_comment] = ACTIONS(5), }, [998] = { [sym_comment] = STATE(998), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3170), + [ts_builtin_sym_end] = ACTIONS(3177), + [sym_identifier] = ACTIONS(3111), + [anon_sym_export] = ACTIONS(3111), + [anon_sym_type] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_typeof] = ACTIONS(3111), + [anon_sym_import] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3111), + [anon_sym_var] = ACTIONS(3111), + [anon_sym_let] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_debugger] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_LTtemplate_GT] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3111), + [sym_number] = ACTIONS(3111), + [sym_private_property_identifier] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [sym_super] = ACTIONS(3111), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [sym_null] = ACTIONS(3111), + [sym_undefined] = ACTIONS(3111), + [anon_sym_AT] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_get] = ACTIONS(3111), + [anon_sym_set] = ACTIONS(3111), + [anon_sym_declare] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_module] = ACTIONS(3111), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_interface] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), [sym_html_comment] = ACTIONS(5), }, [999] = { [sym_comment] = STATE(999), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2311), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [1000] = { [sym_comment] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_debugger] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LTtemplate_GT] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_private_property_identifier] = ACTIONS(2245), - [sym_this] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_null] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_get] = ACTIONS(2245), - [anon_sym_set] = ACTIONS(2245), - [anon_sym_declare] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_private] = ACTIONS(2245), - [anon_sym_protected] = ACTIONS(2245), - [anon_sym_override] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_any] = ACTIONS(2245), - [anon_sym_number] = ACTIONS(2245), - [anon_sym_boolean] = ACTIONS(2245), - [anon_sym_string] = ACTIONS(2245), - [anon_sym_symbol] = ACTIONS(2245), - [anon_sym_object] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), + [sym_identifier] = ACTIONS(3179), + [anon_sym_export] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_typeof] = ACTIONS(3179), + [anon_sym_import] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3179), + [anon_sym_var] = ACTIONS(3179), + [anon_sym_let] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_else] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_debugger] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_yield] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LTtemplate_GT] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(3179), + [anon_sym_SQUOTE] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(3179), + [anon_sym_function] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_void] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3179), + [sym_number] = ACTIONS(3179), + [sym_private_property_identifier] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3179), + [anon_sym_get] = ACTIONS(3179), + [anon_sym_set] = ACTIONS(3179), + [anon_sym_declare] = ACTIONS(3179), + [anon_sym_public] = ACTIONS(3179), + [anon_sym_private] = ACTIONS(3179), + [anon_sym_protected] = ACTIONS(3179), + [anon_sym_override] = ACTIONS(3179), + [anon_sym_module] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3179), + [anon_sym_number] = ACTIONS(3179), + [anon_sym_boolean] = ACTIONS(3179), + [anon_sym_string] = ACTIONS(3179), + [anon_sym_symbol] = ACTIONS(3179), + [anon_sym_object] = ACTIONS(3179), + [anon_sym_abstract] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), [sym_html_comment] = ACTIONS(5), }, [1001] = { [sym_comment] = STATE(1001), - [ts_builtin_sym_end] = ACTIONS(3114), - [sym_identifier] = ACTIONS(3112), - [anon_sym_export] = ACTIONS(3112), - [anon_sym_type] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3112), - [anon_sym_import] = ACTIONS(3112), - [anon_sym_with] = ACTIONS(3112), - [anon_sym_var] = ACTIONS(3112), - [anon_sym_let] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_await] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_debugger] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_yield] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_LTtemplate_GT] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_async] = ACTIONS(3112), - [anon_sym_function] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_void] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_number] = ACTIONS(3112), - [sym_private_property_identifier] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - [sym_super] = ACTIONS(3112), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [sym_null] = ACTIONS(3112), - [sym_undefined] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_readonly] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_declare] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_override] = ACTIONS(3112), - [anon_sym_module] = ACTIONS(3112), - [anon_sym_any] = ACTIONS(3112), - [anon_sym_number] = ACTIONS(3112), - [anon_sym_boolean] = ACTIONS(3112), - [anon_sym_string] = ACTIONS(3112), - [anon_sym_symbol] = ACTIONS(3112), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_abstract] = ACTIONS(3112), - [anon_sym_interface] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [sym__automatic_semicolon] = ACTIONS(3114), + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3101), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_var] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_await] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_debugger] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_finally] = ACTIONS(3101), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LTtemplate_GT] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_async] = ACTIONS(3101), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_SLASH] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_void] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3101), + [sym_number] = ACTIONS(3101), + [sym_private_property_identifier] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), + [sym_super] = ACTIONS(3101), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [sym_null] = ACTIONS(3101), + [sym_undefined] = ACTIONS(3101), + [anon_sym_AT] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_get] = ACTIONS(3101), + [anon_sym_set] = ACTIONS(3101), + [anon_sym_declare] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_any] = ACTIONS(3101), + [anon_sym_number] = ACTIONS(3101), + [anon_sym_boolean] = ACTIONS(3101), + [anon_sym_string] = ACTIONS(3101), + [anon_sym_symbol] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), [sym_html_comment] = ACTIONS(5), }, [1002] = { [sym_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3183), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_else] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_debugger] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LTtemplate_GT] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_void] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3183), + [sym_number] = ACTIONS(3183), + [sym_private_property_identifier] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_undefined] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_abstract] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, [1003] = { [sym_comment] = STATE(1003), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_default] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_case] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [sym_this] = ACTIONS(3174), - [sym_super] = ACTIONS(3174), - [sym_true] = ACTIONS(3174), - [sym_false] = ACTIONS(3174), - [sym_null] = ACTIONS(3174), - [sym_undefined] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = ACTIONS(3174), - [anon_sym_declare] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_protected] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_module] = ACTIONS(3174), - [anon_sym_any] = ACTIONS(3174), - [anon_sym_number] = ACTIONS(3174), - [anon_sym_boolean] = ACTIONS(3174), - [anon_sym_string] = ACTIONS(3174), - [anon_sym_symbol] = ACTIONS(3174), - [anon_sym_object] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3185), + [anon_sym_export] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3185), + [anon_sym_typeof] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3185), + [anon_sym_with] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [anon_sym_let] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_debugger] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_LTtemplate_GT] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_function] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_void] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3185), + [sym_number] = ACTIONS(3185), + [sym_private_property_identifier] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [sym_super] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_null] = ACTIONS(3185), + [sym_undefined] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_get] = ACTIONS(3185), + [anon_sym_set] = ACTIONS(3185), + [anon_sym_declare] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_protected] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_module] = ACTIONS(3185), + [anon_sym_any] = ACTIONS(3185), + [anon_sym_number] = ACTIONS(3185), + [anon_sym_boolean] = ACTIONS(3185), + [anon_sym_string] = ACTIONS(3185), + [anon_sym_symbol] = ACTIONS(3185), + [anon_sym_object] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), [sym_html_comment] = ACTIONS(5), }, [1004] = { [sym_comment] = STATE(1004), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_else] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_LTtemplate_GT] = ACTIONS(3176), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_override] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_object] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), [sym_html_comment] = ACTIONS(5), }, [1005] = { [sym_comment] = STATE(1005), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [sym_this] = ACTIONS(3178), - [sym_super] = ACTIONS(3178), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_undefined] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = ACTIONS(3178), - [anon_sym_declare] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_any] = ACTIONS(3178), - [anon_sym_number] = ACTIONS(3178), - [anon_sym_boolean] = ACTIONS(3178), - [anon_sym_string] = ACTIONS(3178), - [anon_sym_symbol] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [sym_identifier] = ACTIONS(3187), + [anon_sym_export] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_typeof] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_debugger] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LTtemplate_GT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_function] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_void] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3187), + [sym_number] = ACTIONS(3187), + [sym_private_property_identifier] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_undefined] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_get] = ACTIONS(3187), + [anon_sym_set] = ACTIONS(3187), + [anon_sym_declare] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_override] = ACTIONS(3187), + [anon_sym_module] = ACTIONS(3187), + [anon_sym_any] = ACTIONS(3187), + [anon_sym_number] = ACTIONS(3187), + [anon_sym_boolean] = ACTIONS(3187), + [anon_sym_string] = ACTIONS(3187), + [anon_sym_symbol] = ACTIONS(3187), + [anon_sym_object] = ACTIONS(3187), + [anon_sym_abstract] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), [sym_html_comment] = ACTIONS(5), }, [1006] = { [sym_comment] = STATE(1006), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_default] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_else] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_case] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3189), + [anon_sym_export] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym_import] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_debugger] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_case] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LTtemplate_GT] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_function] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_void] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3189), + [sym_number] = ACTIONS(3189), + [sym_private_property_identifier] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [sym_super] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_null] = ACTIONS(3189), + [sym_undefined] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_get] = ACTIONS(3189), + [anon_sym_set] = ACTIONS(3189), + [anon_sym_declare] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_module] = ACTIONS(3189), + [anon_sym_any] = ACTIONS(3189), + [anon_sym_number] = ACTIONS(3189), + [anon_sym_boolean] = ACTIONS(3189), + [anon_sym_string] = ACTIONS(3189), + [anon_sym_symbol] = ACTIONS(3189), + [anon_sym_object] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), [sym_html_comment] = ACTIONS(5), }, [1007] = { [sym_comment] = STATE(1007), - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2297), + [sym_identifier] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_typeof] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_else] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_debugger] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LTtemplate_GT] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_function] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_void] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_number] = ACTIONS(3191), + [sym_private_property_identifier] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_undefined] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_get] = ACTIONS(3191), + [anon_sym_set] = ACTIONS(3191), + [anon_sym_declare] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_override] = ACTIONS(3191), + [anon_sym_module] = ACTIONS(3191), + [anon_sym_any] = ACTIONS(3191), + [anon_sym_number] = ACTIONS(3191), + [anon_sym_boolean] = ACTIONS(3191), + [anon_sym_string] = ACTIONS(3191), + [anon_sym_symbol] = ACTIONS(3191), + [anon_sym_object] = ACTIONS(3191), + [anon_sym_abstract] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1008] = { [sym_comment] = STATE(1008), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LTtemplate_GT] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3193), + [sym_number] = ACTIONS(3193), + [sym_private_property_identifier] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_module] = ACTIONS(3193), + [anon_sym_any] = ACTIONS(3193), + [anon_sym_number] = ACTIONS(3193), + [anon_sym_boolean] = ACTIONS(3193), + [anon_sym_string] = ACTIONS(3193), + [anon_sym_symbol] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, [1009] = { - [sym_finally_clause] = STATE(1503), [sym_comment] = STATE(1009), - [ts_builtin_sym_end] = ACTIONS(3116), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_namespace] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_typeof] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [anon_sym_let] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_await] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_debugger] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_finally] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3046), - [anon_sym_LTtemplate_GT] = ACTIONS(3046), - [anon_sym_DQUOTE] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_class] = ACTIONS(3046), - [anon_sym_async] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_using] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_void] = ACTIONS(3046), - [anon_sym_delete] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3046), - [sym_number] = ACTIONS(3046), - [sym_private_property_identifier] = ACTIONS(3046), - [sym_this] = ACTIONS(3046), - [sym_super] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(3046), - [anon_sym_set] = ACTIONS(3046), - [anon_sym_declare] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_protected] = ACTIONS(3046), - [anon_sym_override] = ACTIONS(3046), - [anon_sym_module] = ACTIONS(3046), - [anon_sym_any] = ACTIONS(3046), - [anon_sym_number] = ACTIONS(3046), - [anon_sym_boolean] = ACTIONS(3046), - [anon_sym_string] = ACTIONS(3046), - [anon_sym_symbol] = ACTIONS(3046), - [anon_sym_object] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3195), + [anon_sym_export] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_debugger] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LTtemplate_GT] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_null] = ACTIONS(3195), + [sym_undefined] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3195), + [anon_sym_set] = ACTIONS(3195), + [anon_sym_declare] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_module] = ACTIONS(3195), + [anon_sym_any] = ACTIONS(3195), + [anon_sym_number] = ACTIONS(3195), + [anon_sym_boolean] = ACTIONS(3195), + [anon_sym_string] = ACTIONS(3195), + [anon_sym_symbol] = ACTIONS(3195), + [anon_sym_object] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_global] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1010] = { [sym_comment] = STATE(1010), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3197), + [anon_sym_export] = ACTIONS(3197), + [anon_sym_default] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_namespace] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_typeof] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3197), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_else] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_do] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_debugger] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_throw] = ACTIONS(3197), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_case] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_LTtemplate_GT] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_class] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_function] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_void] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3197), + [sym_number] = ACTIONS(3197), + [sym_private_property_identifier] = ACTIONS(3197), + [sym_this] = ACTIONS(3197), + [sym_super] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [sym_undefined] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_static] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_get] = ACTIONS(3197), + [anon_sym_set] = ACTIONS(3197), + [anon_sym_declare] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_private] = ACTIONS(3197), + [anon_sym_protected] = ACTIONS(3197), + [anon_sym_override] = ACTIONS(3197), + [anon_sym_module] = ACTIONS(3197), + [anon_sym_any] = ACTIONS(3197), + [anon_sym_number] = ACTIONS(3197), + [anon_sym_boolean] = ACTIONS(3197), + [anon_sym_string] = ACTIONS(3197), + [anon_sym_symbol] = ACTIONS(3197), + [anon_sym_object] = ACTIONS(3197), + [anon_sym_abstract] = ACTIONS(3197), + [anon_sym_global] = ACTIONS(3197), + [anon_sym_interface] = ACTIONS(3197), + [anon_sym_enum] = ACTIONS(3197), [sym_html_comment] = ACTIONS(5), }, [1011] = { + [sym_statement_block] = STATE(1553), [sym_comment] = STATE(1011), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [1012] = { [sym_comment] = STATE(1012), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3203), [sym_html_comment] = ACTIONS(5), }, [1013] = { + [sym_else_clause] = STATE(1446), [sym_comment] = STATE(1013), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3105), + [anon_sym_type] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_typeof] = ACTIONS(3105), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_await] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_debugger] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LTtemplate_GT] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_async] = ACTIONS(3105), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_SLASH] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_void] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3105), + [sym_number] = ACTIONS(3105), + [sym_private_property_identifier] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), + [sym_super] = ACTIONS(3105), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [sym_null] = ACTIONS(3105), + [sym_undefined] = ACTIONS(3105), + [anon_sym_AT] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_readonly] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3105), + [anon_sym_set] = ACTIONS(3105), + [anon_sym_declare] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_protected] = ACTIONS(3105), + [anon_sym_override] = ACTIONS(3105), + [anon_sym_module] = ACTIONS(3105), + [anon_sym_any] = ACTIONS(3105), + [anon_sym_number] = ACTIONS(3105), + [anon_sym_boolean] = ACTIONS(3105), + [anon_sym_string] = ACTIONS(3105), + [anon_sym_symbol] = ACTIONS(3105), + [anon_sym_object] = ACTIONS(3105), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_global] = ACTIONS(3105), + [anon_sym_interface] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), [sym_html_comment] = ACTIONS(5), }, [1014] = { [sym_comment] = STATE(1014), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3207), [sym_html_comment] = ACTIONS(5), }, [1015] = { + [sym_statement_block] = STATE(1553), [sym_comment] = STATE(1015), - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_with] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_debugger] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LTtemplate_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_private_property_identifier] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [1016] = { - [sym_else_clause] = STATE(1509), [sym_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(3188), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LTtemplate_GT] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_void] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3066), - [sym_number] = ACTIONS(3066), - [sym_private_property_identifier] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - [sym_super] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_undefined] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_declare] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_any] = ACTIONS(3066), - [anon_sym_number] = ACTIONS(3066), - [anon_sym_boolean] = ACTIONS(3066), - [anon_sym_string] = ACTIONS(3066), - [anon_sym_symbol] = ACTIONS(3066), - [anon_sym_object] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3211), + [anon_sym_export] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_debugger] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LTtemplate_GT] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_void] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3211), + [sym_number] = ACTIONS(3211), + [sym_private_property_identifier] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [sym_undefined] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_any] = ACTIONS(3211), + [anon_sym_number] = ACTIONS(3211), + [anon_sym_boolean] = ACTIONS(3211), + [anon_sym_string] = ACTIONS(3211), + [anon_sym_symbol] = ACTIONS(3211), + [anon_sym_object] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), [sym_html_comment] = ACTIONS(5), }, [1017] = { [sym_comment] = STATE(1017), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_case] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), [sym_html_comment] = ACTIONS(5), }, [1018] = { [sym_comment] = STATE(1018), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_global] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2384), [sym_html_comment] = ACTIONS(5), }, [1019] = { [sym_comment] = STATE(1019), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3215), + [anon_sym_export] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_type] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_typeof] = ACTIONS(3215), + [anon_sym_import] = ACTIONS(3215), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_debugger] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LTtemplate_GT] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_void] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3215), + [sym_number] = ACTIONS(3215), + [sym_private_property_identifier] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), + [sym_super] = ACTIONS(3215), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [sym_null] = ACTIONS(3215), + [sym_undefined] = ACTIONS(3215), + [anon_sym_AT] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_get] = ACTIONS(3215), + [anon_sym_set] = ACTIONS(3215), + [anon_sym_declare] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_module] = ACTIONS(3215), + [anon_sym_any] = ACTIONS(3215), + [anon_sym_number] = ACTIONS(3215), + [anon_sym_boolean] = ACTIONS(3215), + [anon_sym_string] = ACTIONS(3215), + [anon_sym_symbol] = ACTIONS(3215), + [anon_sym_object] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), [sym_html_comment] = ACTIONS(5), }, [1020] = { [sym_comment] = STATE(1020), - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_else] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_using] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_private_property_identifier] = ACTIONS(2139), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [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_abstract] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym__automatic_semicolon] = ACTIONS(2337), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_default] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_global] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1021] = { [sym_comment] = STATE(1021), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2303), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1022] = { [sym_comment] = STATE(1022), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_default] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_case] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_LTtemplate_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3196), - [sym_number] = ACTIONS(3196), - [sym_private_property_identifier] = ACTIONS(3196), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LTtemplate_GT] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_global] = ACTIONS(2134), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym__automatic_semicolon] = ACTIONS(2354), [sym_html_comment] = ACTIONS(5), }, [1023] = { [sym_comment] = STATE(1023), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LTtemplate_GT] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_number] = ACTIONS(2148), + [sym_private_property_identifier] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_global] = ACTIONS(2148), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [sym__automatic_semicolon] = ACTIONS(2400), [sym_html_comment] = ACTIONS(5), }, [1024] = { [sym_comment] = STATE(1024), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_default] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_case] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_LTtemplate_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3200), - [sym_number] = ACTIONS(3200), - [sym_private_property_identifier] = ACTIONS(3200), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_global] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2432), [sym_html_comment] = ACTIONS(5), }, [1025] = { [sym_comment] = STATE(1025), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_global] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2428), [sym_html_comment] = ACTIONS(5), }, [1026] = { [sym_comment] = STATE(1026), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_default] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_case] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_default] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_case] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_any] = ACTIONS(3221), + [anon_sym_number] = ACTIONS(3221), + [anon_sym_boolean] = ACTIONS(3221), + [anon_sym_string] = ACTIONS(3221), + [anon_sym_symbol] = ACTIONS(3221), + [anon_sym_object] = ACTIONS(3221), + [anon_sym_abstract] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, [1027] = { [sym_comment] = STATE(1027), - [sym_identifier] = ACTIONS(3206), - [anon_sym_export] = ACTIONS(3206), - [anon_sym_default] = ACTIONS(3206), - [anon_sym_type] = ACTIONS(3206), - [anon_sym_namespace] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_with] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_const] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_debugger] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_case] = ACTIONS(3206), - [anon_sym_yield] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LTtemplate_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3206), - [anon_sym_delete] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_private_property_identifier] = ACTIONS(3206), - [sym_this] = ACTIONS(3206), - [sym_super] = ACTIONS(3206), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_undefined] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_readonly] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3206), - [anon_sym_set] = ACTIONS(3206), - [anon_sym_declare] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_protected] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_module] = ACTIONS(3206), - [anon_sym_any] = ACTIONS(3206), - [anon_sym_number] = ACTIONS(3206), - [anon_sym_boolean] = ACTIONS(3206), - [anon_sym_string] = ACTIONS(3206), - [anon_sym_symbol] = ACTIONS(3206), - [anon_sym_object] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, [1028] = { [sym_comment] = STATE(1028), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_default] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_case] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_LTtemplate_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3208), - [sym_number] = ACTIONS(3208), - [sym_private_property_identifier] = ACTIONS(3208), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_default] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_else] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_case] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, [1029] = { [sym_comment] = STATE(1029), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_default] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1030] = { [sym_comment] = STATE(1030), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3229), + [anon_sym_export] = ACTIONS(3229), + [anon_sym_default] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_typeof] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(3229), + [anon_sym_var] = ACTIONS(3229), + [anon_sym_let] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_else] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_debugger] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_throw] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_case] = ACTIONS(3229), + [anon_sym_yield] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LTtemplate_GT] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_class] = ACTIONS(3229), + [anon_sym_async] = ACTIONS(3229), + [anon_sym_function] = ACTIONS(3229), + [anon_sym_new] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3229), + [sym_number] = ACTIONS(3229), + [sym_private_property_identifier] = ACTIONS(3229), + [sym_this] = ACTIONS(3229), + [sym_super] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_null] = ACTIONS(3229), + [sym_undefined] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3229), + [anon_sym_readonly] = ACTIONS(3229), + [anon_sym_get] = ACTIONS(3229), + [anon_sym_set] = ACTIONS(3229), + [anon_sym_declare] = ACTIONS(3229), + [anon_sym_public] = ACTIONS(3229), + [anon_sym_private] = ACTIONS(3229), + [anon_sym_protected] = ACTIONS(3229), + [anon_sym_override] = ACTIONS(3229), + [anon_sym_module] = ACTIONS(3229), + [anon_sym_any] = ACTIONS(3229), + [anon_sym_number] = ACTIONS(3229), + [anon_sym_boolean] = ACTIONS(3229), + [anon_sym_string] = ACTIONS(3229), + [anon_sym_symbol] = ACTIONS(3229), + [anon_sym_object] = ACTIONS(3229), + [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_global] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), [sym_html_comment] = ACTIONS(5), }, [1031] = { + [sym_statement_block] = STATE(1419), [sym_comment] = STATE(1031), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_debugger] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LTtemplate_GT] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_private_property_identifier] = ACTIONS(2245), - [sym_this] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_null] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_get] = ACTIONS(2245), - [anon_sym_set] = ACTIONS(2245), - [anon_sym_declare] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_private] = ACTIONS(2245), - [anon_sym_protected] = ACTIONS(2245), - [anon_sym_override] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_any] = ACTIONS(2245), - [anon_sym_number] = ACTIONS(2245), - [anon_sym_boolean] = ACTIONS(2245), - [anon_sym_string] = ACTIONS(2245), - [anon_sym_symbol] = ACTIONS(2245), - [anon_sym_object] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [1032] = { [sym_comment] = STATE(1032), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_default] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_else] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, [1033] = { [sym_comment] = STATE(1033), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_default] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_case] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_global] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, [1034] = { [sym_comment] = STATE(1034), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_default] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_else] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_case] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1035] = { [sym_comment] = STATE(1035), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_else] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_case] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_case] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, [1036] = { [sym_comment] = STATE(1036), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [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_abstract] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2383), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_default] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_else] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_case] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, [1037] = { [sym_comment] = STATE(1037), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_default] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1038] = { [sym_comment] = STATE(1038), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3239), + [anon_sym_export] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_else] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_debugger] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3239), + [anon_sym_case] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_LTtemplate_GT] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3239), + [anon_sym_delete] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3239), + [sym_super] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [sym_undefined] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_get] = ACTIONS(3239), + [anon_sym_set] = ACTIONS(3239), + [anon_sym_declare] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_module] = ACTIONS(3239), + [anon_sym_any] = ACTIONS(3239), + [anon_sym_number] = ACTIONS(3239), + [anon_sym_boolean] = ACTIONS(3239), + [anon_sym_string] = ACTIONS(3239), + [anon_sym_symbol] = ACTIONS(3239), + [anon_sym_object] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1039] = { [sym_comment] = STATE(1039), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_default] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_case] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_module] = ACTIONS(3226), - [anon_sym_any] = ACTIONS(3226), - [anon_sym_number] = ACTIONS(3226), - [anon_sym_boolean] = ACTIONS(3226), - [anon_sym_string] = ACTIONS(3226), - [anon_sym_symbol] = ACTIONS(3226), - [anon_sym_object] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LTtemplate_GT] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_number] = ACTIONS(2148), + [sym_private_property_identifier] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_global] = ACTIONS(2148), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [sym__automatic_semicolon] = ACTIONS(2316), [sym_html_comment] = ACTIONS(5), }, [1040] = { [sym_comment] = STATE(1040), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2260), [sym_html_comment] = ACTIONS(5), }, [1041] = { [sym_comment] = STATE(1041), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_default] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_else] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_case] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), + [anon_sym_abstract] = ACTIONS(3241), + [anon_sym_global] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, [1042] = { [sym_comment] = STATE(1042), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_case] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, [1043] = { [sym_comment] = STATE(1043), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_else] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_default] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_else] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_case] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_global] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, [1044] = { [sym_comment] = STATE(1044), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_default] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_else] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_case] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_global] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, [1045] = { [sym_comment] = STATE(1045), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_case] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_using] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_private_property_identifier] = ACTIONS(2139), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [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_abstract] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym__automatic_semicolon] = ACTIONS(2359), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_default] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_case] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, [1046] = { [sym_comment] = STATE(1046), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), + [sym_identifier] = ACTIONS(3251), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_case] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_LTtemplate_GT] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_void] = ACTIONS(3251), + [anon_sym_delete] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_number] = ACTIONS(3251), + [sym_private_property_identifier] = ACTIONS(3251), + [sym_this] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_undefined] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3251), + [anon_sym_any] = ACTIONS(3251), + [anon_sym_number] = ACTIONS(3251), + [anon_sym_boolean] = ACTIONS(3251), + [anon_sym_string] = ACTIONS(3251), + [anon_sym_symbol] = ACTIONS(3251), + [anon_sym_object] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), [sym_html_comment] = ACTIONS(5), }, [1047] = { [sym_comment] = STATE(1047), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_default] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_else] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_case] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_LTtemplate_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3236), - [sym_number] = ACTIONS(3236), - [sym_private_property_identifier] = ACTIONS(3236), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_override] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_object] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LTtemplate_GT] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_private_property_identifier] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_global] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), [sym_html_comment] = ACTIONS(5), }, [1048] = { [sym_comment] = STATE(1048), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_global] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), [sym_html_comment] = ACTIONS(5), }, [1049] = { [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(3104), - [sym_identifier] = ACTIONS(3102), - [anon_sym_export] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_with] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [anon_sym_let] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_await] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_debugger] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_yield] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_LTtemplate_GT] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_async] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - [sym_super] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_null] = ACTIONS(3102), - [sym_undefined] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_readonly] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_declare] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_module] = ACTIONS(3102), - [anon_sym_any] = ACTIONS(3102), - [anon_sym_number] = ACTIONS(3102), - [anon_sym_boolean] = ACTIONS(3102), - [anon_sym_string] = ACTIONS(3102), - [anon_sym_symbol] = ACTIONS(3102), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_abstract] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [sym__automatic_semicolon] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3253), + [anon_sym_export] = ACTIONS(3253), + [anon_sym_default] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_namespace] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_typeof] = ACTIONS(3253), + [anon_sym_import] = ACTIONS(3253), + [anon_sym_with] = ACTIONS(3253), + [anon_sym_var] = ACTIONS(3253), + [anon_sym_let] = ACTIONS(3253), + [anon_sym_const] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_else] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_switch] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_await] = ACTIONS(3253), + [anon_sym_while] = ACTIONS(3253), + [anon_sym_do] = ACTIONS(3253), + [anon_sym_try] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_debugger] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_throw] = ACTIONS(3253), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_case] = ACTIONS(3253), + [anon_sym_yield] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LTtemplate_GT] = ACTIONS(3253), + [anon_sym_DQUOTE] = ACTIONS(3253), + [anon_sym_SQUOTE] = ACTIONS(3253), + [anon_sym_class] = ACTIONS(3253), + [anon_sym_async] = ACTIONS(3253), + [anon_sym_function] = ACTIONS(3253), + [anon_sym_new] = ACTIONS(3253), + [anon_sym_using] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_void] = ACTIONS(3253), + [anon_sym_delete] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3253), + [sym_number] = ACTIONS(3253), + [sym_private_property_identifier] = ACTIONS(3253), + [sym_this] = ACTIONS(3253), + [sym_super] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_null] = ACTIONS(3253), + [sym_undefined] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3253), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_get] = ACTIONS(3253), + [anon_sym_set] = ACTIONS(3253), + [anon_sym_declare] = ACTIONS(3253), + [anon_sym_public] = ACTIONS(3253), + [anon_sym_private] = ACTIONS(3253), + [anon_sym_protected] = ACTIONS(3253), + [anon_sym_override] = ACTIONS(3253), + [anon_sym_module] = ACTIONS(3253), + [anon_sym_any] = ACTIONS(3253), + [anon_sym_number] = ACTIONS(3253), + [anon_sym_boolean] = ACTIONS(3253), + [anon_sym_string] = ACTIONS(3253), + [anon_sym_symbol] = ACTIONS(3253), + [anon_sym_object] = ACTIONS(3253), + [anon_sym_abstract] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3253), [sym_html_comment] = ACTIONS(5), }, [1050] = { [sym_comment] = STATE(1050), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_default] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_case] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_LTtemplate_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3240), - [sym_number] = ACTIONS(3240), - [sym_private_property_identifier] = ACTIONS(3240), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3240), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_override] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_object] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [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_abstract] = ACTIONS(3255), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1051] = { [sym_comment] = STATE(1051), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3257), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_typeof] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_var] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_else] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_debugger] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_throw] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_case] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LTtemplate_GT] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_void] = ACTIONS(3257), + [anon_sym_delete] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3257), + [sym_number] = ACTIONS(3257), + [sym_private_property_identifier] = ACTIONS(3257), + [sym_this] = ACTIONS(3257), + [sym_super] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_null] = ACTIONS(3257), + [sym_undefined] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_any] = ACTIONS(3257), + [anon_sym_number] = ACTIONS(3257), + [anon_sym_boolean] = ACTIONS(3257), + [anon_sym_string] = ACTIONS(3257), + [anon_sym_symbol] = ACTIONS(3257), + [anon_sym_object] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), [sym_html_comment] = ACTIONS(5), }, [1052] = { + [sym_statement_block] = STATE(1194), [sym_comment] = STATE(1052), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_default] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_LTtemplate_GT] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3244), - [sym_number] = ACTIONS(3244), - [sym_private_property_identifier] = ACTIONS(3244), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [1053] = { [sym_comment] = STATE(1053), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3259), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_debugger] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_case] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LTtemplate_GT] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_void] = ACTIONS(3259), + [anon_sym_delete] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3259), + [sym_number] = ACTIONS(3259), + [sym_private_property_identifier] = ACTIONS(3259), + [sym_this] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_undefined] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [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_abstract] = ACTIONS(3259), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), [sym_html_comment] = ACTIONS(5), }, [1054] = { [sym_comment] = STATE(1054), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1055] = { [sym_comment] = STATE(1055), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1056] = { [sym_comment] = STATE(1056), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3261), + [anon_sym_default] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_namespace] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_typeof] = ACTIONS(3261), + [anon_sym_import] = ACTIONS(3261), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_var] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_else] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_switch] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_await] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_debugger] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_throw] = ACTIONS(3261), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_case] = ACTIONS(3261), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LTtemplate_GT] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_SQUOTE] = ACTIONS(3261), + [anon_sym_class] = ACTIONS(3261), + [anon_sym_async] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_using] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_void] = ACTIONS(3261), + [anon_sym_delete] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3261), + [sym_number] = ACTIONS(3261), + [sym_private_property_identifier] = ACTIONS(3261), + [sym_this] = ACTIONS(3261), + [sym_super] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_null] = ACTIONS(3261), + [sym_undefined] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_static] = ACTIONS(3261), + [anon_sym_readonly] = ACTIONS(3261), + [anon_sym_get] = ACTIONS(3261), + [anon_sym_set] = ACTIONS(3261), + [anon_sym_declare] = ACTIONS(3261), + [anon_sym_public] = ACTIONS(3261), + [anon_sym_private] = ACTIONS(3261), + [anon_sym_protected] = ACTIONS(3261), + [anon_sym_override] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3261), + [anon_sym_any] = ACTIONS(3261), + [anon_sym_number] = ACTIONS(3261), + [anon_sym_boolean] = ACTIONS(3261), + [anon_sym_string] = ACTIONS(3261), + [anon_sym_symbol] = ACTIONS(3261), + [anon_sym_object] = ACTIONS(3261), + [anon_sym_abstract] = ACTIONS(3261), + [anon_sym_global] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), [sym_html_comment] = ACTIONS(5), }, [1057] = { [sym_comment] = STATE(1057), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(2336), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_global] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2338), [sym_html_comment] = ACTIONS(5), }, [1058] = { [sym_comment] = STATE(1058), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_case] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LTtemplate_GT] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_private_property_identifier] = ACTIONS(2174), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_global] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, [1059] = { [sym_comment] = STATE(1059), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_default] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_case] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [sym_identifier] = ACTIONS(3263), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_default] = ACTIONS(3263), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_typeof] = ACTIONS(3263), + [anon_sym_import] = ACTIONS(3263), + [anon_sym_with] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(3263), + [anon_sym_else] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3263), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_debugger] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_case] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_LTtemplate_GT] = ACTIONS(3263), + [anon_sym_DQUOTE] = ACTIONS(3263), + [anon_sym_SQUOTE] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_SLASH] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(3263), + [anon_sym_TILDE] = ACTIONS(3263), + [anon_sym_void] = ACTIONS(3263), + [anon_sym_delete] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(3263), + [anon_sym_DASH_DASH] = ACTIONS(3263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3263), + [sym_number] = ACTIONS(3263), + [sym_private_property_identifier] = ACTIONS(3263), + [sym_this] = ACTIONS(3263), + [sym_super] = ACTIONS(3263), + [sym_true] = ACTIONS(3263), + [sym_false] = ACTIONS(3263), + [sym_null] = ACTIONS(3263), + [sym_undefined] = ACTIONS(3263), + [anon_sym_AT] = ACTIONS(3263), + [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_abstract] = ACTIONS(3263), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), [sym_html_comment] = ACTIONS(5), }, [1060] = { [sym_comment] = STATE(1060), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_global] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, [1061] = { [sym_comment] = STATE(1061), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_global] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [1062] = { [sym_comment] = STATE(1062), - [sym_identifier] = ACTIONS(3112), - [anon_sym_export] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_type] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3112), - [anon_sym_import] = ACTIONS(3112), - [anon_sym_with] = ACTIONS(3112), - [anon_sym_var] = ACTIONS(3112), - [anon_sym_let] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_await] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_debugger] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_yield] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_LTtemplate_GT] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_async] = ACTIONS(3112), - [anon_sym_function] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_void] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_number] = ACTIONS(3112), - [sym_private_property_identifier] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - [sym_super] = ACTIONS(3112), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [sym_null] = ACTIONS(3112), - [sym_undefined] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_readonly] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_declare] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_override] = ACTIONS(3112), - [anon_sym_module] = ACTIONS(3112), - [anon_sym_any] = ACTIONS(3112), - [anon_sym_number] = ACTIONS(3112), - [anon_sym_boolean] = ACTIONS(3112), - [anon_sym_string] = ACTIONS(3112), - [anon_sym_symbol] = ACTIONS(3112), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_abstract] = ACTIONS(3112), - [anon_sym_interface] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [sym__automatic_semicolon] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3265), + [anon_sym_export] = ACTIONS(3265), + [anon_sym_default] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_namespace] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_typeof] = ACTIONS(3265), + [anon_sym_import] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_var] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_debugger] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_throw] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_case] = ACTIONS(3265), + [anon_sym_yield] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LTtemplate_GT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_class] = ACTIONS(3265), + [anon_sym_async] = ACTIONS(3265), + [anon_sym_function] = ACTIONS(3265), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_void] = ACTIONS(3265), + [anon_sym_delete] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_number] = ACTIONS(3265), + [sym_private_property_identifier] = ACTIONS(3265), + [sym_this] = ACTIONS(3265), + [sym_super] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_null] = ACTIONS(3265), + [sym_undefined] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(3265), + [anon_sym_readonly] = ACTIONS(3265), + [anon_sym_get] = ACTIONS(3265), + [anon_sym_set] = ACTIONS(3265), + [anon_sym_declare] = ACTIONS(3265), + [anon_sym_public] = ACTIONS(3265), + [anon_sym_private] = ACTIONS(3265), + [anon_sym_protected] = ACTIONS(3265), + [anon_sym_override] = ACTIONS(3265), + [anon_sym_module] = ACTIONS(3265), + [anon_sym_any] = ACTIONS(3265), + [anon_sym_number] = ACTIONS(3265), + [anon_sym_boolean] = ACTIONS(3265), + [anon_sym_string] = ACTIONS(3265), + [anon_sym_symbol] = ACTIONS(3265), + [anon_sym_object] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3265), + [anon_sym_global] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), [sym_html_comment] = ACTIONS(5), }, [1063] = { [sym_comment] = STATE(1063), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_default] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_else] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_LTtemplate_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3256), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_object] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_case] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, [1064] = { [sym_comment] = STATE(1064), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_debugger] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_case] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_private_property_identifier] = ACTIONS(2249), - [sym_this] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_null] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(2249), - [anon_sym_set] = ACTIONS(2249), - [anon_sym_declare] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_private] = ACTIONS(2249), - [anon_sym_protected] = ACTIONS(2249), - [anon_sym_override] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_any] = ACTIONS(2249), - [anon_sym_number] = ACTIONS(2249), - [anon_sym_boolean] = ACTIONS(2249), - [anon_sym_string] = ACTIONS(2249), - [anon_sym_symbol] = ACTIONS(2249), - [anon_sym_object] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3269), [sym_html_comment] = ACTIONS(5), }, [1065] = { [sym_comment] = STATE(1065), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_default] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_case] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_case] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, [1066] = { [sym_comment] = STATE(1066), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_default] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_else] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_case] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_global] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, [1067] = { [sym_comment] = STATE(1067), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2281), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [1068] = { [sym_comment] = STATE(1068), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3260), - [anon_sym_else] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_LTtemplate_GT] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3260), - [sym_number] = ACTIONS(3260), - [sym_private_property_identifier] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3111), + [anon_sym_export] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_type] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_typeof] = ACTIONS(3111), + [anon_sym_import] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3111), + [anon_sym_var] = ACTIONS(3111), + [anon_sym_let] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_debugger] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3111), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_LTtemplate_GT] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3111), + [sym_number] = ACTIONS(3111), + [sym_private_property_identifier] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [sym_super] = ACTIONS(3111), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [sym_null] = ACTIONS(3111), + [sym_undefined] = ACTIONS(3111), + [anon_sym_AT] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_get] = ACTIONS(3111), + [anon_sym_set] = ACTIONS(3111), + [anon_sym_declare] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_module] = ACTIONS(3111), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_interface] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), [sym_html_comment] = ACTIONS(5), }, [1069] = { [sym_comment] = STATE(1069), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_case] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, [1070] = { - [sym_statement_block] = STATE(1512), [sym_comment] = STATE(1070), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_global] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, [1071] = { - [sym_statement_block] = STATE(1512), [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_case] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, [1072] = { [sym_comment] = STATE(1072), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_default] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_case] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3189), + [anon_sym_export] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym_import] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_debugger] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_case] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LTtemplate_GT] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_function] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_void] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3189), + [sym_number] = ACTIONS(3189), + [sym_private_property_identifier] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [sym_super] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_null] = ACTIONS(3189), + [sym_undefined] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_get] = ACTIONS(3189), + [anon_sym_set] = ACTIONS(3189), + [anon_sym_declare] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_module] = ACTIONS(3189), + [anon_sym_any] = ACTIONS(3189), + [anon_sym_number] = ACTIONS(3189), + [anon_sym_boolean] = ACTIONS(3189), + [anon_sym_string] = ACTIONS(3189), + [anon_sym_symbol] = ACTIONS(3189), + [anon_sym_object] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), [sym_html_comment] = ACTIONS(5), }, [1073] = { [sym_comment] = STATE(1073), - [sym_identifier] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3270), - [anon_sym_import] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LTtemplate_GT] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_private_property_identifier] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - [sym_super] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_undefined] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_readonly] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_declare] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_any] = ACTIONS(3270), - [anon_sym_number] = ACTIONS(3270), - [anon_sym_boolean] = ACTIONS(3270), - [anon_sym_string] = ACTIONS(3270), - [anon_sym_symbol] = ACTIONS(3270), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_case] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_global] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, [1074] = { [sym_comment] = STATE(1074), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1075] = { [sym_comment] = STATE(1075), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_else] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [anon_sym_module] = ACTIONS(3274), - [anon_sym_any] = ACTIONS(3274), - [anon_sym_number] = ACTIONS(3274), - [anon_sym_boolean] = ACTIONS(3274), - [anon_sym_string] = ACTIONS(3274), - [anon_sym_symbol] = ACTIONS(3274), - [anon_sym_object] = ACTIONS(3274), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_global] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, [1076] = { [sym_comment] = STATE(1076), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym__automatic_semicolon] = ACTIONS(2195), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_debugger] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_case] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LTtemplate_GT] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_void] = ACTIONS(3287), + [anon_sym_delete] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3287), + [sym_number] = ACTIONS(3287), + [sym_private_property_identifier] = ACTIONS(3287), + [sym_this] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_null] = ACTIONS(3287), + [sym_undefined] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_get] = ACTIONS(3287), + [anon_sym_set] = ACTIONS(3287), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), [sym_html_comment] = ACTIONS(5), }, [1077] = { [sym_comment] = STATE(1077), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LTtemplate_GT] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3276), - [sym_number] = ACTIONS(3276), - [sym_private_property_identifier] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3289), + [anon_sym_export] = ACTIONS(3289), + [anon_sym_default] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3289), + [anon_sym_with] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_else] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_debugger] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_case] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LTtemplate_GT] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_function] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_void] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3289), + [sym_number] = ACTIONS(3289), + [sym_private_property_identifier] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [sym_super] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_null] = ACTIONS(3289), + [sym_undefined] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_get] = ACTIONS(3289), + [anon_sym_set] = ACTIONS(3289), + [anon_sym_declare] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_module] = ACTIONS(3289), + [anon_sym_any] = ACTIONS(3289), + [anon_sym_number] = ACTIONS(3289), + [anon_sym_boolean] = ACTIONS(3289), + [anon_sym_string] = ACTIONS(3289), + [anon_sym_symbol] = ACTIONS(3289), + [anon_sym_object] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_global] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), [sym_html_comment] = ACTIONS(5), }, [1078] = { [sym_comment] = STATE(1078), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_debugger] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LTtemplate_GT] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_private_property_identifier] = ACTIONS(2097), - [sym_this] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_null] = ACTIONS(2097), - [sym_undefined] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_get] = ACTIONS(2097), - [anon_sym_set] = ACTIONS(2097), - [anon_sym_declare] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_private] = ACTIONS(2097), - [anon_sym_protected] = ACTIONS(2097), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_any] = ACTIONS(2097), - [anon_sym_number] = ACTIONS(2097), - [anon_sym_boolean] = ACTIONS(2097), - [anon_sym_string] = ACTIONS(2097), - [anon_sym_symbol] = ACTIONS(2097), - [anon_sym_object] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2355), + [sym_identifier] = ACTIONS(3291), + [anon_sym_export] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_debugger] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_case] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LTtemplate_GT] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_void] = ACTIONS(3291), + [anon_sym_delete] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3291), + [sym_number] = ACTIONS(3291), + [sym_private_property_identifier] = ACTIONS(3291), + [sym_this] = ACTIONS(3291), + [sym_super] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_null] = ACTIONS(3291), + [sym_undefined] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_get] = ACTIONS(3291), + [anon_sym_set] = ACTIONS(3291), + [anon_sym_declare] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_module] = ACTIONS(3291), + [anon_sym_any] = ACTIONS(3291), + [anon_sym_number] = ACTIONS(3291), + [anon_sym_boolean] = ACTIONS(3291), + [anon_sym_string] = ACTIONS(3291), + [anon_sym_symbol] = ACTIONS(3291), + [anon_sym_object] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), [sym_html_comment] = ACTIONS(5), }, [1079] = { [sym_comment] = STATE(1079), - [sym_identifier] = ACTIONS(3086), - [anon_sym_export] = ACTIONS(3086), - [anon_sym_default] = ACTIONS(3086), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_typeof] = ACTIONS(3086), - [anon_sym_import] = ACTIONS(3086), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_var] = ACTIONS(3086), - [anon_sym_let] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_await] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_debugger] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_case] = ACTIONS(3086), - [anon_sym_finally] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_LTtemplate_GT] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(3086), - [anon_sym_SQUOTE] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_async] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_void] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3086), - [sym_number] = ACTIONS(3086), - [sym_private_property_identifier] = ACTIONS(3086), - [sym_this] = ACTIONS(3086), - [sym_super] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_null] = ACTIONS(3086), - [sym_undefined] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_readonly] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(3086), - [anon_sym_set] = ACTIONS(3086), - [anon_sym_declare] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [anon_sym_override] = ACTIONS(3086), - [anon_sym_module] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(3086), - [anon_sym_number] = ACTIONS(3086), - [anon_sym_boolean] = ACTIONS(3086), - [anon_sym_string] = ACTIONS(3086), - [anon_sym_symbol] = ACTIONS(3086), - [anon_sym_object] = ACTIONS(3086), - [anon_sym_abstract] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_default] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_case] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, [1080] = { [sym_comment] = STATE(1080), - [sym_identifier] = ACTIONS(3080), - [anon_sym_export] = ACTIONS(3080), - [anon_sym_default] = ACTIONS(3080), - [anon_sym_type] = ACTIONS(3080), - [anon_sym_namespace] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3080), - [anon_sym_import] = ACTIONS(3080), - [anon_sym_with] = ACTIONS(3080), - [anon_sym_var] = ACTIONS(3080), - [anon_sym_let] = ACTIONS(3080), - [anon_sym_const] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_await] = ACTIONS(3080), - [anon_sym_while] = ACTIONS(3080), - [anon_sym_do] = ACTIONS(3080), - [anon_sym_try] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_debugger] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_throw] = ACTIONS(3080), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3080), - [anon_sym_yield] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_LTtemplate_GT] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_class] = ACTIONS(3080), - [anon_sym_async] = ACTIONS(3080), - [anon_sym_function] = ACTIONS(3080), - [anon_sym_new] = ACTIONS(3080), - [anon_sym_using] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_void] = ACTIONS(3080), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3080), - [sym_number] = ACTIONS(3080), - [sym_private_property_identifier] = ACTIONS(3080), - [sym_this] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_null] = ACTIONS(3080), - [sym_undefined] = ACTIONS(3080), - [anon_sym_AT] = ACTIONS(3080), - [anon_sym_static] = ACTIONS(3080), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3080), - [anon_sym_set] = ACTIONS(3080), - [anon_sym_declare] = ACTIONS(3080), - [anon_sym_public] = ACTIONS(3080), - [anon_sym_private] = ACTIONS(3080), - [anon_sym_protected] = ACTIONS(3080), - [anon_sym_override] = ACTIONS(3080), - [anon_sym_module] = ACTIONS(3080), - [anon_sym_any] = ACTIONS(3080), - [anon_sym_number] = ACTIONS(3080), - [anon_sym_boolean] = ACTIONS(3080), - [anon_sym_string] = ACTIONS(3080), - [anon_sym_symbol] = ACTIONS(3080), - [anon_sym_object] = ACTIONS(3080), - [anon_sym_abstract] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_enum] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3280), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [1081] = { [sym_comment] = STATE(1081), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_case] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_private_property_identifier] = ACTIONS(2089), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym__automatic_semicolon] = ACTIONS(2393), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_case] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, [1082] = { [sym_comment] = STATE(1082), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_default] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_case] = ACTIONS(3106), - [anon_sym_finally] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_LTtemplate_GT] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2206), [sym_html_comment] = ACTIONS(5), }, [1083] = { [sym_comment] = STATE(1083), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3282), - [anon_sym_import] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3282), - [anon_sym_var] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_else] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_debugger] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LTtemplate_GT] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_async] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_private_property_identifier] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - [sym_super] = ACTIONS(3282), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_undefined] = ACTIONS(3282), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3282), - [anon_sym_get] = ACTIONS(3282), - [anon_sym_set] = ACTIONS(3282), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_override] = ACTIONS(3282), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3282), - [anon_sym_interface] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_default] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_case] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, [1084] = { [sym_comment] = STATE(1084), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3299), [sym_html_comment] = ACTIONS(5), }, [1085] = { - [sym_statement_block] = STATE(1292), [sym_comment] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_default] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_case] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [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_abstract] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, [1086] = { [sym_comment] = STATE(1086), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_case] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, [1087] = { [sym_comment] = STATE(1087), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [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_abstract] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1088] = { [sym_comment] = STATE(1088), - [sym_identifier] = ACTIONS(3286), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LTtemplate_GT] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_async] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_private_property_identifier] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - [sym_super] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_undefined] = ACTIONS(3286), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_readonly] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_override] = ACTIONS(3286), - [anon_sym_module] = ACTIONS(3286), - [anon_sym_any] = ACTIONS(3286), - [anon_sym_number] = ACTIONS(3286), - [anon_sym_boolean] = ACTIONS(3286), - [anon_sym_string] = ACTIONS(3286), - [anon_sym_symbol] = ACTIONS(3286), - [anon_sym_object] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3307), + [anon_sym_export] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_debugger] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LTtemplate_GT] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_delete] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3307), + [sym_number] = ACTIONS(3307), + [sym_private_property_identifier] = ACTIONS(3307), + [sym_this] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_get] = ACTIONS(3307), + [anon_sym_set] = ACTIONS(3307), + [anon_sym_declare] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_module] = ACTIONS(3307), + [anon_sym_any] = ACTIONS(3307), + [anon_sym_number] = ACTIONS(3307), + [anon_sym_boolean] = ACTIONS(3307), + [anon_sym_string] = ACTIONS(3307), + [anon_sym_symbol] = ACTIONS(3307), + [anon_sym_object] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1089] = { [sym_comment] = STATE(1089), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_default] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_case] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [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_abstract] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, [1090] = { [sym_comment] = STATE(1090), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_else] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [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_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_case] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, [1091] = { [sym_comment] = STATE(1091), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [1092] = { - [sym_else_clause] = STATE(1432), [sym_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(3188), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LTtemplate_GT] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_void] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3066), - [sym_number] = ACTIONS(3066), - [sym_private_property_identifier] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - [sym_super] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_undefined] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_declare] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_any] = ACTIONS(3066), - [anon_sym_number] = ACTIONS(3066), - [anon_sym_boolean] = ACTIONS(3066), - [anon_sym_string] = ACTIONS(3066), - [anon_sym_symbol] = ACTIONS(3066), - [anon_sym_object] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3313), [sym_html_comment] = ACTIONS(5), }, [1093] = { [sym_comment] = STATE(1093), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3083), + [sym_identifier] = ACTIONS(3081), + [anon_sym_export] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_namespace] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_typeof] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_var] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_const] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_else] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_switch] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_await] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_debugger] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_throw] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LTtemplate_GT] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_using] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_SLASH] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_void] = ACTIONS(3081), + [anon_sym_delete] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3081), + [sym_number] = ACTIONS(3081), + [sym_private_property_identifier] = ACTIONS(3081), + [sym_this] = ACTIONS(3081), + [sym_super] = ACTIONS(3081), + [sym_true] = ACTIONS(3081), + [sym_false] = ACTIONS(3081), + [sym_null] = ACTIONS(3081), + [sym_undefined] = ACTIONS(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_get] = ACTIONS(3081), + [anon_sym_set] = ACTIONS(3081), + [anon_sym_declare] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_protected] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3081), + [anon_sym_number] = ACTIONS(3081), + [anon_sym_boolean] = ACTIONS(3081), + [anon_sym_string] = ACTIONS(3081), + [anon_sym_symbol] = ACTIONS(3081), + [anon_sym_object] = ACTIONS(3081), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_global] = ACTIONS(3081), + [anon_sym_interface] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(3081), + [sym__automatic_semicolon] = ACTIONS(3083), [sym_html_comment] = ACTIONS(5), }, [1094] = { [sym_comment] = STATE(1094), - [sym_identifier] = ACTIONS(3298), - [anon_sym_export] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3298), - [anon_sym_import] = ACTIONS(3298), - [anon_sym_with] = ACTIONS(3298), - [anon_sym_var] = ACTIONS(3298), - [anon_sym_let] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_debugger] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_yield] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LTtemplate_GT] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_function] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_private_property_identifier] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - [sym_super] = ACTIONS(3298), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [sym_null] = ACTIONS(3298), - [sym_undefined] = ACTIONS(3298), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_readonly] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3298), - [anon_sym_set] = ACTIONS(3298), - [anon_sym_declare] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3298), - [anon_sym_module] = ACTIONS(3298), - [anon_sym_any] = ACTIONS(3298), - [anon_sym_number] = ACTIONS(3298), - [anon_sym_boolean] = ACTIONS(3298), - [anon_sym_string] = ACTIONS(3298), - [anon_sym_symbol] = ACTIONS(3298), - [anon_sym_object] = ACTIONS(3298), - [anon_sym_abstract] = ACTIONS(3298), - [anon_sym_interface] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3315), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_debugger] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LTtemplate_GT] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3315), + [sym_number] = ACTIONS(3315), + [sym_private_property_identifier] = ACTIONS(3315), + [sym_this] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_get] = ACTIONS(3315), + [anon_sym_set] = ACTIONS(3315), + [anon_sym_declare] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_any] = ACTIONS(3315), + [anon_sym_number] = ACTIONS(3315), + [anon_sym_boolean] = ACTIONS(3315), + [anon_sym_string] = ACTIONS(3315), + [anon_sym_symbol] = ACTIONS(3315), + [anon_sym_object] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), [sym_html_comment] = ACTIONS(5), }, [1095] = { [sym_comment] = STATE(1095), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_else] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_LTtemplate_GT] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3300), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_object] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [1096] = { [sym_comment] = STATE(1096), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [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_abstract] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1097] = { [sym_comment] = STATE(1097), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_else] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_global] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, [1098] = { [sym_comment] = STATE(1098), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3319), [sym_html_comment] = ACTIONS(5), }, [1099] = { [sym_comment] = STATE(1099), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1100] = { [sym_comment] = STATE(1100), - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2381), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_global] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, [1101] = { [sym_comment] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_debugger] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LTtemplate_GT] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_private_property_identifier] = ACTIONS(2097), - [sym_this] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_null] = ACTIONS(2097), - [sym_undefined] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_get] = ACTIONS(2097), - [anon_sym_set] = ACTIONS(2097), - [anon_sym_declare] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_private] = ACTIONS(2097), - [anon_sym_protected] = ACTIONS(2097), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_any] = ACTIONS(2097), - [anon_sym_number] = ACTIONS(2097), - [anon_sym_boolean] = ACTIONS(2097), - [anon_sym_string] = ACTIONS(2097), - [anon_sym_symbol] = ACTIONS(2097), - [anon_sym_object] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2377), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_finally] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [1102] = { [sym_comment] = STATE(1102), - [sym_identifier] = ACTIONS(3306), - [anon_sym_export] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_type] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3306), - [anon_sym_import] = ACTIONS(3306), - [anon_sym_with] = ACTIONS(3306), - [anon_sym_var] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_else] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_debugger] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_yield] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LTtemplate_GT] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_async] = ACTIONS(3306), - [anon_sym_function] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_private_property_identifier] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), - [sym_super] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_undefined] = ACTIONS(3306), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_readonly] = ACTIONS(3306), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_override] = ACTIONS(3306), - [anon_sym_module] = ACTIONS(3306), - [anon_sym_any] = ACTIONS(3306), - [anon_sym_number] = ACTIONS(3306), - [anon_sym_boolean] = ACTIONS(3306), - [anon_sym_string] = ACTIONS(3306), - [anon_sym_symbol] = ACTIONS(3306), - [anon_sym_object] = ACTIONS(3306), - [anon_sym_abstract] = ACTIONS(3306), - [anon_sym_interface] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [1103] = { [sym_comment] = STATE(1103), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_case] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, [1104] = { [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_private_property_identifier] = ACTIONS(2089), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym__automatic_semicolon] = ACTIONS(2389), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1105] = { [sym_comment] = STATE(1105), - [sym_identifier] = ACTIONS(3308), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_typeof] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(3308), - [anon_sym_with] = ACTIONS(3308), - [anon_sym_var] = ACTIONS(3308), - [anon_sym_let] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_else] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_await] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_yield] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_LTtemplate_GT] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_function] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_LT] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_void] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3308), - [sym_number] = ACTIONS(3308), - [sym_private_property_identifier] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), - [sym_super] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_null] = ACTIONS(3308), - [sym_undefined] = ACTIONS(3308), - [anon_sym_AT] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_readonly] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_declare] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3308), - [anon_sym_module] = ACTIONS(3308), - [anon_sym_any] = ACTIONS(3308), - [anon_sym_number] = ACTIONS(3308), - [anon_sym_boolean] = ACTIONS(3308), - [anon_sym_string] = ACTIONS(3308), - [anon_sym_symbol] = ACTIONS(3308), - [anon_sym_object] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3325), + [anon_sym_default] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_namespace] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_typeof] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_var] = ACTIONS(3325), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_else] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_debugger] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_throw] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_case] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LTtemplate_GT] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_function] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3325), + [sym_number] = ACTIONS(3325), + [sym_private_property_identifier] = ACTIONS(3325), + [sym_this] = ACTIONS(3325), + [sym_super] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_undefined] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3325), + [anon_sym_set] = ACTIONS(3325), + [anon_sym_declare] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_any] = ACTIONS(3325), + [anon_sym_number] = ACTIONS(3325), + [anon_sym_boolean] = ACTIONS(3325), + [anon_sym_string] = ACTIONS(3325), + [anon_sym_symbol] = ACTIONS(3325), + [anon_sym_object] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), [sym_html_comment] = ACTIONS(5), }, [1106] = { [sym_comment] = STATE(1106), - [sym_identifier] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_default] = ACTIONS(3310), - [anon_sym_type] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_typeof] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_with] = ACTIONS(3310), - [anon_sym_var] = ACTIONS(3310), - [anon_sym_let] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_await] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_debugger] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym_case] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_LTtemplate_GT] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_async] = ACTIONS(3310), - [anon_sym_function] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_SLASH] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_void] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3310), - [sym_number] = ACTIONS(3310), - [sym_private_property_identifier] = ACTIONS(3310), - [sym_this] = ACTIONS(3310), - [sym_super] = ACTIONS(3310), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [sym_null] = ACTIONS(3310), - [sym_undefined] = ACTIONS(3310), - [anon_sym_AT] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_readonly] = ACTIONS(3310), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3310), - [anon_sym_declare] = ACTIONS(3310), - [anon_sym_public] = ACTIONS(3310), - [anon_sym_private] = ACTIONS(3310), - [anon_sym_protected] = ACTIONS(3310), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3310), - [anon_sym_any] = ACTIONS(3310), - [anon_sym_number] = ACTIONS(3310), - [anon_sym_boolean] = ACTIONS(3310), - [anon_sym_string] = ACTIONS(3310), - [anon_sym_symbol] = ACTIONS(3310), - [anon_sym_object] = ACTIONS(3310), - [anon_sym_abstract] = ACTIONS(3310), - [anon_sym_interface] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, [1107] = { [sym_comment] = STATE(1107), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2115), + [sym_identifier] = ACTIONS(3079), + [anon_sym_export] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_type] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_typeof] = ACTIONS(3079), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3079), + [anon_sym_var] = ACTIONS(3079), + [anon_sym_let] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_BANG] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_await] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_debugger] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_finally] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_LTtemplate_GT] = ACTIONS(3079), + [anon_sym_DQUOTE] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_SLASH] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_TILDE] = ACTIONS(3079), + [anon_sym_void] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_PLUS_PLUS] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3079), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3079), + [sym_number] = ACTIONS(3079), + [sym_private_property_identifier] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [sym_super] = ACTIONS(3079), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [sym_null] = ACTIONS(3079), + [sym_undefined] = ACTIONS(3079), + [anon_sym_AT] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3079), + [anon_sym_set] = ACTIONS(3079), + [anon_sym_declare] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_private] = ACTIONS(3079), + [anon_sym_protected] = ACTIONS(3079), + [anon_sym_override] = ACTIONS(3079), + [anon_sym_module] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3079), + [anon_sym_number] = ACTIONS(3079), + [anon_sym_boolean] = ACTIONS(3079), + [anon_sym_string] = ACTIONS(3079), + [anon_sym_symbol] = ACTIONS(3079), + [anon_sym_object] = ACTIONS(3079), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_global] = ACTIONS(3079), + [anon_sym_interface] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), [sym_html_comment] = ACTIONS(5), }, [1108] = { [sym_comment] = STATE(1108), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LTtemplate_GT] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_using] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3312), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3312), - [anon_sym_DASH_DASH] = ACTIONS(3312), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_number] = ACTIONS(3312), - [sym_private_property_identifier] = ACTIONS(3312), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3312), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_type] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_typeof] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3085), + [anon_sym_with] = ACTIONS(3085), + [anon_sym_var] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_await] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_debugger] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LTtemplate_GT] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(3085), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_SLASH] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_void] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3085), + [sym_number] = ACTIONS(3085), + [sym_private_property_identifier] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), + [sym_super] = ACTIONS(3085), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [sym_null] = ACTIONS(3085), + [sym_undefined] = ACTIONS(3085), + [anon_sym_AT] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_readonly] = ACTIONS(3085), + [anon_sym_get] = ACTIONS(3085), + [anon_sym_set] = ACTIONS(3085), + [anon_sym_declare] = ACTIONS(3085), + [anon_sym_public] = ACTIONS(3085), + [anon_sym_private] = ACTIONS(3085), + [anon_sym_protected] = ACTIONS(3085), + [anon_sym_override] = ACTIONS(3085), + [anon_sym_module] = ACTIONS(3085), + [anon_sym_any] = ACTIONS(3085), + [anon_sym_number] = ACTIONS(3085), + [anon_sym_boolean] = ACTIONS(3085), + [anon_sym_string] = ACTIONS(3085), + [anon_sym_symbol] = ACTIONS(3085), + [anon_sym_object] = ACTIONS(3085), + [anon_sym_abstract] = ACTIONS(3085), + [anon_sym_global] = ACTIONS(3085), + [anon_sym_interface] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [sym__automatic_semicolon] = ACTIONS(3331), [sym_html_comment] = ACTIONS(5), }, [1109] = { [sym_comment] = STATE(1109), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3314), - [anon_sym_import] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3314), - [anon_sym_var] = ACTIONS(3314), - [anon_sym_let] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_else] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_debugger] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LTtemplate_GT] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_async] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_private_property_identifier] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - [sym_super] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_null] = ACTIONS(3314), - [sym_undefined] = ACTIONS(3314), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3314), - [anon_sym_set] = ACTIONS(3314), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_override] = ACTIONS(3314), - [anon_sym_module] = ACTIONS(3314), - [anon_sym_any] = ACTIONS(3314), - [anon_sym_number] = ACTIONS(3314), - [anon_sym_boolean] = ACTIONS(3314), - [anon_sym_string] = ACTIONS(3314), - [anon_sym_symbol] = ACTIONS(3314), - [anon_sym_object] = ACTIONS(3314), - [anon_sym_abstract] = ACTIONS(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_finally] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [1110] = { [sym_comment] = STATE(1110), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_else] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3333), + [anon_sym_global] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, [1111] = { [sym_comment] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2279), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_debugger] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_LTtemplate_GT] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_delete] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_null] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_get] = ACTIONS(3335), + [anon_sym_set] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_module] = ACTIONS(3335), + [anon_sym_any] = ACTIONS(3335), + [anon_sym_number] = ACTIONS(3335), + [anon_sym_boolean] = ACTIONS(3335), + [anon_sym_string] = ACTIONS(3335), + [anon_sym_symbol] = ACTIONS(3335), + [anon_sym_object] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), [sym_html_comment] = ACTIONS(5), }, [1112] = { [sym_comment] = STATE(1112), - [sym_identifier] = ACTIONS(3318), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_default] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3318), - [anon_sym_import] = ACTIONS(3318), - [anon_sym_with] = ACTIONS(3318), - [anon_sym_var] = ACTIONS(3318), - [anon_sym_let] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_else] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_debugger] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LTtemplate_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_async] = ACTIONS(3318), - [anon_sym_function] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3318), - [sym_super] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_null] = ACTIONS(3318), - [sym_undefined] = ACTIONS(3318), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3318), - [anon_sym_readonly] = ACTIONS(3318), - [anon_sym_get] = ACTIONS(3318), - [anon_sym_set] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3318), - [anon_sym_module] = ACTIONS(3318), - [anon_sym_any] = ACTIONS(3318), - [anon_sym_number] = ACTIONS(3318), - [anon_sym_boolean] = ACTIONS(3318), - [anon_sym_string] = ACTIONS(3318), - [anon_sym_symbol] = ACTIONS(3318), - [anon_sym_object] = ACTIONS(3318), - [anon_sym_abstract] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), + [ts_builtin_sym_end] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3123), + [anon_sym_export] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_typeof] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_var] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_debugger] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LTtemplate_GT] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_void] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3123), + [sym_number] = ACTIONS(3123), + [sym_private_property_identifier] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [sym_super] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_AT] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3123), + [anon_sym_set] = ACTIONS(3123), + [anon_sym_declare] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_private] = ACTIONS(3123), + [anon_sym_protected] = ACTIONS(3123), + [anon_sym_override] = ACTIONS(3123), + [anon_sym_module] = ACTIONS(3123), + [anon_sym_any] = ACTIONS(3123), + [anon_sym_number] = ACTIONS(3123), + [anon_sym_boolean] = ACTIONS(3123), + [anon_sym_string] = ACTIONS(3123), + [anon_sym_symbol] = ACTIONS(3123), + [anon_sym_object] = ACTIONS(3123), + [anon_sym_abstract] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_interface] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [sym__automatic_semicolon] = ACTIONS(3125), [sym_html_comment] = ACTIONS(5), }, [1113] = { [sym_comment] = STATE(1113), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_default] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_case] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(3337), + [anon_sym_var] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_else] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3337), + [anon_sym_do] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_debugger] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_throw] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_case] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LTtemplate_GT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3337), + [anon_sym_class] = ACTIONS(3337), + [anon_sym_async] = ACTIONS(3337), + [anon_sym_function] = ACTIONS(3337), + [anon_sym_new] = ACTIONS(3337), + [anon_sym_using] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3337), + [sym_number] = ACTIONS(3337), + [sym_private_property_identifier] = ACTIONS(3337), + [sym_this] = ACTIONS(3337), + [sym_super] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_null] = ACTIONS(3337), + [sym_undefined] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [anon_sym_declare] = ACTIONS(3337), + [anon_sym_public] = ACTIONS(3337), + [anon_sym_private] = ACTIONS(3337), + [anon_sym_protected] = ACTIONS(3337), + [anon_sym_override] = ACTIONS(3337), + [anon_sym_module] = ACTIONS(3337), + [anon_sym_any] = ACTIONS(3337), + [anon_sym_number] = ACTIONS(3337), + [anon_sym_boolean] = ACTIONS(3337), + [anon_sym_string] = ACTIONS(3337), + [anon_sym_symbol] = ACTIONS(3337), + [anon_sym_object] = ACTIONS(3337), + [anon_sym_abstract] = ACTIONS(3337), + [anon_sym_global] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), [sym_html_comment] = ACTIONS(5), }, [1114] = { [sym_comment] = STATE(1114), - [ts_builtin_sym_end] = ACTIONS(3322), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_finally] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_LTtemplate_GT] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), + [sym_identifier] = ACTIONS(3339), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_debugger] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_case] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LTtemplate_GT] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_delete] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), [sym_html_comment] = ACTIONS(5), }, [1115] = { [sym_comment] = STATE(1115), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [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_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_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_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_abstract] = ACTIONS(3341), + [anon_sym_global] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, [1116] = { [sym_comment] = STATE(1116), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3326), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [1117] = { [sym_comment] = STATE(1117), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1118] = { [sym_comment] = STATE(1118), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_using] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [sym_private_property_identifier] = ACTIONS(2227), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_override] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_object] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1119] = { [sym_comment] = STATE(1119), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_default] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1120] = { [sym_comment] = STATE(1120), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, [1121] = { [sym_comment] = STATE(1121), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, [1122] = { [sym_comment] = STATE(1122), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3334), - [anon_sym_any] = ACTIONS(3334), - [anon_sym_number] = ACTIONS(3334), - [anon_sym_boolean] = ACTIONS(3334), - [anon_sym_string] = ACTIONS(3334), - [anon_sym_symbol] = ACTIONS(3334), - [anon_sym_object] = ACTIONS(3334), - [anon_sym_abstract] = ACTIONS(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [sym__automatic_semicolon] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1123] = { [sym_comment] = STATE(1123), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [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_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_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_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_abstract] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, [1124] = { [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2367), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [1125] = { [sym_comment] = STATE(1125), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_identifier] = ACTIONS(3081), + [anon_sym_export] = ACTIONS(3081), + [anon_sym_default] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_namespace] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_typeof] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_var] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_const] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_switch] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_await] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_debugger] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_throw] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LTtemplate_GT] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_using] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_SLASH] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_void] = ACTIONS(3081), + [anon_sym_delete] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3081), + [sym_number] = ACTIONS(3081), + [sym_private_property_identifier] = ACTIONS(3081), + [sym_this] = ACTIONS(3081), + [sym_super] = ACTIONS(3081), + [sym_true] = ACTIONS(3081), + [sym_false] = ACTIONS(3081), + [sym_null] = ACTIONS(3081), + [sym_undefined] = ACTIONS(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_get] = ACTIONS(3081), + [anon_sym_set] = ACTIONS(3081), + [anon_sym_declare] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_protected] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3081), + [anon_sym_number] = ACTIONS(3081), + [anon_sym_boolean] = ACTIONS(3081), + [anon_sym_string] = ACTIONS(3081), + [anon_sym_symbol] = ACTIONS(3081), + [anon_sym_object] = ACTIONS(3081), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_global] = ACTIONS(3081), + [anon_sym_interface] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(3081), + [sym__automatic_semicolon] = ACTIONS(3083), [sym_html_comment] = ACTIONS(5), }, [1126] = { + [sym_finally_clause] = STATE(1514), [sym_comment] = STATE(1126), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [ts_builtin_sym_end] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3061), + [anon_sym_export] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_namespace] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_typeof] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_var] = ACTIONS(3061), + [anon_sym_let] = ACTIONS(3061), + [anon_sym_const] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_switch] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_await] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_debugger] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_finally] = ACTIONS(3065), + [anon_sym_yield] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_LTtemplate_GT] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_class] = ACTIONS(3061), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_function] = ACTIONS(3061), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_void] = ACTIONS(3061), + [anon_sym_delete] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3061), + [sym_number] = ACTIONS(3061), + [sym_private_property_identifier] = ACTIONS(3061), + [sym_this] = ACTIONS(3061), + [sym_super] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_null] = ACTIONS(3061), + [sym_undefined] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_static] = ACTIONS(3061), + [anon_sym_readonly] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(3061), + [anon_sym_set] = ACTIONS(3061), + [anon_sym_declare] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_module] = ACTIONS(3061), + [anon_sym_any] = ACTIONS(3061), + [anon_sym_number] = ACTIONS(3061), + [anon_sym_boolean] = ACTIONS(3061), + [anon_sym_string] = ACTIONS(3061), + [anon_sym_symbol] = ACTIONS(3061), + [anon_sym_object] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_global] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), [sym_html_comment] = ACTIONS(5), }, [1127] = { [sym_comment] = STATE(1127), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_case] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, [1128] = { [sym_comment] = STATE(1128), - [sym_identifier] = ACTIONS(3338), - [anon_sym_export] = ACTIONS(3338), - [anon_sym_default] = ACTIONS(3338), - [anon_sym_type] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3338), - [anon_sym_import] = ACTIONS(3338), - [anon_sym_with] = ACTIONS(3338), - [anon_sym_var] = ACTIONS(3338), - [anon_sym_let] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_else] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_debugger] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_throw] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3338), - [anon_sym_yield] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LTtemplate_GT] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_class] = ACTIONS(3338), - [anon_sym_async] = ACTIONS(3338), - [anon_sym_function] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3338), - [anon_sym_delete] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_private_property_identifier] = ACTIONS(3338), - [sym_this] = ACTIONS(3338), - [sym_super] = ACTIONS(3338), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_undefined] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_readonly] = ACTIONS(3338), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3338), - [anon_sym_declare] = ACTIONS(3338), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3338), - [anon_sym_any] = ACTIONS(3338), - [anon_sym_number] = ACTIONS(3338), - [anon_sym_boolean] = ACTIONS(3338), - [anon_sym_string] = ACTIONS(3338), - [anon_sym_symbol] = ACTIONS(3338), - [anon_sym_object] = ACTIONS(3338), - [anon_sym_abstract] = ACTIONS(3338), - [anon_sym_interface] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), + [ts_builtin_sym_end] = ACTIONS(2298), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, [1129] = { [sym_comment] = STATE(1129), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3079), + [anon_sym_export] = ACTIONS(3079), + [anon_sym_type] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_typeof] = ACTIONS(3079), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3079), + [anon_sym_var] = ACTIONS(3079), + [anon_sym_let] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_BANG] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_await] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_debugger] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_finally] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_LTtemplate_GT] = ACTIONS(3079), + [anon_sym_DQUOTE] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_SLASH] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_TILDE] = ACTIONS(3079), + [anon_sym_void] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_PLUS_PLUS] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3079), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3079), + [sym_number] = ACTIONS(3079), + [sym_private_property_identifier] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [sym_super] = ACTIONS(3079), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [sym_null] = ACTIONS(3079), + [sym_undefined] = ACTIONS(3079), + [anon_sym_AT] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3079), + [anon_sym_set] = ACTIONS(3079), + [anon_sym_declare] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_private] = ACTIONS(3079), + [anon_sym_protected] = ACTIONS(3079), + [anon_sym_override] = ACTIONS(3079), + [anon_sym_module] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3079), + [anon_sym_number] = ACTIONS(3079), + [anon_sym_boolean] = ACTIONS(3079), + [anon_sym_string] = ACTIONS(3079), + [anon_sym_symbol] = ACTIONS(3079), + [anon_sym_object] = ACTIONS(3079), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_global] = ACTIONS(3079), + [anon_sym_interface] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), [sym_html_comment] = ACTIONS(5), }, [1130] = { [sym_comment] = STATE(1130), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3085), + [anon_sym_type] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_typeof] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3085), + [anon_sym_with] = ACTIONS(3085), + [anon_sym_var] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_await] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_debugger] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LTtemplate_GT] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(3085), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_SLASH] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_void] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3085), + [sym_number] = ACTIONS(3085), + [sym_private_property_identifier] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), + [sym_super] = ACTIONS(3085), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [sym_null] = ACTIONS(3085), + [sym_undefined] = ACTIONS(3085), + [anon_sym_AT] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_readonly] = ACTIONS(3085), + [anon_sym_get] = ACTIONS(3085), + [anon_sym_set] = ACTIONS(3085), + [anon_sym_declare] = ACTIONS(3085), + [anon_sym_public] = ACTIONS(3085), + [anon_sym_private] = ACTIONS(3085), + [anon_sym_protected] = ACTIONS(3085), + [anon_sym_override] = ACTIONS(3085), + [anon_sym_module] = ACTIONS(3085), + [anon_sym_any] = ACTIONS(3085), + [anon_sym_number] = ACTIONS(3085), + [anon_sym_boolean] = ACTIONS(3085), + [anon_sym_string] = ACTIONS(3085), + [anon_sym_symbol] = ACTIONS(3085), + [anon_sym_object] = ACTIONS(3085), + [anon_sym_abstract] = ACTIONS(3085), + [anon_sym_global] = ACTIONS(3085), + [anon_sym_interface] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [sym__automatic_semicolon] = ACTIONS(3355), [sym_html_comment] = ACTIONS(5), }, [1131] = { [sym_comment] = STATE(1131), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_else] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_case] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [sym_private_property_identifier] = ACTIONS(2223), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_global] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2314), [sym_html_comment] = ACTIONS(5), }, [1132] = { [sym_comment] = STATE(1132), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_global] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2422), [sym_html_comment] = ACTIONS(5), }, [1133] = { [sym_comment] = STATE(1133), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_case] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, [1134] = { [sym_comment] = STATE(1134), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_default] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_case] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, [1135] = { [sym_comment] = STATE(1135), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_with] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_debugger] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LTtemplate_GT] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_private_property_identifier] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_undefined] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_readonly] = ACTIONS(2198), + [anon_sym_get] = ACTIONS(2198), + [anon_sym_set] = ACTIONS(2198), + [anon_sym_declare] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_module] = ACTIONS(2198), + [anon_sym_any] = ACTIONS(2198), + [anon_sym_number] = ACTIONS(2198), + [anon_sym_boolean] = ACTIONS(2198), + [anon_sym_string] = ACTIONS(2198), + [anon_sym_symbol] = ACTIONS(2198), + [anon_sym_object] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_global] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), [sym_html_comment] = ACTIONS(5), }, [1136] = { [sym_comment] = STATE(1136), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_LTtemplate_GT] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3348), - [sym_number] = ACTIONS(3348), - [sym_private_property_identifier] = ACTIONS(3348), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3348), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_override] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_case] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1137] = { [sym_comment] = STATE(1137), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_default] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_case] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_private_property_identifier] = ACTIONS(2259), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_override] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_object] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym__automatic_semicolon] = ACTIONS(2325), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_case] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1138] = { [sym_comment] = STATE(1138), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_default] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3350), - [anon_sym_import] = ACTIONS(3350), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_var] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_debugger] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3350), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LTtemplate_GT] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_async] = ACTIONS(3350), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_private_property_identifier] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [sym_super] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_null] = ACTIONS(3350), - [sym_undefined] = ACTIONS(3350), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_readonly] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3350), - [anon_sym_set] = ACTIONS(3350), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_override] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(2170), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_global] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), [sym_html_comment] = ACTIONS(5), }, [1139] = { - [sym_statement_block] = STATE(1301), [sym_comment] = STATE(1139), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_global] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), [sym_html_comment] = ACTIONS(5), }, [1140] = { [sym_comment] = STATE(1140), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3098), - [anon_sym_export] = ACTIONS(3098), - [anon_sym_type] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3098), - [anon_sym_typeof] = ACTIONS(3098), - [anon_sym_import] = ACTIONS(3098), - [anon_sym_with] = ACTIONS(3098), - [anon_sym_var] = ACTIONS(3098), - [anon_sym_let] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym_await] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_debugger] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3098), - [anon_sym_finally] = ACTIONS(3098), - [anon_sym_yield] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_LTtemplate_GT] = ACTIONS(3098), - [anon_sym_DQUOTE] = ACTIONS(3098), - [anon_sym_SQUOTE] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_async] = ACTIONS(3098), - [anon_sym_function] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_void] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3098), - [sym_number] = ACTIONS(3098), - [sym_private_property_identifier] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), - [sym_super] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_undefined] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_readonly] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(3098), - [anon_sym_set] = ACTIONS(3098), - [anon_sym_declare] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [anon_sym_override] = ACTIONS(3098), - [anon_sym_module] = ACTIONS(3098), - [anon_sym_any] = ACTIONS(3098), - [anon_sym_number] = ACTIONS(3098), - [anon_sym_boolean] = ACTIONS(3098), - [anon_sym_string] = ACTIONS(3098), - [anon_sym_symbol] = ACTIONS(3098), - [anon_sym_object] = ACTIONS(3098), - [anon_sym_abstract] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_finally] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [1141] = { [sym_comment] = STATE(1141), - [sym_identifier] = ACTIONS(3098), - [anon_sym_export] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_type] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3098), - [anon_sym_typeof] = ACTIONS(3098), - [anon_sym_import] = ACTIONS(3098), - [anon_sym_with] = ACTIONS(3098), - [anon_sym_var] = ACTIONS(3098), - [anon_sym_let] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym_await] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_debugger] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_finally] = ACTIONS(3098), - [anon_sym_yield] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_LTtemplate_GT] = ACTIONS(3098), - [anon_sym_DQUOTE] = ACTIONS(3098), - [anon_sym_SQUOTE] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_async] = ACTIONS(3098), - [anon_sym_function] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_void] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3098), - [sym_number] = ACTIONS(3098), - [sym_private_property_identifier] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), - [sym_super] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_undefined] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_readonly] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(3098), - [anon_sym_set] = ACTIONS(3098), - [anon_sym_declare] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [anon_sym_override] = ACTIONS(3098), - [anon_sym_module] = ACTIONS(3098), - [anon_sym_any] = ACTIONS(3098), - [anon_sym_number] = ACTIONS(3098), - [anon_sym_boolean] = ACTIONS(3098), - [anon_sym_string] = ACTIONS(3098), - [anon_sym_symbol] = ACTIONS(3098), - [anon_sym_object] = ACTIONS(3098), - [anon_sym_abstract] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LTtemplate_GT] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_private_property_identifier] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_global] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), [sym_html_comment] = ACTIONS(5), }, [1142] = { [sym_comment] = STATE(1142), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_var] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_await] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_debugger] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_finally] = ACTIONS(3101), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LTtemplate_GT] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_async] = ACTIONS(3101), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_SLASH] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_void] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3101), + [sym_number] = ACTIONS(3101), + [sym_private_property_identifier] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), + [sym_super] = ACTIONS(3101), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [sym_null] = ACTIONS(3101), + [sym_undefined] = ACTIONS(3101), + [anon_sym_AT] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_get] = ACTIONS(3101), + [anon_sym_set] = ACTIONS(3101), + [anon_sym_declare] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_any] = ACTIONS(3101), + [anon_sym_number] = ACTIONS(3101), + [anon_sym_boolean] = ACTIONS(3101), + [anon_sym_string] = ACTIONS(3101), + [anon_sym_symbol] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), [sym_html_comment] = ACTIONS(5), }, [1143] = { [sym_comment] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [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_abstract] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2285), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [1144] = { [sym_comment] = STATE(1144), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LTtemplate_GT] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_global] = ACTIONS(2134), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym__automatic_semicolon] = ACTIONS(2402), [sym_html_comment] = ACTIONS(5), }, [1145] = { [sym_comment] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_private_property_identifier] = ACTIONS(2259), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_override] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_object] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym__automatic_semicolon] = ACTIONS(2345), + [sym_identifier] = ACTIONS(3123), + [anon_sym_export] = ACTIONS(3123), + [anon_sym_default] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_typeof] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_var] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_debugger] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_case] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LTtemplate_GT] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_void] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3123), + [sym_number] = ACTIONS(3123), + [sym_private_property_identifier] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [sym_super] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_AT] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3123), + [anon_sym_set] = ACTIONS(3123), + [anon_sym_declare] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_private] = ACTIONS(3123), + [anon_sym_protected] = ACTIONS(3123), + [anon_sym_override] = ACTIONS(3123), + [anon_sym_module] = ACTIONS(3123), + [anon_sym_any] = ACTIONS(3123), + [anon_sym_number] = ACTIONS(3123), + [anon_sym_boolean] = ACTIONS(3123), + [anon_sym_string] = ACTIONS(3123), + [anon_sym_symbol] = ACTIONS(3123), + [anon_sym_object] = ACTIONS(3123), + [anon_sym_abstract] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_interface] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [sym__automatic_semicolon] = ACTIONS(3125), [sym_html_comment] = ACTIONS(5), }, [1146] = { [sym_comment] = STATE(1146), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), [sym_html_comment] = ACTIONS(5), }, [1147] = { [sym_comment] = STATE(1147), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_case] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1148] = { [sym_comment] = STATE(1148), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [1149] = { [sym_comment] = STATE(1149), - [sym_identifier] = ACTIONS(3360), - [anon_sym_export] = ACTIONS(3360), - [anon_sym_default] = ACTIONS(3360), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_namespace] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_typeof] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_else] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_await] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_debugger] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_case] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LTtemplate_GT] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_void] = ACTIONS(3360), - [anon_sym_delete] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3360), - [sym_number] = ACTIONS(3360), - [sym_private_property_identifier] = ACTIONS(3360), - [sym_this] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_true] = ACTIONS(3360), - [sym_false] = ACTIONS(3360), - [sym_null] = ACTIONS(3360), - [sym_undefined] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3360), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_protected] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_any] = ACTIONS(3360), - [anon_sym_number] = ACTIONS(3360), - [anon_sym_boolean] = ACTIONS(3360), - [anon_sym_string] = ACTIONS(3360), - [anon_sym_symbol] = ACTIONS(3360), - [anon_sym_object] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_case] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1150] = { [sym_comment] = STATE(1150), - [sym_identifier] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_type] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_typeof] = ACTIONS(3362), - [anon_sym_import] = ACTIONS(3362), - [anon_sym_with] = ACTIONS(3362), - [anon_sym_var] = ACTIONS(3362), - [anon_sym_let] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_else] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_await] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_debugger] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_LTtemplate_GT] = ACTIONS(3362), - [anon_sym_DQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_async] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_void] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3362), - [sym_number] = ACTIONS(3362), - [sym_private_property_identifier] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [sym_super] = ACTIONS(3362), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [sym_null] = ACTIONS(3362), - [sym_undefined] = ACTIONS(3362), - [anon_sym_AT] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_readonly] = ACTIONS(3362), - [anon_sym_get] = ACTIONS(3362), - [anon_sym_set] = ACTIONS(3362), - [anon_sym_declare] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3362), - [anon_sym_module] = ACTIONS(3362), - [anon_sym_any] = ACTIONS(3362), - [anon_sym_number] = ACTIONS(3362), - [anon_sym_boolean] = ACTIONS(3362), - [anon_sym_string] = ACTIONS(3362), - [anon_sym_symbol] = ACTIONS(3362), - [anon_sym_object] = ACTIONS(3362), - [anon_sym_abstract] = ACTIONS(3362), - [anon_sym_interface] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_case] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1151] = { [sym_comment] = STATE(1151), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_default] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_else] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_case] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3365), + [anon_sym_export] = ACTIONS(3365), + [anon_sym_default] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_typeof] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_var] = ACTIONS(3365), + [anon_sym_let] = ACTIONS(3365), + [anon_sym_const] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_do] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_debugger] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_throw] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_case] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LTtemplate_GT] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_function] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_using] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_SLASH] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3365), + [sym_number] = ACTIONS(3365), + [sym_private_property_identifier] = ACTIONS(3365), + [sym_this] = ACTIONS(3365), + [sym_super] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_null] = ACTIONS(3365), + [sym_undefined] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_static] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_private] = ACTIONS(3365), + [anon_sym_protected] = ACTIONS(3365), + [anon_sym_override] = ACTIONS(3365), + [anon_sym_module] = ACTIONS(3365), + [anon_sym_any] = ACTIONS(3365), + [anon_sym_number] = ACTIONS(3365), + [anon_sym_boolean] = ACTIONS(3365), + [anon_sym_string] = ACTIONS(3365), + [anon_sym_symbol] = ACTIONS(3365), + [anon_sym_object] = ACTIONS(3365), + [anon_sym_abstract] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3365), + [anon_sym_enum] = ACTIONS(3365), [sym_html_comment] = ACTIONS(5), }, [1152] = { [sym_comment] = STATE(1152), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2187), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_case] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, [1153] = { [sym_comment] = STATE(1153), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3369), + [anon_sym_export] = ACTIONS(3369), + [anon_sym_default] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_namespace] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_typeof] = ACTIONS(3369), + [anon_sym_import] = ACTIONS(3369), + [anon_sym_with] = ACTIONS(3369), + [anon_sym_var] = ACTIONS(3369), + [anon_sym_let] = ACTIONS(3369), + [anon_sym_const] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_else] = ACTIONS(3369), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3369), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_do] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3369), + [anon_sym_break] = ACTIONS(3369), + [anon_sym_continue] = ACTIONS(3369), + [anon_sym_debugger] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3369), + [anon_sym_throw] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_case] = ACTIONS(3369), + [anon_sym_yield] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LTtemplate_GT] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [anon_sym_SQUOTE] = ACTIONS(3369), + [anon_sym_class] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_function] = ACTIONS(3369), + [anon_sym_new] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_void] = ACTIONS(3369), + [anon_sym_delete] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3369), + [sym_number] = ACTIONS(3369), + [sym_private_property_identifier] = ACTIONS(3369), + [sym_this] = ACTIONS(3369), + [sym_super] = ACTIONS(3369), + [sym_true] = ACTIONS(3369), + [sym_false] = ACTIONS(3369), + [sym_null] = ACTIONS(3369), + [sym_undefined] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3369), + [anon_sym_get] = ACTIONS(3369), + [anon_sym_set] = ACTIONS(3369), + [anon_sym_declare] = ACTIONS(3369), + [anon_sym_public] = ACTIONS(3369), + [anon_sym_private] = ACTIONS(3369), + [anon_sym_protected] = ACTIONS(3369), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3369), + [anon_sym_any] = ACTIONS(3369), + [anon_sym_number] = ACTIONS(3369), + [anon_sym_boolean] = ACTIONS(3369), + [anon_sym_string] = ACTIONS(3369), + [anon_sym_symbol] = ACTIONS(3369), + [anon_sym_object] = ACTIONS(3369), + [anon_sym_abstract] = ACTIONS(3369), + [anon_sym_global] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3369), + [anon_sym_enum] = ACTIONS(3369), [sym_html_comment] = ACTIONS(5), }, [1154] = { [sym_comment] = STATE(1154), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_case] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_case] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), [sym_html_comment] = ACTIONS(5), }, [1155] = { [sym_comment] = STATE(1155), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_else] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_default] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_else] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_case] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_global] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, [1156] = { [sym_comment] = STATE(1156), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_case] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1157] = { [sym_comment] = STATE(1157), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_case] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3377), [sym_html_comment] = ACTIONS(5), }, [1158] = { [sym_comment] = STATE(1158), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3370), - [anon_sym_default] = ACTIONS(3370), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3370), - [anon_sym_import] = ACTIONS(3370), - [anon_sym_with] = ACTIONS(3370), - [anon_sym_var] = ACTIONS(3370), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_else] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_debugger] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3370), - [anon_sym_yield] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_LTtemplate_GT] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_function] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_SLASH] = ACTIONS(3370), - [anon_sym_LT] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_private_property_identifier] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - [sym_super] = ACTIONS(3370), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [sym_undefined] = ACTIONS(3370), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_readonly] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_override] = ACTIONS(3370), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3370), - [anon_sym_interface] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_case] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1159] = { [sym_comment] = STATE(1159), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_default] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_case] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_module] = ACTIONS(3226), - [anon_sym_any] = ACTIONS(3226), - [anon_sym_number] = ACTIONS(3226), - [anon_sym_boolean] = ACTIONS(3226), - [anon_sym_string] = ACTIONS(3226), - [anon_sym_symbol] = ACTIONS(3226), - [anon_sym_object] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_case] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1160] = { [sym_comment] = STATE(1160), - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1161] = { [sym_comment] = STATE(1161), - [ts_builtin_sym_end] = ACTIONS(3372), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [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_abstract] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, [1162] = { [sym_comment] = STATE(1162), - [sym_identifier] = ACTIONS(3306), - [anon_sym_export] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_type] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3306), - [anon_sym_import] = ACTIONS(3306), - [anon_sym_with] = ACTIONS(3306), - [anon_sym_var] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_debugger] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_yield] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LTtemplate_GT] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_async] = ACTIONS(3306), - [anon_sym_function] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_private_property_identifier] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), - [sym_super] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_undefined] = ACTIONS(3306), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_readonly] = ACTIONS(3306), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_override] = ACTIONS(3306), - [anon_sym_module] = ACTIONS(3306), - [anon_sym_any] = ACTIONS(3306), - [anon_sym_number] = ACTIONS(3306), - [anon_sym_boolean] = ACTIONS(3306), - [anon_sym_string] = ACTIONS(3306), - [anon_sym_symbol] = ACTIONS(3306), - [anon_sym_object] = ACTIONS(3306), - [anon_sym_abstract] = ACTIONS(3306), - [anon_sym_interface] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), + [ts_builtin_sym_end] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_else] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_global] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, [1163] = { [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, [1164] = { [sym_comment] = STATE(1164), - [ts_builtin_sym_end] = ACTIONS(3376), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [1165] = { [sym_comment] = STATE(1165), - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_default] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_case] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_global] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, [1166] = { [sym_comment] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(3380), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [ts_builtin_sym_end] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_namespace] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_typeof] = ACTIONS(3261), + [anon_sym_import] = ACTIONS(3261), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_var] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_else] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_switch] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_await] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_debugger] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_throw] = ACTIONS(3261), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LTtemplate_GT] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_SQUOTE] = ACTIONS(3261), + [anon_sym_class] = ACTIONS(3261), + [anon_sym_async] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_using] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_void] = ACTIONS(3261), + [anon_sym_delete] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3261), + [sym_number] = ACTIONS(3261), + [sym_private_property_identifier] = ACTIONS(3261), + [sym_this] = ACTIONS(3261), + [sym_super] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_null] = ACTIONS(3261), + [sym_undefined] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_static] = ACTIONS(3261), + [anon_sym_readonly] = ACTIONS(3261), + [anon_sym_get] = ACTIONS(3261), + [anon_sym_set] = ACTIONS(3261), + [anon_sym_declare] = ACTIONS(3261), + [anon_sym_public] = ACTIONS(3261), + [anon_sym_private] = ACTIONS(3261), + [anon_sym_protected] = ACTIONS(3261), + [anon_sym_override] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3261), + [anon_sym_any] = ACTIONS(3261), + [anon_sym_number] = ACTIONS(3261), + [anon_sym_boolean] = ACTIONS(3261), + [anon_sym_string] = ACTIONS(3261), + [anon_sym_symbol] = ACTIONS(3261), + [anon_sym_object] = ACTIONS(3261), + [anon_sym_abstract] = ACTIONS(3261), + [anon_sym_global] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), [sym_html_comment] = ACTIONS(5), }, [1167] = { [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2447), + [ts_builtin_sym_end] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3259), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_debugger] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LTtemplate_GT] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_void] = ACTIONS(3259), + [anon_sym_delete] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3259), + [sym_number] = ACTIONS(3259), + [sym_private_property_identifier] = ACTIONS(3259), + [sym_this] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_undefined] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [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_abstract] = ACTIONS(3259), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), [sym_html_comment] = ACTIONS(5), }, [1168] = { [sym_comment] = STATE(1168), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_default] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_case] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, [1169] = { [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2445), + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_global] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2448), [sym_html_comment] = ACTIONS(5), }, [1170] = { [sym_comment] = STATE(1170), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3251), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_case] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_LTtemplate_GT] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_void] = ACTIONS(3251), + [anon_sym_delete] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_number] = ACTIONS(3251), + [sym_private_property_identifier] = ACTIONS(3251), + [sym_this] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_undefined] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3251), + [anon_sym_any] = ACTIONS(3251), + [anon_sym_number] = ACTIONS(3251), + [anon_sym_boolean] = ACTIONS(3251), + [anon_sym_string] = ACTIONS(3251), + [anon_sym_symbol] = ACTIONS(3251), + [anon_sym_object] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), [sym_html_comment] = ACTIONS(5), }, [1171] = { [sym_comment] = STATE(1171), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_global] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2444), [sym_html_comment] = ACTIONS(5), }, [1172] = { [sym_comment] = STATE(1172), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3253), + [anon_sym_export] = ACTIONS(3253), + [anon_sym_default] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_namespace] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_typeof] = ACTIONS(3253), + [anon_sym_import] = ACTIONS(3253), + [anon_sym_with] = ACTIONS(3253), + [anon_sym_var] = ACTIONS(3253), + [anon_sym_let] = ACTIONS(3253), + [anon_sym_const] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_switch] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_await] = ACTIONS(3253), + [anon_sym_while] = ACTIONS(3253), + [anon_sym_do] = ACTIONS(3253), + [anon_sym_try] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_debugger] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_throw] = ACTIONS(3253), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_case] = ACTIONS(3253), + [anon_sym_yield] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LTtemplate_GT] = ACTIONS(3253), + [anon_sym_DQUOTE] = ACTIONS(3253), + [anon_sym_SQUOTE] = ACTIONS(3253), + [anon_sym_class] = ACTIONS(3253), + [anon_sym_async] = ACTIONS(3253), + [anon_sym_function] = ACTIONS(3253), + [anon_sym_new] = ACTIONS(3253), + [anon_sym_using] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_void] = ACTIONS(3253), + [anon_sym_delete] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3253), + [sym_number] = ACTIONS(3253), + [sym_private_property_identifier] = ACTIONS(3253), + [sym_this] = ACTIONS(3253), + [sym_super] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_null] = ACTIONS(3253), + [sym_undefined] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3253), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_get] = ACTIONS(3253), + [anon_sym_set] = ACTIONS(3253), + [anon_sym_declare] = ACTIONS(3253), + [anon_sym_public] = ACTIONS(3253), + [anon_sym_private] = ACTIONS(3253), + [anon_sym_protected] = ACTIONS(3253), + [anon_sym_override] = ACTIONS(3253), + [anon_sym_module] = ACTIONS(3253), + [anon_sym_any] = ACTIONS(3253), + [anon_sym_number] = ACTIONS(3253), + [anon_sym_boolean] = ACTIONS(3253), + [anon_sym_string] = ACTIONS(3253), + [anon_sym_symbol] = ACTIONS(3253), + [anon_sym_object] = ACTIONS(3253), + [anon_sym_abstract] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3253), [sym_html_comment] = ACTIONS(5), }, [1173] = { [sym_comment] = STATE(1173), - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2139), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_typeof] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_var] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_debugger] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_throw] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LTtemplate_GT] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_function] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_using] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2139), - [anon_sym_delete] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2139), - [sym_number] = ACTIONS(2139), - [sym_private_property_identifier] = ACTIONS(2139), - [sym_this] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_undefined] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [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_abstract] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [sym__automatic_semicolon] = ACTIONS(2421), + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [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_abstract] = ACTIONS(3255), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1174] = { [sym_comment] = STATE(1174), - [sym_identifier] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_type] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_typeof] = ACTIONS(3362), - [anon_sym_import] = ACTIONS(3362), - [anon_sym_with] = ACTIONS(3362), - [anon_sym_var] = ACTIONS(3362), - [anon_sym_let] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_await] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_debugger] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_LTtemplate_GT] = ACTIONS(3362), - [anon_sym_DQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_async] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_void] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3362), - [sym_number] = ACTIONS(3362), - [sym_private_property_identifier] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [sym_super] = ACTIONS(3362), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [sym_null] = ACTIONS(3362), - [sym_undefined] = ACTIONS(3362), - [anon_sym_AT] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_readonly] = ACTIONS(3362), - [anon_sym_get] = ACTIONS(3362), - [anon_sym_set] = ACTIONS(3362), - [anon_sym_declare] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3362), - [anon_sym_module] = ACTIONS(3362), - [anon_sym_any] = ACTIONS(3362), - [anon_sym_number] = ACTIONS(3362), - [anon_sym_boolean] = ACTIONS(3362), - [anon_sym_string] = ACTIONS(3362), - [anon_sym_symbol] = ACTIONS(3362), - [anon_sym_object] = ACTIONS(3362), - [anon_sym_abstract] = ACTIONS(3362), - [anon_sym_interface] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), + [ts_builtin_sym_end] = ACTIONS(2336), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_global] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2450), [sym_html_comment] = ACTIONS(5), }, [1175] = { [sym_comment] = STATE(1175), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2453), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LTtemplate_GT] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_number] = ACTIONS(2148), + [sym_private_property_identifier] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_global] = ACTIONS(2148), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [sym__automatic_semicolon] = ACTIONS(2490), [sym_html_comment] = ACTIONS(5), }, [1176] = { [sym_comment] = STATE(1176), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_default] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_case] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_case] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, [1177] = { [sym_comment] = STATE(1177), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_default] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_case] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_typeof] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_with] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_await] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_debugger] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LTtemplate_GT] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2134), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [sym_null] = ACTIONS(2134), + [sym_undefined] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_global] = ACTIONS(2134), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [sym__automatic_semicolon] = ACTIONS(2452), [sym_html_comment] = ACTIONS(5), }, [1178] = { [sym_comment] = STATE(1178), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), [sym_html_comment] = ACTIONS(5), }, [1179] = { [sym_comment] = STATE(1179), - [ts_builtin_sym_end] = ACTIONS(3384), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [ts_builtin_sym_end] = ACTIONS(3391), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_else] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, [1180] = { [sym_comment] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3098), - [anon_sym_export] = ACTIONS(3098), - [anon_sym_type] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3098), - [anon_sym_typeof] = ACTIONS(3098), - [anon_sym_import] = ACTIONS(3098), - [anon_sym_with] = ACTIONS(3098), - [anon_sym_var] = ACTIONS(3098), - [anon_sym_let] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym_await] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_debugger] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3098), - [anon_sym_finally] = ACTIONS(3098), - [anon_sym_yield] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_LTtemplate_GT] = ACTIONS(3098), - [anon_sym_DQUOTE] = ACTIONS(3098), - [anon_sym_SQUOTE] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_async] = ACTIONS(3098), - [anon_sym_function] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_void] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3098), - [sym_number] = ACTIONS(3098), - [sym_private_property_identifier] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), - [sym_super] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_undefined] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_readonly] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(3098), - [anon_sym_set] = ACTIONS(3098), - [anon_sym_declare] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [anon_sym_override] = ACTIONS(3098), - [anon_sym_module] = ACTIONS(3098), - [anon_sym_any] = ACTIONS(3098), - [anon_sym_number] = ACTIONS(3098), - [anon_sym_boolean] = ACTIONS(3098), - [anon_sym_string] = ACTIONS(3098), - [anon_sym_symbol] = ACTIONS(3098), - [anon_sym_object] = ACTIONS(3098), - [anon_sym_abstract] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, [1181] = { [sym_comment] = STATE(1181), - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), [sym_html_comment] = ACTIONS(5), }, [1182] = { [sym_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(3388), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_LTtemplate_GT] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3348), - [sym_number] = ACTIONS(3348), - [sym_private_property_identifier] = ACTIONS(3348), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3348), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_override] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), + [ts_builtin_sym_end] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3211), + [anon_sym_export] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_debugger] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LTtemplate_GT] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_void] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3211), + [sym_number] = ACTIONS(3211), + [sym_private_property_identifier] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [sym_undefined] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_any] = ACTIONS(3211), + [anon_sym_number] = ACTIONS(3211), + [anon_sym_boolean] = ACTIONS(3211), + [anon_sym_string] = ACTIONS(3211), + [anon_sym_symbol] = ACTIONS(3211), + [anon_sym_object] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), [sym_html_comment] = ACTIONS(5), }, [1183] = { [sym_comment] = STATE(1183), - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3350), - [anon_sym_import] = ACTIONS(3350), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_var] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_debugger] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LTtemplate_GT] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_async] = ACTIONS(3350), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_private_property_identifier] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [sym_super] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_null] = ACTIONS(3350), - [sym_undefined] = ACTIONS(3350), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_readonly] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3350), - [anon_sym_set] = ACTIONS(3350), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_override] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3325), + [anon_sym_default] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_namespace] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_typeof] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_var] = ACTIONS(3325), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_debugger] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_throw] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_case] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LTtemplate_GT] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_function] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3325), + [sym_number] = ACTIONS(3325), + [sym_private_property_identifier] = ACTIONS(3325), + [sym_this] = ACTIONS(3325), + [sym_super] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_undefined] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3325), + [anon_sym_set] = ACTIONS(3325), + [anon_sym_declare] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_any] = ACTIONS(3325), + [anon_sym_number] = ACTIONS(3325), + [anon_sym_boolean] = ACTIONS(3325), + [anon_sym_string] = ACTIONS(3325), + [anon_sym_symbol] = ACTIONS(3325), + [anon_sym_object] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), [sym_html_comment] = ACTIONS(5), }, [1184] = { [sym_comment] = STATE(1184), - [sym_identifier] = ACTIONS(3298), - [anon_sym_export] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3298), - [anon_sym_import] = ACTIONS(3298), - [anon_sym_with] = ACTIONS(3298), - [anon_sym_var] = ACTIONS(3298), - [anon_sym_let] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_debugger] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_yield] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LTtemplate_GT] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_function] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_private_property_identifier] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - [sym_super] = ACTIONS(3298), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [sym_null] = ACTIONS(3298), - [sym_undefined] = ACTIONS(3298), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_readonly] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3298), - [anon_sym_set] = ACTIONS(3298), - [anon_sym_declare] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3298), - [anon_sym_module] = ACTIONS(3298), - [anon_sym_any] = ACTIONS(3298), - [anon_sym_number] = ACTIONS(3298), - [anon_sym_boolean] = ACTIONS(3298), - [anon_sym_string] = ACTIONS(3298), - [anon_sym_symbol] = ACTIONS(3298), - [anon_sym_object] = ACTIONS(3298), - [anon_sym_abstract] = ACTIONS(3298), - [anon_sym_interface] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(3397), [sym_html_comment] = ACTIONS(5), }, [1185] = { [sym_comment] = STATE(1185), - [ts_builtin_sym_end] = ACTIONS(3392), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1186] = { [sym_comment] = STATE(1186), - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3318), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3318), - [anon_sym_import] = ACTIONS(3318), - [anon_sym_with] = ACTIONS(3318), - [anon_sym_var] = ACTIONS(3318), - [anon_sym_let] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_else] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_debugger] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LTtemplate_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_async] = ACTIONS(3318), - [anon_sym_function] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3318), - [sym_super] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_null] = ACTIONS(3318), - [sym_undefined] = ACTIONS(3318), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3318), - [anon_sym_readonly] = ACTIONS(3318), - [anon_sym_get] = ACTIONS(3318), - [anon_sym_set] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3318), - [anon_sym_module] = ACTIONS(3318), - [anon_sym_any] = ACTIONS(3318), - [anon_sym_number] = ACTIONS(3318), - [anon_sym_boolean] = ACTIONS(3318), - [anon_sym_string] = ACTIONS(3318), - [anon_sym_symbol] = ACTIONS(3318), - [anon_sym_object] = ACTIONS(3318), - [anon_sym_abstract] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(2170), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_global] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), [sym_html_comment] = ACTIONS(5), }, [1187] = { [sym_comment] = STATE(1187), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_LTtemplate_GT] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3300), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_object] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_case] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, [1188] = { [sym_comment] = STATE(1188), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3370), - [anon_sym_default] = ACTIONS(3370), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3370), - [anon_sym_import] = ACTIONS(3370), - [anon_sym_with] = ACTIONS(3370), - [anon_sym_var] = ACTIONS(3370), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_debugger] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3370), - [anon_sym_yield] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_LTtemplate_GT] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_function] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_SLASH] = ACTIONS(3370), - [anon_sym_LT] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_private_property_identifier] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - [sym_super] = ACTIONS(3370), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [sym_undefined] = ACTIONS(3370), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_readonly] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_override] = ACTIONS(3370), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3370), - [anon_sym_interface] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_with] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_debugger] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LTtemplate_GT] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_private_property_identifier] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_undefined] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_readonly] = ACTIONS(2198), + [anon_sym_get] = ACTIONS(2198), + [anon_sym_set] = ACTIONS(2198), + [anon_sym_declare] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_module] = ACTIONS(2198), + [anon_sym_any] = ACTIONS(2198), + [anon_sym_number] = ACTIONS(2198), + [anon_sym_boolean] = ACTIONS(2198), + [anon_sym_string] = ACTIONS(2198), + [anon_sym_symbol] = ACTIONS(2198), + [anon_sym_object] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_global] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), [sym_html_comment] = ACTIONS(5), }, [1189] = { [sym_comment] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(3396), - [sym_identifier] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_type] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_typeof] = ACTIONS(3362), - [anon_sym_import] = ACTIONS(3362), - [anon_sym_with] = ACTIONS(3362), - [anon_sym_var] = ACTIONS(3362), - [anon_sym_let] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_else] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_await] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_debugger] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_LTtemplate_GT] = ACTIONS(3362), - [anon_sym_DQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_async] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_void] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3362), - [sym_number] = ACTIONS(3362), - [sym_private_property_identifier] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [sym_super] = ACTIONS(3362), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [sym_null] = ACTIONS(3362), - [sym_undefined] = ACTIONS(3362), - [anon_sym_AT] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_readonly] = ACTIONS(3362), - [anon_sym_get] = ACTIONS(3362), - [anon_sym_set] = ACTIONS(3362), - [anon_sym_declare] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3362), - [anon_sym_module] = ACTIONS(3362), - [anon_sym_any] = ACTIONS(3362), - [anon_sym_number] = ACTIONS(3362), - [anon_sym_boolean] = ACTIONS(3362), - [anon_sym_string] = ACTIONS(3362), - [anon_sym_symbol] = ACTIONS(3362), - [anon_sym_object] = ACTIONS(3362), - [anon_sym_abstract] = ACTIONS(3362), - [anon_sym_interface] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1190] = { [sym_comment] = STATE(1190), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, [1191] = { [sym_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_else] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), + [ts_builtin_sym_end] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3307), + [anon_sym_export] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_debugger] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LTtemplate_GT] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_delete] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3307), + [sym_number] = ACTIONS(3307), + [sym_private_property_identifier] = ACTIONS(3307), + [sym_this] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_get] = ACTIONS(3307), + [anon_sym_set] = ACTIONS(3307), + [anon_sym_declare] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_module] = ACTIONS(3307), + [anon_sym_any] = ACTIONS(3307), + [anon_sym_number] = ACTIONS(3307), + [anon_sym_boolean] = ACTIONS(3307), + [anon_sym_string] = ACTIONS(3307), + [anon_sym_symbol] = ACTIONS(3307), + [anon_sym_object] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1192] = { [sym_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), + [sym_identifier] = ACTIONS(3145), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_debugger] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_case] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LTtemplate_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3145), + [sym_number] = ACTIONS(3145), + [sym_private_property_identifier] = ACTIONS(3145), + [sym_this] = ACTIONS(3145), + [sym_super] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_null] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_get] = ACTIONS(3145), + [anon_sym_set] = ACTIONS(3145), + [anon_sym_declare] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_module] = ACTIONS(3145), + [anon_sym_any] = ACTIONS(3145), + [anon_sym_number] = ACTIONS(3145), + [anon_sym_boolean] = ACTIONS(3145), + [anon_sym_string] = ACTIONS(3145), + [anon_sym_symbol] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), [sym_html_comment] = ACTIONS(5), }, [1193] = { [sym_comment] = STATE(1193), - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [ts_builtin_sym_end] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, [1194] = { [sym_comment] = STATE(1194), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_LTtemplate_GT] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_override] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_global] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [1195] = { [sym_comment] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [ts_builtin_sym_end] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3315), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_debugger] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LTtemplate_GT] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3315), + [sym_number] = ACTIONS(3315), + [sym_private_property_identifier] = ACTIONS(3315), + [sym_this] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_get] = ACTIONS(3315), + [anon_sym_set] = ACTIONS(3315), + [anon_sym_declare] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_any] = ACTIONS(3315), + [anon_sym_number] = ACTIONS(3315), + [anon_sym_boolean] = ACTIONS(3315), + [anon_sym_string] = ACTIONS(3315), + [anon_sym_symbol] = ACTIONS(3315), + [anon_sym_object] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), [sym_html_comment] = ACTIONS(5), }, [1196] = { [sym_comment] = STATE(1196), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, [1197] = { [sym_comment] = STATE(1197), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_global] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, [1198] = { [sym_comment] = STATE(1198), - [ts_builtin_sym_end] = ACTIONS(3404), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3314), - [anon_sym_import] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3314), - [anon_sym_var] = ACTIONS(3314), - [anon_sym_let] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_else] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_debugger] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LTtemplate_GT] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_async] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_private_property_identifier] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - [sym_super] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_null] = ACTIONS(3314), - [sym_undefined] = ACTIONS(3314), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3314), - [anon_sym_set] = ACTIONS(3314), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_override] = ACTIONS(3314), - [anon_sym_module] = ACTIONS(3314), - [anon_sym_any] = ACTIONS(3314), - [anon_sym_number] = ACTIONS(3314), - [anon_sym_boolean] = ACTIONS(3314), - [anon_sym_string] = ACTIONS(3314), - [anon_sym_symbol] = ACTIONS(3314), - [anon_sym_object] = ACTIONS(3314), - [anon_sym_abstract] = ACTIONS(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LTtemplate_GT] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_private_property_identifier] = ACTIONS(2174), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_global] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, [1199] = { [sym_comment] = STATE(1199), - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_else] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3165), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_type] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_typeof] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_await] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_debugger] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_case] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LTtemplate_GT] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_void] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3165), + [sym_number] = ACTIONS(3165), + [sym_private_property_identifier] = ACTIONS(3165), + [sym_this] = ACTIONS(3165), + [sym_super] = ACTIONS(3165), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [sym_null] = ACTIONS(3165), + [sym_undefined] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_readonly] = ACTIONS(3165), + [anon_sym_get] = ACTIONS(3165), + [anon_sym_set] = ACTIONS(3165), + [anon_sym_declare] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_any] = ACTIONS(3165), + [anon_sym_number] = ACTIONS(3165), + [anon_sym_boolean] = ACTIONS(3165), + [anon_sym_string] = ACTIONS(3165), + [anon_sym_symbol] = ACTIONS(3165), + [anon_sym_object] = ACTIONS(3165), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_global] = ACTIONS(3165), + [anon_sym_interface] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), [sym_html_comment] = ACTIONS(5), }, [1200] = { [sym_comment] = STATE(1200), - [ts_builtin_sym_end] = ACTIONS(3408), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LTtemplate_GT] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_using] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3312), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3312), - [anon_sym_DASH_DASH] = ACTIONS(3312), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_number] = ACTIONS(3312), - [sym_private_property_identifier] = ACTIONS(3312), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3312), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [1201] = { [sym_comment] = STATE(1201), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_default] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3350), - [anon_sym_import] = ACTIONS(3350), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_var] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_debugger] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3350), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LTtemplate_GT] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_async] = ACTIONS(3350), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_private_property_identifier] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [sym_super] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_null] = ACTIONS(3350), - [sym_undefined] = ACTIONS(3350), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_readonly] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3350), - [anon_sym_set] = ACTIONS(3350), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_override] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), + [ts_builtin_sym_end] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_else] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_global] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, [1202] = { [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [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_abstract] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2431), + [ts_builtin_sym_end] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, [1203] = { [sym_comment] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2259), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_typeof] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_var] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_switch] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_debugger] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LTtemplate_GT] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_function] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2259), - [sym_number] = ACTIONS(2259), - [sym_private_property_identifier] = ACTIONS(2259), - [sym_this] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_null] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_get] = ACTIONS(2259), - [anon_sym_set] = ACTIONS(2259), - [anon_sym_declare] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_private] = ACTIONS(2259), - [anon_sym_protected] = ACTIONS(2259), - [anon_sym_override] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_any] = ACTIONS(2259), - [anon_sym_number] = ACTIONS(2259), - [anon_sym_boolean] = ACTIONS(2259), - [anon_sym_string] = ACTIONS(2259), - [anon_sym_symbol] = ACTIONS(2259), - [anon_sym_object] = ACTIONS(2259), - [anon_sym_abstract] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [sym__automatic_semicolon] = ACTIONS(2443), + [ts_builtin_sym_end] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3251), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_LTtemplate_GT] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_void] = ACTIONS(3251), + [anon_sym_delete] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_number] = ACTIONS(3251), + [sym_private_property_identifier] = ACTIONS(3251), + [sym_this] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_undefined] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3251), + [anon_sym_any] = ACTIONS(3251), + [anon_sym_number] = ACTIONS(3251), + [anon_sym_boolean] = ACTIONS(3251), + [anon_sym_string] = ACTIONS(3251), + [anon_sym_symbol] = ACTIONS(3251), + [anon_sym_object] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), [sym_html_comment] = ACTIONS(5), }, [1204] = { [sym_comment] = STATE(1204), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3334), - [anon_sym_any] = ACTIONS(3334), - [anon_sym_number] = ACTIONS(3334), - [anon_sym_boolean] = ACTIONS(3334), - [anon_sym_string] = ACTIONS(3334), - [anon_sym_symbol] = ACTIONS(3334), - [anon_sym_object] = ACTIONS(3334), - [anon_sym_abstract] = ACTIONS(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [ts_builtin_sym_end] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_else] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_global] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, [1205] = { [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3308), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_typeof] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(3308), - [anon_sym_with] = ACTIONS(3308), - [anon_sym_var] = ACTIONS(3308), - [anon_sym_let] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_else] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_await] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_yield] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_LTtemplate_GT] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_function] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_LT] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_void] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3308), - [sym_number] = ACTIONS(3308), - [sym_private_property_identifier] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), - [sym_super] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_null] = ACTIONS(3308), - [sym_undefined] = ACTIONS(3308), - [anon_sym_AT] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_readonly] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_declare] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3308), - [anon_sym_module] = ACTIONS(3308), - [anon_sym_any] = ACTIONS(3308), - [anon_sym_number] = ACTIONS(3308), - [anon_sym_boolean] = ACTIONS(3308), - [anon_sym_string] = ACTIONS(3308), - [anon_sym_symbol] = ACTIONS(3308), - [anon_sym_object] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1206] = { [sym_comment] = STATE(1206), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_debugger] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_case] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LTtemplate_GT] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_void] = ACTIONS(3287), + [anon_sym_delete] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3287), + [sym_number] = ACTIONS(3287), + [sym_private_property_identifier] = ACTIONS(3287), + [sym_this] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_null] = ACTIONS(3287), + [sym_undefined] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_get] = ACTIONS(3287), + [anon_sym_set] = ACTIONS(3287), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), [sym_html_comment] = ACTIONS(5), }, [1207] = { [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(3412), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1208] = { [sym_comment] = STATE(1208), - [sym_identifier] = ACTIONS(3338), - [anon_sym_export] = ACTIONS(3338), - [anon_sym_default] = ACTIONS(3338), - [anon_sym_type] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3338), - [anon_sym_import] = ACTIONS(3338), - [anon_sym_with] = ACTIONS(3338), - [anon_sym_var] = ACTIONS(3338), - [anon_sym_let] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_debugger] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_throw] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3338), - [anon_sym_yield] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LTtemplate_GT] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_class] = ACTIONS(3338), - [anon_sym_async] = ACTIONS(3338), - [anon_sym_function] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3338), - [anon_sym_delete] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_private_property_identifier] = ACTIONS(3338), - [sym_this] = ACTIONS(3338), - [sym_super] = ACTIONS(3338), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_undefined] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_readonly] = ACTIONS(3338), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3338), - [anon_sym_declare] = ACTIONS(3338), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3338), - [anon_sym_any] = ACTIONS(3338), - [anon_sym_number] = ACTIONS(3338), - [anon_sym_boolean] = ACTIONS(3338), - [anon_sym_string] = ACTIONS(3338), - [anon_sym_symbol] = ACTIONS(3338), - [anon_sym_object] = ACTIONS(3338), - [anon_sym_abstract] = ACTIONS(3338), - [anon_sym_interface] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), + [ts_builtin_sym_end] = ACTIONS(3417), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_namespace] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_typeof] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_var] = ACTIONS(3325), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_else] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_debugger] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_throw] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LTtemplate_GT] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_function] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3325), + [sym_number] = ACTIONS(3325), + [sym_private_property_identifier] = ACTIONS(3325), + [sym_this] = ACTIONS(3325), + [sym_super] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_undefined] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3325), + [anon_sym_set] = ACTIONS(3325), + [anon_sym_declare] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_any] = ACTIONS(3325), + [anon_sym_number] = ACTIONS(3325), + [anon_sym_boolean] = ACTIONS(3325), + [anon_sym_string] = ACTIONS(3325), + [anon_sym_symbol] = ACTIONS(3325), + [anon_sym_object] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), [sym_html_comment] = ACTIONS(5), }, [1209] = { [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, [1210] = { [sym_comment] = STATE(1210), - [ts_builtin_sym_end] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), + [ts_builtin_sym_end] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_global] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, [1211] = { [sym_comment] = STATE(1211), - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3286), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LTtemplate_GT] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_async] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_private_property_identifier] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - [sym_super] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_undefined] = ACTIONS(3286), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_readonly] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_override] = ACTIONS(3286), - [anon_sym_module] = ACTIONS(3286), - [anon_sym_any] = ACTIONS(3286), - [anon_sym_number] = ACTIONS(3286), - [anon_sym_boolean] = ACTIONS(3286), - [anon_sym_string] = ACTIONS(3286), - [anon_sym_symbol] = ACTIONS(3286), - [anon_sym_object] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [1212] = { [sym_comment] = STATE(1212), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3185), + [anon_sym_export] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3185), + [anon_sym_typeof] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3185), + [anon_sym_with] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [anon_sym_let] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_debugger] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_LTtemplate_GT] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_function] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_void] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3185), + [sym_number] = ACTIONS(3185), + [sym_private_property_identifier] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [sym_super] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_null] = ACTIONS(3185), + [sym_undefined] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_get] = ACTIONS(3185), + [anon_sym_set] = ACTIONS(3185), + [anon_sym_declare] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_protected] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_module] = ACTIONS(3185), + [anon_sym_any] = ACTIONS(3185), + [anon_sym_number] = ACTIONS(3185), + [anon_sym_boolean] = ACTIONS(3185), + [anon_sym_string] = ACTIONS(3185), + [anon_sym_symbol] = ACTIONS(3185), + [anon_sym_object] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), [sym_html_comment] = ACTIONS(5), }, [1213] = { [sym_comment] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(3420), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1214] = { [sym_comment] = STATE(1214), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [ts_builtin_sym_end] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, [1215] = { [sym_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1216] = { [sym_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, [1217] = { [sym_comment] = STATE(1217), - [sym_identifier] = ACTIONS(3360), - [anon_sym_export] = ACTIONS(3360), - [anon_sym_default] = ACTIONS(3360), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_namespace] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_typeof] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_await] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_debugger] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_case] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LTtemplate_GT] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_void] = ACTIONS(3360), - [anon_sym_delete] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3360), - [sym_number] = ACTIONS(3360), - [sym_private_property_identifier] = ACTIONS(3360), - [sym_this] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_true] = ACTIONS(3360), - [sym_false] = ACTIONS(3360), - [sym_null] = ACTIONS(3360), - [sym_undefined] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3360), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_protected] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_any] = ACTIONS(3360), - [anon_sym_number] = ACTIONS(3360), - [anon_sym_boolean] = ACTIONS(3360), - [anon_sym_string] = ACTIONS(3360), - [anon_sym_symbol] = ACTIONS(3360), - [anon_sym_object] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1218] = { [sym_comment] = STATE(1218), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1219] = { [sym_comment] = STATE(1219), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3289), + [anon_sym_export] = ACTIONS(3289), + [anon_sym_default] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3289), + [anon_sym_with] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_debugger] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_case] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LTtemplate_GT] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_function] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_void] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3289), + [sym_number] = ACTIONS(3289), + [sym_private_property_identifier] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [sym_super] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_null] = ACTIONS(3289), + [sym_undefined] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_get] = ACTIONS(3289), + [anon_sym_set] = ACTIONS(3289), + [anon_sym_declare] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_module] = ACTIONS(3289), + [anon_sym_any] = ACTIONS(3289), + [anon_sym_number] = ACTIONS(3289), + [anon_sym_boolean] = ACTIONS(3289), + [anon_sym_string] = ACTIONS(3289), + [anon_sym_symbol] = ACTIONS(3289), + [anon_sym_object] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_global] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), [sym_html_comment] = ACTIONS(5), }, [1220] = { [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(3424), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3229), + [anon_sym_export] = ACTIONS(3229), + [anon_sym_default] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_typeof] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(3229), + [anon_sym_var] = ACTIONS(3229), + [anon_sym_let] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_debugger] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_throw] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_case] = ACTIONS(3229), + [anon_sym_yield] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LTtemplate_GT] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_class] = ACTIONS(3229), + [anon_sym_async] = ACTIONS(3229), + [anon_sym_function] = ACTIONS(3229), + [anon_sym_new] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3229), + [sym_number] = ACTIONS(3229), + [sym_private_property_identifier] = ACTIONS(3229), + [sym_this] = ACTIONS(3229), + [sym_super] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_null] = ACTIONS(3229), + [sym_undefined] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3229), + [anon_sym_readonly] = ACTIONS(3229), + [anon_sym_get] = ACTIONS(3229), + [anon_sym_set] = ACTIONS(3229), + [anon_sym_declare] = ACTIONS(3229), + [anon_sym_public] = ACTIONS(3229), + [anon_sym_private] = ACTIONS(3229), + [anon_sym_protected] = ACTIONS(3229), + [anon_sym_override] = ACTIONS(3229), + [anon_sym_module] = ACTIONS(3229), + [anon_sym_any] = ACTIONS(3229), + [anon_sym_number] = ACTIONS(3229), + [anon_sym_boolean] = ACTIONS(3229), + [anon_sym_string] = ACTIONS(3229), + [anon_sym_symbol] = ACTIONS(3229), + [anon_sym_object] = ACTIONS(3229), + [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_global] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), [sym_html_comment] = ACTIONS(5), }, [1221] = { [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LTtemplate_GT] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_number] = ACTIONS(2120), + [sym_private_property_identifier] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_global] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), [sym_html_comment] = ACTIONS(5), }, [1222] = { [sym_comment] = STATE(1222), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_global] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), [sym_html_comment] = ACTIONS(5), }, [1223] = { [sym_comment] = STATE(1223), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_LTtemplate_GT] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3348), - [sym_number] = ACTIONS(3348), - [sym_private_property_identifier] = ACTIONS(3348), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3348), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_override] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_case] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, [1224] = { [sym_comment] = STATE(1224), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_default] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_case] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_global] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, [1225] = { [sym_comment] = STATE(1225), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_default] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_case] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), + [ts_builtin_sym_end] = ACTIONS(3425), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, [1226] = { [sym_comment] = STATE(1226), - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3370), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3370), - [anon_sym_import] = ACTIONS(3370), - [anon_sym_with] = ACTIONS(3370), - [anon_sym_var] = ACTIONS(3370), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_else] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_debugger] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_yield] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_LTtemplate_GT] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_function] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_SLASH] = ACTIONS(3370), - [anon_sym_LT] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_private_property_identifier] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - [sym_super] = ACTIONS(3370), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [sym_undefined] = ACTIONS(3370), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_readonly] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_override] = ACTIONS(3370), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3370), - [anon_sym_interface] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [1227] = { [sym_comment] = STATE(1227), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), + [ts_builtin_sym_end] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3145), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_debugger] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LTtemplate_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3145), + [sym_number] = ACTIONS(3145), + [sym_private_property_identifier] = ACTIONS(3145), + [sym_this] = ACTIONS(3145), + [sym_super] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_null] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_get] = ACTIONS(3145), + [anon_sym_set] = ACTIONS(3145), + [anon_sym_declare] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_module] = ACTIONS(3145), + [anon_sym_any] = ACTIONS(3145), + [anon_sym_number] = ACTIONS(3145), + [anon_sym_boolean] = ACTIONS(3145), + [anon_sym_string] = ACTIONS(3145), + [anon_sym_symbol] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), [sym_html_comment] = ACTIONS(5), }, [1228] = { [sym_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(3428), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_LTtemplate_GT] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_override] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), + [sym_identifier] = ACTIONS(3211), + [anon_sym_export] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_debugger] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LTtemplate_GT] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_void] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3211), + [sym_number] = ACTIONS(3211), + [sym_private_property_identifier] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [sym_undefined] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_any] = ACTIONS(3211), + [anon_sym_number] = ACTIONS(3211), + [anon_sym_boolean] = ACTIONS(3211), + [anon_sym_string] = ACTIONS(3211), + [anon_sym_symbol] = ACTIONS(3211), + [anon_sym_object] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), [sym_html_comment] = ACTIONS(5), }, [1229] = { [sym_comment] = STATE(1229), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_case] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, [1230] = { [sym_comment] = STATE(1230), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_default] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_case] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, [1231] = { [sym_comment] = STATE(1231), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(3429), + [sym_identifier] = ACTIONS(3165), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_type] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_typeof] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_await] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_debugger] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LTtemplate_GT] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_void] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3165), + [sym_number] = ACTIONS(3165), + [sym_private_property_identifier] = ACTIONS(3165), + [sym_this] = ACTIONS(3165), + [sym_super] = ACTIONS(3165), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [sym_null] = ACTIONS(3165), + [sym_undefined] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_readonly] = ACTIONS(3165), + [anon_sym_get] = ACTIONS(3165), + [anon_sym_set] = ACTIONS(3165), + [anon_sym_declare] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_any] = ACTIONS(3165), + [anon_sym_number] = ACTIONS(3165), + [anon_sym_boolean] = ACTIONS(3165), + [anon_sym_string] = ACTIONS(3165), + [anon_sym_symbol] = ACTIONS(3165), + [anon_sym_object] = ACTIONS(3165), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_global] = ACTIONS(3165), + [anon_sym_interface] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), [sym_html_comment] = ACTIONS(5), }, [1232] = { [sym_comment] = STATE(1232), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_finally] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [1233] = { [sym_comment] = STATE(1233), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [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_abstract] = ACTIONS(3255), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1234] = { [sym_comment] = STATE(1234), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [ts_builtin_sym_end] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [1235] = { [sym_comment] = STATE(1235), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_default] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_default] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_case] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, [1236] = { [sym_comment] = STATE(1236), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [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_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3259), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_debugger] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_case] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LTtemplate_GT] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_void] = ACTIONS(3259), + [anon_sym_delete] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3259), + [sym_number] = ACTIONS(3259), + [sym_private_property_identifier] = ACTIONS(3259), + [sym_this] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_undefined] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [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_abstract] = ACTIONS(3259), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), [sym_html_comment] = ACTIONS(5), }, [1237] = { [sym_comment] = STATE(1237), - [sym_identifier] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_default] = ACTIONS(3310), - [anon_sym_type] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_typeof] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_with] = ACTIONS(3310), - [anon_sym_var] = ACTIONS(3310), - [anon_sym_let] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_await] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_debugger] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym_case] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_LTtemplate_GT] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_async] = ACTIONS(3310), - [anon_sym_function] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_SLASH] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_void] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3310), - [sym_number] = ACTIONS(3310), - [sym_private_property_identifier] = ACTIONS(3310), - [sym_this] = ACTIONS(3310), - [sym_super] = ACTIONS(3310), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [sym_null] = ACTIONS(3310), - [sym_undefined] = ACTIONS(3310), - [anon_sym_AT] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_readonly] = ACTIONS(3310), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3310), - [anon_sym_declare] = ACTIONS(3310), - [anon_sym_public] = ACTIONS(3310), - [anon_sym_private] = ACTIONS(3310), - [anon_sym_protected] = ACTIONS(3310), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3310), - [anon_sym_any] = ACTIONS(3310), - [anon_sym_number] = ACTIONS(3310), - [anon_sym_boolean] = ACTIONS(3310), - [anon_sym_string] = ACTIONS(3310), - [anon_sym_symbol] = ACTIONS(3310), - [anon_sym_object] = ACTIONS(3310), - [anon_sym_abstract] = ACTIONS(3310), - [anon_sym_interface] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_default] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_case] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, [1238] = { [sym_comment] = STATE(1238), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3083), + [sym_identifier] = ACTIONS(3081), + [anon_sym_export] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_namespace] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_typeof] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_var] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_const] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_switch] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_await] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_debugger] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_throw] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LTtemplate_GT] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_using] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_SLASH] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_void] = ACTIONS(3081), + [anon_sym_delete] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3081), + [sym_number] = ACTIONS(3081), + [sym_private_property_identifier] = ACTIONS(3081), + [sym_this] = ACTIONS(3081), + [sym_super] = ACTIONS(3081), + [sym_true] = ACTIONS(3081), + [sym_false] = ACTIONS(3081), + [sym_null] = ACTIONS(3081), + [sym_undefined] = ACTIONS(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_get] = ACTIONS(3081), + [anon_sym_set] = ACTIONS(3081), + [anon_sym_declare] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_protected] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3081), + [anon_sym_number] = ACTIONS(3081), + [anon_sym_boolean] = ACTIONS(3081), + [anon_sym_string] = ACTIONS(3081), + [anon_sym_symbol] = ACTIONS(3081), + [anon_sym_object] = ACTIONS(3081), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_global] = ACTIONS(3081), + [anon_sym_interface] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(3081), + [sym__automatic_semicolon] = ACTIONS(3083), [sym_html_comment] = ACTIONS(5), }, [1239] = { [sym_comment] = STATE(1239), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3239), + [anon_sym_export] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_debugger] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3239), + [anon_sym_case] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_LTtemplate_GT] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3239), + [anon_sym_delete] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3239), + [sym_super] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [sym_undefined] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_get] = ACTIONS(3239), + [anon_sym_set] = ACTIONS(3239), + [anon_sym_declare] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_module] = ACTIONS(3239), + [anon_sym_any] = ACTIONS(3239), + [anon_sym_number] = ACTIONS(3239), + [anon_sym_boolean] = ACTIONS(3239), + [anon_sym_string] = ACTIONS(3239), + [anon_sym_symbol] = ACTIONS(3239), + [anon_sym_object] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1240] = { [sym_comment] = STATE(1240), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_default] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_case] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), + [anon_sym_abstract] = ACTIONS(3241), + [anon_sym_global] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, [1241] = { [sym_comment] = STATE(1241), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [ts_builtin_sym_end] = ACTIONS(2298), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, [1242] = { [sym_comment] = STATE(1242), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3261), + [anon_sym_default] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_namespace] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_typeof] = ACTIONS(3261), + [anon_sym_import] = ACTIONS(3261), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_var] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_switch] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_await] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_debugger] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_throw] = ACTIONS(3261), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_case] = ACTIONS(3261), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LTtemplate_GT] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_SQUOTE] = ACTIONS(3261), + [anon_sym_class] = ACTIONS(3261), + [anon_sym_async] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_using] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_void] = ACTIONS(3261), + [anon_sym_delete] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3261), + [sym_number] = ACTIONS(3261), + [sym_private_property_identifier] = ACTIONS(3261), + [sym_this] = ACTIONS(3261), + [sym_super] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_null] = ACTIONS(3261), + [sym_undefined] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_static] = ACTIONS(3261), + [anon_sym_readonly] = ACTIONS(3261), + [anon_sym_get] = ACTIONS(3261), + [anon_sym_set] = ACTIONS(3261), + [anon_sym_declare] = ACTIONS(3261), + [anon_sym_public] = ACTIONS(3261), + [anon_sym_private] = ACTIONS(3261), + [anon_sym_protected] = ACTIONS(3261), + [anon_sym_override] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3261), + [anon_sym_any] = ACTIONS(3261), + [anon_sym_number] = ACTIONS(3261), + [anon_sym_boolean] = ACTIONS(3261), + [anon_sym_string] = ACTIONS(3261), + [anon_sym_symbol] = ACTIONS(3261), + [anon_sym_object] = ACTIONS(3261), + [anon_sym_abstract] = ACTIONS(3261), + [anon_sym_global] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), [sym_html_comment] = ACTIONS(5), }, [1243] = { [sym_comment] = STATE(1243), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [ts_builtin_sym_end] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [1244] = { [sym_comment] = STATE(1244), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_default] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_case] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [ts_builtin_sym_end] = ACTIONS(3433), + [sym_identifier] = ACTIONS(3185), + [anon_sym_export] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3185), + [anon_sym_typeof] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3185), + [anon_sym_with] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [anon_sym_let] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_debugger] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_LTtemplate_GT] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_function] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_void] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3185), + [sym_number] = ACTIONS(3185), + [sym_private_property_identifier] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [sym_super] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_null] = ACTIONS(3185), + [sym_undefined] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_get] = ACTIONS(3185), + [anon_sym_set] = ACTIONS(3185), + [anon_sym_declare] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_protected] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_module] = ACTIONS(3185), + [anon_sym_any] = ACTIONS(3185), + [anon_sym_number] = ACTIONS(3185), + [anon_sym_boolean] = ACTIONS(3185), + [anon_sym_string] = ACTIONS(3185), + [anon_sym_symbol] = ACTIONS(3185), + [anon_sym_object] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), [sym_html_comment] = ACTIONS(5), }, [1245] = { [sym_comment] = STATE(1245), - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [ts_builtin_sym_end] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_global] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, [1246] = { [sym_comment] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3126), - [anon_sym_export] = ACTIONS(3126), - [anon_sym_type] = ACTIONS(3126), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3126), - [anon_sym_import] = ACTIONS(3126), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [anon_sym_let] = ACTIONS(3126), - [anon_sym_const] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_debugger] = ACTIONS(3126), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LTtemplate_GT] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_class] = ACTIONS(3126), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_private_property_identifier] = ACTIONS(3126), - [sym_this] = ACTIONS(3126), - [sym_super] = ACTIONS(3126), - [sym_true] = ACTIONS(3126), - [sym_false] = ACTIONS(3126), - [sym_null] = ACTIONS(3126), - [sym_undefined] = ACTIONS(3126), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_get] = ACTIONS(3126), - [anon_sym_set] = ACTIONS(3126), - [anon_sym_declare] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_module] = ACTIONS(3126), - [anon_sym_any] = ACTIONS(3126), - [anon_sym_number] = ACTIONS(3126), - [anon_sym_boolean] = ACTIONS(3126), - [anon_sym_string] = ACTIONS(3126), - [anon_sym_symbol] = ACTIONS(3126), - [anon_sym_object] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_interface] = ACTIONS(3126), - [anon_sym_enum] = ACTIONS(3126), + [ts_builtin_sym_end] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_else] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3333), + [anon_sym_global] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, [1247] = { [sym_comment] = STATE(1247), - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [ts_builtin_sym_end] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, [1248] = { [sym_comment] = STATE(1248), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_default] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_case] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_LTtemplate_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3240), - [sym_number] = ACTIONS(3240), - [sym_private_property_identifier] = ACTIONS(3240), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3240), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_override] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_object] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), + [ts_builtin_sym_end] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_debugger] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_LTtemplate_GT] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_delete] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_null] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_get] = ACTIONS(3335), + [anon_sym_set] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_module] = ACTIONS(3335), + [anon_sym_any] = ACTIONS(3335), + [anon_sym_number] = ACTIONS(3335), + [anon_sym_boolean] = ACTIONS(3335), + [anon_sym_string] = ACTIONS(3335), + [anon_sym_symbol] = ACTIONS(3335), + [anon_sym_object] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), [sym_html_comment] = ACTIONS(5), }, [1249] = { [sym_comment] = STATE(1249), - [ts_builtin_sym_end] = ACTIONS(3436), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_else] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LTtemplate_GT] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_private_property_identifier] = ACTIONS(2090), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_global] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [sym__automatic_semicolon] = ACTIONS(2386), [sym_html_comment] = ACTIONS(5), }, [1250] = { [sym_comment] = STATE(1250), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3443), + [anon_sym_export] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_type] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_typeof] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_debugger] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_case] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LTtemplate_GT] = ACTIONS(3443), + [anon_sym_DQUOTE] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_function] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_SLASH] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_void] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_PLUS_PLUS] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3443), + [sym_number] = ACTIONS(3443), + [sym_private_property_identifier] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), + [sym_super] = ACTIONS(3443), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_null] = ACTIONS(3443), + [sym_undefined] = ACTIONS(3443), + [anon_sym_AT] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_get] = ACTIONS(3443), + [anon_sym_set] = ACTIONS(3443), + [anon_sym_declare] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_module] = ACTIONS(3443), + [anon_sym_any] = ACTIONS(3443), + [anon_sym_number] = ACTIONS(3443), + [anon_sym_boolean] = ACTIONS(3443), + [anon_sym_string] = ACTIONS(3443), + [anon_sym_symbol] = ACTIONS(3443), + [anon_sym_object] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_global] = ACTIONS(3443), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), [sym_html_comment] = ACTIONS(5), }, [1251] = { [sym_comment] = STATE(1251), - [sym_identifier] = ACTIONS(3318), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_default] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3318), - [anon_sym_import] = ACTIONS(3318), - [anon_sym_with] = ACTIONS(3318), - [anon_sym_var] = ACTIONS(3318), - [anon_sym_let] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_debugger] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LTtemplate_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_async] = ACTIONS(3318), - [anon_sym_function] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3318), - [sym_super] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_null] = ACTIONS(3318), - [sym_undefined] = ACTIONS(3318), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3318), - [anon_sym_readonly] = ACTIONS(3318), - [anon_sym_get] = ACTIONS(3318), - [anon_sym_set] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3318), - [anon_sym_module] = ACTIONS(3318), - [anon_sym_any] = ACTIONS(3318), - [anon_sym_number] = ACTIONS(3318), - [anon_sym_boolean] = ACTIONS(3318), - [anon_sym_string] = ACTIONS(3318), - [anon_sym_symbol] = ACTIONS(3318), - [anon_sym_object] = ACTIONS(3318), - [anon_sym_abstract] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_case] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, [1252] = { [sym_comment] = STATE(1252), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), + [ts_builtin_sym_end] = ACTIONS(3445), + [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_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_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_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_abstract] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, [1253] = { [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, [1254] = { [sym_comment] = STATE(1254), - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2415), + [ts_builtin_sym_end] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3253), + [anon_sym_export] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_namespace] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_typeof] = ACTIONS(3253), + [anon_sym_import] = ACTIONS(3253), + [anon_sym_with] = ACTIONS(3253), + [anon_sym_var] = ACTIONS(3253), + [anon_sym_let] = ACTIONS(3253), + [anon_sym_const] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_else] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_switch] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_await] = ACTIONS(3253), + [anon_sym_while] = ACTIONS(3253), + [anon_sym_do] = ACTIONS(3253), + [anon_sym_try] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_debugger] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_throw] = ACTIONS(3253), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_yield] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LTtemplate_GT] = ACTIONS(3253), + [anon_sym_DQUOTE] = ACTIONS(3253), + [anon_sym_SQUOTE] = ACTIONS(3253), + [anon_sym_class] = ACTIONS(3253), + [anon_sym_async] = ACTIONS(3253), + [anon_sym_function] = ACTIONS(3253), + [anon_sym_new] = ACTIONS(3253), + [anon_sym_using] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_void] = ACTIONS(3253), + [anon_sym_delete] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3253), + [sym_number] = ACTIONS(3253), + [sym_private_property_identifier] = ACTIONS(3253), + [sym_this] = ACTIONS(3253), + [sym_super] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_null] = ACTIONS(3253), + [sym_undefined] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3253), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_get] = ACTIONS(3253), + [anon_sym_set] = ACTIONS(3253), + [anon_sym_declare] = ACTIONS(3253), + [anon_sym_public] = ACTIONS(3253), + [anon_sym_private] = ACTIONS(3253), + [anon_sym_protected] = ACTIONS(3253), + [anon_sym_override] = ACTIONS(3253), + [anon_sym_module] = ACTIONS(3253), + [anon_sym_any] = ACTIONS(3253), + [anon_sym_number] = ACTIONS(3253), + [anon_sym_boolean] = ACTIONS(3253), + [anon_sym_string] = ACTIONS(3253), + [anon_sym_symbol] = ACTIONS(3253), + [anon_sym_object] = ACTIONS(3253), + [anon_sym_abstract] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3253), [sym_html_comment] = ACTIONS(5), }, [1255] = { [sym_comment] = STATE(1255), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3229), + [anon_sym_export] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_typeof] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(3229), + [anon_sym_var] = ACTIONS(3229), + [anon_sym_let] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_else] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_debugger] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_throw] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_yield] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LTtemplate_GT] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_class] = ACTIONS(3229), + [anon_sym_async] = ACTIONS(3229), + [anon_sym_function] = ACTIONS(3229), + [anon_sym_new] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3229), + [sym_number] = ACTIONS(3229), + [sym_private_property_identifier] = ACTIONS(3229), + [sym_this] = ACTIONS(3229), + [sym_super] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_null] = ACTIONS(3229), + [sym_undefined] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3229), + [anon_sym_readonly] = ACTIONS(3229), + [anon_sym_get] = ACTIONS(3229), + [anon_sym_set] = ACTIONS(3229), + [anon_sym_declare] = ACTIONS(3229), + [anon_sym_public] = ACTIONS(3229), + [anon_sym_private] = ACTIONS(3229), + [anon_sym_protected] = ACTIONS(3229), + [anon_sym_override] = ACTIONS(3229), + [anon_sym_module] = ACTIONS(3229), + [anon_sym_any] = ACTIONS(3229), + [anon_sym_number] = ACTIONS(3229), + [anon_sym_boolean] = ACTIONS(3229), + [anon_sym_string] = ACTIONS(3229), + [anon_sym_symbol] = ACTIONS(3229), + [anon_sym_object] = ACTIONS(3229), + [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_global] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), [sym_html_comment] = ACTIONS(5), }, [1256] = { [sym_comment] = STATE(1256), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_default] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_case] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_global] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, [1257] = { [sym_comment] = STATE(1257), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_global] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, [1258] = { [sym_comment] = STATE(1258), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3307), + [anon_sym_export] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_debugger] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LTtemplate_GT] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_delete] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3307), + [sym_number] = ACTIONS(3307), + [sym_private_property_identifier] = ACTIONS(3307), + [sym_this] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_get] = ACTIONS(3307), + [anon_sym_set] = ACTIONS(3307), + [anon_sym_declare] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_module] = ACTIONS(3307), + [anon_sym_any] = ACTIONS(3307), + [anon_sym_number] = ACTIONS(3307), + [anon_sym_boolean] = ACTIONS(3307), + [anon_sym_string] = ACTIONS(3307), + [anon_sym_symbol] = ACTIONS(3307), + [anon_sym_object] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1259] = { [sym_comment] = STATE(1259), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_default] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [ts_builtin_sym_end] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3239), + [anon_sym_export] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_else] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_debugger] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_LTtemplate_GT] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3239), + [anon_sym_delete] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3239), + [sym_super] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [sym_undefined] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_get] = ACTIONS(3239), + [anon_sym_set] = ACTIONS(3239), + [anon_sym_declare] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_module] = ACTIONS(3239), + [anon_sym_any] = ACTIONS(3239), + [anon_sym_number] = ACTIONS(3239), + [anon_sym_boolean] = ACTIONS(3239), + [anon_sym_string] = ACTIONS(3239), + [anon_sym_symbol] = ACTIONS(3239), + [anon_sym_object] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1260] = { + [sym_statement_block] = STATE(1553), [sym_comment] = STATE(1260), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_default] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_LTtemplate_GT] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3244), - [sym_number] = ACTIONS(3244), - [sym_private_property_identifier] = ACTIONS(3244), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_namespace] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym_import] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_var] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_debugger] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LTtemplate_GT] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_class] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_void] = ACTIONS(2068), + [anon_sym_delete] = ACTIONS(2068), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_number] = ACTIONS(2068), + [sym_private_property_identifier] = ACTIONS(2068), + [sym_this] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_undefined] = ACTIONS(2068), + [anon_sym_AT] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_readonly] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2068), + [anon_sym_set] = ACTIONS(2068), + [anon_sym_declare] = ACTIONS(2068), + [anon_sym_public] = ACTIONS(2068), + [anon_sym_private] = ACTIONS(2068), + [anon_sym_protected] = ACTIONS(2068), + [anon_sym_override] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_any] = ACTIONS(2068), + [anon_sym_number] = ACTIONS(2068), + [anon_sym_boolean] = ACTIONS(2068), + [anon_sym_string] = ACTIONS(2068), + [anon_sym_symbol] = ACTIONS(2068), + [anon_sym_object] = ACTIONS(2068), + [anon_sym_abstract] = ACTIONS(2068), + [anon_sym_global] = ACTIONS(2068), + [anon_sym_interface] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), [sym_html_comment] = ACTIONS(5), }, [1261] = { [sym_comment] = STATE(1261), - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [ts_builtin_sym_end] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_else] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), + [anon_sym_abstract] = ACTIONS(3241), + [anon_sym_global] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, [1262] = { [sym_comment] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(3444), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_else] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_LTtemplate_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3236), - [sym_number] = ACTIONS(3236), - [sym_private_property_identifier] = ACTIONS(3236), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_override] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_object] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_case] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, [1263] = { [sym_comment] = STATE(1263), - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_case] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, [1264] = { [sym_comment] = STATE(1264), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), + [sym_identifier] = ACTIONS(3315), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_debugger] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LTtemplate_GT] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3315), + [sym_number] = ACTIONS(3315), + [sym_private_property_identifier] = ACTIONS(3315), + [sym_this] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_get] = ACTIONS(3315), + [anon_sym_set] = ACTIONS(3315), + [anon_sym_declare] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_any] = ACTIONS(3315), + [anon_sym_number] = ACTIONS(3315), + [anon_sym_boolean] = ACTIONS(3315), + [anon_sym_string] = ACTIONS(3315), + [anon_sym_symbol] = ACTIONS(3315), + [anon_sym_object] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), [sym_html_comment] = ACTIONS(5), }, [1265] = { [sym_comment] = STATE(1265), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_global] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, [1266] = { [sym_comment] = STATE(1266), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3282), - [anon_sym_import] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3282), - [anon_sym_var] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_debugger] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LTtemplate_GT] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_async] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_private_property_identifier] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - [sym_super] = ACTIONS(3282), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_undefined] = ACTIONS(3282), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3282), - [anon_sym_get] = ACTIONS(3282), - [anon_sym_set] = ACTIONS(3282), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_override] = ACTIONS(3282), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3282), - [anon_sym_interface] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), + [ts_builtin_sym_end] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, [1267] = { [sym_comment] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(3448), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_else] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3289), + [anon_sym_export] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3289), + [anon_sym_with] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_else] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_debugger] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LTtemplate_GT] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_function] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_void] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3289), + [sym_number] = ACTIONS(3289), + [sym_private_property_identifier] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [sym_super] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_null] = ACTIONS(3289), + [sym_undefined] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_get] = ACTIONS(3289), + [anon_sym_set] = ACTIONS(3289), + [anon_sym_declare] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_module] = ACTIONS(3289), + [anon_sym_any] = ACTIONS(3289), + [anon_sym_number] = ACTIONS(3289), + [anon_sym_boolean] = ACTIONS(3289), + [anon_sym_string] = ACTIONS(3289), + [anon_sym_symbol] = ACTIONS(3289), + [anon_sym_object] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_global] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), [sym_html_comment] = ACTIONS(5), }, [1268] = { [sym_comment] = STATE(1268), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3314), - [anon_sym_import] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3314), - [anon_sym_var] = ACTIONS(3314), - [anon_sym_let] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_debugger] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LTtemplate_GT] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_async] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_private_property_identifier] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - [sym_super] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_null] = ACTIONS(3314), - [sym_undefined] = ACTIONS(3314), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3314), - [anon_sym_set] = ACTIONS(3314), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_override] = ACTIONS(3314), - [anon_sym_module] = ACTIONS(3314), - [anon_sym_any] = ACTIONS(3314), - [anon_sym_number] = ACTIONS(3314), - [anon_sym_boolean] = ACTIONS(3314), - [anon_sym_string] = ACTIONS(3314), - [anon_sym_symbol] = ACTIONS(3314), - [anon_sym_object] = ACTIONS(3314), - [anon_sym_abstract] = ACTIONS(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_debugger] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_LTtemplate_GT] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_delete] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_null] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_get] = ACTIONS(3335), + [anon_sym_set] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_module] = ACTIONS(3335), + [anon_sym_any] = ACTIONS(3335), + [anon_sym_number] = ACTIONS(3335), + [anon_sym_boolean] = ACTIONS(3335), + [anon_sym_string] = ACTIONS(3335), + [anon_sym_symbol] = ACTIONS(3335), + [anon_sym_object] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), [sym_html_comment] = ACTIONS(5), }, [1269] = { [sym_comment] = STATE(1269), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LTtemplate_GT] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_using] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3312), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3312), - [anon_sym_DASH_DASH] = ACTIONS(3312), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_number] = ACTIONS(3312), - [sym_private_property_identifier] = ACTIONS(3312), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3312), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_case] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, [1270] = { [sym_comment] = STATE(1270), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LTtemplate_GT] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3276), - [sym_number] = ACTIONS(3276), - [sym_private_property_identifier] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), + [ts_builtin_sym_end] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_debugger] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LTtemplate_GT] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_void] = ACTIONS(3287), + [anon_sym_delete] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3287), + [sym_number] = ACTIONS(3287), + [sym_private_property_identifier] = ACTIONS(3287), + [sym_this] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_null] = ACTIONS(3287), + [sym_undefined] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_get] = ACTIONS(3287), + [anon_sym_set] = ACTIONS(3287), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), [sym_html_comment] = ACTIONS(5), }, [1271] = { [sym_comment] = STATE(1271), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2111), + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_global] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, [1272] = { [sym_comment] = STATE(1272), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_LTtemplate_GT] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3260), - [sym_number] = ACTIONS(3260), - [sym_private_property_identifier] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3333), + [anon_sym_global] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, [1273] = { [sym_comment] = STATE(1273), - [sym_identifier] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3270), - [anon_sym_import] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LTtemplate_GT] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_private_property_identifier] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - [sym_super] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_undefined] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_readonly] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_declare] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_any] = ACTIONS(3270), - [anon_sym_number] = ACTIONS(3270), - [anon_sym_boolean] = ACTIONS(3270), - [anon_sym_string] = ACTIONS(3270), - [anon_sym_symbol] = ACTIONS(3270), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [1274] = { [sym_comment] = STATE(1274), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [anon_sym_module] = ACTIONS(3274), - [anon_sym_any] = ACTIONS(3274), - [anon_sym_number] = ACTIONS(3274), - [anon_sym_boolean] = ACTIONS(3274), - [anon_sym_string] = ACTIONS(3274), - [anon_sym_symbol] = ACTIONS(3274), - [anon_sym_object] = ACTIONS(3274), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_case] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_global] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, [1275] = { [sym_comment] = STATE(1275), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), + [ts_builtin_sym_end] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, [1276] = { [sym_comment] = STATE(1276), - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_else] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [sym_private_property_identifier] = ACTIONS(2223), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_global] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, [1277] = { [sym_comment] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3150), - [anon_sym_export] = ACTIONS(3150), - [anon_sym_type] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_debugger] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_LTtemplate_GT] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_void] = ACTIONS(3150), - [anon_sym_delete] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_number] = ACTIONS(3150), - [sym_private_property_identifier] = ACTIONS(3150), - [sym_this] = ACTIONS(3150), - [sym_super] = ACTIONS(3150), - [sym_true] = ACTIONS(3150), - [sym_false] = ACTIONS(3150), - [sym_null] = ACTIONS(3150), - [sym_undefined] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_declare] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_module] = ACTIONS(3150), - [anon_sym_any] = ACTIONS(3150), - [anon_sym_number] = ACTIONS(3150), - [anon_sym_boolean] = ACTIONS(3150), - [anon_sym_string] = ACTIONS(3150), - [anon_sym_symbol] = ACTIONS(3150), - [anon_sym_object] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_default] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_case] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [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_abstract] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, [1278] = { [sym_comment] = STATE(1278), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3291), + [anon_sym_export] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_debugger] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_case] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LTtemplate_GT] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_void] = ACTIONS(3291), + [anon_sym_delete] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3291), + [sym_number] = ACTIONS(3291), + [sym_private_property_identifier] = ACTIONS(3291), + [sym_this] = ACTIONS(3291), + [sym_super] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_null] = ACTIONS(3291), + [sym_undefined] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_get] = ACTIONS(3291), + [anon_sym_set] = ACTIONS(3291), + [anon_sym_declare] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_module] = ACTIONS(3291), + [anon_sym_any] = ACTIONS(3291), + [anon_sym_number] = ACTIONS(3291), + [anon_sym_boolean] = ACTIONS(3291), + [anon_sym_string] = ACTIONS(3291), + [anon_sym_symbol] = ACTIONS(3291), + [anon_sym_object] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), [sym_html_comment] = ACTIONS(5), }, [1279] = { [sym_comment] = STATE(1279), - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [1280] = { [sym_comment] = STATE(1280), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_debugger] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_case] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_private_property_identifier] = ACTIONS(2249), - [sym_this] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_null] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(2249), - [anon_sym_set] = ACTIONS(2249), - [anon_sym_declare] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_private] = ACTIONS(2249), - [anon_sym_protected] = ACTIONS(2249), - [anon_sym_override] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_any] = ACTIONS(2249), - [anon_sym_number] = ACTIONS(2249), - [anon_sym_boolean] = ACTIONS(2249), - [anon_sym_string] = ACTIONS(2249), - [anon_sym_symbol] = ACTIONS(2249), - [anon_sym_object] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), + [ts_builtin_sym_end] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, [1281] = { [sym_comment] = STATE(1281), - [ts_builtin_sym_end] = ACTIONS(3454), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(3337), + [anon_sym_var] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_else] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3337), + [anon_sym_do] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_debugger] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_throw] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LTtemplate_GT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3337), + [anon_sym_class] = ACTIONS(3337), + [anon_sym_async] = ACTIONS(3337), + [anon_sym_function] = ACTIONS(3337), + [anon_sym_new] = ACTIONS(3337), + [anon_sym_using] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3337), + [sym_number] = ACTIONS(3337), + [sym_private_property_identifier] = ACTIONS(3337), + [sym_this] = ACTIONS(3337), + [sym_super] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_null] = ACTIONS(3337), + [sym_undefined] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [anon_sym_declare] = ACTIONS(3337), + [anon_sym_public] = ACTIONS(3337), + [anon_sym_private] = ACTIONS(3337), + [anon_sym_protected] = ACTIONS(3337), + [anon_sym_override] = ACTIONS(3337), + [anon_sym_module] = ACTIONS(3337), + [anon_sym_any] = ACTIONS(3337), + [anon_sym_number] = ACTIONS(3337), + [anon_sym_boolean] = ACTIONS(3337), + [anon_sym_string] = ACTIONS(3337), + [anon_sym_symbol] = ACTIONS(3337), + [anon_sym_object] = ACTIONS(3337), + [anon_sym_abstract] = ACTIONS(3337), + [anon_sym_global] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), [sym_html_comment] = ACTIONS(5), }, [1282] = { [sym_comment] = STATE(1282), - [sym_identifier] = ACTIONS(3308), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_typeof] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(3308), - [anon_sym_with] = ACTIONS(3308), - [anon_sym_var] = ACTIONS(3308), - [anon_sym_let] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_await] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_yield] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_LTtemplate_GT] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_function] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_LT] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_void] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3308), - [sym_number] = ACTIONS(3308), - [sym_private_property_identifier] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), - [sym_super] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_null] = ACTIONS(3308), - [sym_undefined] = ACTIONS(3308), - [anon_sym_AT] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_readonly] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_declare] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3308), - [anon_sym_module] = ACTIONS(3308), - [anon_sym_any] = ACTIONS(3308), - [anon_sym_number] = ACTIONS(3308), - [anon_sym_boolean] = ACTIONS(3308), - [anon_sym_string] = ACTIONS(3308), - [anon_sym_symbol] = ACTIONS(3308), - [anon_sym_object] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3197), + [anon_sym_export] = ACTIONS(3197), + [anon_sym_default] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_namespace] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_typeof] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3197), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_do] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_debugger] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_throw] = ACTIONS(3197), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_case] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_LTtemplate_GT] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_class] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_function] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_void] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3197), + [sym_number] = ACTIONS(3197), + [sym_private_property_identifier] = ACTIONS(3197), + [sym_this] = ACTIONS(3197), + [sym_super] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [sym_undefined] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_static] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_get] = ACTIONS(3197), + [anon_sym_set] = ACTIONS(3197), + [anon_sym_declare] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_private] = ACTIONS(3197), + [anon_sym_protected] = ACTIONS(3197), + [anon_sym_override] = ACTIONS(3197), + [anon_sym_module] = ACTIONS(3197), + [anon_sym_any] = ACTIONS(3197), + [anon_sym_number] = ACTIONS(3197), + [anon_sym_boolean] = ACTIONS(3197), + [anon_sym_string] = ACTIONS(3197), + [anon_sym_symbol] = ACTIONS(3197), + [anon_sym_object] = ACTIONS(3197), + [anon_sym_abstract] = ACTIONS(3197), + [anon_sym_global] = ACTIONS(3197), + [anon_sym_interface] = ACTIONS(3197), + [anon_sym_enum] = ACTIONS(3197), [sym_html_comment] = ACTIONS(5), }, [1283] = { [sym_comment] = STATE(1283), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), + [sym_identifier] = ACTIONS(3195), + [anon_sym_export] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_debugger] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LTtemplate_GT] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_null] = ACTIONS(3195), + [sym_undefined] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3195), + [anon_sym_set] = ACTIONS(3195), + [anon_sym_declare] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_module] = ACTIONS(3195), + [anon_sym_any] = ACTIONS(3195), + [anon_sym_number] = ACTIONS(3195), + [anon_sym_boolean] = ACTIONS(3195), + [anon_sym_string] = ACTIONS(3195), + [anon_sym_symbol] = ACTIONS(3195), + [anon_sym_object] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_global] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1284] = { [sym_comment] = STATE(1284), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LTtemplate_GT] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3193), + [sym_number] = ACTIONS(3193), + [sym_private_property_identifier] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_module] = ACTIONS(3193), + [anon_sym_any] = ACTIONS(3193), + [anon_sym_number] = ACTIONS(3193), + [anon_sym_boolean] = ACTIONS(3193), + [anon_sym_string] = ACTIONS(3193), + [anon_sym_symbol] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, [1285] = { [sym_comment] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(3456), + [ts_builtin_sym_end] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3339), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_debugger] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LTtemplate_GT] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_delete] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), [sym_html_comment] = ACTIONS(5), }, [1286] = { [sym_comment] = STATE(1286), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [sym__automatic_semicolon] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1287] = { [sym_comment] = STATE(1287), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(2170), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_global] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), [sym_html_comment] = ACTIONS(5), }, [1288] = { [sym_comment] = STATE(1288), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_default] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_case] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_global] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, [1289] = { [sym_comment] = STATE(1289), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_default] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_LTtemplate_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3256), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_object] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3187), + [anon_sym_export] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_typeof] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_debugger] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LTtemplate_GT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_function] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_void] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3187), + [sym_number] = ACTIONS(3187), + [sym_private_property_identifier] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_undefined] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_get] = ACTIONS(3187), + [anon_sym_set] = ACTIONS(3187), + [anon_sym_declare] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_override] = ACTIONS(3187), + [anon_sym_module] = ACTIONS(3187), + [anon_sym_any] = ACTIONS(3187), + [anon_sym_number] = ACTIONS(3187), + [anon_sym_boolean] = ACTIONS(3187), + [anon_sym_string] = ACTIONS(3187), + [anon_sym_symbol] = ACTIONS(3187), + [anon_sym_object] = ACTIONS(3187), + [anon_sym_abstract] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), [sym_html_comment] = ACTIONS(5), }, [1290] = { [sym_comment] = STATE(1290), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_global] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, [1291] = { [sym_comment] = STATE(1291), - [sym_identifier] = ACTIONS(3126), - [anon_sym_export] = ACTIONS(3126), - [anon_sym_default] = ACTIONS(3126), - [anon_sym_type] = ACTIONS(3126), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3126), - [anon_sym_import] = ACTIONS(3126), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [anon_sym_let] = ACTIONS(3126), - [anon_sym_const] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_debugger] = ACTIONS(3126), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LTtemplate_GT] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_class] = ACTIONS(3126), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_private_property_identifier] = ACTIONS(3126), - [sym_this] = ACTIONS(3126), - [sym_super] = ACTIONS(3126), - [sym_true] = ACTIONS(3126), - [sym_false] = ACTIONS(3126), - [sym_null] = ACTIONS(3126), - [sym_undefined] = ACTIONS(3126), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_get] = ACTIONS(3126), - [anon_sym_set] = ACTIONS(3126), - [anon_sym_declare] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_module] = ACTIONS(3126), - [anon_sym_any] = ACTIONS(3126), - [anon_sym_number] = ACTIONS(3126), - [anon_sym_boolean] = ACTIONS(3126), - [anon_sym_string] = ACTIONS(3126), - [anon_sym_symbol] = ACTIONS(3126), - [anon_sym_object] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_interface] = ACTIONS(3126), - [anon_sym_enum] = ACTIONS(3126), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1292] = { [sym_comment] = STATE(1292), - [ts_builtin_sym_end] = ACTIONS(2229), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_using] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [sym_private_property_identifier] = ACTIONS(2227), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_override] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_object] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), + [sym_identifier] = ACTIONS(3183), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_debugger] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LTtemplate_GT] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_void] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3183), + [sym_number] = ACTIONS(3183), + [sym_private_property_identifier] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_undefined] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_abstract] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, [1293] = { [sym_comment] = STATE(1293), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1294] = { [sym_comment] = STATE(1294), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_case] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1295] = { [sym_comment] = STATE(1295), - [ts_builtin_sym_end] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LTtemplate_GT] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3276), - [sym_number] = ACTIONS(3276), - [sym_private_property_identifier] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_case] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1296] = { [sym_comment] = STATE(1296), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_case] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_case] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, [1297] = { [sym_comment] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(3462), - [sym_identifier] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3270), - [anon_sym_import] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LTtemplate_GT] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_private_property_identifier] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - [sym_super] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_undefined] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_readonly] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_declare] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_any] = ACTIONS(3270), - [anon_sym_number] = ACTIONS(3270), - [anon_sym_boolean] = ACTIONS(3270), - [anon_sym_string] = ACTIONS(3270), - [anon_sym_symbol] = ACTIONS(3270), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3479), [sym_html_comment] = ACTIONS(5), }, [1298] = { [sym_comment] = STATE(1298), - [ts_builtin_sym_end] = ACTIONS(3464), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_else] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_LTtemplate_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3256), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_object] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [1299] = { [sym_comment] = STATE(1299), - [sym_identifier] = ACTIONS(3286), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LTtemplate_GT] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_async] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_private_property_identifier] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - [sym_super] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_undefined] = ACTIONS(3286), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_readonly] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_override] = ACTIONS(3286), - [anon_sym_module] = ACTIONS(3286), - [anon_sym_any] = ACTIONS(3286), - [anon_sym_number] = ACTIONS(3286), - [anon_sym_boolean] = ACTIONS(3286), - [anon_sym_string] = ACTIONS(3286), - [anon_sym_symbol] = ACTIONS(3286), - [anon_sym_object] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3369), + [anon_sym_export] = ACTIONS(3369), + [anon_sym_default] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_namespace] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_typeof] = ACTIONS(3369), + [anon_sym_import] = ACTIONS(3369), + [anon_sym_with] = ACTIONS(3369), + [anon_sym_var] = ACTIONS(3369), + [anon_sym_let] = ACTIONS(3369), + [anon_sym_const] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3369), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_do] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3369), + [anon_sym_break] = ACTIONS(3369), + [anon_sym_continue] = ACTIONS(3369), + [anon_sym_debugger] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3369), + [anon_sym_throw] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_case] = ACTIONS(3369), + [anon_sym_yield] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LTtemplate_GT] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [anon_sym_SQUOTE] = ACTIONS(3369), + [anon_sym_class] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_function] = ACTIONS(3369), + [anon_sym_new] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_void] = ACTIONS(3369), + [anon_sym_delete] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3369), + [sym_number] = ACTIONS(3369), + [sym_private_property_identifier] = ACTIONS(3369), + [sym_this] = ACTIONS(3369), + [sym_super] = ACTIONS(3369), + [sym_true] = ACTIONS(3369), + [sym_false] = ACTIONS(3369), + [sym_null] = ACTIONS(3369), + [sym_undefined] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3369), + [anon_sym_get] = ACTIONS(3369), + [anon_sym_set] = ACTIONS(3369), + [anon_sym_declare] = ACTIONS(3369), + [anon_sym_public] = ACTIONS(3369), + [anon_sym_private] = ACTIONS(3369), + [anon_sym_protected] = ACTIONS(3369), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3369), + [anon_sym_any] = ACTIONS(3369), + [anon_sym_number] = ACTIONS(3369), + [anon_sym_boolean] = ACTIONS(3369), + [anon_sym_string] = ACTIONS(3369), + [anon_sym_symbol] = ACTIONS(3369), + [anon_sym_object] = ACTIONS(3369), + [anon_sym_abstract] = ACTIONS(3369), + [anon_sym_global] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3369), + [anon_sym_enum] = ACTIONS(3369), [sym_html_comment] = ACTIONS(5), }, [1300] = { [sym_comment] = STATE(1300), - [ts_builtin_sym_end] = ACTIONS(3466), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_case] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1301] = { [sym_comment] = STATE(1301), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_using] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [sym_private_property_identifier] = ACTIONS(2227), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_override] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_object] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_case] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1302] = { [sym_comment] = STATE(1302), - [ts_builtin_sym_end] = ACTIONS(3468), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3369), + [anon_sym_export] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_namespace] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_typeof] = ACTIONS(3369), + [anon_sym_import] = ACTIONS(3369), + [anon_sym_with] = ACTIONS(3369), + [anon_sym_var] = ACTIONS(3369), + [anon_sym_let] = ACTIONS(3369), + [anon_sym_const] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_else] = ACTIONS(3369), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3369), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_do] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3369), + [anon_sym_break] = ACTIONS(3369), + [anon_sym_continue] = ACTIONS(3369), + [anon_sym_debugger] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3369), + [anon_sym_throw] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_yield] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LTtemplate_GT] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [anon_sym_SQUOTE] = ACTIONS(3369), + [anon_sym_class] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_function] = ACTIONS(3369), + [anon_sym_new] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_void] = ACTIONS(3369), + [anon_sym_delete] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3369), + [sym_number] = ACTIONS(3369), + [sym_private_property_identifier] = ACTIONS(3369), + [sym_this] = ACTIONS(3369), + [sym_super] = ACTIONS(3369), + [sym_true] = ACTIONS(3369), + [sym_false] = ACTIONS(3369), + [sym_null] = ACTIONS(3369), + [sym_undefined] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3369), + [anon_sym_get] = ACTIONS(3369), + [anon_sym_set] = ACTIONS(3369), + [anon_sym_declare] = ACTIONS(3369), + [anon_sym_public] = ACTIONS(3369), + [anon_sym_private] = ACTIONS(3369), + [anon_sym_protected] = ACTIONS(3369), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3369), + [anon_sym_any] = ACTIONS(3369), + [anon_sym_number] = ACTIONS(3369), + [anon_sym_boolean] = ACTIONS(3369), + [anon_sym_string] = ACTIONS(3369), + [anon_sym_symbol] = ACTIONS(3369), + [anon_sym_object] = ACTIONS(3369), + [anon_sym_abstract] = ACTIONS(3369), + [anon_sym_global] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3369), + [anon_sym_enum] = ACTIONS(3369), [sym_html_comment] = ACTIONS(5), }, [1303] = { [sym_comment] = STATE(1303), - [sym_identifier] = ACTIONS(3206), - [anon_sym_export] = ACTIONS(3206), - [anon_sym_default] = ACTIONS(3206), - [anon_sym_type] = ACTIONS(3206), - [anon_sym_namespace] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_with] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_const] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_debugger] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_case] = ACTIONS(3206), - [anon_sym_yield] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LTtemplate_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3206), - [anon_sym_delete] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_private_property_identifier] = ACTIONS(3206), - [sym_this] = ACTIONS(3206), - [sym_super] = ACTIONS(3206), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_undefined] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_readonly] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3206), - [anon_sym_set] = ACTIONS(3206), - [anon_sym_declare] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_protected] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_module] = ACTIONS(3206), - [anon_sym_any] = ACTIONS(3206), - [anon_sym_number] = ACTIONS(3206), - [anon_sym_boolean] = ACTIONS(3206), - [anon_sym_string] = ACTIONS(3206), - [anon_sym_symbol] = ACTIONS(3206), - [anon_sym_object] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_typeof] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_debugger] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LTtemplate_GT] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_function] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_void] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_number] = ACTIONS(3191), + [sym_private_property_identifier] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_undefined] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_get] = ACTIONS(3191), + [anon_sym_set] = ACTIONS(3191), + [anon_sym_declare] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_override] = ACTIONS(3191), + [anon_sym_module] = ACTIONS(3191), + [anon_sym_any] = ACTIONS(3191), + [anon_sym_number] = ACTIONS(3191), + [anon_sym_boolean] = ACTIONS(3191), + [anon_sym_string] = ACTIONS(3191), + [anon_sym_symbol] = ACTIONS(3191), + [anon_sym_object] = ACTIONS(3191), + [anon_sym_abstract] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1304] = { [sym_comment] = STATE(1304), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1305] = { [sym_comment] = STATE(1305), - [ts_builtin_sym_end] = ACTIONS(3472), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, [1306] = { [sym_comment] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3474), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1307] = { [sym_comment] = STATE(1307), - [ts_builtin_sym_end] = ACTIONS(3138), - [sym_identifier] = ACTIONS(3080), - [anon_sym_export] = ACTIONS(3080), - [anon_sym_type] = ACTIONS(3080), - [anon_sym_namespace] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3080), - [anon_sym_import] = ACTIONS(3080), - [anon_sym_with] = ACTIONS(3080), - [anon_sym_var] = ACTIONS(3080), - [anon_sym_let] = ACTIONS(3080), - [anon_sym_const] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_await] = ACTIONS(3080), - [anon_sym_while] = ACTIONS(3080), - [anon_sym_do] = ACTIONS(3080), - [anon_sym_try] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_debugger] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_throw] = ACTIONS(3080), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_yield] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_LTtemplate_GT] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_class] = ACTIONS(3080), - [anon_sym_async] = ACTIONS(3080), - [anon_sym_function] = ACTIONS(3080), - [anon_sym_new] = ACTIONS(3080), - [anon_sym_using] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_void] = ACTIONS(3080), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3080), - [sym_number] = ACTIONS(3080), - [sym_private_property_identifier] = ACTIONS(3080), - [sym_this] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_null] = ACTIONS(3080), - [sym_undefined] = ACTIONS(3080), - [anon_sym_AT] = ACTIONS(3080), - [anon_sym_static] = ACTIONS(3080), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3080), - [anon_sym_set] = ACTIONS(3080), - [anon_sym_declare] = ACTIONS(3080), - [anon_sym_public] = ACTIONS(3080), - [anon_sym_private] = ACTIONS(3080), - [anon_sym_protected] = ACTIONS(3080), - [anon_sym_override] = ACTIONS(3080), - [anon_sym_module] = ACTIONS(3080), - [anon_sym_any] = ACTIONS(3080), - [anon_sym_number] = ACTIONS(3080), - [anon_sym_boolean] = ACTIONS(3080), - [anon_sym_string] = ACTIONS(3080), - [anon_sym_symbol] = ACTIONS(3080), - [anon_sym_object] = ACTIONS(3080), - [anon_sym_abstract] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_enum] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3478), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1308] = { [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_LTtemplate_GT] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3244), - [sym_number] = ACTIONS(3244), - [sym_private_property_identifier] = ACTIONS(3244), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3173), + [anon_sym_export] = ACTIONS(3173), + [anon_sym_default] = ACTIONS(3173), + [anon_sym_type] = ACTIONS(3173), + [anon_sym_namespace] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_typeof] = ACTIONS(3173), + [anon_sym_import] = ACTIONS(3173), + [anon_sym_with] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [anon_sym_let] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_await] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_debugger] = ACTIONS(3173), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_case] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_LTtemplate_GT] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3173), + [anon_sym_async] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_void] = ACTIONS(3173), + [anon_sym_delete] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3173), + [sym_private_property_identifier] = ACTIONS(3173), + [sym_this] = ACTIONS(3173), + [sym_super] = ACTIONS(3173), + [sym_true] = ACTIONS(3173), + [sym_false] = ACTIONS(3173), + [sym_null] = ACTIONS(3173), + [sym_undefined] = ACTIONS(3173), + [anon_sym_AT] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_readonly] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3173), + [anon_sym_set] = ACTIONS(3173), + [anon_sym_declare] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_protected] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_module] = ACTIONS(3173), + [anon_sym_any] = ACTIONS(3173), + [anon_sym_number] = ACTIONS(3173), + [anon_sym_boolean] = ACTIONS(3173), + [anon_sym_string] = ACTIONS(3173), + [anon_sym_symbol] = ACTIONS(3173), + [anon_sym_object] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_global] = ACTIONS(3173), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), [sym_html_comment] = ACTIONS(5), }, [1309] = { [sym_comment] = STATE(1309), - [ts_builtin_sym_end] = ACTIONS(3482), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_LTtemplate_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3240), - [sym_number] = ACTIONS(3240), - [sym_private_property_identifier] = ACTIONS(3240), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3240), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_override] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_object] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_global] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, [1310] = { [sym_comment] = STATE(1310), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_case] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, [1311] = { [sym_comment] = STATE(1311), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_case] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [sym_private_property_identifier] = ACTIONS(2223), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), + [sym_identifier] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_typeof] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_var] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_await] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_debugger] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LTtemplate_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3171), + [sym_number] = ACTIONS(3171), + [sym_private_property_identifier] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_undefined] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_readonly] = ACTIONS(3171), + [anon_sym_get] = ACTIONS(3171), + [anon_sym_set] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_any] = ACTIONS(3171), + [anon_sym_number] = ACTIONS(3171), + [anon_sym_boolean] = ACTIONS(3171), + [anon_sym_string] = ACTIONS(3171), + [anon_sym_symbol] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_global] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), [sym_html_comment] = ACTIONS(5), }, [1312] = { [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_case] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, [1313] = { [sym_comment] = STATE(1313), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(3337), + [anon_sym_var] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3337), + [anon_sym_do] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_debugger] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_throw] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_case] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LTtemplate_GT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3337), + [anon_sym_class] = ACTIONS(3337), + [anon_sym_async] = ACTIONS(3337), + [anon_sym_function] = ACTIONS(3337), + [anon_sym_new] = ACTIONS(3337), + [anon_sym_using] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3337), + [sym_number] = ACTIONS(3337), + [sym_private_property_identifier] = ACTIONS(3337), + [sym_this] = ACTIONS(3337), + [sym_super] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_null] = ACTIONS(3337), + [sym_undefined] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [anon_sym_declare] = ACTIONS(3337), + [anon_sym_public] = ACTIONS(3337), + [anon_sym_private] = ACTIONS(3337), + [anon_sym_protected] = ACTIONS(3337), + [anon_sym_override] = ACTIONS(3337), + [anon_sym_module] = ACTIONS(3337), + [anon_sym_any] = ACTIONS(3337), + [anon_sym_number] = ACTIONS(3337), + [anon_sym_boolean] = ACTIONS(3337), + [anon_sym_string] = ACTIONS(3337), + [anon_sym_symbol] = ACTIONS(3337), + [anon_sym_object] = ACTIONS(3337), + [anon_sym_abstract] = ACTIONS(3337), + [anon_sym_global] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), [sym_html_comment] = ACTIONS(5), }, [1314] = { [sym_comment] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3339), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_debugger] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_case] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LTtemplate_GT] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_delete] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), [sym_html_comment] = ACTIONS(5), }, [1315] = { [sym_comment] = STATE(1315), - [ts_builtin_sym_end] = ACTIONS(3488), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_else] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LTtemplate_GT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_private_property_identifier] = ACTIONS(3162), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), + [sym_identifier] = ACTIONS(3169), + [anon_sym_export] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_type] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_typeof] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_var] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_await] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_debugger] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_case] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LTtemplate_GT] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_async] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_SLASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_void] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3169), + [sym_private_property_identifier] = ACTIONS(3169), + [sym_this] = ACTIONS(3169), + [sym_super] = ACTIONS(3169), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [sym_null] = ACTIONS(3169), + [sym_undefined] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_readonly] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3169), + [anon_sym_set] = ACTIONS(3169), + [anon_sym_declare] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_override] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), + [anon_sym_any] = ACTIONS(3169), + [anon_sym_number] = ACTIONS(3169), + [anon_sym_boolean] = ACTIONS(3169), + [anon_sym_string] = ACTIONS(3169), + [anon_sym_symbol] = ACTIONS(3169), + [anon_sym_object] = ACTIONS(3169), + [anon_sym_abstract] = ACTIONS(3169), + [anon_sym_global] = ACTIONS(3169), + [anon_sym_interface] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), [sym_html_comment] = ACTIONS(5), }, [1316] = { [sym_comment] = STATE(1316), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_global] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), [sym_html_comment] = ACTIONS(5), }, [1317] = { [sym_comment] = STATE(1317), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_default] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_case] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [sym_identifier] = ACTIONS(3161), + [anon_sym_export] = ACTIONS(3161), + [anon_sym_default] = ACTIONS(3161), + [anon_sym_type] = ACTIONS(3161), + [anon_sym_namespace] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_typeof] = ACTIONS(3161), + [anon_sym_import] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3161), + [anon_sym_var] = ACTIONS(3161), + [anon_sym_let] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_switch] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_await] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_do] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_debugger] = ACTIONS(3161), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_case] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_LTtemplate_GT] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_async] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_using] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_SLASH] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_void] = ACTIONS(3161), + [anon_sym_delete] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3161), + [sym_number] = ACTIONS(3161), + [sym_private_property_identifier] = ACTIONS(3161), + [sym_this] = ACTIONS(3161), + [sym_super] = ACTIONS(3161), + [sym_true] = ACTIONS(3161), + [sym_false] = ACTIONS(3161), + [sym_null] = ACTIONS(3161), + [sym_undefined] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3161), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_readonly] = ACTIONS(3161), + [anon_sym_get] = ACTIONS(3161), + [anon_sym_set] = ACTIONS(3161), + [anon_sym_declare] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_private] = ACTIONS(3161), + [anon_sym_protected] = ACTIONS(3161), + [anon_sym_override] = ACTIONS(3161), + [anon_sym_module] = ACTIONS(3161), + [anon_sym_any] = ACTIONS(3161), + [anon_sym_number] = ACTIONS(3161), + [anon_sym_boolean] = ACTIONS(3161), + [anon_sym_string] = ACTIONS(3161), + [anon_sym_symbol] = ACTIONS(3161), + [anon_sym_object] = ACTIONS(3161), + [anon_sym_abstract] = ACTIONS(3161), + [anon_sym_global] = ACTIONS(3161), + [anon_sym_interface] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), [sym_html_comment] = ACTIONS(5), }, [1318] = { [sym_comment] = STATE(1318), - [ts_builtin_sym_end] = ACTIONS(3490), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1319] = { [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(3492), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1320] = { [sym_comment] = STATE(1320), - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3206), - [anon_sym_export] = ACTIONS(3206), - [anon_sym_type] = ACTIONS(3206), - [anon_sym_namespace] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_with] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_const] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_debugger] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_yield] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LTtemplate_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3206), - [anon_sym_delete] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_private_property_identifier] = ACTIONS(3206), - [sym_this] = ACTIONS(3206), - [sym_super] = ACTIONS(3206), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_undefined] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_readonly] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3206), - [anon_sym_set] = ACTIONS(3206), - [anon_sym_declare] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_protected] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_module] = ACTIONS(3206), - [anon_sym_any] = ACTIONS(3206), - [anon_sym_number] = ACTIONS(3206), - [anon_sym_boolean] = ACTIONS(3206), - [anon_sym_string] = ACTIONS(3206), - [anon_sym_symbol] = ACTIONS(3206), - [anon_sym_object] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(3483), [sym_html_comment] = ACTIONS(5), }, [1321] = { [sym_comment] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3496), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_else] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1322] = { [sym_comment] = STATE(1322), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_debugger] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LTtemplate_GT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3157), + [sym_number] = ACTIONS(3157), + [sym_private_property_identifier] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_super] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_get] = ACTIONS(3157), + [anon_sym_set] = ACTIONS(3157), + [anon_sym_declare] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_any] = ACTIONS(3157), + [anon_sym_number] = ACTIONS(3157), + [anon_sym_boolean] = ACTIONS(3157), + [anon_sym_string] = ACTIONS(3157), + [anon_sym_symbol] = ACTIONS(3157), + [anon_sym_object] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_global] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), [sym_html_comment] = ACTIONS(5), }, [1323] = { [sym_comment] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(3498), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3155), + [anon_sym_export] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_await] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_debugger] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3155), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LTtemplate_GT] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_async] = ACTIONS(3155), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_void] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3155), + [sym_number] = ACTIONS(3155), + [sym_private_property_identifier] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), + [sym_super] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_null] = ACTIONS(3155), + [sym_undefined] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_readonly] = ACTIONS(3155), + [anon_sym_get] = ACTIONS(3155), + [anon_sym_set] = ACTIONS(3155), + [anon_sym_declare] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_override] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_any] = ACTIONS(3155), + [anon_sym_number] = ACTIONS(3155), + [anon_sym_boolean] = ACTIONS(3155), + [anon_sym_string] = ACTIONS(3155), + [anon_sym_symbol] = ACTIONS(3155), + [anon_sym_object] = ACTIONS(3155), + [anon_sym_abstract] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), [sym_html_comment] = ACTIONS(5), }, [1324] = { [sym_comment] = STATE(1324), - [ts_builtin_sym_end] = ACTIONS(3500), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3153), + [anon_sym_export] = ACTIONS(3153), + [anon_sym_default] = ACTIONS(3153), + [anon_sym_type] = ACTIONS(3153), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3153), + [anon_sym_import] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_await] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_debugger] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_case] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_LTtemplate_GT] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_void] = ACTIONS(3153), + [anon_sym_delete] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3153), + [sym_number] = ACTIONS(3153), + [sym_private_property_identifier] = ACTIONS(3153), + [sym_this] = ACTIONS(3153), + [sym_super] = ACTIONS(3153), + [sym_true] = ACTIONS(3153), + [sym_false] = ACTIONS(3153), + [sym_null] = ACTIONS(3153), + [sym_undefined] = ACTIONS(3153), + [anon_sym_AT] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_get] = ACTIONS(3153), + [anon_sym_set] = ACTIONS(3153), + [anon_sym_declare] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_module] = ACTIONS(3153), + [anon_sym_any] = ACTIONS(3153), + [anon_sym_number] = ACTIONS(3153), + [anon_sym_boolean] = ACTIONS(3153), + [anon_sym_string] = ACTIONS(3153), + [anon_sym_symbol] = ACTIONS(3153), + [anon_sym_object] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), [sym_html_comment] = ACTIONS(5), }, [1325] = { [sym_comment] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_module] = ACTIONS(3226), - [anon_sym_any] = ACTIONS(3226), - [anon_sym_number] = ACTIONS(3226), - [anon_sym_boolean] = ACTIONS(3226), - [anon_sym_string] = ACTIONS(3226), - [anon_sym_symbol] = ACTIONS(3226), - [anon_sym_object] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3365), + [anon_sym_export] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_typeof] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_var] = ACTIONS(3365), + [anon_sym_let] = ACTIONS(3365), + [anon_sym_const] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_do] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_debugger] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_throw] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LTtemplate_GT] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_function] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_using] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_SLASH] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3365), + [sym_number] = ACTIONS(3365), + [sym_private_property_identifier] = ACTIONS(3365), + [sym_this] = ACTIONS(3365), + [sym_super] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_null] = ACTIONS(3365), + [sym_undefined] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_static] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_private] = ACTIONS(3365), + [anon_sym_protected] = ACTIONS(3365), + [anon_sym_override] = ACTIONS(3365), + [anon_sym_module] = ACTIONS(3365), + [anon_sym_any] = ACTIONS(3365), + [anon_sym_number] = ACTIONS(3365), + [anon_sym_boolean] = ACTIONS(3365), + [anon_sym_string] = ACTIONS(3365), + [anon_sym_symbol] = ACTIONS(3365), + [anon_sym_object] = ACTIONS(3365), + [anon_sym_abstract] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3365), + [anon_sym_enum] = ACTIONS(3365), [sym_html_comment] = ACTIONS(5), }, [1326] = { [sym_comment] = STATE(1326), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), [sym_html_comment] = ACTIONS(5), }, [1327] = { [sym_comment] = STATE(1327), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_else] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, [1328] = { [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3151), + [anon_sym_export] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(3151), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_var] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_await] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_debugger] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LTtemplate_GT] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_SQUOTE] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_async] = ACTIONS(3151), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_void] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3151), + [sym_number] = ACTIONS(3151), + [sym_private_property_identifier] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + [sym_super] = ACTIONS(3151), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_null] = ACTIONS(3151), + [sym_undefined] = ACTIONS(3151), + [anon_sym_AT] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_readonly] = ACTIONS(3151), + [anon_sym_get] = ACTIONS(3151), + [anon_sym_set] = ACTIONS(3151), + [anon_sym_declare] = ACTIONS(3151), + [anon_sym_public] = ACTIONS(3151), + [anon_sym_private] = ACTIONS(3151), + [anon_sym_protected] = ACTIONS(3151), + [anon_sym_override] = ACTIONS(3151), + [anon_sym_module] = ACTIONS(3151), + [anon_sym_any] = ACTIONS(3151), + [anon_sym_number] = ACTIONS(3151), + [anon_sym_boolean] = ACTIONS(3151), + [anon_sym_string] = ACTIONS(3151), + [anon_sym_symbol] = ACTIONS(3151), + [anon_sym_object] = ACTIONS(3151), + [anon_sym_abstract] = ACTIONS(3151), + [anon_sym_global] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), [sym_html_comment] = ACTIONS(5), }, [1329] = { [sym_comment] = STATE(1329), - [ts_builtin_sym_end] = ACTIONS(3508), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3101), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_var] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_await] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_debugger] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_finally] = ACTIONS(3101), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LTtemplate_GT] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_async] = ACTIONS(3101), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_SLASH] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_void] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3101), + [sym_number] = ACTIONS(3101), + [sym_private_property_identifier] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), + [sym_super] = ACTIONS(3101), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [sym_null] = ACTIONS(3101), + [sym_undefined] = ACTIONS(3101), + [anon_sym_AT] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_get] = ACTIONS(3101), + [anon_sym_set] = ACTIONS(3101), + [anon_sym_declare] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_any] = ACTIONS(3101), + [anon_sym_number] = ACTIONS(3101), + [anon_sym_boolean] = ACTIONS(3101), + [anon_sym_string] = ACTIONS(3101), + [anon_sym_symbol] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), [sym_html_comment] = ACTIONS(5), }, [1330] = { [sym_comment] = STATE(1330), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_LTtemplate_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3208), - [sym_number] = ACTIONS(3208), - [sym_private_property_identifier] = ACTIONS(3208), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_else] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_global] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, [1331] = { [sym_comment] = STATE(1331), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [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_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_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_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_abstract] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, [1332] = { [sym_comment] = STATE(1332), - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3282), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3282), - [anon_sym_import] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3282), - [anon_sym_var] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_else] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_debugger] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LTtemplate_GT] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_async] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_private_property_identifier] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - [sym_super] = ACTIONS(3282), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_undefined] = ACTIONS(3282), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3282), - [anon_sym_get] = ACTIONS(3282), - [anon_sym_set] = ACTIONS(3282), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_override] = ACTIONS(3282), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3282), - [anon_sym_interface] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), + [ts_builtin_sym_end] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3291), + [anon_sym_export] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_debugger] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LTtemplate_GT] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_void] = ACTIONS(3291), + [anon_sym_delete] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3291), + [sym_number] = ACTIONS(3291), + [sym_private_property_identifier] = ACTIONS(3291), + [sym_this] = ACTIONS(3291), + [sym_super] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_null] = ACTIONS(3291), + [sym_undefined] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_get] = ACTIONS(3291), + [anon_sym_set] = ACTIONS(3291), + [anon_sym_declare] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_module] = ACTIONS(3291), + [anon_sym_any] = ACTIONS(3291), + [anon_sym_number] = ACTIONS(3291), + [anon_sym_boolean] = ACTIONS(3291), + [anon_sym_string] = ACTIONS(3291), + [anon_sym_symbol] = ACTIONS(3291), + [anon_sym_object] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), [sym_html_comment] = ACTIONS(5), }, [1333] = { [sym_comment] = STATE(1333), - [ts_builtin_sym_end] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3260), - [anon_sym_else] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_LTtemplate_GT] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3260), - [sym_number] = ACTIONS(3260), - [sym_private_property_identifier] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1334] = { [sym_comment] = STATE(1334), - [ts_builtin_sym_end] = ACTIONS(3516), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1335] = { [sym_comment] = STATE(1335), - [ts_builtin_sym_end] = ACTIONS(3516), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [ts_builtin_sym_end] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3085), + [anon_sym_type] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_typeof] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3085), + [anon_sym_with] = ACTIONS(3085), + [anon_sym_var] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_await] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_debugger] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LTtemplate_GT] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(3085), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_SLASH] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_void] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3085), + [sym_number] = ACTIONS(3085), + [sym_private_property_identifier] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), + [sym_super] = ACTIONS(3085), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [sym_null] = ACTIONS(3085), + [sym_undefined] = ACTIONS(3085), + [anon_sym_AT] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_readonly] = ACTIONS(3085), + [anon_sym_get] = ACTIONS(3085), + [anon_sym_set] = ACTIONS(3085), + [anon_sym_declare] = ACTIONS(3085), + [anon_sym_public] = ACTIONS(3085), + [anon_sym_private] = ACTIONS(3085), + [anon_sym_protected] = ACTIONS(3085), + [anon_sym_override] = ACTIONS(3085), + [anon_sym_module] = ACTIONS(3085), + [anon_sym_any] = ACTIONS(3085), + [anon_sym_number] = ACTIONS(3085), + [anon_sym_boolean] = ACTIONS(3085), + [anon_sym_string] = ACTIONS(3085), + [anon_sym_symbol] = ACTIONS(3085), + [anon_sym_object] = ACTIONS(3085), + [anon_sym_abstract] = ACTIONS(3085), + [anon_sym_global] = ACTIONS(3085), + [anon_sym_interface] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [sym__automatic_semicolon] = ACTIONS(3497), [sym_html_comment] = ACTIONS(5), }, [1336] = { [sym_comment] = STATE(1336), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [sym_this] = ACTIONS(3174), - [sym_super] = ACTIONS(3174), - [sym_true] = ACTIONS(3174), - [sym_false] = ACTIONS(3174), - [sym_null] = ACTIONS(3174), - [sym_undefined] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = ACTIONS(3174), - [anon_sym_declare] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_protected] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_module] = ACTIONS(3174), - [anon_sym_any] = ACTIONS(3174), - [anon_sym_number] = ACTIONS(3174), - [anon_sym_boolean] = ACTIONS(3174), - [anon_sym_string] = ACTIONS(3174), - [anon_sym_symbol] = ACTIONS(3174), - [anon_sym_object] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_case] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, [1337] = { [sym_comment] = STATE(1337), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_default] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_case] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), + [ts_builtin_sym_end] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3079), + [anon_sym_export] = ACTIONS(3079), + [anon_sym_type] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_typeof] = ACTIONS(3079), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3079), + [anon_sym_var] = ACTIONS(3079), + [anon_sym_let] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_BANG] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_await] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_debugger] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_finally] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_LTtemplate_GT] = ACTIONS(3079), + [anon_sym_DQUOTE] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_SLASH] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_TILDE] = ACTIONS(3079), + [anon_sym_void] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_PLUS_PLUS] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3079), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3079), + [sym_number] = ACTIONS(3079), + [sym_private_property_identifier] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [sym_super] = ACTIONS(3079), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [sym_null] = ACTIONS(3079), + [sym_undefined] = ACTIONS(3079), + [anon_sym_AT] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3079), + [anon_sym_set] = ACTIONS(3079), + [anon_sym_declare] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_private] = ACTIONS(3079), + [anon_sym_protected] = ACTIONS(3079), + [anon_sym_override] = ACTIONS(3079), + [anon_sym_module] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3079), + [anon_sym_number] = ACTIONS(3079), + [anon_sym_boolean] = ACTIONS(3079), + [anon_sym_string] = ACTIONS(3079), + [anon_sym_symbol] = ACTIONS(3079), + [anon_sym_object] = ACTIONS(3079), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_global] = ACTIONS(3079), + [anon_sym_interface] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), [sym_html_comment] = ACTIONS(5), }, [1338] = { [sym_comment] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(3520), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, [1339] = { [sym_comment] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_LTtemplate_GT] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_SQUOTE] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3124), - [sym_number] = ACTIONS(3124), - [sym_private_property_identifier] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_object] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3149), + [anon_sym_export] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_debugger] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym_case] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_LTtemplate_GT] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_void] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3149), + [sym_number] = ACTIONS(3149), + [sym_private_property_identifier] = ACTIONS(3149), + [sym_this] = ACTIONS(3149), + [sym_super] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_null] = ACTIONS(3149), + [sym_undefined] = ACTIONS(3149), + [anon_sym_AT] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_get] = ACTIONS(3149), + [anon_sym_set] = ACTIONS(3149), + [anon_sym_declare] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_module] = ACTIONS(3149), + [anon_sym_any] = ACTIONS(3149), + [anon_sym_number] = ACTIONS(3149), + [anon_sym_boolean] = ACTIONS(3149), + [anon_sym_string] = ACTIONS(3149), + [anon_sym_symbol] = ACTIONS(3149), + [anon_sym_object] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), [sym_html_comment] = ACTIONS(5), }, [1340] = { [sym_comment] = STATE(1340), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_case] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_global] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2464), [sym_html_comment] = ACTIONS(5), }, [1341] = { [sym_comment] = STATE(1341), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [ts_builtin_sym_end] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_global] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2460), [sym_html_comment] = ACTIONS(5), }, [1342] = { [sym_comment] = STATE(1342), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_case] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LTtemplate_GT] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [sym_private_property_identifier] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_global] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2446), [sym_html_comment] = ACTIONS(5), }, [1343] = { [sym_comment] = STATE(1343), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_debugger] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LTtemplate_GT] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_void] = ACTIONS(2110), + [anon_sym_delete] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_number] = ACTIONS(2110), + [sym_private_property_identifier] = ACTIONS(2110), + [sym_this] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_true] = ACTIONS(2110), + [sym_false] = ACTIONS(2110), + [sym_null] = ACTIONS(2110), + [sym_undefined] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_global] = ACTIONS(2110), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [sym__automatic_semicolon] = ACTIONS(2492), [sym_html_comment] = ACTIONS(5), }, [1344] = { [sym_comment] = STATE(1344), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_global] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2466), [sym_html_comment] = ACTIONS(5), }, [1345] = { [sym_comment] = STATE(1345), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_default] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_case] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [sym_this] = ACTIONS(3174), - [sym_super] = ACTIONS(3174), - [sym_true] = ACTIONS(3174), - [sym_false] = ACTIONS(3174), - [sym_null] = ACTIONS(3174), - [sym_undefined] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = ACTIONS(3174), - [anon_sym_declare] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_protected] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_module] = ACTIONS(3174), - [anon_sym_any] = ACTIONS(3174), - [anon_sym_number] = ACTIONS(3174), - [anon_sym_boolean] = ACTIONS(3174), - [anon_sym_string] = ACTIONS(3174), - [anon_sym_symbol] = ACTIONS(3174), - [anon_sym_object] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3197), + [anon_sym_export] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_namespace] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_typeof] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3197), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_else] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_do] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_debugger] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_throw] = ACTIONS(3197), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_LTtemplate_GT] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_class] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_function] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_void] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3197), + [sym_number] = ACTIONS(3197), + [sym_private_property_identifier] = ACTIONS(3197), + [sym_this] = ACTIONS(3197), + [sym_super] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [sym_undefined] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_static] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_get] = ACTIONS(3197), + [anon_sym_set] = ACTIONS(3197), + [anon_sym_declare] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_private] = ACTIONS(3197), + [anon_sym_protected] = ACTIONS(3197), + [anon_sym_override] = ACTIONS(3197), + [anon_sym_module] = ACTIONS(3197), + [anon_sym_any] = ACTIONS(3197), + [anon_sym_number] = ACTIONS(3197), + [anon_sym_boolean] = ACTIONS(3197), + [anon_sym_string] = ACTIONS(3197), + [anon_sym_symbol] = ACTIONS(3197), + [anon_sym_object] = ACTIONS(3197), + [anon_sym_abstract] = ACTIONS(3197), + [anon_sym_global] = ACTIONS(3197), + [anon_sym_interface] = ACTIONS(3197), + [anon_sym_enum] = ACTIONS(3197), [sym_html_comment] = ACTIONS(5), }, [1346] = { [sym_comment] = STATE(1346), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3195), + [anon_sym_export] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_debugger] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LTtemplate_GT] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_null] = ACTIONS(3195), + [sym_undefined] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3195), + [anon_sym_set] = ACTIONS(3195), + [anon_sym_declare] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_module] = ACTIONS(3195), + [anon_sym_any] = ACTIONS(3195), + [anon_sym_number] = ACTIONS(3195), + [anon_sym_boolean] = ACTIONS(3195), + [anon_sym_string] = ACTIONS(3195), + [anon_sym_symbol] = ACTIONS(3195), + [anon_sym_object] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_global] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1347] = { [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), + [ts_builtin_sym_end] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3123), + [anon_sym_export] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_typeof] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_var] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_debugger] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LTtemplate_GT] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_void] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3123), + [sym_number] = ACTIONS(3123), + [sym_private_property_identifier] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [sym_super] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_AT] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3123), + [anon_sym_set] = ACTIONS(3123), + [anon_sym_declare] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_private] = ACTIONS(3123), + [anon_sym_protected] = ACTIONS(3123), + [anon_sym_override] = ACTIONS(3123), + [anon_sym_module] = ACTIONS(3123), + [anon_sym_any] = ACTIONS(3123), + [anon_sym_number] = ACTIONS(3123), + [anon_sym_boolean] = ACTIONS(3123), + [anon_sym_string] = ACTIONS(3123), + [anon_sym_symbol] = ACTIONS(3123), + [anon_sym_object] = ACTIONS(3123), + [anon_sym_abstract] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_interface] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [sym__automatic_semicolon] = ACTIONS(3125), [sym_html_comment] = ACTIONS(5), }, [1348] = { [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LTtemplate_GT] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3193), + [sym_number] = ACTIONS(3193), + [sym_private_property_identifier] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_module] = ACTIONS(3193), + [anon_sym_any] = ACTIONS(3193), + [anon_sym_number] = ACTIONS(3193), + [anon_sym_boolean] = ACTIONS(3193), + [anon_sym_string] = ACTIONS(3193), + [anon_sym_symbol] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, [1349] = { [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(3528), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_else] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_else] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_global] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, [1350] = { [sym_comment] = STATE(1350), - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3187), + [anon_sym_export] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_typeof] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_debugger] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LTtemplate_GT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_function] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_void] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3187), + [sym_number] = ACTIONS(3187), + [sym_private_property_identifier] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_undefined] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_get] = ACTIONS(3187), + [anon_sym_set] = ACTIONS(3187), + [anon_sym_declare] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_override] = ACTIONS(3187), + [anon_sym_module] = ACTIONS(3187), + [anon_sym_any] = ACTIONS(3187), + [anon_sym_number] = ACTIONS(3187), + [anon_sym_boolean] = ACTIONS(3187), + [anon_sym_string] = ACTIONS(3187), + [anon_sym_symbol] = ACTIONS(3187), + [anon_sym_object] = ACTIONS(3187), + [anon_sym_abstract] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), [sym_html_comment] = ACTIONS(5), }, [1351] = { [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3183), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_else] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_debugger] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LTtemplate_GT] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_void] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3183), + [sym_number] = ACTIONS(3183), + [sym_private_property_identifier] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_undefined] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_abstract] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, [1352] = { [sym_comment] = STATE(1352), - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3147), + [anon_sym_export] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_typeof] = ACTIONS(3147), + [anon_sym_import] = ACTIONS(3147), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_var] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_await] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_debugger] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LTtemplate_GT] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_void] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3147), + [sym_number] = ACTIONS(3147), + [sym_private_property_identifier] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), + [sym_super] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_null] = ACTIONS(3147), + [sym_undefined] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_get] = ACTIONS(3147), + [anon_sym_set] = ACTIONS(3147), + [anon_sym_declare] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_private] = ACTIONS(3147), + [anon_sym_protected] = ACTIONS(3147), + [anon_sym_override] = ACTIONS(3147), + [anon_sym_module] = ACTIONS(3147), + [anon_sym_any] = ACTIONS(3147), + [anon_sym_number] = ACTIONS(3147), + [anon_sym_boolean] = ACTIONS(3147), + [anon_sym_string] = ACTIONS(3147), + [anon_sym_symbol] = ACTIONS(3147), + [anon_sym_object] = ACTIONS(3147), + [anon_sym_abstract] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3147), + [anon_sym_interface] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), [sym_html_comment] = ACTIONS(5), }, [1353] = { [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LTtemplate_GT] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_number] = ACTIONS(2124), + [sym_private_property_identifier] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_global] = ACTIONS(2124), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [sym__automatic_semicolon] = ACTIONS(2434), [sym_html_comment] = ACTIONS(5), }, [1354] = { [sym_comment] = STATE(1354), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1355] = { [sym_comment] = STATE(1355), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_global] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2496), [sym_html_comment] = ACTIONS(5), }, [1356] = { [sym_comment] = STATE(1356), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_case] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LTtemplate_GT] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_private_property_identifier] = ACTIONS(2174), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_global] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, [1357] = { [sym_comment] = STATE(1357), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3173), + [anon_sym_export] = ACTIONS(3173), + [anon_sym_type] = ACTIONS(3173), + [anon_sym_namespace] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_typeof] = ACTIONS(3173), + [anon_sym_import] = ACTIONS(3173), + [anon_sym_with] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [anon_sym_let] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_else] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_await] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_debugger] = ACTIONS(3173), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_LTtemplate_GT] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3173), + [anon_sym_async] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_void] = ACTIONS(3173), + [anon_sym_delete] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3173), + [sym_private_property_identifier] = ACTIONS(3173), + [sym_this] = ACTIONS(3173), + [sym_super] = ACTIONS(3173), + [sym_true] = ACTIONS(3173), + [sym_false] = ACTIONS(3173), + [sym_null] = ACTIONS(3173), + [sym_undefined] = ACTIONS(3173), + [anon_sym_AT] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_readonly] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3173), + [anon_sym_set] = ACTIONS(3173), + [anon_sym_declare] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_protected] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_module] = ACTIONS(3173), + [anon_sym_any] = ACTIONS(3173), + [anon_sym_number] = ACTIONS(3173), + [anon_sym_boolean] = ACTIONS(3173), + [anon_sym_string] = ACTIONS(3173), + [anon_sym_symbol] = ACTIONS(3173), + [anon_sym_object] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_global] = ACTIONS(3173), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), [sym_html_comment] = ACTIONS(5), }, [1358] = { [sym_comment] = STATE(1358), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_default] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_case] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_LTtemplate_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3236), - [sym_number] = ACTIONS(3236), - [sym_private_property_identifier] = ACTIONS(3236), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_override] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_object] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_typeof] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_var] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_await] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_debugger] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LTtemplate_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3171), + [sym_number] = ACTIONS(3171), + [sym_private_property_identifier] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_undefined] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_readonly] = ACTIONS(3171), + [anon_sym_get] = ACTIONS(3171), + [anon_sym_set] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_any] = ACTIONS(3171), + [anon_sym_number] = ACTIONS(3171), + [anon_sym_boolean] = ACTIONS(3171), + [anon_sym_string] = ACTIONS(3171), + [anon_sym_symbol] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_global] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), [sym_html_comment] = ACTIONS(5), }, [1359] = { [sym_comment] = STATE(1359), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_finally] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3141), + [anon_sym_export] = ACTIONS(3141), + [anon_sym_default] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_namespace] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_typeof] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [anon_sym_let] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_debugger] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_case] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LTtemplate_GT] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_void] = ACTIONS(3141), + [anon_sym_delete] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3141), + [sym_number] = ACTIONS(3141), + [sym_private_property_identifier] = ACTIONS(3141), + [sym_this] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_null] = ACTIONS(3141), + [sym_undefined] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_declare] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_module] = ACTIONS(3141), + [anon_sym_any] = ACTIONS(3141), + [anon_sym_number] = ACTIONS(3141), + [anon_sym_boolean] = ACTIONS(3141), + [anon_sym_string] = ACTIONS(3141), + [anon_sym_symbol] = ACTIONS(3141), + [anon_sym_object] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), [sym_html_comment] = ACTIONS(5), }, [1360] = { [sym_comment] = STATE(1360), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [ts_builtin_sym_end] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3169), + [anon_sym_export] = ACTIONS(3169), + [anon_sym_type] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_typeof] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_var] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_await] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_debugger] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LTtemplate_GT] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_async] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_SLASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_void] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3169), + [sym_private_property_identifier] = ACTIONS(3169), + [sym_this] = ACTIONS(3169), + [sym_super] = ACTIONS(3169), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [sym_null] = ACTIONS(3169), + [sym_undefined] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_readonly] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3169), + [anon_sym_set] = ACTIONS(3169), + [anon_sym_declare] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_override] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), + [anon_sym_any] = ACTIONS(3169), + [anon_sym_number] = ACTIONS(3169), + [anon_sym_boolean] = ACTIONS(3169), + [anon_sym_string] = ACTIONS(3169), + [anon_sym_symbol] = ACTIONS(3169), + [anon_sym_object] = ACTIONS(3169), + [anon_sym_abstract] = ACTIONS(3169), + [anon_sym_global] = ACTIONS(3169), + [anon_sym_interface] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), [sym_html_comment] = ACTIONS(5), }, [1361] = { [sym_comment] = STATE(1361), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1362] = { [sym_comment] = STATE(1362), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_default] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_case] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_global] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), [sym_html_comment] = ACTIONS(5), }, [1363] = { [sym_comment] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [sym__automatic_semicolon] = ACTIONS(2195), + [sym_identifier] = ACTIONS(3139), + [anon_sym_export] = ACTIONS(3139), + [anon_sym_default] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_namespace] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_typeof] = ACTIONS(3139), + [anon_sym_import] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), + [anon_sym_var] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_debugger] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_throw] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_case] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LTtemplate_GT] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_class] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3139), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_void] = ACTIONS(3139), + [anon_sym_delete] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3139), + [sym_number] = ACTIONS(3139), + [sym_private_property_identifier] = ACTIONS(3139), + [sym_this] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_true] = ACTIONS(3139), + [sym_false] = ACTIONS(3139), + [sym_null] = ACTIONS(3139), + [sym_undefined] = ACTIONS(3139), + [anon_sym_AT] = ACTIONS(3139), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_readonly] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3139), + [anon_sym_set] = ACTIONS(3139), + [anon_sym_declare] = ACTIONS(3139), + [anon_sym_public] = ACTIONS(3139), + [anon_sym_private] = ACTIONS(3139), + [anon_sym_protected] = ACTIONS(3139), + [anon_sym_override] = ACTIONS(3139), + [anon_sym_module] = ACTIONS(3139), + [anon_sym_any] = ACTIONS(3139), + [anon_sym_number] = ACTIONS(3139), + [anon_sym_boolean] = ACTIONS(3139), + [anon_sym_string] = ACTIONS(3139), + [anon_sym_symbol] = ACTIONS(3139), + [anon_sym_object] = ACTIONS(3139), + [anon_sym_abstract] = ACTIONS(3139), + [anon_sym_global] = ACTIONS(3139), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [1364] = { [sym_comment] = STATE(1364), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_LTtemplate_GT] = ACTIONS(3176), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_override] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_object] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_case] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, [1365] = { [sym_comment] = STATE(1365), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3523), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, [1366] = { [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(3114), - [sym_identifier] = ACTIONS(3112), - [anon_sym_export] = ACTIONS(3112), - [anon_sym_type] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3112), - [anon_sym_import] = ACTIONS(3112), - [anon_sym_with] = ACTIONS(3112), - [anon_sym_var] = ACTIONS(3112), - [anon_sym_let] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_await] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_debugger] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_yield] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_LTtemplate_GT] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_async] = ACTIONS(3112), - [anon_sym_function] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_void] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_number] = ACTIONS(3112), - [sym_private_property_identifier] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - [sym_super] = ACTIONS(3112), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [sym_null] = ACTIONS(3112), - [sym_undefined] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_readonly] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_declare] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_override] = ACTIONS(3112), - [anon_sym_module] = ACTIONS(3112), - [anon_sym_any] = ACTIONS(3112), - [anon_sym_number] = ACTIONS(3112), - [anon_sym_boolean] = ACTIONS(3112), - [anon_sym_string] = ACTIONS(3112), - [anon_sym_symbol] = ACTIONS(3112), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_abstract] = ACTIONS(3112), - [anon_sym_interface] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [sym__automatic_semicolon] = ACTIONS(3114), + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3161), + [anon_sym_export] = ACTIONS(3161), + [anon_sym_type] = ACTIONS(3161), + [anon_sym_namespace] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_typeof] = ACTIONS(3161), + [anon_sym_import] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3161), + [anon_sym_var] = ACTIONS(3161), + [anon_sym_let] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_else] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_switch] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_await] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_do] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_debugger] = ACTIONS(3161), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_LTtemplate_GT] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_async] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_using] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_SLASH] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_void] = ACTIONS(3161), + [anon_sym_delete] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3161), + [sym_number] = ACTIONS(3161), + [sym_private_property_identifier] = ACTIONS(3161), + [sym_this] = ACTIONS(3161), + [sym_super] = ACTIONS(3161), + [sym_true] = ACTIONS(3161), + [sym_false] = ACTIONS(3161), + [sym_null] = ACTIONS(3161), + [sym_undefined] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3161), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_readonly] = ACTIONS(3161), + [anon_sym_get] = ACTIONS(3161), + [anon_sym_set] = ACTIONS(3161), + [anon_sym_declare] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_private] = ACTIONS(3161), + [anon_sym_protected] = ACTIONS(3161), + [anon_sym_override] = ACTIONS(3161), + [anon_sym_module] = ACTIONS(3161), + [anon_sym_any] = ACTIONS(3161), + [anon_sym_number] = ACTIONS(3161), + [anon_sym_boolean] = ACTIONS(3161), + [anon_sym_string] = ACTIONS(3161), + [anon_sym_symbol] = ACTIONS(3161), + [anon_sym_object] = ACTIONS(3161), + [anon_sym_abstract] = ACTIONS(3161), + [anon_sym_global] = ACTIONS(3161), + [anon_sym_interface] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), [sym_html_comment] = ACTIONS(5), }, [1367] = { [sym_comment] = STATE(1367), - [ts_builtin_sym_end] = ACTIONS(3144), - [sym_identifier] = ACTIONS(3086), - [anon_sym_export] = ACTIONS(3086), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_typeof] = ACTIONS(3086), - [anon_sym_import] = ACTIONS(3086), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_var] = ACTIONS(3086), - [anon_sym_let] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_await] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_debugger] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_finally] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_LTtemplate_GT] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(3086), - [anon_sym_SQUOTE] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_async] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_void] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3086), - [sym_number] = ACTIONS(3086), - [sym_private_property_identifier] = ACTIONS(3086), - [sym_this] = ACTIONS(3086), - [sym_super] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_null] = ACTIONS(3086), - [sym_undefined] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_readonly] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(3086), - [anon_sym_set] = ACTIONS(3086), - [anon_sym_declare] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [anon_sym_override] = ACTIONS(3086), - [anon_sym_module] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(3086), - [anon_sym_number] = ACTIONS(3086), - [anon_sym_boolean] = ACTIONS(3086), - [anon_sym_string] = ACTIONS(3086), - [anon_sym_symbol] = ACTIONS(3086), - [anon_sym_object] = ACTIONS(3086), - [anon_sym_abstract] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), + [ts_builtin_sym_end] = ACTIONS(3527), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, [1368] = { [sym_comment] = STATE(1368), - [ts_builtin_sym_end] = ACTIONS(3322), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_finally] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_LTtemplate_GT] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_debugger] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LTtemplate_GT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3157), + [sym_number] = ACTIONS(3157), + [sym_private_property_identifier] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_super] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_get] = ACTIONS(3157), + [anon_sym_set] = ACTIONS(3157), + [anon_sym_declare] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_any] = ACTIONS(3157), + [anon_sym_number] = ACTIONS(3157), + [anon_sym_boolean] = ACTIONS(3157), + [anon_sym_string] = ACTIONS(3157), + [anon_sym_symbol] = ACTIONS(3157), + [anon_sym_object] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_global] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), [sym_html_comment] = ACTIONS(5), }, [1369] = { [sym_comment] = STATE(1369), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3155), + [anon_sym_export] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_await] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_debugger] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LTtemplate_GT] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_async] = ACTIONS(3155), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_void] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3155), + [sym_number] = ACTIONS(3155), + [sym_private_property_identifier] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), + [sym_super] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_null] = ACTIONS(3155), + [sym_undefined] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_readonly] = ACTIONS(3155), + [anon_sym_get] = ACTIONS(3155), + [anon_sym_set] = ACTIONS(3155), + [anon_sym_declare] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_override] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_any] = ACTIONS(3155), + [anon_sym_number] = ACTIONS(3155), + [anon_sym_boolean] = ACTIONS(3155), + [anon_sym_string] = ACTIONS(3155), + [anon_sym_symbol] = ACTIONS(3155), + [anon_sym_object] = ACTIONS(3155), + [anon_sym_abstract] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), [sym_html_comment] = ACTIONS(5), }, [1370] = { [sym_comment] = STATE(1370), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3153), + [anon_sym_export] = ACTIONS(3153), + [anon_sym_type] = ACTIONS(3153), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3153), + [anon_sym_import] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_else] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_await] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_debugger] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_LTtemplate_GT] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_void] = ACTIONS(3153), + [anon_sym_delete] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3153), + [sym_number] = ACTIONS(3153), + [sym_private_property_identifier] = ACTIONS(3153), + [sym_this] = ACTIONS(3153), + [sym_super] = ACTIONS(3153), + [sym_true] = ACTIONS(3153), + [sym_false] = ACTIONS(3153), + [sym_null] = ACTIONS(3153), + [sym_undefined] = ACTIONS(3153), + [anon_sym_AT] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_get] = ACTIONS(3153), + [anon_sym_set] = ACTIONS(3153), + [anon_sym_declare] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_module] = ACTIONS(3153), + [anon_sym_any] = ACTIONS(3153), + [anon_sym_number] = ACTIONS(3153), + [anon_sym_boolean] = ACTIONS(3153), + [anon_sym_string] = ACTIONS(3153), + [anon_sym_symbol] = ACTIONS(3153), + [anon_sym_object] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), [sym_html_comment] = ACTIONS(5), }, [1371] = { [sym_comment] = STATE(1371), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_LTtemplate_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3200), - [sym_number] = ACTIONS(3200), - [sym_private_property_identifier] = ACTIONS(3200), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3151), + [anon_sym_export] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(3151), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_var] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_else] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_await] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_debugger] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LTtemplate_GT] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_SQUOTE] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_async] = ACTIONS(3151), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_void] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3151), + [sym_number] = ACTIONS(3151), + [sym_private_property_identifier] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + [sym_super] = ACTIONS(3151), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_null] = ACTIONS(3151), + [sym_undefined] = ACTIONS(3151), + [anon_sym_AT] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_readonly] = ACTIONS(3151), + [anon_sym_get] = ACTIONS(3151), + [anon_sym_set] = ACTIONS(3151), + [anon_sym_declare] = ACTIONS(3151), + [anon_sym_public] = ACTIONS(3151), + [anon_sym_private] = ACTIONS(3151), + [anon_sym_protected] = ACTIONS(3151), + [anon_sym_override] = ACTIONS(3151), + [anon_sym_module] = ACTIONS(3151), + [anon_sym_any] = ACTIONS(3151), + [anon_sym_number] = ACTIONS(3151), + [anon_sym_boolean] = ACTIONS(3151), + [anon_sym_string] = ACTIONS(3151), + [anon_sym_symbol] = ACTIONS(3151), + [anon_sym_object] = ACTIONS(3151), + [anon_sym_abstract] = ACTIONS(3151), + [anon_sym_global] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), [sym_html_comment] = ACTIONS(5), }, [1372] = { [sym_comment] = STATE(1372), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3149), + [anon_sym_export] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_debugger] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_LTtemplate_GT] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_void] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3149), + [sym_number] = ACTIONS(3149), + [sym_private_property_identifier] = ACTIONS(3149), + [sym_this] = ACTIONS(3149), + [sym_super] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_null] = ACTIONS(3149), + [sym_undefined] = ACTIONS(3149), + [anon_sym_AT] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_get] = ACTIONS(3149), + [anon_sym_set] = ACTIONS(3149), + [anon_sym_declare] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_module] = ACTIONS(3149), + [anon_sym_any] = ACTIONS(3149), + [anon_sym_number] = ACTIONS(3149), + [anon_sym_boolean] = ACTIONS(3149), + [anon_sym_string] = ACTIONS(3149), + [anon_sym_symbol] = ACTIONS(3149), + [anon_sym_object] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), [sym_html_comment] = ACTIONS(5), }, [1373] = { [sym_comment] = STATE(1373), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_default] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), + [ts_builtin_sym_end] = ACTIONS(3539), + [sym_identifier] = ACTIONS(3147), + [anon_sym_export] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_typeof] = ACTIONS(3147), + [anon_sym_import] = ACTIONS(3147), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_var] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_else] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_await] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_debugger] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LTtemplate_GT] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_void] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3147), + [sym_number] = ACTIONS(3147), + [sym_private_property_identifier] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), + [sym_super] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_null] = ACTIONS(3147), + [sym_undefined] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_get] = ACTIONS(3147), + [anon_sym_set] = ACTIONS(3147), + [anon_sym_declare] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_private] = ACTIONS(3147), + [anon_sym_protected] = ACTIONS(3147), + [anon_sym_override] = ACTIONS(3147), + [anon_sym_module] = ACTIONS(3147), + [anon_sym_any] = ACTIONS(3147), + [anon_sym_number] = ACTIONS(3147), + [anon_sym_boolean] = ACTIONS(3147), + [anon_sym_string] = ACTIONS(3147), + [anon_sym_symbol] = ACTIONS(3147), + [anon_sym_object] = ACTIONS(3147), + [anon_sym_abstract] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3147), + [anon_sym_interface] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), [sym_html_comment] = ACTIONS(5), }, [1374] = { [sym_comment] = STATE(1374), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_default] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_finally] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [1375] = { [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(3538), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3175), + [anon_sym_export] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_typeof] = ACTIONS(3175), + [anon_sym_import] = ACTIONS(3175), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_var] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_debugger] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LTtemplate_GT] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_void] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3175), + [sym_number] = ACTIONS(3175), + [sym_private_property_identifier] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3175), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_declare] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_any] = ACTIONS(3175), + [anon_sym_number] = ACTIONS(3175), + [anon_sym_boolean] = ACTIONS(3175), + [anon_sym_string] = ACTIONS(3175), + [anon_sym_symbol] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_global] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), [sym_html_comment] = ACTIONS(5), }, [1376] = { [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, [1377] = { [sym_comment] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3141), + [anon_sym_export] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_namespace] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_typeof] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [anon_sym_let] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_debugger] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LTtemplate_GT] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_void] = ACTIONS(3141), + [anon_sym_delete] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3141), + [sym_number] = ACTIONS(3141), + [sym_private_property_identifier] = ACTIONS(3141), + [sym_this] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_null] = ACTIONS(3141), + [sym_undefined] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_declare] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_module] = ACTIONS(3141), + [anon_sym_any] = ACTIONS(3141), + [anon_sym_number] = ACTIONS(3141), + [anon_sym_boolean] = ACTIONS(3141), + [anon_sym_string] = ACTIONS(3141), + [anon_sym_symbol] = ACTIONS(3141), + [anon_sym_object] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), [sym_html_comment] = ACTIONS(5), }, [1378] = { [sym_comment] = STATE(1378), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_default] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_case] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_LTtemplate_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3200), - [sym_number] = ACTIONS(3200), - [sym_private_property_identifier] = ACTIONS(3200), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3143), + [anon_sym_export] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_typeof] = ACTIONS(3143), + [anon_sym_import] = ACTIONS(3143), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_var] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_await] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_debugger] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_case] = ACTIONS(3143), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LTtemplate_GT] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_SQUOTE] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_async] = ACTIONS(3143), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_void] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3143), + [sym_number] = ACTIONS(3143), + [sym_private_property_identifier] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [sym_super] = ACTIONS(3143), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [sym_null] = ACTIONS(3143), + [sym_undefined] = ACTIONS(3143), + [anon_sym_AT] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_readonly] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3143), + [anon_sym_set] = ACTIONS(3143), + [anon_sym_declare] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_private] = ACTIONS(3143), + [anon_sym_protected] = ACTIONS(3143), + [anon_sym_override] = ACTIONS(3143), + [anon_sym_module] = ACTIONS(3143), + [anon_sym_any] = ACTIONS(3143), + [anon_sym_number] = ACTIONS(3143), + [anon_sym_boolean] = ACTIONS(3143), + [anon_sym_string] = ACTIONS(3143), + [anon_sym_symbol] = ACTIONS(3143), + [anon_sym_object] = ACTIONS(3143), + [anon_sym_abstract] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3143), + [anon_sym_interface] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), [sym_html_comment] = ACTIONS(5), }, [1379] = { [sym_comment] = STATE(1379), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [ts_builtin_sym_end] = ACTIONS(3545), + [sym_identifier] = ACTIONS(3159), + [anon_sym_export] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_var] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_await] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_debugger] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LTtemplate_GT] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_SQUOTE] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_async] = ACTIONS(3159), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_void] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3159), + [sym_number] = ACTIONS(3159), + [sym_private_property_identifier] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), + [sym_super] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_null] = ACTIONS(3159), + [sym_undefined] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_readonly] = ACTIONS(3159), + [anon_sym_get] = ACTIONS(3159), + [anon_sym_set] = ACTIONS(3159), + [anon_sym_declare] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_override] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_any] = ACTIONS(3159), + [anon_sym_number] = ACTIONS(3159), + [anon_sym_boolean] = ACTIONS(3159), + [anon_sym_string] = ACTIONS(3159), + [anon_sym_symbol] = ACTIONS(3159), + [anon_sym_object] = ACTIONS(3159), + [anon_sym_abstract] = ACTIONS(3159), + [anon_sym_global] = ACTIONS(3159), + [anon_sym_interface] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), [sym_html_comment] = ACTIONS(5), }, [1380] = { [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3542), - [sym_identifier] = ACTIONS(3306), - [anon_sym_export] = ACTIONS(3306), - [anon_sym_type] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3306), - [anon_sym_import] = ACTIONS(3306), - [anon_sym_with] = ACTIONS(3306), - [anon_sym_var] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_else] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_debugger] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_yield] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LTtemplate_GT] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_async] = ACTIONS(3306), - [anon_sym_function] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_private_property_identifier] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), - [sym_super] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_undefined] = ACTIONS(3306), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_readonly] = ACTIONS(3306), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_override] = ACTIONS(3306), - [anon_sym_module] = ACTIONS(3306), - [anon_sym_any] = ACTIONS(3306), - [anon_sym_number] = ACTIONS(3306), - [anon_sym_boolean] = ACTIONS(3306), - [anon_sym_string] = ACTIONS(3306), - [anon_sym_symbol] = ACTIONS(3306), - [anon_sym_object] = ACTIONS(3306), - [anon_sym_abstract] = ACTIONS(3306), - [anon_sym_interface] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3189), + [anon_sym_export] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym_import] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_debugger] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LTtemplate_GT] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_function] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_void] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3189), + [sym_number] = ACTIONS(3189), + [sym_private_property_identifier] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [sym_super] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_null] = ACTIONS(3189), + [sym_undefined] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_get] = ACTIONS(3189), + [anon_sym_set] = ACTIONS(3189), + [anon_sym_declare] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_module] = ACTIONS(3189), + [anon_sym_any] = ACTIONS(3189), + [anon_sym_number] = ACTIONS(3189), + [anon_sym_boolean] = ACTIONS(3189), + [anon_sym_string] = ACTIONS(3189), + [anon_sym_symbol] = ACTIONS(3189), + [anon_sym_object] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), [sym_html_comment] = ACTIONS(5), }, [1381] = { [sym_comment] = STATE(1381), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3334), - [anon_sym_any] = ACTIONS(3334), - [anon_sym_number] = ACTIONS(3334), - [anon_sym_boolean] = ACTIONS(3334), - [anon_sym_string] = ACTIONS(3334), - [anon_sym_symbol] = ACTIONS(3334), - [anon_sym_object] = ACTIONS(3334), - [anon_sym_abstract] = ACTIONS(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3189), + [anon_sym_export] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym_import] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_debugger] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LTtemplate_GT] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_function] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_void] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3189), + [sym_number] = ACTIONS(3189), + [sym_private_property_identifier] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [sym_super] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_null] = ACTIONS(3189), + [sym_undefined] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_get] = ACTIONS(3189), + [anon_sym_set] = ACTIONS(3189), + [anon_sym_declare] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_module] = ACTIONS(3189), + [anon_sym_any] = ACTIONS(3189), + [anon_sym_number] = ACTIONS(3189), + [anon_sym_boolean] = ACTIONS(3189), + [anon_sym_string] = ACTIONS(3189), + [anon_sym_symbol] = ACTIONS(3189), + [anon_sym_object] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), [sym_html_comment] = ACTIONS(5), }, [1382] = { - [sym_statement_block] = STATE(1512), [sym_comment] = STATE(1382), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3139), + [anon_sym_export] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_namespace] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_typeof] = ACTIONS(3139), + [anon_sym_import] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), + [anon_sym_var] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_debugger] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_throw] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LTtemplate_GT] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_class] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3139), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_void] = ACTIONS(3139), + [anon_sym_delete] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3139), + [sym_number] = ACTIONS(3139), + [sym_private_property_identifier] = ACTIONS(3139), + [sym_this] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_true] = ACTIONS(3139), + [sym_false] = ACTIONS(3139), + [sym_null] = ACTIONS(3139), + [sym_undefined] = ACTIONS(3139), + [anon_sym_AT] = ACTIONS(3139), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_readonly] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3139), + [anon_sym_set] = ACTIONS(3139), + [anon_sym_declare] = ACTIONS(3139), + [anon_sym_public] = ACTIONS(3139), + [anon_sym_private] = ACTIONS(3139), + [anon_sym_protected] = ACTIONS(3139), + [anon_sym_override] = ACTIONS(3139), + [anon_sym_module] = ACTIONS(3139), + [anon_sym_any] = ACTIONS(3139), + [anon_sym_number] = ACTIONS(3139), + [anon_sym_boolean] = ACTIONS(3139), + [anon_sym_string] = ACTIONS(3139), + [anon_sym_symbol] = ACTIONS(3139), + [anon_sym_object] = ACTIONS(3139), + [anon_sym_abstract] = ACTIONS(3139), + [anon_sym_global] = ACTIONS(3139), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [1383] = { [sym_comment] = STATE(1383), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2451), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [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_abstract] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1384] = { [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2307), + [sym_identifier] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_debugger] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LTtemplate_GT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3137), + [sym_number] = ACTIONS(3137), + [sym_private_property_identifier] = ACTIONS(3137), + [sym_this] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_undefined] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_declare] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_any] = ACTIONS(3137), + [anon_sym_number] = ACTIONS(3137), + [anon_sym_boolean] = ACTIONS(3137), + [anon_sym_string] = ACTIONS(3137), + [anon_sym_symbol] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), [sym_html_comment] = ACTIONS(5), }, [1385] = { [sym_comment] = STATE(1385), - [ts_builtin_sym_end] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2449), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [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_abstract] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1386] = { [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_typeof] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_var] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_debugger] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LTtemplate_GT] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_void] = ACTIONS(2089), - [anon_sym_delete] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2089), - [sym_number] = ACTIONS(2089), - [sym_private_property_identifier] = ACTIONS(2089), - [sym_this] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_null] = ACTIONS(2089), - [sym_undefined] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [sym__automatic_semicolon] = ACTIONS(2425), + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [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_abstract] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, [1387] = { [sym_comment] = STATE(1387), - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_var] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_debugger] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LTtemplate_GT] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_void] = ACTIONS(2097), - [anon_sym_delete] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2097), - [sym_number] = ACTIONS(2097), - [sym_private_property_identifier] = ACTIONS(2097), - [sym_this] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_null] = ACTIONS(2097), - [sym_undefined] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_get] = ACTIONS(2097), - [anon_sym_set] = ACTIONS(2097), - [anon_sym_declare] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_private] = ACTIONS(2097), - [anon_sym_protected] = ACTIONS(2097), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_any] = ACTIONS(2097), - [anon_sym_number] = ACTIONS(2097), - [anon_sym_boolean] = ACTIONS(2097), - [anon_sym_string] = ACTIONS(2097), - [anon_sym_symbol] = ACTIONS(2097), - [anon_sym_object] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2423), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_case] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1388] = { [sym_comment] = STATE(1388), - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2427), + [sym_identifier] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_debugger] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LTtemplate_GT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3137), + [sym_number] = ACTIONS(3137), + [sym_private_property_identifier] = ACTIONS(3137), + [sym_this] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_undefined] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_declare] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_any] = ACTIONS(3137), + [anon_sym_number] = ACTIONS(3137), + [anon_sym_boolean] = ACTIONS(3137), + [anon_sym_string] = ACTIONS(3137), + [anon_sym_symbol] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), [sym_html_comment] = ACTIONS(5), }, [1389] = { [sym_comment] = STATE(1389), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [1390] = { [sym_comment] = STATE(1390), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_case] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1391] = { [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_with] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_debugger] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LTtemplate_GT] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_private_property_identifier] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_undefined] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_readonly] = ACTIONS(2198), + [anon_sym_get] = ACTIONS(2198), + [anon_sym_set] = ACTIONS(2198), + [anon_sym_declare] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_module] = ACTIONS(2198), + [anon_sym_any] = ACTIONS(2198), + [anon_sym_number] = ACTIONS(2198), + [anon_sym_boolean] = ACTIONS(2198), + [anon_sym_string] = ACTIONS(2198), + [anon_sym_symbol] = ACTIONS(2198), + [anon_sym_object] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_global] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), [sym_html_comment] = ACTIONS(5), }, [1392] = { [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3177), + [sym_identifier] = ACTIONS(3111), + [anon_sym_export] = ACTIONS(3111), + [anon_sym_type] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_typeof] = ACTIONS(3111), + [anon_sym_import] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3111), + [anon_sym_var] = ACTIONS(3111), + [anon_sym_let] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_debugger] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_LTtemplate_GT] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3111), + [sym_number] = ACTIONS(3111), + [sym_private_property_identifier] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [sym_super] = ACTIONS(3111), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [sym_null] = ACTIONS(3111), + [sym_undefined] = ACTIONS(3111), + [anon_sym_AT] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_get] = ACTIONS(3111), + [anon_sym_set] = ACTIONS(3111), + [anon_sym_declare] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_module] = ACTIONS(3111), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_interface] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), [sym_html_comment] = ACTIONS(5), }, [1393] = { [sym_comment] = STATE(1393), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_LTtemplate_GT] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_SQUOTE] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3124), - [sym_number] = ACTIONS(3124), - [sym_private_property_identifier] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_object] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(2298), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), [sym_html_comment] = ACTIONS(5), }, [1394] = { [sym_comment] = STATE(1394), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3365), + [anon_sym_export] = ACTIONS(3365), + [anon_sym_default] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_typeof] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_var] = ACTIONS(3365), + [anon_sym_let] = ACTIONS(3365), + [anon_sym_const] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_do] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_debugger] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_throw] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_case] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LTtemplate_GT] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_function] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_using] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_SLASH] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3365), + [sym_number] = ACTIONS(3365), + [sym_private_property_identifier] = ACTIONS(3365), + [sym_this] = ACTIONS(3365), + [sym_super] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_null] = ACTIONS(3365), + [sym_undefined] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_static] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_private] = ACTIONS(3365), + [anon_sym_protected] = ACTIONS(3365), + [anon_sym_override] = ACTIONS(3365), + [anon_sym_module] = ACTIONS(3365), + [anon_sym_any] = ACTIONS(3365), + [anon_sym_number] = ACTIONS(3365), + [anon_sym_boolean] = ACTIONS(3365), + [anon_sym_string] = ACTIONS(3365), + [anon_sym_symbol] = ACTIONS(3365), + [anon_sym_object] = ACTIONS(3365), + [anon_sym_abstract] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3365), + [anon_sym_enum] = ACTIONS(3365), [sym_html_comment] = ACTIONS(5), }, [1395] = { [sym_comment] = STATE(1395), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2245), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_typeof] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_debugger] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LTtemplate_GT] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2245), - [sym_number] = ACTIONS(2245), - [sym_private_property_identifier] = ACTIONS(2245), - [sym_this] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_null] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_get] = ACTIONS(2245), - [anon_sym_set] = ACTIONS(2245), - [anon_sym_declare] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_private] = ACTIONS(2245), - [anon_sym_protected] = ACTIONS(2245), - [anon_sym_override] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_any] = ACTIONS(2245), - [anon_sym_number] = ACTIONS(2245), - [anon_sym_boolean] = ACTIONS(2245), - [anon_sym_string] = ACTIONS(2245), - [anon_sym_symbol] = ACTIONS(2245), - [anon_sym_object] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_case] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), [sym_html_comment] = ACTIONS(5), }, [1396] = { [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(3104), - [sym_identifier] = ACTIONS(3102), - [anon_sym_export] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_with] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [anon_sym_let] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_await] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_debugger] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_yield] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_LTtemplate_GT] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_async] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - [sym_super] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_null] = ACTIONS(3102), - [sym_undefined] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_readonly] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_declare] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_module] = ACTIONS(3102), - [anon_sym_any] = ACTIONS(3102), - [anon_sym_number] = ACTIONS(3102), - [anon_sym_boolean] = ACTIONS(3102), - [anon_sym_string] = ACTIONS(3102), - [anon_sym_symbol] = ACTIONS(3102), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_abstract] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [sym__automatic_semicolon] = ACTIONS(3104), + [ts_builtin_sym_end] = ACTIONS(3555), + [sym_identifier] = ACTIONS(3175), + [anon_sym_export] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_typeof] = ACTIONS(3175), + [anon_sym_import] = ACTIONS(3175), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_var] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_debugger] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LTtemplate_GT] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_void] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3175), + [sym_number] = ACTIONS(3175), + [sym_private_property_identifier] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3175), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_declare] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_any] = ACTIONS(3175), + [anon_sym_number] = ACTIONS(3175), + [anon_sym_boolean] = ACTIONS(3175), + [anon_sym_string] = ACTIONS(3175), + [anon_sym_symbol] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_global] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), [sym_html_comment] = ACTIONS(5), }, [1397] = { [sym_comment] = STATE(1397), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [sym_this] = ACTIONS(3178), - [sym_super] = ACTIONS(3178), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_undefined] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = ACTIONS(3178), - [anon_sym_declare] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_any] = ACTIONS(3178), - [anon_sym_number] = ACTIONS(3178), - [anon_sym_boolean] = ACTIONS(3178), - [anon_sym_string] = ACTIONS(3178), - [anon_sym_symbol] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), [sym_html_comment] = ACTIONS(5), }, [1398] = { [sym_comment] = STATE(1398), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_else] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_LTtemplate_GT] = ACTIONS(3176), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_override] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_object] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3143), + [anon_sym_export] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_typeof] = ACTIONS(3143), + [anon_sym_import] = ACTIONS(3143), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_var] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_await] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_debugger] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LTtemplate_GT] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_SQUOTE] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_async] = ACTIONS(3143), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_void] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3143), + [sym_number] = ACTIONS(3143), + [sym_private_property_identifier] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [sym_super] = ACTIONS(3143), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [sym_null] = ACTIONS(3143), + [sym_undefined] = ACTIONS(3143), + [anon_sym_AT] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_readonly] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3143), + [anon_sym_set] = ACTIONS(3143), + [anon_sym_declare] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_private] = ACTIONS(3143), + [anon_sym_protected] = ACTIONS(3143), + [anon_sym_override] = ACTIONS(3143), + [anon_sym_module] = ACTIONS(3143), + [anon_sym_any] = ACTIONS(3143), + [anon_sym_number] = ACTIONS(3143), + [anon_sym_boolean] = ACTIONS(3143), + [anon_sym_string] = ACTIONS(3143), + [anon_sym_symbol] = ACTIONS(3143), + [anon_sym_object] = ACTIONS(3143), + [anon_sym_abstract] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3143), + [anon_sym_interface] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), [sym_html_comment] = ACTIONS(5), }, [1399] = { [sym_comment] = STATE(1399), - [ts_builtin_sym_end] = ACTIONS(3548), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [sym_this] = ACTIONS(3178), - [sym_super] = ACTIONS(3178), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_undefined] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = ACTIONS(3178), - [anon_sym_declare] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_any] = ACTIONS(3178), - [anon_sym_number] = ACTIONS(3178), - [anon_sym_boolean] = ACTIONS(3178), - [anon_sym_string] = ACTIONS(3178), - [anon_sym_symbol] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_default] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_case] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, [1400] = { [sym_comment] = STATE(1400), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_default] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_case] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_LTtemplate_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3208), - [sym_number] = ACTIONS(3208), - [sym_private_property_identifier] = ACTIONS(3208), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_default] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_case] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_global] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, [1401] = { [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym_identifier] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_type] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_typeof] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_with] = ACTIONS(3310), - [anon_sym_var] = ACTIONS(3310), - [anon_sym_let] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_await] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_debugger] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_LTtemplate_GT] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_async] = ACTIONS(3310), - [anon_sym_function] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_SLASH] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_void] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3310), - [sym_number] = ACTIONS(3310), - [sym_private_property_identifier] = ACTIONS(3310), - [sym_this] = ACTIONS(3310), - [sym_super] = ACTIONS(3310), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [sym_null] = ACTIONS(3310), - [sym_undefined] = ACTIONS(3310), - [anon_sym_AT] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_readonly] = ACTIONS(3310), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3310), - [anon_sym_declare] = ACTIONS(3310), - [anon_sym_public] = ACTIONS(3310), - [anon_sym_private] = ACTIONS(3310), - [anon_sym_protected] = ACTIONS(3310), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3310), - [anon_sym_any] = ACTIONS(3310), - [anon_sym_number] = ACTIONS(3310), - [anon_sym_boolean] = ACTIONS(3310), - [anon_sym_string] = ACTIONS(3310), - [anon_sym_symbol] = ACTIONS(3310), - [anon_sym_object] = ACTIONS(3310), - [anon_sym_abstract] = ACTIONS(3310), - [anon_sym_interface] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), + [ts_builtin_sym_end] = ACTIONS(3559), + [sym_identifier] = ACTIONS(3265), + [anon_sym_export] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_namespace] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_typeof] = ACTIONS(3265), + [anon_sym_import] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_var] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_debugger] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_throw] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_yield] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LTtemplate_GT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_class] = ACTIONS(3265), + [anon_sym_async] = ACTIONS(3265), + [anon_sym_function] = ACTIONS(3265), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_void] = ACTIONS(3265), + [anon_sym_delete] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_number] = ACTIONS(3265), + [sym_private_property_identifier] = ACTIONS(3265), + [sym_this] = ACTIONS(3265), + [sym_super] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_null] = ACTIONS(3265), + [sym_undefined] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(3265), + [anon_sym_readonly] = ACTIONS(3265), + [anon_sym_get] = ACTIONS(3265), + [anon_sym_set] = ACTIONS(3265), + [anon_sym_declare] = ACTIONS(3265), + [anon_sym_public] = ACTIONS(3265), + [anon_sym_private] = ACTIONS(3265), + [anon_sym_protected] = ACTIONS(3265), + [anon_sym_override] = ACTIONS(3265), + [anon_sym_module] = ACTIONS(3265), + [anon_sym_any] = ACTIONS(3265), + [anon_sym_number] = ACTIONS(3265), + [anon_sym_boolean] = ACTIONS(3265), + [anon_sym_string] = ACTIONS(3265), + [anon_sym_symbol] = ACTIONS(3265), + [anon_sym_object] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3265), + [anon_sym_global] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), [sym_html_comment] = ACTIONS(5), }, [1402] = { [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(3552), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_else] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1403] = { [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_else] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [sym_identifier] = ACTIONS(3135), + [anon_sym_export] = ACTIONS(3135), + [anon_sym_default] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_namespace] = ACTIONS(3135), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_typeof] = ACTIONS(3135), + [anon_sym_import] = ACTIONS(3135), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_var] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_const] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_switch] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_await] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_break] = ACTIONS(3135), + [anon_sym_continue] = ACTIONS(3135), + [anon_sym_debugger] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_throw] = ACTIONS(3135), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_case] = ACTIONS(3135), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LTtemplate_GT] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_SQUOTE] = ACTIONS(3135), + [anon_sym_class] = ACTIONS(3135), + [anon_sym_async] = ACTIONS(3135), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_using] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_void] = ACTIONS(3135), + [anon_sym_delete] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3135), + [sym_number] = ACTIONS(3135), + [sym_private_property_identifier] = ACTIONS(3135), + [sym_this] = ACTIONS(3135), + [sym_super] = ACTIONS(3135), + [sym_true] = ACTIONS(3135), + [sym_false] = ACTIONS(3135), + [sym_null] = ACTIONS(3135), + [sym_undefined] = ACTIONS(3135), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_static] = ACTIONS(3135), + [anon_sym_readonly] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3135), + [anon_sym_set] = ACTIONS(3135), + [anon_sym_declare] = ACTIONS(3135), + [anon_sym_public] = ACTIONS(3135), + [anon_sym_private] = ACTIONS(3135), + [anon_sym_protected] = ACTIONS(3135), + [anon_sym_override] = ACTIONS(3135), + [anon_sym_module] = ACTIONS(3135), + [anon_sym_any] = ACTIONS(3135), + [anon_sym_number] = ACTIONS(3135), + [anon_sym_boolean] = ACTIONS(3135), + [anon_sym_string] = ACTIONS(3135), + [anon_sym_symbol] = ACTIONS(3135), + [anon_sym_object] = ACTIONS(3135), + [anon_sym_abstract] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3135), + [anon_sym_interface] = ACTIONS(3135), + [anon_sym_enum] = ACTIONS(3135), [sym_html_comment] = ACTIONS(5), }, [1404] = { [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_else] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [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_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [ts_builtin_sym_end] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_debugger] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LTtemplate_GT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3137), + [sym_number] = ACTIONS(3137), + [sym_private_property_identifier] = ACTIONS(3137), + [sym_this] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_undefined] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_declare] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_any] = ACTIONS(3137), + [anon_sym_number] = ACTIONS(3137), + [anon_sym_boolean] = ACTIONS(3137), + [anon_sym_string] = ACTIONS(3137), + [anon_sym_symbol] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), [sym_html_comment] = ACTIONS(5), }, [1405] = { [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_debugger] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LTtemplate_GT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3137), + [sym_number] = ACTIONS(3137), + [sym_private_property_identifier] = ACTIONS(3137), + [sym_this] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_undefined] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_declare] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_any] = ACTIONS(3137), + [anon_sym_number] = ACTIONS(3137), + [anon_sym_boolean] = ACTIONS(3137), + [anon_sym_string] = ACTIONS(3137), + [anon_sym_symbol] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), [sym_html_comment] = ACTIONS(5), }, [1406] = { [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3179), + [anon_sym_export] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_typeof] = ACTIONS(3179), + [anon_sym_import] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3179), + [anon_sym_var] = ACTIONS(3179), + [anon_sym_let] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_debugger] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_yield] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LTtemplate_GT] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(3179), + [anon_sym_SQUOTE] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(3179), + [anon_sym_function] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_void] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3179), + [sym_number] = ACTIONS(3179), + [sym_private_property_identifier] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3179), + [anon_sym_get] = ACTIONS(3179), + [anon_sym_set] = ACTIONS(3179), + [anon_sym_declare] = ACTIONS(3179), + [anon_sym_public] = ACTIONS(3179), + [anon_sym_private] = ACTIONS(3179), + [anon_sym_protected] = ACTIONS(3179), + [anon_sym_override] = ACTIONS(3179), + [anon_sym_module] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3179), + [anon_sym_number] = ACTIONS(3179), + [anon_sym_boolean] = ACTIONS(3179), + [anon_sym_string] = ACTIONS(3179), + [anon_sym_symbol] = ACTIONS(3179), + [anon_sym_object] = ACTIONS(3179), + [anon_sym_abstract] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), [sym_html_comment] = ACTIONS(5), }, [1407] = { [sym_comment] = STATE(1407), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_default] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_case] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), [sym_html_comment] = ACTIONS(5), }, [1408] = { [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(3560), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3215), + [anon_sym_export] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_type] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_typeof] = ACTIONS(3215), + [anon_sym_import] = ACTIONS(3215), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_debugger] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LTtemplate_GT] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_void] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3215), + [sym_number] = ACTIONS(3215), + [sym_private_property_identifier] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), + [sym_super] = ACTIONS(3215), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [sym_null] = ACTIONS(3215), + [sym_undefined] = ACTIONS(3215), + [anon_sym_AT] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_get] = ACTIONS(3215), + [anon_sym_set] = ACTIONS(3215), + [anon_sym_declare] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_module] = ACTIONS(3215), + [anon_sym_any] = ACTIONS(3215), + [anon_sym_number] = ACTIONS(3215), + [anon_sym_boolean] = ACTIONS(3215), + [anon_sym_string] = ACTIONS(3215), + [anon_sym_symbol] = ACTIONS(3215), + [anon_sym_object] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), [sym_html_comment] = ACTIONS(5), }, [1409] = { [sym_comment] = STATE(1409), - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_with] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_debugger] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LTtemplate_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_private_property_identifier] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_default] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_global] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1410] = { [sym_comment] = STATE(1410), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1411] = { [sym_comment] = STATE(1411), - [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_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_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_abstract] = ACTIONS(3562), - [anon_sym_interface] = ACTIONS(3562), - [anon_sym_enum] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_default] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_case] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_any] = ACTIONS(3221), + [anon_sym_number] = ACTIONS(3221), + [anon_sym_boolean] = ACTIONS(3221), + [anon_sym_string] = ACTIONS(3221), + [anon_sym_symbol] = ACTIONS(3221), + [anon_sym_object] = ACTIONS(3221), + [anon_sym_abstract] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, [1412] = { [sym_comment] = STATE(1412), - [ts_builtin_sym_end] = ACTIONS(3564), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1413] = { [sym_comment] = STATE(1413), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [ts_builtin_sym_end] = ACTIONS(3565), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, [1414] = { [sym_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_default] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_case] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, [1415] = { [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(3568), - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_with] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_debugger] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LTtemplate_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_private_property_identifier] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), + [ts_builtin_sym_end] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3135), + [anon_sym_export] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_namespace] = ACTIONS(3135), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_typeof] = ACTIONS(3135), + [anon_sym_import] = ACTIONS(3135), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_var] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_const] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_switch] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_await] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_break] = ACTIONS(3135), + [anon_sym_continue] = ACTIONS(3135), + [anon_sym_debugger] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_throw] = ACTIONS(3135), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LTtemplate_GT] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_SQUOTE] = ACTIONS(3135), + [anon_sym_class] = ACTIONS(3135), + [anon_sym_async] = ACTIONS(3135), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_using] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_void] = ACTIONS(3135), + [anon_sym_delete] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3135), + [sym_number] = ACTIONS(3135), + [sym_private_property_identifier] = ACTIONS(3135), + [sym_this] = ACTIONS(3135), + [sym_super] = ACTIONS(3135), + [sym_true] = ACTIONS(3135), + [sym_false] = ACTIONS(3135), + [sym_null] = ACTIONS(3135), + [sym_undefined] = ACTIONS(3135), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_static] = ACTIONS(3135), + [anon_sym_readonly] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3135), + [anon_sym_set] = ACTIONS(3135), + [anon_sym_declare] = ACTIONS(3135), + [anon_sym_public] = ACTIONS(3135), + [anon_sym_private] = ACTIONS(3135), + [anon_sym_protected] = ACTIONS(3135), + [anon_sym_override] = ACTIONS(3135), + [anon_sym_module] = ACTIONS(3135), + [anon_sym_any] = ACTIONS(3135), + [anon_sym_number] = ACTIONS(3135), + [anon_sym_boolean] = ACTIONS(3135), + [anon_sym_string] = ACTIONS(3135), + [anon_sym_symbol] = ACTIONS(3135), + [anon_sym_object] = ACTIONS(3135), + [anon_sym_abstract] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3135), + [anon_sym_interface] = ACTIONS(3135), + [anon_sym_enum] = ACTIONS(3135), [sym_html_comment] = ACTIONS(5), }, [1416] = { [sym_comment] = STATE(1416), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_case] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3179), + [anon_sym_export] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_typeof] = ACTIONS(3179), + [anon_sym_import] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3179), + [anon_sym_var] = ACTIONS(3179), + [anon_sym_let] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_else] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_debugger] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_yield] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LTtemplate_GT] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(3179), + [anon_sym_SQUOTE] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(3179), + [anon_sym_function] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_void] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3179), + [sym_number] = ACTIONS(3179), + [sym_private_property_identifier] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3179), + [anon_sym_get] = ACTIONS(3179), + [anon_sym_set] = ACTIONS(3179), + [anon_sym_declare] = ACTIONS(3179), + [anon_sym_public] = ACTIONS(3179), + [anon_sym_private] = ACTIONS(3179), + [anon_sym_protected] = ACTIONS(3179), + [anon_sym_override] = ACTIONS(3179), + [anon_sym_module] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3179), + [anon_sym_number] = ACTIONS(3179), + [anon_sym_boolean] = ACTIONS(3179), + [anon_sym_string] = ACTIONS(3179), + [anon_sym_symbol] = ACTIONS(3179), + [anon_sym_object] = ACTIONS(3179), + [anon_sym_abstract] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), [sym_html_comment] = ACTIONS(5), }, [1417] = { [sym_comment] = STATE(1417), - [sym_identifier] = ACTIONS(3150), - [anon_sym_export] = ACTIONS(3150), - [anon_sym_default] = ACTIONS(3150), - [anon_sym_type] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_debugger] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_case] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_LTtemplate_GT] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_void] = ACTIONS(3150), - [anon_sym_delete] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_number] = ACTIONS(3150), - [sym_private_property_identifier] = ACTIONS(3150), - [sym_this] = ACTIONS(3150), - [sym_super] = ACTIONS(3150), - [sym_true] = ACTIONS(3150), - [sym_false] = ACTIONS(3150), - [sym_null] = ACTIONS(3150), - [sym_undefined] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_declare] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_module] = ACTIONS(3150), - [anon_sym_any] = ACTIONS(3150), - [anon_sym_number] = ACTIONS(3150), - [anon_sym_boolean] = ACTIONS(3150), - [anon_sym_string] = ACTIONS(3150), - [anon_sym_symbol] = ACTIONS(3150), - [anon_sym_object] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), + [ts_builtin_sym_end] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), [sym_html_comment] = ACTIONS(5), }, [1418] = { [sym_comment] = STATE(1418), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1419] = { [sym_comment] = STATE(1419), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_global] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [1420] = { [sym_comment] = STATE(1420), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(3570), + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3215), + [anon_sym_export] = ACTIONS(3215), + [anon_sym_type] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_typeof] = ACTIONS(3215), + [anon_sym_import] = ACTIONS(3215), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_debugger] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LTtemplate_GT] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_void] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3215), + [sym_number] = ACTIONS(3215), + [sym_private_property_identifier] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), + [sym_super] = ACTIONS(3215), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [sym_null] = ACTIONS(3215), + [sym_undefined] = ACTIONS(3215), + [anon_sym_AT] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_get] = ACTIONS(3215), + [anon_sym_set] = ACTIONS(3215), + [anon_sym_declare] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_module] = ACTIONS(3215), + [anon_sym_any] = ACTIONS(3215), + [anon_sym_number] = ACTIONS(3215), + [anon_sym_boolean] = ACTIONS(3215), + [anon_sym_string] = ACTIONS(3215), + [anon_sym_symbol] = ACTIONS(3215), + [anon_sym_object] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), [sym_html_comment] = ACTIONS(5), }, [1421] = { [sym_comment] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(3572), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_LTtemplate_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3196), - [sym_number] = ACTIONS(3196), - [sym_private_property_identifier] = ACTIONS(3196), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), + [ts_builtin_sym_end] = ACTIONS(3575), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_global] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1422] = { [sym_comment] = STATE(1422), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_any] = ACTIONS(3221), + [anon_sym_number] = ACTIONS(3221), + [anon_sym_boolean] = ACTIONS(3221), + [anon_sym_string] = ACTIONS(3221), + [anon_sym_symbol] = ACTIONS(3221), + [anon_sym_object] = ACTIONS(3221), + [anon_sym_abstract] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, [1423] = { [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3574), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3189), + [anon_sym_export] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym_import] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_debugger] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_case] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LTtemplate_GT] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_function] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_void] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3189), + [sym_number] = ACTIONS(3189), + [sym_private_property_identifier] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [sym_super] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_null] = ACTIONS(3189), + [sym_undefined] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_get] = ACTIONS(3189), + [anon_sym_set] = ACTIONS(3189), + [anon_sym_declare] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_module] = ACTIONS(3189), + [anon_sym_any] = ACTIONS(3189), + [anon_sym_number] = ACTIONS(3189), + [anon_sym_boolean] = ACTIONS(3189), + [anon_sym_string] = ACTIONS(3189), + [anon_sym_symbol] = ACTIONS(3189), + [anon_sym_object] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), [sym_html_comment] = ACTIONS(5), }, [1424] = { [sym_comment] = STATE(1424), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3189), + [anon_sym_export] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym_import] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_debugger] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_case] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LTtemplate_GT] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_function] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_void] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3189), + [sym_number] = ACTIONS(3189), + [sym_private_property_identifier] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [sym_super] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_null] = ACTIONS(3189), + [sym_undefined] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_get] = ACTIONS(3189), + [anon_sym_set] = ACTIONS(3189), + [anon_sym_declare] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_module] = ACTIONS(3189), + [anon_sym_any] = ACTIONS(3189), + [anon_sym_number] = ACTIONS(3189), + [anon_sym_boolean] = ACTIONS(3189), + [anon_sym_string] = ACTIONS(3189), + [anon_sym_symbol] = ACTIONS(3189), + [anon_sym_object] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), [sym_html_comment] = ACTIONS(5), }, [1425] = { [sym_comment] = STATE(1425), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [sym_identifier] = ACTIONS(3159), + [anon_sym_export] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_var] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_await] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_debugger] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LTtemplate_GT] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_SQUOTE] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_async] = ACTIONS(3159), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_void] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3159), + [sym_number] = ACTIONS(3159), + [sym_private_property_identifier] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), + [sym_super] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_null] = ACTIONS(3159), + [sym_undefined] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_readonly] = ACTIONS(3159), + [anon_sym_get] = ACTIONS(3159), + [anon_sym_set] = ACTIONS(3159), + [anon_sym_declare] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_override] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_any] = ACTIONS(3159), + [anon_sym_number] = ACTIONS(3159), + [anon_sym_boolean] = ACTIONS(3159), + [anon_sym_string] = ACTIONS(3159), + [anon_sym_symbol] = ACTIONS(3159), + [anon_sym_object] = ACTIONS(3159), + [anon_sym_abstract] = ACTIONS(3159), + [anon_sym_global] = ACTIONS(3159), + [anon_sym_interface] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), [sym_html_comment] = ACTIONS(5), }, [1426] = { [sym_comment] = STATE(1426), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1427] = { [sym_comment] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1428] = { [sym_comment] = STATE(1428), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_default] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_case] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LTtemplate_GT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_private_property_identifier] = ACTIONS(3162), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3257), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_typeof] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_var] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_debugger] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_throw] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_case] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LTtemplate_GT] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_void] = ACTIONS(3257), + [anon_sym_delete] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3257), + [sym_number] = ACTIONS(3257), + [sym_private_property_identifier] = ACTIONS(3257), + [sym_this] = ACTIONS(3257), + [sym_super] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_null] = ACTIONS(3257), + [sym_undefined] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_any] = ACTIONS(3257), + [anon_sym_number] = ACTIONS(3257), + [anon_sym_boolean] = ACTIONS(3257), + [anon_sym_string] = ACTIONS(3257), + [anon_sym_symbol] = ACTIONS(3257), + [anon_sym_object] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), [sym_html_comment] = ACTIONS(5), }, [1429] = { [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1430] = { [sym_comment] = STATE(1430), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1431] = { [sym_comment] = STATE(1431), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_default] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_case] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [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_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_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_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_abstract] = ACTIONS(3341), + [anon_sym_global] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, [1432] = { [sym_comment] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(3576), - [sym_identifier] = ACTIONS(3360), - [anon_sym_export] = ACTIONS(3360), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_namespace] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_typeof] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_else] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_await] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_debugger] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LTtemplate_GT] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_void] = ACTIONS(3360), - [anon_sym_delete] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3360), - [sym_number] = ACTIONS(3360), - [sym_private_property_identifier] = ACTIONS(3360), - [sym_this] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_true] = ACTIONS(3360), - [sym_false] = ACTIONS(3360), - [sym_null] = ACTIONS(3360), - [sym_undefined] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3360), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_protected] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_any] = ACTIONS(3360), - [anon_sym_number] = ACTIONS(3360), - [anon_sym_boolean] = ACTIONS(3360), - [anon_sym_string] = ACTIONS(3360), - [anon_sym_symbol] = ACTIONS(3360), - [anon_sym_object] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3263), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_default] = ACTIONS(3263), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_typeof] = ACTIONS(3263), + [anon_sym_import] = ACTIONS(3263), + [anon_sym_with] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3263), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_debugger] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_case] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_LTtemplate_GT] = ACTIONS(3263), + [anon_sym_DQUOTE] = ACTIONS(3263), + [anon_sym_SQUOTE] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_SLASH] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(3263), + [anon_sym_TILDE] = ACTIONS(3263), + [anon_sym_void] = ACTIONS(3263), + [anon_sym_delete] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(3263), + [anon_sym_DASH_DASH] = ACTIONS(3263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3263), + [sym_number] = ACTIONS(3263), + [sym_private_property_identifier] = ACTIONS(3263), + [sym_this] = ACTIONS(3263), + [sym_super] = ACTIONS(3263), + [sym_true] = ACTIONS(3263), + [sym_false] = ACTIONS(3263), + [sym_null] = ACTIONS(3263), + [sym_undefined] = ACTIONS(3263), + [anon_sym_AT] = ACTIONS(3263), + [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_abstract] = ACTIONS(3263), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), [sym_html_comment] = ACTIONS(5), }, [1433] = { [sym_comment] = STATE(1433), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3265), + [anon_sym_export] = ACTIONS(3265), + [anon_sym_default] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_namespace] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_typeof] = ACTIONS(3265), + [anon_sym_import] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_var] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_debugger] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_throw] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_case] = ACTIONS(3265), + [anon_sym_yield] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LTtemplate_GT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_class] = ACTIONS(3265), + [anon_sym_async] = ACTIONS(3265), + [anon_sym_function] = ACTIONS(3265), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_void] = ACTIONS(3265), + [anon_sym_delete] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_number] = ACTIONS(3265), + [sym_private_property_identifier] = ACTIONS(3265), + [sym_this] = ACTIONS(3265), + [sym_super] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_null] = ACTIONS(3265), + [sym_undefined] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(3265), + [anon_sym_readonly] = ACTIONS(3265), + [anon_sym_get] = ACTIONS(3265), + [anon_sym_set] = ACTIONS(3265), + [anon_sym_declare] = ACTIONS(3265), + [anon_sym_public] = ACTIONS(3265), + [anon_sym_private] = ACTIONS(3265), + [anon_sym_protected] = ACTIONS(3265), + [anon_sym_override] = ACTIONS(3265), + [anon_sym_module] = ACTIONS(3265), + [anon_sym_any] = ACTIONS(3265), + [anon_sym_number] = ACTIONS(3265), + [anon_sym_boolean] = ACTIONS(3265), + [anon_sym_string] = ACTIONS(3265), + [anon_sym_symbol] = ACTIONS(3265), + [anon_sym_object] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3265), + [anon_sym_global] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), [sym_html_comment] = ACTIONS(5), }, [1434] = { [sym_comment] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_default] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_case] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [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_abstract] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, [1435] = { [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(3578), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [ts_builtin_sym_end] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_typeof] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_var] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_else] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_debugger] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_throw] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LTtemplate_GT] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_void] = ACTIONS(3257), + [anon_sym_delete] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3257), + [sym_number] = ACTIONS(3257), + [sym_private_property_identifier] = ACTIONS(3257), + [sym_this] = ACTIONS(3257), + [sym_super] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_null] = ACTIONS(3257), + [sym_undefined] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_any] = ACTIONS(3257), + [anon_sym_number] = ACTIONS(3257), + [anon_sym_boolean] = ACTIONS(3257), + [anon_sym_string] = ACTIONS(3257), + [anon_sym_symbol] = ACTIONS(3257), + [anon_sym_object] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), [sym_html_comment] = ACTIONS(5), }, [1436] = { [sym_comment] = STATE(1436), - [ts_builtin_sym_end] = ACTIONS(3580), - [sym_identifier] = ACTIONS(3338), - [anon_sym_export] = ACTIONS(3338), - [anon_sym_type] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3338), - [anon_sym_import] = ACTIONS(3338), - [anon_sym_with] = ACTIONS(3338), - [anon_sym_var] = ACTIONS(3338), - [anon_sym_let] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_else] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_debugger] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_throw] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_yield] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LTtemplate_GT] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_class] = ACTIONS(3338), - [anon_sym_async] = ACTIONS(3338), - [anon_sym_function] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3338), - [anon_sym_delete] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_private_property_identifier] = ACTIONS(3338), - [sym_this] = ACTIONS(3338), - [sym_super] = ACTIONS(3338), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_undefined] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_readonly] = ACTIONS(3338), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3338), - [anon_sym_declare] = ACTIONS(3338), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3338), - [anon_sym_any] = ACTIONS(3338), - [anon_sym_number] = ACTIONS(3338), - [anon_sym_boolean] = ACTIONS(3338), - [anon_sym_string] = ACTIONS(3338), - [anon_sym_symbol] = ACTIONS(3338), - [anon_sym_object] = ACTIONS(3338), - [anon_sym_abstract] = ACTIONS(3338), - [anon_sym_interface] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [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_abstract] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1437] = { [sym_comment] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(3582), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_else] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_LTtemplate_GT] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3300), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_object] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [ts_builtin_sym_end] = ACTIONS(3583), + [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_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_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_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_abstract] = ACTIONS(3341), + [anon_sym_global] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, [1438] = { [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(3585), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, [1439] = { [sym_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(3584), - [sym_identifier] = ACTIONS(3298), - [anon_sym_export] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3298), - [anon_sym_import] = ACTIONS(3298), - [anon_sym_with] = ACTIONS(3298), - [anon_sym_var] = ACTIONS(3298), - [anon_sym_let] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_debugger] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_yield] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LTtemplate_GT] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_function] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_private_property_identifier] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - [sym_super] = ACTIONS(3298), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [sym_null] = ACTIONS(3298), - [sym_undefined] = ACTIONS(3298), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_readonly] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3298), - [anon_sym_set] = ACTIONS(3298), - [anon_sym_declare] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3298), - [anon_sym_module] = ACTIONS(3298), - [anon_sym_any] = ACTIONS(3298), - [anon_sym_number] = ACTIONS(3298), - [anon_sym_boolean] = ACTIONS(3298), - [anon_sym_string] = ACTIONS(3298), - [anon_sym_symbol] = ACTIONS(3298), - [anon_sym_object] = ACTIONS(3298), - [anon_sym_abstract] = ACTIONS(3298), - [anon_sym_interface] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [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_abstract] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1440] = { [sym_comment] = STATE(1440), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_default] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_case] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [ts_builtin_sym_end] = ACTIONS(3587), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, [1441] = { [sym_comment] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_debugger] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_private_property_identifier] = ACTIONS(2249), - [sym_this] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_null] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(2249), - [anon_sym_set] = ACTIONS(2249), - [anon_sym_declare] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_private] = ACTIONS(2249), - [anon_sym_protected] = ACTIONS(2249), - [anon_sym_override] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_any] = ACTIONS(2249), - [anon_sym_number] = ACTIONS(2249), - [anon_sym_boolean] = ACTIONS(2249), - [anon_sym_string] = ACTIONS(2249), - [anon_sym_symbol] = ACTIONS(2249), - [anon_sym_object] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), + [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_typeof] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_else] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_debugger] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LTtemplate_GT] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_function] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_void] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_number] = ACTIONS(3191), + [sym_private_property_identifier] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_undefined] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_get] = ACTIONS(3191), + [anon_sym_set] = ACTIONS(3191), + [anon_sym_declare] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_override] = ACTIONS(3191), + [anon_sym_module] = ACTIONS(3191), + [anon_sym_any] = ACTIONS(3191), + [anon_sym_number] = ACTIONS(3191), + [anon_sym_boolean] = ACTIONS(3191), + [anon_sym_string] = ACTIONS(3191), + [anon_sym_symbol] = ACTIONS(3191), + [anon_sym_object] = ACTIONS(3191), + [anon_sym_abstract] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1442] = { [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(3586), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_else] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [anon_sym_module] = ACTIONS(3274), - [anon_sym_any] = ACTIONS(3274), - [anon_sym_number] = ACTIONS(3274), - [anon_sym_boolean] = ACTIONS(3274), - [anon_sym_string] = ACTIONS(3274), - [anon_sym_symbol] = ACTIONS(3274), - [anon_sym_object] = ACTIONS(3274), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), + [ts_builtin_sym_end] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1443] = { [sym_comment] = STATE(1443), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_default] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_case] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_LTtemplate_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3196), - [sym_number] = ACTIONS(3196), - [sym_private_property_identifier] = ACTIONS(3196), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), + [ts_builtin_sym_end] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1444] = { [sym_comment] = STATE(1444), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3263), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_typeof] = ACTIONS(3263), + [anon_sym_import] = ACTIONS(3263), + [anon_sym_with] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(3263), + [anon_sym_else] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3263), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_debugger] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_LTtemplate_GT] = ACTIONS(3263), + [anon_sym_DQUOTE] = ACTIONS(3263), + [anon_sym_SQUOTE] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_SLASH] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(3263), + [anon_sym_TILDE] = ACTIONS(3263), + [anon_sym_void] = ACTIONS(3263), + [anon_sym_delete] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(3263), + [anon_sym_DASH_DASH] = ACTIONS(3263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3263), + [sym_number] = ACTIONS(3263), + [sym_private_property_identifier] = ACTIONS(3263), + [sym_this] = ACTIONS(3263), + [sym_super] = ACTIONS(3263), + [sym_true] = ACTIONS(3263), + [sym_false] = ACTIONS(3263), + [sym_null] = ACTIONS(3263), + [sym_undefined] = ACTIONS(3263), + [anon_sym_AT] = ACTIONS(3263), + [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_abstract] = ACTIONS(3263), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), [sym_html_comment] = ACTIONS(5), }, [1445] = { [sym_comment] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(3548), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [sym_this] = ACTIONS(3178), - [sym_super] = ACTIONS(3178), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_undefined] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = ACTIONS(3178), - [anon_sym_declare] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_any] = ACTIONS(3178), - [anon_sym_number] = ACTIONS(3178), - [anon_sym_boolean] = ACTIONS(3178), - [anon_sym_string] = ACTIONS(3178), - [anon_sym_symbol] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_debugger] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LTtemplate_GT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3157), + [sym_number] = ACTIONS(3157), + [sym_private_property_identifier] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_super] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_get] = ACTIONS(3157), + [anon_sym_set] = ACTIONS(3157), + [anon_sym_declare] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_any] = ACTIONS(3157), + [anon_sym_number] = ACTIONS(3157), + [anon_sym_boolean] = ACTIONS(3157), + [anon_sym_string] = ACTIONS(3157), + [anon_sym_symbol] = ACTIONS(3157), + [anon_sym_object] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_global] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), [sym_html_comment] = ACTIONS(5), }, [1446] = { [sym_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [ts_builtin_sym_end] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, [1447] = { [sym_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1448] = { [sym_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [ts_builtin_sym_end] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3135), + [anon_sym_export] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_namespace] = ACTIONS(3135), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_typeof] = ACTIONS(3135), + [anon_sym_import] = ACTIONS(3135), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_var] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_const] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_switch] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_await] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_break] = ACTIONS(3135), + [anon_sym_continue] = ACTIONS(3135), + [anon_sym_debugger] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_throw] = ACTIONS(3135), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LTtemplate_GT] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_SQUOTE] = ACTIONS(3135), + [anon_sym_class] = ACTIONS(3135), + [anon_sym_async] = ACTIONS(3135), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_using] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_void] = ACTIONS(3135), + [anon_sym_delete] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3135), + [sym_number] = ACTIONS(3135), + [sym_private_property_identifier] = ACTIONS(3135), + [sym_this] = ACTIONS(3135), + [sym_super] = ACTIONS(3135), + [sym_true] = ACTIONS(3135), + [sym_false] = ACTIONS(3135), + [sym_null] = ACTIONS(3135), + [sym_undefined] = ACTIONS(3135), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_static] = ACTIONS(3135), + [anon_sym_readonly] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3135), + [anon_sym_set] = ACTIONS(3135), + [anon_sym_declare] = ACTIONS(3135), + [anon_sym_public] = ACTIONS(3135), + [anon_sym_private] = ACTIONS(3135), + [anon_sym_protected] = ACTIONS(3135), + [anon_sym_override] = ACTIONS(3135), + [anon_sym_module] = ACTIONS(3135), + [anon_sym_any] = ACTIONS(3135), + [anon_sym_number] = ACTIONS(3135), + [anon_sym_boolean] = ACTIONS(3135), + [anon_sym_string] = ACTIONS(3135), + [anon_sym_symbol] = ACTIONS(3135), + [anon_sym_object] = ACTIONS(3135), + [anon_sym_abstract] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3135), + [anon_sym_interface] = ACTIONS(3135), + [anon_sym_enum] = ACTIONS(3135), [sym_html_comment] = ACTIONS(5), }, [1449] = { [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [ts_builtin_sym_end] = ACTIONS(3391), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, [1450] = { [sym_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, [1451] = { [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_LTtemplate_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3200), - [sym_number] = ACTIONS(3200), - [sym_private_property_identifier] = ACTIONS(3200), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_any] = ACTIONS(3221), + [anon_sym_number] = ACTIONS(3221), + [anon_sym_boolean] = ACTIONS(3221), + [anon_sym_string] = ACTIONS(3221), + [anon_sym_symbol] = ACTIONS(3221), + [anon_sym_object] = ACTIONS(3221), + [anon_sym_abstract] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, [1452] = { [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1453] = { [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [sym_this] = ACTIONS(3174), - [sym_super] = ACTIONS(3174), - [sym_true] = ACTIONS(3174), - [sym_false] = ACTIONS(3174), - [sym_null] = ACTIONS(3174), - [sym_undefined] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = ACTIONS(3174), - [anon_sym_declare] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_protected] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_module] = ACTIONS(3174), - [anon_sym_any] = ACTIONS(3174), - [anon_sym_number] = ACTIONS(3174), - [anon_sym_boolean] = ACTIONS(3174), - [anon_sym_string] = ACTIONS(3174), - [anon_sym_symbol] = ACTIONS(3174), - [anon_sym_object] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), + [ts_builtin_sym_end] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3211), + [anon_sym_export] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_debugger] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LTtemplate_GT] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_void] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3211), + [sym_number] = ACTIONS(3211), + [sym_private_property_identifier] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [sym_undefined] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_any] = ACTIONS(3211), + [anon_sym_number] = ACTIONS(3211), + [anon_sym_boolean] = ACTIONS(3211), + [anon_sym_string] = ACTIONS(3211), + [anon_sym_symbol] = ACTIONS(3211), + [anon_sym_object] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), [sym_html_comment] = ACTIONS(5), }, [1454] = { [sym_comment] = STATE(1454), - [ts_builtin_sym_end] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LTtemplate_GT] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3276), - [sym_number] = ACTIONS(3276), - [sym_private_property_identifier] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), + [ts_builtin_sym_end] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, [1455] = { [sym_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(3436), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1456] = { [sym_comment] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(3462), - [sym_identifier] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3270), - [anon_sym_import] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LTtemplate_GT] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_private_property_identifier] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - [sym_super] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_undefined] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_readonly] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_declare] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_any] = ACTIONS(3270), - [anon_sym_number] = ACTIONS(3270), - [anon_sym_boolean] = ACTIONS(3270), - [anon_sym_string] = ACTIONS(3270), - [anon_sym_symbol] = ACTIONS(3270), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), + [ts_builtin_sym_end] = ACTIONS(3575), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_global] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1457] = { [sym_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(3580), - [sym_identifier] = ACTIONS(3338), - [anon_sym_export] = ACTIONS(3338), - [anon_sym_type] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3338), - [anon_sym_import] = ACTIONS(3338), - [anon_sym_with] = ACTIONS(3338), - [anon_sym_var] = ACTIONS(3338), - [anon_sym_let] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_debugger] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_throw] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_yield] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LTtemplate_GT] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_class] = ACTIONS(3338), - [anon_sym_async] = ACTIONS(3338), - [anon_sym_function] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3338), - [anon_sym_delete] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_private_property_identifier] = ACTIONS(3338), - [sym_this] = ACTIONS(3338), - [sym_super] = ACTIONS(3338), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_undefined] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_readonly] = ACTIONS(3338), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3338), - [anon_sym_declare] = ACTIONS(3338), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3338), - [anon_sym_any] = ACTIONS(3338), - [anon_sym_number] = ACTIONS(3338), - [anon_sym_boolean] = ACTIONS(3338), - [anon_sym_string] = ACTIONS(3338), - [anon_sym_symbol] = ACTIONS(3338), - [anon_sym_object] = ACTIONS(3338), - [anon_sym_abstract] = ACTIONS(3338), - [anon_sym_interface] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), + [ts_builtin_sym_end] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_namespace] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_typeof] = ACTIONS(3261), + [anon_sym_import] = ACTIONS(3261), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_var] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_switch] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_await] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_debugger] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_throw] = ACTIONS(3261), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LTtemplate_GT] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_SQUOTE] = ACTIONS(3261), + [anon_sym_class] = ACTIONS(3261), + [anon_sym_async] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_using] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_void] = ACTIONS(3261), + [anon_sym_delete] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3261), + [sym_number] = ACTIONS(3261), + [sym_private_property_identifier] = ACTIONS(3261), + [sym_this] = ACTIONS(3261), + [sym_super] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_null] = ACTIONS(3261), + [sym_undefined] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_static] = ACTIONS(3261), + [anon_sym_readonly] = ACTIONS(3261), + [anon_sym_get] = ACTIONS(3261), + [anon_sym_set] = ACTIONS(3261), + [anon_sym_declare] = ACTIONS(3261), + [anon_sym_public] = ACTIONS(3261), + [anon_sym_private] = ACTIONS(3261), + [anon_sym_protected] = ACTIONS(3261), + [anon_sym_override] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3261), + [anon_sym_any] = ACTIONS(3261), + [anon_sym_number] = ACTIONS(3261), + [anon_sym_boolean] = ACTIONS(3261), + [anon_sym_string] = ACTIONS(3261), + [anon_sym_symbol] = ACTIONS(3261), + [anon_sym_object] = ACTIONS(3261), + [anon_sym_abstract] = ACTIONS(3261), + [anon_sym_global] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), [sym_html_comment] = ACTIONS(5), }, [1458] = { [sym_comment] = STATE(1458), - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3150), - [anon_sym_export] = ACTIONS(3150), - [anon_sym_type] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_debugger] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_LTtemplate_GT] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_void] = ACTIONS(3150), - [anon_sym_delete] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_number] = ACTIONS(3150), - [sym_private_property_identifier] = ACTIONS(3150), - [sym_this] = ACTIONS(3150), - [sym_super] = ACTIONS(3150), - [sym_true] = ACTIONS(3150), - [sym_false] = ACTIONS(3150), - [sym_null] = ACTIONS(3150), - [sym_undefined] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_declare] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_module] = ACTIONS(3150), - [anon_sym_any] = ACTIONS(3150), - [anon_sym_number] = ACTIONS(3150), - [anon_sym_boolean] = ACTIONS(3150), - [anon_sym_string] = ACTIONS(3150), - [anon_sym_symbol] = ACTIONS(3150), - [anon_sym_object] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3215), + [anon_sym_export] = ACTIONS(3215), + [anon_sym_type] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_typeof] = ACTIONS(3215), + [anon_sym_import] = ACTIONS(3215), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_debugger] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LTtemplate_GT] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_void] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3215), + [sym_number] = ACTIONS(3215), + [sym_private_property_identifier] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), + [sym_super] = ACTIONS(3215), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [sym_null] = ACTIONS(3215), + [sym_undefined] = ACTIONS(3215), + [anon_sym_AT] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_get] = ACTIONS(3215), + [anon_sym_set] = ACTIONS(3215), + [anon_sym_declare] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_module] = ACTIONS(3215), + [anon_sym_any] = ACTIONS(3215), + [anon_sym_number] = ACTIONS(3215), + [anon_sym_boolean] = ACTIONS(3215), + [anon_sym_string] = ACTIONS(3215), + [anon_sym_symbol] = ACTIONS(3215), + [anon_sym_object] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), [sym_html_comment] = ACTIONS(5), }, [1459] = { [sym_comment] = STATE(1459), - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3126), - [anon_sym_export] = ACTIONS(3126), - [anon_sym_type] = ACTIONS(3126), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3126), - [anon_sym_import] = ACTIONS(3126), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [anon_sym_let] = ACTIONS(3126), - [anon_sym_const] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_debugger] = ACTIONS(3126), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LTtemplate_GT] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_class] = ACTIONS(3126), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_private_property_identifier] = ACTIONS(3126), - [sym_this] = ACTIONS(3126), - [sym_super] = ACTIONS(3126), - [sym_true] = ACTIONS(3126), - [sym_false] = ACTIONS(3126), - [sym_null] = ACTIONS(3126), - [sym_undefined] = ACTIONS(3126), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_get] = ACTIONS(3126), - [anon_sym_set] = ACTIONS(3126), - [anon_sym_declare] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_module] = ACTIONS(3126), - [anon_sym_any] = ACTIONS(3126), - [anon_sym_number] = ACTIONS(3126), - [anon_sym_boolean] = ACTIONS(3126), - [anon_sym_string] = ACTIONS(3126), - [anon_sym_symbol] = ACTIONS(3126), - [anon_sym_object] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_interface] = ACTIONS(3126), - [anon_sym_enum] = ACTIONS(3126), + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [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_abstract] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, [1460] = { [sym_comment] = STATE(1460), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), + [ts_builtin_sym_end] = ACTIONS(3417), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_namespace] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_typeof] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_var] = ACTIONS(3325), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_debugger] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_throw] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LTtemplate_GT] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_function] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3325), + [sym_number] = ACTIONS(3325), + [sym_private_property_identifier] = ACTIONS(3325), + [sym_this] = ACTIONS(3325), + [sym_super] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_undefined] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3325), + [anon_sym_set] = ACTIONS(3325), + [anon_sym_declare] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_any] = ACTIONS(3325), + [anon_sym_number] = ACTIONS(3325), + [anon_sym_boolean] = ACTIONS(3325), + [anon_sym_string] = ACTIONS(3325), + [anon_sym_symbol] = ACTIONS(3325), + [anon_sym_object] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), [sym_html_comment] = ACTIONS(5), }, [1461] = { [sym_comment] = STATE(1461), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, [1462] = { [sym_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), + [ts_builtin_sym_end] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, [1463] = { [sym_comment] = STATE(1463), - [ts_builtin_sym_end] = ACTIONS(3424), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_with] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_debugger] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LTtemplate_GT] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_private_property_identifier] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_undefined] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_readonly] = ACTIONS(2198), + [anon_sym_get] = ACTIONS(2198), + [anon_sym_set] = ACTIONS(2198), + [anon_sym_declare] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_module] = ACTIONS(2198), + [anon_sym_any] = ACTIONS(2198), + [anon_sym_number] = ACTIONS(2198), + [anon_sym_boolean] = ACTIONS(2198), + [anon_sym_string] = ACTIONS(2198), + [anon_sym_symbol] = ACTIONS(2198), + [anon_sym_object] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_global] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), [sym_html_comment] = ACTIONS(5), }, [1464] = { [sym_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [ts_builtin_sym_end] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), [sym_html_comment] = ACTIONS(5), }, [1465] = { [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(3464), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_LTtemplate_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3256), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_object] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [ts_builtin_sym_end] = ACTIONS(3559), + [sym_identifier] = ACTIONS(3265), + [anon_sym_export] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_namespace] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_typeof] = ACTIONS(3265), + [anon_sym_import] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_var] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_debugger] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_throw] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_yield] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LTtemplate_GT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_class] = ACTIONS(3265), + [anon_sym_async] = ACTIONS(3265), + [anon_sym_function] = ACTIONS(3265), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_void] = ACTIONS(3265), + [anon_sym_delete] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_number] = ACTIONS(3265), + [sym_private_property_identifier] = ACTIONS(3265), + [sym_this] = ACTIONS(3265), + [sym_super] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_null] = ACTIONS(3265), + [sym_undefined] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(3265), + [anon_sym_readonly] = ACTIONS(3265), + [anon_sym_get] = ACTIONS(3265), + [anon_sym_set] = ACTIONS(3265), + [anon_sym_declare] = ACTIONS(3265), + [anon_sym_public] = ACTIONS(3265), + [anon_sym_private] = ACTIONS(3265), + [anon_sym_protected] = ACTIONS(3265), + [anon_sym_override] = ACTIONS(3265), + [anon_sym_module] = ACTIONS(3265), + [anon_sym_any] = ACTIONS(3265), + [anon_sym_number] = ACTIONS(3265), + [anon_sym_boolean] = ACTIONS(3265), + [anon_sym_string] = ACTIONS(3265), + [anon_sym_symbol] = ACTIONS(3265), + [anon_sym_object] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3265), + [anon_sym_global] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), [sym_html_comment] = ACTIONS(5), }, [1466] = { [sym_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(3528), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1467] = { [sym_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(3568), - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_with] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_debugger] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LTtemplate_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_private_property_identifier] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3179), + [anon_sym_export] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_typeof] = ACTIONS(3179), + [anon_sym_import] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3179), + [anon_sym_var] = ACTIONS(3179), + [anon_sym_let] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_debugger] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_yield] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LTtemplate_GT] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(3179), + [anon_sym_SQUOTE] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(3179), + [anon_sym_function] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_void] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3179), + [sym_number] = ACTIONS(3179), + [sym_private_property_identifier] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3179), + [anon_sym_get] = ACTIONS(3179), + [anon_sym_set] = ACTIONS(3179), + [anon_sym_declare] = ACTIONS(3179), + [anon_sym_public] = ACTIONS(3179), + [anon_sym_private] = ACTIONS(3179), + [anon_sym_protected] = ACTIONS(3179), + [anon_sym_override] = ACTIONS(3179), + [anon_sym_module] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3179), + [anon_sym_number] = ACTIONS(3179), + [anon_sym_boolean] = ACTIONS(3179), + [anon_sym_string] = ACTIONS(3179), + [anon_sym_symbol] = ACTIONS(3179), + [anon_sym_object] = ACTIONS(3179), + [anon_sym_abstract] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), [sym_html_comment] = ACTIONS(5), }, [1468] = { [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(3586), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [anon_sym_module] = ACTIONS(3274), - [anon_sym_any] = ACTIONS(3274), - [anon_sym_number] = ACTIONS(3274), - [anon_sym_boolean] = ACTIONS(3274), - [anon_sym_string] = ACTIONS(3274), - [anon_sym_symbol] = ACTIONS(3274), - [anon_sym_object] = ACTIONS(3274), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1469] = { [sym_comment] = STATE(1469), - [ts_builtin_sym_end] = ACTIONS(3466), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1470] = { [sym_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(3420), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1471] = { [sym_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(3496), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), + [ts_builtin_sym_end] = ACTIONS(3527), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, [1472] = { [sym_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(3560), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [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_abstract] = ACTIONS(3255), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1473] = { [sym_comment] = STATE(1473), - [ts_builtin_sym_end] = ACTIONS(3396), - [sym_identifier] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_type] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_typeof] = ACTIONS(3362), - [anon_sym_import] = ACTIONS(3362), - [anon_sym_with] = ACTIONS(3362), - [anon_sym_var] = ACTIONS(3362), - [anon_sym_let] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_await] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_debugger] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_LTtemplate_GT] = ACTIONS(3362), - [anon_sym_DQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_async] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_void] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3362), - [sym_number] = ACTIONS(3362), - [sym_private_property_identifier] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [sym_super] = ACTIONS(3362), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [sym_null] = ACTIONS(3362), - [sym_undefined] = ACTIONS(3362), - [anon_sym_AT] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_readonly] = ACTIONS(3362), - [anon_sym_get] = ACTIONS(3362), - [anon_sym_set] = ACTIONS(3362), - [anon_sym_declare] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3362), - [anon_sym_module] = ACTIONS(3362), - [anon_sym_any] = ACTIONS(3362), - [anon_sym_number] = ACTIONS(3362), - [anon_sym_boolean] = ACTIONS(3362), - [anon_sym_string] = ACTIONS(3362), - [anon_sym_symbol] = ACTIONS(3362), - [anon_sym_object] = ACTIONS(3362), - [anon_sym_abstract] = ACTIONS(3362), - [anon_sym_interface] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), + [ts_builtin_sym_end] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3259), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_debugger] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LTtemplate_GT] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_void] = ACTIONS(3259), + [anon_sym_delete] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3259), + [sym_number] = ACTIONS(3259), + [sym_private_property_identifier] = ACTIONS(3259), + [sym_this] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_undefined] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [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_abstract] = ACTIONS(3259), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), [sym_html_comment] = ACTIONS(5), }, [1474] = { [sym_comment] = STATE(1474), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3253), + [anon_sym_export] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_namespace] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_typeof] = ACTIONS(3253), + [anon_sym_import] = ACTIONS(3253), + [anon_sym_with] = ACTIONS(3253), + [anon_sym_var] = ACTIONS(3253), + [anon_sym_let] = ACTIONS(3253), + [anon_sym_const] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_switch] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_await] = ACTIONS(3253), + [anon_sym_while] = ACTIONS(3253), + [anon_sym_do] = ACTIONS(3253), + [anon_sym_try] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_debugger] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_throw] = ACTIONS(3253), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_yield] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LTtemplate_GT] = ACTIONS(3253), + [anon_sym_DQUOTE] = ACTIONS(3253), + [anon_sym_SQUOTE] = ACTIONS(3253), + [anon_sym_class] = ACTIONS(3253), + [anon_sym_async] = ACTIONS(3253), + [anon_sym_function] = ACTIONS(3253), + [anon_sym_new] = ACTIONS(3253), + [anon_sym_using] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_void] = ACTIONS(3253), + [anon_sym_delete] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3253), + [sym_number] = ACTIONS(3253), + [sym_private_property_identifier] = ACTIONS(3253), + [sym_this] = ACTIONS(3253), + [sym_super] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_null] = ACTIONS(3253), + [sym_undefined] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3253), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_get] = ACTIONS(3253), + [anon_sym_set] = ACTIONS(3253), + [anon_sym_declare] = ACTIONS(3253), + [anon_sym_public] = ACTIONS(3253), + [anon_sym_private] = ACTIONS(3253), + [anon_sym_protected] = ACTIONS(3253), + [anon_sym_override] = ACTIONS(3253), + [anon_sym_module] = ACTIONS(3253), + [anon_sym_any] = ACTIONS(3253), + [anon_sym_number] = ACTIONS(3253), + [anon_sym_boolean] = ACTIONS(3253), + [anon_sym_string] = ACTIONS(3253), + [anon_sym_symbol] = ACTIONS(3253), + [anon_sym_object] = ACTIONS(3253), + [anon_sym_abstract] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3253), [sym_html_comment] = ACTIONS(5), }, [1475] = { [sym_comment] = STATE(1475), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3523), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, [1476] = { [sym_comment] = STATE(1476), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [ts_builtin_sym_end] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, [1477] = { [sym_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3443), + [anon_sym_export] = ACTIONS(3443), + [anon_sym_type] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_typeof] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_debugger] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LTtemplate_GT] = ACTIONS(3443), + [anon_sym_DQUOTE] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_function] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_SLASH] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_void] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_PLUS_PLUS] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3443), + [sym_number] = ACTIONS(3443), + [sym_private_property_identifier] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), + [sym_super] = ACTIONS(3443), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_null] = ACTIONS(3443), + [sym_undefined] = ACTIONS(3443), + [anon_sym_AT] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_get] = ACTIONS(3443), + [anon_sym_set] = ACTIONS(3443), + [anon_sym_declare] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_module] = ACTIONS(3443), + [anon_sym_any] = ACTIONS(3443), + [anon_sym_number] = ACTIONS(3443), + [anon_sym_boolean] = ACTIONS(3443), + [anon_sym_string] = ACTIONS(3443), + [anon_sym_symbol] = ACTIONS(3443), + [anon_sym_object] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_global] = ACTIONS(3443), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), [sym_html_comment] = ACTIONS(5), }, [1478] = { [sym_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1479] = { [sym_comment] = STATE(1479), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, [1480] = { [sym_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [ts_builtin_sym_end] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, [1481] = { [sym_comment] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(3404), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3314), - [anon_sym_import] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3314), - [anon_sym_var] = ACTIONS(3314), - [anon_sym_let] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_debugger] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LTtemplate_GT] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_async] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_private_property_identifier] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - [sym_super] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_null] = ACTIONS(3314), - [sym_undefined] = ACTIONS(3314), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3314), - [anon_sym_set] = ACTIONS(3314), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_override] = ACTIONS(3314), - [anon_sym_module] = ACTIONS(3314), - [anon_sym_any] = ACTIONS(3314), - [anon_sym_number] = ACTIONS(3314), - [anon_sym_boolean] = ACTIONS(3314), - [anon_sym_string] = ACTIONS(3314), - [anon_sym_symbol] = ACTIONS(3314), - [anon_sym_object] = ACTIONS(3314), - [anon_sym_abstract] = ACTIONS(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_global] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1482] = { [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1483] = { [sym_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(3582), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_LTtemplate_GT] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3300), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_object] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1484] = { [sym_comment] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(3448), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1485] = { [sym_comment] = STATE(1485), - [ts_builtin_sym_end] = ACTIONS(3516), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [ts_builtin_sym_end] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_global] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, [1486] = { [sym_comment] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3318), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3318), - [anon_sym_import] = ACTIONS(3318), - [anon_sym_with] = ACTIONS(3318), - [anon_sym_var] = ACTIONS(3318), - [anon_sym_let] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_debugger] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LTtemplate_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_async] = ACTIONS(3318), - [anon_sym_function] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3318), - [sym_super] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_null] = ACTIONS(3318), - [sym_undefined] = ACTIONS(3318), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3318), - [anon_sym_readonly] = ACTIONS(3318), - [anon_sym_get] = ACTIONS(3318), - [anon_sym_set] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3318), - [anon_sym_module] = ACTIONS(3318), - [anon_sym_any] = ACTIONS(3318), - [anon_sym_number] = ACTIONS(3318), - [anon_sym_boolean] = ACTIONS(3318), - [anon_sym_string] = ACTIONS(3318), - [anon_sym_symbol] = ACTIONS(3318), - [anon_sym_object] = ACTIONS(3318), - [anon_sym_abstract] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), + [ts_builtin_sym_end] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, [1487] = { [sym_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(3392), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1488] = { [sym_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(3408), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LTtemplate_GT] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_using] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3312), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3312), - [anon_sym_DASH_DASH] = ACTIONS(3312), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_number] = ACTIONS(3312), - [sym_private_property_identifier] = ACTIONS(3312), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3312), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), + [ts_builtin_sym_end] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_global] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, [1489] = { [sym_comment] = STATE(1489), - [ts_builtin_sym_end] = ACTIONS(3384), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1490] = { [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), - [anon_sym_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [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_abstract] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, [1491] = { [sym_comment] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(3516), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [ts_builtin_sym_end] = ACTIONS(3565), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, [1492] = { [sym_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3291), + [anon_sym_export] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_debugger] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LTtemplate_GT] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_void] = ACTIONS(3291), + [anon_sym_delete] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3291), + [sym_number] = ACTIONS(3291), + [sym_private_property_identifier] = ACTIONS(3291), + [sym_this] = ACTIONS(3291), + [sym_super] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_null] = ACTIONS(3291), + [sym_undefined] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_get] = ACTIONS(3291), + [anon_sym_set] = ACTIONS(3291), + [anon_sym_declare] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_module] = ACTIONS(3291), + [anon_sym_any] = ACTIONS(3291), + [anon_sym_number] = ACTIONS(3291), + [anon_sym_boolean] = ACTIONS(3291), + [anon_sym_string] = ACTIONS(3291), + [anon_sym_symbol] = ACTIONS(3291), + [anon_sym_object] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), [sym_html_comment] = ACTIONS(5), }, [1493] = { [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(3372), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, [1494] = { [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_global] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, [1495] = { [sym_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, [1496] = { [sym_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_debugger] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LTtemplate_GT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3137), + [sym_number] = ACTIONS(3137), + [sym_private_property_identifier] = ACTIONS(3137), + [sym_this] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_undefined] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_declare] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_any] = ACTIONS(3137), + [anon_sym_number] = ACTIONS(3137), + [anon_sym_boolean] = ACTIONS(3137), + [anon_sym_string] = ACTIONS(3137), + [anon_sym_symbol] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), [sym_html_comment] = ACTIONS(5), }, [1497] = { [sym_comment] = STATE(1497), - [ts_builtin_sym_end] = ACTIONS(3428), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_LTtemplate_GT] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_override] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), + [ts_builtin_sym_end] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_debugger] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LTtemplate_GT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3137), + [sym_number] = ACTIONS(3137), + [sym_private_property_identifier] = ACTIONS(3137), + [sym_this] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_undefined] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_declare] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_any] = ACTIONS(3137), + [anon_sym_number] = ACTIONS(3137), + [anon_sym_boolean] = ACTIONS(3137), + [anon_sym_string] = ACTIONS(3137), + [anon_sym_symbol] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), [sym_html_comment] = ACTIONS(5), }, [1498] = { [sym_comment] = STATE(1498), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3239), + [anon_sym_export] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_debugger] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_LTtemplate_GT] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3239), + [anon_sym_delete] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3239), + [sym_super] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [sym_undefined] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_get] = ACTIONS(3239), + [anon_sym_set] = ACTIONS(3239), + [anon_sym_declare] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_module] = ACTIONS(3239), + [anon_sym_any] = ACTIONS(3239), + [anon_sym_number] = ACTIONS(3239), + [anon_sym_boolean] = ACTIONS(3239), + [anon_sym_string] = ACTIONS(3239), + [anon_sym_symbol] = ACTIONS(3239), + [anon_sym_object] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1499] = { [sym_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3308), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_typeof] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(3308), - [anon_sym_with] = ACTIONS(3308), - [anon_sym_var] = ACTIONS(3308), - [anon_sym_let] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_await] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_yield] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_LTtemplate_GT] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_function] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_LT] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_void] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3308), - [sym_number] = ACTIONS(3308), - [sym_private_property_identifier] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), - [sym_super] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_null] = ACTIONS(3308), - [sym_undefined] = ACTIONS(3308), - [anon_sym_AT] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_readonly] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_declare] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3308), - [anon_sym_module] = ACTIONS(3308), - [anon_sym_any] = ACTIONS(3308), - [anon_sym_number] = ACTIONS(3308), - [anon_sym_boolean] = ACTIONS(3308), - [anon_sym_string] = ACTIONS(3308), - [anon_sym_symbol] = ACTIONS(3308), - [anon_sym_object] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3143), + [anon_sym_export] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_typeof] = ACTIONS(3143), + [anon_sym_import] = ACTIONS(3143), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_var] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_await] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_debugger] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LTtemplate_GT] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_SQUOTE] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_async] = ACTIONS(3143), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_void] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3143), + [sym_number] = ACTIONS(3143), + [sym_private_property_identifier] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [sym_super] = ACTIONS(3143), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [sym_null] = ACTIONS(3143), + [sym_undefined] = ACTIONS(3143), + [anon_sym_AT] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_readonly] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3143), + [anon_sym_set] = ACTIONS(3143), + [anon_sym_declare] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_private] = ACTIONS(3143), + [anon_sym_protected] = ACTIONS(3143), + [anon_sym_override] = ACTIONS(3143), + [anon_sym_module] = ACTIONS(3143), + [anon_sym_any] = ACTIONS(3143), + [anon_sym_number] = ACTIONS(3143), + [anon_sym_boolean] = ACTIONS(3143), + [anon_sym_string] = ACTIONS(3143), + [anon_sym_symbol] = ACTIONS(3143), + [anon_sym_object] = ACTIONS(3143), + [anon_sym_abstract] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3143), + [anon_sym_interface] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), [sym_html_comment] = ACTIONS(5), }, [1500] = { [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_LTtemplate_GT] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3260), - [sym_number] = ACTIONS(3260), - [sym_private_property_identifier] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [ts_builtin_sym_end] = ACTIONS(2298), + [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_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_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_abstract] = ACTIONS(2296), + [anon_sym_global] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), [sym_html_comment] = ACTIONS(5), }, [1501] = { [sym_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3369), + [anon_sym_export] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_namespace] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_typeof] = ACTIONS(3369), + [anon_sym_import] = ACTIONS(3369), + [anon_sym_with] = ACTIONS(3369), + [anon_sym_var] = ACTIONS(3369), + [anon_sym_let] = ACTIONS(3369), + [anon_sym_const] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3369), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_do] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3369), + [anon_sym_break] = ACTIONS(3369), + [anon_sym_continue] = ACTIONS(3369), + [anon_sym_debugger] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3369), + [anon_sym_throw] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_yield] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LTtemplate_GT] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [anon_sym_SQUOTE] = ACTIONS(3369), + [anon_sym_class] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_function] = ACTIONS(3369), + [anon_sym_new] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_void] = ACTIONS(3369), + [anon_sym_delete] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3369), + [sym_number] = ACTIONS(3369), + [sym_private_property_identifier] = ACTIONS(3369), + [sym_this] = ACTIONS(3369), + [sym_super] = ACTIONS(3369), + [sym_true] = ACTIONS(3369), + [sym_false] = ACTIONS(3369), + [sym_null] = ACTIONS(3369), + [sym_undefined] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3369), + [anon_sym_get] = ACTIONS(3369), + [anon_sym_set] = ACTIONS(3369), + [anon_sym_declare] = ACTIONS(3369), + [anon_sym_public] = ACTIONS(3369), + [anon_sym_private] = ACTIONS(3369), + [anon_sym_protected] = ACTIONS(3369), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3369), + [anon_sym_any] = ACTIONS(3369), + [anon_sym_number] = ACTIONS(3369), + [anon_sym_boolean] = ACTIONS(3369), + [anon_sym_string] = ACTIONS(3369), + [anon_sym_symbol] = ACTIONS(3369), + [anon_sym_object] = ACTIONS(3369), + [anon_sym_abstract] = ACTIONS(3369), + [anon_sym_global] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3369), + [anon_sym_enum] = ACTIONS(3369), [sym_html_comment] = ACTIONS(5), }, [1502] = { [sym_comment] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3370), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3370), - [anon_sym_import] = ACTIONS(3370), - [anon_sym_with] = ACTIONS(3370), - [anon_sym_var] = ACTIONS(3370), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_debugger] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_yield] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_LTtemplate_GT] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_function] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_SLASH] = ACTIONS(3370), - [anon_sym_LT] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_private_property_identifier] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - [sym_super] = ACTIONS(3370), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [sym_undefined] = ACTIONS(3370), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_readonly] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_override] = ACTIONS(3370), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3370), - [anon_sym_interface] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3183), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_debugger] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LTtemplate_GT] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_void] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3183), + [sym_number] = ACTIONS(3183), + [sym_private_property_identifier] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_undefined] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_abstract] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, [1503] = { [sym_comment] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(3584), - [sym_identifier] = ACTIONS(3298), - [anon_sym_export] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3298), - [anon_sym_import] = ACTIONS(3298), - [anon_sym_with] = ACTIONS(3298), - [anon_sym_var] = ACTIONS(3298), - [anon_sym_let] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_debugger] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_yield] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LTtemplate_GT] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_function] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_private_property_identifier] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - [sym_super] = ACTIONS(3298), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [sym_null] = ACTIONS(3298), - [sym_undefined] = ACTIONS(3298), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_readonly] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3298), - [anon_sym_set] = ACTIONS(3298), - [anon_sym_declare] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3298), - [anon_sym_module] = ACTIONS(3298), - [anon_sym_any] = ACTIONS(3298), - [anon_sym_number] = ACTIONS(3298), - [anon_sym_boolean] = ACTIONS(3298), - [anon_sym_string] = ACTIONS(3298), - [anon_sym_symbol] = ACTIONS(3298), - [anon_sym_object] = ACTIONS(3298), - [anon_sym_abstract] = ACTIONS(3298), - [anon_sym_interface] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3187), + [anon_sym_export] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_typeof] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_debugger] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LTtemplate_GT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_function] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_void] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3187), + [sym_number] = ACTIONS(3187), + [sym_private_property_identifier] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_undefined] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_get] = ACTIONS(3187), + [anon_sym_set] = ACTIONS(3187), + [anon_sym_declare] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_override] = ACTIONS(3187), + [anon_sym_module] = ACTIONS(3187), + [anon_sym_any] = ACTIONS(3187), + [anon_sym_number] = ACTIONS(3187), + [anon_sym_boolean] = ACTIONS(3187), + [anon_sym_string] = ACTIONS(3187), + [anon_sym_symbol] = ACTIONS(3187), + [anon_sym_object] = ACTIONS(3187), + [anon_sym_abstract] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), [sym_html_comment] = ACTIONS(5), }, [1504] = { [sym_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(3564), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(3555), + [sym_identifier] = ACTIONS(3175), + [anon_sym_export] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_typeof] = ACTIONS(3175), + [anon_sym_import] = ACTIONS(3175), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_var] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_debugger] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LTtemplate_GT] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_void] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3175), + [sym_number] = ACTIONS(3175), + [sym_private_property_identifier] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3175), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_declare] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_any] = ACTIONS(3175), + [anon_sym_number] = ACTIONS(3175), + [anon_sym_boolean] = ACTIONS(3175), + [anon_sym_string] = ACTIONS(3175), + [anon_sym_symbol] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_global] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), [sym_html_comment] = ACTIONS(5), }, [1505] = { [sym_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(3572), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_LTtemplate_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3196), - [sym_number] = ACTIONS(3196), - [sym_private_property_identifier] = ACTIONS(3196), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3173), + [anon_sym_export] = ACTIONS(3173), + [anon_sym_type] = ACTIONS(3173), + [anon_sym_namespace] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_typeof] = ACTIONS(3173), + [anon_sym_import] = ACTIONS(3173), + [anon_sym_with] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [anon_sym_let] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_await] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_debugger] = ACTIONS(3173), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_LTtemplate_GT] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3173), + [anon_sym_async] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_void] = ACTIONS(3173), + [anon_sym_delete] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3173), + [sym_private_property_identifier] = ACTIONS(3173), + [sym_this] = ACTIONS(3173), + [sym_super] = ACTIONS(3173), + [sym_true] = ACTIONS(3173), + [sym_false] = ACTIONS(3173), + [sym_null] = ACTIONS(3173), + [sym_undefined] = ACTIONS(3173), + [anon_sym_AT] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_readonly] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3173), + [anon_sym_set] = ACTIONS(3173), + [anon_sym_declare] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_protected] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_module] = ACTIONS(3173), + [anon_sym_any] = ACTIONS(3173), + [anon_sym_number] = ACTIONS(3173), + [anon_sym_boolean] = ACTIONS(3173), + [anon_sym_string] = ACTIONS(3173), + [anon_sym_symbol] = ACTIONS(3173), + [anon_sym_object] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_global] = ACTIONS(3173), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), [sym_html_comment] = ACTIONS(5), }, [1506] = { [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(3574), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_typeof] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_var] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_await] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_debugger] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LTtemplate_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3171), + [sym_number] = ACTIONS(3171), + [sym_private_property_identifier] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_undefined] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_readonly] = ACTIONS(3171), + [anon_sym_get] = ACTIONS(3171), + [anon_sym_set] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_any] = ACTIONS(3171), + [anon_sym_number] = ACTIONS(3171), + [anon_sym_boolean] = ACTIONS(3171), + [anon_sym_string] = ACTIONS(3171), + [anon_sym_symbol] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_global] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), [sym_html_comment] = ACTIONS(5), }, [1507] = { [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3169), + [anon_sym_export] = ACTIONS(3169), + [anon_sym_type] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_typeof] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_var] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_await] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_debugger] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LTtemplate_GT] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_async] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_SLASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_void] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3169), + [sym_private_property_identifier] = ACTIONS(3169), + [sym_this] = ACTIONS(3169), + [sym_super] = ACTIONS(3169), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [sym_null] = ACTIONS(3169), + [sym_undefined] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_readonly] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3169), + [anon_sym_set] = ACTIONS(3169), + [anon_sym_declare] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_override] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), + [anon_sym_any] = ACTIONS(3169), + [anon_sym_number] = ACTIONS(3169), + [anon_sym_boolean] = ACTIONS(3169), + [anon_sym_string] = ACTIONS(3169), + [anon_sym_symbol] = ACTIONS(3169), + [anon_sym_object] = ACTIONS(3169), + [anon_sym_abstract] = ACTIONS(3169), + [anon_sym_global] = ACTIONS(3169), + [anon_sym_interface] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), [sym_html_comment] = ACTIONS(5), }, [1508] = { [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3282), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3282), - [anon_sym_import] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3282), - [anon_sym_var] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_debugger] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LTtemplate_GT] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_async] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_private_property_identifier] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - [sym_super] = ACTIONS(3282), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_undefined] = ACTIONS(3282), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3282), - [anon_sym_get] = ACTIONS(3282), - [anon_sym_set] = ACTIONS(3282), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_override] = ACTIONS(3282), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3282), - [anon_sym_interface] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), + [ts_builtin_sym_end] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_global] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, [1509] = { [sym_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(3576), - [sym_identifier] = ACTIONS(3360), - [anon_sym_export] = ACTIONS(3360), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_namespace] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_typeof] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_await] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_debugger] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LTtemplate_GT] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_void] = ACTIONS(3360), - [anon_sym_delete] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3360), - [sym_number] = ACTIONS(3360), - [sym_private_property_identifier] = ACTIONS(3360), - [sym_this] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_true] = ACTIONS(3360), - [sym_false] = ACTIONS(3360), - [sym_null] = ACTIONS(3360), - [sym_undefined] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3360), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_protected] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_any] = ACTIONS(3360), - [anon_sym_number] = ACTIONS(3360), - [anon_sym_boolean] = ACTIONS(3360), - [anon_sym_string] = ACTIONS(3360), - [anon_sym_symbol] = ACTIONS(3360), - [anon_sym_object] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LTtemplate_GT] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3193), + [sym_number] = ACTIONS(3193), + [sym_private_property_identifier] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_module] = ACTIONS(3193), + [anon_sym_any] = ACTIONS(3193), + [anon_sym_number] = ACTIONS(3193), + [anon_sym_boolean] = ACTIONS(3193), + [anon_sym_string] = ACTIONS(3193), + [anon_sym_symbol] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, [1510] = { [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_global] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), [sym_html_comment] = ACTIONS(5), }, [1511] = { [sym_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(3542), - [sym_identifier] = ACTIONS(3306), - [anon_sym_export] = ACTIONS(3306), - [anon_sym_type] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3306), - [anon_sym_import] = ACTIONS(3306), - [anon_sym_with] = ACTIONS(3306), - [anon_sym_var] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_debugger] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_yield] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LTtemplate_GT] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_async] = ACTIONS(3306), - [anon_sym_function] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_private_property_identifier] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), - [sym_super] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_undefined] = ACTIONS(3306), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_readonly] = ACTIONS(3306), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_override] = ACTIONS(3306), - [anon_sym_module] = ACTIONS(3306), - [anon_sym_any] = ACTIONS(3306), - [anon_sym_number] = ACTIONS(3306), - [anon_sym_boolean] = ACTIONS(3306), - [anon_sym_string] = ACTIONS(3306), - [anon_sym_symbol] = ACTIONS(3306), - [anon_sym_object] = ACTIONS(3306), - [anon_sym_abstract] = ACTIONS(3306), - [anon_sym_interface] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), + [ts_builtin_sym_end] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_typeof] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_var] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_debugger] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_throw] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LTtemplate_GT] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_void] = ACTIONS(3257), + [anon_sym_delete] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3257), + [sym_number] = ACTIONS(3257), + [sym_private_property_identifier] = ACTIONS(3257), + [sym_this] = ACTIONS(3257), + [sym_super] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_null] = ACTIONS(3257), + [sym_undefined] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_any] = ACTIONS(3257), + [anon_sym_number] = ACTIONS(3257), + [anon_sym_boolean] = ACTIONS(3257), + [anon_sym_string] = ACTIONS(3257), + [anon_sym_symbol] = ACTIONS(3257), + [anon_sym_object] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), [sym_html_comment] = ACTIONS(5), }, [1512] = { [sym_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(2229), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_typeof] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_debugger] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LTtemplate_GT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_using] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2227), - [sym_number] = ACTIONS(2227), - [sym_private_property_identifier] = ACTIONS(2227), - [sym_this] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_undefined] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_override] = ACTIONS(2227), - [anon_sym_module] = ACTIONS(2227), - [anon_sym_any] = ACTIONS(2227), - [anon_sym_number] = ACTIONS(2227), - [anon_sym_boolean] = ACTIONS(2227), - [anon_sym_string] = ACTIONS(2227), - [anon_sym_symbol] = ACTIONS(2227), - [anon_sym_object] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), + [ts_builtin_sym_end] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3195), + [anon_sym_export] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_debugger] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LTtemplate_GT] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_null] = ACTIONS(3195), + [sym_undefined] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3195), + [anon_sym_set] = ACTIONS(3195), + [anon_sym_declare] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_module] = ACTIONS(3195), + [anon_sym_any] = ACTIONS(3195), + [anon_sym_number] = ACTIONS(3195), + [anon_sym_boolean] = ACTIONS(3195), + [anon_sym_string] = ACTIONS(3195), + [anon_sym_symbol] = ACTIONS(3195), + [anon_sym_object] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_global] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1513] = { [sym_comment] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), + [ts_builtin_sym_end] = ACTIONS(3583), + [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_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_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_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_abstract] = ACTIONS(3341), + [anon_sym_global] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, [1514] = { [sym_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [ts_builtin_sym_end] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), + [anon_sym_abstract] = ACTIONS(3241), + [anon_sym_global] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, [1515] = { [sym_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3334), - [anon_sym_any] = ACTIONS(3334), - [anon_sym_number] = ACTIONS(3334), - [anon_sym_boolean] = ACTIONS(3334), - [anon_sym_string] = ACTIONS(3334), - [anon_sym_symbol] = ACTIONS(3334), - [anon_sym_object] = ACTIONS(3334), - [anon_sym_abstract] = ACTIONS(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3197), + [anon_sym_export] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_namespace] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_typeof] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3197), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_do] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_debugger] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_throw] = ACTIONS(3197), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_LTtemplate_GT] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_class] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_function] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_void] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3197), + [sym_number] = ACTIONS(3197), + [sym_private_property_identifier] = ACTIONS(3197), + [sym_this] = ACTIONS(3197), + [sym_super] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [sym_undefined] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_static] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_get] = ACTIONS(3197), + [anon_sym_set] = ACTIONS(3197), + [anon_sym_declare] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_private] = ACTIONS(3197), + [anon_sym_protected] = ACTIONS(3197), + [anon_sym_override] = ACTIONS(3197), + [anon_sym_module] = ACTIONS(3197), + [anon_sym_any] = ACTIONS(3197), + [anon_sym_number] = ACTIONS(3197), + [anon_sym_boolean] = ACTIONS(3197), + [anon_sym_string] = ACTIONS(3197), + [anon_sym_symbol] = ACTIONS(3197), + [anon_sym_object] = ACTIONS(3197), + [anon_sym_abstract] = ACTIONS(3197), + [anon_sym_global] = ACTIONS(3197), + [anon_sym_interface] = ACTIONS(3197), + [anon_sym_enum] = ACTIONS(3197), [sym_html_comment] = ACTIONS(5), }, [1516] = { [sym_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3286), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LTtemplate_GT] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_async] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_private_property_identifier] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - [sym_super] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_undefined] = ACTIONS(3286), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_readonly] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_override] = ACTIONS(3286), - [anon_sym_module] = ACTIONS(3286), - [anon_sym_any] = ACTIONS(3286), - [anon_sym_number] = ACTIONS(3286), - [anon_sym_boolean] = ACTIONS(3286), - [anon_sym_string] = ACTIONS(3286), - [anon_sym_symbol] = ACTIONS(3286), - [anon_sym_object] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3139), + [anon_sym_export] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_namespace] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_typeof] = ACTIONS(3139), + [anon_sym_import] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), + [anon_sym_var] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_debugger] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_throw] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LTtemplate_GT] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_class] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3139), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_void] = ACTIONS(3139), + [anon_sym_delete] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3139), + [sym_number] = ACTIONS(3139), + [sym_private_property_identifier] = ACTIONS(3139), + [sym_this] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_true] = ACTIONS(3139), + [sym_false] = ACTIONS(3139), + [sym_null] = ACTIONS(3139), + [sym_undefined] = ACTIONS(3139), + [anon_sym_AT] = ACTIONS(3139), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_readonly] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3139), + [anon_sym_set] = ACTIONS(3139), + [anon_sym_declare] = ACTIONS(3139), + [anon_sym_public] = ACTIONS(3139), + [anon_sym_private] = ACTIONS(3139), + [anon_sym_protected] = ACTIONS(3139), + [anon_sym_override] = ACTIONS(3139), + [anon_sym_module] = ACTIONS(3139), + [anon_sym_any] = ACTIONS(3139), + [anon_sym_number] = ACTIONS(3139), + [anon_sym_boolean] = ACTIONS(3139), + [anon_sym_string] = ACTIONS(3139), + [anon_sym_symbol] = ACTIONS(3139), + [anon_sym_object] = ACTIONS(3139), + [anon_sym_abstract] = ACTIONS(3139), + [anon_sym_global] = ACTIONS(3139), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [1517] = { [sym_comment] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3206), - [anon_sym_export] = ACTIONS(3206), - [anon_sym_type] = ACTIONS(3206), - [anon_sym_namespace] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_with] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_const] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_debugger] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_yield] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LTtemplate_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3206), - [anon_sym_delete] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_private_property_identifier] = ACTIONS(3206), - [sym_this] = ACTIONS(3206), - [sym_super] = ACTIONS(3206), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_undefined] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_readonly] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3206), - [anon_sym_set] = ACTIONS(3206), - [anon_sym_declare] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_protected] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_module] = ACTIONS(3206), - [anon_sym_any] = ACTIONS(3206), - [anon_sym_number] = ACTIONS(3206), - [anon_sym_boolean] = ACTIONS(3206), - [anon_sym_string] = ACTIONS(3206), - [anon_sym_symbol] = ACTIONS(3206), - [anon_sym_object] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3263), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_typeof] = ACTIONS(3263), + [anon_sym_import] = ACTIONS(3263), + [anon_sym_with] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3263), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_debugger] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_LTtemplate_GT] = ACTIONS(3263), + [anon_sym_DQUOTE] = ACTIONS(3263), + [anon_sym_SQUOTE] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_SLASH] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(3263), + [anon_sym_TILDE] = ACTIONS(3263), + [anon_sym_void] = ACTIONS(3263), + [anon_sym_delete] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(3263), + [anon_sym_DASH_DASH] = ACTIONS(3263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3263), + [sym_number] = ACTIONS(3263), + [sym_private_property_identifier] = ACTIONS(3263), + [sym_this] = ACTIONS(3263), + [sym_super] = ACTIONS(3263), + [sym_true] = ACTIONS(3263), + [sym_false] = ACTIONS(3263), + [sym_null] = ACTIONS(3263), + [sym_undefined] = ACTIONS(3263), + [anon_sym_AT] = ACTIONS(3263), + [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_abstract] = ACTIONS(3263), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), [sym_html_comment] = ACTIONS(5), }, [1518] = { [sym_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(3508), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), + [ts_builtin_sym_end] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1519] = { [sym_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(3482), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_LTtemplate_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3240), - [sym_number] = ACTIONS(3240), - [sym_private_property_identifier] = ACTIONS(3240), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3240), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_override] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_object] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1520] = { [sym_comment] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(3490), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1521] = { [sym_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [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_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [ts_builtin_sym_end] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3339), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_debugger] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LTtemplate_GT] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_delete] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), [sym_html_comment] = ACTIONS(5), }, [1522] = { [sym_comment] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3161), + [anon_sym_export] = ACTIONS(3161), + [anon_sym_type] = ACTIONS(3161), + [anon_sym_namespace] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_typeof] = ACTIONS(3161), + [anon_sym_import] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3161), + [anon_sym_var] = ACTIONS(3161), + [anon_sym_let] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_switch] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_await] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_do] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_debugger] = ACTIONS(3161), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_LTtemplate_GT] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_async] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_using] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_SLASH] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_void] = ACTIONS(3161), + [anon_sym_delete] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3161), + [sym_number] = ACTIONS(3161), + [sym_private_property_identifier] = ACTIONS(3161), + [sym_this] = ACTIONS(3161), + [sym_super] = ACTIONS(3161), + [sym_true] = ACTIONS(3161), + [sym_false] = ACTIONS(3161), + [sym_null] = ACTIONS(3161), + [sym_undefined] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3161), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_readonly] = ACTIONS(3161), + [anon_sym_get] = ACTIONS(3161), + [anon_sym_set] = ACTIONS(3161), + [anon_sym_declare] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_private] = ACTIONS(3161), + [anon_sym_protected] = ACTIONS(3161), + [anon_sym_override] = ACTIONS(3161), + [anon_sym_module] = ACTIONS(3161), + [anon_sym_any] = ACTIONS(3161), + [anon_sym_number] = ACTIONS(3161), + [anon_sym_boolean] = ACTIONS(3161), + [anon_sym_string] = ACTIONS(3161), + [anon_sym_symbol] = ACTIONS(3161), + [anon_sym_object] = ACTIONS(3161), + [anon_sym_abstract] = ACTIONS(3161), + [anon_sym_global] = ACTIONS(3161), + [anon_sym_interface] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), [sym_html_comment] = ACTIONS(5), }, [1523] = { [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2286), + [anon_sym_import] = ACTIONS(2286), + [anon_sym_with] = ACTIONS(2286), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_debugger] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_throw] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LTtemplate_GT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_class] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2286), + [anon_sym_using] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_private_property_identifier] = ACTIONS(2286), + [sym_this] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_undefined] = ACTIONS(2286), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_readonly] = ACTIONS(2286), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_declare] = ACTIONS(2286), + [anon_sym_public] = ACTIONS(2286), + [anon_sym_private] = ACTIONS(2286), + [anon_sym_protected] = ACTIONS(2286), + [anon_sym_override] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_any] = ACTIONS(2286), + [anon_sym_number] = ACTIONS(2286), + [anon_sym_boolean] = ACTIONS(2286), + [anon_sym_string] = ACTIONS(2286), + [anon_sym_symbol] = ACTIONS(2286), + [anon_sym_object] = ACTIONS(2286), + [anon_sym_abstract] = ACTIONS(2286), + [anon_sym_global] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, [1524] = { [sym_comment] = STATE(1524), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_LTtemplate_GT] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3244), - [sym_number] = ACTIONS(3244), - [sym_private_property_identifier] = ACTIONS(3244), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3155), + [anon_sym_export] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_await] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_debugger] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LTtemplate_GT] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_async] = ACTIONS(3155), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_void] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3155), + [sym_number] = ACTIONS(3155), + [sym_private_property_identifier] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), + [sym_super] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_null] = ACTIONS(3155), + [sym_undefined] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_readonly] = ACTIONS(3155), + [anon_sym_get] = ACTIONS(3155), + [anon_sym_set] = ACTIONS(3155), + [anon_sym_declare] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_override] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_any] = ACTIONS(3155), + [anon_sym_number] = ACTIONS(3155), + [anon_sym_boolean] = ACTIONS(3155), + [anon_sym_string] = ACTIONS(3155), + [anon_sym_symbol] = ACTIONS(3155), + [anon_sym_object] = ACTIONS(3155), + [anon_sym_abstract] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), [sym_html_comment] = ACTIONS(5), }, [1525] = { [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(3376), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_global] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, [1526] = { [sym_comment] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(3474), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3141), + [anon_sym_export] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_namespace] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_typeof] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [anon_sym_let] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_debugger] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LTtemplate_GT] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_void] = ACTIONS(3141), + [anon_sym_delete] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3141), + [sym_number] = ACTIONS(3141), + [sym_private_property_identifier] = ACTIONS(3141), + [sym_this] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_null] = ACTIONS(3141), + [sym_undefined] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_declare] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_module] = ACTIONS(3141), + [anon_sym_any] = ACTIONS(3141), + [anon_sym_number] = ACTIONS(3141), + [anon_sym_boolean] = ACTIONS(3141), + [anon_sym_string] = ACTIONS(3141), + [anon_sym_symbol] = ACTIONS(3141), + [anon_sym_object] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), [sym_html_comment] = ACTIONS(5), }, [1527] = { [sym_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_typeof] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_var] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_switch] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_debugger] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_throw] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LTtemplate_GT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_function] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_using] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2151), - [anon_sym_delete] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2151), - [sym_number] = ACTIONS(2151), - [sym_private_property_identifier] = ACTIONS(2151), - [sym_this] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_undefined] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), - [anon_sym_abstract] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3153), + [anon_sym_export] = ACTIONS(3153), + [anon_sym_type] = ACTIONS(3153), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3153), + [anon_sym_import] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_await] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_debugger] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_LTtemplate_GT] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_void] = ACTIONS(3153), + [anon_sym_delete] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3153), + [sym_number] = ACTIONS(3153), + [sym_private_property_identifier] = ACTIONS(3153), + [sym_this] = ACTIONS(3153), + [sym_super] = ACTIONS(3153), + [sym_true] = ACTIONS(3153), + [sym_false] = ACTIONS(3153), + [sym_null] = ACTIONS(3153), + [sym_undefined] = ACTIONS(3153), + [anon_sym_AT] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_get] = ACTIONS(3153), + [anon_sym_set] = ACTIONS(3153), + [anon_sym_declare] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_module] = ACTIONS(3153), + [anon_sym_any] = ACTIONS(3153), + [anon_sym_number] = ACTIONS(3153), + [anon_sym_boolean] = ACTIONS(3153), + [anon_sym_string] = ACTIONS(3153), + [anon_sym_symbol] = ACTIONS(3153), + [anon_sym_object] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), [sym_html_comment] = ACTIONS(5), }, [1528] = { [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym_identifier] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_type] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_typeof] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_with] = ACTIONS(3310), - [anon_sym_var] = ACTIONS(3310), - [anon_sym_let] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_await] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_debugger] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_LTtemplate_GT] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_async] = ACTIONS(3310), - [anon_sym_function] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_SLASH] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_void] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3310), - [sym_number] = ACTIONS(3310), - [sym_private_property_identifier] = ACTIONS(3310), - [sym_this] = ACTIONS(3310), - [sym_super] = ACTIONS(3310), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [sym_null] = ACTIONS(3310), - [sym_undefined] = ACTIONS(3310), - [anon_sym_AT] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_readonly] = ACTIONS(3310), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3310), - [anon_sym_declare] = ACTIONS(3310), - [anon_sym_public] = ACTIONS(3310), - [anon_sym_private] = ACTIONS(3310), - [anon_sym_protected] = ACTIONS(3310), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3310), - [anon_sym_any] = ACTIONS(3310), - [anon_sym_number] = ACTIONS(3310), - [anon_sym_boolean] = ACTIONS(3310), - [anon_sym_string] = ACTIONS(3310), - [anon_sym_symbol] = ACTIONS(3310), - [anon_sym_object] = ACTIONS(3310), - [anon_sym_abstract] = ACTIONS(3310), - [anon_sym_interface] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), + [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_typeof] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_debugger] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LTtemplate_GT] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_function] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_void] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_number] = ACTIONS(3191), + [sym_private_property_identifier] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_undefined] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_get] = ACTIONS(3191), + [anon_sym_set] = ACTIONS(3191), + [anon_sym_declare] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_override] = ACTIONS(3191), + [anon_sym_module] = ACTIONS(3191), + [anon_sym_any] = ACTIONS(3191), + [anon_sym_number] = ACTIONS(3191), + [anon_sym_boolean] = ACTIONS(3191), + [anon_sym_string] = ACTIONS(3191), + [anon_sym_symbol] = ACTIONS(3191), + [anon_sym_object] = ACTIONS(3191), + [anon_sym_abstract] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1529] = { [sym_comment] = STATE(1529), - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(3337), + [anon_sym_var] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3337), + [anon_sym_do] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_debugger] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_throw] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LTtemplate_GT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3337), + [anon_sym_class] = ACTIONS(3337), + [anon_sym_async] = ACTIONS(3337), + [anon_sym_function] = ACTIONS(3337), + [anon_sym_new] = ACTIONS(3337), + [anon_sym_using] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3337), + [sym_number] = ACTIONS(3337), + [sym_private_property_identifier] = ACTIONS(3337), + [sym_this] = ACTIONS(3337), + [sym_super] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_null] = ACTIONS(3337), + [sym_undefined] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [anon_sym_declare] = ACTIONS(3337), + [anon_sym_public] = ACTIONS(3337), + [anon_sym_private] = ACTIONS(3337), + [anon_sym_protected] = ACTIONS(3337), + [anon_sym_override] = ACTIONS(3337), + [anon_sym_module] = ACTIONS(3337), + [anon_sym_any] = ACTIONS(3337), + [anon_sym_number] = ACTIONS(3337), + [anon_sym_boolean] = ACTIONS(3337), + [anon_sym_string] = ACTIONS(3337), + [anon_sym_symbol] = ACTIONS(3337), + [anon_sym_object] = ACTIONS(3337), + [anon_sym_abstract] = ACTIONS(3337), + [anon_sym_global] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), [sym_html_comment] = ACTIONS(5), }, [1530] = { [sym_comment] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(3587), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, [1531] = { [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [ts_builtin_sym_end] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, [1532] = { [sym_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [ts_builtin_sym_end] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_global] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, [1533] = { [sym_comment] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(3472), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3189), + [anon_sym_export] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym_import] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_debugger] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LTtemplate_GT] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_function] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_void] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3189), + [sym_number] = ACTIONS(3189), + [sym_private_property_identifier] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [sym_super] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_null] = ACTIONS(3189), + [sym_undefined] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_get] = ACTIONS(3189), + [anon_sym_set] = ACTIONS(3189), + [anon_sym_declare] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_module] = ACTIONS(3189), + [anon_sym_any] = ACTIONS(3189), + [anon_sym_number] = ACTIONS(3189), + [anon_sym_boolean] = ACTIONS(3189), + [anon_sym_string] = ACTIONS(3189), + [anon_sym_symbol] = ACTIONS(3189), + [anon_sym_object] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), [sym_html_comment] = ACTIONS(5), }, [1534] = { [sym_comment] = STATE(1534), - [ts_builtin_sym_end] = ACTIONS(3588), - [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_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_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_abstract] = ACTIONS(3562), - [anon_sym_interface] = ACTIONS(3562), - [anon_sym_enum] = ACTIONS(3562), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3189), + [anon_sym_export] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym_import] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_debugger] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LTtemplate_GT] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_function] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_void] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3189), + [sym_number] = ACTIONS(3189), + [sym_private_property_identifier] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [sym_super] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_null] = ACTIONS(3189), + [sym_undefined] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_get] = ACTIONS(3189), + [anon_sym_set] = ACTIONS(3189), + [anon_sym_declare] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_module] = ACTIONS(3189), + [anon_sym_any] = ACTIONS(3189), + [anon_sym_number] = ACTIONS(3189), + [anon_sym_boolean] = ACTIONS(3189), + [anon_sym_string] = ACTIONS(3189), + [anon_sym_symbol] = ACTIONS(3189), + [anon_sym_object] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), [sym_html_comment] = ACTIONS(5), }, [1535] = { [sym_comment] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_global] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, [1536] = { [sym_comment] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3151), + [anon_sym_export] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(3151), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_var] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_await] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_debugger] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LTtemplate_GT] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_SQUOTE] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_async] = ACTIONS(3151), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_void] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3151), + [sym_number] = ACTIONS(3151), + [sym_private_property_identifier] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + [sym_super] = ACTIONS(3151), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_null] = ACTIONS(3151), + [sym_undefined] = ACTIONS(3151), + [anon_sym_AT] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_readonly] = ACTIONS(3151), + [anon_sym_get] = ACTIONS(3151), + [anon_sym_set] = ACTIONS(3151), + [anon_sym_declare] = ACTIONS(3151), + [anon_sym_public] = ACTIONS(3151), + [anon_sym_private] = ACTIONS(3151), + [anon_sym_protected] = ACTIONS(3151), + [anon_sym_override] = ACTIONS(3151), + [anon_sym_module] = ACTIONS(3151), + [anon_sym_any] = ACTIONS(3151), + [anon_sym_number] = ACTIONS(3151), + [anon_sym_boolean] = ACTIONS(3151), + [anon_sym_string] = ACTIONS(3151), + [anon_sym_symbol] = ACTIONS(3151), + [anon_sym_object] = ACTIONS(3151), + [anon_sym_abstract] = ACTIONS(3151), + [anon_sym_global] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), [sym_html_comment] = ACTIONS(5), }, [1537] = { [sym_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [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_abstract] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1538] = { [sym_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(3380), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [ts_builtin_sym_end] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3145), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_debugger] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LTtemplate_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3145), + [sym_number] = ACTIONS(3145), + [sym_private_property_identifier] = ACTIONS(3145), + [sym_this] = ACTIONS(3145), + [sym_super] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_null] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_get] = ACTIONS(3145), + [anon_sym_set] = ACTIONS(3145), + [anon_sym_declare] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_module] = ACTIONS(3145), + [anon_sym_any] = ACTIONS(3145), + [anon_sym_number] = ACTIONS(3145), + [anon_sym_boolean] = ACTIONS(3145), + [anon_sym_string] = ACTIONS(3145), + [anon_sym_symbol] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), [sym_html_comment] = ACTIONS(5), }, [1539] = { [sym_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_LTtemplate_GT] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_SQUOTE] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3124), - [sym_number] = ACTIONS(3124), - [sym_private_property_identifier] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_object] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3429), + [sym_identifier] = ACTIONS(3165), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_type] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_typeof] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_await] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_debugger] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LTtemplate_GT] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_void] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3165), + [sym_number] = ACTIONS(3165), + [sym_private_property_identifier] = ACTIONS(3165), + [sym_this] = ACTIONS(3165), + [sym_super] = ACTIONS(3165), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [sym_null] = ACTIONS(3165), + [sym_undefined] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_readonly] = ACTIONS(3165), + [anon_sym_get] = ACTIONS(3165), + [anon_sym_set] = ACTIONS(3165), + [anon_sym_declare] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_any] = ACTIONS(3165), + [anon_sym_number] = ACTIONS(3165), + [anon_sym_boolean] = ACTIONS(3165), + [anon_sym_string] = ACTIONS(3165), + [anon_sym_symbol] = ACTIONS(3165), + [anon_sym_object] = ACTIONS(3165), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_global] = ACTIONS(3165), + [anon_sym_interface] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), [sym_html_comment] = ACTIONS(5), }, [1540] = { [sym_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(3520), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3149), + [anon_sym_export] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_debugger] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_LTtemplate_GT] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_void] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3149), + [sym_number] = ACTIONS(3149), + [sym_private_property_identifier] = ACTIONS(3149), + [sym_this] = ACTIONS(3149), + [sym_super] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_null] = ACTIONS(3149), + [sym_undefined] = ACTIONS(3149), + [anon_sym_AT] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_get] = ACTIONS(3149), + [anon_sym_set] = ACTIONS(3149), + [anon_sym_declare] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_module] = ACTIONS(3149), + [anon_sym_any] = ACTIONS(3149), + [anon_sym_number] = ACTIONS(3149), + [anon_sym_boolean] = ACTIONS(3149), + [anon_sym_string] = ACTIONS(3149), + [anon_sym_symbol] = ACTIONS(3149), + [anon_sym_object] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), [sym_html_comment] = ACTIONS(5), }, [1541] = { [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_typeof] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LTtemplate_GT] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_delete] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2193), - [sym_number] = ACTIONS(2193), - [sym_private_property_identifier] = ACTIONS(2193), - [sym_this] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_declare] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_protected] = ACTIONS(2193), - [anon_sym_override] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_any] = ACTIONS(2193), - [anon_sym_number] = ACTIONS(2193), - [anon_sym_boolean] = ACTIONS(2193), - [anon_sym_string] = ACTIONS(2193), - [anon_sym_symbol] = ACTIONS(2193), - [anon_sym_object] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), + [ts_builtin_sym_end] = ACTIONS(3539), + [sym_identifier] = ACTIONS(3147), + [anon_sym_export] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_typeof] = ACTIONS(3147), + [anon_sym_import] = ACTIONS(3147), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_var] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_await] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_debugger] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LTtemplate_GT] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_void] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3147), + [sym_number] = ACTIONS(3147), + [sym_private_property_identifier] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), + [sym_super] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_null] = ACTIONS(3147), + [sym_undefined] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_get] = ACTIONS(3147), + [anon_sym_set] = ACTIONS(3147), + [anon_sym_declare] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_private] = ACTIONS(3147), + [anon_sym_protected] = ACTIONS(3147), + [anon_sym_override] = ACTIONS(3147), + [anon_sym_module] = ACTIONS(3147), + [anon_sym_any] = ACTIONS(3147), + [anon_sym_number] = ACTIONS(3147), + [anon_sym_boolean] = ACTIONS(3147), + [anon_sym_string] = ACTIONS(3147), + [anon_sym_symbol] = ACTIONS(3147), + [anon_sym_object] = ACTIONS(3147), + [anon_sym_abstract] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3147), + [anon_sym_interface] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), [sym_html_comment] = ACTIONS(5), }, [1542] = { [sym_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_LTtemplate_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3208), - [sym_number] = ACTIONS(3208), - [sym_private_property_identifier] = ACTIONS(3208), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_debugger] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2170), + [anon_sym_delete] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(2170), + [sym_this] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_undefined] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_global] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), [sym_html_comment] = ACTIONS(5), }, [1543] = { [sym_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_global] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, [1544] = { [sym_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(3468), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [ts_builtin_sym_end] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_debugger] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LTtemplate_GT] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_void] = ACTIONS(3287), + [anon_sym_delete] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3287), + [sym_number] = ACTIONS(3287), + [sym_private_property_identifier] = ACTIONS(3287), + [sym_this] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_null] = ACTIONS(3287), + [sym_undefined] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_get] = ACTIONS(3287), + [anon_sym_set] = ACTIONS(3287), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), [sym_html_comment] = ACTIONS(5), }, [1545] = { [sym_comment] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(3488), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LTtemplate_GT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_private_property_identifier] = ACTIONS(3162), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, [1546] = { [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_typeof] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_var] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_debugger] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LTtemplate_GT] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2223), - [anon_sym_delete] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_number] = ACTIONS(2223), - [sym_private_property_identifier] = ACTIONS(2223), - [sym_this] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_null] = ACTIONS(2223), - [sym_undefined] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), - [anon_sym_abstract] = ACTIONS(2223), - [anon_sym_interface] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), + [ts_builtin_sym_end] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3229), + [anon_sym_export] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_typeof] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(3229), + [anon_sym_var] = ACTIONS(3229), + [anon_sym_let] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_debugger] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_throw] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_yield] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LTtemplate_GT] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_class] = ACTIONS(3229), + [anon_sym_async] = ACTIONS(3229), + [anon_sym_function] = ACTIONS(3229), + [anon_sym_new] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3229), + [sym_number] = ACTIONS(3229), + [sym_private_property_identifier] = ACTIONS(3229), + [sym_this] = ACTIONS(3229), + [sym_super] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_null] = ACTIONS(3229), + [sym_undefined] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3229), + [anon_sym_readonly] = ACTIONS(3229), + [anon_sym_get] = ACTIONS(3229), + [anon_sym_set] = ACTIONS(3229), + [anon_sym_declare] = ACTIONS(3229), + [anon_sym_public] = ACTIONS(3229), + [anon_sym_private] = ACTIONS(3229), + [anon_sym_protected] = ACTIONS(3229), + [anon_sym_override] = ACTIONS(3229), + [anon_sym_module] = ACTIONS(3229), + [anon_sym_any] = ACTIONS(3229), + [anon_sym_number] = ACTIONS(3229), + [anon_sym_boolean] = ACTIONS(3229), + [anon_sym_string] = ACTIONS(3229), + [anon_sym_symbol] = ACTIONS(3229), + [anon_sym_object] = ACTIONS(3229), + [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_global] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), [sym_html_comment] = ACTIONS(5), }, [1547] = { [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(3578), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [ts_builtin_sym_end] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3251), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_LTtemplate_GT] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_void] = ACTIONS(3251), + [anon_sym_delete] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_number] = ACTIONS(3251), + [sym_private_property_identifier] = ACTIONS(3251), + [sym_this] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_undefined] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3251), + [anon_sym_any] = ACTIONS(3251), + [anon_sym_number] = ACTIONS(3251), + [anon_sym_boolean] = ACTIONS(3251), + [anon_sym_string] = ACTIONS(3251), + [anon_sym_symbol] = ACTIONS(3251), + [anon_sym_object] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), [sym_html_comment] = ACTIONS(5), }, [1548] = { [sym_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), + [ts_builtin_sym_end] = ACTIONS(3445), + [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_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_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_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_abstract] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, [1549] = { [sym_comment] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), + [ts_builtin_sym_end] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_debugger] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_LTtemplate_GT] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_delete] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_null] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_get] = ACTIONS(3335), + [anon_sym_set] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_module] = ACTIONS(3335), + [anon_sym_any] = ACTIONS(3335), + [anon_sym_number] = ACTIONS(3335), + [anon_sym_boolean] = ACTIONS(3335), + [anon_sym_string] = ACTIONS(3335), + [anon_sym_symbol] = ACTIONS(3335), + [anon_sym_object] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), [sym_html_comment] = ACTIONS(5), }, [1550] = { [sym_comment] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_global] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), [sym_html_comment] = ACTIONS(5), }, [1551] = { [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(3454), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(3545), + [sym_identifier] = ACTIONS(3159), + [anon_sym_export] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_var] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_await] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_debugger] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LTtemplate_GT] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_SQUOTE] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_async] = ACTIONS(3159), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_void] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3159), + [sym_number] = ACTIONS(3159), + [sym_private_property_identifier] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), + [sym_super] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_null] = ACTIONS(3159), + [sym_undefined] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_readonly] = ACTIONS(3159), + [anon_sym_get] = ACTIONS(3159), + [anon_sym_set] = ACTIONS(3159), + [anon_sym_declare] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_override] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_any] = ACTIONS(3159), + [anon_sym_number] = ACTIONS(3159), + [anon_sym_boolean] = ACTIONS(3159), + [anon_sym_string] = ACTIONS(3159), + [anon_sym_symbol] = ACTIONS(3159), + [anon_sym_object] = ACTIONS(3159), + [anon_sym_abstract] = ACTIONS(3159), + [anon_sym_global] = ACTIONS(3159), + [anon_sym_interface] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), [sym_html_comment] = ACTIONS(5), }, [1552] = { [sym_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(3538), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3333), + [anon_sym_global] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, [1553] = { [sym_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_global] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [1554] = { [sym_comment] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1555] = { [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, [1556] = { [sym_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3289), + [anon_sym_export] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3289), + [anon_sym_with] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_debugger] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LTtemplate_GT] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_function] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_void] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3289), + [sym_number] = ACTIONS(3289), + [sym_private_property_identifier] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [sym_super] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_null] = ACTIONS(3289), + [sym_undefined] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_get] = ACTIONS(3289), + [anon_sym_set] = ACTIONS(3289), + [anon_sym_declare] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_module] = ACTIONS(3289), + [anon_sym_any] = ACTIONS(3289), + [anon_sym_number] = ACTIONS(3289), + [anon_sym_boolean] = ACTIONS(3289), + [anon_sym_string] = ACTIONS(3289), + [anon_sym_symbol] = ACTIONS(3289), + [anon_sym_object] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_global] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), [sym_html_comment] = ACTIONS(5), }, [1557] = { [sym_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2249), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_typeof] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_debugger] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_delete] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2249), - [sym_number] = ACTIONS(2249), - [sym_private_property_identifier] = ACTIONS(2249), - [sym_this] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_null] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(2249), - [anon_sym_set] = ACTIONS(2249), - [anon_sym_declare] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_private] = ACTIONS(2249), - [anon_sym_protected] = ACTIONS(2249), - [anon_sym_override] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_any] = ACTIONS(2249), - [anon_sym_number] = ACTIONS(2249), - [anon_sym_boolean] = ACTIONS(2249), - [anon_sym_string] = ACTIONS(2249), - [anon_sym_symbol] = ACTIONS(2249), - [anon_sym_object] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [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_abstract] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1558] = { [sym_comment] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), [sym_html_comment] = ACTIONS(5), }, [1559] = { [sym_comment] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(3388), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_LTtemplate_GT] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3348), - [sym_number] = ACTIONS(3348), - [sym_private_property_identifier] = ACTIONS(3348), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3348), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_override] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), + [ts_builtin_sym_end] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3307), + [anon_sym_export] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_debugger] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LTtemplate_GT] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_delete] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3307), + [sym_number] = ACTIONS(3307), + [sym_private_property_identifier] = ACTIONS(3307), + [sym_this] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_get] = ACTIONS(3307), + [anon_sym_set] = ACTIONS(3307), + [anon_sym_declare] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_module] = ACTIONS(3307), + [anon_sym_any] = ACTIONS(3307), + [anon_sym_number] = ACTIONS(3307), + [anon_sym_boolean] = ACTIONS(3307), + [anon_sym_string] = ACTIONS(3307), + [anon_sym_symbol] = ACTIONS(3307), + [anon_sym_object] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1560] = { [sym_comment] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(3498), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [ts_builtin_sym_end] = ACTIONS(3433), + [sym_identifier] = ACTIONS(3185), + [anon_sym_export] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3185), + [anon_sym_typeof] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3185), + [anon_sym_with] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [anon_sym_let] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_debugger] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_LTtemplate_GT] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_function] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_void] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3185), + [sym_number] = ACTIONS(3185), + [sym_private_property_identifier] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [sym_super] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_null] = ACTIONS(3185), + [sym_undefined] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_get] = ACTIONS(3185), + [anon_sym_set] = ACTIONS(3185), + [anon_sym_declare] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_protected] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_module] = ACTIONS(3185), + [anon_sym_any] = ACTIONS(3185), + [anon_sym_number] = ACTIONS(3185), + [anon_sym_boolean] = ACTIONS(3185), + [anon_sym_string] = ACTIONS(3185), + [anon_sym_symbol] = ACTIONS(3185), + [anon_sym_object] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), [sym_html_comment] = ACTIONS(5), }, [1561] = { [sym_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3350), - [anon_sym_import] = ACTIONS(3350), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_var] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_debugger] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LTtemplate_GT] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_async] = ACTIONS(3350), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_private_property_identifier] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [sym_super] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_null] = ACTIONS(3350), - [sym_undefined] = ACTIONS(3350), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_readonly] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3350), - [anon_sym_set] = ACTIONS(3350), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_override] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LTtemplate_GT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2244), + [sym_number] = ACTIONS(2244), + [sym_private_property_identifier] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_object] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_global] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [1562] = { [sym_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3552), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_global] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, [1563] = { [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [ts_builtin_sym_end] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, [1564] = { [sym_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [1565] = { [sym_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_LTtemplate_GT] = ACTIONS(3176), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_override] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_object] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), + [ts_builtin_sym_end] = ACTIONS(3425), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, [1566] = { [sym_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_module] = ACTIONS(3226), - [anon_sym_any] = ACTIONS(3226), - [anon_sym_number] = ACTIONS(3226), - [anon_sym_boolean] = ACTIONS(3226), - [anon_sym_string] = ACTIONS(3226), - [anon_sym_symbol] = ACTIONS(3226), - [anon_sym_object] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), + [ts_builtin_sym_end] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3315), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_debugger] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LTtemplate_GT] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3315), + [sym_number] = ACTIONS(3315), + [sym_private_property_identifier] = ACTIONS(3315), + [sym_this] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_get] = ACTIONS(3315), + [anon_sym_set] = ACTIONS(3315), + [anon_sym_declare] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_any] = ACTIONS(3315), + [anon_sym_number] = ACTIONS(3315), + [anon_sym_boolean] = ACTIONS(3315), + [anon_sym_string] = ACTIONS(3315), + [anon_sym_symbol] = ACTIONS(3315), + [anon_sym_object] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), [sym_html_comment] = ACTIONS(5), }, [1567] = { [sym_comment] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), + [ts_builtin_sym_end] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_global] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, [1568] = { [sym_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(3412), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), + [ts_builtin_sym_end] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, [1569] = { [sym_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(3444), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_LTtemplate_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3236), - [sym_number] = ACTIONS(3236), - [sym_private_property_identifier] = ACTIONS(3236), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_override] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_object] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), + [ts_builtin_sym_end] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [1570] = { [sym_comment] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3365), + [anon_sym_export] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_typeof] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_var] = ACTIONS(3365), + [anon_sym_let] = ACTIONS(3365), + [anon_sym_const] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_do] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_debugger] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_throw] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LTtemplate_GT] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_function] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_using] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_SLASH] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3365), + [sym_number] = ACTIONS(3365), + [sym_private_property_identifier] = ACTIONS(3365), + [sym_this] = ACTIONS(3365), + [sym_super] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_null] = ACTIONS(3365), + [sym_undefined] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_static] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_private] = ACTIONS(3365), + [anon_sym_protected] = ACTIONS(3365), + [anon_sym_override] = ACTIONS(3365), + [anon_sym_module] = ACTIONS(3365), + [anon_sym_any] = ACTIONS(3365), + [anon_sym_number] = ACTIONS(3365), + [anon_sym_boolean] = ACTIONS(3365), + [anon_sym_string] = ACTIONS(3365), + [anon_sym_symbol] = ACTIONS(3365), + [anon_sym_object] = ACTIONS(3365), + [anon_sym_abstract] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3365), + [anon_sym_enum] = ACTIONS(3365), [sym_html_comment] = ACTIONS(5), }, [1571] = { [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(3500), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [ts_builtin_sym_end] = ACTIONS(3585), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, [1572] = { [sym_comment] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(3492), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_with] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_await] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_debugger] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LTtemplate_GT] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(2174), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2174), + [sym_number] = ACTIONS(2174), + [sym_private_property_identifier] = ACTIONS(2174), + [sym_this] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_undefined] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_global] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, [1573] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1573), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6002), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6006), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1574] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1574), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6202), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3600), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3605), + [anon_sym_export] = ACTIONS(3605), + [anon_sym_type] = ACTIONS(3605), + [anon_sym_namespace] = ACTIONS(3605), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_typeof] = ACTIONS(3605), + [anon_sym_import] = ACTIONS(3605), + [anon_sym_with] = ACTIONS(3605), + [anon_sym_var] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_const] = ACTIONS(3605), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_switch] = ACTIONS(3605), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_await] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_break] = ACTIONS(3605), + [anon_sym_continue] = ACTIONS(3605), + [anon_sym_debugger] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_throw] = ACTIONS(3605), + [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LTtemplate_GT] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_SQUOTE] = ACTIONS(3605), + [anon_sym_class] = ACTIONS(3605), + [anon_sym_async] = ACTIONS(3605), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_using] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_SLASH] = ACTIONS(3605), + [anon_sym_LT] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_void] = ACTIONS(3605), + [anon_sym_delete] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3605), + [sym_number] = ACTIONS(3605), + [sym_private_property_identifier] = ACTIONS(3605), + [sym_this] = ACTIONS(3605), + [sym_super] = ACTIONS(3605), + [sym_true] = ACTIONS(3605), + [sym_false] = ACTIONS(3605), + [sym_null] = ACTIONS(3605), + [sym_undefined] = ACTIONS(3605), + [anon_sym_AT] = ACTIONS(3605), + [anon_sym_static] = ACTIONS(3605), + [anon_sym_readonly] = ACTIONS(3605), + [anon_sym_get] = ACTIONS(3605), + [anon_sym_set] = ACTIONS(3605), + [anon_sym_declare] = ACTIONS(3605), + [anon_sym_public] = ACTIONS(3605), + [anon_sym_private] = ACTIONS(3605), + [anon_sym_protected] = ACTIONS(3605), + [anon_sym_override] = ACTIONS(3605), + [anon_sym_module] = ACTIONS(3605), + [anon_sym_any] = ACTIONS(3605), + [anon_sym_number] = ACTIONS(3605), + [anon_sym_boolean] = ACTIONS(3605), + [anon_sym_string] = ACTIONS(3605), + [anon_sym_symbol] = ACTIONS(3605), + [anon_sym_object] = ACTIONS(3605), + [anon_sym_abstract] = ACTIONS(3605), + [anon_sym_global] = ACTIONS(3605), + [anon_sym_interface] = ACTIONS(3605), + [anon_sym_enum] = ACTIONS(3605), [sym_html_comment] = ACTIONS(5), }, [1575] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1575), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(5712), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3607), + [anon_sym_export] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_namespace] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_typeof] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3607), + [anon_sym_let] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_switch] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3607), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_debugger] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_throw] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3607), + [anon_sym_LTtemplate_GT] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_using] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3607), + [sym_number] = ACTIONS(3607), + [sym_private_property_identifier] = ACTIONS(3607), + [sym_this] = ACTIONS(3607), + [sym_super] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_null] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [anon_sym_AT] = ACTIONS(3607), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_get] = ACTIONS(3607), + [anon_sym_set] = ACTIONS(3607), + [anon_sym_declare] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_private] = ACTIONS(3607), + [anon_sym_protected] = ACTIONS(3607), + [anon_sym_override] = ACTIONS(3607), + [anon_sym_module] = ACTIONS(3607), + [anon_sym_any] = ACTIONS(3607), + [anon_sym_number] = ACTIONS(3607), + [anon_sym_boolean] = ACTIONS(3607), + [anon_sym_string] = ACTIONS(3607), + [anon_sym_symbol] = ACTIONS(3607), + [anon_sym_object] = ACTIONS(3607), + [anon_sym_abstract] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_interface] = ACTIONS(3607), + [anon_sym_enum] = ACTIONS(3607), [sym_html_comment] = ACTIONS(5), }, [1576] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1576), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6251), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(3606), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3609), + [anon_sym_export] = ACTIONS(3609), + [anon_sym_type] = ACTIONS(3609), + [anon_sym_namespace] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3609), + [anon_sym_typeof] = ACTIONS(3609), + [anon_sym_import] = ACTIONS(3609), + [anon_sym_with] = ACTIONS(3609), + [anon_sym_var] = ACTIONS(3609), + [anon_sym_let] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_if] = ACTIONS(3609), + [anon_sym_switch] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3609), + [anon_sym_await] = ACTIONS(3609), + [anon_sym_while] = ACTIONS(3609), + [anon_sym_do] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3609), + [anon_sym_break] = ACTIONS(3609), + [anon_sym_continue] = ACTIONS(3609), + [anon_sym_debugger] = ACTIONS(3609), + [anon_sym_return] = ACTIONS(3609), + [anon_sym_throw] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_LTtemplate_GT] = ACTIONS(3609), + [anon_sym_DQUOTE] = ACTIONS(3609), + [anon_sym_SQUOTE] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_async] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_SLASH] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(3609), + [anon_sym_void] = ACTIONS(3609), + [anon_sym_delete] = ACTIONS(3609), + [anon_sym_PLUS_PLUS] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3609), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3609), + [sym_number] = ACTIONS(3609), + [sym_private_property_identifier] = ACTIONS(3609), + [sym_this] = ACTIONS(3609), + [sym_super] = ACTIONS(3609), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [sym_null] = ACTIONS(3609), + [sym_undefined] = ACTIONS(3609), + [anon_sym_AT] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_readonly] = ACTIONS(3609), + [anon_sym_get] = ACTIONS(3609), + [anon_sym_set] = ACTIONS(3609), + [anon_sym_declare] = ACTIONS(3609), + [anon_sym_public] = ACTIONS(3609), + [anon_sym_private] = ACTIONS(3609), + [anon_sym_protected] = ACTIONS(3609), + [anon_sym_override] = ACTIONS(3609), + [anon_sym_module] = ACTIONS(3609), + [anon_sym_any] = ACTIONS(3609), + [anon_sym_number] = ACTIONS(3609), + [anon_sym_boolean] = ACTIONS(3609), + [anon_sym_string] = ACTIONS(3609), + [anon_sym_symbol] = ACTIONS(3609), + [anon_sym_object] = ACTIONS(3609), + [anon_sym_abstract] = ACTIONS(3609), + [anon_sym_global] = ACTIONS(3609), + [anon_sym_interface] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), [sym_html_comment] = ACTIONS(5), }, [1577] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1577), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6022), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(3610), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6166), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(3611), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1578] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1578), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3607), + [anon_sym_export] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_namespace] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_typeof] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3607), + [anon_sym_let] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_switch] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3607), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_debugger] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_throw] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3607), + [anon_sym_LTtemplate_GT] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_using] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3607), + [sym_number] = ACTIONS(3607), + [sym_private_property_identifier] = ACTIONS(3607), + [sym_this] = ACTIONS(3607), + [sym_super] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_null] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [anon_sym_AT] = ACTIONS(3607), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_get] = ACTIONS(3607), + [anon_sym_set] = ACTIONS(3607), + [anon_sym_declare] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_private] = ACTIONS(3607), + [anon_sym_protected] = ACTIONS(3607), + [anon_sym_override] = ACTIONS(3607), + [anon_sym_module] = ACTIONS(3607), + [anon_sym_any] = ACTIONS(3607), + [anon_sym_number] = ACTIONS(3607), + [anon_sym_boolean] = ACTIONS(3607), + [anon_sym_string] = ACTIONS(3607), + [anon_sym_symbol] = ACTIONS(3607), + [anon_sym_object] = ACTIONS(3607), + [anon_sym_abstract] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_interface] = ACTIONS(3607), + [anon_sym_enum] = ACTIONS(3607), [sym_html_comment] = ACTIONS(5), }, [1579] = { [sym_comment] = STATE(1579), - [sym_identifier] = ACTIONS(3112), - [anon_sym_export] = ACTIONS(3112), - [anon_sym_type] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3112), - [anon_sym_import] = ACTIONS(3112), - [anon_sym_with] = ACTIONS(3112), - [anon_sym_var] = ACTIONS(3112), - [anon_sym_let] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_await] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_debugger] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_yield] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_LTtemplate_GT] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_async] = ACTIONS(3112), - [anon_sym_function] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_void] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_number] = ACTIONS(3112), - [sym_private_property_identifier] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - [sym_super] = ACTIONS(3112), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [sym_null] = ACTIONS(3112), - [sym_undefined] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_readonly] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_declare] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_override] = ACTIONS(3112), - [anon_sym_module] = ACTIONS(3112), - [anon_sym_any] = ACTIONS(3112), - [anon_sym_number] = ACTIONS(3112), - [anon_sym_boolean] = ACTIONS(3112), - [anon_sym_string] = ACTIONS(3112), - [anon_sym_symbol] = ACTIONS(3112), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_abstract] = ACTIONS(3112), - [anon_sym_interface] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), + [sym_identifier] = ACTIONS(3615), + [anon_sym_export] = ACTIONS(3615), + [anon_sym_type] = ACTIONS(3615), + [anon_sym_namespace] = ACTIONS(3615), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_typeof] = ACTIONS(3615), + [anon_sym_import] = ACTIONS(3615), + [anon_sym_with] = ACTIONS(3615), + [anon_sym_var] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_const] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_switch] = ACTIONS(3615), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_await] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_break] = ACTIONS(3615), + [anon_sym_continue] = ACTIONS(3615), + [anon_sym_debugger] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_throw] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LTtemplate_GT] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_SQUOTE] = ACTIONS(3615), + [anon_sym_class] = ACTIONS(3615), + [anon_sym_async] = ACTIONS(3615), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_using] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_SLASH] = ACTIONS(3615), + [anon_sym_LT] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_void] = ACTIONS(3615), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_PLUS_PLUS] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(3615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3615), + [sym_number] = ACTIONS(3615), + [sym_private_property_identifier] = ACTIONS(3615), + [sym_this] = ACTIONS(3615), + [sym_super] = ACTIONS(3615), + [sym_true] = ACTIONS(3615), + [sym_false] = ACTIONS(3615), + [sym_null] = ACTIONS(3615), + [sym_undefined] = ACTIONS(3615), + [anon_sym_AT] = ACTIONS(3615), + [anon_sym_static] = ACTIONS(3615), + [anon_sym_readonly] = ACTIONS(3615), + [anon_sym_get] = ACTIONS(3615), + [anon_sym_set] = ACTIONS(3615), + [anon_sym_declare] = ACTIONS(3615), + [anon_sym_public] = ACTIONS(3615), + [anon_sym_private] = ACTIONS(3615), + [anon_sym_protected] = ACTIONS(3615), + [anon_sym_override] = ACTIONS(3615), + [anon_sym_module] = ACTIONS(3615), + [anon_sym_any] = ACTIONS(3615), + [anon_sym_number] = ACTIONS(3615), + [anon_sym_boolean] = ACTIONS(3615), + [anon_sym_string] = ACTIONS(3615), + [anon_sym_symbol] = ACTIONS(3615), + [anon_sym_object] = ACTIONS(3615), + [anon_sym_abstract] = ACTIONS(3615), + [anon_sym_global] = ACTIONS(3615), + [anon_sym_interface] = ACTIONS(3615), + [anon_sym_enum] = ACTIONS(3615), [sym_html_comment] = ACTIONS(5), }, [1580] = { [sym_comment] = STATE(1580), - [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_typeof] = ACTIONS(3616), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3607), + [anon_sym_export] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_namespace] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_typeof] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3607), + [anon_sym_let] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_switch] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3607), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_debugger] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_throw] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3607), + [anon_sym_LTtemplate_GT] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_using] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3607), + [sym_number] = ACTIONS(3607), + [sym_private_property_identifier] = ACTIONS(3607), + [sym_this] = ACTIONS(3607), + [sym_super] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_null] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [anon_sym_AT] = ACTIONS(3607), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_get] = ACTIONS(3607), + [anon_sym_set] = ACTIONS(3607), + [anon_sym_declare] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_private] = ACTIONS(3607), + [anon_sym_protected] = ACTIONS(3607), + [anon_sym_override] = ACTIONS(3607), + [anon_sym_module] = ACTIONS(3607), + [anon_sym_any] = ACTIONS(3607), + [anon_sym_number] = ACTIONS(3607), + [anon_sym_boolean] = ACTIONS(3607), + [anon_sym_string] = ACTIONS(3607), + [anon_sym_symbol] = ACTIONS(3607), + [anon_sym_object] = ACTIONS(3607), + [anon_sym_abstract] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_interface] = ACTIONS(3607), + [anon_sym_enum] = ACTIONS(3607), [sym_html_comment] = ACTIONS(5), }, [1581] = { [sym_comment] = STATE(1581), - [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_typeof] = ACTIONS(3618), - [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), + [sym_identifier] = ACTIONS(3607), + [anon_sym_export] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_namespace] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_typeof] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3607), + [anon_sym_let] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_switch] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3607), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_debugger] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_throw] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3607), + [anon_sym_LTtemplate_GT] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_using] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3607), + [sym_number] = ACTIONS(3607), + [sym_private_property_identifier] = ACTIONS(3607), + [sym_this] = ACTIONS(3607), + [sym_super] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_null] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [anon_sym_AT] = ACTIONS(3607), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_get] = ACTIONS(3607), + [anon_sym_set] = ACTIONS(3607), + [anon_sym_declare] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_private] = ACTIONS(3607), + [anon_sym_protected] = ACTIONS(3607), + [anon_sym_override] = ACTIONS(3607), + [anon_sym_module] = ACTIONS(3607), + [anon_sym_any] = ACTIONS(3607), + [anon_sym_number] = ACTIONS(3607), + [anon_sym_boolean] = ACTIONS(3607), + [anon_sym_string] = ACTIONS(3607), + [anon_sym_symbol] = ACTIONS(3607), + [anon_sym_object] = ACTIONS(3607), + [anon_sym_abstract] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_interface] = ACTIONS(3607), + [anon_sym_enum] = ACTIONS(3607), [sym_html_comment] = ACTIONS(5), }, [1582] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1582), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3607), + [anon_sym_export] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_namespace] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_typeof] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3607), + [anon_sym_let] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_switch] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3607), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_debugger] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_throw] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3607), + [anon_sym_LTtemplate_GT] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_using] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3607), + [sym_number] = ACTIONS(3607), + [sym_private_property_identifier] = ACTIONS(3607), + [sym_this] = ACTIONS(3607), + [sym_super] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_null] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [anon_sym_AT] = ACTIONS(3607), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_get] = ACTIONS(3607), + [anon_sym_set] = ACTIONS(3607), + [anon_sym_declare] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_private] = ACTIONS(3607), + [anon_sym_protected] = ACTIONS(3607), + [anon_sym_override] = ACTIONS(3607), + [anon_sym_module] = ACTIONS(3607), + [anon_sym_any] = ACTIONS(3607), + [anon_sym_number] = ACTIONS(3607), + [anon_sym_boolean] = ACTIONS(3607), + [anon_sym_string] = ACTIONS(3607), + [anon_sym_symbol] = ACTIONS(3607), + [anon_sym_object] = ACTIONS(3607), + [anon_sym_abstract] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_interface] = ACTIONS(3607), + [anon_sym_enum] = ACTIONS(3607), [sym_html_comment] = ACTIONS(5), }, [1583] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1583), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3622), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3081), + [anon_sym_export] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_namespace] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_typeof] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_var] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_const] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_switch] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_await] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_debugger] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_throw] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LTtemplate_GT] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_using] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_SLASH] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_void] = ACTIONS(3081), + [anon_sym_delete] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3081), + [sym_number] = ACTIONS(3081), + [sym_private_property_identifier] = ACTIONS(3081), + [sym_this] = ACTIONS(3081), + [sym_super] = ACTIONS(3081), + [sym_true] = ACTIONS(3081), + [sym_false] = ACTIONS(3081), + [sym_null] = ACTIONS(3081), + [sym_undefined] = ACTIONS(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_get] = ACTIONS(3081), + [anon_sym_set] = ACTIONS(3081), + [anon_sym_declare] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_protected] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3081), + [anon_sym_number] = ACTIONS(3081), + [anon_sym_boolean] = ACTIONS(3081), + [anon_sym_string] = ACTIONS(3081), + [anon_sym_symbol] = ACTIONS(3081), + [anon_sym_object] = ACTIONS(3081), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_global] = ACTIONS(3081), + [anon_sym_interface] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(3081), [sym_html_comment] = ACTIONS(5), }, [1584] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1584), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3607), + [anon_sym_export] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_namespace] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_typeof] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3607), + [anon_sym_let] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_switch] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3607), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_debugger] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_throw] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3607), + [anon_sym_LTtemplate_GT] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_using] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3607), + [sym_number] = ACTIONS(3607), + [sym_private_property_identifier] = ACTIONS(3607), + [sym_this] = ACTIONS(3607), + [sym_super] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_null] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [anon_sym_AT] = ACTIONS(3607), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_get] = ACTIONS(3607), + [anon_sym_set] = ACTIONS(3607), + [anon_sym_declare] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_private] = ACTIONS(3607), + [anon_sym_protected] = ACTIONS(3607), + [anon_sym_override] = ACTIONS(3607), + [anon_sym_module] = ACTIONS(3607), + [anon_sym_any] = ACTIONS(3607), + [anon_sym_number] = ACTIONS(3607), + [anon_sym_boolean] = ACTIONS(3607), + [anon_sym_string] = ACTIONS(3607), + [anon_sym_symbol] = ACTIONS(3607), + [anon_sym_object] = ACTIONS(3607), + [anon_sym_abstract] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_interface] = ACTIONS(3607), + [anon_sym_enum] = ACTIONS(3607), [sym_html_comment] = ACTIONS(5), }, [1585] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1585), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5716), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1586] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1586), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3607), + [anon_sym_export] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_namespace] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_typeof] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3607), + [anon_sym_let] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_switch] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3607), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_debugger] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_throw] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3607), + [anon_sym_LTtemplate_GT] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_using] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3607), + [sym_number] = ACTIONS(3607), + [sym_private_property_identifier] = ACTIONS(3607), + [sym_this] = ACTIONS(3607), + [sym_super] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_null] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [anon_sym_AT] = ACTIONS(3607), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_get] = ACTIONS(3607), + [anon_sym_set] = ACTIONS(3607), + [anon_sym_declare] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_private] = ACTIONS(3607), + [anon_sym_protected] = ACTIONS(3607), + [anon_sym_override] = ACTIONS(3607), + [anon_sym_module] = ACTIONS(3607), + [anon_sym_any] = ACTIONS(3607), + [anon_sym_number] = ACTIONS(3607), + [anon_sym_boolean] = ACTIONS(3607), + [anon_sym_string] = ACTIONS(3607), + [anon_sym_symbol] = ACTIONS(3607), + [anon_sym_object] = ACTIONS(3607), + [anon_sym_abstract] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_interface] = ACTIONS(3607), + [anon_sym_enum] = ACTIONS(3607), [sym_html_comment] = ACTIONS(5), }, [1587] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1587), - [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_typeof] = ACTIONS(3616), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6255), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(3621), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3623), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1588] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1588), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3607), + [anon_sym_export] = ACTIONS(3607), + [anon_sym_type] = ACTIONS(3607), + [anon_sym_namespace] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_typeof] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3607), + [anon_sym_let] = ACTIONS(3607), + [anon_sym_const] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_switch] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3607), + [anon_sym_await] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_debugger] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_throw] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3607), + [anon_sym_LTtemplate_GT] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_class] = ACTIONS(3607), + [anon_sym_async] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3607), + [anon_sym_using] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3607), + [sym_number] = ACTIONS(3607), + [sym_private_property_identifier] = ACTIONS(3607), + [sym_this] = ACTIONS(3607), + [sym_super] = ACTIONS(3607), + [sym_true] = ACTIONS(3607), + [sym_false] = ACTIONS(3607), + [sym_null] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [anon_sym_AT] = ACTIONS(3607), + [anon_sym_static] = ACTIONS(3607), + [anon_sym_readonly] = ACTIONS(3607), + [anon_sym_get] = ACTIONS(3607), + [anon_sym_set] = ACTIONS(3607), + [anon_sym_declare] = ACTIONS(3607), + [anon_sym_public] = ACTIONS(3607), + [anon_sym_private] = ACTIONS(3607), + [anon_sym_protected] = ACTIONS(3607), + [anon_sym_override] = ACTIONS(3607), + [anon_sym_module] = ACTIONS(3607), + [anon_sym_any] = ACTIONS(3607), + [anon_sym_number] = ACTIONS(3607), + [anon_sym_boolean] = ACTIONS(3607), + [anon_sym_string] = ACTIONS(3607), + [anon_sym_symbol] = ACTIONS(3607), + [anon_sym_object] = ACTIONS(3607), + [anon_sym_abstract] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3607), + [anon_sym_interface] = ACTIONS(3607), + [anon_sym_enum] = ACTIONS(3607), [sym_html_comment] = ACTIONS(5), }, [1589] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1589), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(5685), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1590] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), [sym_comment] = STATE(1590), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_identifier] = ACTIONS(3123), + [anon_sym_export] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_typeof] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_var] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_debugger] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LTtemplate_GT] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_void] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3123), + [sym_number] = ACTIONS(3123), + [sym_private_property_identifier] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [sym_super] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_AT] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3123), + [anon_sym_set] = ACTIONS(3123), + [anon_sym_declare] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_private] = ACTIONS(3123), + [anon_sym_protected] = ACTIONS(3123), + [anon_sym_override] = ACTIONS(3123), + [anon_sym_module] = ACTIONS(3123), + [anon_sym_any] = ACTIONS(3123), + [anon_sym_number] = ACTIONS(3123), + [anon_sym_boolean] = ACTIONS(3123), + [anon_sym_string] = ACTIONS(3123), + [anon_sym_symbol] = ACTIONS(3123), + [anon_sym_object] = ACTIONS(3123), + [anon_sym_abstract] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_interface] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), [sym_html_comment] = ACTIONS(5), }, [1591] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1591), - [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_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_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_abstract] = ACTIONS(3636), - [anon_sym_interface] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1592] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1592), - [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_typeof] = ACTIONS(3616), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1593] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1593), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3633), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1594] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1594), - [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_typeof] = ACTIONS(3616), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1595] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1595), - [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_typeof] = ACTIONS(3616), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1596] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1596), - [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_typeof] = ACTIONS(3616), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1597] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1597), - [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_typeof] = ACTIONS(3640), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3640), - [anon_sym_interface] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1598] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1598), - [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_typeof] = ACTIONS(3616), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3643), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1599] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1599), - [sym_identifier] = ACTIONS(3102), - [anon_sym_export] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_with] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [anon_sym_let] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_await] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_debugger] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_yield] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_LTtemplate_GT] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_async] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - [sym_super] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_null] = ACTIONS(3102), - [sym_undefined] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_readonly] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_declare] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_module] = ACTIONS(3102), - [anon_sym_any] = ACTIONS(3102), - [anon_sym_number] = ACTIONS(3102), - [anon_sym_boolean] = ACTIONS(3102), - [anon_sym_string] = ACTIONS(3102), - [anon_sym_symbol] = ACTIONS(3102), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_abstract] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3645), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1600] = { + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1600), - [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_typeof] = ACTIONS(3616), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1601] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1601), - [sym_formal_parameters] = STATE(7020), - [sym_rest_pattern] = STATE(6795), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6793), - [sym_optional_tuple_parameter] = STATE(6793), - [sym_optional_type] = STATE(6793), - [sym_rest_type] = STATE(6793), - [sym__tuple_type_member] = STATE(6337), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4259), + [sym__type_query_call_expression_in_type_annotation] = STATE(4435), + [sym_asserts] = STATE(6726), + [sym__type] = STATE(4257), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_predicate] = STATE(6735), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3682), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(3651), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_asserts] = ACTIONS(3653), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1602] = { - [sym_import] = STATE(6289), - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_import] = STATE(5679), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1602), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type_query_member_expression_in_type_annotation] = STATE(4039), - [sym__type_query_call_expression_in_type_annotation] = STATE(4329), - [sym_asserts] = STATE(4755), - [sym__type] = STATE(4036), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_predicate] = STATE(4749), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3967), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(3644), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_asserts] = ACTIONS(3646), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type_query_member_expression_in_type_annotation] = STATE(4340), + [sym__type_query_call_expression_in_type_annotation] = STATE(4772), + [sym_asserts] = STATE(5154), + [sym__type] = STATE(4341), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_predicate] = STATE(5152), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4068), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(3687), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_asserts] = ACTIONS(3695), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1603] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1603), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4109), - [sym__type_query_call_expression_in_type_annotation] = STATE(4581), - [sym_asserts] = STATE(6913), - [sym__type] = STATE(4110), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_predicate] = STATE(6338), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3681), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3650), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_asserts] = ACTIONS(3652), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_rest_pattern] = STATE(6960), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4763), + [sym_tuple_parameter] = STATE(6959), + [sym_optional_tuple_parameter] = STATE(6959), + [sym_optional_type] = STATE(6959), + [sym_rest_type] = STATE(6959), + [sym__tuple_type_member] = STATE(6612), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1604] = { - [sym_import] = STATE(5675), - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_import] = STATE(5998), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1604), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type_query_member_expression_in_type_annotation] = STATE(4311), - [sym__type_query_call_expression_in_type_annotation] = STATE(4762), - [sym_asserts] = STATE(5050), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_predicate] = STATE(5036), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4050), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_asserts] = ACTIONS(3694), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type_query_member_expression_in_type_annotation] = STATE(4049), + [sym__type_query_call_expression_in_type_annotation] = STATE(4312), + [sym_asserts] = STATE(4773), + [sym__type] = STATE(4050), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_predicate] = STATE(4774), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(3915), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(3703), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(3705), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_asserts] = ACTIONS(3707), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1605] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1605), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3709), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1606] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1606), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3711), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1607] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1607), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3713), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1608] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1608), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1609] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1609), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1610] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1610), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1611] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1611), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3714), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3721), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1612] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1612), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1613] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1613), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3718), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1614] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1614), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3720), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3727), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1615] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1615), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3722), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3729), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1616] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1616), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3731), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1617] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1617), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3726), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3733), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1618] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1618), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3735), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1619] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1619), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3737), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1620] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1620), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3739), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1621] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1621), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1622] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1622), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3736), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1623] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1623), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3738), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3745), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1624] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1624), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3740), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3747), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1625] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1625), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3749), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1626] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1626), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3751), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1627] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1627), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3746), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1628] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1628), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3748), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3755), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1629] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1629), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3750), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1630] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1630), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3752), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1631] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1631), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3754), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3761), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1632] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1632), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3756), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3763), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1633] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1633), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3765), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1634] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1634), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3767), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1635] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1635), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3762), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3769), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1636] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1636), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3764), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3771), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1637] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1637), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3766), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3773), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1638] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1638), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3775), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1639] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1639), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3770), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3777), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1640] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1640), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3772), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3779), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1641] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1641), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3774), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3781), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1642] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1642), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3776), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3783), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1643] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1643), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3778), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3785), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1644] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1644), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3780), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3787), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1645] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1645), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3782), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3789), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1646] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1646), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(3791), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1647] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1647), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4622), - [sym__type_query_call_expression_in_type_annotation] = STATE(5620), - [sym__type] = STATE(4623), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4259), + [sym__type_query_call_expression_in_type_annotation] = STATE(4435), + [sym__type] = STATE(4257), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1648] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1648), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4109), - [sym__type_query_call_expression_in_type_annotation] = STATE(4581), - [sym__type] = STATE(4110), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4655), + [sym__type_query_call_expression_in_type_annotation] = STATE(5413), + [sym__type] = STATE(4658), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1649] = { - [sym_import] = STATE(6289), - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1649), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type_query_member_expression_in_type_annotation] = STATE(4039), - [sym__type_query_call_expression_in_type_annotation] = STATE(4329), - [sym__type] = STATE(4036), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4770), + [sym__type_query_call_expression_in_type_annotation] = STATE(5632), + [sym__type] = STATE(4771), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1650] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1650), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4748), - [sym__type_query_call_expression_in_type_annotation] = STATE(5511), - [sym__type] = STATE(4752), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4705), + [sym__type_query_call_expression_in_type_annotation] = STATE(5465), + [sym__type] = STATE(4722), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1651] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1651), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4726), - [sym__type_query_call_expression_in_type_annotation] = STATE(5502), - [sym__type] = STATE(4727), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4701), + [sym__type_query_call_expression_in_type_annotation] = STATE(5576), + [sym__type] = STATE(4717), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1652] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1652), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4689), - [sym__type_query_call_expression_in_type_annotation] = STATE(5461), - [sym__type] = STATE(4691), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4647), + [sym__type_query_call_expression_in_type_annotation] = STATE(5512), + [sym__type] = STATE(4646), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1653] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1653), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4756), - [sym__type_query_call_expression_in_type_annotation] = STATE(5534), - [sym__type] = STATE(4757), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4698), + [sym__type_query_call_expression_in_type_annotation] = STATE(5451), + [sym__type] = STATE(4699), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1654] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1654), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(5123), - [sym__type_query_call_expression_in_type_annotation] = STATE(6325), - [sym__type] = STATE(5132), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(5196), + [sym__type_query_call_expression_in_type_annotation] = STATE(5901), + [sym__type] = STATE(5197), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1655] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5998), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1655), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4650), - [sym__type_query_call_expression_in_type_annotation] = STATE(5414), - [sym__type] = STATE(4651), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type_query_member_expression_in_type_annotation] = STATE(4049), + [sym__type_query_call_expression_in_type_annotation] = STATE(4312), + [sym__type] = STATE(4050), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1656] = { - [sym_import] = STATE(5883), - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_import] = STATE(5939), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1656), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type_query_member_expression_in_type_annotation] = STATE(4699), - [sym__type_query_call_expression_in_type_annotation] = STATE(5467), - [sym__type] = STATE(4698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type_query_member_expression_in_type_annotation] = STATE(4648), + [sym__type_query_call_expression_in_type_annotation] = STATE(5444), + [sym__type] = STATE(4645), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1657] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1657), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym_asserts] = STATE(4229), - [sym__type] = STATE(4233), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_predicate] = STATE(4229), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4050), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_asserts] = ACTIONS(3694), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym_asserts] = STATE(3727), + [sym__type] = STATE(3726), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_predicate] = STATE(3727), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3682), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(3651), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_asserts] = ACTIONS(3653), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1658] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1658), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym_asserts] = STATE(2290), - [sym__type] = STATE(2233), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_predicate] = STATE(2290), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2217), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(3786), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(3814), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_asserts] = ACTIONS(3822), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym_asserts] = STATE(3987), + [sym__type] = STATE(3986), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_predicate] = STATE(3987), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(3915), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(3703), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(3705), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_asserts] = ACTIONS(3707), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1659] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1659), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym_asserts] = STATE(3997), - [sym__type] = STATE(3987), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_predicate] = STATE(3997), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3967), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(3644), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_asserts] = ACTIONS(3646), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym_asserts] = STATE(4141), + [sym__type] = STATE(4138), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_predicate] = STATE(4141), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4068), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(3687), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_asserts] = ACTIONS(3695), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1660] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1660), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym_asserts] = STATE(2768), - [sym__type] = STATE(2767), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_predicate] = STATE(2768), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2584), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(3858), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_asserts] = ACTIONS(3866), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym_asserts] = STATE(2322), + [sym__type] = STATE(2274), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_predicate] = STATE(2322), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2221), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(3821), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_asserts] = ACTIONS(3829), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1661] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1661), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym_asserts] = STATE(2372), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_predicate] = STATE(2372), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2217), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(3786), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(3814), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_asserts] = ACTIONS(3822), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym_asserts] = STATE(2824), + [sym__type] = STATE(2826), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_predicate] = STATE(2824), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2629), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(3837), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(3865), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_asserts] = ACTIONS(3873), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1662] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1662), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym_asserts] = STATE(3764), - [sym__type] = STATE(3763), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_predicate] = STATE(3764), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3681), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3650), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_asserts] = ACTIONS(3652), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym_asserts] = STATE(4002), + [sym__type] = STATE(4006), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_predicate] = STATE(4002), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(3915), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(3703), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(3705), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_asserts] = ACTIONS(3707), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1663] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1663), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym_asserts] = STATE(3786), - [sym__type] = STATE(3787), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_predicate] = STATE(3786), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3681), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3650), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_asserts] = ACTIONS(3652), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym_asserts] = STATE(2375), + [sym__type] = STATE(2293), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_predicate] = STATE(2375), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2221), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(3821), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_asserts] = ACTIONS(3829), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1664] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1664), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym_asserts] = STATE(2806), - [sym__type] = STATE(2805), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_predicate] = STATE(2806), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2584), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym_asserts] = STATE(2917), + [sym__type] = STATE(2786), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_predicate] = STATE(2917), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2629), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(3837), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(3858), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_asserts] = ACTIONS(3866), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(3865), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_asserts] = ACTIONS(3873), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1665] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1665), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym_asserts] = STATE(3970), - [sym__type] = STATE(3974), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_predicate] = STATE(3970), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3967), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(3644), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_asserts] = ACTIONS(3646), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym_asserts] = STATE(3699), + [sym__type] = STATE(3700), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_predicate] = STATE(3699), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3682), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(3651), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_asserts] = ACTIONS(3653), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1666] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1666), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym_asserts] = STATE(4203), - [sym__type] = STATE(4194), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_predicate] = STATE(4203), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4050), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_asserts] = ACTIONS(3694), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym_asserts] = STATE(4207), + [sym__type] = STATE(4199), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_predicate] = STATE(4207), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4068), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(3687), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_asserts] = ACTIONS(3695), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1667] = { - [sym_export_statement] = STATE(4658), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1667), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4658), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4658), - [sym_property_signature] = STATE(4658), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4658), - [sym_index_signature] = STATE(4658), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3874), - [anon_sym_export] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3874), - [anon_sym_namespace] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3892), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3881), + [anon_sym_export] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3881), + [anon_sym_namespace] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3891), + [anon_sym_let] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3900), - [anon_sym_readonly] = ACTIONS(3902), - [anon_sym_get] = ACTIONS(3904), - [anon_sym_set] = ACTIONS(3904), - [anon_sym_declare] = ACTIONS(3874), - [anon_sym_public] = ACTIONS(3906), - [anon_sym_private] = ACTIONS(3906), - [anon_sym_protected] = ACTIONS(3906), - [anon_sym_override] = ACTIONS(3908), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_any] = ACTIONS(3874), - [anon_sym_number] = ACTIONS(3874), - [anon_sym_boolean] = ACTIONS(3874), - [anon_sym_string] = ACTIONS(3874), - [anon_sym_symbol] = ACTIONS(3874), - [anon_sym_object] = ACTIONS(3874), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_static] = ACTIONS(3907), + [anon_sym_readonly] = ACTIONS(3909), + [anon_sym_get] = ACTIONS(3911), + [anon_sym_set] = ACTIONS(3911), + [anon_sym_declare] = ACTIONS(3881), + [anon_sym_public] = ACTIONS(3913), + [anon_sym_private] = ACTIONS(3913), + [anon_sym_protected] = ACTIONS(3913), + [anon_sym_override] = ACTIONS(3915), + [anon_sym_module] = ACTIONS(3881), + [anon_sym_any] = ACTIONS(3881), + [anon_sym_number] = ACTIONS(3881), + [anon_sym_boolean] = ACTIONS(3881), + [anon_sym_string] = ACTIONS(3881), + [anon_sym_symbol] = ACTIONS(3881), + [anon_sym_object] = ACTIONS(3881), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1668] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1668), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3874), - [anon_sym_export] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3874), - [anon_sym_namespace] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3916), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3892), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3900), - [anon_sym_readonly] = ACTIONS(3902), - [anon_sym_get] = ACTIONS(3904), - [anon_sym_set] = ACTIONS(3904), - [anon_sym_declare] = ACTIONS(3874), - [anon_sym_public] = ACTIONS(3906), - [anon_sym_private] = ACTIONS(3906), - [anon_sym_protected] = ACTIONS(3906), - [anon_sym_override] = ACTIONS(3908), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_any] = ACTIONS(3874), - [anon_sym_number] = ACTIONS(3874), - [anon_sym_boolean] = ACTIONS(3874), - [anon_sym_string] = ACTIONS(3874), - [anon_sym_symbol] = ACTIONS(3874), - [anon_sym_object] = ACTIONS(3874), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_readonly] = ACTIONS(3933), + [anon_sym_get] = ACTIONS(3935), + [anon_sym_set] = ACTIONS(3935), + [anon_sym_declare] = ACTIONS(3921), + [anon_sym_public] = ACTIONS(3937), + [anon_sym_private] = ACTIONS(3937), + [anon_sym_protected] = ACTIONS(3937), + [anon_sym_override] = ACTIONS(3939), + [anon_sym_module] = ACTIONS(3921), + [anon_sym_any] = ACTIONS(3921), + [anon_sym_number] = ACTIONS(3921), + [anon_sym_boolean] = ACTIONS(3921), + [anon_sym_string] = ACTIONS(3921), + [anon_sym_symbol] = ACTIONS(3921), + [anon_sym_object] = ACTIONS(3921), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1669] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4629), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1669), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3874), - [anon_sym_export] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3874), - [anon_sym_namespace] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3922), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3892), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4629), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4629), + [sym_property_signature] = STATE(4629), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4629), + [sym_index_signature] = STATE(4629), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3881), + [anon_sym_export] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3881), + [anon_sym_namespace] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3941), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_let] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3900), - [anon_sym_readonly] = ACTIONS(3902), - [anon_sym_get] = ACTIONS(3904), - [anon_sym_set] = ACTIONS(3904), - [anon_sym_declare] = ACTIONS(3874), - [anon_sym_public] = ACTIONS(3906), - [anon_sym_private] = ACTIONS(3906), - [anon_sym_protected] = ACTIONS(3906), - [anon_sym_override] = ACTIONS(3908), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_any] = ACTIONS(3874), - [anon_sym_number] = ACTIONS(3874), - [anon_sym_boolean] = ACTIONS(3874), - [anon_sym_string] = ACTIONS(3874), - [anon_sym_symbol] = ACTIONS(3874), - [anon_sym_object] = ACTIONS(3874), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3907), + [anon_sym_readonly] = ACTIONS(3909), + [anon_sym_get] = ACTIONS(3911), + [anon_sym_set] = ACTIONS(3911), + [anon_sym_declare] = ACTIONS(3881), + [anon_sym_public] = ACTIONS(3913), + [anon_sym_private] = ACTIONS(3913), + [anon_sym_protected] = ACTIONS(3913), + [anon_sym_override] = ACTIONS(3915), + [anon_sym_module] = ACTIONS(3881), + [anon_sym_any] = ACTIONS(3881), + [anon_sym_number] = ACTIONS(3881), + [anon_sym_boolean] = ACTIONS(3881), + [anon_sym_string] = ACTIONS(3881), + [anon_sym_symbol] = ACTIONS(3881), + [anon_sym_object] = ACTIONS(3881), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3947), [sym_html_comment] = ACTIONS(5), }, [1670] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5828), + [sym_string] = STATE(4000), [sym_comment] = STATE(1670), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3924), - [anon_sym_export] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3924), - [anon_sym_namespace] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3916), - [anon_sym_let] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3928), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5828), + [sym_pair] = STATE(5828), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5925), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3949), + [anon_sym_export] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3949), + [anon_sym_namespace] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3932), - [anon_sym_readonly] = ACTIONS(3934), - [anon_sym_get] = ACTIONS(3936), - [anon_sym_set] = ACTIONS(3936), - [anon_sym_declare] = ACTIONS(3924), - [anon_sym_public] = ACTIONS(3938), - [anon_sym_private] = ACTIONS(3938), - [anon_sym_protected] = ACTIONS(3938), - [anon_sym_override] = ACTIONS(3940), - [anon_sym_module] = ACTIONS(3924), - [anon_sym_any] = ACTIONS(3924), - [anon_sym_number] = ACTIONS(3924), - [anon_sym_boolean] = ACTIONS(3924), - [anon_sym_string] = ACTIONS(3924), - [anon_sym_symbol] = ACTIONS(3924), - [anon_sym_object] = ACTIONS(3924), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_readonly] = ACTIONS(3961), + [anon_sym_get] = ACTIONS(3963), + [anon_sym_set] = ACTIONS(3963), + [anon_sym_declare] = ACTIONS(3949), + [anon_sym_public] = ACTIONS(3965), + [anon_sym_private] = ACTIONS(3965), + [anon_sym_protected] = ACTIONS(3965), + [anon_sym_override] = ACTIONS(3967), + [anon_sym_module] = ACTIONS(3949), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1671] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(5682), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1671), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(5682), - [sym_pair] = STATE(5682), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(5700), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3942), - [anon_sym_export] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3942), - [anon_sym_namespace] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3946), - [anon_sym_let] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3948), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3881), + [anon_sym_export] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3881), + [anon_sym_namespace] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3952), - [anon_sym_readonly] = ACTIONS(3954), - [anon_sym_get] = ACTIONS(3956), - [anon_sym_set] = ACTIONS(3956), - [anon_sym_declare] = ACTIONS(3942), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_override] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3942), - [anon_sym_any] = ACTIONS(3942), - [anon_sym_number] = ACTIONS(3942), - [anon_sym_boolean] = ACTIONS(3942), - [anon_sym_string] = ACTIONS(3942), - [anon_sym_symbol] = ACTIONS(3942), - [anon_sym_object] = ACTIONS(3942), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3907), + [anon_sym_readonly] = ACTIONS(3909), + [anon_sym_get] = ACTIONS(3911), + [anon_sym_set] = ACTIONS(3911), + [anon_sym_declare] = ACTIONS(3881), + [anon_sym_public] = ACTIONS(3913), + [anon_sym_private] = ACTIONS(3913), + [anon_sym_protected] = ACTIONS(3913), + [anon_sym_override] = ACTIONS(3915), + [anon_sym_module] = ACTIONS(3881), + [anon_sym_any] = ACTIONS(3881), + [anon_sym_number] = ACTIONS(3881), + [anon_sym_boolean] = ACTIONS(3881), + [anon_sym_string] = ACTIONS(3881), + [anon_sym_symbol] = ACTIONS(3881), + [anon_sym_object] = ACTIONS(3881), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1672] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1672), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3962), - [anon_sym_namespace] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3922), - [anon_sym_let] = ACTIONS(3962), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3966), - [anon_sym_new] = ACTIONS(3968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3971), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3971), + [anon_sym_namespace] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_let] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_readonly] = ACTIONS(3972), - [anon_sym_get] = ACTIONS(3974), - [anon_sym_set] = ACTIONS(3974), - [anon_sym_declare] = ACTIONS(3962), - [anon_sym_public] = ACTIONS(3976), - [anon_sym_private] = ACTIONS(3976), - [anon_sym_protected] = ACTIONS(3976), - [anon_sym_override] = ACTIONS(3978), - [anon_sym_module] = ACTIONS(3962), - [anon_sym_any] = ACTIONS(3962), - [anon_sym_number] = ACTIONS(3962), - [anon_sym_boolean] = ACTIONS(3962), - [anon_sym_string] = ACTIONS(3962), - [anon_sym_symbol] = ACTIONS(3962), - [anon_sym_object] = ACTIONS(3962), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_readonly] = ACTIONS(3983), + [anon_sym_get] = ACTIONS(3985), + [anon_sym_set] = ACTIONS(3985), + [anon_sym_declare] = ACTIONS(3971), + [anon_sym_public] = ACTIONS(3987), + [anon_sym_private] = ACTIONS(3987), + [anon_sym_protected] = ACTIONS(3987), + [anon_sym_override] = ACTIONS(3989), + [anon_sym_module] = ACTIONS(3971), + [anon_sym_any] = ACTIONS(3971), + [anon_sym_number] = ACTIONS(3971), + [anon_sym_boolean] = ACTIONS(3971), + [anon_sym_string] = ACTIONS(3971), + [anon_sym_symbol] = ACTIONS(3971), + [anon_sym_object] = ACTIONS(3971), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1673] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(5682), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1673), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(5682), - [sym_pair] = STATE(5682), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(5700), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3942), - [anon_sym_export] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3942), - [anon_sym_namespace] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_let] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3948), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3971), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3971), + [anon_sym_namespace] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3991), + [anon_sym_let] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3952), - [anon_sym_readonly] = ACTIONS(3954), - [anon_sym_get] = ACTIONS(3956), - [anon_sym_set] = ACTIONS(3956), - [anon_sym_declare] = ACTIONS(3942), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_override] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3942), - [anon_sym_any] = ACTIONS(3942), - [anon_sym_number] = ACTIONS(3942), - [anon_sym_boolean] = ACTIONS(3942), - [anon_sym_string] = ACTIONS(3942), - [anon_sym_symbol] = ACTIONS(3942), - [anon_sym_object] = ACTIONS(3942), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_readonly] = ACTIONS(3983), + [anon_sym_get] = ACTIONS(3985), + [anon_sym_set] = ACTIONS(3985), + [anon_sym_declare] = ACTIONS(3971), + [anon_sym_public] = ACTIONS(3987), + [anon_sym_private] = ACTIONS(3987), + [anon_sym_protected] = ACTIONS(3987), + [anon_sym_override] = ACTIONS(3989), + [anon_sym_module] = ACTIONS(3971), + [anon_sym_any] = ACTIONS(3971), + [anon_sym_number] = ACTIONS(3971), + [anon_sym_boolean] = ACTIONS(3971), + [anon_sym_string] = ACTIONS(3971), + [anon_sym_symbol] = ACTIONS(3971), + [anon_sym_object] = ACTIONS(3971), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1674] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1674), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3874), - [anon_sym_export] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3874), - [anon_sym_namespace] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3982), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3892), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3971), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3971), + [anon_sym_namespace] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3891), + [anon_sym_let] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3900), - [anon_sym_readonly] = ACTIONS(3902), - [anon_sym_get] = ACTIONS(3904), - [anon_sym_set] = ACTIONS(3904), - [anon_sym_declare] = ACTIONS(3874), - [anon_sym_public] = ACTIONS(3906), - [anon_sym_private] = ACTIONS(3906), - [anon_sym_protected] = ACTIONS(3906), - [anon_sym_override] = ACTIONS(3908), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_any] = ACTIONS(3874), - [anon_sym_number] = ACTIONS(3874), - [anon_sym_boolean] = ACTIONS(3874), - [anon_sym_string] = ACTIONS(3874), - [anon_sym_symbol] = ACTIONS(3874), - [anon_sym_object] = ACTIONS(3874), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_readonly] = ACTIONS(3983), + [anon_sym_get] = ACTIONS(3985), + [anon_sym_set] = ACTIONS(3985), + [anon_sym_declare] = ACTIONS(3971), + [anon_sym_public] = ACTIONS(3987), + [anon_sym_private] = ACTIONS(3987), + [anon_sym_protected] = ACTIONS(3987), + [anon_sym_override] = ACTIONS(3989), + [anon_sym_module] = ACTIONS(3971), + [anon_sym_any] = ACTIONS(3971), + [anon_sym_number] = ACTIONS(3971), + [anon_sym_boolean] = ACTIONS(3971), + [anon_sym_string] = ACTIONS(3971), + [anon_sym_symbol] = ACTIONS(3971), + [anon_sym_object] = ACTIONS(3971), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1675] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5828), + [sym_string] = STATE(4000), [sym_comment] = STATE(1675), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3924), - [anon_sym_export] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3924), - [anon_sym_namespace] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3984), - [anon_sym_let] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3928), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5828), + [sym_pair] = STATE(5828), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5925), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3949), + [anon_sym_export] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3949), + [anon_sym_namespace] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3932), - [anon_sym_readonly] = ACTIONS(3934), - [anon_sym_get] = ACTIONS(3936), - [anon_sym_set] = ACTIONS(3936), - [anon_sym_declare] = ACTIONS(3924), - [anon_sym_public] = ACTIONS(3938), - [anon_sym_private] = ACTIONS(3938), - [anon_sym_protected] = ACTIONS(3938), - [anon_sym_override] = ACTIONS(3940), - [anon_sym_module] = ACTIONS(3924), - [anon_sym_any] = ACTIONS(3924), - [anon_sym_number] = ACTIONS(3924), - [anon_sym_boolean] = ACTIONS(3924), - [anon_sym_string] = ACTIONS(3924), - [anon_sym_symbol] = ACTIONS(3924), - [anon_sym_object] = ACTIONS(3924), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_readonly] = ACTIONS(3961), + [anon_sym_get] = ACTIONS(3963), + [anon_sym_set] = ACTIONS(3963), + [anon_sym_declare] = ACTIONS(3949), + [anon_sym_public] = ACTIONS(3965), + [anon_sym_private] = ACTIONS(3965), + [anon_sym_protected] = ACTIONS(3965), + [anon_sym_override] = ACTIONS(3967), + [anon_sym_module] = ACTIONS(3949), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1676] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1676), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3924), - [anon_sym_export] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3924), - [anon_sym_namespace] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3928), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3995), + [anon_sym_export] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3995), + [anon_sym_namespace] = ACTIONS(3995), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3999), + [anon_sym_let] = ACTIONS(3995), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(4001), + [anon_sym_new] = ACTIONS(4003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3932), - [anon_sym_readonly] = ACTIONS(3934), - [anon_sym_get] = ACTIONS(3936), - [anon_sym_set] = ACTIONS(3936), - [anon_sym_declare] = ACTIONS(3924), - [anon_sym_public] = ACTIONS(3938), - [anon_sym_private] = ACTIONS(3938), - [anon_sym_protected] = ACTIONS(3938), - [anon_sym_override] = ACTIONS(3940), - [anon_sym_module] = ACTIONS(3924), - [anon_sym_any] = ACTIONS(3924), - [anon_sym_number] = ACTIONS(3924), - [anon_sym_boolean] = ACTIONS(3924), - [anon_sym_string] = ACTIONS(3924), - [anon_sym_symbol] = ACTIONS(3924), - [anon_sym_object] = ACTIONS(3924), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_readonly] = ACTIONS(4007), + [anon_sym_get] = ACTIONS(4009), + [anon_sym_set] = ACTIONS(4009), + [anon_sym_declare] = ACTIONS(3995), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_override] = ACTIONS(4013), + [anon_sym_module] = ACTIONS(3995), + [anon_sym_any] = ACTIONS(3995), + [anon_sym_number] = ACTIONS(3995), + [anon_sym_boolean] = ACTIONS(3995), + [anon_sym_string] = ACTIONS(3995), + [anon_sym_symbol] = ACTIONS(3995), + [anon_sym_object] = ACTIONS(3995), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1677] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1677), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3988), - [anon_sym_export] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3988), - [anon_sym_namespace] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(3992), - [anon_sym_let] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3994), - [anon_sym_new] = ACTIONS(3996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_readonly] = ACTIONS(4000), - [anon_sym_get] = ACTIONS(4002), - [anon_sym_set] = ACTIONS(4002), - [anon_sym_declare] = ACTIONS(3988), - [anon_sym_public] = ACTIONS(4004), - [anon_sym_private] = ACTIONS(4004), - [anon_sym_protected] = ACTIONS(4004), - [anon_sym_override] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(3988), - [anon_sym_any] = ACTIONS(3988), - [anon_sym_number] = ACTIONS(3988), - [anon_sym_boolean] = ACTIONS(3988), - [anon_sym_string] = ACTIONS(3988), - [anon_sym_symbol] = ACTIONS(3988), - [anon_sym_object] = ACTIONS(3988), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_readonly] = ACTIONS(3933), + [anon_sym_get] = ACTIONS(3935), + [anon_sym_set] = ACTIONS(3935), + [anon_sym_declare] = ACTIONS(3921), + [anon_sym_public] = ACTIONS(3937), + [anon_sym_private] = ACTIONS(3937), + [anon_sym_protected] = ACTIONS(3937), + [anon_sym_override] = ACTIONS(3939), + [anon_sym_module] = ACTIONS(3921), + [anon_sym_any] = ACTIONS(3921), + [anon_sym_number] = ACTIONS(3921), + [anon_sym_boolean] = ACTIONS(3921), + [anon_sym_string] = ACTIONS(3921), + [anon_sym_symbol] = ACTIONS(3921), + [anon_sym_object] = ACTIONS(3921), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1678] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(5680), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6204), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4760), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(5815), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(5736), + [sym_string] = STATE(4000), [sym_comment] = STATE(1678), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(5680), - [sym_method_definition] = STATE(6204), - [sym_pair] = STATE(6204), - [sym_pair_pattern] = STATE(5680), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5635), - [aux_sym_object_repeat1] = STATE(6207), - [aux_sym_object_pattern_repeat1] = STATE(5685), - [sym_identifier] = ACTIONS(3988), - [anon_sym_export] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3988), - [anon_sym_namespace] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3914), - [anon_sym_RBRACE] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3994), - [anon_sym_new] = ACTIONS(3996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(5815), + [sym_method_definition] = STATE(5736), + [sym_pair] = STATE(5736), + [sym_pair_pattern] = STATE(5815), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4760), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4760), + [sym_property_signature] = STATE(4760), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4760), + [sym_index_signature] = STATE(4760), + [aux_sym_export_statement_repeat1] = STATE(5555), + [aux_sym_object_repeat1] = STATE(5721), + [aux_sym_object_pattern_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(3881), + [anon_sym_export] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3881), + [anon_sym_namespace] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3999), + [anon_sym_let] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_readonly] = ACTIONS(4000), - [anon_sym_get] = ACTIONS(4002), - [anon_sym_set] = ACTIONS(4002), - [anon_sym_declare] = ACTIONS(3988), - [anon_sym_public] = ACTIONS(4004), - [anon_sym_private] = ACTIONS(4004), - [anon_sym_protected] = ACTIONS(4004), - [anon_sym_override] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(3988), - [anon_sym_any] = ACTIONS(3988), - [anon_sym_number] = ACTIONS(3988), - [anon_sym_boolean] = ACTIONS(3988), - [anon_sym_string] = ACTIONS(3988), - [anon_sym_symbol] = ACTIONS(3988), - [anon_sym_object] = ACTIONS(3988), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [anon_sym_static] = ACTIONS(3907), + [anon_sym_readonly] = ACTIONS(3909), + [anon_sym_get] = ACTIONS(3911), + [anon_sym_set] = ACTIONS(3911), + [anon_sym_declare] = ACTIONS(3881), + [anon_sym_public] = ACTIONS(3913), + [anon_sym_private] = ACTIONS(3913), + [anon_sym_protected] = ACTIONS(3913), + [anon_sym_override] = ACTIONS(3915), + [anon_sym_module] = ACTIONS(3881), + [anon_sym_any] = ACTIONS(3881), + [anon_sym_number] = ACTIONS(3881), + [anon_sym_boolean] = ACTIONS(3881), + [anon_sym_string] = ACTIONS(3881), + [anon_sym_symbol] = ACTIONS(3881), + [anon_sym_object] = ACTIONS(3881), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_PIPE_RBRACE] = ACTIONS(3919), [sym_html_comment] = ACTIONS(5), }, [1679] = { - [sym_variable_declarator] = STATE(5643), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4555), + [sym_nested_identifier] = STATE(1011), + [sym_string] = STATE(1260), [sym_comment] = STATE(1679), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(1544), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4019), + [anon_sym_SQUOTE] = ACTIONS(4021), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1680] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1680), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5562), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4795), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [sym_jsx_identifier] = ACTIONS(4025), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1681] = { - [sym_nested_identifier] = STATE(1071), - [sym_string] = STATE(1382), + [sym_variable_declarator] = STATE(5548), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4501), [sym_comment] = STATE(1681), - [sym__module] = STATE(1569), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4020), - [anon_sym_SQUOTE] = ACTIONS(4022), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1682] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1682), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5421), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5416), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(4033), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1683] = { - [sym_variable_declarator] = STATE(5643), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4555), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1683), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5430), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(4035), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1684] = { - [sym_nested_identifier] = STATE(361), - [sym_string] = STATE(366), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1684), - [sym__module] = STATE(447), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5522), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(4037), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1685] = { - [sym_nested_identifier] = STATE(1071), - [sym_string] = STATE(1382), + [sym_nested_identifier] = STATE(1011), + [sym_string] = STATE(1260), [sym_comment] = STATE(1685), - [sym__module] = STATE(1569), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4020), - [anon_sym_SQUOTE] = ACTIONS(4022), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(1544), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4019), + [anon_sym_SQUOTE] = ACTIONS(4021), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1686] = { - [sym_variable_declarator] = STATE(5643), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4555), + [sym_nested_identifier] = STATE(411), + [sym_string] = STATE(410), [sym_comment] = STATE(1686), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(460), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4041), + [anon_sym_SQUOTE] = ACTIONS(4043), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1687] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1687), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5469), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5475), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(4045), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1688] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(1011), + [sym_string] = STATE(1260), [sym_comment] = STATE(1688), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5510), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__module] = STATE(1544), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4019), + [anon_sym_SQUOTE] = ACTIONS(4021), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1689] = { - [sym_nested_identifier] = STATE(361), - [sym_string] = STATE(366), + [sym_variable_declarator] = STATE(5548), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4501), [sym_comment] = STATE(1689), - [sym__module] = STATE(447), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1690] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(411), + [sym_string] = STATE(410), [sym_comment] = STATE(1690), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5417), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__module] = STATE(460), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4041), + [anon_sym_SQUOTE] = ACTIONS(4043), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1691] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1691), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4834), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_jsx_identifier] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5601), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(4047), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1692] = { - [sym_nested_identifier] = STATE(1071), - [sym_string] = STATE(1382), + [sym_variable_declarator] = STATE(5548), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4501), [sym_comment] = STATE(1692), - [sym__module] = STATE(1569), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4020), - [anon_sym_SQUOTE] = ACTIONS(4022), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1693] = { - [sym_nested_identifier] = STATE(361), - [sym_string] = STATE(366), + [sym_nested_identifier] = STATE(411), + [sym_string] = STATE(410), [sym_comment] = STATE(1693), - [sym__module] = STATE(447), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(460), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4041), + [anon_sym_SQUOTE] = ACTIONS(4043), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1694] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1694), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(3975), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4196), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1695] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1695), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2706), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5117), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1696] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1696), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2326), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5507), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1697] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1697), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2771), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3722), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1698] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1698), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2770), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3723), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1699] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1699), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(6255), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(4100), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5168), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1700] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1700), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2359), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4294), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1701] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1701), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4834), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4293), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1702] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1702), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3718), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4289), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1703] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1703), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5089), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(6259), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(4288), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1704] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1704), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4018), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(6259), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(4284), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1705] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1705), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5348), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4027), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1706] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1706), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4021), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4978), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1707] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1707), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4001), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(3972), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1708] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1708), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5716), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(4000), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5208), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1709] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1709), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5716), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3989), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4015), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1710] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1710), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4175), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2771), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1711] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1711), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4173), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2385), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1712] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1712), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5544), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2767), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1713] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1713), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5273), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2762), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1714] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1714), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(6027), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3699), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(6170), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(2761), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1715] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1715), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5408), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3717), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1716] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1716), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2855), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(6170), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(2757), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1717] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1717), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2319), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2807), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1718] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1718), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5259), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4143), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1719] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1719), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2864), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(4054), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4328), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1720] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1720), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5233), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4326), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1721] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1721), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5217), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2720), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(4061), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1722] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1722), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3698), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5636), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1723] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1723), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4972), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4145), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1724] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1724), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(6027), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(5083), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(5537), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4331), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1725] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1725), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2318), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5630), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1726] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1726), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5366), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5006), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1727] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1727), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5423), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5696), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(5162), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(5525), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1728] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1728), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5472), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5019), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1729] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1729), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4008), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5403), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1730] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1730), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5422), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2316), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1731] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1731), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2247), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5392), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1732] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1732), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5379), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4032), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1733] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1733), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4869), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(3971), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1734] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1734), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5402), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2320), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1735] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1735), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3715), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4033), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1736] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1736), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3717), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5265), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1737] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1737), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3716), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(3985), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1738] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1738), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5431), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(3984), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1739] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1739), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3685), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5087), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1740] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1740), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5616), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3776), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1741] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1741), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5065), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4113), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1742] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1742), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2278), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3781), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1743] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1743), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4321), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5379), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1744] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1744), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4320), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5432), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1745] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1745), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4319), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4114), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1746] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1746), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2300), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5590), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1747] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1747), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2707), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5606), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1748] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1748), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(3999), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3725), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1749] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1749), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5535), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4675), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1750] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1750), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(6006), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(2378), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5434), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1751] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1751), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(6006), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(2380), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5720), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(4030), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1752] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1752), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2362), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5259), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1753] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1753), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2381), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5506), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1754] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1754), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2323), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5473), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1755] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1755), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3720), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2388), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1756] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1756), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5428), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4021), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1757] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1757), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2360), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4020), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1758] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1758), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2363), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5472), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1759] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1759), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4151), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2245), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1760] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1760), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5477), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2277), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1761] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1761), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5203), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4086), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1762] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1762), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5473), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5320), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1763] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1763), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4078), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(4795), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1764] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1764), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3762), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3732), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1765] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1765), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4252), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5211), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1766] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1766), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2242), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5409), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1767] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1767), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5583), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3734), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1768] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1768), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(6255), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(4097), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3783), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1769] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1769), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(6194), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(2879), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5505), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1770] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1770), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5019), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5644), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1771] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1771), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4095), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2827), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1772] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1772), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5556), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5720), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(4031), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1773] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1773), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(6194), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(2881), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2830), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1774] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1774), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4958), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5325), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1775] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1775), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(4722), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2281), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1776] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1776), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3771), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(6010), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(2384), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1777] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1777), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2744), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5427), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1778] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1778), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4073), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5467), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1779] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1779), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(3969), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4013), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1780] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1780), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5118), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(6010), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(2372), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1781] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1781), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3772), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4014), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1782] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1782), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4160), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5281), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1783] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1783), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4006), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5276), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1784] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1784), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4007), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4245), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1785] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1785), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2727), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4243), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1786] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1786), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4083), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2711), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1787] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1787), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4254), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3784), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1788] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1788), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2352), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2258), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1789] = { - [sym_nested_identifier] = STATE(7052), - [sym_string] = STATE(2266), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1789), - [sym_formal_parameters] = STATE(7096), - [sym_nested_type_identifier] = STATE(2226), - [sym__type] = STATE(2276), - [sym_constructor_type] = STATE(2270), - [sym__primary_type] = STATE(2271), - [sym_template_literal_type] = STATE(2264), - [sym_infer_type] = STATE(2270), - [sym_conditional_type] = STATE(2264), - [sym_generic_type] = STATE(2264), - [sym_type_query] = STATE(2264), - [sym_index_type_query] = STATE(2264), - [sym_lookup_type] = STATE(2264), - [sym_literal_type] = STATE(2264), - [sym__number] = STATE(2273), - [sym_existential_type] = STATE(2264), - [sym_flow_maybe_type] = STATE(2264), - [sym_parenthesized_type] = STATE(2264), - [sym_predefined_type] = STATE(2264), - [sym_object_type] = STATE(2264), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(2264), - [sym_tuple_type] = STATE(2264), - [sym_readonly_type] = STATE(2270), - [sym_union_type] = STATE(2264), - [sym_intersection_type] = STATE(2264), - [sym_function_type] = STATE(2270), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [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_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2260), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1790] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1790), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4141), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2772), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1791] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1791), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4142), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2769), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1792] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1792), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2882), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2366), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1793] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1793), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4016), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2712), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1794] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1794), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5611), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2248), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1795] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1795), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4030), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5351), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1796] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1796), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3719), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4080), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1797] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1797), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3770), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2768), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1798] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1798), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(3982), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5133), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1799] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7171), + [sym_string] = STATE(4279), [sym_comment] = STATE(1799), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2890), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7269), + [sym_nested_type_identifier] = STATE(3978), + [sym__type] = STATE(4198), + [sym_constructor_type] = STATE(4230), + [sym__primary_type] = STATE(4224), + [sym_template_literal_type] = STATE(4305), + [sym_infer_type] = STATE(4230), + [sym_conditional_type] = STATE(4305), + [sym_generic_type] = STATE(4305), + [sym_type_query] = STATE(4305), + [sym_index_type_query] = STATE(4305), + [sym_lookup_type] = STATE(4305), + [sym_literal_type] = STATE(4305), + [sym__number] = STATE(4214), + [sym_existential_type] = STATE(4305), + [sym_flow_maybe_type] = STATE(4305), + [sym_parenthesized_type] = STATE(4305), + [sym_predefined_type] = STATE(4305), + [sym_object_type] = STATE(4305), + [sym_type_parameters] = STATE(6623), + [sym_array_type] = STATE(4305), + [sym_tuple_type] = STATE(4305), + [sym_readonly_type] = STATE(4230), + [sym_union_type] = STATE(4305), + [sym_intersection_type] = STATE(4305), + [sym_function_type] = STATE(4230), + [sym_identifier] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_typeof] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_SQUOTE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_PIPE] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3681), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_number] = ACTIONS(3685), + [sym_this] = ACTIONS(4051), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_null] = ACTIONS(3685), + [sym_undefined] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_any] = ACTIONS(3681), + [anon_sym_number] = ACTIONS(3681), + [anon_sym_boolean] = ACTIONS(3681), + [anon_sym_string] = ACTIONS(3681), + [anon_sym_symbol] = ACTIONS(3681), + [anon_sym_object] = ACTIONS(3681), + [anon_sym_abstract] = ACTIONS(3693), + [anon_sym_infer] = ACTIONS(3697), + [anon_sym_keyof] = ACTIONS(3699), + [anon_sym_unique] = ACTIONS(3701), + [anon_sym_unknown] = ACTIONS(3681), + [anon_sym_never] = ACTIONS(3681), + [anon_sym_LBRACE_PIPE] = ACTIONS(3659), [sym_html_comment] = ACTIONS(5), }, [1800] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1800), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2895), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2913), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1801] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1801), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2745), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(4012), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1802] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1802), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(3983), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2915), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1803] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7081), + [sym_string] = STATE(2895), [sym_comment] = STATE(1803), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(3708), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7089), + [sym_nested_type_identifier] = STATE(2589), + [sym__type] = STATE(2776), + [sym_constructor_type] = STATE(2902), + [sym__primary_type] = STATE(2903), + [sym_template_literal_type] = STATE(2891), + [sym_infer_type] = STATE(2902), + [sym_conditional_type] = STATE(2891), + [sym_generic_type] = STATE(2891), + [sym_type_query] = STATE(2891), + [sym_index_type_query] = STATE(2891), + [sym_lookup_type] = STATE(2891), + [sym_literal_type] = STATE(2891), + [sym__number] = STATE(2904), + [sym_existential_type] = STATE(2891), + [sym_flow_maybe_type] = STATE(2891), + [sym_parenthesized_type] = STATE(2891), + [sym_predefined_type] = STATE(2891), + [sym_object_type] = STATE(2891), + [sym_type_parameters] = STATE(6736), + [sym_array_type] = STATE(2891), + [sym_tuple_type] = STATE(2891), + [sym_readonly_type] = STATE(2902), + [sym_union_type] = STATE(2891), + [sym_intersection_type] = STATE(2891), + [sym_function_type] = STATE(2902), + [sym_identifier] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_typeof] = ACTIONS(3843), + [anon_sym_const] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_PIPE] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3859), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3861), + [sym_number] = ACTIONS(3863), + [sym_this] = ACTIONS(4055), + [sym_true] = ACTIONS(3863), + [sym_false] = ACTIONS(3863), + [sym_null] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [anon_sym_readonly] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_any] = ACTIONS(3859), + [anon_sym_number] = ACTIONS(3859), + [anon_sym_boolean] = ACTIONS(3859), + [anon_sym_string] = ACTIONS(3859), + [anon_sym_symbol] = ACTIONS(3859), + [anon_sym_object] = ACTIONS(3859), + [anon_sym_abstract] = ACTIONS(3871), + [anon_sym_infer] = ACTIONS(3875), + [anon_sym_keyof] = ACTIONS(3877), + [anon_sym_unique] = ACTIONS(3879), + [anon_sym_unknown] = ACTIONS(3859), + [anon_sym_never] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3841), [sym_html_comment] = ACTIONS(5), }, [1804] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1804), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2356), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1805] = { - [sym_nested_identifier] = STATE(7167), - [sym_string] = STATE(4302), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1805), - [sym_formal_parameters] = STATE(7330), - [sym_nested_type_identifier] = STATE(3976), - [sym__type] = STATE(4205), - [sym_constructor_type] = STATE(4266), - [sym__primary_type] = STATE(4260), - [sym_template_literal_type] = STATE(4300), - [sym_infer_type] = STATE(4266), - [sym_conditional_type] = STATE(4300), - [sym_generic_type] = STATE(4300), - [sym_type_query] = STATE(4300), - [sym_index_type_query] = STATE(4300), - [sym_lookup_type] = STATE(4300), - [sym_literal_type] = STATE(4300), - [sym__number] = STATE(4255), - [sym_existential_type] = STATE(4300), - [sym_flow_maybe_type] = STATE(4300), - [sym_parenthesized_type] = STATE(4300), - [sym_predefined_type] = STATE(4300), - [sym_object_type] = STATE(4300), - [sym_type_parameters] = STATE(6849), - [sym_array_type] = STATE(4300), - [sym_tuple_type] = STATE(4300), - [sym_readonly_type] = STATE(4266), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4266), - [sym_identifier] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3684), - [sym_this] = ACTIONS(4052), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_QMARK] = ACTIONS(3690), - [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_abstract] = ACTIONS(3692), - [anon_sym_infer] = ACTIONS(3696), - [anon_sym_keyof] = ACTIONS(3698), - [anon_sym_unique] = ACTIONS(3700), - [anon_sym_unknown] = ACTIONS(3680), - [anon_sym_never] = ACTIONS(3680), - [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3742), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1806] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1806), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5602), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5696), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3758), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1807] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7024), + [sym_string] = STATE(4004), [sym_comment] = STATE(1807), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5599), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7480), + [sym_nested_type_identifier] = STATE(3909), + [sym__type] = STATE(5333), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3995), + [sym_template_literal_type] = STATE(4007), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(4007), + [sym_generic_type] = STATE(4007), + [sym_type_query] = STATE(4007), + [sym_index_type_query] = STATE(4007), + [sym_lookup_type] = STATE(4007), + [sym_literal_type] = STATE(4007), + [sym__number] = STATE(3989), + [sym_existential_type] = STATE(4007), + [sym_flow_maybe_type] = STATE(4007), + [sym_parenthesized_type] = STATE(4007), + [sym_predefined_type] = STATE(4007), + [sym_object_type] = STATE(4007), + [sym_type_parameters] = STATE(6938), + [sym_array_type] = STATE(4007), + [sym_tuple_type] = STATE(4007), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(4007), + [sym_intersection_type] = STATE(4007), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_typeof] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(1353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [sym_this] = ACTIONS(1981), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_null] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_infer] = ACTIONS(1347), + [anon_sym_keyof] = ACTIONS(1349), + [anon_sym_unique] = ACTIONS(1351), + [anon_sym_unknown] = ACTIONS(1353), + [anon_sym_never] = ACTIONS(1353), + [anon_sym_LBRACE_PIPE] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [1808] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1808), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5136), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2365), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1809] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1809), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2730), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2364), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1810] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1810), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2803), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3780), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1811] = { - [sym_nested_identifier] = STATE(7178), - [sym_string] = STATE(2892), + [sym_nested_identifier] = STATE(7056), + [sym_string] = STATE(2286), [sym_comment] = STATE(1811), - [sym_formal_parameters] = STATE(7446), - [sym_nested_type_identifier] = STATE(2621), - [sym__type] = STATE(2804), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2900), - [sym_template_literal_type] = STATE(2888), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2888), - [sym_generic_type] = STATE(2888), - [sym_type_query] = STATE(2888), - [sym_index_type_query] = STATE(2888), - [sym_lookup_type] = STATE(2888), - [sym_literal_type] = STATE(2888), - [sym__number] = STATE(2901), - [sym_existential_type] = STATE(2888), - [sym_flow_maybe_type] = STATE(2888), - [sym_parenthesized_type] = STATE(2888), - [sym_predefined_type] = STATE(2888), - [sym_object_type] = STATE(2888), - [sym_type_parameters] = STATE(6732), - [sym_array_type] = STATE(2888), - [sym_tuple_type] = STATE(2888), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2888), - [sym_intersection_type] = STATE(2888), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_formal_parameters] = STATE(7354), + [sym_nested_type_identifier] = STATE(2217), + [sym__type] = STATE(2323), + [sym_constructor_type] = STATE(2354), + [sym__primary_type] = STATE(2355), + [sym_template_literal_type] = STATE(2242), + [sym_infer_type] = STATE(2354), + [sym_conditional_type] = STATE(2242), + [sym_generic_type] = STATE(2242), + [sym_type_query] = STATE(2242), + [sym_index_type_query] = STATE(2242), + [sym_lookup_type] = STATE(2242), + [sym_literal_type] = STATE(2242), + [sym__number] = STATE(2357), + [sym_existential_type] = STATE(2242), + [sym_flow_maybe_type] = STATE(2242), + [sym_parenthesized_type] = STATE(2242), + [sym_predefined_type] = STATE(2242), + [sym_object_type] = STATE(2242), + [sym_type_parameters] = STATE(6861), + [sym_array_type] = STATE(2242), + [sym_tuple_type] = STATE(2242), + [sym_readonly_type] = STATE(2354), + [sym_union_type] = STATE(2242), + [sym_intersection_type] = STATE(2242), + [sym_function_type] = STATE(2354), + [sym_identifier] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_typeof] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(3815), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3817), + [sym_number] = ACTIONS(3819), + [sym_this] = ACTIONS(4059), + [sym_true] = ACTIONS(3819), + [sym_false] = ACTIONS(3819), + [sym_null] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_any] = ACTIONS(3815), + [anon_sym_number] = ACTIONS(3815), + [anon_sym_boolean] = ACTIONS(3815), + [anon_sym_string] = ACTIONS(3815), + [anon_sym_symbol] = ACTIONS(3815), + [anon_sym_object] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3827), + [anon_sym_infer] = ACTIONS(3831), + [anon_sym_keyof] = ACTIONS(3833), + [anon_sym_unique] = ACTIONS(3835), + [anon_sym_unknown] = ACTIONS(3815), + [anon_sym_never] = ACTIONS(3815), + [anon_sym_LBRACE_PIPE] = ACTIONS(3797), [sym_html_comment] = ACTIONS(5), }, [1812] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1812), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(6027), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3701), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5423), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1813] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1813), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5594), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5419), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1814] = { - [sym_nested_identifier] = STATE(7019), - [sym_string] = STATE(3709), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1814), - [sym_formal_parameters] = STATE(7020), - [sym_nested_type_identifier] = STATE(3667), - [sym__type] = STATE(5593), - [sym_constructor_type] = STATE(3705), - [sym__primary_type] = STATE(3702), - [sym_template_literal_type] = STATE(3713), - [sym_infer_type] = STATE(3705), - [sym_conditional_type] = STATE(3713), - [sym_generic_type] = STATE(3713), - [sym_type_query] = STATE(3713), - [sym_index_type_query] = STATE(3713), - [sym_lookup_type] = STATE(3713), - [sym_literal_type] = STATE(3713), - [sym__number] = STATE(3697), - [sym_existential_type] = STATE(3713), - [sym_flow_maybe_type] = STATE(3713), - [sym_parenthesized_type] = STATE(3713), - [sym_predefined_type] = STATE(3713), - [sym_object_type] = STATE(3713), - [sym_type_parameters] = STATE(6989), - [sym_array_type] = STATE(3713), - [sym_tuple_type] = STATE(3713), - [sym_readonly_type] = STATE(3705), - [sym_union_type] = STATE(3713), - [sym_intersection_type] = STATE(3713), - [sym_function_type] = STATE(3705), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(196), - [anon_sym_any] = ACTIONS(208), - [anon_sym_number] = ACTIONS(208), - [anon_sym_boolean] = ACTIONS(208), - [anon_sym_string] = ACTIONS(208), - [anon_sym_symbol] = ACTIONS(208), - [anon_sym_object] = ACTIONS(208), - [anon_sym_abstract] = ACTIONS(200), - [anon_sym_infer] = ACTIONS(202), - [anon_sym_keyof] = ACTIONS(204), - [anon_sym_unique] = ACTIONS(206), - [anon_sym_unknown] = ACTIONS(208), - [anon_sym_never] = ACTIONS(208), - [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5421), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1815] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1815), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(4955), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(5696), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3692), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1816] = { - [sym_nested_identifier] = STATE(7060), - [sym_string] = STATE(3984), + [sym_nested_identifier] = STATE(7165), + [sym_string] = STATE(3691), [sym_comment] = STATE(1816), - [sym_formal_parameters] = STATE(6997), - [sym_nested_type_identifier] = STATE(3857), - [sym__type] = STATE(5160), - [sym_constructor_type] = STATE(3990), - [sym__primary_type] = STATE(3980), - [sym_template_literal_type] = STATE(3996), - [sym_infer_type] = STATE(3990), - [sym_conditional_type] = STATE(3996), - [sym_generic_type] = STATE(3996), - [sym_type_query] = STATE(3996), - [sym_index_type_query] = STATE(3996), - [sym_lookup_type] = STATE(3996), - [sym_literal_type] = STATE(3996), - [sym__number] = STATE(4019), - [sym_existential_type] = STATE(3996), - [sym_flow_maybe_type] = STATE(3996), - [sym_parenthesized_type] = STATE(3996), - [sym_predefined_type] = STATE(3996), - [sym_object_type] = STATE(3996), - [sym_type_parameters] = STATE(6934), - [sym_array_type] = STATE(3996), - [sym_tuple_type] = STATE(3996), - [sym_readonly_type] = STATE(3990), - [sym_union_type] = STATE(3996), - [sym_intersection_type] = STATE(3996), - [sym_function_type] = STATE(3990), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_infer] = ACTIONS(1344), - [anon_sym_keyof] = ACTIONS(1346), - [anon_sym_unique] = ACTIONS(1348), - [anon_sym_unknown] = ACTIONS(1350), - [anon_sym_never] = ACTIONS(1350), - [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_formal_parameters] = STATE(7164), + [sym_nested_type_identifier] = STATE(3668), + [sym__type] = STATE(3718), + [sym_constructor_type] = STATE(3694), + [sym__primary_type] = STATE(3693), + [sym_template_literal_type] = STATE(3695), + [sym_infer_type] = STATE(3694), + [sym_conditional_type] = STATE(3695), + [sym_generic_type] = STATE(3695), + [sym_type_query] = STATE(3695), + [sym_index_type_query] = STATE(3695), + [sym_lookup_type] = STATE(3695), + [sym_literal_type] = STATE(3695), + [sym__number] = STATE(3687), + [sym_existential_type] = STATE(3695), + [sym_flow_maybe_type] = STATE(3695), + [sym_parenthesized_type] = STATE(3695), + [sym_predefined_type] = STATE(3695), + [sym_object_type] = STATE(3695), + [sym_type_parameters] = STATE(6504), + [sym_array_type] = STATE(3695), + [sym_tuple_type] = STATE(3695), + [sym_readonly_type] = STATE(3694), + [sym_union_type] = STATE(3695), + [sym_intersection_type] = STATE(3695), + [sym_function_type] = STATE(3694), + [sym_identifier] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_void] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_number] = ACTIONS(1913), + [sym_this] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_null] = ACTIONS(1913), + [sym_undefined] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_QMARK] = ACTIONS(198), + [anon_sym_any] = ACTIONS(212), + [anon_sym_number] = ACTIONS(212), + [anon_sym_boolean] = ACTIONS(212), + [anon_sym_string] = ACTIONS(212), + [anon_sym_symbol] = ACTIONS(212), + [anon_sym_object] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(202), + [anon_sym_infer] = ACTIONS(206), + [anon_sym_keyof] = ACTIONS(208), + [anon_sym_unique] = ACTIONS(210), + [anon_sym_unknown] = ACTIONS(212), + [anon_sym_never] = ACTIONS(212), + [anon_sym_LBRACE_PIPE] = ACTIONS(214), [sym_html_comment] = ACTIONS(5), }, [1817] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1817), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1818] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1818), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1127), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(1112), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1819] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1819), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_RBRACE] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(217), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(217), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1820] = { - [sym_export_statement] = STATE(4662), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(6875), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6729), - [sym_string] = STATE(4004), + [sym_export_statement] = STATE(4636), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(6351), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(6476), + [sym_string] = STATE(4000), [sym_comment] = STATE(1820), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(6875), - [sym_method_definition] = STATE(6729), - [sym_pair] = STATE(6729), - [sym_pair_pattern] = STATE(6875), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4662), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4662), - [sym_property_signature] = STATE(4662), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4662), - [sym_index_signature] = STATE(4662), - [aux_sym_export_statement_repeat1] = STATE(5635), - [sym_identifier] = ACTIONS(4060), - [anon_sym_export] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(4060), - [anon_sym_namespace] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4064), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(4067), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(6351), + [sym_method_definition] = STATE(6476), + [sym_pair] = STATE(6476), + [sym_pair_pattern] = STATE(6351), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4636), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4636), + [sym_property_signature] = STATE(4636), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4636), + [sym_index_signature] = STATE(4636), + [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_identifier] = ACTIONS(4067), + [anon_sym_export] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(4067), + [anon_sym_namespace] = ACTIONS(4067), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(4071), + [anon_sym_RBRACE] = ACTIONS(4071), + [anon_sym_let] = ACTIONS(4067), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(4074), + [anon_sym_new] = ACTIONS(4076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4071), - [anon_sym_readonly] = ACTIONS(4073), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_declare] = ACTIONS(4060), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_protected] = ACTIONS(4077), - [anon_sym_override] = ACTIONS(4079), - [anon_sym_module] = ACTIONS(4060), - [anon_sym_any] = ACTIONS(4060), - [anon_sym_number] = ACTIONS(4060), - [anon_sym_boolean] = ACTIONS(4060), - [anon_sym_string] = ACTIONS(4060), - [anon_sym_symbol] = ACTIONS(4060), - [anon_sym_object] = ACTIONS(4060), - [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_readonly] = ACTIONS(4080), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_declare] = ACTIONS(4067), + [anon_sym_public] = ACTIONS(4084), + [anon_sym_private] = ACTIONS(4084), + [anon_sym_protected] = ACTIONS(4084), + [anon_sym_override] = ACTIONS(4086), + [anon_sym_module] = ACTIONS(4067), + [anon_sym_any] = ACTIONS(4067), + [anon_sym_number] = ACTIONS(4067), + [anon_sym_boolean] = ACTIONS(4067), + [anon_sym_string] = ACTIONS(4067), + [anon_sym_symbol] = ACTIONS(4067), + [anon_sym_object] = ACTIONS(4067), + [anon_sym_abstract] = ACTIONS(3917), [sym_html_comment] = ACTIONS(5), }, [1821] = { - [sym_export_statement] = STATE(4771), - [sym_object_pattern] = STATE(4245), - [sym_object_assignment_pattern] = STATE(6875), - [sym_array_pattern] = STATE(4245), - [sym__call_signature] = STATE(4901), - [sym__destructuring_pattern] = STATE(7181), - [sym_spread_element] = STATE(6729), - [sym_string] = STATE(4004), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1821), - [sym_decorator] = STATE(5608), - [sym_formal_parameters] = STATE(4061), - [sym_rest_pattern] = STATE(6875), - [sym_method_definition] = STATE(6729), - [sym_pair] = STATE(6729), - [sym_pair_pattern] = STATE(6875), - [sym__property_name] = STATE(3869), - [sym_computed_property_name] = STATE(4004), - [sym_method_signature] = STATE(4771), - [sym_accessibility_modifier] = STATE(3472), - [sym_override_modifier] = STATE(3535), - [sym_call_signature] = STATE(4771), - [sym_property_signature] = STATE(4771), - [sym_type_parameters] = STATE(6986), - [sym_construct_signature] = STATE(4771), - [sym_index_signature] = STATE(4771), - [aux_sym_export_statement_repeat1] = STATE(5635), - [sym_identifier] = ACTIONS(4060), - [anon_sym_export] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(4060), - [anon_sym_namespace] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4064), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(4067), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4071), - [anon_sym_readonly] = ACTIONS(4073), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_declare] = ACTIONS(4060), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_protected] = ACTIONS(4077), - [anon_sym_override] = ACTIONS(4079), - [anon_sym_module] = ACTIONS(4060), - [anon_sym_any] = ACTIONS(4060), - [anon_sym_number] = ACTIONS(4060), - [anon_sym_boolean] = ACTIONS(4060), - [anon_sym_string] = ACTIONS(4060), - [anon_sym_symbol] = ACTIONS(4060), - [anon_sym_object] = ACTIONS(4060), - [anon_sym_abstract] = ACTIONS(3910), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1822] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1822), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1823] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_export_statement] = STATE(4835), + [sym_object_pattern] = STATE(4148), + [sym_object_assignment_pattern] = STATE(6351), + [sym_array_pattern] = STATE(4148), + [sym__call_signature] = STATE(5094), + [sym__destructuring_pattern] = STATE(7272), + [sym_spread_element] = STATE(6476), + [sym_string] = STATE(4000), [sym_comment] = STATE(1823), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym_decorator] = STATE(5640), + [sym_formal_parameters] = STATE(4041), + [sym_rest_pattern] = STATE(6351), + [sym_method_definition] = STATE(6476), + [sym_pair] = STATE(6476), + [sym_pair_pattern] = STATE(6351), + [sym__property_name] = STATE(3903), + [sym_computed_property_name] = STATE(4000), + [sym_method_signature] = STATE(4835), + [sym_accessibility_modifier] = STATE(3483), + [sym_override_modifier] = STATE(3532), + [sym_call_signature] = STATE(4835), + [sym_property_signature] = STATE(4835), + [sym_type_parameters] = STATE(6730), + [sym_construct_signature] = STATE(4835), + [sym_index_signature] = STATE(4835), + [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_identifier] = ACTIONS(4067), + [anon_sym_export] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(4067), + [anon_sym_namespace] = ACTIONS(4067), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_COMMA] = ACTIONS(4071), + [anon_sym_RBRACE] = ACTIONS(4071), + [anon_sym_let] = ACTIONS(4067), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(4074), + [anon_sym_new] = ACTIONS(4076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1909), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3905), + [sym_private_property_identifier] = ACTIONS(3905), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_readonly] = ACTIONS(4080), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_declare] = ACTIONS(4067), + [anon_sym_public] = ACTIONS(4084), + [anon_sym_private] = ACTIONS(4084), + [anon_sym_protected] = ACTIONS(4084), + [anon_sym_override] = ACTIONS(4086), + [anon_sym_module] = ACTIONS(4067), + [anon_sym_any] = ACTIONS(4067), + [anon_sym_number] = ACTIONS(4067), + [anon_sym_boolean] = ACTIONS(4067), + [anon_sym_string] = ACTIONS(4067), + [anon_sym_symbol] = ACTIONS(4067), + [anon_sym_object] = ACTIONS(4067), + [anon_sym_abstract] = ACTIONS(3917), [sym_html_comment] = ACTIONS(5), }, [1824] = { - [sym_nested_identifier] = STATE(340), - [sym_string] = STATE(342), + [sym_nested_identifier] = STATE(1011), + [sym_string] = STATE(1260), [sym_comment] = STATE(1824), - [sym__module] = STATE(395), - [sym_identifier] = ACTIONS(4081), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4083), - [anon_sym_SQUOTE] = ACTIONS(4085), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(1544), + [sym_identifier] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4019), + [anon_sym_SQUOTE] = ACTIONS(4021), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1825] = { - [sym_nested_identifier] = STATE(2220), - [sym_string] = STATE(2214), + [sym_variable_declarator] = STATE(5559), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4501), [sym_comment] = STATE(1825), - [sym__module] = STATE(2461), - [sym_identifier] = ACTIONS(4087), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1826] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_nested_identifier] = STATE(4880), + [sym_string] = STATE(5627), [sym_comment] = STATE(1826), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(6652), + [sym_identifier] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1827] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_variable_declarator] = STATE(5581), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4501), [sym_comment] = STATE(1827), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1828] = { - [sym_variable_declarator] = STATE(5538), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4555), + [sym_nested_identifier] = STATE(411), + [sym_string] = STATE(410), [sym_comment] = STATE(1828), - [sym_identifier] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(460), + [sym_identifier] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4041), + [anon_sym_SQUOTE] = ACTIONS(4043), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1829] = { - [sym_nested_identifier] = STATE(2220), - [sym_string] = STATE(2214), + [sym_nested_identifier] = STATE(2214), + [sym_string] = STATE(2216), [sym_comment] = STATE(1829), - [sym__module] = STATE(2461), - [sym_identifier] = ACTIONS(4087), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), + [sym__module] = STATE(2459), + [sym_identifier] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1830] = { - [sym_nested_identifier] = STATE(921), - [sym_string] = STATE(1139), + [sym_variable_declarator] = STATE(5548), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4501), [sym_comment] = STATE(1830), - [sym__module] = STATE(1358), - [sym_identifier] = ACTIONS(4089), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4091), - [anon_sym_SQUOTE] = ACTIONS(4093), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1831] = { - [sym_nested_identifier] = STATE(2220), - [sym_string] = STATE(2214), + [sym_nested_identifier] = STATE(342), + [sym_string] = STATE(335), [sym_comment] = STATE(1831), - [sym__module] = STATE(2461), - [sym_identifier] = ACTIONS(4087), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(406), + [sym_identifier] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1832] = { - [sym_nested_identifier] = STATE(929), - [sym_string] = STATE(1085), + [sym_nested_identifier] = STATE(2214), + [sym_string] = STATE(2216), [sym_comment] = STATE(1832), - [sym__module] = STATE(1262), - [sym_identifier] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4097), - [anon_sym_SQUOTE] = ACTIONS(4099), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2459), + [sym_identifier] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1192), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1833] = { - [sym_nested_identifier] = STATE(361), - [sym_string] = STATE(366), + [sym_variable_declarator] = STATE(5440), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4501), [sym_comment] = STATE(1833), - [sym__module] = STATE(447), - [sym_identifier] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1834] = { - [sym_variable_declarator] = STATE(5524), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4555), + [sym_variable_declarator] = STATE(5562), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4192), [sym_comment] = STATE(1834), - [sym_identifier] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1835] = { - [sym_variable_declarator] = STATE(5482), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4159), + [sym_nested_identifier] = STATE(2214), + [sym_string] = STATE(2216), [sym_comment] = STATE(1835), - [sym_identifier] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2459), + [sym_identifier] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1836] = { - [sym_nested_identifier] = STATE(2220), - [sym_string] = STATE(2214), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1836), - [sym__module] = STATE(2461), - [sym_identifier] = ACTIONS(4087), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(1192), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1837] = { - [sym_variable_declarator] = STATE(5643), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4555), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1837), - [sym_identifier] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1838] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_nested_identifier] = STATE(361), + [sym_string] = STATE(360), [sym_comment] = STATE(1838), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(418), + [sym_identifier] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1839] = { - [sym_variable_declarator] = STATE(5577), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4555), + [sym_nested_identifier] = STATE(903), + [sym_string] = STATE(1052), [sym_comment] = STATE(1839), - [sym_identifier] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(1270), + [sym_identifier] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1840] = { - [sym_nested_identifier] = STATE(309), - [sym_string] = STATE(308), + [sym_nested_identifier] = STATE(295), + [sym_string] = STATE(305), [sym_comment] = STATE(1840), - [sym__module] = STATE(406), - [sym_identifier] = ACTIONS(4103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4105), - [anon_sym_SQUOTE] = ACTIONS(4107), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(329), + [sym_identifier] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1841] = { - [sym_nested_identifier] = STATE(293), - [sym_string] = STATE(292), + [sym_nested_identifier] = STATE(914), + [sym_string] = STATE(1031), [sym_comment] = STATE(1841), - [sym__module] = STATE(333), - [sym_identifier] = ACTIONS(4109), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4111), - [anon_sym_SQUOTE] = ACTIONS(4113), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(1206), + [sym_identifier] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1842] = { - [sym_variable_declarator] = STATE(5487), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4555), + [sym_variable_declarator] = STATE(5456), + [sym_object_pattern] = STATE(4562), + [sym_array_pattern] = STATE(4562), + [sym__destructuring_pattern] = STATE(4501), [sym_comment] = STATE(1842), - [sym_identifier] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym_identifier] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1843] = { - [sym_nested_identifier] = STATE(901), - [sym_string] = STATE(919), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1843), - [sym__module] = STATE(1047), - [sym_identifier] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1844] = { - [sym_nested_identifier] = STATE(1071), - [sym_string] = STATE(1382), + [sym_nested_identifier] = STATE(893), + [sym_string] = STATE(905), [sym_comment] = STATE(1844), - [sym__module] = STATE(1569), - [sym_identifier] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4020), - [anon_sym_SQUOTE] = ACTIONS(4022), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(1076), + [sym_identifier] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4126), + [anon_sym_SQUOTE] = ACTIONS(4128), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1845] = { - [sym_nested_identifier] = STATE(4947), - [sym_string] = STATE(5633), + [sym_nested_identifier] = STATE(2214), + [sym_string] = STATE(2216), [sym_comment] = STATE(1845), - [sym__module] = STATE(6895), - [sym_identifier] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2459), + [sym_identifier] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1846] = { + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1846), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4123), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1847] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), [sym_comment] = STATE(1847), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1848] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1848), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1232), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1849] = { + [sym_nested_identifier] = STATE(2341), + [sym_string] = STATE(2343), [sym_comment] = STATE(1849), - [aux_sym_object_repeat1] = STATE(5720), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4123), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [sym__module] = STATE(2522), + [sym_identifier] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(1228), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1850] = { [sym_comment] = STATE(1850), - [aux_sym_object_repeat1] = STATE(6315), - [aux_sym_object_pattern_repeat1] = STATE(5721), - [sym_identifier] = ACTIONS(4123), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(212), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(6195), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, [1851] = { - [sym_nested_identifier] = STATE(2285), - [sym_string] = STATE(2284), [sym_comment] = STATE(1851), - [sym__module] = STATE(2443), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1232), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(212), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(6198), + [sym_identifier] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(162), + [anon_sym_DASH_EQ] = ACTIONS(162), + [anon_sym_STAR_EQ] = ACTIONS(162), + [anon_sym_SLASH_EQ] = ACTIONS(162), + [anon_sym_PERCENT_EQ] = ACTIONS(162), + [anon_sym_CARET_EQ] = ACTIONS(162), + [anon_sym_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_EQ] = ACTIONS(162), + [anon_sym_GT_GT_EQ] = ACTIONS(162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(162), + [anon_sym_LT_LT_EQ] = ACTIONS(162), + [anon_sym_STAR_STAR_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP_EQ] = ACTIONS(162), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(216), + [sym__ternary_qmark] = ACTIONS(216), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1852), 1, - sym_comment, - ACTIONS(4125), 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(4127), 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, - [75] = 14, + [0] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4081), 1, + ACTIONS(4106), 1, sym_identifier, - ACTIONS(4083), 1, + ACTIONS(4108), 1, anon_sym_DQUOTE, - ACTIONS(4085), 1, + ACTIONS(4110), 1, anon_sym_SQUOTE, - STATE(340), 1, + STATE(903), 1, sym_nested_identifier, - STATE(342), 1, + STATE(1052), 1, sym_string, - STATE(395), 1, + STATE(1270), 1, sym__module, - STATE(1853), 1, + STATE(1852), 1, sym_comment, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212478,7 +214631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -212515,34 +214668,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [168] = 14, + [93] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4010), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - STATE(1854), 1, + STATE(1853), 1, sym_comment, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(5538), 1, + STATE(5456), 1, sym_variable_declarator, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212558,7 +214711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -212594,33 +214747,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [261] = 14, + [186] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4026), 1, + ACTIONS(4092), 1, sym_identifier, - ACTIONS(4028), 1, + ACTIONS(4094), 1, anon_sym_DQUOTE, - ACTIONS(4030), 1, + ACTIONS(4096), 1, anon_sym_SQUOTE, - STATE(361), 1, - sym_nested_identifier, - STATE(366), 1, + STATE(335), 1, sym_string, - STATE(447), 1, + STATE(342), 1, + sym_nested_identifier, + STATE(406), 1, sym__module, - STATE(1855), 1, + STATE(1854), 1, sym_comment, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212636,7 +214789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -212673,33 +214826,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [354] = 14, + [279] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4129), 1, + ACTIONS(4027), 1, sym_identifier, - STATE(1856), 1, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + STATE(1855), 1, sym_comment, - STATE(4316), 1, - sym_nested_identifier, - STATE(4556), 1, - sym_string, - STATE(5251), 1, - sym__module, - ACTIONS(212), 2, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5440), 1, + sym_variable_declarator, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212715,14 +214869,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(118), 36, + ACTIONS(120), 35, 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, @@ -212752,181 +214905,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [447] = 5, + [372] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1857), 1, - sym_comment, - ACTIONS(4131), 23, - anon_sym_STAR, + ACTIONS(1015), 1, 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(1042), 1, anon_sym_QMARK, - ACTIONS(4133), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2674), 1, anon_sym_RBRACE, + ACTIONS(2684), 1, 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, - [522] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1266), 1, - anon_sym_EQ, - ACTIONS(1272), 1, - anon_sym_EQ_GT, - ACTIONS(4010), 1, - sym_identifier, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - STATE(1858), 1, - sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5445), 1, - sym_variable_declarator, - ACTIONS(212), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [615] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1041), 1, - anon_sym_QMARK, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2680), 1, + ACTIONS(2687), 1, anon_sym_COLON, ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4137), 1, - anon_sym_EQ, - ACTIONS(4141), 1, - anon_sym_LPAREN, - ACTIONS(4144), 1, anon_sym_EQ_GT, - ACTIONS(4148), 1, + ACTIONS(2700), 1, anon_sym_LT, - STATE(1859), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1856), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(4146), 15, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212942,7 +214946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 17, + ACTIONS(216), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -212960,7 +214964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212981,123 +214985,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [710] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [467] = 14, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(1860), 1, - sym_comment, - ACTIONS(4151), 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(4153), 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, - [785] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4155), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(4161), 1, - anon_sym_DOT, - ACTIONS(4163), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4165), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_LT, - STATE(1861), 1, + ACTIONS(4039), 1, + sym_identifier, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4043), 1, + anon_sym_SQUOTE, + STATE(410), 1, + sym_string, + STATE(411), 1, + sym_nested_identifier, + STATE(460), 1, + sym__module, + STATE(1857), 1, sym_comment, - STATE(3867), 1, - sym_arguments, - STATE(4003), 1, - sym_type_arguments, - ACTIONS(4167), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4157), 7, + ACTIONS(216), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4139), 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(4146), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213113,38 +215027,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(4135), 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, - [882] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1862), 1, - sym_comment, - ACTIONS(4171), 23, + ACTIONS(120), 36, anon_sym_STAR, - anon_sym_EQ, + 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, @@ -213159,77 +215052,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, - anon_sym_QMARK, - ACTIONS(4173), 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, 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, - [957] = 15, + [560] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(1221), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(1230), 1, - anon_sym_COLON, - ACTIONS(4058), 1, + ACTIONS(1277), 1, + anon_sym_EQ_GT, + ACTIONS(4065), 1, sym_identifier, - STATE(1863), 1, + STATE(1858), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213245,14 +215105,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(118), 36, + ACTIONS(120), 37, anon_sym_STAR, anon_sym_as, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -213282,54 +215143,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1052] = 16, + [653] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4155), 1, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(4163), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(4177), 1, - anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - STATE(1864), 1, + ACTIONS(4090), 1, + sym_identifier, + STATE(1859), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, - ACTIONS(4157), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4167), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 15, + STATE(2214), 1, + sym_nested_identifier, + STATE(2216), 1, + sym_string, + STATE(2459), 1, + sym__module, + ACTIONS(216), 2, + sym__automatic_semicolon, 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(4146), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213345,37 +215185,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(4135), 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, - [1149] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1865), 1, - sym_comment, - ACTIONS(4183), 23, + ACTIONS(120), 36, anon_sym_STAR, - anon_sym_EQ, + 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, @@ -213390,147 +215210,120 @@ 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, - anon_sym_QMARK, - ACTIONS(4185), 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, 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, - [1224] = 5, + [746] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1866), 1, + ACTIONS(4134), 1, + anon_sym_LPAREN, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_LT, + STATE(1860), 1, sym_comment, - ACTIONS(4187), 23, - anon_sym_STAR, - anon_sym_EQ, + STATE(1940), 1, + sym_arguments, + STATE(6654), 1, + sym_type_arguments, + ACTIONS(4132), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_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(4189), 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1299] = 14, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [829] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4010), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - STATE(1867), 1, + STATE(1861), 1, sym_comment, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(5487), 1, + STATE(5559), 1, sym_variable_declarator, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213546,7 +215339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -213582,36 +215375,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1392] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [922] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_RBRACK, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, - sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_COMMA, - ACTIONS(1212), 1, + ACTIONS(1042), 1, + anon_sym_QMARK, + ACTIONS(2687), 1, + anon_sym_COLON, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2719), 1, + anon_sym_RBRACE, + ACTIONS(4142), 1, anon_sym_EQ, - ACTIONS(1221), 1, + ACTIONS(4146), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, anon_sym_EQ_GT, - ACTIONS(4058), 1, - sym_identifier, - STATE(1868), 1, + ACTIONS(4153), 1, + anon_sym_LT, + STATE(1862), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, - sym_nested_identifier, - STATE(2443), 1, - sym__module, - ACTIONS(160), 15, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213627,16 +215416,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(118), 35, - anon_sym_STAR, + ACTIONS(4144), 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(4140), 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, @@ -213650,47 +215452,36 @@ 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, - [1489] = 15, + [1017] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, - sym__ternary_qmark, - ACTIONS(1217), 1, - anon_sym_COLON, - ACTIONS(1221), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(1245), 1, + anon_sym_EQ_GT, + ACTIONS(4118), 1, sym_identifier, - STATE(1869), 1, - sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + ACTIONS(4120), 1, + anon_sym_DQUOTE, + ACTIONS(4122), 1, + anon_sym_SQUOTE, + STATE(914), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(1031), 1, + sym_string, + STATE(1206), 1, sym__module, - ACTIONS(160), 15, + STATE(1863), 1, + sym_comment, + ACTIONS(216), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213706,14 +215497,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(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, 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, @@ -213743,33 +215534,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1584] = 14, + [1110] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(4107), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - STATE(308), 1, - sym_string, - STATE(309), 1, + ACTIONS(4088), 1, + sym_identifier, + STATE(1864), 1, + sym_comment, + STATE(4880), 1, sym_nested_identifier, - STATE(406), 1, + STATE(5627), 1, + sym_string, + STATE(6652), 1, sym__module, - STATE(1870), 1, - sym_comment, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213785,7 +215576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -213822,14 +215613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1677] = 5, + [1203] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1871), 1, + STATE(1865), 1, sym_comment, - ACTIONS(4191), 23, + ACTIONS(4156), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213853,7 +215644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4193), 38, + ACTIONS(4158), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -213892,33 +215683,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1752] = 14, + [1278] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4089), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(4091), 1, - anon_sym_DQUOTE, - ACTIONS(4093), 1, - anon_sym_SQUOTE, - STATE(921), 1, - sym_nested_identifier, - STATE(1139), 1, - sym_string, - STATE(1358), 1, - sym__module, - STATE(1872), 1, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + STATE(1866), 1, sym_comment, - ACTIONS(212), 2, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5581), 1, + sym_variable_declarator, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213934,14 +215726,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(118), 36, + ACTIONS(120), 35, 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, @@ -213971,33 +215762,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1845] = 14, + [1371] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4115), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(4117), 1, - anon_sym_DQUOTE, - ACTIONS(4119), 1, - anon_sym_SQUOTE, - STATE(901), 1, - sym_nested_identifier, - STATE(919), 1, - sym_string, - STATE(1047), 1, - sym__module, - STATE(1873), 1, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + STATE(1867), 1, sym_comment, - ACTIONS(212), 2, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5442), 1, + sym_variable_declarator, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214013,14 +215805,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(118), 36, + ACTIONS(120), 35, 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, @@ -214050,32 +215841,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1938] = 15, + [1464] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1042), 1, + anon_sym_QMARK, + ACTIONS(2674), 1, + anon_sym_RBRACE, + ACTIONS(2687), 1, + anon_sym_COLON, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4142), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_EQ_GT, + ACTIONS(4153), 1, + anon_sym_LT, + STATE(1868), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4144), 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(4140), 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, + [1559] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1014), 1, + ACTIONS(1015), 1, anon_sym_EQ, - ACTIONS(1041), 1, + ACTIONS(1042), 1, anon_sym_QMARK, - ACTIONS(2677), 1, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2687), 1, anon_sym_COLON, - ACTIONS(2689), 1, + ACTIONS(2696), 1, anon_sym_EQ_GT, - ACTIONS(2693), 1, + ACTIONS(2700), 1, anon_sym_LT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2710), 1, + ACTIONS(2719), 1, anon_sym_RBRACE, - STATE(1874), 1, + STATE(1869), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2691), 15, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214091,7 +215962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 17, + ACTIONS(216), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -214109,7 +215980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -214130,33 +216001,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2033] = 14, + [1654] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(67), 1, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(69), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(1266), 1, - anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(216), 1, + sym__ternary_qmark, + ACTIONS(1228), 1, anon_sym_EQ_GT, - ACTIONS(4087), 1, + ACTIONS(1265), 1, + anon_sym_EQ, + ACTIONS(1281), 1, + anon_sym_COLON, + ACTIONS(4065), 1, sym_identifier, - STATE(1875), 1, + STATE(1870), 1, sym_comment, - STATE(2214), 1, - sym_string, - STATE(2220), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2461), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(212), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214172,14 +216044,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(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, 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, @@ -214209,32 +216081,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2126] = 15, + [1749] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1041), 1, + ACTIONS(1015), 1, + anon_sym_EQ, + ACTIONS(1042), 1, anon_sym_QMARK, - ACTIONS(2680), 1, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(2687), 1, anon_sym_COLON, ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(4137), 1, - anon_sym_EQ, - ACTIONS(4141), 1, - anon_sym_LPAREN, - ACTIONS(4144), 1, anon_sym_EQ_GT, - ACTIONS(4148), 1, + ACTIONS(2700), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2717), 1, + anon_sym_RBRACE, + STATE(1871), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(6195), 1, aux_sym_object_repeat1, - ACTIONS(4146), 15, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214250,7 +216122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 17, + ACTIONS(216), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -214268,7 +216140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -214289,34 +216161,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2221] = 14, + [1844] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4010), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4160), 1, sym_identifier, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - STATE(1877), 1, + STATE(1872), 1, sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5643), 1, - sym_variable_declarator, - ACTIONS(212), 2, + STATE(4337), 1, + sym_nested_identifier, + STATE(4431), 1, + sym_string, + STATE(4971), 1, + sym__module, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214332,13 +216203,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(118), 35, + ACTIONS(120), 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, @@ -214368,33 +216240,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2314] = 14, + [1937] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, + sym__ternary_qmark, + ACTIONS(221), 1, + anon_sym_COMMA, + ACTIONS(1219), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1228), 1, anon_sym_EQ_GT, - ACTIONS(4018), 1, + ACTIONS(4065), 1, sym_identifier, - ACTIONS(4020), 1, - anon_sym_DQUOTE, - ACTIONS(4022), 1, - anon_sym_SQUOTE, - STATE(1071), 1, + STATE(1873), 1, + sym_comment, + STATE(2341), 1, sym_nested_identifier, - STATE(1382), 1, + STATE(2343), 1, sym_string, - STATE(1569), 1, + STATE(2522), 1, sym__module, - STATE(1878), 1, - sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214410,13 +216285,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(118), 36, + ACTIONS(120), 35, 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, @@ -214447,33 +216321,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2407] = 14, + [2034] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4109), 1, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(4111), 1, + ACTIONS(4102), 1, anon_sym_DQUOTE, - ACTIONS(4113), 1, + ACTIONS(4104), 1, anon_sym_SQUOTE, - STATE(292), 1, + STATE(360), 1, sym_string, - STATE(293), 1, + STATE(361), 1, sym_nested_identifier, - STATE(333), 1, + STATE(418), 1, sym__module, - STATE(1879), 1, + STATE(1874), 1, sym_comment, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214489,7 +216363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -214526,114 +216400,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2500] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1014), 1, - anon_sym_EQ, - ACTIONS(1041), 1, - anon_sym_QMARK, - ACTIONS(2677), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_COLON, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2693), 1, - anon_sym_LT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2712), 1, - anon_sym_RBRACE, - STATE(1880), 1, - sym_comment, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 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(118), 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, - [2595] = 14, + [2127] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4010), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - STATE(1881), 1, + STATE(1875), 1, sym_comment, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(5577), 1, + STATE(5548), 1, sym_variable_declarator, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214649,7 +216443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -214685,33 +216479,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2688] = 14, + [2220] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4095), 1, + ACTIONS(4065), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4099), 1, - anon_sym_SQUOTE, - STATE(929), 1, + STATE(1876), 1, + sym_comment, + STATE(2341), 1, sym_nested_identifier, - STATE(1085), 1, + STATE(2343), 1, sym_string, - STATE(1262), 1, + STATE(2522), 1, sym__module, - STATE(1882), 1, - sym_comment, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214727,7 +216521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -214764,32 +216558,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2781] = 14, + [2313] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(1121), 1, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(1234), 1, + ACTIONS(1277), 1, anon_sym_EQ_GT, - ACTIONS(4058), 1, + ACTIONS(4065), 1, sym_identifier, - STATE(1883), 1, + STATE(1877), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214805,7 +216599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(120), 37, anon_sym_STAR, anon_sym_as, anon_sym_RBRACE, @@ -214843,59 +216637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2874] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [2406] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, - sym__ternary_qmark, - ACTIONS(1234), 1, - anon_sym_EQ_GT, - ACTIONS(1254), 1, - anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1884), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1878), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, - sym_nested_identifier, - STATE(2443), 1, - sym__module, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(4162), 23, anon_sym_STAR, - anon_sym_as, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, - 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, @@ -214910,45 +216664,76 @@ 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, - [2967] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, + anon_sym_QMARK, + ACTIONS(4164), 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, + [2481] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4058), 1, + ACTIONS(4124), 1, sym_identifier, - STATE(1885), 1, - sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + ACTIONS(4126), 1, + anon_sym_DQUOTE, + ACTIONS(4128), 1, + anon_sym_SQUOTE, + STATE(893), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(905), 1, + sym_string, + STATE(1076), 1, sym__module, - ACTIONS(212), 2, + STATE(1879), 1, + sym_comment, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214964,7 +216749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -215001,33 +216786,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3060] = 14, + [2574] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(1894), 1, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4114), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(4116), 1, anon_sym_SQUOTE, - ACTIONS(4121), 1, - sym_identifier, - STATE(1886), 1, - sym_comment, - STATE(4947), 1, + STATE(295), 1, sym_nested_identifier, - STATE(5633), 1, + STATE(305), 1, sym_string, - STATE(6895), 1, + STATE(329), 1, sym__module, - ACTIONS(212), 2, + STATE(1880), 1, + sym_comment, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215043,7 +216828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -215080,32 +216865,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3153] = 15, + [2667] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1014), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1041), 1, - anon_sym_QMARK, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2677), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_COLON, - ACTIONS(2689), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(2693), 1, - anon_sym_LT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1887), 1, + ACTIONS(4017), 1, + sym_identifier, + ACTIONS(4019), 1, + anon_sym_DQUOTE, + ACTIONS(4021), 1, + anon_sym_SQUOTE, + STATE(1011), 1, + sym_nested_identifier, + STATE(1260), 1, + sym_string, + STATE(1544), 1, + sym__module, + STATE(1881), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2691), 15, + ACTIONS(216), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215121,26 +216907,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(120), 36, + 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, - ACTIONS(118), 20, + [2760] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1882), 1, + sym_comment, + ACTIONS(4166), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -215157,35 +216970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3248] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1041), 1, anon_sym_QMARK, - ACTIONS(2680), 1, - anon_sym_COLON, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2712), 1, + ACTIONS(4168), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4137), 1, - anon_sym_EQ, - ACTIONS(4141), 1, anon_sym_LPAREN, - ACTIONS(4144), 1, - anon_sym_EQ_GT, - ACTIONS(4148), 1, - anon_sym_LT, - STATE(1888), 1, - sym_comment, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4146), 15, + 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, @@ -215201,15 +217004,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(4139), 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, @@ -215219,8 +217013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 20, + anon_sym_implements, + [2835] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1883), 1, + sym_comment, + ACTIONS(4170), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -215237,37 +217040,98 @@ 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, - [3343] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_QMARK, + ACTIONS(4172), 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, + [2910] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4184), 1, anon_sym_EQ_GT, - ACTIONS(4010), 1, - sym_identifier, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - STATE(1889), 1, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + STATE(1884), 1, sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5524), 1, - sym_variable_declarator, - ACTIONS(212), 2, - sym__automatic_semicolon, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4176), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4180), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 15, sym__ternary_qmark, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + 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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215283,16 +217147,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(118), 35, + ACTIONS(4140), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, + 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, + [3007] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1885), 1, + sym_comment, + ACTIONS(4188), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + 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, @@ -215307,44 +217192,24 @@ 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, - [3436] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, + anon_sym_QMARK, + ACTIONS(4190), 38, sym__ternary_qmark, - ACTIONS(1280), 1, - anon_sym_EQ, - ACTIONS(1286), 1, - anon_sym_EQ_GT, - ACTIONS(4058), 1, - sym_identifier, - STATE(1890), 1, - sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, - sym_nested_identifier, - STATE(2443), 1, - sym__module, - ACTIONS(160), 15, + 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, @@ -215360,17 +217225,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(118), 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, + anon_sym_implements, + [3082] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1886), 1, + sym_comment, + ACTIONS(4192), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_of, - 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, @@ -215385,44 +217262,77 @@ 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, + anon_sym_QMARK, + ACTIONS(4194), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3528] = 14, + anon_sym_implements, + [3157] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(1221), 1, + ACTIONS(1224), 1, + anon_sym_COLON, + ACTIONS(1228), 1, anon_sym_EQ_GT, - ACTIONS(4058), 1, + ACTIONS(1265), 1, + anon_sym_EQ, + ACTIONS(4065), 1, sym_identifier, - STATE(1891), 1, + STATE(1887), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215438,7 +217348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -215475,41 +217385,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3620] = 15, + [3252] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4163), 1, - anon_sym_EQ_GT, - ACTIONS(4195), 1, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, + ACTIONS(4184), 1, + anon_sym_EQ_GT, + ACTIONS(4196), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, anon_sym_DOT, - ACTIONS(4213), 1, + ACTIONS(4200), 1, + anon_sym_QMARK_DOT, + ACTIONS(4202), 1, anon_sym_LT, - STATE(1892), 1, + STATE(1888), 1, sym_comment, - STATE(4010), 1, + STATE(3904), 1, + sym_arguments, + STATE(3994), 1, sym_type_arguments, - ACTIONS(4198), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4210), 2, + ACTIONS(4180), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4202), 4, + ACTIONS(4176), 7, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4139), 13, + ACTIONS(4144), 11, 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, @@ -215519,7 +217431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215535,7 +217447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 18, + ACTIONS(4140), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215554,53 +217466,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3714] = 16, + [3349] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1042), 1, + anon_sym_QMARK, + ACTIONS(2687), 1, + anon_sym_COLON, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4144), 1, - anon_sym_EQ_GT, - ACTIONS(4175), 1, + ACTIONS(2717), 1, + anon_sym_RBRACE, + ACTIONS(4142), 1, + anon_sym_EQ, + ACTIONS(4146), 1, anon_sym_LPAREN, - ACTIONS(4177), 1, - anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, + ACTIONS(4149), 1, + anon_sym_EQ_GT, + ACTIONS(4153), 1, anon_sym_LT, - ACTIONS(4216), 1, - anon_sym_EQ, - STATE(1893), 1, + STATE(1889), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, - ACTIONS(4157), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4167), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4146), 15, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215616,16 +217507,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(4135), 17, + ACTIONS(4144), 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(4140), 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, @@ -215634,32 +217546,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3810] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [3444] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1890), 1, + sym_comment, + ACTIONS(4204), 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(4206), 38, sym__ternary_qmark, - ACTIONS(1221), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [3519] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1894), 1, + STATE(1891), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, - sym_nested_identifier, - STATE(2443), 1, - sym__module, - ACTIONS(160), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215675,17 +217641,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(118), 36, + ACTIONS(4140), 21, 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, @@ -215700,127 +217660,69 @@ 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(4144), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3902] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(4220), 1, - anon_sym_LPAREN, - ACTIONS(4222), 1, - anon_sym_DOT, - STATE(1895), 1, - sym_comment, - STATE(2001), 1, - sym_arguments, - STATE(6419), 1, - sym_type_arguments, - ACTIONS(4218), 55, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [3984] = 16, + anon_sym_implements, + [3597] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4149), 1, + anon_sym_EQ_GT, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(4177), 1, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4179), 1, + ACTIONS(4186), 1, anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(4224), 1, + ACTIONS(4210), 1, anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_EQ_GT, - STATE(1896), 1, + STATE(1892), 1, sym_comment, - STATE(3660), 1, + STATE(3674), 1, sym_arguments, - STATE(3731), 1, + STATE(3771), 1, sym_type_arguments, - ACTIONS(4157), 3, + ACTIONS(4176), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4167), 3, + ACTIONS(4180), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4139), 14, + ACTIONS(4144), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -215831,7 +217733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215847,7 +217749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(4140), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215865,16 +217767,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4080] = 7, + [3693] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4174), 1, anon_sym_EQ, - STATE(1897), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4184), 1, + anon_sym_EQ_GT, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + STATE(1893), 1, sym_comment, - ACTIONS(4146), 15, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4180), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4176), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4144), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215890,7 +217828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215900,50 +217838,93 @@ 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(4139), 23, - sym__ternary_qmark, - anon_sym_as, + [3789] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4214), 1, + anon_sym_AT, + STATE(1942), 1, + sym_decorator, + STATE(1894), 2, + sym_comment, + aux_sym_export_statement_repeat1, + ACTIONS(4212), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_await, + anon_sym_yield, 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [4158] = 5, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_global, + [3865] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1898), 1, + STATE(1895), 1, sym_comment, - ACTIONS(3102), 22, + ACTIONS(3081), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215966,7 +217947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3104), 38, + ACTIONS(3083), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -216005,54 +217986,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4232] = 18, + [3939] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4163), 1, - anon_sym_EQ_GT, - ACTIONS(4195), 1, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, + sym__ternary_qmark, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, - anon_sym_LT, - ACTIONS(4238), 1, - anon_sym_QMARK, - STATE(1899), 1, + ACTIONS(1228), 1, + anon_sym_EQ_GT, + ACTIONS(4065), 1, + sym_identifier, + STATE(1896), 1, sym_comment, - STATE(3695), 1, - sym_type_arguments, - STATE(6525), 1, - sym_type_annotation, - ACTIONS(4198), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4210), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 13, - sym__ternary_qmark, + STATE(2341), 1, + sym_nested_identifier, + STATE(2343), 1, + sym_string, + STATE(2522), 1, + sym__module, + ACTIONS(162), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 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, - ACTIONS(4146), 15, + [4031] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, + sym__ternary_qmark, + ACTIONS(1228), 1, + anon_sym_EQ_GT, + ACTIONS(1265), 1, + anon_sym_EQ, + ACTIONS(4065), 1, + sym_identifier, + STATE(1897), 1, + sym_comment, + STATE(2341), 1, + sym_nested_identifier, + STATE(2343), 1, + sym_string, + STATE(2522), 1, + sym__module, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216068,51 +218105,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 18, + ACTIONS(120), 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, - [4332] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [4123] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(1286), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(4058), 1, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(1112), 1, + anon_sym_COLON, + ACTIONS(4065), 1, sym_identifier, - STATE(1900), 1, + STATE(1898), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216128,13 +218185,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(118), 36, + ACTIONS(120), 35, 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, @@ -216165,14 +218221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4424] = 5, + [4217] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1901), 1, + STATE(1899), 1, sym_comment, - ACTIONS(3112), 22, + ACTIONS(3123), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216195,7 +218251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3114), 38, + ACTIONS(3125), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -216234,34 +218290,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4498] = 15, + [4291] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(4184), 1, + anon_sym_EQ_GT, + ACTIONS(4223), 1, + anon_sym_DOT, + ACTIONS(4226), 1, + anon_sym_LT, + ACTIONS(4229), 1, + anon_sym_extends, + STATE(1900), 1, + sym_comment, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4217), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4220), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, + ACTIONS(4144), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [4383] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, - anon_sym_EQ_GT, - ACTIONS(1121), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(1127), 1, - anon_sym_COLON, - ACTIONS(4058), 1, + ACTIONS(1293), 1, + anon_sym_EQ_GT, + ACTIONS(4065), 1, sym_identifier, - STATE(1902), 1, + STATE(1901), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216277,12 +218409,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(118), 35, + ACTIONS(120), 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, @@ -216313,42 +218446,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4592] = 16, + [4475] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - ACTIONS(4163), 1, + ACTIONS(4184), 1, anon_sym_EQ_GT, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(4177), 1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(4238), 1, anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, + ACTIONS(4241), 1, anon_sym_LT, - STATE(1903), 1, + STATE(1902), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, + STATE(4026), 1, sym_type_arguments, - ACTIONS(4167), 2, + ACTIONS(4220), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4157), 4, + ACTIONS(4234), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(4229), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(4139), 13, + anon_sym_PIPE_RBRACE, + ACTIONS(4144), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -216358,7 +218490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216374,7 +218506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 18, + ACTIONS(4140), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216393,33 +218525,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4688] = 14, + [4569] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - ACTIONS(4163), 1, + ACTIONS(4184), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4232), 1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, anon_sym_DOT, - ACTIONS(4235), 1, + ACTIONS(4226), 1, anon_sym_LT, - STATE(1904), 1, - sym_comment, - STATE(3695), 1, + ACTIONS(4229), 1, + anon_sym_extends, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(4246), 1, + anon_sym_QMARK, + STATE(1903), 1, + sym_comment, + STATE(3741), 1, sym_type_arguments, - ACTIONS(4204), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4210), 3, - anon_sym_GT, + STATE(6785), 1, + sym_type_annotation, + ACTIONS(4220), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4146), 15, + ACTIONS(4234), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4144), 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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216435,10 +218588,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(4135), 17, + ACTIONS(4140), 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, @@ -216453,54 +218607,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4139), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [4780] = 16, + [4669] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1121), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(1203), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1206), 1, + ACTIONS(1211), 1, anon_sym_of, - ACTIONS(4058), 1, + ACTIONS(4065), 1, sym_identifier, - STATE(1905), 1, + STATE(1904), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216516,7 +218652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 34, + ACTIONS(120), 34, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -216551,52 +218687,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4876] = 17, + [4765] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4163), 1, - anon_sym_EQ_GT, - ACTIONS(4195), 1, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, + sym__ternary_qmark, + ACTIONS(1287), 1, anon_sym_EQ, - ACTIONS(4198), 1, - anon_sym_RPAREN, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, - anon_sym_LT, - ACTIONS(4244), 1, - anon_sym_QMARK, - STATE(1906), 1, + ACTIONS(1293), 1, + anon_sym_EQ_GT, + ACTIONS(4065), 1, + sym_identifier, + STATE(1905), 1, sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4210), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4241), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4139), 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(4146), 15, + STATE(2341), 1, + sym_nested_identifier, + STATE(2343), 1, + sym_string, + STATE(2522), 1, + sym__module, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216612,38 +218728,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(4135), 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, - [4973] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1907), 1, - sym_comment, - ACTIONS(4187), 22, + ACTIONS(120), 36, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_of, + 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, @@ -216658,236 +218753,126 @@ 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, - ACTIONS(4189), 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, 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, - [5046] = 11, + [4857] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4252), 1, - anon_sym_EQ_GT, - STATE(1908), 1, + ACTIONS(4214), 1, + anon_sym_AT, + ACTIONS(4249), 1, + anon_sym_class, + STATE(1894), 1, + aux_sym_export_statement_repeat1, + STATE(1906), 1, sym_comment, - ACTIONS(4246), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4249), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, - anon_sym_STAR, + STATE(1942), 1, + sym_decorator, + ACTIONS(4212), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, 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_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_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(212), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [5131] = 17, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_global, + [4937] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, + ACTIONS(4138), 1, anon_sym_LT, - ACTIONS(4244), 1, - anon_sym_QMARK, - ACTIONS(4254), 1, - anon_sym_EQ, - ACTIONS(4259), 1, - anon_sym_RPAREN, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - STATE(1909), 1, - sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4210), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4257), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4139), 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(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 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, - [5228] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(4177), 1, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4179), 1, + ACTIONS(4186), 1, anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(4264), 1, + ACTIONS(4252), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4254), 1, anon_sym_EQ_GT, - STATE(1910), 1, + STATE(1907), 1, sym_comment, - STATE(3660), 1, + STATE(3674), 1, sym_arguments, - STATE(3731), 1, + STATE(3771), 1, sym_type_arguments, - ACTIONS(4157), 3, + ACTIONS(4176), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4167), 3, + ACTIONS(4180), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4139), 13, + ACTIONS(4144), 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, @@ -216898,7 +218883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216914,7 +218899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(4140), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216932,26 +218917,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5323] = 10, + [5033] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - ACTIONS(4270), 1, + ACTIONS(1112), 1, anon_sym_QMARK, - STATE(1911), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + STATE(1908), 1, sym_comment, - ACTIONS(4268), 5, + ACTIONS(4256), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4139), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -216967,7 +218952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216983,7 +218968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217005,103 +218990,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5406] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4274), 1, - anon_sym_class, - ACTIONS(4277), 1, - anon_sym_AT, - STATE(1912), 1, - sym_comment, - STATE(1929), 1, - aux_sym_export_statement_repeat1, - STATE(2009), 1, - sym_decorator, - ACTIONS(4272), 55, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5485] = 14, + [5116] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1354), 1, + ACTIONS(1365), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(4065), 1, sym_identifier, - STATE(1913), 1, + STATE(1909), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217117,7 +219031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -217153,111 +219067,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5576] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - ACTIONS(4163), 1, - anon_sym_EQ_GT, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(4177), 1, - anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - STATE(1914), 1, - sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, - ACTIONS(4167), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4157), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4139), 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(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 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, - [5671] = 14, + [5207] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1292), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(4065), 1, sym_identifier, - STATE(1915), 1, + STATE(1910), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217273,7 +219108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -217309,101 +219144,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5762] = 5, + [5298] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(218), 1, + anon_sym_EQ, + ACTIONS(221), 1, + anon_sym_QMARK, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1916), 1, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + STATE(1911), 1, sym_comment, - ACTIONS(4183), 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(4185), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4260), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [5835] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LBRACK, - ACTIONS(4252), 1, - anon_sym_EQ_GT, - STATE(1917), 1, - sym_comment, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2030), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(212), 14, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -217415,7 +219179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217431,7 +219195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217441,7 +219205,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, @@ -217451,42 +219217,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5920] = 10, + [5381] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(1127), 1, - anon_sym_QMARK, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, + sym__ternary_qmark, + ACTIONS(223), 1, anon_sym_EQ_GT, - STATE(1918), 1, + ACTIONS(1299), 1, + anon_sym_EQ, + ACTIONS(4065), 1, + sym_identifier, + STATE(1912), 1, sym_comment, - ACTIONS(4280), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(212), 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(2691), 15, + STATE(2341), 1, + sym_nested_identifier, + STATE(2343), 1, + sym_string, + STATE(2522), 1, + sym__module, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217502,11 +219258,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(118), 21, + ACTIONS(120), 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, @@ -217521,38 +219282,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, - [6003] = 15, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [5472] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(212), 1, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1121), 1, + ACTIONS(1363), 1, anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, - ACTIONS(1206), 1, - anon_sym_of, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4284), 1, + ACTIONS(4065), 1, sym_identifier, - ACTIONS(4286), 1, - anon_sym_LBRACK, - STATE(1919), 1, + STATE(1913), 1, sym_comment, - STATE(6625), 1, - sym__destructuring_pattern, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + STATE(2341), 1, + sym_nested_identifier, + STATE(2343), 1, + sym_string, + STATE(2522), 1, + sym__module, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217568,11 +219335,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(118), 33, + ACTIONS(120), 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, @@ -217602,32 +219371,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6096] = 14, + [5563] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1296), 1, + ACTIONS(1301), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(4065), 1, sym_identifier, - STATE(1920), 1, + STATE(1914), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217643,7 +219412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -217679,32 +219448,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6187] = 14, + [5654] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1358), 1, + ACTIONS(1357), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(4065), 1, sym_identifier, - STATE(1921), 1, + STATE(1915), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217720,7 +219489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -217756,38 +219525,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6278] = 16, + [5745] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(4177), 1, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4179), 1, + ACTIONS(4186), 1, anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(4289), 1, + ACTIONS(4262), 1, anon_sym_EQ, - ACTIONS(4291), 1, + ACTIONS(4264), 1, anon_sym_EQ_GT, - STATE(1922), 1, + STATE(1916), 1, sym_comment, - STATE(3660), 1, + STATE(3674), 1, sym_arguments, - STATE(3731), 1, + STATE(3771), 1, sym_type_arguments, - ACTIONS(4157), 3, + ACTIONS(4176), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4167), 3, + ACTIONS(4180), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4139), 13, + ACTIONS(4144), 13, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -217801,7 +219570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217817,7 +219586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(4140), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217835,33 +219604,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6373] = 14, + [5840] = 17, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4144), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4216), 1, - anon_sym_EQ, - ACTIONS(4232), 1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, anon_sym_DOT, - ACTIONS(4235), 1, + ACTIONS(4226), 1, anon_sym_LT, - STATE(1923), 1, + ACTIONS(4229), 1, + anon_sym_extends, + ACTIONS(4266), 1, + anon_sym_EQ, + ACTIONS(4271), 1, + anon_sym_RPAREN, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4276), 1, + anon_sym_QMARK, + STATE(1917), 1, sym_comment, - STATE(3695), 1, + STATE(3741), 1, sym_type_arguments, - ACTIONS(4204), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4210), 3, - anon_sym_GT, + ACTIONS(4220), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4146), 15, + ACTIONS(4269), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4144), 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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217877,27 +219665,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(4139), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4135), 17, + ACTIONS(4140), 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, @@ -217912,32 +219684,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6464] = 10, + [5937] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(214), 1, - anon_sym_EQ, - ACTIONS(217), 1, - anon_sym_QMARK, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4184), 1, anon_sym_EQ_GT, - STATE(1924), 1, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + STATE(1918), 1, sym_comment, - ACTIONS(4293), 5, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4180), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4176), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(212), 15, + anon_sym_extends, + ACTIONS(4144), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -217947,7 +219728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217963,7 +219744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4140), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217973,44 +219754,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6547] = 14, + [6032] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1356), 1, + ACTIONS(1359), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(4065), 1, sym_identifier, - STATE(1925), 1, + STATE(1919), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218026,7 +219804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -218062,108 +219840,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6638] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [6123] = 17, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, - sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4184), 1, anon_sym_EQ_GT, - ACTIONS(1294), 1, - anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1926), 1, - sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, - sym_nested_identifier, - STATE(2443), 1, - sym__module, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + ACTIONS(4217), 1, anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(4223), 1, 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(4226), 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, - [6729] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(115), 1, + ACTIONS(4229), 1, + anon_sym_extends, + ACTIONS(4231), 1, anon_sym_EQ, - ACTIONS(217), 1, + ACTIONS(4234), 1, + anon_sym_RPAREN, + ACTIONS(4276), 1, anon_sym_QMARK, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4252), 1, - anon_sym_EQ_GT, - STATE(1927), 1, + STATE(1920), 1, sym_comment, - ACTIONS(4295), 5, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4220), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4278), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(212), 15, + ACTIONS(4144), 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, @@ -218174,7 +219885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218190,7 +219901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4140), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218200,44 +219911,61 @@ 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, - [6812] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [6220] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, - sym__ternary_qmark, - ACTIONS(219), 1, - anon_sym_EQ_GT, - ACTIONS(1300), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + ACTIONS(4281), 1, anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1928), 1, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + STATE(1921), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, - sym_nested_identifier, - STATE(2443), 1, - sym__module, - ACTIONS(160), 15, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4176), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4180), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218253,55 +219981,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(118), 35, + ACTIONS(4140), 17, 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, - [6903] = 6, + [6315] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4277), 1, - anon_sym_AT, - STATE(2009), 1, - sym_decorator, - STATE(1929), 2, + STATE(1922), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4272), 56, + ACTIONS(3231), 59, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218311,7 +220016,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -218322,7 +220029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -218342,6 +220048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -218358,42 +220065,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [6978] = 10, + anon_sym_global, + [6386] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1142), 1, + anon_sym_EQ, + ACTIONS(2037), 1, + anon_sym_extends, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4163), 1, + ACTIONS(4291), 1, anon_sym_EQ_GT, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(4244), 1, - anon_sym_QMARK, - STATE(1930), 1, + STATE(1923), 1, sym_comment, - ACTIONS(4241), 5, + ACTIONS(4285), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4139), 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(4146), 15, + ACTIONS(4288), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218409,19 +220102,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(4135), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -218431,30 +220121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7061] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_QMARK, - ACTIONS(4254), 1, - anon_sym_EQ, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - STATE(1931), 1, - sym_comment, - ACTIONS(4257), 5, - anon_sym_COMMA, + ACTIONS(216), 18, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4139), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -218466,7 +220140,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + [6471] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, + sym__ternary_qmark, + ACTIONS(223), 1, + anon_sym_EQ_GT, + ACTIONS(1303), 1, + anon_sym_EQ, + ACTIONS(4065), 1, + sym_identifier, + STATE(1924), 1, + sym_comment, + STATE(2341), 1, + sym_nested_identifier, + STATE(2343), 1, + sym_string, + STATE(2522), 1, + sym__module, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218482,11 +220181,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(4135), 21, + ACTIONS(120), 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, @@ -218501,35 +220205,45 @@ 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, - [7144] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6562] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, - sym__ternary_qmark, - ACTIONS(219), 1, - anon_sym_EQ_GT, - ACTIONS(1121), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4223), 1, + anon_sym_DOT, + ACTIONS(4226), 1, + anon_sym_LT, + ACTIONS(4229), 1, + anon_sym_extends, + ACTIONS(4252), 1, anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1932), 1, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + STATE(1925), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, - sym_nested_identifier, - STATE(2443), 1, - sym__module, - ACTIONS(160), 15, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4217), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4220), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218545,69 +220259,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, + ACTIONS(4144), 16, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, + 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(4140), 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_AMP, 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, + [6653] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4138), 1, anon_sym_LT, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + ACTIONS(4293), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_EQ_GT, + STATE(1926), 1, + sym_comment, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4176), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4180), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, 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, - [7235] = 14, + anon_sym_implements, + ACTIONS(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, + [6748] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4224), 1, - anon_sym_EQ, - ACTIONS(4226), 1, + ACTIONS(4149), 1, anon_sym_EQ_GT, - ACTIONS(4232), 1, + ACTIONS(4210), 1, + anon_sym_EQ, + ACTIONS(4223), 1, anon_sym_DOT, - ACTIONS(4235), 1, + ACTIONS(4226), 1, anon_sym_LT, - STATE(1933), 1, + ACTIONS(4229), 1, + anon_sym_extends, + STATE(1927), 1, sym_comment, - STATE(3695), 1, + STATE(3741), 1, sym_type_arguments, - ACTIONS(4204), 2, + ACTIONS(4217), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4210), 3, + ACTIONS(4220), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218623,12 +220415,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(4139), 16, + ACTIONS(4144), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -218640,50 +220432,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 17, + ACTIONS(4140), 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, + [6839] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4184), 1, + anon_sym_EQ_GT, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(4276), 1, + anon_sym_QMARK, + STATE(1928), 1, + sym_comment, + ACTIONS(4278), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4144), 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(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, - [7326] = 14, + [6922] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1302), 1, + ACTIONS(1305), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(4065), 1, sym_identifier, - STATE(1934), 1, + STATE(1929), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, + STATE(2341), 1, sym_nested_identifier, - STATE(2443), 1, + STATE(2343), 1, + sym_string, + STATE(2522), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218699,7 +220564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -218735,32 +220600,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7417] = 14, + [7013] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + STATE(1930), 1, + sym_comment, + ACTIONS(4297), 59, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT, anon_sym_DQUOTE, - ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(212), 1, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [7084] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(216), 1, sym__ternary_qmark, - ACTIONS(219), 1, + ACTIONS(223), 1, anon_sym_EQ_GT, - ACTIONS(1298), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1211), 1, + anon_sym_of, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4299), 1, sym_identifier, - STATE(1935), 1, + ACTIONS(4301), 1, + anon_sym_LBRACK, + STATE(1931), 1, sym_comment, - STATE(2284), 1, - sym_string, - STATE(2285), 1, - sym_nested_identifier, - STATE(2443), 1, - sym__module, - ACTIONS(160), 15, + STATE(6828), 1, + sym__destructuring_pattern, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218776,13 +220711,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(118), 35, + ACTIONS(120), 33, 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, @@ -218812,52 +220745,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7508] = 16, + [7177] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(4177), 1, - anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(4298), 1, - anon_sym_EQ, - ACTIONS(4300), 1, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(216), 1, + sym__ternary_qmark, + ACTIONS(223), 1, anon_sym_EQ_GT, - STATE(1936), 1, + ACTIONS(1361), 1, + anon_sym_EQ, + ACTIONS(4065), 1, + sym_identifier, + STATE(1932), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, - ACTIONS(4157), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4167), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4146), 15, + STATE(2341), 1, + sym_nested_identifier, + STATE(2343), 1, + sym_string, + STATE(2522), 1, + sym__module, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218873,32 +220786,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(120), 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, - [7603] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7268] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1937), 1, + STATE(1933), 1, sym_comment, - ACTIONS(3148), 58, + ACTIONS(3289), 59, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218957,24 +220888,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [7673] = 9, + anon_sym_global, + [7339] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_QMARK, - ACTIONS(4254), 1, + STATE(1934), 1, + sym_comment, + ACTIONS(4204), 22, + anon_sym_STAR, anon_sym_EQ, - STATE(1938), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(4206), 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, + [7412] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4266), 1, + anon_sym_EQ, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4276), 1, + anon_sym_QMARK, + STATE(1935), 1, sym_comment, - ACTIONS(4257), 5, + ACTIONS(4269), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -218990,7 +220992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219006,7 +221008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219028,27 +221030,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7753] = 11, + [7495] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1939), 1, - sym_comment, - ACTIONS(4246), 2, - anon_sym_COMMA, + ACTIONS(4285), 1, anon_sym_LBRACK, - ACTIONS(4249), 3, - anon_sym_GT, + ACTIONS(4291), 1, + anon_sym_EQ_GT, + STATE(1936), 1, + sym_comment, + ACTIONS(4288), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2691), 15, + ACTIONS(2037), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(216), 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(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219064,13 +221084,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 17, - sym__automatic_semicolon, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7580] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(221), 1, + anon_sym_QMARK, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4291), 1, + anon_sym_EQ_GT, + STATE(1937), 1, + sym_comment, + ACTIONS(4304), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -219082,16 +221139,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -219101,24 +221177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7837] = 9, + [7663] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4270), 1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4309), 1, anon_sym_QMARK, - STATE(1940), 1, + STATE(1938), 1, sym_comment, - ACTIONS(4268), 5, + ACTIONS(4307), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -219134,7 +221212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219150,8 +221228,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(4135), 21, + ACTIONS(4140), 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, + [7746] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1939), 1, + sym_comment, + ACTIONS(4166), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -219172,14 +221280,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7917] = 4, + ACTIONS(4168), 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, + [7819] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1941), 1, + STATE(1940), 1, sym_comment, - ACTIONS(3146), 58, + ACTIONS(4311), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219189,9 +221335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -219202,6 +221346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -219238,40 +221383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [7987] = 9, + anon_sym_global, + [7889] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4195), 1, + ACTIONS(1034), 1, + anon_sym_EQ_GT, + ACTIONS(1174), 1, anon_sym_EQ, - ACTIONS(4244), 1, - anon_sym_QMARK, - STATE(1942), 1, - sym_comment, - ACTIONS(4241), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1176), 1, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4139), 15, + ACTIONS(4130), 1, + sym_identifier, + STATE(1941), 1, + sym_comment, + ACTIONS(216), 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(4146), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219287,11 +221418,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(4135), 21, + ACTIONS(120), 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, @@ -219306,44 +221444,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_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [8067] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7971] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4175), 1, + STATE(1942), 1, + sym_comment, + ACTIONS(4313), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4177), 1, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [8041] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4223), 1, anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, + ACTIONS(4226), 1, anon_sym_LT, - ACTIONS(4302), 1, + ACTIONS(4229), 1, + anon_sym_extends, + ACTIONS(4293), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4295), 1, anon_sym_EQ_GT, STATE(1943), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, + STATE(3741), 1, sym_type_arguments, - ACTIONS(4157), 3, + ACTIONS(4217), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4167), 3, + ACTIONS(4220), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4139), 12, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -219353,7 +221563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + anon_sym_implements, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219369,7 +221580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(4140), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219387,99 +221598,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8161] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [8131] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1033), 1, - anon_sym_EQ_GT, - ACTIONS(1167), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(1201), 1, - anon_sym_COLON, - ACTIONS(4306), 1, - sym_identifier, + ACTIONS(4309), 1, + anon_sym_QMARK, STATE(1944), 1, sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, + ACTIONS(4307), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4144), 15, sym__ternary_qmark, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [8243] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1183), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4308), 1, - anon_sym_EQ_GT, - STATE(1945), 1, - sym_comment, - ACTIONS(4246), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4249), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219495,34 +221647,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(212), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(4140), 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, @@ -219532,25 +221669,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8327] = 10, + [8211] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1945), 1, + sym_comment, + ACTIONS(4315), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [8281] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1033), 1, + ACTIONS(1034), 1, anon_sym_EQ_GT, - ACTIONS(1167), 1, + ACTIONS(1174), 1, anon_sym_EQ, - ACTIONS(1199), 1, + ACTIONS(1178), 1, anon_sym_COLON, - ACTIONS(4310), 1, + ACTIONS(4317), 1, sym_identifier, STATE(1946), 1, sym_comment, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219566,7 +221769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(120), 37, anon_sym_STAR, anon_sym_as, anon_sym_COMMA, @@ -219604,39 +221807,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8409] = 14, + [8363] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, + ACTIONS(4138), 1, anon_sym_LT, - ACTIONS(4264), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + ACTIONS(4319), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4321), 1, anon_sym_EQ_GT, STATE(1947), 1, sym_comment, - STATE(3695), 1, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, sym_type_arguments, - ACTIONS(4202), 2, + ACTIONS(4176), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4210), 3, + ACTIONS(4180), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4139), 15, - sym__automatic_semicolon, + ACTIONS(4144), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -219646,7 +221851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219662,7 +221867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(4140), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219680,41 +221885,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8499] = 16, + [8457] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(4177), 1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, + ACTIONS(4226), 1, anon_sym_LT, - ACTIONS(4312), 1, + ACTIONS(4262), 1, anon_sym_EQ, - ACTIONS(4314), 1, + ACTIONS(4264), 1, anon_sym_EQ_GT, STATE(1948), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, + STATE(3741), 1, sym_type_arguments, - ACTIONS(4157), 3, + ACTIONS(4229), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4167), 3, + ACTIONS(4220), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4139), 12, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -219724,7 +221927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219740,7 +221943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(4140), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219758,46 +221961,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8593] = 13, + [8547] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(217), 1, - anon_sym_QMARK, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(1034), 1, anon_sym_EQ_GT, + ACTIONS(1174), 1, + anon_sym_EQ, + ACTIONS(1206), 1, + anon_sym_COLON, + ACTIONS(4323), 1, + sym_identifier, STATE(1949), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4295), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(212), 14, + ACTIONS(216), 2, + sym__automatic_semicolon, 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(2691), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219813,38 +221995,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(118), 19, + ACTIONS(120), 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, - [8681] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8629] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4163), 1, + ACTIONS(1034), 1, anon_sym_EQ_GT, - ACTIONS(4228), 1, + ACTIONS(1174), 1, anon_sym_EQ, + ACTIONS(1180), 1, + anon_sym_COLON, + ACTIONS(4325), 1, + sym_identifier, STATE(1950), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(216), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219860,32 +222067,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(4139), 20, - sym__ternary_qmark, + ACTIONS(120), 37, + anon_sym_STAR, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, + 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(4135), 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, @@ -219900,52 +222093,96 @@ 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, - [8759] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8711] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, - anon_sym_LT, - ACTIONS(4298), 1, - anon_sym_EQ, - ACTIONS(4300), 1, - anon_sym_EQ_GT, STATE(1951), 1, sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4204), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4327), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, 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_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4146), 15, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [8781] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4291), 1, + anon_sym_EQ_GT, + STATE(1952), 1, + sym_comment, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219961,56 +222198,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(4135), 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, - [8849] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, - anon_sym_LT, - ACTIONS(4289), 1, - anon_sym_EQ, - ACTIONS(4291), 1, - anon_sym_EQ_GT, - STATE(1952), 1, - sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4202), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 15, + ACTIONS(216), 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, @@ -220021,59 +222219,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8939] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [8859] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1033), 1, - anon_sym_EQ_GT, - ACTIONS(1167), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4266), 1, anon_sym_EQ, - ACTIONS(1195), 1, - anon_sym_COLON, - ACTIONS(4123), 1, - sym_identifier, + ACTIONS(4276), 1, + anon_sym_QMARK, STATE(1953), 1, sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, + ACTIONS(4269), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4144), 15, sym__ternary_qmark, - ACTIONS(160), 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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220089,18 +222290,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(118), 37, + ACTIONS(4140), 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, @@ -220115,30 +222309,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, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [9021] = 8, + [8939] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, + ACTIONS(1174), 1, anon_sym_EQ, + ACTIONS(2037), 1, + anon_sym_extends, ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4252), 1, anon_sym_EQ_GT, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(1954), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4285), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4288), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220154,16 +222348,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(212), 20, + ACTIONS(216), 17, + 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_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -220175,19 +222366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -220197,50 +222385,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9099] = 16, + [9023] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - ACTIONS(4163), 1, + ACTIONS(1034), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, - anon_sym_LT, - ACTIONS(4268), 1, + ACTIONS(1174), 1, + anon_sym_EQ, + ACTIONS(1213), 1, anon_sym_COLON, + ACTIONS(4329), 1, + sym_identifier, STATE(1955), 1, sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4210), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4316), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4139), 13, + ACTIONS(216), 2, + sym__automatic_semicolon, 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(4146), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220256,114 +222419,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 18, + ACTIONS(120), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9193] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4228), 1, - anon_sym_EQ, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, anon_sym_LT, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - ACTIONS(4268), 1, - anon_sym_COLON, - STATE(1956), 1, - sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4210), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4202), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4139), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 18, - anon_sym_STAR, + [9105] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1956), 1, + sym_comment, + ACTIONS(4331), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, - anon_sym_in, - anon_sym_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_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, 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, - [9285] = 8, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [9175] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - ACTIONS(4163), 1, + ACTIONS(4184), 1, anon_sym_EQ_GT, + ACTIONS(4208), 1, + anon_sym_EQ, STATE(1957), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220379,7 +222550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 20, + ACTIONS(4144), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -220400,7 +222571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220422,40 +222593,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9363] = 16, + [9253] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(4177), 1, - anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(4228), 1, + ACTIONS(4231), 1, anon_sym_EQ, - ACTIONS(4262), 1, - anon_sym_EQ_GT, + ACTIONS(4276), 1, + anon_sym_QMARK, STATE(1958), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, - ACTIONS(4167), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4157), 4, + ACTIONS(4278), 5, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4139), 11, + ACTIONS(4144), 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, @@ -220465,7 +222626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220481,7 +222642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 18, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220491,44 +222652,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9457] = 13, + [9333] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(214), 1, - anon_sym_EQ, - ACTIONS(217), 1, - anon_sym_QMARK, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4282), 1, + ACTIONS(4223), 1, + anon_sym_DOT, + ACTIONS(4226), 1, + anon_sym_LT, + ACTIONS(4281), 1, + anon_sym_EQ, + ACTIONS(4283), 1, anon_sym_EQ_GT, STATE(1959), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_RPAREN, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4229), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(4249), 2, + ACTIONS(4220), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4293), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(212), 14, + ACTIONS(4144), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -220539,7 +222706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220555,11 +222722,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(118), 19, + ACTIONS(4140), 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, @@ -220571,18 +222737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9545] = 4, + [9423] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(1960), 1, sym_comment, - ACTIONS(4320), 58, + ACTIONS(3335), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220593,10 +222758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_class, @@ -220604,7 +222769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -220641,18 +222805,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [9615] = 8, + anon_sym_global, + [9493] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, + ACTIONS(1186), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2037), 1, + anon_sym_extends, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4252), 1, + ACTIONS(4333), 1, anon_sym_EQ_GT, STATE(1961), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4285), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4288), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220668,16 +222842,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(212), 20, + ACTIONS(216), 17, + 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_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -220689,19 +222860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -220711,309 +222879,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9693] = 10, + [9577] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1033), 1, - anon_sym_EQ_GT, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(1169), 1, - anon_sym_COLON, - ACTIONS(4322), 1, - sym_identifier, STATE(1962), 1, sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, - anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3309), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, + anon_sym_await, anon_sym_SEMI, + anon_sym_yield, 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [9775] = 10, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [9647] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1033), 1, - anon_sym_EQ_GT, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(4324), 1, - sym_identifier, STATE(1963), 1, sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, - anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4335), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, + anon_sym_await, + anon_sym_yield, 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [9857] = 11, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [9717] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1142), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2934), 1, + ACTIONS(4291), 1, anon_sym_EQ_GT, - ACTIONS(4246), 1, - anon_sym_LBRACK, STATE(1964), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4249), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 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(118), 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, - [9940] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, - anon_sym_LT, - ACTIONS(4302), 1, - anon_sym_EQ, - ACTIONS(4304), 1, - anon_sym_EQ_GT, - STATE(1965), 1, - sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4202), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 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, - [10029] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4144), 1, - anon_sym_EQ_GT, - ACTIONS(4228), 1, - anon_sym_EQ, - STATE(1966), 1, - sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221029,15 +223038,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(4139), 19, - sym__automatic_semicolon, + ACTIONS(216), 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, @@ -221049,7 +223059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221071,28 +223081,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10106] = 10, + [9795] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(221), 1, + anon_sym_QMARK, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4252), 1, + ACTIONS(4285), 1, + anon_sym_LBRACK, + ACTIONS(4291), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, - anon_sym_COLON, - STATE(1967), 1, + STATE(1965), 1, sym_comment, - ACTIONS(4326), 3, + ACTIONS(2037), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4304), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(212), 15, + anon_sym_COLON, + ACTIONS(216), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -221104,7 +223120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221120,7 +223136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221130,9 +223146,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, @@ -221142,14 +223156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10187] = 4, + [9883] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1968), 1, + STATE(1966), 1, sym_comment, - ACTIONS(4218), 57, + ACTIONS(3333), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221160,6 +223174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -221170,7 +223185,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -221207,14 +223221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [10256] = 4, + anon_sym_global, + [9953] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1969), 1, + STATE(1967), 1, sym_comment, - ACTIONS(4329), 57, + ACTIONS(3291), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221225,6 +223240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -221235,7 +223251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -221272,80 +223287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [10325] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1970), 1, - sym_comment, - ACTIONS(3102), 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(3104), 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, - [10396] = 4, + anon_sym_global, + [10023] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1971), 1, + STATE(1968), 1, sym_comment, - ACTIONS(4331), 57, + ACTIONS(4132), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221403,18 +223353,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [10465] = 8, + anon_sym_global, + [10093] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4144), 1, - anon_sym_EQ_GT, - ACTIONS(4216), 1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + ACTIONS(4208), 1, anon_sym_EQ, - STATE(1972), 1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + STATE(1969), 1, sym_comment, - ACTIONS(4146), 15, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4180), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4176), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4144), 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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221430,27 +223413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 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(4135), 21, + ACTIONS(4140), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221460,60 +223423,60 @@ 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, - [10542] = 5, + [10187] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1973), 1, - sym_comment, - ACTIONS(4125), 22, - anon_sym_STAR, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + ACTIONS(4337), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4339), 1, + anon_sym_EQ_GT, + STATE(1970), 1, + sym_comment, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4176), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4180), 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(4127), 35, - sym__automatic_semicolon, + ACTIONS(4144), 12, sym__ternary_qmark, anon_sym_as, - anon_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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221529,58 +223492,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [10613] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1974), 1, - sym_comment, - ACTIONS(4333), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4183), 22, + ACTIONS(4140), 17, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4185), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + [10281] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(218), 1, + anon_sym_EQ, + ACTIONS(221), 1, + anon_sym_QMARK, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, anon_sym_LBRACK, + STATE(1971), 1, + sym_comment, + ACTIONS(2037), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4260), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(216), 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(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221596,6 +223565,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10369] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, + anon_sym_DOT, + ACTIONS(4226), 1, + anon_sym_LT, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4307), 1, + anon_sym_COLON, + STATE(1972), 1, + sym_comment, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4220), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4144), 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, @@ -221605,20 +223627,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10686] = 9, + ACTIONS(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, + [10461] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2844), 1, - anon_sym_COLON, - ACTIONS(4144), 1, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(4184), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, + anon_sym_DOT, + ACTIONS(4226), 1, + anon_sym_LT, + ACTIONS(4229), 1, + anon_sym_extends, + ACTIONS(4307), 1, + anon_sym_COLON, + STATE(1973), 1, + sym_comment, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4220), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4341), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4144), 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(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, + [10555] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4174), 1, anon_sym_EQ, - STATE(1975), 1, + ACTIONS(4184), 1, + anon_sym_EQ_GT, + STATE(1974), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221634,14 +223767,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(4139), 18, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -221653,7 +223788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221675,18 +223810,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10765] = 8, + [10633] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + STATE(1975), 1, + sym_comment, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4180), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4176), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4144), 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(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, + [10726] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4308), 1, + ACTIONS(2851), 1, + anon_sym_COLON, + ACTIONS(4149), 1, anon_sym_EQ_GT, + ACTIONS(4210), 1, + anon_sym_EQ, STATE(1976), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221702,13 +223916,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(212), 19, + ACTIONS(4144), 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, @@ -221722,7 +223935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221744,20 +223957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10842] = 9, + [10805] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(1174), 1, anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, + ACTIONS(1208), 1, + anon_sym_in, ACTIONS(2696), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2844), 1, - anon_sym_COLON, + ACTIONS(4345), 1, + anon_sym_of, STATE(1977), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221773,7 +223988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 18, + ACTIONS(216), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -221792,10 +224007,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -221814,27 +224028,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10921] = 11, + [10886] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4335), 1, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(4184), 1, anon_sym_EQ_GT, + ACTIONS(4223), 1, + anon_sym_DOT, + ACTIONS(4226), 1, + anon_sym_LT, + ACTIONS(4229), 1, + anon_sym_extends, STATE(1978), 1, sym_comment, - ACTIONS(4246), 2, - anon_sym_COMMA, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4217), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4249), 3, - anon_sym_GT, + ACTIONS(4220), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2691), 15, + ACTIONS(4144), 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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221850,27 +224084,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(212), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 18, + ACTIONS(4140), 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, @@ -221882,24 +224100,58 @@ 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, - [11004] = 6, + [10975] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1186), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4333), 1, + anon_sym_EQ_GT, STATE(1979), 1, sym_comment, - ACTIONS(4337), 3, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(216), 19, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4187), 22, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -221920,15 +224172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4189), 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, + [11052] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4333), 1, + anon_sym_EQ_GT, + STATE(1980), 1, + sym_comment, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221944,6 +224199,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(216), 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, @@ -221953,27 +224219,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11077] = 11, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11129] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1254), 1, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4285), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(4347), 1, anon_sym_EQ_GT, - STATE(1980), 1, + STATE(1981), 1, sym_comment, - ACTIONS(2030), 2, + ACTIONS(2037), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4249), 3, + ACTIONS(4288), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221989,7 +224277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 16, + ACTIONS(216), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -222006,7 +224294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222025,167 +224313,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11160] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [11212] = 9, ACTIONS(5), 1, sym_html_comment, - STATE(1981), 1, + ACTIONS(1174), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2889), 1, + anon_sym_COLON, + STATE(1982), 1, sym_comment, - ACTIONS(3196), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(216), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_await, anon_sym_SEMI, - anon_sym_yield, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [11229] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1982), 1, - sym_comment, - ACTIONS(3198), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [11298] = 14, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11291] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, - anon_sym_LT, - ACTIONS(4312), 1, - anon_sym_EQ, - ACTIONS(4314), 1, + ACTIONS(2889), 1, + anon_sym_COLON, + ACTIONS(4149), 1, anon_sym_EQ_GT, + ACTIONS(4210), 1, + anon_sym_EQ, STATE(1983), 1, sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4202), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 14, + ACTIONS(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4144), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -222196,7 +224431,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4140), 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, + [11370] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2771), 1, + anon_sym_COLON, + ACTIONS(4149), 1, + anon_sym_EQ_GT, + ACTIONS(4210), 1, + anon_sym_EQ, + STATE(1984), 1, + sym_comment, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222212,34 +224482,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(4144), 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(4140), 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, - [11387] = 6, + [11449] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4337), 1, - anon_sym_COMMA, - STATE(1984), 1, + STATE(1985), 1, sym_comment, - ACTIONS(4187), 22, + ACTIONS(3123), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222262,15 +224553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4189), 34, + ACTIONS(3125), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -222297,22 +224589,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11460] = 10, + [11520] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1174), 1, + anon_sym_EQ, ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4144), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, - anon_sym_EQ, - ACTIONS(4341), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2771), 1, + anon_sym_COLON, + STATE(1986), 1, + sym_comment, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(216), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(4344), 1, - anon_sym_of, - STATE(1985), 1, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11599] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4208), 1, + anon_sym_EQ, + STATE(1987), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222328,12 +224684,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(4139), 18, + ACTIONS(4144), 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, @@ -222347,9 +224705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 20, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -222368,29 +224727,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11541] = 12, + [11674] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, + ACTIONS(1142), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2037), 1, + anon_sym_extends, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LBRACK, - ACTIONS(4280), 1, + ACTIONS(4256), 1, anon_sym_COLON, - ACTIONS(4282), 1, + ACTIONS(4285), 1, + anon_sym_LBRACK, + ACTIONS(4291), 1, anon_sym_EQ_GT, - STATE(1986), 1, + STATE(1988), 1, sym_comment, - ACTIONS(4249), 2, + ACTIONS(4288), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2030), 3, + ACTIONS(4349), 2, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(212), 14, + ACTIONS(216), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222405,7 +224765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222421,7 +224781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222441,14 +224801,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11626] = 5, + [11761] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1174), 1, + anon_sym_EQ, ACTIONS(2696), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1987), 1, + STATE(1989), 1, + sym_comment, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(216), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11838] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1990), 1, sym_comment, - ACTIONS(4191), 22, + ACTIONS(4166), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222471,7 +224900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4193), 35, + ACTIONS(4168), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222507,18 +224936,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11697] = 8, + [11909] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1183), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4308), 1, - anon_sym_EQ_GT, - STATE(1988), 1, + STATE(1991), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4204), 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(4206), 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, @@ -222534,15 +224993,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(212), 19, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11980] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4256), 1, + anon_sym_COLON, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_LBRACK, + STATE(1992), 1, + sym_comment, + ACTIONS(4288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2037), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(216), 14, 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, @@ -222554,8 +225039,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12065] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(1993), 1, + sym_comment, + ACTIONS(4188), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -222576,14 +225105,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11774] = 5, + ACTIONS(4190), 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, + [12136] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1989), 1, + STATE(1994), 1, sym_comment, - ACTIONS(3112), 22, + ACTIONS(4192), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222606,7 +225171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3114), 35, + ACTIONS(4194), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222642,22 +225207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11845] = 10, + [12207] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(1174), 1, anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4346), 1, - anon_sym_of, - STATE(1990), 1, + ACTIONS(2829), 1, + anon_sym_COLON, + STATE(1995), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222673,7 +225236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 18, + ACTIONS(216), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222692,9 +225255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -222713,14 +225277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11926] = 5, + [12286] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1991), 1, + STATE(1996), 1, sym_comment, - ACTIONS(4131), 22, + ACTIONS(4204), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222743,7 +225307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4133), 35, + ACTIONS(4206), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222779,14 +225343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11997] = 5, + [12357] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1992), 1, + STATE(1997), 1, sym_comment, - ACTIONS(4171), 22, + ACTIONS(4166), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222809,7 +225373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4173), 35, + ACTIONS(4168), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222845,14 +225409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12068] = 5, + [12428] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1993), 1, + STATE(1998), 1, sym_comment, - ACTIONS(4183), 22, + ACTIONS(4170), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222875,7 +225439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4185), 35, + ACTIONS(4172), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222911,18 +225475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12139] = 8, + [12499] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1994), 1, + ACTIONS(2829), 1, + anon_sym_COLON, + ACTIONS(4149), 1, + anon_sym_EQ_GT, + ACTIONS(4210), 1, + anon_sym_EQ, + STATE(1999), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222938,12 +225504,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(212), 19, + ACTIONS(4144), 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, @@ -222958,7 +225523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222980,16 +225545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12216] = 6, + [12578] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4333), 1, + ACTIONS(4353), 1, anon_sym_COMMA, - STATE(1995), 1, + STATE(2000), 1, sym_comment, - ACTIONS(4183), 22, + ACTIONS(4166), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223012,7 +225577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4185), 34, + ACTIONS(4168), 34, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -223047,48 +225612,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12289] = 5, + [12651] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1253), 1, + anon_sym_EQ, + ACTIONS(2037), 1, + anon_sym_extends, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1996), 1, + ACTIONS(4355), 1, + anon_sym_EQ_GT, + STATE(2001), 1, sym_comment, - ACTIONS(4151), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4285), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4288), 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(4153), 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(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223104,6 +225648,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(216), 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, @@ -223113,14 +225664,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12360] = 5, + anon_sym_implements, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12734] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(1997), 1, + STATE(2002), 1, sym_comment, - ACTIONS(4187), 22, + ACTIONS(4156), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223143,7 +225714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4189), 35, + ACTIONS(4158), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -223179,105 +225750,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12431] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [12805] = 10, ACTIONS(5), 1, sym_html_comment, - STATE(1998), 1, - sym_comment, - ACTIONS(4348), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [12500] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(4177), 1, - anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(4228), 1, + ACTIONS(1142), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4256), 1, + anon_sym_COLON, + ACTIONS(4291), 1, anon_sym_EQ_GT, - STATE(1999), 1, + STATE(2003), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, - ACTIONS(4157), 3, + ACTIONS(4357), 3, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4167), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 11, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(216), 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, @@ -223287,7 +225783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223303,53 +225799,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(4135), 17, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12593] = 13, + [12886] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(2941), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, - anon_sym_COLON, - STATE(2000), 1, + ACTIONS(4285), 1, + anon_sym_LBRACK, + STATE(2004), 1, sym_comment, - ACTIONS(4249), 2, + ACTIONS(2037), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4350), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(212), 14, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(216), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + [12969] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, anon_sym_DOT, + ACTIONS(4186), 1, anon_sym_QMARK_DOT, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + STATE(2005), 1, + sym_comment, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4176), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4180), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -223359,7 +225936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223375,11 +225952,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(118), 19, + ACTIONS(4140), 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, @@ -223391,150 +225967,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12680] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [13062] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(2001), 1, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2006), 1, sym_comment, - ACTIONS(4354), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(216), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [12749] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2002), 1, - sym_comment, - ACTIONS(3244), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [12818] = 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13139] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1174), 1, + anon_sym_EQ, ACTIONS(2696), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - STATE(2003), 1, + ACTIONS(2851), 1, + anon_sym_COLON, + STATE(2007), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223550,16 +226068,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(4139), 20, + ACTIONS(216), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -223571,7 +226087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223593,79 +226109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12893] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2004), 1, - sym_comment, - ACTIONS(3240), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [12962] = 5, + [13218] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2005), 1, + ACTIONS(4360), 1, + anon_sym_COMMA, + STATE(2008), 1, sym_comment, - ACTIONS(4183), 22, + ACTIONS(4204), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223688,16 +226141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4185), 35, - sym__automatic_semicolon, + ACTIONS(4206), 34, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -223724,36 +226176,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13033] = 14, + [13291] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - ACTIONS(4163), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4232), 1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, anon_sym_DOT, - ACTIONS(4235), 1, + ACTIONS(4226), 1, anon_sym_LT, - STATE(2006), 1, + ACTIONS(4337), 1, + anon_sym_EQ, + ACTIONS(4339), 1, + anon_sym_EQ_GT, + STATE(2009), 1, sym_comment, - STATE(3695), 1, + STATE(3741), 1, sym_type_arguments, - ACTIONS(4204), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4210), 2, + ACTIONS(4229), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4220), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4139), 14, + ACTIONS(4144), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -223764,7 +226217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223780,11 +226233,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(4135), 18, + ACTIONS(4140), 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, @@ -223799,56 +226251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13122] = 9, + [13380] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2806), 1, - anon_sym_COLON, - STATE(2007), 1, + STATE(2010), 1, sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 18, + ACTIONS(4353), 3, 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(118), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(4166), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -223869,150 +226285,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13201] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2008), 1, - sym_comment, - ACTIONS(4356), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [13270] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2009), 1, - sym_comment, - ACTIONS(4358), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(4168), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + 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, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [13339] = 9, + anon_sym_satisfies, + [13453] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2768), 1, - anon_sym_COLON, - ACTIONS(4144), 1, + ACTIONS(4149), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, + ACTIONS(4210), 1, anon_sym_EQ, - STATE(2010), 1, + ACTIONS(4362), 1, + anon_sym_in, + ACTIONS(4365), 1, + anon_sym_of, + STATE(2011), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224028,7 +226349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 18, + ACTIONS(4144), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -224047,10 +226368,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -224069,20 +226389,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13418] = 9, + [13534] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, + ACTIONS(1955), 1, + anon_sym_QMARK, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2768), 1, - anon_sym_COLON, - STATE(2011), 1, + ACTIONS(4285), 1, + anon_sym_LBRACK, + ACTIONS(4291), 1, + anon_sym_EQ_GT, + STATE(2012), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2037), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(216), 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(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224098,26 +226442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 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(118), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224127,9 +226452,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, @@ -224139,18 +226462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13497] = 8, + [13619] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4224), 1, - anon_sym_EQ, - ACTIONS(4226), 1, + ACTIONS(2809), 1, + anon_sym_COLON, + ACTIONS(4149), 1, anon_sym_EQ_GT, - STATE(2012), 1, + ACTIONS(4210), 1, + anon_sym_EQ, + STATE(2013), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224166,13 +226491,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(4139), 19, + ACTIONS(4144), 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, @@ -224186,7 +226510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224208,20 +226532,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13574] = 9, + [13698] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1174), 1, + anon_sym_EQ, ACTIONS(2696), 1, + anon_sym_EQ_GT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2806), 1, + ACTIONS(2809), 1, anon_sym_COLON, - ACTIONS(4144), 1, - anon_sym_EQ_GT, - ACTIONS(4216), 1, - anon_sym_EQ, - STATE(2013), 1, + STATE(2014), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224237,7 +226561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 18, + ACTIONS(216), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -224256,7 +226580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224278,16 +226602,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13653] = 7, + [13777] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, - anon_sym_EQ, - STATE(2014), 1, + STATE(2015), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(3081), 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(3083), 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, @@ -224303,18 +226659,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(4139), 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, @@ -224324,8 +226668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + [13848] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2016), 1, + sym_comment, + ACTIONS(4360), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4204), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -224346,49 +226702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13728] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(4206), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4177), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(4179), 1, anon_sym_QMARK_DOT, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(4228), 1, - anon_sym_EQ, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - STATE(2015), 1, - sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, - ACTIONS(4167), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4157), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4139), 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(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224404,33 +226726,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(4135), 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, - [13821] = 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13921] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2016), 1, + STATE(2017), 1, sym_comment, - ACTIONS(4187), 22, + ACTIONS(4162), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224453,7 +226765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4189), 35, + ACTIONS(4164), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -224489,20 +226801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13892] = 9, + [13992] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4252), 1, anon_sym_EQ, - ACTIONS(2689), 1, + ACTIONS(4254), 1, anon_sym_EQ_GT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2882), 1, - anon_sym_COLON, - STATE(2017), 1, + STATE(2018), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224518,12 +226828,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(212), 18, + ACTIONS(4144), 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, @@ -224537,7 +226848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224559,20 +226870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13971] = 9, + [14069] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2882), 1, - anon_sym_COLON, - ACTIONS(4144), 1, - anon_sym_EQ_GT, - ACTIONS(4216), 1, + ACTIONS(4174), 1, anon_sym_EQ, - STATE(2018), 1, + STATE(2019), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224588,14 +226895,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(4139), 18, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -224607,7 +226916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224629,91 +226938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14050] = 12, + [14144] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(1980), 1, - anon_sym_QMARK, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LBRACK, - ACTIONS(4252), 1, - anon_sym_EQ_GT, - STATE(2019), 1, - sym_comment, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2030), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(212), 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(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [14135] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(2689), 1, + ACTIONS(4254), 1, anon_sym_EQ_GT, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(2020), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224729,13 +226965,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(212), 19, + ACTIONS(4144), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -224749,7 +226985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224771,20 +227007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14212] = 9, + [14221] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2746), 1, - anon_sym_COLON, - ACTIONS(4144), 1, + ACTIONS(4149), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, + ACTIONS(4208), 1, anon_sym_EQ, STATE(2021), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224800,11 +227034,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(4139), 18, + ACTIONS(4144), 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, @@ -224819,7 +227054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224841,20 +227076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14291] = 9, + [14298] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2746), 1, - anon_sym_COLON, + ACTIONS(4149), 1, + anon_sym_EQ_GT, + ACTIONS(4210), 1, + anon_sym_EQ, STATE(2022), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224870,11 +227103,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(212), 18, + ACTIONS(4144), 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, @@ -224889,7 +227123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224911,18 +227145,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14370] = 8, + [14375] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, + anon_sym_DOT, ACTIONS(4226), 1, - anon_sym_EQ_GT, - ACTIONS(4228), 1, + anon_sym_LT, + ACTIONS(4319), 1, anon_sym_EQ, + ACTIONS(4321), 1, + anon_sym_EQ_GT, STATE(2023), 1, sym_comment, - ACTIONS(4146), 15, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4229), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4220), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224938,65 +227202,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(4139), 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(4135), 21, + ACTIONS(4140), 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, - [14447] = 9, + [14464] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4360), 1, + ACTIONS(4329), 1, sym_identifier, STATE(2024), 1, sym_comment, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225012,7 +227252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -225049,23 +227289,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14525] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [14542] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, + anon_sym_DOT, + ACTIONS(4226), 1, + anon_sym_LT, + ACTIONS(4274), 1, anon_sym_EQ_GT, - ACTIONS(4306), 1, - sym_identifier, STATE(2025), 1, sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4229), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4220), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 13, sym__ternary_qmark, - ACTIONS(160), 15, + 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(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225081,60 +227345,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4140), 17, 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, - [14603] = 9, + [14630] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1253), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4355), 1, + anon_sym_EQ_GT, + STATE(2026), 1, + sym_comment, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(216), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [14706] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - ACTIONS(4322), 1, + ACTIONS(4130), 1, sym_identifier, - STATE(2026), 1, + STATE(2027), 1, sym_comment, - ACTIONS(212), 2, + ACTIONS(216), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225150,7 +227463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -225187,43 +227500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14681] = 11, + [14784] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1228), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LBRACK, - ACTIONS(4362), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, - STATE(2027), 1, + ACTIONS(4325), 1, + sym_identifier, + STATE(2028), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4249), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(212), 15, + ACTIONS(216), 2, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225239,35 +227532,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(120), 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, - [14763] = 7, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [14862] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4216), 1, + ACTIONS(1239), 1, anon_sym_EQ, - STATE(2028), 1, + ACTIONS(1245), 1, + anon_sym_EQ_GT, + ACTIONS(4317), 1, + sym_identifier, + STATE(2029), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(216), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225283,31 +227601,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(4139), 19, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(120), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + 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(4135), 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, @@ -225322,34 +227626,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, - [14837] = 11, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [14940] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1280), 1, + ACTIONS(1265), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4285), 1, anon_sym_LBRACK, - ACTIONS(4364), 1, + ACTIONS(4367), 1, anon_sym_EQ_GT, - STATE(2029), 1, + STATE(2030), 1, sym_comment, - ACTIONS(2030), 2, + ACTIONS(2037), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4249), 3, + ACTIONS(4288), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(212), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -225361,7 +227674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225377,7 +227690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225396,28 +227709,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14919] = 11, + [15022] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1212), 1, + ACTIONS(1287), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4293), 1, - anon_sym_COMMA, - ACTIONS(4295), 1, - anon_sym_RBRACK, - ACTIONS(4362), 1, + ACTIONS(4285), 1, + anon_sym_LBRACK, + ACTIONS(4369), 1, anon_sym_EQ_GT, - ACTIONS(4366), 1, - anon_sym_COLON, - STATE(2030), 1, + STATE(2031), 1, sym_comment, - ACTIONS(212), 15, + ACTIONS(2037), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -225429,7 +227745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225445,19 +227761,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(118), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -225467,26 +227780,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15001] = 12, + [15104] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4241), 1, - anon_sym_RBRACK, - ACTIONS(4257), 1, + ACTIONS(4269), 1, anon_sym_COMMA, - ACTIONS(4314), 1, + ACTIONS(4278), 1, + anon_sym_RBRACK, + ACTIONS(4321), 1, anon_sym_EQ_GT, - ACTIONS(4368), 1, - anon_sym_EQ, ACTIONS(4371), 1, + anon_sym_EQ, + ACTIONS(4374), 1, anon_sym_in, - ACTIONS(4373), 1, + ACTIONS(4376), 1, anon_sym_COLON, - STATE(2031), 1, + STATE(2032), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -225502,7 +227815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225518,7 +227831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 20, + ACTIONS(4140), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -225539,23 +227852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15085] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [15188] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4210), 1, anon_sym_EQ, - ACTIONS(1272), 1, - anon_sym_EQ_GT, - ACTIONS(4310), 1, - sym_identifier, - STATE(2032), 1, + STATE(2033), 1, sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225571,17 +227877,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, + ACTIONS(4144), 19, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_COMMA, + anon_sym_RBRACE, 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(4140), 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, @@ -225596,35 +227916,19 @@ 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, - [15163] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [15262] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4252), 1, anon_sym_EQ, - ACTIONS(1272), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - sym_identifier, - STATE(2033), 1, + STATE(2034), 1, sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225640,17 +227944,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, + ACTIONS(4144), 19, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_in, + anon_sym_of, 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(4140), 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, @@ -225665,30 +227983,21 @@ 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, - [15241] = 8, + [15336] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4298), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4300), 1, + ACTIONS(4295), 1, anon_sym_EQ_GT, - STATE(2034), 1, + STATE(2035), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225704,7 +228013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 18, + ACTIONS(4144), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -225723,7 +228032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225745,87 +228054,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15317] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [15412] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1266), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(1272), 1, + ACTIONS(4184), 1, anon_sym_EQ_GT, - ACTIONS(4123), 1, - sym_identifier, - STATE(2035), 1, + STATE(2036), 1, sym_comment, - ACTIONS(212), 2, - sym__automatic_semicolon, + ACTIONS(4378), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4144), 15, sym__ternary_qmark, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [15395] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4228), 1, - anon_sym_EQ, - ACTIONS(4300), 1, - anon_sym_EQ_GT, - STATE(2036), 1, - sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225841,26 +228101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 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(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225882,38 +228123,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15471] = 8, + [15490] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1240), 1, + ACTIONS(1219), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4335), 1, + ACTIONS(4260), 1, + anon_sym_COMMA, + ACTIONS(4304), 1, + anon_sym_RBRACK, + ACTIONS(4367), 1, anon_sym_EQ_GT, + ACTIONS(4381), 1, + anon_sym_COLON, STATE(2037), 1, sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 18, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -225927,8 +228156,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 21, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225950,22 +228194,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15547] = 9, + [15572] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(4163), 1, - anon_sym_EQ_GT, + ACTIONS(4307), 1, + anon_sym_COLON, STATE(2038), 1, sym_comment, - ACTIONS(4375), 3, + ACTIONS(4378), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -225981,7 +228225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225997,7 +228241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226019,26 +228263,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15625] = 11, + [15650] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, + ACTIONS(1142), 1, anon_sym_EQ, - ACTIONS(2030), 1, + ACTIONS(2037), 1, anon_sym_extends, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4252), 1, + ACTIONS(4291), 1, anon_sym_EQ_GT, STATE(2039), 1, sym_comment, - ACTIONS(4246), 2, + ACTIONS(4285), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4249), 2, + ACTIONS(4288), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(212), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -226054,7 +228298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226070,7 +228314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226090,16 +228334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15707] = 7, + [15732] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4224), 1, + ACTIONS(4293), 1, anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_EQ_GT, STATE(2040), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226115,14 +228361,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(4139), 19, - sym__automatic_semicolon, + ACTIONS(4144), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226135,7 +228379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + anon_sym_implements, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226157,47 +228402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15781] = 14, + [15808] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4228), 1, + ACTIONS(4210), 1, anon_sym_EQ, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4235), 1, - anon_sym_LT, - ACTIONS(4262), 1, - anon_sym_EQ_GT, + ACTIONS(4362), 1, + anon_sym_in, + ACTIONS(4365), 1, + anon_sym_of, STATE(2041), 1, sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4202), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 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(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226213,38 +228431,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 17, + ACTIONS(4144), 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(4140), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15869] = 9, + [15886] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4216), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(4341), 1, - anon_sym_in, - ACTIONS(4344), 1, - anon_sym_of, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4355), 1, + anon_sym_EQ_GT, STATE(2042), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226260,13 +228498,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(4139), 18, - sym__automatic_semicolon, + ACTIONS(216), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226279,9 +228516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 20, + anon_sym_implements, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -226300,18 +228539,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15947] = 8, + [15962] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4335), 1, + ACTIONS(1245), 1, anon_sym_EQ_GT, + ACTIONS(4323), 1, + sym_identifier, STATE(2043), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(216), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226327,30 +228571,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(212), 18, - sym__ternary_qmark, + ACTIONS(120), 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(118), 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, @@ -226365,41 +228596,35 @@ 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, - [16023] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - ACTIONS(4268), 1, - anon_sym_COLON, - STATE(2044), 1, - sym_comment, - ACTIONS(4375), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4139), 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(4146), 15, + [16040] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + anon_sym_EQ, + ACTIONS(1245), 1, + anon_sym_EQ_GT, + ACTIONS(4383), 1, + sym_identifier, + STATE(2044), 1, + sym_comment, + ACTIONS(216), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(162), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226415,11 +228640,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(4135), 21, + ACTIONS(120), 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, @@ -226434,90 +228665,99 @@ 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, - [16101] = 34, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [16118] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2045), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4384), 2, + ACTIONS(4391), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4386), 2, + ACTIONS(4393), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4731), 6, + STATE(4745), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -226530,18 +228770,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16228] = 8, + [16245] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_EQ_GT, + ACTIONS(4353), 1, + anon_sym_COMMA, STATE(2046), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4166), 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(4168), 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, @@ -226557,12 +228826,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 17, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [16316] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4269), 1, + anon_sym_COMMA, + ACTIONS(4278), 1, + anon_sym_RBRACK, + ACTIONS(4321), 1, + anon_sym_EQ_GT, + ACTIONS(4371), 1, + anon_sym_EQ, + STATE(2047), 1, + sym_comment, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226575,7 +228866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226597,87 +228904,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16303] = 34, + [16395] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2047), 1, + STATE(2048), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3888), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + ACTIONS(4411), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4413), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4658), 6, + STATE(4633), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -226690,221 +228997,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16430] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1266), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2934), 1, - anon_sym_EQ_GT, - STATE(2048), 1, - sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 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(118), 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, - [16505] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_EQ_GT, - STATE(2049), 1, - sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 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, - [16580] = 34, + [16522] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2050), 1, + STATE(2049), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4404), 2, + ACTIONS(3945), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4406), 2, + ACTIONS(3947), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + ACTIONS(4405), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4758), 6, + STATE(4629), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -226917,153 +229090,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16707] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4298), 1, - anon_sym_EQ, - STATE(2051), 1, - sym_comment, - ACTIONS(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 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(4135), 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, - [16780] = 34, + [16649] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2052), 1, + STATE(2050), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4408), 2, + ACTIONS(4415), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4410), 2, + ACTIONS(4417), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4775), 6, + STATE(4662), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -227076,87 +229183,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16907] = 34, + [16776] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2053), 1, + STATE(2051), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4412), 2, + ACTIONS(4419), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4414), 2, + ACTIONS(4421), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4626), 6, + STATE(4703), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -227169,22 +229276,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17034] = 10, + [16903] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4312), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(4314), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4258), 1, anon_sym_EQ_GT, - ACTIONS(4371), 1, - anon_sym_in, - ACTIONS(4416), 1, - anon_sym_COLON, - STATE(2054), 1, + ACTIONS(4285), 1, + anon_sym_LBRACK, + STATE(2052), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2037), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(216), 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(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227200,35 +229327,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(4139), 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(4135), 20, + ACTIONS(120), 18, 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, @@ -227238,30 +229346,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17113] = 11, + [16984] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(3893), 1, + anon_sym_LPAREN, + ACTIONS(3917), 1, + anon_sym_abstract, + ACTIONS(4387), 1, + anon_sym_export, + ACTIONS(4389), 1, + anon_sym_STAR, + ACTIONS(4395), 1, + anon_sym_LBRACK, + ACTIONS(4397), 1, + anon_sym_async, + ACTIONS(4399), 1, + anon_sym_new, + ACTIONS(4401), 1, + anon_sym_static, + ACTIONS(4403), 1, + anon_sym_readonly, + ACTIONS(4409), 1, + anon_sym_override, + STATE(2053), 1, + sym_comment, + STATE(3479), 1, + sym_accessibility_modifier, + STATE(3535), 1, + sym_override_modifier, + STATE(3912), 1, + sym__property_name, + STATE(4041), 1, + sym_formal_parameters, + STATE(5094), 1, + sym__call_signature, + STATE(5555), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(3903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4405), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4423), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4425), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4407), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4723), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4385), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17111] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, + ACTIONS(1219), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LBRACK, - ACTIONS(4282), 1, + ACTIONS(4260), 1, + anon_sym_COMMA, + ACTIONS(4304), 1, + anon_sym_RBRACK, + ACTIONS(4367), 1, anon_sym_EQ_GT, - STATE(2055), 1, + STATE(2054), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4249), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(212), 14, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -227273,7 +229470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227289,16 +229486,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(118), 18, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -227308,38 +229508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17194] = 10, + [17190] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1212), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4293), 1, - anon_sym_COMMA, - ACTIONS(4295), 1, - anon_sym_RBRACK, - ACTIONS(4362), 1, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4264), 1, anon_sym_EQ_GT, - STATE(2056), 1, + STATE(2055), 1, sym_comment, - ACTIONS(212), 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(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227355,7 +229535,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(118), 21, + ACTIONS(4144), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227377,18 +229575,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17273] = 8, + [17265] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(4262), 1, anon_sym_EQ, - ACTIONS(4291), 1, + ACTIONS(4264), 1, anon_sym_EQ_GT, - STATE(2057), 1, + STATE(2056), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227404,7 +229602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 17, + ACTIONS(4144), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -227422,7 +229620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227444,22 +229642,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17348] = 10, + [17340] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4312), 1, + ACTIONS(4360), 1, + anon_sym_COMMA, + STATE(2057), 1, + sym_comment, + ACTIONS(4204), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4314), 1, - anon_sym_EQ_GT, - ACTIONS(4371), 1, + anon_sym_BANG, anon_sym_in, - ACTIONS(4373), 1, - anon_sym_COLON, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(4206), 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, + [17411] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1271), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4347), 1, + anon_sym_EQ_GT, STATE(2058), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227475,12 +229734,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(4139), 16, + ACTIONS(216), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -227492,9 +229752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -227513,18 +229774,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17427] = 8, + [17486] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, + ACTIONS(1265), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2934), 1, + ACTIONS(4367), 1, anon_sym_EQ_GT, + ACTIONS(4427), 1, + anon_sym_COLON, STATE(2059), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227540,13 +229803,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(212), 17, - sym__automatic_semicolon, + ACTIONS(216), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -227558,7 +229820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227580,38 +229842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17502] = 10, + [17563] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4241), 1, - anon_sym_RBRACK, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4314), 1, - anon_sym_EQ_GT, - ACTIONS(4368), 1, + ACTIONS(4281), 1, anon_sym_EQ, + ACTIONS(4283), 1, + anon_sym_EQ_GT, STATE(2060), 1, sym_comment, - ACTIONS(4139), 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(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227627,7 +229869,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(4135), 21, + ACTIONS(4144), 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(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227649,113 +229909,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17581] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4380), 1, - anon_sym_export, - ACTIONS(4382), 1, - anon_sym_STAR, - ACTIONS(4388), 1, - anon_sym_LBRACK, - ACTIONS(4390), 1, - anon_sym_async, - ACTIONS(4392), 1, - anon_sym_new, - ACTIONS(4394), 1, - anon_sym_static, - ACTIONS(4396), 1, - anon_sym_readonly, - ACTIONS(4402), 1, - anon_sym_override, - STATE(2061), 1, - sym_comment, - STATE(3505), 1, - sym_accessibility_modifier, - STATE(3517), 1, - sym_override_modifier, - STATE(3893), 1, - sym__property_name, - STATE(4061), 1, - sym_formal_parameters, - STATE(4901), 1, - sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, - aux_sym_export_statement_repeat1, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4398), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4418), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4420), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4400), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4685), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4378), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17708] = 9, + [17638] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1228), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4362), 1, + ACTIONS(4319), 1, + anon_sym_EQ, + ACTIONS(4321), 1, anon_sym_EQ_GT, - ACTIONS(4366), 1, + ACTIONS(4374), 1, + anon_sym_in, + ACTIONS(4429), 1, anon_sym_COLON, - STATE(2062), 1, + STATE(2061), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227771,7 +229940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 16, + ACTIONS(4144), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227788,10 +229957,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -227810,18 +229978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17785] = 8, + [17717] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(1239), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2941), 1, anon_sym_EQ_GT, - STATE(2063), 1, + STATE(2062), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227837,7 +230005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 17, + ACTIONS(216), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -227855,7 +230023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227877,111 +230045,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17860] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4380), 1, - anon_sym_export, - ACTIONS(4382), 1, - anon_sym_STAR, - ACTIONS(4388), 1, - anon_sym_LBRACK, - ACTIONS(4390), 1, - anon_sym_async, - ACTIONS(4392), 1, - anon_sym_new, - ACTIONS(4394), 1, - anon_sym_static, - ACTIONS(4396), 1, - anon_sym_readonly, - ACTIONS(4402), 1, - anon_sym_override, - STATE(2064), 1, - sym_comment, - STATE(3505), 1, - sym_accessibility_modifier, - STATE(3517), 1, - sym_override_modifier, - STATE(3893), 1, - sym__property_name, - STATE(4061), 1, - sym_formal_parameters, - STATE(4901), 1, - sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, - aux_sym_export_statement_repeat1, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3918), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3920), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4398), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4400), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4827), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4378), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17987] = 8, + [17792] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4289), 1, + ACTIONS(1265), 1, anon_sym_EQ, - ACTIONS(4291), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4367), 1, anon_sym_EQ_GT, - STATE(2065), 1, + ACTIONS(4381), 1, + anon_sym_COLON, + STATE(2063), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227997,13 +230074,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(4139), 17, + ACTIONS(216), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -228015,7 +230091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228037,20 +230113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18062] = 9, + [17869] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1228), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4362), 1, + ACTIONS(2941), 1, anon_sym_EQ_GT, - ACTIONS(4422), 1, - anon_sym_COLON, - STATE(2066), 1, + STATE(2064), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228066,12 +230140,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(212), 16, + ACTIONS(216), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -228083,7 +230158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228105,20 +230180,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18139] = 6, + [17944] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4337), 1, - anon_sym_COMMA, - STATE(2067), 1, + ACTIONS(4319), 1, + anon_sym_EQ, + ACTIONS(4321), 1, + anon_sym_EQ_GT, + ACTIONS(4374), 1, + anon_sym_in, + ACTIONS(4376), 1, + anon_sym_COLON, + STATE(2065), 1, sym_comment, - ACTIONS(4187), 22, + ACTIONS(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4144), 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(4140), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -228137,15 +230249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4189), 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, + [18023] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4293), 1, + anon_sym_EQ, + STATE(2066), 1, + sym_comment, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228161,6 +230274,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(4144), 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, @@ -228170,18 +230292,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [18210] = 8, + anon_sym_implements, + ACTIONS(4140), 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, + [18096] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1254), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4339), 1, + ACTIONS(4347), 1, anon_sym_EQ_GT, - STATE(2068), 1, + STATE(2067), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228197,7 +230342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 17, + ACTIONS(216), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -228215,7 +230360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228237,87 +230382,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18285] = 34, + [18171] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2069), 1, + STATE(2068), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4424), 2, + ACTIONS(4431), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4426), 2, + ACTIONS(4433), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4764), 6, + STATE(4730), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -228330,47 +230475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18412] = 6, + [18298] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4333), 1, - anon_sym_COMMA, - STATE(2070), 1, - sym_comment, - ACTIONS(4183), 22, - anon_sym_STAR, + ACTIONS(4208), 1, 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(4185), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + STATE(2069), 1, + sym_comment, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228386,6 +230502,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(4144), 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, @@ -228395,87 +230520,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [18483] = 34, + ACTIONS(4140), 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, + [18373] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2071), 1, + STATE(2070), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4428), 2, + ACTIONS(4435), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4430), 2, + ACTIONS(4437), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4693), 6, + STATE(4791), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -228488,20 +230635,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18610] = 9, + [18500] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(3893), 1, + anon_sym_LPAREN, + ACTIONS(3917), 1, + anon_sym_abstract, + ACTIONS(4387), 1, + anon_sym_export, + ACTIONS(4389), 1, + anon_sym_STAR, + ACTIONS(4395), 1, + anon_sym_LBRACK, + ACTIONS(4397), 1, + anon_sym_async, + ACTIONS(4399), 1, + anon_sym_new, + ACTIONS(4401), 1, + anon_sym_static, + ACTIONS(4403), 1, + anon_sym_readonly, + ACTIONS(4409), 1, + anon_sym_override, + STATE(2071), 1, + sym_comment, + STATE(3479), 1, + sym_accessibility_modifier, + STATE(3535), 1, + sym_override_modifier, + STATE(3912), 1, + sym__property_name, + STATE(4041), 1, + sym_formal_parameters, + STATE(5094), 1, + sym__call_signature, + STATE(5555), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(3895), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3919), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4405), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4407), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4760), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4385), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18627] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_COLON, - ACTIONS(4282), 1, - anon_sym_EQ_GT, + ACTIONS(4269), 1, + anon_sym_COMMA, + ACTIONS(4278), 1, + anon_sym_RBRACK, + ACTIONS(4371), 1, + anon_sym_EQ, STATE(2072), 1, sym_comment, - ACTIONS(212), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228517,7 +230757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228533,7 +230773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228555,36 +230795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18686] = 9, + [18703] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4241), 1, - anon_sym_RBRACK, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4368), 1, + ACTIONS(1265), 1, anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4367), 1, + anon_sym_EQ_GT, STATE(2073), 1, sym_comment, - ACTIONS(4139), 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(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228600,48 +230822,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(4135), 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, - [18762] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ_GT, - ACTIONS(4346), 1, - anon_sym_of, - STATE(2074), 1, - sym_comment, - ACTIONS(212), 15, + ACTIONS(216), 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, @@ -228653,25 +230839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -228690,16 +230861,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18840] = 7, + [18777] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(1287), 1, anon_sym_EQ, - STATE(2075), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4369), 1, + anon_sym_EQ_GT, + STATE(2074), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228715,12 +230888,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(4139), 17, - sym__automatic_semicolon, + ACTIONS(216), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -228733,7 +230905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228755,16 +230927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18912] = 7, + [18851] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4289), 1, + ACTIONS(4208), 1, anon_sym_EQ, - STATE(2076), 1, + ACTIONS(4321), 1, + anon_sym_EQ_GT, + STATE(2075), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228780,13 +230954,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(4139), 17, + ACTIONS(4144), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -228798,7 +230971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228820,18 +230993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18984] = 8, + [18925] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4312), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(4314), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4369), 1, anon_sym_EQ_GT, - STATE(2077), 1, + STATE(2076), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228847,12 +231020,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(4139), 16, + ACTIONS(216), 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, @@ -228864,7 +231037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228886,18 +231059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19058] = 8, + [18999] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4364), 1, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4339), 1, anon_sym_EQ_GT, - STATE(2078), 1, + STATE(2077), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228913,7 +231086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 16, + ACTIONS(4144), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228930,7 +231103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228952,18 +231125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19132] = 8, + [19073] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1280), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4364), 1, - anon_sym_EQ_GT, - STATE(2079), 1, + ACTIONS(4262), 1, + anon_sym_EQ, + STATE(2078), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228979,11 +231150,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(212), 16, + ACTIONS(4144), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -228996,7 +231168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229018,22 +231190,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19206] = 10, + [19145] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4274), 1, anon_sym_EQ_GT, - ACTIONS(4341), 1, + ACTIONS(4362), 1, anon_sym_in, - ACTIONS(4344), 1, + ACTIONS(4365), 1, anon_sym_of, - STATE(2080), 1, + STATE(2079), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229049,7 +231221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229065,7 +231237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 20, + ACTIONS(4140), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -229086,18 +231258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19284] = 8, + [19223] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(4337), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4339), 1, anon_sym_EQ_GT, - STATE(2081), 1, + STATE(2080), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229113,7 +231285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 16, + ACTIONS(4144), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229130,7 +231302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229152,18 +231324,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19358] = 8, + [19297] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4362), 1, - anon_sym_EQ_GT, - STATE(2082), 1, + ACTIONS(4281), 1, + anon_sym_EQ, + STATE(2081), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229179,12 +231349,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(212), 16, + ACTIONS(4144), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -229196,7 +231367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229218,18 +231389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19432] = 8, + [19369] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(4314), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4367), 1, anon_sym_EQ_GT, - STATE(2083), 1, + STATE(2082), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229245,7 +231416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 16, + ACTIONS(216), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229262,7 +231433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229284,39 +231455,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19506] = 8, + [19443] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1228), 1, + ACTIONS(1106), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4362), 1, + ACTIONS(4256), 1, + anon_sym_COLON, + ACTIONS(4258), 1, anon_sym_EQ_GT, - STATE(2084), 1, + STATE(2083), 1, sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(212), 16, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -229328,7 +231484,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229350,18 +231522,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19580] = 8, + [19519] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + ACTIONS(4345), 1, + anon_sym_of, + STATE(2084), 1, + sym_comment, + ACTIONS(216), 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(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 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, + [19597] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4302), 1, + ACTIONS(4319), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4321), 1, anon_sym_EQ_GT, STATE(2085), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229377,12 +231617,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(4139), 16, + ACTIONS(4144), 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, @@ -229394,7 +231634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229416,84 +231656,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19654] = 33, + [19671] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2086), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4432), 2, + ACTIONS(4439), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229506,84 +231746,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19777] = 33, + [19794] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2087), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4434), 2, + ACTIONS(4441), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229596,84 +231836,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19900] = 33, + [19917] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2088), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4436), 2, + ACTIONS(4443), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229686,84 +231926,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20023] = 33, + [20040] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2089), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4438), 2, + ACTIONS(4445), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229776,83 +232016,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20146] = 8, + [20163] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1356), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ_GT, - STATE(2090), 1, - sym_comment, - ACTIONS(212), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(3893), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(3917), 1, + anon_sym_abstract, + ACTIONS(4387), 1, + anon_sym_export, + ACTIONS(4389), 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(4395), 1, + anon_sym_LBRACK, + ACTIONS(4397), 1, + anon_sym_async, + ACTIONS(4399), 1, + anon_sym_new, + ACTIONS(4401), 1, + anon_sym_static, + ACTIONS(4403), 1, + anon_sym_readonly, + ACTIONS(4409), 1, + anon_sym_override, + STATE(2090), 1, + sym_comment, + STATE(3479), 1, + sym_accessibility_modifier, + STATE(3535), 1, + sym_override_modifier, + STATE(3912), 1, + sym__property_name, + STATE(4041), 1, + sym_formal_parameters, + STATE(5094), 1, + sym__call_signature, + STATE(5555), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(3903), 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, - [20219] = 8, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4405), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4447), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4407), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5237), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4385), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20286] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1301), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4262), 1, + ACTIONS(4258), 1, anon_sym_EQ_GT, - ACTIONS(4440), 1, - anon_sym_EQ, STATE(2091), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229868,7 +232133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229884,7 +232149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229906,84 +232171,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20292] = 33, + [20359] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2092), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4442), 2, + ACTIONS(4449), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229996,18 +232261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20415] = 8, + [20482] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1121), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ_GT, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4362), 1, + anon_sym_in, + ACTIONS(4365), 1, + anon_sym_of, STATE(2093), 1, sym_comment, - ACTIONS(212), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230023,7 +232290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230039,10 +232306,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(118), 21, + ACTIONS(4140), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -230061,84 +232327,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20488] = 33, + [20557] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2094), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4444), 2, + ACTIONS(4451), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230151,84 +232417,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20611] = 33, + [20680] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2095), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4446), 2, + ACTIONS(4453), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230241,84 +232507,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20734] = 33, + [20803] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4455), 1, + anon_sym_EQ, + STATE(2096), 1, + sym_comment, + ACTIONS(4144), 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(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20876] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2096), 1, + STATE(2097), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4448), 2, + ACTIONS(4457), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230331,18 +232662,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20857] = 8, + [20999] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1300), 1, + ACTIONS(1361), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4258), 1, anon_sym_EQ_GT, - STATE(2097), 1, + STATE(2098), 1, sym_comment, - ACTIONS(212), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230358,7 +232689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230374,7 +232705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230396,84 +232727,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20930] = 33, + [21072] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2098), 1, + STATE(2099), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4450), 2, + ACTIONS(4459), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230486,84 +232817,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21053] = 33, + [21195] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4461), 1, + anon_sym_EQ, + STATE(2100), 1, + sym_comment, + ACTIONS(4144), 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(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, + [21268] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2099), 1, + STATE(2101), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4452), 2, + ACTIONS(4463), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230576,84 +232972,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21176] = 33, + [21391] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2100), 1, + STATE(2102), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4454), 2, + ACTIONS(4465), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230666,18 +233062,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21299] = 8, + [21514] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1357), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4262), 1, + ACTIONS(4258), 1, anon_sym_EQ_GT, - ACTIONS(4456), 1, - anon_sym_EQ, - STATE(2101), 1, + STATE(2103), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230693,7 +233089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230709,7 +233105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230731,84 +233127,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21372] = 33, + [21587] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2102), 1, + STATE(2104), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4458), 2, + ACTIONS(4467), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230821,83 +233217,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21495] = 8, + [21710] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - ACTIONS(4460), 1, - anon_sym_EQ, - STATE(2103), 1, - sym_comment, - ACTIONS(4139), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(3893), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(3917), 1, + anon_sym_abstract, + ACTIONS(4387), 1, + anon_sym_export, + ACTIONS(4389), 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(4395), 1, + anon_sym_LBRACK, + ACTIONS(4397), 1, + anon_sym_async, + ACTIONS(4399), 1, + anon_sym_new, + ACTIONS(4401), 1, + anon_sym_static, + ACTIONS(4403), 1, + anon_sym_readonly, + ACTIONS(4409), 1, + anon_sym_override, + STATE(2105), 1, + sym_comment, + STATE(3479), 1, + sym_accessibility_modifier, + STATE(3535), 1, + sym_override_modifier, + STATE(3912), 1, + sym__property_name, + STATE(4041), 1, + sym_formal_parameters, + STATE(5094), 1, + sym__call_signature, + STATE(5555), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(3903), 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, - [21568] = 8, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4405), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4469), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4407), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5237), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4385), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21833] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1302), 1, + ACTIONS(1303), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4258), 1, anon_sym_EQ_GT, - STATE(2104), 1, + STATE(2106), 1, sym_comment, - ACTIONS(212), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230913,7 +233334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230929,7 +233350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230951,84 +233372,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21641] = 33, + [21906] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2105), 1, + STATE(2107), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4462), 2, + ACTIONS(4471), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231041,174 +233462,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21764] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [22029] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + STATE(2108), 1, + sym_comment, + ACTIONS(4144), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4380), 1, - anon_sym_export, - ACTIONS(4382), 1, - anon_sym_STAR, - ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, - anon_sym_async, - ACTIONS(4392), 1, - anon_sym_new, - ACTIONS(4394), 1, - anon_sym_static, - ACTIONS(4396), 1, - anon_sym_readonly, - ACTIONS(4402), 1, - anon_sym_override, - STATE(2106), 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(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, + [22102] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1363), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + STATE(2109), 1, sym_comment, - STATE(3505), 1, - sym_accessibility_modifier, - STATE(3517), 1, - sym_override_modifier, - STATE(3893), 1, - sym__property_name, - STATE(4061), 1, - sym_formal_parameters, - STATE(4901), 1, - sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, - aux_sym_export_statement_repeat1, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(216), 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(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4398), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4464), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4400), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5351), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4378), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21887] = 33, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22175] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2107), 1, + STATE(2110), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4466), 2, + ACTIONS(4473), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231221,84 +233682,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22010] = 33, + [22298] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1359), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + STATE(2111), 1, + sym_comment, + ACTIONS(216), 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(2698), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22371] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2108), 1, + STATE(2112), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4468), 2, + ACTIONS(4475), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231311,20 +233837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22133] = 9, + [22494] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(1299), 1, anon_sym_EQ, - ACTIONS(4341), 1, - anon_sym_in, - ACTIONS(4344), 1, - anon_sym_of, - STATE(2109), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + STATE(2113), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231340,7 +233864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231356,9 +233880,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(4135), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -231377,18 +233902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22208] = 8, + [22567] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, - anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4274), 1, anon_sym_EQ_GT, - STATE(2110), 1, + ACTIONS(4477), 1, + anon_sym_EQ, + STATE(2114), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231404,7 +233929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231420,7 +233945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231442,174 +233967,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22281] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [22640] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4479), 1, + anon_sym_EQ, + STATE(2115), 1, + sym_comment, + ACTIONS(4144), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4380), 1, - anon_sym_export, - ACTIONS(4382), 1, - anon_sym_STAR, - ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, - anon_sym_async, - ACTIONS(4392), 1, - anon_sym_new, - ACTIONS(4394), 1, - anon_sym_static, - ACTIONS(4396), 1, - anon_sym_readonly, - ACTIONS(4402), 1, - anon_sym_override, - STATE(2111), 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(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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, + [22713] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4481), 1, + anon_sym_EQ, + STATE(2116), 1, sym_comment, - STATE(3505), 1, - sym_accessibility_modifier, - STATE(3517), 1, - sym_override_modifier, - STATE(3893), 1, - sym__property_name, - STATE(4061), 1, - sym_formal_parameters, - STATE(4901), 1, - sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, - aux_sym_export_statement_repeat1, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(4144), 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(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 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(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4398), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4470), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4400), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5351), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4378), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22404] = 33, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22786] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2112), 1, + STATE(2117), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4472), 2, + ACTIONS(4483), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231622,18 +234187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22527] = 8, + [22909] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4485), 1, anon_sym_EQ, - ACTIONS(4268), 1, - anon_sym_COLON, - STATE(2113), 1, + STATE(2118), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231649,7 +234214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231665,7 +234230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231687,16 +234252,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22600] = 7, + [22982] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4302), 1, + ACTIONS(1365), 1, anon_sym_EQ, - STATE(2114), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4258), 1, + anon_sym_EQ_GT, + STATE(2119), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(216), 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(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231712,11 +234295,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(4139), 16, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [23055] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + ACTIONS(4487), 1, + anon_sym_EQ, + STATE(2120), 1, + sym_comment, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -231729,7 +234344,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4151), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231751,84 +234382,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22671] = 33, + [23128] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2115), 1, + STATE(2121), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4474), 2, + ACTIONS(4489), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231841,84 +234472,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22794] = 33, + [23251] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2116), 1, + STATE(2122), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4476), 2, + ACTIONS(4491), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231931,34 +234562,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22917] = 8, + [23374] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - ACTIONS(4478), 1, + ACTIONS(4337), 1, anon_sym_EQ, - STATE(2117), 1, + STATE(2123), 1, sym_comment, - ACTIONS(4139), 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(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231974,7 +234587,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(4135), 21, + ACTIONS(4144), 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(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231996,84 +234626,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22990] = 33, + [23445] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2118), 1, + STATE(2124), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4480), 2, + ACTIONS(4493), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232086,84 +234716,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23113] = 33, + [23568] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2119), 1, + STATE(2125), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4482), 2, + ACTIONS(4495), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232176,84 +234806,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23236] = 33, + [23691] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2120), 1, + STATE(2126), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4484), 2, + ACTIONS(4497), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232266,149 +234896,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23359] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1292), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ_GT, - STATE(2121), 1, - sym_comment, - ACTIONS(212), 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(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [23432] = 33, + [23814] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2122), 1, + STATE(2127), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4486), 2, + ACTIONS(4499), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232421,83 +234986,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23555] = 8, + [23937] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - ACTIONS(4488), 1, - anon_sym_EQ, - STATE(2123), 1, - sym_comment, - ACTIONS(4139), 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(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 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, - [23628] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1354), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ_GT, - STATE(2124), 1, + ACTIONS(4307), 1, + anon_sym_COLON, + STATE(2128), 1, sym_comment, - ACTIONS(212), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232513,7 +235013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232529,7 +235029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232551,18 +235051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23701] = 8, + [24010] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4262), 1, + ACTIONS(4274), 1, anon_sym_EQ_GT, - ACTIONS(4490), 1, + ACTIONS(4501), 1, anon_sym_EQ, - STATE(2125), 1, + STATE(2129), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232578,7 +235078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232594,7 +235094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232616,18 +235116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23774] = 8, + [24083] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1294), 1, + ACTIONS(1305), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4258), 1, anon_sym_EQ_GT, - STATE(2126), 1, + STATE(2130), 1, sym_comment, - ACTIONS(212), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232643,7 +235143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232659,7 +235159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232681,84 +235181,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23847] = 33, + [24156] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2127), 1, + STATE(2131), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4492), 2, + ACTIONS(4503), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232771,16 +235271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23970] = 7, + [24279] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4312), 1, + ACTIONS(4319), 1, anon_sym_EQ, - STATE(2128), 1, + STATE(2132), 1, sym_comment, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232796,7 +235296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4139), 16, + ACTIONS(4144), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232813,7 +235313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232835,18 +235335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24041] = 8, + [24350] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4262), 1, + ACTIONS(4258), 1, anon_sym_EQ_GT, - ACTIONS(4494), 1, - anon_sym_EQ, - STATE(2129), 1, + STATE(2133), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(216), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232862,7 +235362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(2698), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232878,7 +235378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232900,18 +235400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24114] = 8, + [24423] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4274), 1, anon_sym_EQ_GT, - STATE(2130), 1, + ACTIONS(4505), 1, + anon_sym_EQ, + STATE(2134), 1, sym_comment, - ACTIONS(212), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232927,7 +235427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232943,7 +235443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232965,84 +235465,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24187] = 33, + [24496] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2131), 1, + STATE(2135), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4496), 2, + ACTIONS(4507), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233055,279 +235555,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24310] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - ACTIONS(4498), 1, - anon_sym_EQ, - STATE(2132), 1, - sym_comment, - ACTIONS(4139), 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(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 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, - [24383] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1296), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ_GT, - STATE(2133), 1, - sym_comment, - ACTIONS(212), 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(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [24456] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1298), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ_GT, - STATE(2134), 1, - sym_comment, - ACTIONS(212), 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(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [24529] = 33, + [24619] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - STATE(2135), 1, + STATE(2136), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - ACTIONS(4500), 2, + ACTIONS(4509), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233340,81 +235645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24652] = 8, + [24742] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4262), 1, - anon_sym_EQ_GT, - ACTIONS(4502), 1, - anon_sym_EQ, - STATE(2136), 1, - sym_comment, - ACTIONS(4139), 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(4146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 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, - [24725] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4494), 1, + ACTIONS(4501), 1, anon_sym_EQ, STATE(2137), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233430,7 +235670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233446,7 +235686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233468,16 +235708,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24795] = 7, + [24812] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4490), 1, + ACTIONS(4477), 1, anon_sym_EQ, STATE(2138), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233493,7 +235733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233509,7 +235749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233531,16 +235771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24865] = 7, + [24882] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4498), 1, + ACTIONS(4505), 1, anon_sym_EQ, STATE(2139), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233556,7 +235796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233572,7 +235812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233594,16 +235834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24935] = 7, + [24952] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(4479), 1, anon_sym_EQ, STATE(2140), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233619,7 +235859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233635,7 +235875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233657,16 +235897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25005] = 7, + [25022] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4478), 1, + ACTIONS(4487), 1, anon_sym_EQ, STATE(2141), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233682,7 +235922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233698,7 +235938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233720,16 +235960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25075] = 7, + [25092] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4460), 1, + ACTIONS(4461), 1, anon_sym_EQ, STATE(2142), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233745,7 +235985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233761,7 +236001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233783,16 +236023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25145] = 7, + [25162] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4456), 1, + ACTIONS(4455), 1, anon_sym_EQ, STATE(2143), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233808,7 +236048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233824,7 +236064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233846,16 +236086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25215] = 7, + [25232] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4440), 1, + ACTIONS(4485), 1, anon_sym_EQ, STATE(2144), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233871,7 +236111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233887,7 +236127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233909,16 +236149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25285] = 7, + [25302] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4502), 1, + ACTIONS(4481), 1, anon_sym_EQ, STATE(2145), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4144), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233934,7 +236174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4146), 15, + ACTIONS(4151), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233950,7 +236190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4135), 21, + ACTIONS(4140), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233972,81 +236212,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25355] = 32, + [25372] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2146), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4700), 6, + STATE(4704), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234059,81 +236299,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25474] = 32, + [25491] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2147), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4631), 6, + STATE(4671), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234146,81 +236386,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25593] = 32, + [25610] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2148), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5351), 6, + STATE(4622), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234233,81 +236473,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25712] = 32, + [25729] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2149), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4771), 6, + STATE(5237), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234320,81 +236560,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25831] = 32, + [25848] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2150), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4777), 6, + STATE(4835), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234407,81 +236647,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25950] = 32, + [25967] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2151), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4765), 6, + STATE(4748), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234494,81 +236734,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26069] = 32, + [26086] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2152), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4759), 6, + STATE(4731), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234581,81 +236821,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26188] = 32, + [26205] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2153), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4671), 6, + STATE(4724), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234668,81 +236908,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26307] = 32, + [26324] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2154), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4662), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234755,81 +236995,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26426] = 32, + [26443] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3910), 1, + ACTIONS(3917), 1, anon_sym_abstract, - ACTIONS(4380), 1, + ACTIONS(4387), 1, anon_sym_export, - ACTIONS(4382), 1, + ACTIONS(4389), 1, anon_sym_STAR, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4390), 1, + ACTIONS(4397), 1, anon_sym_async, - ACTIONS(4392), 1, + ACTIONS(4399), 1, anon_sym_new, - ACTIONS(4394), 1, + ACTIONS(4401), 1, anon_sym_static, - ACTIONS(4396), 1, + ACTIONS(4403), 1, anon_sym_readonly, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, STATE(2155), 1, sym_comment, - STATE(3505), 1, + STATE(3479), 1, sym_accessibility_modifier, - STATE(3517), 1, + STATE(3535), 1, sym_override_modifier, - STATE(3893), 1, + STATE(3912), 1, sym__property_name, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4901), 1, + STATE(5094), 1, sym__call_signature, - STATE(5608), 1, - sym_decorator, - STATE(5635), 1, + STATE(5555), 1, aux_sym_export_statement_repeat1, - STATE(6986), 1, + STATE(5640), 1, + sym_decorator, + STATE(6730), 1, sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4398), 2, + ACTIONS(4405), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4400), 3, + ACTIONS(4407), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4741), 6, + STATE(4636), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4378), 12, + ACTIONS(4385), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234842,74 +237082,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26545] = 35, + [26562] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, + ACTIONS(2672), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2938), 1, + ACTIONS(2945), 1, anon_sym_namespace, - ACTIONS(2940), 1, + ACTIONS(2947), 1, anon_sym_import, - ACTIONS(2942), 1, + ACTIONS(2949), 1, anon_sym_var, - ACTIONS(2944), 1, + ACTIONS(2951), 1, anon_sym_let, - ACTIONS(2946), 1, + ACTIONS(2953), 1, anon_sym_const, - ACTIONS(2948), 1, + ACTIONS(2955), 1, anon_sym_class, - ACTIONS(2950), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2952), 1, + ACTIONS(2959), 1, anon_sym_function, - ACTIONS(2954), 1, + ACTIONS(2961), 1, anon_sym_declare, - ACTIONS(2958), 1, + ACTIONS(2965), 1, anon_sym_abstract, - ACTIONS(2962), 1, + ACTIONS(2969), 1, anon_sym_interface, - ACTIONS(2964), 1, + ACTIONS(2971), 1, anon_sym_enum, - ACTIONS(4504), 1, + ACTIONS(4511), 1, anon_sym_STAR, - ACTIONS(4506), 1, + ACTIONS(4513), 1, anon_sym_default, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_type, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_as, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(4517), 1, + ACTIONS(4524), 1, anon_sym_RBRACE, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_module, STATE(2156), 1, sym_comment, - STATE(4959), 1, + STATE(4863), 1, aux_sym_export_statement_repeat1, - STATE(5242), 1, - sym_declaration, - STATE(5245), 1, + STATE(4974), 1, sym_internal_module, - STATE(5499), 1, + STATE(4975), 1, + sym_declaration, + STATE(5568), 1, sym_export_clause, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(5721), 1, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(6925), 1, + sym_namespace_export, + ACTIONS(4527), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4973), 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, + [26686] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2672), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2945), 1, + anon_sym_namespace, + ACTIONS(2947), 1, + anon_sym_import, + ACTIONS(2949), 1, + anon_sym_var, + ACTIONS(2951), 1, + anon_sym_let, + ACTIONS(2953), 1, + anon_sym_const, + ACTIONS(2955), 1, + anon_sym_class, + ACTIONS(2957), 1, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_function, + ACTIONS(2961), 1, + anon_sym_declare, + ACTIONS(2965), 1, + anon_sym_abstract, + ACTIONS(2969), 1, + anon_sym_interface, + ACTIONS(2971), 1, + anon_sym_enum, + ACTIONS(4511), 1, + anon_sym_STAR, + ACTIONS(4513), 1, + anon_sym_default, + ACTIONS(4515), 1, + anon_sym_type, + ACTIONS(4517), 1, + anon_sym_EQ, + ACTIONS(4519), 1, + anon_sym_as, + ACTIONS(4521), 1, + anon_sym_COMMA, + ACTIONS(4529), 1, + anon_sym_module, + ACTIONS(4531), 1, + anon_sym_RBRACE, + STATE(2157), 1, + sym_comment, + STATE(4863), 1, + aux_sym_export_statement_repeat1, + STATE(4974), 1, + sym_internal_module, + STATE(4975), 1, + sym_declaration, + STATE(5568), 1, + sym_export_clause, + STATE(5640), 1, + sym_decorator, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(6969), 1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + STATE(6925), 1, sym_namespace_export, - ACTIONS(4520), 7, + ACTIONS(4527), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -234917,7 +237246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5246), 13, + STATE(4973), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234931,163 +237260,74 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26669] = 35, + [26810] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, + ACTIONS(2672), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2938), 1, + ACTIONS(2945), 1, anon_sym_namespace, - ACTIONS(2940), 1, + ACTIONS(2947), 1, anon_sym_import, - ACTIONS(2942), 1, + ACTIONS(2949), 1, anon_sym_var, - ACTIONS(2944), 1, + ACTIONS(2951), 1, anon_sym_let, - ACTIONS(2946), 1, + ACTIONS(2953), 1, anon_sym_const, - ACTIONS(2948), 1, + ACTIONS(2955), 1, anon_sym_class, - ACTIONS(2950), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2952), 1, + ACTIONS(2959), 1, anon_sym_function, - ACTIONS(2954), 1, + ACTIONS(2961), 1, anon_sym_declare, - ACTIONS(2958), 1, + ACTIONS(2965), 1, anon_sym_abstract, - ACTIONS(2962), 1, + ACTIONS(2969), 1, anon_sym_interface, - ACTIONS(2964), 1, + ACTIONS(2971), 1, anon_sym_enum, - ACTIONS(4504), 1, + ACTIONS(4511), 1, anon_sym_STAR, - ACTIONS(4506), 1, + ACTIONS(4513), 1, anon_sym_default, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_type, - ACTIONS(4510), 1, - anon_sym_EQ, - ACTIONS(4512), 1, - anon_sym_as, - ACTIONS(4514), 1, - anon_sym_COMMA, - ACTIONS(4522), 1, - anon_sym_module, - ACTIONS(4524), 1, - anon_sym_RBRACE, - STATE(2157), 1, - sym_comment, - STATE(4959), 1, - aux_sym_export_statement_repeat1, - STATE(5242), 1, - sym_declaration, - STATE(5245), 1, - sym_internal_module, - STATE(5499), 1, - sym_export_clause, - STATE(5608), 1, - sym_decorator, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - STATE(6969), 1, - sym_namespace_export, - ACTIONS(4520), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(5246), 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, - [26793] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2665), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2938), 1, - anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, - anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, - anon_sym_declare, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - ACTIONS(4504), 1, - anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_default, - ACTIONS(4508), 1, - anon_sym_type, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_as, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_module, - ACTIONS(4527), 1, + ACTIONS(4534), 1, anon_sym_RBRACE, STATE(2158), 1, sym_comment, - STATE(4959), 1, + STATE(4863), 1, aux_sym_export_statement_repeat1, - STATE(5242), 1, - sym_declaration, - STATE(5245), 1, + STATE(4974), 1, sym_internal_module, - STATE(5499), 1, + STATE(4975), 1, + sym_declaration, + STATE(5568), 1, sym_export_clause, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(6969), 1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + STATE(6925), 1, sym_namespace_export, - ACTIONS(4520), 7, + ACTIONS(4527), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -235095,7 +237335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5246), 13, + STATE(4973), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -235109,74 +237349,74 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26917] = 35, + [26934] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, + ACTIONS(2672), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2938), 1, + ACTIONS(2945), 1, anon_sym_namespace, - ACTIONS(2940), 1, + ACTIONS(2947), 1, anon_sym_import, - ACTIONS(2942), 1, + ACTIONS(2949), 1, anon_sym_var, - ACTIONS(2944), 1, + ACTIONS(2951), 1, anon_sym_let, - ACTIONS(2946), 1, + ACTIONS(2953), 1, anon_sym_const, - ACTIONS(2948), 1, + ACTIONS(2955), 1, anon_sym_class, - ACTIONS(2950), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2952), 1, + ACTIONS(2959), 1, anon_sym_function, - ACTIONS(2954), 1, + ACTIONS(2961), 1, anon_sym_declare, - ACTIONS(2958), 1, + ACTIONS(2965), 1, anon_sym_abstract, - ACTIONS(2962), 1, + ACTIONS(2969), 1, anon_sym_interface, - ACTIONS(2964), 1, + ACTIONS(2971), 1, anon_sym_enum, - ACTIONS(4504), 1, + ACTIONS(4511), 1, anon_sym_STAR, - ACTIONS(4506), 1, + ACTIONS(4513), 1, anon_sym_default, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_type, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_as, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_module, - ACTIONS(4530), 1, + ACTIONS(4537), 1, anon_sym_RBRACE, STATE(2159), 1, sym_comment, - STATE(4959), 1, + STATE(4863), 1, aux_sym_export_statement_repeat1, - STATE(5242), 1, - sym_declaration, - STATE(5245), 1, + STATE(4974), 1, sym_internal_module, - STATE(5499), 1, + STATE(4975), 1, + sym_declaration, + STATE(5568), 1, sym_export_clause, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(6969), 1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + STATE(6925), 1, sym_namespace_export, - ACTIONS(4520), 7, + ACTIONS(4527), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -235184,7 +237424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5246), 13, + STATE(4973), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -235198,74 +237438,74 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [27041] = 35, + [27058] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, + ACTIONS(2672), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2938), 1, + ACTIONS(2945), 1, anon_sym_namespace, - ACTIONS(2940), 1, + ACTIONS(2947), 1, anon_sym_import, - ACTIONS(2942), 1, + ACTIONS(2949), 1, anon_sym_var, - ACTIONS(2944), 1, + ACTIONS(2951), 1, anon_sym_let, - ACTIONS(2946), 1, + ACTIONS(2953), 1, anon_sym_const, - ACTIONS(2948), 1, + ACTIONS(2955), 1, anon_sym_class, - ACTIONS(2950), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2952), 1, + ACTIONS(2959), 1, anon_sym_function, - ACTIONS(2954), 1, + ACTIONS(2961), 1, anon_sym_declare, - ACTIONS(2958), 1, + ACTIONS(2965), 1, anon_sym_abstract, - ACTIONS(2962), 1, + ACTIONS(2969), 1, anon_sym_interface, - ACTIONS(2964), 1, + ACTIONS(2971), 1, anon_sym_enum, - ACTIONS(4504), 1, + ACTIONS(4511), 1, anon_sym_STAR, - ACTIONS(4506), 1, + ACTIONS(4513), 1, anon_sym_default, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_type, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_as, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_module, - ACTIONS(4533), 1, + ACTIONS(4540), 1, anon_sym_RBRACE, STATE(2160), 1, sym_comment, - STATE(4959), 1, + STATE(4863), 1, aux_sym_export_statement_repeat1, - STATE(5242), 1, - sym_declaration, - STATE(5245), 1, + STATE(4974), 1, sym_internal_module, - STATE(5499), 1, + STATE(4975), 1, + sym_declaration, + STATE(5568), 1, sym_export_clause, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(5720), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(5721), 1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - STATE(6969), 1, + STATE(6925), 1, sym_namespace_export, - ACTIONS(4520), 7, + ACTIONS(4527), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -235273,7 +237513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5246), 13, + STATE(4973), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -235287,78 +237527,78 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [27165] = 32, + [27182] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4538), 1, + ACTIONS(4545), 1, anon_sym_RBRACE, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, STATE(2161), 1, sym_comment, - STATE(2192), 1, + STATE(2180), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235372,78 +237612,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27282] = 32, + [27299] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4558), 1, + ACTIONS(4565), 1, anon_sym_RBRACE, STATE(2162), 1, sym_comment, - STATE(2194), 1, + STATE(2196), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235457,81 +237697,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27399] = 29, + [27416] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4562), 1, - anon_sym_RBRACE, - ACTIONS(4564), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4566), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4543), 1, + anon_sym_STAR, + ACTIONS(4547), 1, + anon_sym_SEMI, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4568), 1, + ACTIONS(4551), 1, + anon_sym_AT, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4570), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4576), 1, - anon_sym_override, + ACTIONS(4559), 1, + anon_sym_declare, + ACTIONS(4563), 1, + anon_sym_abstract, + ACTIONS(4567), 1, + anon_sym_RBRACE, STATE(2163), 1, sym_comment, - STATE(3471), 1, + STATE(2194), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, + aux_sym_export_statement_repeat1, + STATE(3364), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3523), 1, + STATE(3536), 1, sym_override_modifier, - STATE(4547), 1, + STATE(3568), 1, + sym_decorator, + STATE(3832), 1, sym__property_name, - STATE(5685), 1, - aux_sym_object_pattern_repeat1, - STATE(6207), 1, - aux_sym_object_repeat1, - STATE(7181), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5594), 1, + sym_method_signature, + ACTIONS(3903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4572), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4574), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5680), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6204), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4560), 14, + STATE(6302), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -235539,74 +237782,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27510] = 29, + [27533] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(243), 1, + ACTIONS(247), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(4564), 1, - anon_sym_LBRACK, - ACTIONS(4580), 1, + ACTIONS(4571), 1, anon_sym_RBRACE, - ACTIONS(4582), 1, + ACTIONS(4573), 1, + anon_sym_LBRACK, + ACTIONS(4575), 1, anon_sym_async, - ACTIONS(4584), 1, + ACTIONS(4577), 1, anon_sym_static, - ACTIONS(4586), 1, + ACTIONS(4579), 1, anon_sym_readonly, - ACTIONS(4592), 1, + ACTIONS(4585), 1, anon_sym_override, STATE(2164), 1, sym_comment, - STATE(3471), 1, + STATE(3502), 1, sym_accessibility_modifier, - STATE(3523), 1, + STATE(3520), 1, sym_override_modifier, - STATE(4547), 1, + STATE(4575), 1, sym__property_name, - STATE(5685), 1, + STATE(5860), 1, aux_sym_object_pattern_repeat1, - STATE(6207), 1, + STATE(5925), 1, aux_sym_object_repeat1, - STATE(7181), 1, + STATE(7272), 1, sym__destructuring_pattern, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(4588), 2, + ACTIONS(4581), 2, anon_sym_get, anon_sym_set, - STATE(4245), 2, + STATE(4148), 2, sym_object_pattern, sym_array_pattern, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4590), 3, + ACTIONS(4583), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5680), 3, + STATE(5815), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6204), 3, + STATE(5828), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4578), 14, + ACTIONS(4569), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235621,78 +237864,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27621] = 32, + [27644] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4594), 1, + ACTIONS(4587), 1, anon_sym_RBRACE, STATE(2165), 1, sym_comment, - STATE(2184), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235706,84 +237949,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27738] = 32, + [27761] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(247), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4536), 1, - anon_sym_STAR, - ACTIONS(4540), 1, - anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4591), 1, + anon_sym_RBRACE, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4544), 1, - anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4595), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4597), 1, anon_sym_readonly, - ACTIONS(4552), 1, - anon_sym_declare, - ACTIONS(4556), 1, - anon_sym_abstract, - ACTIONS(4596), 1, - anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_override, STATE(2166), 1, sym_comment, - STATE(2191), 1, - aux_sym_class_body_repeat1, - STATE(3292), 1, - aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3502), 1, + sym_accessibility_modifier, + STATE(3520), 1, + sym_override_modifier, + STATE(4575), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_repeat1, + STATE(5860), 1, + aux_sym_object_pattern_repeat1, + STATE(7272), 1, + sym__destructuring_pattern, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4599), 2, + anon_sym_get, + anon_sym_set, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4601), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5736), 3, + sym_spread_element, sym_method_definition, - STATE(3429), 1, - sym_class_static_block, - STATE(3463), 1, + sym_pair, + STATE(5815), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4589), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [27872] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(247), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, + anon_sym_RBRACE, + ACTIONS(4609), 1, + anon_sym_async, + ACTIONS(4611), 1, + anon_sym_static, + ACTIONS(4613), 1, + anon_sym_readonly, + ACTIONS(4619), 1, + anon_sym_override, + STATE(2167), 1, + sym_comment, + STATE(3502), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3520), 1, sym_override_modifier, - STATE(3548), 1, - sym_decorator, - STATE(3819), 1, + STATE(4575), 1, sym__property_name, - STATE(5481), 1, - sym_method_signature, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, + STATE(5860), 1, + aux_sym_object_pattern_repeat1, + STATE(5925), 1, + aux_sym_object_repeat1, + STATE(7272), 1, + sym__destructuring_pattern, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4615), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4617), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4378), 13, + STATE(5815), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5828), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4605), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -235791,78 +238113,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27855] = 32, + [27983] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4598), 1, + ACTIONS(4621), 1, anon_sym_RBRACE, - STATE(2167), 1, - sym_comment, - STATE(2174), 1, + STATE(2165), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(2168), 1, + sym_comment, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235876,74 +238198,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27972] = 29, + [28100] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(243), 1, + ACTIONS(247), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(4564), 1, + ACTIONS(4573), 1, anon_sym_LBRACK, - ACTIONS(4602), 1, + ACTIONS(4625), 1, anon_sym_RBRACE, - ACTIONS(4604), 1, + ACTIONS(4627), 1, anon_sym_async, - ACTIONS(4606), 1, + ACTIONS(4629), 1, anon_sym_static, - ACTIONS(4608), 1, + ACTIONS(4631), 1, anon_sym_readonly, - ACTIONS(4614), 1, + ACTIONS(4637), 1, anon_sym_override, - STATE(2168), 1, + STATE(2169), 1, sym_comment, - STATE(3471), 1, + STATE(3502), 1, sym_accessibility_modifier, - STATE(3523), 1, + STATE(3520), 1, sym_override_modifier, - STATE(4547), 1, + STATE(4575), 1, sym__property_name, - STATE(5685), 1, - aux_sym_object_pattern_repeat1, - STATE(6207), 1, + STATE(5721), 1, aux_sym_object_repeat1, - STATE(7181), 1, + STATE(5860), 1, + aux_sym_object_pattern_repeat1, + STATE(7272), 1, sym__destructuring_pattern, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(4610), 2, + ACTIONS(4633), 2, anon_sym_get, anon_sym_set, - STATE(4245), 2, + STATE(4148), 2, sym_object_pattern, sym_array_pattern, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4612), 3, + ACTIONS(4635), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5680), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6204), 3, + STATE(5736), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4600), 14, + STATE(5815), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4623), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235958,78 +238280,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28083] = 32, + [28211] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4616), 1, + ACTIONS(4639), 1, anon_sym_RBRACE, - STATE(2169), 1, + STATE(2170), 1, sym_comment, - STATE(2182), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236043,78 +238365,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28200] = 32, + [28328] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4618), 1, + ACTIONS(4641), 1, anon_sym_RBRACE, - STATE(2170), 1, + STATE(2171), 1, sym_comment, - STATE(2184), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236128,78 +238450,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28317] = 32, + [28445] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4620), 1, + ACTIONS(4643), 1, anon_sym_RBRACE, - STATE(2171), 1, - sym_comment, - STATE(2190), 1, + STATE(2170), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(2172), 1, + sym_comment, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236213,84 +238535,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28434] = 32, + [28562] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4622), 1, + ACTIONS(4645), 1, anon_sym_RBRACE, - STATE(2170), 1, - aux_sym_class_body_repeat1, - STATE(2172), 1, + STATE(2173), 1, sym_comment, - STATE(3292), 1, + STATE(2195), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [28679] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(247), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, + anon_sym_LBRACK, + ACTIONS(4649), 1, + anon_sym_RBRACE, + ACTIONS(4651), 1, + anon_sym_async, + ACTIONS(4653), 1, + anon_sym_static, + ACTIONS(4655), 1, + anon_sym_readonly, + ACTIONS(4661), 1, + anon_sym_override, + STATE(2174), 1, + sym_comment, + STATE(3502), 1, + sym_accessibility_modifier, + STATE(3520), 1, + sym_override_modifier, + STATE(4575), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_repeat1, + STATE(5860), 1, + aux_sym_object_pattern_repeat1, + STATE(7272), 1, + sym__destructuring_pattern, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4657), 2, + anon_sym_get, + anon_sym_set, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4659), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5736), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5815), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4647), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -236298,78 +238702,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28551] = 32, + [28790] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4624), 1, + ACTIONS(4663), 1, anon_sym_RBRACE, STATE(2173), 1, - sym_comment, - STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(2175), 1, + sym_comment, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236383,78 +238787,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28668] = 32, + [28907] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4626), 1, + ACTIONS(4665), 1, anon_sym_RBRACE, - STATE(2174), 1, + STATE(2176), 1, sym_comment, - STATE(2184), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236468,78 +238872,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28785] = 32, + [29024] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4628), 1, + ACTIONS(4667), 1, anon_sym_RBRACE, - STATE(2175), 1, - sym_comment, - STATE(2184), 1, + STATE(2176), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(2177), 1, + sym_comment, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236553,81 +238957,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28902] = 29, + [29141] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4564), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4632), 1, - anon_sym_RBRACE, - ACTIONS(4634), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4543), 1, + anon_sym_STAR, + ACTIONS(4547), 1, + anon_sym_SEMI, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4636), 1, + ACTIONS(4551), 1, + anon_sym_AT, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4638), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4644), 1, - anon_sym_override, - STATE(2176), 1, + ACTIONS(4559), 1, + anon_sym_declare, + ACTIONS(4563), 1, + anon_sym_abstract, + ACTIONS(4669), 1, + anon_sym_RBRACE, + STATE(2178), 1, sym_comment, - STATE(3471), 1, + STATE(2199), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, + aux_sym_export_statement_repeat1, + STATE(3364), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3523), 1, + STATE(3536), 1, sym_override_modifier, - STATE(4547), 1, + STATE(3568), 1, + sym_decorator, + STATE(3832), 1, sym__property_name, - STATE(5685), 1, - aux_sym_object_pattern_repeat1, - STATE(6207), 1, - aux_sym_object_repeat1, - STATE(7181), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5594), 1, + sym_method_signature, + ACTIONS(3903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4640), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4642), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5680), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6204), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4630), 14, + STATE(6302), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -236635,78 +239042,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29013] = 32, + [29258] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4646), 1, + ACTIONS(4671), 1, anon_sym_RBRACE, - STATE(2177), 1, - sym_comment, - STATE(2180), 1, + STATE(2171), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(2179), 1, + sym_comment, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236720,78 +239127,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29130] = 32, + [29375] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4648), 1, + ACTIONS(4673), 1, anon_sym_RBRACE, - STATE(2178), 1, + STATE(2180), 1, sym_comment, - STATE(2184), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236805,81 +239212,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29247] = 29, + [29492] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4564), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4652), 1, - anon_sym_RBRACE, - ACTIONS(4654), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4543), 1, + anon_sym_STAR, + ACTIONS(4547), 1, + anon_sym_SEMI, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4656), 1, + ACTIONS(4551), 1, + anon_sym_AT, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4658), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4664), 1, - anon_sym_override, - STATE(2179), 1, + ACTIONS(4559), 1, + anon_sym_declare, + ACTIONS(4563), 1, + anon_sym_abstract, + ACTIONS(4675), 1, + anon_sym_RBRACE, + STATE(2181), 1, sym_comment, - STATE(3471), 1, + STATE(2197), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, + aux_sym_export_statement_repeat1, + STATE(3364), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3523), 1, + STATE(3536), 1, sym_override_modifier, - STATE(4547), 1, + STATE(3568), 1, + sym_decorator, + STATE(3832), 1, sym__property_name, - STATE(5685), 1, - aux_sym_object_pattern_repeat1, - STATE(6207), 1, - aux_sym_object_repeat1, - STATE(7181), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5594), 1, + sym_method_signature, + ACTIONS(3903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4660), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4662), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5680), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6204), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4650), 14, + STATE(6302), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -236887,78 +239297,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29358] = 32, + [29609] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4666), 1, + ACTIONS(4677), 1, anon_sym_RBRACE, - STATE(2180), 1, + STATE(2182), 1, sym_comment, - STATE(2184), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236972,81 +239382,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29475] = 29, + [29726] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4564), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4670), 1, - anon_sym_RBRACE, - ACTIONS(4672), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4543), 1, + anon_sym_STAR, + ACTIONS(4547), 1, + anon_sym_SEMI, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4674), 1, + ACTIONS(4551), 1, + anon_sym_AT, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4676), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4682), 1, - anon_sym_override, - STATE(2181), 1, + ACTIONS(4559), 1, + anon_sym_declare, + ACTIONS(4563), 1, + anon_sym_abstract, + ACTIONS(4679), 1, + anon_sym_RBRACE, + STATE(2182), 1, + aux_sym_class_body_repeat1, + STATE(2183), 1, sym_comment, - STATE(3471), 1, + STATE(3289), 1, + aux_sym_export_statement_repeat1, + STATE(3364), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3523), 1, + STATE(3536), 1, sym_override_modifier, - STATE(4547), 1, + STATE(3568), 1, + sym_decorator, + STATE(3832), 1, sym__property_name, - STATE(5685), 1, - aux_sym_object_pattern_repeat1, - STATE(5700), 1, - aux_sym_object_repeat1, - STATE(7181), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5594), 1, + sym_method_signature, + ACTIONS(3903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4678), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4680), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5680), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5682), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4668), 14, + STATE(6302), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -237054,78 +239467,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29586] = 32, + [29843] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4684), 1, + ACTIONS(4681), 1, anon_sym_RBRACE, - STATE(2182), 1, - sym_comment, STATE(2184), 1, + sym_comment, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237139,78 +239552,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29703] = 32, + [29960] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4686), 1, + ACTIONS(4683), 1, anon_sym_RBRACE, - STATE(2183), 1, - sym_comment, - STATE(2189), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(2185), 1, + sym_comment, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237224,77 +239637,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29820] = 31, + [30077] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4691), 1, - anon_sym_STAR, - ACTIONS(4694), 1, - anon_sym_RBRACE, - ACTIONS(4696), 1, - anon_sym_SEMI, - ACTIONS(4699), 1, - anon_sym_LBRACK, - ACTIONS(4702), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(4705), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4708), 1, + ACTIONS(4395), 1, + anon_sym_LBRACK, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4543), 1, + anon_sym_STAR, + ACTIONS(4547), 1, + anon_sym_SEMI, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4717), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4720), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4723), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4729), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4735), 1, - anon_sym_override, - ACTIONS(4738), 1, + ACTIONS(4563), 1, anon_sym_abstract, - STATE(3292), 1, + ACTIONS(4685), 1, + anon_sym_RBRACE, + STATE(2186), 1, + sym_comment, + STATE(2195), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(4711), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4714), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4726), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(2184), 2, - sym_comment, - aux_sym_class_body_repeat1, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4732), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4688), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237308,74 +239722,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29935] = 29, + [30194] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(243), 1, + ACTIONS(247), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(4564), 1, + ACTIONS(4573), 1, anon_sym_LBRACK, - ACTIONS(4743), 1, + ACTIONS(4689), 1, anon_sym_RBRACE, - ACTIONS(4745), 1, + ACTIONS(4691), 1, anon_sym_async, - ACTIONS(4747), 1, + ACTIONS(4693), 1, anon_sym_static, - ACTIONS(4749), 1, + ACTIONS(4695), 1, anon_sym_readonly, - ACTIONS(4755), 1, + ACTIONS(4701), 1, anon_sym_override, - STATE(2185), 1, + STATE(2187), 1, sym_comment, - STATE(3471), 1, + STATE(3502), 1, sym_accessibility_modifier, - STATE(3523), 1, + STATE(3520), 1, sym_override_modifier, - STATE(4547), 1, + STATE(4575), 1, sym__property_name, - STATE(5685), 1, - aux_sym_object_pattern_repeat1, - STATE(5700), 1, + STATE(5721), 1, aux_sym_object_repeat1, - STATE(7181), 1, + STATE(5860), 1, + aux_sym_object_pattern_repeat1, + STATE(7272), 1, sym__destructuring_pattern, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(4751), 2, + ACTIONS(4697), 2, anon_sym_get, anon_sym_set, - STATE(4245), 2, + STATE(4148), 2, sym_object_pattern, sym_array_pattern, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4753), 3, + ACTIONS(4699), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5680), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5682), 3, + STATE(5736), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4741), 14, + STATE(5815), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4687), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237390,78 +239804,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30046] = 32, + [30305] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4757), 1, + ACTIONS(4703), 1, anon_sym_RBRACE, - STATE(2178), 1, - aux_sym_class_body_repeat1, - STATE(2186), 1, + STATE(2188), 1, sym_comment, - STATE(3292), 1, + STATE(2190), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237475,84 +239889,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30163] = 32, + [30422] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(247), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4536), 1, - anon_sym_STAR, - ACTIONS(4540), 1, - anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4707), 1, + anon_sym_RBRACE, + ACTIONS(4709), 1, anon_sym_async, - ACTIONS(4544), 1, - anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4711), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4713), 1, anon_sym_readonly, - ACTIONS(4552), 1, - anon_sym_declare, - ACTIONS(4556), 1, - anon_sym_abstract, - ACTIONS(4759), 1, - anon_sym_RBRACE, - STATE(2184), 1, - aux_sym_class_body_repeat1, - STATE(2187), 1, + ACTIONS(4719), 1, + anon_sym_override, + STATE(2189), 1, sym_comment, - STATE(3292), 1, - aux_sym_export_statement_repeat1, - STATE(3389), 1, - sym_method_definition, - STATE(3429), 1, - sym_class_static_block, - STATE(3463), 1, + STATE(3502), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3520), 1, sym_override_modifier, - STATE(3548), 1, - sym_decorator, - STATE(3819), 1, + STATE(4575), 1, sym__property_name, - STATE(5481), 1, - sym_method_signature, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, + STATE(5721), 1, + aux_sym_object_repeat1, + STATE(5860), 1, + aux_sym_object_pattern_repeat1, + STATE(7272), 1, + sym__destructuring_pattern, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4715), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4717), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4378), 13, + STATE(5736), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5815), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4705), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -237560,78 +239971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30280] = 32, + [30533] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4761), 1, + ACTIONS(4721), 1, anon_sym_RBRACE, - STATE(2173), 1, - aux_sym_class_body_repeat1, - STATE(2188), 1, + STATE(2190), 1, sym_comment, - STATE(3292), 1, + STATE(2195), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237645,78 +240056,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30397] = 32, + [30650] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4763), 1, + ACTIONS(4723), 1, anon_sym_RBRACE, - STATE(2184), 1, - aux_sym_class_body_repeat1, - STATE(2189), 1, + STATE(2191), 1, sym_comment, - STATE(3292), 1, + STATE(2195), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237730,78 +240141,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30514] = 32, + [30767] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4765), 1, + ACTIONS(4725), 1, anon_sym_RBRACE, - STATE(2184), 1, - aux_sym_class_body_repeat1, - STATE(2190), 1, + STATE(2192), 1, sym_comment, - STATE(3292), 1, + STATE(2195), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237815,78 +240226,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30631] = 32, + [30884] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4767), 1, + ACTIONS(4727), 1, anon_sym_RBRACE, - STATE(2184), 1, + STATE(2192), 1, aux_sym_class_body_repeat1, - STATE(2191), 1, + STATE(2193), 1, sym_comment, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237900,78 +240311,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30748] = 32, + [31001] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4769), 1, + ACTIONS(4729), 1, anon_sym_RBRACE, - STATE(2184), 1, - aux_sym_class_body_repeat1, - STATE(2192), 1, + STATE(2194), 1, sym_comment, - STATE(3292), 1, + STATE(2195), 1, + aux_sym_class_body_repeat1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237985,78 +240396,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30865] = 32, + [31118] = 31, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4388), 1, - anon_sym_LBRACK, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4734), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4737), 1, + anon_sym_RBRACE, + ACTIONS(4739), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4742), 1, + anon_sym_LBRACK, + ACTIONS(4745), 1, + anon_sym_DQUOTE, + ACTIONS(4748), 1, + anon_sym_SQUOTE, + ACTIONS(4751), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4760), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4763), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4766), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4772), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4778), 1, + anon_sym_override, + ACTIONS(4781), 1, anon_sym_abstract, - ACTIONS(4771), 1, - anon_sym_RBRACE, - STATE(2165), 1, - aux_sym_class_body_repeat1, - STATE(2193), 1, - sym_comment, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(4754), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(4757), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4769), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(2195), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4775), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4731), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238070,78 +240480,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30982] = 32, + [31233] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4773), 1, + ACTIONS(4784), 1, anon_sym_RBRACE, - STATE(2184), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(2194), 1, + STATE(2196), 1, sym_comment, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238155,78 +240565,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31099] = 32, + [31350] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4775), 1, + ACTIONS(4786), 1, anon_sym_RBRACE, STATE(2195), 1, - sym_comment, - STATE(2200), 1, aux_sym_class_body_repeat1, - STATE(3292), 1, + STATE(2197), 1, + sym_comment, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238240,78 +240650,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31216] = 32, + [31467] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4777), 1, + ACTIONS(4788), 1, anon_sym_RBRACE, - STATE(2187), 1, + STATE(2186), 1, aux_sym_class_body_repeat1, - STATE(2196), 1, + STATE(2198), 1, sym_comment, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238325,78 +240735,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31333] = 32, + [31584] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4779), 1, + ACTIONS(4790), 1, anon_sym_RBRACE, - STATE(2184), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(2197), 1, + STATE(2199), 1, sym_comment, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238410,78 +240820,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31450] = 32, + [31701] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4395), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4549), 1, anon_sym_async, - ACTIONS(4544), 1, + ACTIONS(4551), 1, anon_sym_AT, - ACTIONS(4546), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4548), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4552), 1, + ACTIONS(4559), 1, anon_sym_declare, - ACTIONS(4556), 1, + ACTIONS(4563), 1, anon_sym_abstract, - ACTIONS(4781), 1, + ACTIONS(4792), 1, anon_sym_RBRACE, - STATE(2197), 1, + STATE(2191), 1, aux_sym_class_body_repeat1, - STATE(2198), 1, + STATE(2200), 1, sym_comment, - STATE(3292), 1, + STATE(3289), 1, aux_sym_export_statement_repeat1, - STATE(3389), 1, + STATE(3364), 1, sym_method_definition, - STATE(3429), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3463), 1, + STATE(3445), 1, sym_accessibility_modifier, - STATE(3525), 1, + STATE(3536), 1, sym_override_modifier, - STATE(3548), 1, + STATE(3568), 1, sym_decorator, - STATE(3819), 1, + STATE(3832), 1, sym__property_name, - STATE(5481), 1, + STATE(5594), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(3903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4554), 3, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5809), 3, + STATE(6302), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4378), 13, + ACTIONS(4385), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238495,246 +240905,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31567] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [31818] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4388), 1, - anon_sym_LBRACK, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4536), 1, - anon_sym_STAR, - ACTIONS(4540), 1, - anon_sym_SEMI, - ACTIONS(4542), 1, - anon_sym_async, - ACTIONS(4544), 1, - anon_sym_AT, - ACTIONS(4546), 1, - anon_sym_static, - ACTIONS(4548), 1, - anon_sym_readonly, - ACTIONS(4552), 1, - anon_sym_declare, - ACTIONS(4556), 1, - anon_sym_abstract, - ACTIONS(4783), 1, - anon_sym_RBRACE, - STATE(2175), 1, - aux_sym_class_body_repeat1, - STATE(2199), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2201), 1, sym_comment, - STATE(3292), 1, - aux_sym_export_statement_repeat1, - STATE(3389), 1, - sym_method_definition, - STATE(3429), 1, - sym_class_static_block, - STATE(3463), 1, - sym_accessibility_modifier, - STATE(3525), 1, - sym_override_modifier, - STATE(3548), 1, - sym_decorator, - STATE(3819), 1, - sym__property_name, - STATE(5481), 1, - sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(2170), 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, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4550), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4554), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5809), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4378), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [31684] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(2172), 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, + [31880] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4388), 1, - anon_sym_LBRACK, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4536), 1, - anon_sym_STAR, - ACTIONS(4540), 1, - anon_sym_SEMI, - ACTIONS(4542), 1, - anon_sym_async, - ACTIONS(4544), 1, - anon_sym_AT, - ACTIONS(4546), 1, - anon_sym_static, - ACTIONS(4548), 1, - anon_sym_readonly, - ACTIONS(4552), 1, - anon_sym_declare, - ACTIONS(4556), 1, - anon_sym_abstract, - ACTIONS(4785), 1, - anon_sym_RBRACE, - STATE(2184), 1, - aux_sym_class_body_repeat1, - STATE(2200), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2202), 1, sym_comment, - STATE(3292), 1, - aux_sym_export_statement_repeat1, - STATE(3389), 1, - sym_method_definition, - STATE(3429), 1, - sym_class_static_block, - STATE(3463), 1, - sym_accessibility_modifier, - STATE(3525), 1, - sym_override_modifier, - STATE(3548), 1, - sym_decorator, - STATE(3819), 1, - sym__property_name, - STATE(5481), 1, - sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(2198), 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, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4550), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4554), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5809), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4378), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [31801] = 31, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(2200), 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, + [31942] = 32, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, + ACTIONS(2672), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2938), 1, + ACTIONS(2945), 1, anon_sym_namespace, - ACTIONS(2940), 1, + ACTIONS(2947), 1, anon_sym_import, - ACTIONS(2942), 1, + ACTIONS(2949), 1, anon_sym_var, - ACTIONS(2944), 1, + ACTIONS(2951), 1, anon_sym_let, - ACTIONS(2946), 1, + ACTIONS(2953), 1, anon_sym_const, - ACTIONS(2948), 1, + ACTIONS(2955), 1, anon_sym_class, - ACTIONS(2950), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2952), 1, + ACTIONS(2959), 1, anon_sym_function, - ACTIONS(2954), 1, + ACTIONS(2961), 1, anon_sym_declare, - ACTIONS(2958), 1, + ACTIONS(2965), 1, anon_sym_abstract, - ACTIONS(2962), 1, + ACTIONS(2969), 1, anon_sym_interface, - ACTIONS(2964), 1, + ACTIONS(2971), 1, anon_sym_enum, - ACTIONS(4504), 1, + ACTIONS(4511), 1, anon_sym_STAR, - ACTIONS(4506), 1, + ACTIONS(4513), 1, anon_sym_default, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_type, - ACTIONS(4512), 1, + ACTIONS(4517), 1, + anon_sym_EQ, + ACTIONS(4519), 1, anon_sym_as, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_module, - ACTIONS(4787), 1, - anon_sym_EQ, - STATE(2201), 1, + STATE(2203), 1, sym_comment, - STATE(4959), 1, + STATE(4863), 1, aux_sym_export_statement_repeat1, - STATE(5242), 1, - sym_declaration, - STATE(5245), 1, + STATE(4974), 1, sym_internal_module, - STATE(5499), 1, + STATE(4975), 1, + sym_declaration, + STATE(5568), 1, sym_export_clause, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(6969), 1, + STATE(6925), 1, sym_namespace_export, - ACTIONS(4520), 9, - sym__automatic_semicolon, + ACTIONS(4794), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4527), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5246), 13, + STATE(4973), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -238748,77 +241103,76 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [31915] = 32, + [32058] = 31, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, + ACTIONS(2672), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2938), 1, + ACTIONS(2945), 1, anon_sym_namespace, - ACTIONS(2940), 1, + ACTIONS(2947), 1, anon_sym_import, - ACTIONS(2942), 1, + ACTIONS(2949), 1, anon_sym_var, - ACTIONS(2944), 1, + ACTIONS(2951), 1, anon_sym_let, - ACTIONS(2946), 1, + ACTIONS(2953), 1, anon_sym_const, - ACTIONS(2948), 1, + ACTIONS(2955), 1, anon_sym_class, - ACTIONS(2950), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2952), 1, + ACTIONS(2959), 1, anon_sym_function, - ACTIONS(2954), 1, + ACTIONS(2961), 1, anon_sym_declare, - ACTIONS(2958), 1, + ACTIONS(2965), 1, anon_sym_abstract, - ACTIONS(2962), 1, + ACTIONS(2969), 1, anon_sym_interface, - ACTIONS(2964), 1, + ACTIONS(2971), 1, anon_sym_enum, - ACTIONS(4504), 1, + ACTIONS(4511), 1, anon_sym_STAR, - ACTIONS(4506), 1, + ACTIONS(4513), 1, anon_sym_default, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_type, - ACTIONS(4510), 1, - anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_as, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_module, - STATE(2202), 1, + ACTIONS(4798), 1, + anon_sym_EQ, + STATE(2204), 1, sym_comment, - STATE(4959), 1, + STATE(4863), 1, aux_sym_export_statement_repeat1, - STATE(5242), 1, - sym_declaration, - STATE(5245), 1, + STATE(4974), 1, sym_internal_module, - STATE(5499), 1, + STATE(4975), 1, + sym_declaration, + STATE(5568), 1, sym_export_clause, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(6969), 1, + STATE(6925), 1, sym_namespace_export, - ACTIONS(4789), 2, + ACTIONS(4527), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4520), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5246), 13, + STATE(4973), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -238832,14 +241186,24 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [32031] = 5, + [32172] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2203), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4806), 1, + anon_sym_DOT, + ACTIONS(4808), 1, + anon_sym_LT, + STATE(2205), 1, sym_comment, - ACTIONS(2205), 14, + STATE(2327), 1, + sym_type_arguments, + STATE(2331), 1, + sym_arguments, + ACTIONS(4800), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238850,25 +241214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2207), 34, - sym__automatic_semicolon, + ACTIONS(4802), 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_while, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -238888,15 +241246,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [32093] = 5, + anon_sym_implements, + [32243] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2204), 1, + ACTIONS(4808), 1, + anon_sym_LT, + ACTIONS(4812), 1, + anon_sym_DOT, + ACTIONS(4814), 1, + anon_sym_is, + STATE(2206), 1, sym_comment, - ACTIONS(2249), 14, + STATE(2350), 1, + sym_type_arguments, + ACTIONS(4810), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238907,25 +241273,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2251), 34, - sym__automatic_semicolon, + ACTIONS(4229), 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_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -238945,25 +241306,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [32155] = 10, + anon_sym_implements, + [32312] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4795), 1, - anon_sym_DOT, - ACTIONS(4797), 1, + ACTIONS(4808), 1, anon_sym_LT, - STATE(2205), 1, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_QMARK_DOT, + STATE(2207), 1, sym_comment, - STATE(2243), 1, + STATE(2332), 1, sym_type_arguments, - STATE(2244), 1, + STATE(2398), 1, sym_arguments, - ACTIONS(4167), 12, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4816), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238976,7 +241343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4157), 30, + ACTIONS(4818), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -238985,9 +241352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -239005,26 +241370,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, - [32226] = 10, + [32389] = 26, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(247), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_async, + ACTIONS(4830), 1, + anon_sym_static, + ACTIONS(4832), 1, + anon_sym_readonly, + ACTIONS(4838), 1, + anon_sym_override, + STATE(2208), 1, + sym_comment, + STATE(3502), 1, + sym_accessibility_modifier, + STATE(3520), 1, + sym_override_modifier, + STATE(4575), 1, + sym__property_name, + STATE(7272), 1, + sym__destructuring_pattern, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4071), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4834), 2, + anon_sym_get, + anon_sym_set, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4836), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6476), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4826), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [32492] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4808), 1, anon_sym_LT, - ACTIONS(4803), 1, + ACTIONS(4840), 1, anon_sym_DOT, - STATE(2206), 1, + STATE(2209), 1, sym_comment, - STATE(2269), 1, - sym_arguments, - STATE(2274), 1, + STATE(2344), 1, sym_type_arguments, - ACTIONS(4799), 12, + STATE(2362), 1, + sym_arguments, + ACTIONS(4180), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239037,7 +241478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4801), 30, + ACTIONS(4176), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239068,24 +241509,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32297] = 10, + [32563] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4808), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4846), 1, anon_sym_DOT, - STATE(2207), 1, + STATE(2210), 1, sym_comment, - STATE(2231), 1, + STATE(2333), 1, sym_type_arguments, - STATE(2236), 1, + STATE(2336), 1, sym_arguments, - ACTIONS(4805), 12, + ACTIONS(4842), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239098,7 +241539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4807), 30, + ACTIONS(4844), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239129,30 +241570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32368] = 13, + [32634] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_LT, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4819), 1, - anon_sym_QMARK_DOT, - STATE(2208), 1, + STATE(2211), 1, sym_comment, - STATE(2249), 1, - sym_type_arguments, - STATE(2505), 1, - sym_arguments, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4811), 12, + ACTIONS(4335), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239163,18 +241588,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4813), 27, + anon_sym_QMARK, + ACTIONS(4848), 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, @@ -239192,23 +241623,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, - [32445] = 9, + [32694] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4797), 1, - anon_sym_LT, - ACTIONS(4823), 1, - anon_sym_DOT, - ACTIONS(4825), 1, - anon_sym_is, - STATE(2209), 1, + STATE(2212), 1, sym_comment, - STATE(2385), 1, - sym_type_arguments, - ACTIONS(4821), 12, + ACTIONS(2170), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239219,9 +241643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4202), 31, + anon_sym_QMARK, + ACTIONS(2172), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239233,6 +241659,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, @@ -239253,91 +241680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32514] = 26, - ACTIONS(3), 1, - aux_sym_comment_token1, + [32754] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4564), 1, - anon_sym_LBRACK, - ACTIONS(4829), 1, - anon_sym_async, - ACTIONS(4831), 1, - anon_sym_static, - ACTIONS(4833), 1, - anon_sym_readonly, - ACTIONS(4839), 1, - anon_sym_override, - STATE(2210), 1, - sym_comment, - STATE(3471), 1, - sym_accessibility_modifier, - STATE(3523), 1, - sym_override_modifier, - STATE(4547), 1, - sym__property_name, - STATE(7181), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4064), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4835), 2, - anon_sym_get, - anon_sym_set, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4837), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6729), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(6875), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(4827), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [32617] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2211), 1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, + anon_sym_DOT, + STATE(2213), 1, sym_comment, - ACTIONS(4356), 14, + STATE(2422), 1, + sym_statement_block, + ACTIONS(2068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239351,20 +241707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4841), 32, + ACTIONS(2074), 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, @@ -239383,22 +241737,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, - [32677] = 8, + anon_sym_PIPE_RBRACE, + [32820] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4797), 1, - anon_sym_LT, - ACTIONS(4823), 1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + ACTIONS(4854), 1, anon_sym_DOT, - STATE(2212), 1, + STATE(2214), 1, sym_comment, - STATE(2385), 1, - sym_type_arguments, - ACTIONS(4821), 12, + STATE(2422), 1, + sym_statement_block, + ACTIONS(2068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239409,20 +241762,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(4202), 31, + ACTIONS(2074), 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -239441,18 +241795,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, - [32743] = 6, + anon_sym_PIPE_RBRACE, + [32886] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4825), 1, - anon_sym_is, - STATE(2213), 1, + STATE(2215), 1, sym_comment, - ACTIONS(4843), 13, + ACTIONS(4331), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239466,7 +241817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4845), 32, + anon_sym_QMARK, + ACTIONS(4856), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239499,18 +241851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32805] = 7, + [32946] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, + ACTIONS(4850), 1, anon_sym_LBRACE, - STATE(2214), 1, + STATE(2216), 1, sym_comment, - STATE(2502), 1, + STATE(2422), 1, sym_statement_block, - ACTIONS(2067), 13, + ACTIONS(2068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239524,7 +241876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2071), 31, + ACTIONS(2074), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -239556,14 +241908,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [32869] = 5, + [33010] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2215), 1, + ACTIONS(4808), 1, + anon_sym_LT, + STATE(2217), 1, sym_comment, - ACTIONS(4329), 14, + STATE(2267), 1, + sym_type_arguments, + ACTIONS(4858), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239574,11 +241930,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4849), 32, + ACTIONS(4860), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239611,16 +241965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32929] = 6, + [33074] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4825), 1, - anon_sym_is, - STATE(2216), 1, + STATE(2218), 1, sym_comment, - ACTIONS(4851), 13, + ACTIONS(2198), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239634,7 +241986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4853), 32, + anon_sym_QMARK, + ACTIONS(2200), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239667,16 +242020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32991] = 6, + [33134] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4859), 1, - anon_sym_is, - STATE(2217), 1, + ACTIONS(4808), 1, + anon_sym_LT, + ACTIONS(4812), 1, + anon_sym_DOT, + STATE(2219), 1, sym_comment, - ACTIONS(4855), 13, + STATE(2350), 1, + sym_type_arguments, + ACTIONS(4810), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239687,10 +242044,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(4857), 32, + ACTIONS(4229), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239702,7 +242058,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, @@ -239723,14 +242078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33053] = 5, + [33200] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2218), 1, + STATE(2220), 1, sym_comment, - ACTIONS(1980), 13, + ACTIONS(4862), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239744,7 +242099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2030), 33, + ACTIONS(4864), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239778,14 +242133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_implements, anon_sym_is, - [33113] = 5, + [33260] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2219), 1, + ACTIONS(4866), 1, + anon_sym_is, + STATE(2221), 1, sym_comment, - ACTIONS(2205), 14, + ACTIONS(4858), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239799,8 +242156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2207), 32, + ACTIONS(4860), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239833,20 +242189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33173] = 8, + [33322] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(4861), 1, - anon_sym_DOT, - STATE(2220), 1, + ACTIONS(4814), 1, + anon_sym_is, + STATE(2222), 1, sym_comment, - STATE(2502), 1, - sym_statement_block, - ACTIONS(2067), 13, + ACTIONS(4868), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239860,76 +242212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2071), 30, - sym__automatic_semicolon, + ACTIONS(4870), 32, 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, - [33239] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4847), 1, anon_sym_LBRACE, - ACTIONS(4863), 1, - anon_sym_DOT, - STATE(2221), 1, - sym_comment, - STATE(2502), 1, - sym_statement_block, - ACTIONS(2067), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2071), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -239948,22 +242243,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [33305] = 8, + anon_sym_extends, + anon_sym_implements, + [33384] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - STATE(2222), 1, + ACTIONS(4814), 1, + anon_sym_is, + STATE(2223), 1, sym_comment, - STATE(2441), 2, - sym_template_string, - sym_arguments, - ACTIONS(4865), 13, + ACTIONS(4872), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239977,12 +242268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 29, + ACTIONS(4874), 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, @@ -240005,16 +242297,18 @@ 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, - [33371] = 5, + [33446] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2223), 1, + STATE(2224), 1, sym_comment, - ACTIONS(4871), 13, + ACTIONS(4315), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240028,7 +242322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 33, + anon_sym_QMARK, + ACTIONS(4876), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240061,15 +242356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [33431] = 5, + [33506] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2224), 1, + STATE(2225), 1, sym_comment, - ACTIONS(4348), 14, + ACTIONS(1955), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240083,8 +242377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4875), 32, + ACTIONS(2037), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240117,14 +242410,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33491] = 5, + anon_sym_is, + [33566] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2225), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + STATE(2226), 1, sym_comment, - ACTIONS(2249), 14, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4878), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240138,14 +242439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2251), 32, + ACTIONS(4880), 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, @@ -240168,22 +242467,20 @@ 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, - [33551] = 7, + [33632] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4797), 1, - anon_sym_LT, - STATE(2226), 1, + ACTIONS(4884), 1, + sym__automatic_semicolon, + STATE(2227), 1, sym_comment, - STATE(2371), 1, - sym_type_arguments, - ACTIONS(4855), 12, + ACTIONS(2090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240194,9 +242491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4857), 32, + ACTIONS(2258), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240227,20 +242525,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, - [33615] = 7, + [33696] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4877), 1, - sym__automatic_semicolon, - STATE(2227), 1, + STATE(2228), 1, sym_comment, - ACTIONS(2057), 13, + ACTIONS(3267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240254,7 +242547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2113), 31, + ACTIONS(3459), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240285,264 +242578,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33679] = 34, + [33755] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2228), 1, + STATE(2229), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4883), 5, + ACTIONS(4890), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [33796] = 34, + [33872] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + STATE(2226), 1, sym_type_arguments, - STATE(2229), 1, + STATE(2230), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4927), 5, + ACTIONS(4934), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [33913] = 34, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [33979] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4938), 1, anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2230), 1, + STATE(2231), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4936), 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(4934), 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, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4929), 5, + anon_sym_satisfies, + [34066] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2232), 1, + sym_comment, + ACTIONS(4941), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4943), 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, - [34030] = 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_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [34125] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2231), 1, + ACTIONS(4949), 1, + anon_sym_DOT, + STATE(2233), 1, sym_comment, - ACTIONS(4931), 13, + ACTIONS(4945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240556,7 +242886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 32, + ACTIONS(4947), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240568,7 +242898,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, @@ -240589,389 +242918,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34089] = 5, + [34186] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2232), 1, - sym_comment, - ACTIONS(4935), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4937), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 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(4902), 1, + anon_sym_GT_GT, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34148] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(4947), 1, - anon_sym_extends, - STATE(2233), 1, + ACTIONS(4918), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2234), 1, sym_comment, - ACTIONS(4939), 11, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 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(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [34213] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2234), 1, - sym_comment, - ACTIONS(4949), 13, - anon_sym_STAR, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 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(4951), 32, + ACTIONS(4934), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34272] = 21, + [34285] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4895), 1, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4907), 1, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(4953), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, STATE(2235), 1, sym_comment, - STATE(6286), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + STATE(7186), 1, + sym_type_annotation, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4921), 2, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 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(4953), 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, + ACTIONS(4920), 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, - [34363] = 5, + [34410] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, STATE(2236), 1, sym_comment, - ACTIONS(4957), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4959), 32, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34422] = 34, + [34511] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, STATE(2237), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4961), 5, + ACTIONS(4934), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [34539] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [34614] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, - sym__automatic_semicolon, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4938), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, STATE(2238), 1, sym_comment, - ACTIONS(2109), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -240980,52 +243275,67 @@ 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(2111), 31, + ACTIONS(4934), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [34600] = 5, + [34699] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4938), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, STATE(2239), 1, sym_comment, - ACTIONS(4949), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -241034,50 +243344,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4951), 32, + ACTIONS(4934), 18, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34659] = 5, + [34786] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2240), 1, sym_comment, - ACTIONS(4965), 13, + ACTIONS(4955), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241091,7 +243386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4967), 32, + ACTIONS(4957), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241124,14 +243419,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34718] = 5, + [34845] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4966), 1, + anon_sym_RBRACE, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(4973), 1, + anon_sym_readonly, STATE(2241), 1, sym_comment, - ACTIONS(4969), 13, + STATE(3529), 1, + sym_override_modifier, + STATE(3892), 1, + sym__property_name, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [34940] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2242), 1, + sym_comment, + ACTIONS(4858), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241145,7 +243512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 32, + ACTIONS(4860), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241178,136 +243545,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34777] = 5, + [34999] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2242), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2243), 1, sym_comment, - ACTIONS(4973), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4975), 32, + ACTIONS(4934), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [34836] = 5, + [35094] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2243), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4936), 1, + anon_sym_BANG, + STATE(2226), 1, + sym_type_arguments, + STATE(2244), 1, sym_comment, - ACTIONS(4977), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4979), 32, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 9, 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, - [34895] = 5, + [35203] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2244), 1, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_PIPE, + ACTIONS(4985), 1, + anon_sym_extends, + STATE(2245), 1, sym_comment, - ACTIONS(4981), 13, + ACTIONS(4977), 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(4983), 32, + ACTIONS(4979), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241338,76 +243752,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34954] = 5, + [35268] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2245), 1, - sym_comment, - ACTIONS(4969), 13, - anon_sym_STAR, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, + ACTIONS(4906), 1, anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2246), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4987), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [35385] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2247), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [35013] = 5, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4989), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [35502] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2246), 1, + ACTIONS(4981), 1, + anon_sym_AMP, + STATE(2248), 1, sym_comment, - ACTIONS(4985), 13, + ACTIONS(4991), 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, @@ -241415,7 +243941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4987), 32, + ACTIONS(4993), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241448,21 +243974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35072] = 6, + [35563] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - STATE(2247), 1, + STATE(2249), 1, sym_comment, - ACTIONS(4989), 12, + ACTIONS(4995), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -241470,7 +243995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4991), 32, + ACTIONS(4997), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241503,14 +244028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35133] = 5, + [35622] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2248), 1, + ACTIONS(4884), 1, + sym__automatic_semicolon, + STATE(2250), 1, sym_comment, - ACTIONS(4993), 13, + ACTIONS(2090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241524,7 +244051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 32, + ACTIONS(2258), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241555,455 +244082,563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35192] = 7, + [35683] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2249), 1, - sym_comment, - STATE(2475), 1, - sym_arguments, - ACTIONS(4997), 13, - anon_sym_STAR, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, + ACTIONS(4906), 1, anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2251), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4999), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4999), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [35800] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2252), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35255] = 38, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5001), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [35917] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, + ACTIONS(4244), 1, anon_sym_COLON, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, ACTIONS(5003), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2250), 1, + STATE(2253), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - STATE(7304), 1, + STATE(7219), 1, sym_type_annotation, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35380] = 5, + [36042] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2251), 1, - sym_comment, - ACTIONS(3186), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3568), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4930), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [35439] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2252), 1, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2254), 1, sym_comment, - ACTIONS(3200), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3536), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5005), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [36159] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4930), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [35498] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4877), 1, - sym__automatic_semicolon, - STATE(2253), 1, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2255), 1, sym_comment, - ACTIONS(2057), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2113), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5007), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35559] = 38, + [36276] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5005), 1, - anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2254), 1, + STATE(2256), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - STATE(7319), 1, - sym_type_annotation, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35684] = 23, + ACTIONS(5009), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [36393] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5007), 1, + ACTIONS(4959), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(5014), 1, - anon_sym_RBRACE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(5019), 1, + ACTIONS(4971), 1, anon_sym_async, - ACTIONS(5021), 1, + ACTIONS(4973), 1, anon_sym_readonly, - STATE(2255), 1, + ACTIONS(5011), 1, + anon_sym_RBRACE, + STATE(2257), 1, sym_comment, - STATE(3534), 1, + STATE(3529), 1, sym_override_modifier, - STATE(3907), 1, + STATE(3892), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(3898), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(5023), 2, + ACTIONS(4975), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4378), 18, + ACTIONS(4385), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242022,28 +244657,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [35779] = 5, + [36488] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2256), 1, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_PIPE, + ACTIONS(4985), 1, + anon_sym_extends, + STATE(2258), 1, sym_comment, - ACTIONS(5025), 13, + ACTIONS(5014), 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(5027), 32, + ACTIONS(5016), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242074,84 +244713,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35838] = 5, + [36553] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2257), 1, - sym_comment, - ACTIONS(5029), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5031), 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(4244), 1, anon_sym_COLON, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4930), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [35897] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2258), 1, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5018), 1, + anon_sym_RPAREN, + STATE(2226), 1, + sym_type_arguments, + STATE(2259), 1, sym_comment, - ACTIONS(5033), 13, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + STATE(7080), 1, + sym_type_annotation, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36678] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4981), 1, anon_sym_AMP, + ACTIONS(4983), 1, anon_sym_PIPE, + ACTIONS(4985), 1, + anon_sym_extends, + STATE(2260), 1, + sym_comment, + ACTIONS(5020), 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(5035), 32, + ACTIONS(5022), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242182,222 +244857,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35956] = 38, + [36743] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(3459), 1, + anon_sym_extends, + STATE(2261), 1, + sym_comment, + ACTIONS(5024), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5027), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5037), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, - STATE(2259), 1, - sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, - sym_optional_chain, - STATE(7070), 1, - sym_type_annotation, - ACTIONS(4879), 2, + ACTIONS(2092), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36081] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(4793), 1, + ACTIONS(2098), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, - STATE(2260), 1, - sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, - sym_optional_chain, - STATE(7344), 1, - sym_type_annotation, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36206] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36810] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4815), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4819), 1, - anon_sym_QMARK_DOT, - STATE(2261), 1, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(4973), 1, + anon_sym_readonly, + ACTIONS(5030), 1, + anon_sym_RBRACE, + STATE(2262), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(2153), 13, + STATE(3529), 1, + sym_override_modifier, + STATE(3892), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [36905] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5035), 1, + anon_sym_EQ, + ACTIONS(5045), 1, + anon_sym_extends, + STATE(2263), 1, + sym_comment, + ACTIONS(5039), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5042), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5033), 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(2155), 28, + ACTIONS(5037), 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_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -242416,97 +245046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36273] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2262), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5041), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36390] = 5, + [36972] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2263), 1, + ACTIONS(5047), 1, + sym__automatic_semicolon, + STATE(2264), 1, sym_comment, - ACTIONS(5043), 13, + ACTIONS(2244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242520,7 +245069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5045), 32, + ACTIONS(2248), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242551,16 +245100,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, - [36449] = 5, + [37033] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2264), 1, + STATE(2265), 1, sym_comment, - ACTIONS(4855), 13, + ACTIONS(5049), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242574,7 +245122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4857), 32, + ACTIONS(5051), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242607,101 +245155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36508] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5047), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, - STATE(2265), 1, - sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, - sym_optional_chain, - STATE(7392), 1, - sym_type_annotation, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36633] = 5, + [37092] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2266), 1, sym_comment, - ACTIONS(5049), 13, + ACTIONS(5053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242715,7 +245176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5051), 32, + ACTIONS(5055), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242748,14 +245209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36692] = 5, + [37151] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2267), 1, sym_comment, - ACTIONS(4851), 13, + ACTIONS(5057), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242769,7 +245230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4853), 32, + ACTIONS(5059), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242802,101 +245263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36751] = 38, + [37210] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, STATE(2268), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, - sym_optional_chain, - STATE(7409), 1, - sym_type_annotation, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36876] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2269), 1, - sym_comment, - ACTIONS(5055), 13, + ACTIONS(5049), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242910,7 +245284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 32, + ACTIONS(5051), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242943,14 +245317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36935] = 5, + [37269] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2270), 1, + STATE(2269), 1, sym_comment, - ACTIONS(5059), 13, + ACTIONS(5061), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242964,7 +245338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 32, + ACTIONS(5063), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242997,16 +245371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36994] = 6, + [37328] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5063), 1, - anon_sym_LBRACK, - STATE(2271), 1, + STATE(2270), 1, sym_comment, - ACTIONS(5059), 13, + ACTIONS(5061), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243020,7 +245392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 31, + ACTIONS(5063), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243030,6 +245402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -243052,33 +245425,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37055] = 15, + [37387] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, ACTIONS(5069), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2272), 1, + STATE(2271), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, ACTIONS(5065), 12, @@ -243094,7 +245464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5067), 21, + ACTIONS(5067), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -243115,69 +245485,104 @@ 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, - [37134] = 5, + [37464] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2273), 1, - sym_comment, - ACTIONS(5072), 13, - anon_sym_STAR, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, + ACTIONS(4906), 1, anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5074), 32, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4951), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5072), 1, anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2226), 1, + sym_type_arguments, + STATE(2272), 1, + sym_comment, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + STATE(7172), 1, + sym_type_annotation, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 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(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [37193] = 5, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37589] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2274), 1, + STATE(2273), 1, sym_comment, - ACTIONS(5076), 13, + ACTIONS(5074), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243191,7 +245596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5078), 32, + ACTIONS(5045), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243224,30 +245629,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37252] = 6, + [37648] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, - anon_sym_EQ, - STATE(2275), 1, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_PIPE, + ACTIONS(4985), 1, + anon_sym_extends, + STATE(2274), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(5076), 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(4139), 31, + ACTIONS(5078), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243279,32 +245686,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37313] = 8, + [37713] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(4947), 1, - anon_sym_extends, - STATE(2276), 1, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_QMARK_DOT, + STATE(2275), 1, sym_comment, - ACTIONS(5080), 11, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(2304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5082), 31, + ACTIONS(2306), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243314,10 +245725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -243336,111 +245744,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37378] = 34, + [37780] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2277), 1, + STATE(2276), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5084), 5, + ACTIONS(5080), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [37495] = 5, + [37897] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2278), 1, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_PIPE, + ACTIONS(4985), 1, + anon_sym_extends, + STATE(2277), 1, sym_comment, - ACTIONS(5086), 13, + ACTIONS(5082), 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(5088), 32, + ACTIONS(5084), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243471,45 +245883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [37554] = 18, + [37962] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5094), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2279), 1, + ACTIONS(4860), 1, + anon_sym_extends, + STATE(2278), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5090), 11, + ACTIONS(5082), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -243518,15 +245904,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(5092), 19, + ACTIONS(5084), 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, @@ -243540,14 +245934,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [37639] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38023] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2279), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5086), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [38140] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5092), 1, + anon_sym_QMARK, + ACTIONS(5094), 1, + anon_sym_extends, STATE(2280), 1, sym_comment, - ACTIONS(5097), 13, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243561,7 +246047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 32, + ACTIONS(5090), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243569,7 +246055,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, @@ -243592,16 +246077,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, - [37698] = 5, + [38203] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2281), 1, sym_comment, - ACTIONS(5097), 13, + ACTIONS(5096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243615,7 +246099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 32, + ACTIONS(5098), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243648,14 +246132,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37757] = 5, + [38262] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4938), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, STATE(2282), 1, sym_comment, - ACTIONS(5097), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243666,50 +246174,37 @@ 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(5099), 32, + ACTIONS(4934), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [37816] = 5, + [38343] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2283), 1, sym_comment, - ACTIONS(5101), 13, + ACTIONS(5100), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243723,7 +246218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 32, + ACTIONS(5102), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243756,18 +246251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37875] = 7, + [38402] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_LBRACE, STATE(2284), 1, sym_comment, - STATE(2533), 1, - sym_statement_block, - ACTIONS(2067), 13, + ACTIONS(5104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243781,9 +246272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2071), 30, + ACTIONS(5106), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -243811,21 +246303,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, - [37938] = 8, + [38461] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_LBRACE, - ACTIONS(5107), 1, - anon_sym_DOT, STATE(2285), 1, sym_comment, - STATE(2533), 1, - sym_statement_block, - ACTIONS(2067), 13, + ACTIONS(5108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243839,9 +246326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2071), 29, + ACTIONS(5110), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -243850,6 +246338,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, @@ -243868,15 +246357,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, - [38003] = 5, + [38520] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2286), 1, sym_comment, - ACTIONS(5101), 13, + ACTIONS(5112), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243890,7 +246380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 32, + ACTIONS(5114), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243923,14 +246413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38062] = 5, + [38579] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2287), 1, sym_comment, - ACTIONS(5101), 13, + ACTIONS(5116), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243944,7 +246434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 32, + ACTIONS(5118), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243977,103 +246467,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38121] = 34, + [38638] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, STATE(2288), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(5120), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5109), 5, + ACTIONS(5122), 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, - [38238] = 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_extends, + anon_sym_implements, + [38697] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_LBRACE, - ACTIONS(5111), 1, - anon_sym_DOT, STATE(2289), 1, sym_comment, - STATE(2533), 1, - sym_statement_block, - ACTIONS(2067), 13, + ACTIONS(5124), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244087,9 +246542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2071), 29, + ACTIONS(5126), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -244098,6 +246554,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, @@ -244116,15 +246573,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, - [38303] = 5, + [38756] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2290), 1, sym_comment, - ACTIONS(4939), 13, + ACTIONS(5128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244138,7 +246596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 32, + ACTIONS(5130), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244171,14 +246629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38362] = 5, + [38815] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2291), 1, sym_comment, - ACTIONS(5113), 13, + ACTIONS(5120), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244192,7 +246650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5115), 32, + ACTIONS(5122), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244225,208 +246683,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38421] = 38, + [38874] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5117), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, STATE(2292), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, - sym_optional_chain, - STATE(7313), 1, - sym_type_annotation, - ACTIONS(4879), 2, + ACTIONS(3251), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [38546] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(3411), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4817), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, + anon_sym_extends, + anon_sym_implements, + [38933] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_PIPE, + ACTIONS(4985), 1, + anon_sym_extends, STATE(2293), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(5132), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5119), 5, + ACTIONS(5134), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - [38663] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 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(5121), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2294), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38998] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2294), 1, + sym_comment, + ACTIONS(3253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244437,37 +246812,50 @@ 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(4953), 20, + ACTIONS(3449), 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, - [38744] = 5, + anon_sym_extends, + anon_sym_implements, + [39057] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2295), 1, sym_comment, - ACTIONS(5113), 13, + ACTIONS(5128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244481,7 +246869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5115), 32, + ACTIONS(5130), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244514,14 +246902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38803] = 5, + [39116] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2296), 1, sym_comment, - ACTIONS(4843), 13, + ACTIONS(5136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244535,7 +246923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4845), 32, + ACTIONS(5138), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244568,123 +246956,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38862] = 34, + [39175] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, STATE(2297), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(5140), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5124), 5, + ACTIONS(5142), 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, - [38979] = 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_extends, + anon_sym_implements, + [39234] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4857), 1, - anon_sym_extends, STATE(2298), 1, sym_comment, - ACTIONS(5126), 13, + ACTIONS(5144), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5146), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(5128), 31, + ACTIONS(4144), 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, @@ -244706,14 +247066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39040] = 5, + [39297] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2299), 1, sym_comment, - ACTIONS(5113), 13, + ACTIONS(5136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244727,7 +247087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5115), 32, + ACTIONS(5138), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244760,32 +247120,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39099] = 8, + [39356] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(4947), 1, - anon_sym_extends, + ACTIONS(5152), 1, + anon_sym_DOT, STATE(2300), 1, sym_comment, - ACTIONS(5126), 11, + ACTIONS(5148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5128), 31, + ACTIONS(5150), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244797,7 +247155,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, @@ -244816,98 +247173,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [39164] = 34, + [39417] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2222), 1, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5155), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, STATE(2301), 1, sym_comment, - STATE(6286), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + STATE(7152), 1, + sym_type_annotation, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5130), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [39281] = 5, + [39542] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2302), 1, sym_comment, - ACTIONS(5132), 13, + ACTIONS(5140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244921,7 +247283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 32, + ACTIONS(5142), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244954,155 +247316,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39340] = 34, + [39601] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, STATE(2303), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5136), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [39457] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4936), 7, anon_sym_BANG, - STATE(2222), 1, - sym_type_arguments, - STATE(2304), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 11, + ACTIONS(4934), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -245112,415 +247378,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [39562] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2305), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5138), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [39679] = 34, + anon_sym_satisfies, + [39692] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5157), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2306), 1, + STATE(2304), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(5148), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5140), 5, + ACTIONS(5150), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - [39796] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, + anon_sym_RBRACK, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(2222), 1, - sym_type_arguments, - STATE(2307), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [39903] = 34, + anon_sym_extends, + anon_sym_implements, + [39753] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2308), 1, + STATE(2305), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5142), 5, + ACTIONS(5160), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [40020] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5021), 1, - anon_sym_readonly, - ACTIONS(5144), 1, - anon_sym_RBRACE, - STATE(2309), 1, - sym_comment, - STATE(3534), 1, - sym_override_modifier, - STATE(3907), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [40115] = 5, + [39870] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2310), 1, + STATE(2306), 1, sym_comment, - ACTIONS(2085), 13, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245534,19 +247545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2087), 32, - sym__automatic_semicolon, + ACTIONS(5164), 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, @@ -245566,15 +247576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [40174] = 5, + anon_sym_extends, + anon_sym_implements, + [39929] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2311), 1, + STATE(2307), 1, sym_comment, - ACTIONS(5147), 13, + ACTIONS(5166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245588,7 +247599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5149), 32, + ACTIONS(5168), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245621,14 +247632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40233] = 5, + [39988] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2312), 1, + STATE(2308), 1, sym_comment, - ACTIONS(5151), 13, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245642,7 +247653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5153), 32, + ACTIONS(5164), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245675,114 +247686,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40292] = 19, + [40047] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5121), 1, + ACTIONS(4918), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + STATE(2226), 1, sym_type_arguments, - STATE(2313), 1, + STATE(2309), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4905), 2, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4921), 2, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 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, + ACTIONS(4920), 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, - [40379] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5159), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2314), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5155), 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(5157), 23, + ACTIONS(4934), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -245792,28 +247761,16 @@ 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_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [40456] = 5, + [40152] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2315), 1, + STATE(2310), 1, sym_comment, - ACTIONS(2245), 13, + ACTIONS(5166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245827,19 +247784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 32, - sym__automatic_semicolon, + ACTIONS(5168), 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, @@ -245859,164 +247815,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [40515] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2316), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4953), 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, - [40614] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2317), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 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, - [40715] = 5, + anon_sym_extends, + anon_sym_implements, + [40211] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2318), 1, + STATE(2311), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246030,7 +247838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 32, + ACTIONS(5172), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246063,14 +247871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40774] = 5, + [40270] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2319), 1, + STATE(2312), 1, sym_comment, - ACTIONS(5166), 13, + ACTIONS(4868), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246084,7 +247892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 32, + ACTIONS(4870), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246117,14 +247925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40833] = 5, + [40329] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2320), 1, + STATE(2313), 1, sym_comment, - ACTIONS(5170), 13, + ACTIONS(5174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246138,7 +247946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5172), 32, + ACTIONS(5176), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246171,90 +247979,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40892] = 27, + [40388] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4895), 1, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4907), 1, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5178), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, - STATE(2321), 1, + STATE(2314), 1, sym_comment, - STATE(6286), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + STATE(7439), 1, + sym_type_annotation, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [40995] = 5, + [40513] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2322), 1, + STATE(2315), 1, sym_comment, - ACTIONS(5174), 13, + ACTIONS(5180), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246268,7 +248087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 32, + ACTIONS(5182), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246301,32 +248120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41054] = 8, + [40572] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(4947), 1, - anon_sym_extends, - STATE(2323), 1, + STATE(2316), 1, sym_comment, - ACTIONS(5178), 11, + ACTIONS(5184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5180), 31, + ACTIONS(5186), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246357,15 +248172,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, - [41119] = 5, + [40631] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2324), 1, + STATE(2317), 1, sym_comment, - ACTIONS(5174), 13, + ACTIONS(5188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246379,7 +248195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 32, + ACTIONS(5190), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246412,43 +248228,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41178] = 18, + [40690] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5121), 1, + ACTIONS(4918), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5192), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, - STATE(2325), 1, + STATE(2318), 1, sym_comment, - STATE(6286), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + STATE(7147), 1, + sym_type_annotation, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4921), 2, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 10, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40815] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2319), 1, + sym_comment, + ACTIONS(4872), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -246457,42 +248332,57 @@ 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(4953), 19, + ACTIONS(4874), 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, - [41263] = 8, + anon_sym_extends, + anon_sym_implements, + [40874] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, + ACTIONS(4981), 1, anon_sym_AMP, - ACTIONS(4945), 1, + ACTIONS(4983), 1, anon_sym_PIPE, - ACTIONS(4947), 1, + ACTIONS(4985), 1, anon_sym_extends, - STATE(2326), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5182), 11, + ACTIONS(5194), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246504,7 +248394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5184), 31, + ACTIONS(5196), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246536,14 +248426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41328] = 5, + [40939] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2327), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5186), 13, + ACTIONS(5198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246557,7 +248447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 32, + ACTIONS(5200), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246590,45 +248480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41387] = 19, + [40998] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5121), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2328), 1, + STATE(2322), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(5076), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -246637,43 +248498,57 @@ 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(4953), 18, + ACTIONS(5078), 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, - [41474] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [41057] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5194), 1, - anon_sym_DOT, - STATE(2329), 1, + ACTIONS(4981), 1, + anon_sym_AMP, + STATE(2323), 1, sym_comment, - ACTIONS(5190), 13, + ACTIONS(5202), 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, @@ -246681,7 +248556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 31, + ACTIONS(5204), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246693,6 +248568,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, @@ -246713,14 +248589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41535] = 5, + [41118] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2330), 1, + STATE(2324), 1, sym_comment, - ACTIONS(5186), 13, + ACTIONS(5146), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246734,7 +248610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 32, + ACTIONS(5144), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246767,16 +248643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41594] = 6, + [41177] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5197), 1, - anon_sym_DOT, - STATE(2331), 1, + STATE(2325), 1, sym_comment, - ACTIONS(5190), 13, + ACTIONS(5206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246790,7 +248664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 31, + ACTIONS(5208), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246802,6 +248676,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, @@ -246822,60 +248697,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41655] = 23, + [41236] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5007), 1, + ACTIONS(4959), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(5019), 1, + ACTIONS(4971), 1, anon_sym_async, - ACTIONS(5021), 1, + ACTIONS(4973), 1, anon_sym_readonly, - ACTIONS(5200), 1, + ACTIONS(5210), 1, anon_sym_RBRACE, - STATE(2332), 1, + STATE(2326), 1, sym_comment, - STATE(3534), 1, + STATE(3529), 1, sym_override_modifier, - STATE(3907), 1, + STATE(3892), 1, sym__property_name, - STATE(5720), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(5721), 1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(5023), 2, + ACTIONS(4975), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4378), 18, + ACTIONS(4385), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -246894,43 +248769,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41750] = 9, + [41331] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3568), 1, - anon_sym_extends, - STATE(2333), 1, + STATE(2327), 1, sym_comment, - ACTIONS(5203), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5206), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2059), 10, + ACTIONS(5213), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 28, + ACTIONS(5215), 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, @@ -246951,15 +248821,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, - [41817] = 5, + [41390] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2334), 1, + STATE(2328), 1, sym_comment, - ACTIONS(5186), 13, + ACTIONS(5217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246973,7 +248844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 32, + ACTIONS(5219), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247006,14 +248877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41876] = 5, + [41449] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2335), 1, + STATE(2329), 1, sym_comment, - ACTIONS(5209), 13, + ACTIONS(5221), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247027,7 +248898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 32, + ACTIONS(5223), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247060,14 +248931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41935] = 5, + [41508] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2336), 1, + STATE(2330), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247081,7 +248952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 32, + ACTIONS(5227), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247114,86 +248985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41994] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5021), 1, - anon_sym_readonly, - ACTIONS(5217), 1, - anon_sym_RBRACE, - STATE(2337), 1, - sym_comment, - STATE(3534), 1, - sym_override_modifier, - STATE(3907), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [42089] = 5, + [41567] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2338), 1, + STATE(2331), 1, sym_comment, - ACTIONS(5209), 13, + ACTIONS(5229), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247207,7 +249006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 32, + ACTIONS(5231), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247240,14 +249039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42148] = 5, + [41626] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2339), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + STATE(2332), 1, sym_comment, - ACTIONS(5220), 13, + STATE(2501), 1, + sym_arguments, + ACTIONS(5233), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247261,13 +249064,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5222), 32, + ACTIONS(5235), 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, @@ -247292,16 +249094,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, - [42207] = 5, + [41689] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2340), 1, + STATE(2333), 1, sym_comment, - ACTIONS(5220), 13, + ACTIONS(5237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247315,7 +249116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5222), 32, + ACTIONS(5239), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247348,14 +249149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42266] = 5, + [41748] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2341), 1, + STATE(2334), 1, sym_comment, - ACTIONS(5220), 13, + ACTIONS(5241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247369,7 +249170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5222), 32, + ACTIONS(5243), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247402,43 +249203,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42325] = 9, + [41807] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - ACTIONS(5236), 1, - anon_sym_extends, - STATE(2342), 1, + STATE(2335), 1, sym_comment, - ACTIONS(5230), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5233), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5224), 10, + ACTIONS(5245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 28, + ACTIONS(5247), 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, @@ -247459,42 +249255,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, - [42392] = 7, + [41866] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2343), 1, + STATE(2336), 1, sym_comment, - ACTIONS(4965), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4967), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4135), 10, + ACTIONS(5249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 29, + ACTIONS(5251), 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, @@ -247515,15 +249309,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, - [42455] = 5, + [41925] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2344), 1, + STATE(2337), 1, sym_comment, - ACTIONS(5238), 13, + ACTIONS(5253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247537,7 +249332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5240), 32, + ACTIONS(5255), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247570,14 +249365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42514] = 5, + [41984] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2345), 1, + STATE(2338), 1, sym_comment, - ACTIONS(5242), 13, + ACTIONS(5225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247591,7 +249386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5244), 32, + ACTIONS(5227), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247624,14 +249419,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42573] = 5, + [42043] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2346), 1, + ACTIONS(5257), 1, + anon_sym_LBRACE, + ACTIONS(5259), 1, + anon_sym_DOT, + STATE(2339), 1, sym_comment, - ACTIONS(5174), 13, + STATE(2545), 1, + sym_statement_block, + ACTIONS(2068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247645,10 +249446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 32, + ACTIONS(2074), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -247657,7 +249457,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, @@ -247676,88 +249475,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, - [42632] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2347), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 14, - 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_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [42727] = 5, + [42108] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2348), 1, + STATE(2340), 1, sym_comment, - ACTIONS(3210), 13, + ACTIONS(5225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247771,7 +249497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3420), 32, + ACTIONS(5227), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247804,176 +249530,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42786] = 30, + [42167] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5257), 1, + anon_sym_LBRACE, + ACTIONS(5261), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(2222), 1, - sym_type_arguments, - STATE(2349), 1, + STATE(2341), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, + STATE(2545), 1, + sym_statement_block, + ACTIONS(2068), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 9, + ACTIONS(2074), 29, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [42895] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + anon_sym_RBRACK, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2350), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5246), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [43012] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42232] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2351), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(2156), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247987,18 +249608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 32, + ACTIONS(2158), 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, @@ -248018,37 +249640,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43071] = 8, + anon_sym_PIPE_RBRACE, + [42291] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(4947), 1, - anon_sym_extends, - STATE(2352), 1, + ACTIONS(5257), 1, + anon_sym_LBRACE, + STATE(2343), 1, sym_comment, - ACTIONS(5248), 11, + STATE(2545), 1, + sym_statement_block, + ACTIONS(2068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5250), 31, + ACTIONS(2074), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -248077,14 +249697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43136] = 5, + [42354] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2353), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(5263), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248098,7 +249718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 32, + ACTIONS(5265), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248131,14 +249751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43195] = 5, + [42413] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2354), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5256), 13, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248152,7 +249772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5258), 32, + ACTIONS(5269), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248185,101 +249805,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43254] = 38, + [42472] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, + ACTIONS(4244), 1, anon_sym_COLON, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, - ACTIONS(5260), 1, + ACTIONS(5271), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2346), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - STATE(7414), 1, + STATE(7360), 1, sym_type_annotation, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [43379] = 5, + [42597] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2356), 1, + STATE(2347), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248293,7 +249913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5264), 32, + ACTIONS(5269), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248326,14 +249946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43438] = 5, + [42656] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2357), 1, + ACTIONS(4208), 1, + anon_sym_EQ, + STATE(2348), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248347,7 +249969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 32, + ACTIONS(4144), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248378,16 +250000,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43497] = 5, + [42717] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2358), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5277), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2349), 1, sym_comment, - ACTIONS(5270), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5273), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248398,23 +250041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 32, + ACTIONS(5275), 21, 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, @@ -248428,20 +250064,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, - anon_sym_implements, - [43556] = 5, + [42796] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2359), 1, + STATE(2350), 1, sym_comment, - ACTIONS(5274), 13, + ACTIONS(5280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248455,7 +250086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5276), 32, + ACTIONS(5282), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248488,21 +250119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43615] = 6, + [42855] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - STATE(2360), 1, + STATE(2351), 1, sym_comment, - ACTIONS(5278), 12, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -248510,7 +250140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 32, + ACTIONS(5286), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248543,14 +250173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43676] = 5, + [42914] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2361), 1, + STATE(2352), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(2120), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248564,18 +250194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 32, + ACTIONS(2122), 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, @@ -248595,34 +250226,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43735] = 8, + anon_sym_PIPE_RBRACE, + [42973] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(4947), 1, - anon_sym_extends, - STATE(2362), 1, + STATE(2353), 1, sym_comment, - ACTIONS(5282), 11, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5284), 31, + ACTIONS(5286), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248653,15 +250279,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, - [43800] = 5, + [43032] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2363), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248675,7 +250302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 32, + ACTIONS(5290), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248708,14 +250335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43859] = 5, + [43091] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2364), 1, + ACTIONS(5292), 1, + anon_sym_LBRACK, + STATE(2355), 1, sym_comment, - ACTIONS(3232), 13, + ACTIONS(5288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248729,7 +250358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3448), 32, + ACTIONS(5290), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248739,7 +250368,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, @@ -248762,30 +250390,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43918] = 6, + [43152] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5294), 1, - anon_sym_DOT, - STATE(2365), 1, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_PIPE, + ACTIONS(4985), 1, + anon_sym_extends, + STATE(2356), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5294), 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(5292), 31, + ACTIONS(5296), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248797,6 +250427,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, @@ -248815,16 +250446,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, - [43979] = 5, + [43217] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2366), 1, + STATE(2357), 1, sym_comment, - ACTIONS(5296), 13, + ACTIONS(5298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248838,7 +250468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5236), 32, + ACTIONS(5300), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248871,14 +250501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44038] = 5, + [43276] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2367), 1, + STATE(2358), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248892,7 +250522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 32, + ACTIONS(5286), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248925,14 +250555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44097] = 5, + [43335] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2368), 1, + STATE(2359), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248946,7 +250576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5300), 32, + ACTIONS(5269), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248979,12 +250609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44156] = 5, + [43394] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2369), 1, + STATE(2360), 1, sym_comment, ACTIONS(5302), 13, anon_sym_STAR, @@ -249033,155 +250663,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44215] = 38, + [43453] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5306), 1, - anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2370), 1, + STATE(2361), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - STATE(7081), 1, - sym_type_annotation, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44340] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2371), 1, - sym_comment, - ACTIONS(5308), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5310), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5306), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44399] = 5, + [43570] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2372), 1, + STATE(2362), 1, sym_comment, - ACTIONS(5312), 13, + ACTIONS(5092), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249195,7 +250767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5314), 32, + ACTIONS(5094), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249228,147 +250800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44458] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, + [43629] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5021), 1, - anon_sym_readonly, - ACTIONS(5316), 1, - anon_sym_RBRACE, - STATE(2373), 1, - sym_comment, - STATE(3534), 1, - sym_override_modifier, - STATE(3907), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [44553] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(4947), 1, - anon_sym_extends, - STATE(2374), 1, - sym_comment, - ACTIONS(5312), 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(5314), 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, - [44618] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4981), 1, - anon_sym_QMARK, - ACTIONS(4983), 1, - anon_sym_extends, - STATE(2375), 1, + STATE(2363), 1, sym_comment, - ACTIONS(5319), 13, + ACTIONS(3249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249382,7 +250821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 30, + ACTIONS(3409), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249390,6 +250829,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, @@ -249412,15 +250852,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, - [44681] = 5, + [43688] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2376), 1, + STATE(2364), 1, sym_comment, - ACTIONS(5323), 13, + ACTIONS(5308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249434,7 +250875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5325), 32, + ACTIONS(5310), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249467,14 +250908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44740] = 5, + [43747] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2377), 1, + STATE(2365), 1, sym_comment, - ACTIONS(5327), 13, + ACTIONS(5312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249488,7 +250929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5329), 32, + ACTIONS(5314), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249521,16 +250962,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44799] = 6, + [43806] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5063), 1, - anon_sym_LBRACK, - STATE(2378), 1, + STATE(2366), 1, sym_comment, - ACTIONS(5331), 13, + ACTIONS(5316), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249544,7 +250983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5333), 31, + ACTIONS(5318), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249554,6 +250993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -249576,88 +251016,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44860] = 6, + [43865] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5339), 1, - anon_sym_extends, - STATE(2379), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2367), 1, sym_comment, - ACTIONS(5335), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5320), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [43982] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, + ACTIONS(4906), 1, anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2368), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5337), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5322), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [44099] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5324), 1, + anon_sym_RPAREN, + STATE(2226), 1, + sym_type_arguments, + STATE(2369), 1, + sym_comment, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + STATE(7274), 1, + sym_type_annotation, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [44921] = 8, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44224] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5061), 1, - anon_sym_extends, - ACTIONS(5063), 1, - anon_sym_LBRACK, - STATE(2380), 1, + STATE(2370), 1, sym_comment, - ACTIONS(5059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5341), 11, + ACTIONS(3247), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5343), 30, + ACTIONS(3407), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249667,6 +251300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -249687,46 +251321,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [44986] = 8, + [44283] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(4947), 1, - anon_sym_extends, - STATE(2381), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5330), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2371), 1, sym_comment, - ACTIONS(5345), 11, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5326), 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(5347), 31, + ACTIONS(5328), 19, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -249740,33 +251390,33 @@ 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, - [45051] = 5, + [44368] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2382), 1, + ACTIONS(5290), 1, + anon_sym_extends, + ACTIONS(5292), 1, + anon_sym_LBRACK, + STATE(2372), 1, sym_comment, - ACTIONS(3222), 13, + ACTIONS(5288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5333), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 32, + ACTIONS(5335), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249776,7 +251426,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, @@ -249797,16 +251446,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [45110] = 5, + [44433] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2383), 1, + ACTIONS(5341), 1, + anon_sym_extends, + STATE(2373), 1, sym_comment, - ACTIONS(5256), 13, + ACTIONS(5337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249820,7 +251470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5258), 32, + ACTIONS(5339), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249851,16 +251501,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [45169] = 5, + [44494] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2384), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2374), 1, sym_comment, - ACTIONS(5349), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5343), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [44611] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2375), 1, + sym_comment, + ACTIONS(5132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249874,7 +251606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5351), 32, + ACTIONS(5134), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249907,14 +251639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [45228] = 5, + [44670] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2385), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5353), 13, + ACTIONS(5345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249928,7 +251660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5355), 32, + ACTIONS(5347), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249961,14 +251693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [45287] = 5, + [44729] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2386), 1, + STATE(2377), 1, sym_comment, - ACTIONS(5302), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249982,7 +251714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5304), 32, + ACTIONS(5351), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250015,14 +251747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [45346] = 5, + [44788] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2387), 1, + STATE(2378), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250036,7 +251768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 32, + ACTIONS(5351), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250069,14 +251801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [45405] = 5, + [44847] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2388), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5361), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250090,7 +251822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5363), 32, + ACTIONS(5351), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250123,23 +251855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [45464] = 7, + [44906] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2389), 1, + STATE(2380), 1, sym_comment, - ACTIONS(2061), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5365), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2059), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250153,12 +251876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 24, + ACTIONS(5355), 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, @@ -250178,203 +251907,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45526] = 28, + anon_sym_extends, + anon_sym_implements, + [44965] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - STATE(2390), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 10, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [45630] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2391), 1, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(4973), 1, + anon_sym_readonly, + ACTIONS(5357), 1, + anon_sym_RBRACE, + STATE(2381), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - sym__automatic_semicolon, + STATE(3529), 1, + sym_override_modifier, + STATE(3892), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45750] = 18, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [45060] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5424), 1, - anon_sym_LT, - STATE(2392), 1, + STATE(2382), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5090), 11, + ACTIONS(5353), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -250383,14 +251999,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(5092), 18, - sym__automatic_semicolon, + ACTIONS(5355), 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, @@ -250404,14 +252029,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [45834] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [45119] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2393), 1, + STATE(2383), 1, sym_comment, - ACTIONS(5427), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250425,7 +252056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5429), 31, + ACTIONS(5355), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250456,15 +252087,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, - [45892] = 5, + [45178] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2394), 1, + ACTIONS(5292), 1, + anon_sym_LBRACK, + STATE(2384), 1, sym_comment, - ACTIONS(5431), 13, + ACTIONS(5360), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250478,7 +252112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5433), 31, + ACTIONS(5362), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250488,7 +252122,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, @@ -250509,37 +252142,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, - [45950] = 15, + [45239] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5435), 1, - anon_sym_LT, - STATE(2395), 1, + STATE(2385), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5065), 12, + ACTIONS(5364), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250550,15 +252162,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(5067), 20, - sym__automatic_semicolon, + ACTIONS(5366), 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, @@ -250572,15 +252192,20 @@ 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, - [46028] = 5, + anon_sym_extends, + anon_sym_implements, + [45298] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2396), 1, + STATE(2386), 1, sym_comment, - ACTIONS(5438), 13, + ACTIONS(5217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250594,7 +252219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5440), 31, + ACTIONS(5219), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250625,15 +252250,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, - [46086] = 5, + [45357] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2397), 1, + STATE(2387), 1, sym_comment, - ACTIONS(5442), 13, + ACTIONS(5217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250647,7 +252273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5444), 31, + ACTIONS(5219), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250678,29 +252304,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [46144] = 5, + [45416] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2398), 1, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_PIPE, + ACTIONS(4985), 1, + anon_sym_extends, + STATE(2388), 1, sym_comment, - ACTIONS(2177), 13, + ACTIONS(5368), 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(2181), 31, + ACTIONS(5370), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250732,14 +252363,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46202] = 5, + [45481] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(5210), 1, + anon_sym_RBRACE, + ACTIONS(5372), 1, + anon_sym_LBRACK, + STATE(2389), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [45569] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2399), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + STATE(2390), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5320), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [45685] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2391), 1, sym_comment, - ACTIONS(2141), 13, + ACTIONS(5426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250753,7 +252534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2145), 31, + ACTIONS(5160), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250785,14 +252566,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46260] = 5, + [45743] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2400), 1, + STATE(2392), 1, sym_comment, - ACTIONS(2199), 13, + ACTIONS(5428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250806,7 +252587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2203), 31, + ACTIONS(5430), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250838,57 +252619,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46318] = 19, + [45801] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5007), 1, + ACTIONS(4959), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(5316), 1, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(5357), 1, anon_sym_RBRACE, - ACTIONS(5446), 1, + ACTIONS(5372), 1, anon_sym_LBRACK, - STATE(2401), 1, + STATE(2393), 1, sym_comment, - STATE(4686), 1, + STATE(3892), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(5448), 2, + ACTIONS(4975), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -250905,58 +252687,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46404] = 20, + [45889] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + STATE(2394), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5436), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5438), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(4934), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [45979] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5007), 1, + ACTIONS(4959), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5316), 1, + ACTIONS(5357), 1, anon_sym_RBRACE, - ACTIONS(5450), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2402), 1, + STATE(2395), 1, sym_comment, - STATE(3907), 1, + STATE(4635), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(3898), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(5023), 2, + ACTIONS(5448), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -250973,14 +252823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46492] = 5, + [46065] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2403), 1, + STATE(2396), 1, sym_comment, - ACTIONS(5452), 13, + ACTIONS(5450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250994,7 +252844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5454), 31, + ACTIONS(5452), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251026,14 +252876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46550] = 5, + [46123] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2404), 1, + STATE(2397), 1, sym_comment, - ACTIONS(5456), 13, + ACTIONS(5454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251047,7 +252897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5458), 31, + ACTIONS(5456), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251079,182 +252929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46608] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2405), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5460), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46728] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2406), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5462), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46848] = 5, + [46181] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2407), 1, + STATE(2398), 1, sym_comment, - ACTIONS(5319), 13, + ACTIONS(5458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251268,7 +252950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 31, + ACTIONS(5460), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251300,14 +252982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46906] = 5, + [46239] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2408), 1, + STATE(2399), 1, sym_comment, - ACTIONS(5464), 13, + ACTIONS(5462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251321,7 +253003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5466), 31, + ACTIONS(5464), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251353,14 +253035,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46964] = 5, + [46297] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2409), 1, + STATE(2400), 1, sym_comment, - ACTIONS(5468), 13, + ACTIONS(5466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251374,7 +253056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5470), 31, + ACTIONS(5468), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251406,264 +253088,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47022] = 34, + [46355] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2410), 1, + STATE(2401), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5142), 4, + ACTIONS(5086), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [47138] = 36, + [46471] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2411), 1, + STATE(2402), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5470), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5472), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47258] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5472), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5374), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5376), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5416), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2412), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 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(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47378] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [46529] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2413), 1, + STATE(2403), 1, sym_comment, - ACTIONS(5476), 13, + ACTIONS(5474), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251677,7 +253244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5478), 31, + ACTIONS(5476), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251709,54 +253276,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47436] = 20, + [46587] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5007), 1, + ACTIONS(4959), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(5019), 1, + ACTIONS(4966), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2404), 1, + sym_comment, + STATE(4635), 1, + sym__property_name, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(5200), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [46673] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4966), 1, anon_sym_RBRACE, - ACTIONS(5450), 1, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(5372), 1, anon_sym_LBRACK, - STATE(2414), 1, + STATE(2405), 1, sym_comment, - STATE(3907), 1, + STATE(3892), 1, sym__property_name, - STATE(5720), 1, + STATE(6195), 1, aux_sym_object_repeat1, - STATE(5721), 1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(5023), 2, + ACTIONS(4975), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -251777,14 +253411,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [47524] = 5, + [46761] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2415), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2406), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5480), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46881] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2407), 1, sym_comment, - ACTIONS(2245), 13, + ACTIONS(5482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251798,7 +253516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 31, + ACTIONS(5484), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251830,16 +253548,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47582] = 5, + [46939] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2416), 1, - sym_comment, - ACTIONS(2085), 13, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, + anon_sym_AMP_AMP, + ACTIONS(5490), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5506), 1, + sym__ternary_qmark, + STATE(2408), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5436), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5160), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [47055] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, + anon_sym_AMP_AMP, + ACTIONS(5490), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5506), 1, + sym__ternary_qmark, + STATE(2409), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5436), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4890), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [47171] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2410), 1, + sym_comment, + ACTIONS(2310), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -251851,7 +253733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2087), 31, + ACTIONS(2312), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251883,14 +253765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47640] = 5, + [47229] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2417), 1, + STATE(2411), 1, sym_comment, - ACTIONS(2079), 13, + ACTIONS(5508), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251904,7 +253786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2083), 31, + ACTIONS(5510), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251936,42 +253818,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47698] = 8, + [47287] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4853), 1, - anon_sym_extends, - STATE(2418), 1, + ACTIONS(5512), 1, + sym__automatic_semicolon, + STATE(2412), 1, sym_comment, - ACTIONS(5480), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5483), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(2090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 28, + ACTIONS(2258), 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_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -251991,15 +253871,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [47762] = 5, + anon_sym_PIPE_RBRACE, + [47347] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2419), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, + anon_sym_AMP_AMP, + ACTIONS(5490), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5506), 1, + sym__ternary_qmark, + STATE(2413), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5436), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5086), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [47463] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2414), 1, sym_comment, - ACTIONS(2099), 13, + ACTIONS(2286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252013,18 +253975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 31, + ACTIONS(2288), 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, @@ -252044,39 +254006,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [47820] = 5, + anon_sym_PIPE_RBRACE, + [47521] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2420), 1, + ACTIONS(5114), 1, + anon_sym_extends, + STATE(2415), 1, sym_comment, - ACTIONS(2091), 13, + ACTIONS(5514), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(2095), 31, + ACTIONS(4144), 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, @@ -252098,14 +254063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47878] = 5, + [47585] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2421), 1, + STATE(2416), 1, sym_comment, - ACTIONS(2169), 13, + ACTIONS(2092), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252119,7 +254086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 31, + ACTIONS(2098), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252127,7 +254094,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, @@ -252151,14 +254117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47936] = 5, + [47645] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2422), 1, + ACTIONS(5522), 1, + anon_sym_EQ, + STATE(2417), 1, sym_comment, - ACTIONS(2127), 13, + ACTIONS(5520), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252172,7 +254140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2131), 31, + ACTIONS(5524), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252180,7 +254148,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, @@ -252204,38 +254171,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47994] = 5, + [47705] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2423), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2418), 1, sym_comment, - ACTIONS(2261), 13, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5526), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47825] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2419), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47945] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4874), 1, + anon_sym_extends, + STATE(2420), 1, + sym_comment, + ACTIONS(5530), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5533), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4140), 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(2265), 31, + ACTIONS(4144), 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, @@ -252257,14 +254395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48052] = 5, + [48009] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2424), 1, + STATE(2421), 1, sym_comment, - ACTIONS(2161), 13, + ACTIONS(5536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252278,7 +254416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 31, + ACTIONS(5538), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252310,258 +254448,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48110] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [48067] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2422), 1, + sym_comment, + ACTIONS(2208), 13, anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 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(2210), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5200), 1, anon_sym_RBRACE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(2425), 1, - sym_comment, - STATE(4686), 1, - sym__property_name, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5448), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, + anon_sym_else, anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48196] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, - sym__ternary_qmark, - STATE(2426), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5516), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5512), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5109), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [48312] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5522), 1, - anon_sym_STAR, - ACTIONS(5524), 1, - anon_sym_LBRACE, - ACTIONS(5526), 1, - anon_sym_async, - ACTIONS(5528), 1, - anon_sym_readonly, - ACTIONS(5532), 1, - sym__automatic_semicolon, - STATE(2427), 1, - sym_comment, - STATE(3428), 1, - sym_statement_block, - STATE(3522), 1, - sym_override_modifier, - STATE(3809), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5530), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48400] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [48125] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5051), 1, - anon_sym_extends, - STATE(2428), 1, + STATE(2423), 1, sym_comment, - ACTIONS(5535), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(5540), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 28, + ACTIONS(5542), 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, @@ -252583,14 +254554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48464] = 5, + [48183] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2429), 1, + STATE(2424), 1, sym_comment, - ACTIONS(5541), 13, + ACTIONS(5544), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252604,7 +254575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5543), 31, + ACTIONS(5546), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252636,14 +254607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48522] = 5, + [48241] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2430), 1, + STATE(2425), 1, sym_comment, - ACTIONS(5545), 13, + ACTIONS(5548), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252657,7 +254628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5547), 31, + ACTIONS(5550), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252689,41 +254660,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48580] = 8, + [48299] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5363), 1, - anon_sym_extends, - STATE(2431), 1, + STATE(2426), 1, sym_comment, - ACTIONS(5553), 2, + ACTIONS(2094), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5552), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5556), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2092), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5549), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2098), 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, + [48361] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2427), 1, + sym_comment, + ACTIONS(5555), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5551), 28, + ACTIONS(4987), 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, @@ -252745,14 +254768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48644] = 5, + [48419] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2432), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5559), 13, + ACTIONS(5557), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252766,7 +254789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5084), 31, + ACTIONS(5559), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252798,120 +254821,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48702] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5217), 1, - anon_sym_RBRACE, - ACTIONS(5450), 1, - anon_sym_LBRACK, - STATE(2433), 1, - sym_comment, - STATE(3907), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48790] = 19, + [48477] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5007), 1, + ACTIONS(4959), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(5144), 1, + ACTIONS(5210), 1, anon_sym_RBRACE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2434), 1, + STATE(2429), 1, sym_comment, - STATE(4686), 1, + STATE(4635), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, ACTIONS(5448), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -252933,150 +254888,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [48876] = 36, + [48563] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, + STATE(2430), 1, + sym_comment, + ACTIONS(2296), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2298), 31, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, + 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, - ACTIONS(5416), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - ACTIONS(5561), 1, - anon_sym_COMMA, - ACTIONS(5564), 1, - anon_sym_RBRACE, - STATE(2435), 1, + anon_sym_PIPE_RBRACE, + [48621] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2431), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(2286), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(2288), 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(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5566), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48996] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [48679] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5217), 1, - anon_sym_RBRACE, - ACTIONS(5446), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(2436), 1, + ACTIONS(5561), 1, + anon_sym_STAR, + ACTIONS(5563), 1, + anon_sym_LBRACE, + ACTIONS(5565), 1, + anon_sym_async, + ACTIONS(5567), 1, + anon_sym_readonly, + ACTIONS(5571), 1, + sym__automatic_semicolon, + STATE(2432), 1, sym_comment, - STATE(4686), 1, + STATE(3427), 1, + sym_statement_block, + STATE(3533), 1, + sym_override_modifier, + STATE(3827), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(5448), 2, + ACTIONS(5569), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 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(2900), 21, + ACTIONS(4385), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -253084,115 +255062,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [49082] = 34, + [48767] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(2433), 1, + sym_comment, + ACTIONS(5574), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5576), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4817), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2437), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5568), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49198] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [48825] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5570), 1, - anon_sym_LT, - STATE(2438), 1, + STATE(2434), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5155), 12, + ACTIONS(2156), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253203,15 +255133,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(5157), 22, - sym__automatic_semicolon, + ACTIONS(2158), 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, @@ -253227,181 +255165,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, - [49274] = 34, + anon_sym_implements, + [48883] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, - anon_sym_AMP_AMP, - ACTIONS(5492), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, - sym__ternary_qmark, - STATE(2439), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5516), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5512), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5119), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49390] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - ACTIONS(5561), 1, - anon_sym_COMMA, - ACTIONS(5564), 1, - anon_sym_RBRACE, - STATE(2440), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5138), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49510] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2441), 1, + STATE(2435), 1, sym_comment, - ACTIONS(5573), 13, + ACTIONS(2310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253415,18 +255189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5575), 31, + ACTIONS(2312), 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, @@ -253446,83 +255220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [49568] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5144), 1, - anon_sym_RBRACE, - ACTIONS(5450), 1, - anon_sym_LBRACK, - STATE(2442), 1, - sym_comment, - STATE(3907), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [49656] = 5, + [48941] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2443), 1, + STATE(2436), 1, sym_comment, - ACTIONS(2223), 13, + ACTIONS(2120), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253536,7 +255242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2225), 31, + ACTIONS(2122), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253568,233 +255274,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49714] = 5, + [48999] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2444), 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), 31, - sym__ternary_qmark, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5384), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5388), 1, anon_sym_AMP_AMP, + ACTIONS(5390), 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, - [49772] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, ACTIONS(5404), 1, - anon_sym_BQUOTE, + anon_sym_PERCENT, ACTIONS(5406), 1, - anon_sym_as, + anon_sym_STAR_STAR, ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, + anon_sym_LT, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2445), 1, + STATE(2437), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5581), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49892] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, - anon_sym_AMP_AMP, - ACTIONS(5492), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, - sym__ternary_qmark, - STATE(2446), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5516), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5124), 4, + ACTIONS(4890), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [50008] = 5, + [49115] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2447), 1, + STATE(2438), 1, sym_comment, - ACTIONS(5583), 13, + ACTIONS(5522), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5578), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253808,18 +255386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5585), 31, + ACTIONS(5524), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -253839,15 +255411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [50066] = 5, + [49177] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2448), 1, + STATE(2439), 1, sym_comment, - ACTIONS(5587), 13, + ACTIONS(5581), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253861,7 +255432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5589), 31, + ACTIONS(5583), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253893,364 +255464,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50124] = 34, + [49235] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2449), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4883), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [50240] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2450), 1, + STATE(2440), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4961), 4, + ACTIONS(5306), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [50356] = 35, + [49351] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2451), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5564), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5591), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50474] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - ACTIONS(5593), 1, - anon_sym_COMMA, - ACTIONS(5596), 1, - anon_sym_RBRACE, - STATE(2452), 1, + STATE(2441), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4883), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50594] = 14, + ACTIONS(5160), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [49467] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5598), 1, - anon_sym_LT, - STATE(2453), 1, + ACTIONS(5035), 1, + anon_sym_EQ, + STATE(2442), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5155), 12, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254261,15 +255648,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(5157), 22, - sym__automatic_semicolon, + ACTIONS(5037), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -254285,15 +255679,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, - [50670] = 5, + anon_sym_implements, + [49527] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2454), 1, + STATE(2443), 1, sym_comment, - ACTIONS(5601), 13, + ACTIONS(5585), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254307,7 +255703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5603), 31, + ACTIONS(5322), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254339,67 +255735,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50728] = 5, + [49585] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2455), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + STATE(2444), 1, sym_comment, - ACTIONS(5605), 13, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(5607), 31, + ACTIONS(4934), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [50786] = 5, + [49675] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2456), 1, + STATE(2445), 1, sym_comment, - ACTIONS(5609), 13, + ACTIONS(5587), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254413,7 +255825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5611), 31, + ACTIONS(5589), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254445,67 +255857,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50844] = 5, + [49733] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2457), 1, - sym_comment, - ACTIONS(5583), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5585), 31, - sym__ternary_qmark, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5384), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5388), 1, anon_sym_AMP_AMP, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, anon_sym_PERCENT, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2446), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [50902] = 5, + ACTIONS(5591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49853] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2458), 1, + STATE(2447), 1, sym_comment, - ACTIONS(5613), 13, + ACTIONS(2252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254519,7 +255962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5615), 31, + ACTIONS(2256), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254551,96 +255994,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50960] = 34, + [49911] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(5492), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5500), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5502), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5506), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5518), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2459), 1, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2448), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5130), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51076] = 5, + [50031] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2460), 1, + STATE(2449), 1, sym_comment, - ACTIONS(5583), 13, + ACTIONS(2244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254654,7 +256099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5585), 31, + ACTIONS(2248), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254686,14 +256131,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51134] = 5, + [50089] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2461), 1, + ACTIONS(5595), 1, + anon_sym_DOT, + ACTIONS(5597), 1, + anon_sym_LT, + ACTIONS(5599), 1, + anon_sym_is, + STATE(2450), 1, sym_comment, - ACTIONS(2223), 13, + STATE(2764), 1, + sym_type_arguments, + ACTIONS(4810), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254704,22 +256157,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(2225), 31, + ACTIONS(4229), 28, 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, @@ -254738,15 +256187,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [51192] = 5, + anon_sym_extends, + [50155] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2462), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5601), 1, + anon_sym_LT, + STATE(2451), 1, sym_comment, - ACTIONS(2105), 13, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254757,23 +256225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2107), 31, + ACTIONS(5067), 22, 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, @@ -254789,17 +256249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [51250] = 5, + [50231] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2463), 1, + STATE(2452), 1, sym_comment, - ACTIONS(5617), 13, + ACTIONS(5604), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254813,7 +256271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5619), 31, + ACTIONS(5606), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254845,14 +256303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51308] = 5, + [50289] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2464), 1, + STATE(2453), 1, sym_comment, - ACTIONS(5549), 13, + ACTIONS(5608), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254866,7 +256324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5551), 31, + ACTIONS(5610), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254898,96 +256356,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51366] = 34, + [50347] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, + STATE(2454), 1, + sym_comment, + ACTIONS(5612), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, + 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(5416), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2465), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 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(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5041), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [51482] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50405] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2466), 1, + STATE(2455), 1, sym_comment, - ACTIONS(5621), 13, + ACTIONS(5616), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255001,7 +256430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5623), 31, + ACTIONS(5618), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255033,493 +256462,561 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51540] = 21, + [50463] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, ACTIONS(5390), 1, - anon_sym_PERCENT, + anon_sym_PIPE_PIPE, ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, anon_sym_BQUOTE, - STATE(2467), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + STATE(2456), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5380), 2, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5402), 2, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 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(4953), 16, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5001), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [51630] = 34, + [50579] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2468), 1, + STATE(2457), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5138), 4, + ACTIONS(5005), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [51746] = 34, + [50695] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, + anon_sym_as, ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, ACTIONS(5384), 1, - anon_sym_CARET, + anon_sym_LBRACK, ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5442), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5444), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, + ACTIONS(5488), 1, anon_sym_AMP_AMP, - ACTIONS(5416), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, + ACTIONS(5506), 1, sym__ternary_qmark, - STATE(2469), 1, + STATE(2458), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4927), 4, + ACTIONS(4989), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [51862] = 34, + [50811] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + STATE(2459), 1, + sym_comment, + ACTIONS(2174), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2176), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(5374), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5404), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5406), 1, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [50869] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(5492), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5500), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5502), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5506), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5518), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2470), 1, + STATE(2460), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5620), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5622), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4929), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51978] = 34, + [50987] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(5490), 1, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, - ACTIONS(5492), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(5492), 1, anon_sym_AMP, - ACTIONS(5500), 1, + ACTIONS(5494), 1, anon_sym_CARET, - ACTIONS(5502), 1, + ACTIONS(5496), 1, anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5518), 1, + ACTIONS(5504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, + ACTIONS(5506), 1, sym__ternary_qmark, - STATE(2471), 1, + STATE(2461), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5084), 4, + ACTIONS(4987), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [52094] = 34, + [51103] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, + anon_sym_as, ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, ACTIONS(5384), 1, - anon_sym_CARET, + anon_sym_LBRACK, ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5442), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5444), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, + ACTIONS(5486), 1, + anon_sym_GT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, - ACTIONS(5416), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, + ACTIONS(5506), 1, sym__ternary_qmark, - STATE(2472), 1, + ACTIONS(5626), 1, + anon_sym_in, + STATE(2462), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5140), 4, + ACTIONS(5624), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [52210] = 5, + [51221] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2473), 1, + STATE(2463), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(5629), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255533,7 +257030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5140), 31, + ACTIONS(5631), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255565,14 +257062,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52268] = 5, + [51279] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2474), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5633), 1, + anon_sym_LT, + STATE(2464), 1, sym_comment, - ACTIONS(5627), 13, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5273), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255583,23 +257102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5629), 31, + ACTIONS(5275), 20, + 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, @@ -255613,19 +257124,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_implements, - [52326] = 5, + [51357] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2475), 1, + STATE(2465), 1, sym_comment, - ACTIONS(5631), 13, + ACTIONS(2296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255639,7 +257146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5633), 31, + ACTIONS(2298), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255671,23 +257178,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52384] = 7, + [51415] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2476), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5597), 1, + anon_sym_LT, + ACTIONS(5636), 1, + anon_sym_DOT, + STATE(2466), 1, sym_comment, - ACTIONS(5637), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5641), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5635), 13, + STATE(2809), 1, + sym_arguments, + STATE(2812), 1, + sym_type_arguments, + ACTIONS(4180), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255698,16 +257206,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(5639), 24, + ACTIONS(4176), 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, @@ -255726,14 +257235,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52446] = 5, + anon_sym_extends, + [51483] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2477), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5597), 1, + anon_sym_LT, + ACTIONS(5638), 1, + anon_sym_DOT, + STATE(2467), 1, sym_comment, - ACTIONS(5644), 13, + STATE(2813), 1, + sym_arguments, + STATE(2815), 1, + sym_type_arguments, + ACTIONS(4842), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255744,22 +257264,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(5646), 31, + ACTIONS(4844), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -255778,15 +257293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [52504] = 5, + anon_sym_extends, + [51551] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2478), 1, + STATE(2468), 1, sym_comment, - ACTIONS(5648), 13, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255800,7 +257315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5650), 31, + ACTIONS(5090), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255832,14 +257347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52562] = 5, + [51609] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2479), 1, + STATE(2469), 1, sym_comment, - ACTIONS(5652), 13, + ACTIONS(5640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255853,7 +257368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 31, + ACTIONS(5642), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255885,14 +257400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52620] = 5, + [51667] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2480), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5597), 1, + anon_sym_LT, + ACTIONS(5644), 1, + anon_sym_DOT, + STATE(2470), 1, sym_comment, - ACTIONS(2239), 13, + STATE(2816), 1, + sym_arguments, + STATE(2817), 1, + sym_type_arguments, + ACTIONS(4800), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255903,22 +257428,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(2243), 31, + ACTIONS(4802), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -255937,355 +257457,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [52678] = 30, + anon_sym_extends, + [51735] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, anon_sym_BANG, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(5490), 1, - anon_sym_AMP_AMP, - ACTIONS(5492), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5646), 1, anon_sym_LT, - STATE(2481), 1, + STATE(2471), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5326), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5512), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 8, + ACTIONS(5328), 18, 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_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, - [52786] = 23, + anon_sym_instanceof, + [51819] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5506), 1, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5408), 1, anon_sym_LT, - STATE(2482), 1, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2472), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3098), 2, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5649), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 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, - [52880] = 6, + [51939] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - STATE(2483), 1, - sym_comment, - ACTIONS(5224), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5228), 30, - sym__ternary_qmark, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5384), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5388), 1, anon_sym_AMP_AMP, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, anon_sym_PERCENT, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5420), 1, anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - anon_sym_implements, - [52940] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2484), 1, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2473), 1, sym_comment, - ACTIONS(5654), 13, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 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(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [52998] = 36, + ACTIONS(5651), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52059] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, ACTIONS(5404), 1, - anon_sym_BQUOTE, + anon_sym_PERCENT, ACTIONS(5406), 1, - anon_sym_as, + anon_sym_STAR_STAR, ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, + anon_sym_LT, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2485), 1, + STATE(2474), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5343), 4, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(3098), 2, + [52175] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, + anon_sym_AMP_AMP, + ACTIONS(5490), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + STATE(2475), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5436), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53118] = 5, + ACTIONS(4934), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [52283] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2486), 1, + STATE(2476), 1, sym_comment, - ACTIONS(5660), 13, + ACTIONS(5653), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256299,7 +257873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5662), 31, + ACTIONS(5655), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256331,14 +257905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53176] = 5, + [52341] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2487), 1, + STATE(2477), 1, sym_comment, - ACTIONS(5664), 13, + ACTIONS(5657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256352,7 +257926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5124), 31, + ACTIONS(5659), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256384,14 +257958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53234] = 5, + [52399] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2488), 1, + STATE(2478), 1, sym_comment, - ACTIONS(5666), 13, + ACTIONS(5661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256405,7 +257979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 31, + ACTIONS(5663), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256437,14 +258011,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53292] = 5, + [52457] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2489), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2479), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52577] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2480), 1, sym_comment, - ACTIONS(5670), 13, + ACTIONS(5035), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5667), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256458,18 +258125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5672), 31, + ACTIONS(5037), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -256489,298 +258150,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [53350] = 36, + [52639] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, ACTIONS(5404), 1, - anon_sym_BQUOTE, + anon_sym_PERCENT, ACTIONS(5406), 1, - anon_sym_as, + anon_sym_STAR_STAR, ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, + anon_sym_LT, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2490), 1, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2481), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, + STATE(5614), 1, aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5674), 2, + ACTIONS(5670), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53470] = 36, + [52759] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, ACTIONS(5404), 1, - anon_sym_BQUOTE, + anon_sym_PERCENT, ACTIONS(5406), 1, - anon_sym_as, + anon_sym_STAR_STAR, ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, + anon_sym_LT, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2491), 1, + STATE(2482), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5676), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53590] = 5, + ACTIONS(5007), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [52875] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2492), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + STATE(2483), 1, sym_comment, - ACTIONS(5678), 13, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5436), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5486), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 31, + ACTIONS(4934), 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, - [53648] = 5, + [52969] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2493), 1, - sym_comment, - ACTIONS(5680), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5682), 31, - sym__ternary_qmark, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5384), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5388), 1, anon_sym_AMP_AMP, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, anon_sym_PERCENT, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2484), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [53706] = 7, + ACTIONS(5672), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53089] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2494), 1, + STATE(2485), 1, sym_comment, - ACTIONS(5226), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5684), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5224), 13, + ACTIONS(5674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256794,12 +258492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 24, + ACTIONS(5676), 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, @@ -256819,14 +258523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53768] = 5, + anon_sym_implements, + [53147] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2495), 1, + STATE(2486), 1, sym_comment, - ACTIONS(2193), 13, + ACTIONS(5678), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256840,18 +258545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 31, - sym__automatic_semicolon, + ACTIONS(4999), 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, @@ -256871,15 +258576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [53826] = 5, + anon_sym_implements, + [53205] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2496), 1, + STATE(2487), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(5680), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256893,7 +258598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5689), 31, + ACTIONS(5682), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256925,110 +258630,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53884] = 19, + [53263] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(5508), 1, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, anon_sym_STAR_STAR, - ACTIONS(5691), 1, + ACTIONS(5444), 1, anon_sym_LT, - STATE(2497), 1, + ACTIONS(5488), 1, + anon_sym_AMP_AMP, + ACTIONS(5490), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5506), 1, + sym__ternary_qmark, + STATE(2488), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(5432), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(5436), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5498), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53970] = 18, + ACTIONS(5306), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [53379] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5691), 1, + ACTIONS(5597), 1, anon_sym_LT, - STATE(2498), 1, + ACTIONS(5684), 1, + anon_sym_QMARK_DOT, + STATE(2489), 1, sym_comment, - STATE(2627), 1, + STATE(2840), 1, sym_type_arguments, - STATE(5704), 1, + STATE(2960), 1, + sym_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(4816), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -257037,13 +258745,15 @@ 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(4953), 18, + ACTIONS(4818), 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, @@ -257051,105 +258761,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [54054] = 36, + [53453] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - ACTIONS(5564), 1, - anon_sym_RBRACE, - ACTIONS(5694), 1, - anon_sym_COMMA, - STATE(2499), 1, + STATE(2490), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4883), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54174] = 5, + ACTIONS(4999), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [53569] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2500), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5686), 1, + anon_sym_LT, + STATE(2491), 1, sym_comment, - ACTIONS(5697), 13, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(4934), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [53655] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2492), 1, + sym_comment, + ACTIONS(5689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257163,7 +258943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 31, + ACTIONS(5001), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257195,96 +258975,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54232] = 34, + [53713] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, ACTIONS(5384), 1, - anon_sym_CARET, + anon_sym_LBRACK, ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, + anon_sym_DOT, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2501), 1, + anon_sym_BQUOTE, + ACTIONS(5691), 1, + anon_sym_LT, + STATE(2493), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5130), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [54348] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2502), 1, - sym_comment, - ACTIONS(2227), 13, + ACTIONS(5065), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257295,23 +259012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2229), 31, + ACTIONS(5067), 22, 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, @@ -257327,101 +259036,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [54406] = 36, + [53789] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, ACTIONS(5384), 1, - anon_sym_CARET, + anon_sym_LBRACK, ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, + anon_sym_DOT, ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2503), 1, + anon_sym_BQUOTE, + ACTIONS(5694), 1, + anon_sym_LT, + STATE(2494), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54526] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2504), 1, - sym_comment, - ACTIONS(5703), 13, + ACTIONS(4936), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257432,49 +259079,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5705), 31, + ACTIONS(4934), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [54584] = 5, + [53869] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2505), 1, + STATE(2495), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(5697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257488,7 +259122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5709), 31, + ACTIONS(5005), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257520,16 +259154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54642] = 6, + [53927] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5637), 1, - anon_sym_EQ, - STATE(2506), 1, + STATE(2496), 1, sym_comment, - ACTIONS(5635), 13, + ACTIONS(5699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257543,7 +259175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5639), 30, + ACTIONS(5701), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257551,6 +259183,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, @@ -257574,305 +259207,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54702] = 5, + [53985] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2507), 1, - sym_comment, - ACTIONS(5711), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5713), 31, - sym__ternary_qmark, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5384), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5506), 1, + sym__ternary_qmark, + STATE(2497), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5436), 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(5438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5498), 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, - [54760] = 34, + ACTIONS(5343), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [54101] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2508), 1, + STATE(2498), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5119), 4, + ACTIONS(5009), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [54876] = 34, + [54217] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(5492), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5500), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5502), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5506), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5518), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2509), 1, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2499), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5703), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5142), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [54992] = 26, + [54337] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5506), 1, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5408), 1, anon_sym_LT, - STATE(2510), 1, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2500), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 11, - 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_QMARK_QMARK, - anon_sym_satisfies, - [55092] = 5, + [54457] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2511), 1, + STATE(2501), 1, sym_comment, - ACTIONS(5715), 13, + ACTIONS(5707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257886,7 +259560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5717), 31, + ACTIONS(5709), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257918,260 +259592,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55150] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - STATE(2512), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5516), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5512), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 11, - 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_QMARK_QMARK, - anon_sym_satisfies, - [55248] = 19, + [54515] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5691), 1, - anon_sym_LT, - STATE(2513), 1, + STATE(2502), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5711), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5504), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 18, - sym__automatic_semicolon, + ACTIONS(5713), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [55334] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, - anon_sym_AMP_AMP, - ACTIONS(5492), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, - sym__ternary_qmark, - STATE(2514), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5516), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5512), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4927), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [55450] = 16, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [54573] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5719), 1, - anon_sym_LT, - STATE(2515), 1, + STATE(2503), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258182,46 +259663,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(4953), 19, - sym__automatic_semicolon, + ACTIONS(5717), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [55530] = 10, + anon_sym_implements, + [54631] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5722), 1, - anon_sym_DOT, - ACTIONS(5724), 1, - anon_sym_LT, - STATE(2516), 1, + STATE(2504), 1, sym_comment, - STATE(2813), 1, - sym_type_arguments, - STATE(2814), 1, - sym_arguments, - ACTIONS(4799), 12, + ACTIONS(2304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258232,17 +259716,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(4801), 27, - sym__automatic_semicolon, + ACTIONS(2306), 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, @@ -258261,103 +259750,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55598] = 29, + anon_sym_implements, + [54689] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + STATE(2505), 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), 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, - ACTIONS(5376), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5490), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - STATE(2517), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 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(5486), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [54747] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2506), 1, + sym_comment, + ACTIONS(4140), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5488), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5512), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 9, - sym__automatic_semicolon, + ACTIONS(4144), 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, - [55704] = 10, + anon_sym_implements, + [54805] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5724), 1, - anon_sym_LT, - ACTIONS(5726), 1, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - STATE(2518), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5686), 1, + anon_sym_LT, + STATE(2507), 1, sym_comment, - STATE(2815), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2816), 1, - sym_arguments, - ACTIONS(4805), 12, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -258366,238 +259902,260 @@ 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(4807), 27, + ACTIONS(4934), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55772] = 34, + [54889] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2519), 1, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2508), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + ACTIONS(5723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4929), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [55888] = 6, + [55009] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2520), 1, - sym_comment, - ACTIONS(2059), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2065), 30, - sym__ternary_qmark, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5384), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5388), 1, anon_sym_AMP_AMP, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, anon_sym_PERCENT, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2509), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [55948] = 27, + ACTIONS(5725), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55129] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5434), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5506), 1, + ACTIONS(5440), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5442), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5444), 1, anon_sym_LT, - STATE(2521), 1, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + STATE(2510), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4955), 2, + ACTIONS(4936), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 10, + ACTIONS(4934), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -258608,125 +260166,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [56050] = 5, + [55231] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2522), 1, - sym_comment, - ACTIONS(5728), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5434), 1, anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5492), 1, anon_sym_AMP, + STATE(2511), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(4936), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5436), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5730), 31, + ACTIONS(5502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 11, + 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, - [56108] = 28, + [55331] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5434), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, + ACTIONS(5440), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5442), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5444), 1, anon_sym_LT, - STATE(2523), 1, + STATE(2512), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(4936), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 10, + ACTIONS(4934), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -258735,93 +260310,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [56212] = 5, + [55429] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2524), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5686), 1, + anon_sym_LT, + STATE(2513), 1, sym_comment, - ACTIONS(5732), 13, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5438), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(5734), 31, + ACTIONS(4934), 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, - [56270] = 16, + [55515] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5691), 1, - anon_sym_LT, - STATE(2525), 1, + STATE(2514), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258832,323 +260398,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(4953), 19, - sym__automatic_semicolon, + ACTIONS(5717), 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, - [56350] = 34, + anon_sym_implements, + [55573] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, + anon_sym_BQUOTE, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, ACTIONS(5492), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5500), 1, + ACTIONS(5494), 1, anon_sym_CARET, - ACTIONS(5502), 1, + ACTIONS(5496), 1, anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, - sym__ternary_qmark, - STATE(2526), 1, + STATE(2515), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5140), 4, + ACTIONS(4934), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [56466] = 36, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [55679] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5434), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5440), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5442), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5444), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2527), 1, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + STATE(2516), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5736), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56586] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2528), 1, - sym_comment, - ACTIONS(5738), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 31, + ACTIONS(4934), 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, - [56644] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5014), 1, - anon_sym_RBRACE, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5450), 1, - anon_sym_LBRACK, - STATE(2529), 1, - sym_comment, - STATE(3907), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [56732] = 5, + [55783] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2530), 1, + STATE(2517), 1, sym_comment, - ACTIONS(5742), 13, + ACTIONS(5727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259162,7 +260607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5744), 31, + ACTIONS(5729), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259194,163 +260639,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56790] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5014), 1, - anon_sym_RBRACE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(2531), 1, - sym_comment, - STATE(4686), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5448), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [56876] = 34, + [55841] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, - anon_sym_AMP_AMP, - ACTIONS(5492), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, + anon_sym_BQUOTE, + ACTIONS(5442), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5686), 1, anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, - sym__ternary_qmark, - STATE(2532), 1, + STATE(2518), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5516), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5138), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [56992] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2533), 1, - sym_comment, - ACTIONS(2227), 13, + ACTIONS(4936), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259361,59 +260681,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2229), 31, + ACTIONS(4934), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [57050] = 10, + [55921] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5724), 1, - anon_sym_LT, - ACTIONS(5746), 1, - anon_sym_DOT, - STATE(2534), 1, + STATE(2519), 1, sym_comment, - STATE(2817), 1, - sym_type_arguments, - STATE(2818), 1, - sym_arguments, - ACTIONS(4167), 12, + ACTIONS(5731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259424,17 +260721,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(4157), 27, - sym__automatic_semicolon, + ACTIONS(5733), 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, @@ -259453,15 +260755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57118] = 5, + anon_sym_implements, + [55979] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2535), 1, + STATE(2520), 1, sym_comment, - ACTIONS(2215), 13, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259475,7 +260777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 31, + ACTIONS(5717), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259507,38 +260809,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57176] = 15, + [56037] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(5748), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5735), 1, anon_sym_LT, - STATE(2536), 1, + STATE(2521), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5065), 12, + ACTIONS(5326), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -259549,12 +260856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5067), 20, + ACTIONS(5328), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -259569,15 +260875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [57254] = 5, + [56121] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2537), 1, + STATE(2522), 1, sym_comment, - ACTIONS(2109), 13, + ACTIONS(2174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259591,18 +260896,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2111), 31, - sym__automatic_semicolon, + ACTIONS(2176), 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, @@ -259622,213 +260927,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [57312] = 36, + anon_sym_implements, + [56179] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, ACTIONS(5404), 1, - anon_sym_BQUOTE, + anon_sym_PERCENT, ACTIONS(5406), 1, - anon_sym_as, + anon_sym_STAR_STAR, ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, + anon_sym_LT, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2538), 1, + anon_sym_BQUOTE, + STATE(2523), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5751), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57432] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5753), 1, + ACTIONS(4934), 10, sym__automatic_semicolon, - STATE(2539), 1, - sym_comment, - ACTIONS(2109), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2111), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [57492] = 29, + [56283] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4936), 1, anon_sym_BANG, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - STATE(2540), 1, + STATE(2524), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 9, + ACTIONS(4934), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -259838,67 +261081,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [57598] = 5, + [56389] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2541), 1, - sym_comment, - ACTIONS(4135), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(5030), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2525), 1, + sym_comment, + STATE(4635), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56475] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5694), 1, + anon_sym_LT, + STATE(2526), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(4139), 31, + ACTIONS(4934), 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, - [57656] = 5, + [56561] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2542), 1, + STATE(2527), 1, sym_comment, - ACTIONS(2193), 13, + ACTIONS(2224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259912,7 +261236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 31, + ACTIONS(2228), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259944,435 +261268,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57714] = 21, + [56619] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - STATE(2543), 1, + STATE(2528), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(2126), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5496), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5504), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 16, - sym__automatic_semicolon, + ACTIONS(2130), 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, - [57804] = 34, + anon_sym_implements, + [56677] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(5030), 1, + anon_sym_RBRACE, + ACTIONS(5372), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56765] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, - anon_sym_AMP_AMP, - ACTIONS(5492), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, - anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, - sym__ternary_qmark, - STATE(2544), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + STATE(2530), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(4936), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4961), 4, + ACTIONS(4934), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [57920] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [56863] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(5492), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(5500), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(5502), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5506), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(5518), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2545), 1, - sym_comment, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(5704), 1, + STATE(2531), 1, + sym_comment, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4883), 4, - sym__automatic_semicolon, + ACTIONS(5738), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [58036] = 34, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [56979] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5490), 1, - anon_sym_AMP_AMP, - ACTIONS(5492), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5500), 1, - anon_sym_CARET, - ACTIONS(5502), 1, - anon_sym_PIPE, - ACTIONS(5506), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5508), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5510), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, - sym__ternary_qmark, - STATE(2546), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + STATE(2532), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5246), 4, + ACTIONS(4934), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [58152] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [57079] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2547), 1, + anon_sym_BQUOTE, + STATE(2533), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5084), 4, + ACTIONS(4934), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [58268] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [57181] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2548), 1, + ACTIONS(5208), 1, + anon_sym_extends, + STATE(2534), 1, sym_comment, - ACTIONS(2183), 13, + ACTIONS(5740), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5743), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5653), 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(2185), 31, + ACTIONS(5655), 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, @@ -260394,98 +261749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58326] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2549), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58446] = 5, + [57245] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2550), 1, + STATE(2535), 1, sym_comment, - ACTIONS(5757), 13, + ACTIONS(5746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260499,7 +261770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5759), 31, + ACTIONS(5748), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260531,125 +261802,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58504] = 34, + [57303] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2551), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5124), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [58620] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5761), 1, + anon_sym_BQUOTE, + ACTIONS(5750), 1, anon_sym_LT, - STATE(2552), 1, + STATE(2536), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5090), 11, + ACTIONS(5273), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -260660,11 +261844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 18, + ACTIONS(5275), 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, @@ -260679,81 +261864,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58704] = 19, + anon_sym_satisfies, + [57381] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5719), 1, - anon_sym_LT, - STATE(2553), 1, + ACTIONS(5753), 1, + sym__automatic_semicolon, + STATE(2537), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(2244), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 18, - sym__automatic_semicolon, + ACTIONS(2248), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [58790] = 5, + anon_sym_PIPE_RBRACE, + [57441] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2554), 1, + STATE(2538), 1, sym_comment, - ACTIONS(5764), 13, + ACTIONS(2244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260767,18 +261940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 31, + ACTIONS(2248), 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, @@ -260798,15 +261971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [58848] = 5, + anon_sym_PIPE_RBRACE, + [57499] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2555), 1, + STATE(2539), 1, sym_comment, - ACTIONS(5766), 13, + ACTIONS(5755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260820,7 +261993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5768), 31, + ACTIONS(5757), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260852,98 +262025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58906] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2556), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5770), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59026] = 5, + [57557] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2557), 1, + STATE(2540), 1, sym_comment, - ACTIONS(5772), 13, + ACTIONS(5759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260957,7 +262046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5774), 31, + ACTIONS(5761), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260989,236 +262078,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59084] = 30, + [57615] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, ACTIONS(5384), 1, - anon_sym_CARET, + anon_sym_LBRACK, ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, + anon_sym_DOT, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - STATE(2558), 1, + ACTIONS(5694), 1, + anon_sym_LT, + STATE(2541), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 8, + ACTIONS(4934), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [59192] = 25, + [57699] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - STATE(2559), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5694), 1, + anon_sym_LT, + STATE(2542), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 11, + ACTIONS(4934), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_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, - [59290] = 23, + anon_sym_instanceof, + [57785] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, ACTIONS(5390), 1, - anon_sym_PERCENT, + anon_sym_PIPE_PIPE, ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, anon_sym_BQUOTE, - STATE(2560), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + ACTIONS(5620), 1, + anon_sym_RBRACE, + ACTIONS(5763), 1, + anon_sym_COMMA, + STATE(2543), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5320), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5402), 2, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 13, - 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, - [59384] = 5, + [57905] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2561), 1, + STATE(2544), 1, sym_comment, - ACTIONS(2109), 13, + ACTIONS(5766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261232,7 +262316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2111), 31, + ACTIONS(5768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261264,68 +262348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59442] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5776), 1, - sym__automatic_semicolon, - STATE(2562), 1, - sym_comment, - ACTIONS(2057), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2113), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [59502] = 5, + [57963] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2563), 1, + STATE(2545), 1, sym_comment, - ACTIONS(2153), 13, + ACTIONS(2208), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261339,7 +262369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2155), 31, + ACTIONS(2210), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261371,178 +262401,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59560] = 26, + [58021] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5390), 1, + ACTIONS(5440), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5442), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5444), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - STATE(2564), 1, + ACTIONS(5488), 1, + anon_sym_AMP_AMP, + ACTIONS(5490), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5506), 1, + sym__ternary_qmark, + STATE(2546), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5368), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 11, + ACTIONS(5320), 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [59660] = 34, + [58137] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2565), 1, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2547), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + ACTIONS(5770), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5246), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [59776] = 9, + [58257] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5724), 1, - anon_sym_LT, - ACTIONS(5778), 1, - anon_sym_DOT, - ACTIONS(5780), 1, - anon_sym_is, - STATE(2566), 1, + STATE(2548), 1, sym_comment, - STATE(2883), 1, - sym_type_arguments, - ACTIONS(4821), 12, + ACTIONS(2150), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261553,18 +262585,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(4202), 28, - sym__automatic_semicolon, + ACTIONS(2154), 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, @@ -261583,274 +262619,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59842] = 36, + anon_sym_implements, + [58315] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, ACTIONS(5404), 1, - anon_sym_BQUOTE, + anon_sym_PERCENT, ACTIONS(5406), 1, - anon_sym_as, + anon_sym_STAR_STAR, ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, + anon_sym_LT, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2567), 1, + ACTIONS(5620), 1, + anon_sym_RBRACE, + ACTIONS(5763), 1, + anon_sym_COMMA, + STATE(2549), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5782), 2, + ACTIONS(5772), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59962] = 36, + [58435] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + STATE(2550), 1, + sym_comment, + ACTIONS(2180), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2184), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5374), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5376), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 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(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5406), 1, + anon_sym_satisfies, + anon_sym_implements, + [58493] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - ACTIONS(5408), 1, - anon_sym_COMMA, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, - ACTIONS(5414), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, - ACTIONS(5416), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + ACTIONS(5492), 1, + anon_sym_AMP, + ACTIONS(5494), 1, + anon_sym_CARET, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(5504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, + ACTIONS(5506), 1, sym__ternary_qmark, - STATE(2568), 1, + STATE(2551), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5560), 1, - aux_sym_sequence_expression_repeat1, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60082] = 27, + ACTIONS(4999), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [58609] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + STATE(2552), 1, + sym_comment, + ACTIONS(5774), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5776), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5374), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5376), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 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(5390), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - STATE(2569), 1, + anon_sym_satisfies, + anon_sym_implements, + [58667] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2553), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5368), 2, + ACTIONS(2190), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5372), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5388), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5396), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 10, - sym__automatic_semicolon, + ACTIONS(2194), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [60184] = 13, + anon_sym_implements, + [58725] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5724), 1, - anon_sym_LT, - ACTIONS(5786), 1, - anon_sym_QMARK_DOT, - STATE(2570), 1, + STATE(2554), 1, sym_comment, - STATE(2904), 1, - sym_type_arguments, - STATE(3029), 1, - sym_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(4811), 12, + ACTIONS(5778), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261861,16 +262963,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(4813), 24, - sym__automatic_semicolon, + ACTIONS(5780), 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, @@ -261888,327 +262997,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60258] = 34, + anon_sym_implements, + [58783] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2571), 1, + anon_sym_BQUOTE, + STATE(2555), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5109), 4, + ACTIONS(4934), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [60374] = 34, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [58891] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(5490), 1, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, - ACTIONS(5492), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(5492), 1, anon_sym_AMP, - ACTIONS(5500), 1, + ACTIONS(5494), 1, anon_sym_CARET, - ACTIONS(5502), 1, + ACTIONS(5496), 1, anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5518), 1, + ACTIONS(5504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, + ACTIONS(5506), 1, sym__ternary_qmark, - STATE(2572), 1, + STATE(2556), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5488), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5496), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5041), 4, + ACTIONS(5009), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [60490] = 18, + [59007] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5719), 1, - anon_sym_LT, - STATE(2573), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 18, - sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [60574] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, ACTIONS(5488), 1, - anon_sym_GT, - ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5492), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(5494), 1, - anon_sym_GT_GT, - ACTIONS(5498), 1, + ACTIONS(5492), 1, anon_sym_AMP, - ACTIONS(5500), 1, + ACTIONS(5494), 1, anon_sym_CARET, - ACTIONS(5502), 1, + ACTIONS(5496), 1, anon_sym_PIPE, - ACTIONS(5506), 1, - anon_sym_PERCENT, - ACTIONS(5508), 1, - anon_sym_STAR_STAR, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5518), 1, + ACTIONS(5504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5520), 1, + ACTIONS(5506), 1, sym__ternary_qmark, - ACTIONS(5790), 1, - anon_sym_in, - STATE(2574), 1, + STATE(2557), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5486), 2, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5496), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5504), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5514), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5516), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5512), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5788), 4, + ACTIONS(5007), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [60692] = 5, + [59123] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2575), 1, + STATE(2558), 1, sym_comment, - ACTIONS(2105), 13, + ACTIONS(5782), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262222,7 +263261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2107), 31, + ACTIONS(5784), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262254,81 +263293,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60750] = 19, + [59181] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(5011), 1, + anon_sym_RBRACE, + ACTIONS(5372), 1, + anon_sym_LBRACK, + STATE(2559), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59269] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, ACTIONS(5392), 1, - anon_sym_STAR_STAR, + anon_sym_GT_GT, ACTIONS(5404), 1, - anon_sym_BQUOTE, + anon_sym_PERCENT, ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5719), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, anon_sym_LT, - STATE(2576), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + STATE(2560), 1, sym_comment, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 17, + ACTIONS(4934), 13, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [60836] = 5, + anon_sym_satisfies, + [59363] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2577), 1, + STATE(2561), 1, sym_comment, - ACTIONS(2183), 13, + ACTIONS(2136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262342,18 +263453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2185), 31, - sym__automatic_semicolon, + ACTIONS(2140), 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, @@ -262373,907 +263484,735 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [60894] = 6, + anon_sym_implements, + [59421] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5780), 1, - anon_sym_is, - STATE(2578), 1, - sym_comment, - ACTIONS(4843), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4845), 29, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, + ACTIONS(5011), 1, anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2562), 1, + sym_comment, + STATE(4635), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, 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, - [60953] = 36, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59507] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5492), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5494), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5496), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5506), 1, sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5793), 1, - anon_sym_COLON, - STATE(2222), 1, - sym_type_arguments, - STATE(2579), 1, + STATE(2563), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61072] = 36, + ACTIONS(5005), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [59623] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5424), 1, sym__ternary_qmark, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5797), 1, - anon_sym_RBRACK, - STATE(2222), 1, - sym_type_arguments, - STATE(2580), 1, + STATE(2564), 1, sym_comment, - STATE(5797), 1, - aux_sym_array_repeat1, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61191] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, + ACTIONS(5322), 4, sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_static, - ACTIONS(5801), 1, - anon_sym_readonly, - ACTIONS(5803), 1, - anon_sym_abstract, - STATE(2581), 1, - sym_comment, - STATE(3501), 1, - sym_accessibility_modifier, - STATE(3586), 1, - sym_override_modifier, - STATE(4285), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4554), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1041), 8, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4378), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61276] = 36, + [59739] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5424), 1, sym__ternary_qmark, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, - STATE(2582), 1, + STATE(2565), 1, sym_comment, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - STATE(6298), 1, - aux_sym_array_repeat1, - ACTIONS(4879), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61395] = 34, + ACTIONS(4989), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [59855] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5492), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5494), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5496), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5506), 1, sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2583), 1, + STATE(2566), 1, sym_comment, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5788), 3, + ACTIONS(5322), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [61510] = 6, + anon_sym_of, + anon_sym_SEMI, + [59971] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5807), 1, - anon_sym_is, - STATE(2584), 1, - sym_comment, - ACTIONS(4855), 13, - anon_sym_STAR, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 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(4857), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [61569] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5780), 1, - anon_sym_is, - STATE(2585), 1, - sym_comment, - ACTIONS(4851), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4853), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [61628] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(5815), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5821), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5823), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5825), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5829), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5831), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5841), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2586), 1, + STATE(2567), 1, sym_comment, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4929), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61743] = 34, + ACTIONS(4987), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [60087] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(5815), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5821), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5823), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5825), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5829), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5831), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5841), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2587), 1, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2568), 1, sym_comment, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(5614), 1, + aux_sym_sequence_expression_repeat1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5786), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5084), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61858] = 30, + [60207] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5813), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, + anon_sym_GT_GT, + ACTIONS(5440), 1, + anon_sym_PERCENT, + ACTIONS(5442), 1, + anon_sym_STAR_STAR, + ACTIONS(5444), 1, + anon_sym_LT, + ACTIONS(5488), 1, anon_sym_AMP_AMP, - ACTIONS(5815), 1, + ACTIONS(5490), 1, anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, + ACTIONS(5492), 1, anon_sym_AMP, - ACTIONS(5823), 1, + ACTIONS(5494), 1, anon_sym_CARET, - ACTIONS(5825), 1, + ACTIONS(5496), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2588), 1, + ACTIONS(5504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5506), 1, + sym__ternary_qmark, + STATE(2569), 1, sym_comment, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5819), 2, + ACTIONS(5436), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, + ACTIONS(5438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5486), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5835), 3, + ACTIONS(5498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5001), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [61965] = 23, + anon_sym_of, + anon_sym_SEMI, + [60323] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2589), 1, + STATE(2570), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5788), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5835), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 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(4953), 12, + ACTIONS(5790), 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, - [62058] = 9, + [60381] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5203), 1, - anon_sym_LBRACK, - STATE(2590), 1, + STATE(2571), 1, sym_comment, - ACTIONS(3568), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5206), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2059), 10, + ACTIONS(5792), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 26, + ACTIONS(5794), 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, @@ -263294,97 +264233,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62123] = 36, + anon_sym_implements, + [60439] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5424), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(5796), 1, anon_sym_COMMA, - ACTIONS(5845), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, - STATE(2591), 1, + ACTIONS(5799), 1, + anon_sym_RBRACE, + STATE(2572), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4890), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62242] = 5, + [60559] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2592), 1, + STATE(2573), 1, sym_comment, - ACTIONS(4356), 13, + ACTIONS(2278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263398,16 +264339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 30, - sym__automatic_semicolon, + ACTIONS(2282), 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, @@ -263427,620 +264370,732 @@ 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, - [62299] = 34, + anon_sym_implements, + [60617] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(2574), 1, + sym_comment, + ACTIONS(2270), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2274), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4817), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, - anon_sym_AMP, - ACTIONS(5823), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5825), 1, - anon_sym_PIPE, - ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - ACTIONS(5841), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2593), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60675] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2575), 1, + sym_comment, + ACTIONS(2238), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5119), 3, + ACTIONS(2242), 31, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5835), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62414] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4817), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, - anon_sym_AMP, - ACTIONS(5823), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5825), 1, - anon_sym_PIPE, - ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - ACTIONS(5841), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2594), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2576), 1, + sym_comment, + ACTIONS(2112), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5124), 3, + ACTIONS(2116), 31, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5835), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62529] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4817), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, - anon_sym_AMP, - ACTIONS(5823), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5825), 1, - anon_sym_PIPE, - ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - ACTIONS(5841), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2595), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60791] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2577), 1, + sym_comment, + ACTIONS(2214), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5130), 3, + ACTIONS(2218), 31, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5835), 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, - [62644] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60849] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5424), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(5620), 1, + anon_sym_RBRACE, + ACTIONS(5801), 1, anon_sym_COMMA, - ACTIONS(5847), 1, - anon_sym_RBRACK, - STATE(2222), 1, - sym_type_arguments, - STATE(2596), 1, + STATE(2578), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4890), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62763] = 36, + [60969] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(2579), 1, + sym_comment, + ACTIONS(5088), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5090), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4817), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5849), 1, - anon_sym_RPAREN, - STATE(2222), 1, + anon_sym_implements, + [61026] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5812), 1, + anon_sym_LT, + STATE(2226), 1, sym_type_arguments, - STATE(2597), 1, + STATE(2580), 1, sym_comment, - STATE(6167), 1, - aux_sym_array_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(5806), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(4917), 2, + ACTIONS(4934), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62882] = 36, + anon_sym_satisfies, + anon_sym_implements, + [61111] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(5357), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2581), 1, + sym_comment, + STATE(4635), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [61192] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5827), 1, anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5851), 1, - anon_sym_RBRACE, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2598), 1, + STATE(2582), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63001] = 34, + ACTIONS(4934), 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, + [61295] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5320), 1, + anon_sym_COMMA, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(5815), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5821), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5823), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5825), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5829), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5831), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5841), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2599), 1, + STATE(2583), 1, sym_comment, - STATE(3108), 1, + STATE(2671), 1, sym_type_arguments, - STATE(6286), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5835), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5835), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5853), 3, - anon_sym_LBRACE, + [61412] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5024), 1, + anon_sym_LBRACK, + STATE(2584), 1, + sym_comment, + ACTIONS(3459), 2, anon_sym_COMMA, - anon_sym_implements, - [63116] = 19, + anon_sym_extends, + ACTIONS(5027), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2092), 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(2098), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [61477] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5831), 1, + ACTIONS(5810), 1, anon_sym_STAR_STAR, - ACTIONS(5855), 1, + ACTIONS(5812), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2600), 1, + STATE(2585), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 11, + ACTIONS(4936), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -264051,8 +265106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 16, + ACTIONS(4934), 18, sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, @@ -264067,63 +265123,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_satisfies, anon_sym_implements, - [63201] = 18, + [61556] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5829), 1, + ACTIONS(5808), 1, anon_sym_PERCENT, - ACTIONS(5831), 1, + ACTIONS(5810), 1, anon_sym_STAR_STAR, - ACTIONS(5855), 1, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5827), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2601), 1, + STATE(2586), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2407), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 10, + ACTIONS(4936), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 17, + ACTIONS(4934), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -264133,326 +265193,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [63284] = 36, + [61645] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5827), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5858), 1, - anon_sym_RBRACE, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2602), 1, + STATE(2587), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63403] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(4244), 1, - anon_sym_QMARK, - STATE(2603), 1, - sym_comment, - ACTIONS(4241), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4135), 13, + ACTIONS(5804), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(5806), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 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, - [63466] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, - anon_sym_AMP, - ACTIONS(5823), 1, - anon_sym_CARET, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2604), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5809), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5835), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5160), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, anon_sym_implements, - [63567] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5860), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, - STATE(2605), 1, - sym_comment, - STATE(6232), 1, - aux_sym_array_repeat1, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63686] = 34, + [61760] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5815), 1, - anon_sym_PIPE_PIPE, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, ACTIONS(5817), 1, anon_sym_GT_GT, ACTIONS(5821), 1, @@ -264461,430 +265307,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5827), 1, anon_sym_LT, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, ACTIONS(5841), 1, anon_sym_QMARK_QMARK, ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2606), 1, + STATE(2588), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5142), 3, + ACTIONS(4890), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63801] = 34, + [61875] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5815), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, - anon_sym_AMP, - ACTIONS(5823), 1, - anon_sym_CARET, - ACTIONS(5825), 1, - anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5597), 1, anon_sym_LT, - ACTIONS(5841), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2607), 1, + STATE(2589), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + STATE(2753), 1, + sym_type_arguments, + ACTIONS(4858), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5839), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4927), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5835), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63916] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2608), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5809), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5835), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 10, + ACTIONS(4860), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [64015] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2609), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5819), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5839), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5835), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [64112] = 19, + anon_sym_extends, + [61936] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5855), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2610), 1, + ACTIONS(3459), 1, + anon_sym_extends, + STATE(2590), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5024), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5027), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2092), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 17, + ACTIONS(2098), 26, + 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_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, - [64197] = 29, + [62001] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5035), 1, + anon_sym_EQ, + ACTIONS(5039), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, + STATE(2591), 1, + sym_comment, + ACTIONS(5042), 2, anon_sym_AMP, - ACTIONS(5823), 1, - anon_sym_CARET, - ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2611), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5845), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5045), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5033), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5835), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 8, + ACTIONS(5037), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [64302] = 5, + [62068] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2612), 1, + ACTIONS(5595), 1, + anon_sym_DOT, + ACTIONS(5597), 1, + anon_sym_LT, + STATE(2592), 1, sym_comment, - ACTIONS(1980), 13, + STATE(2764), 1, + sym_type_arguments, + ACTIONS(4810), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264895,10 +265546,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(2030), 30, + ACTIONS(4229), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -264908,7 +265558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -264928,21 +265577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_is, - [64359] = 8, + [62131] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5724), 1, - anon_sym_LT, - ACTIONS(5778), 1, - anon_sym_DOT, - STATE(2613), 1, + STATE(2593), 1, sym_comment, - STATE(2883), 1, - sym_type_arguments, - ACTIONS(4821), 12, + ACTIONS(1955), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264953,9 +265595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4202), 28, + ACTIONS(2037), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -264965,6 +265608,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, @@ -264984,41 +265628,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64422] = 7, + anon_sym_is, + [62188] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2614), 1, + ACTIONS(5024), 1, + anon_sym_LBRACK, + STATE(2594), 1, sym_comment, - ACTIONS(5637), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5862), 5, + ACTIONS(5027), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5849), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5635), 13, + ACTIONS(3459), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2092), 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(5639), 23, + ACTIONS(2098), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265038,23 +265686,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64483] = 28, + [62255] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, ACTIONS(5817), 1, anon_sym_GT_GT, ACTIONS(5821), 1, @@ -265063,461 +265719,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5827), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2226), 1, sym_type_arguments, - STATE(2615), 1, + STATE(2595), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5835), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5306), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, anon_sym_implements, - [64586] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5864), 1, - anon_sym_RBRACK, - STATE(2222), 1, - sym_type_arguments, - STATE(2616), 1, - sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64705] = 16, + [62370] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4966), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5855), 1, + STATE(2596), 1, + sym_comment, + STATE(4635), 1, + sym__property_name, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2617), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62451] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5035), 1, + anon_sym_EQ, + ACTIONS(5045), 1, + anon_sym_extends, + STATE(2597), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(5039), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5042), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5033), 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(4953), 18, + ACTIONS(5037), 26, + 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_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, - [64784] = 36, + [62516] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, - ACTIONS(5866), 1, + ACTIONS(5853), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2618), 1, + STATE(2598), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64903] = 36, + [62635] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5795), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(5868), 1, + ACTIONS(5857), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2619), 1, + STATE(2599), 1, sym_comment, - STATE(6089), 1, - aux_sym_array_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + STATE(6023), 1, + aux_sym_array_repeat1, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65022] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5815), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, - anon_sym_AMP, - ACTIONS(5823), 1, - anon_sym_CARET, - ACTIONS(5825), 1, - anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - ACTIONS(5841), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2620), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5839), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65137] = 7, + [62754] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5724), 1, - anon_sym_LT, - STATE(2621), 1, + ACTIONS(5599), 1, + anon_sym_is, + STATE(2600), 1, sym_comment, - STATE(2870), 1, - sym_type_arguments, - ACTIONS(4855), 12, + ACTIONS(4868), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265528,9 +266073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4857), 29, + ACTIONS(4870), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -265560,31 +266106,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65198] = 34, + [62813] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5815), 1, - anon_sym_PIPE_PIPE, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, ACTIONS(5817), 1, anon_sym_GT_GT, ACTIONS(5821), 1, @@ -265593,90 +266139,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5827), 1, anon_sym_LT, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, ACTIONS(5841), 1, anon_sym_QMARK_QMARK, ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2622), 1, + STATE(2601), 1, sym_comment, - STATE(6286), 1, + STATE(2976), 1, + sym_type_arguments, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4883), 3, + ACTIONS(5829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5859), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5835), 3, + [62928] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5861), 1, + anon_sym_RPAREN, + STATE(2226), 1, + sym_type_arguments, + STATE(2602), 1, + sym_comment, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65313] = 8, + [63047] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_QMARK, - ACTIONS(4254), 1, + ACTIONS(4174), 1, anon_sym_EQ, - STATE(2623), 1, + ACTIONS(5114), 1, + anon_sym_extends, + STATE(2603), 1, sym_comment, - ACTIONS(4257), 5, + ACTIONS(5514), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4135), 13, + anon_sym_LBRACK, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(4139), 23, + ACTIONS(4144), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265696,47 +266326,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65376] = 17, + [63112] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(5014), 1, + ACTIONS(5210), 1, anon_sym_RBRACE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2624), 1, + STATE(2604), 1, sym_comment, - STATE(4686), 1, + STATE(4635), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -265760,205 +266390,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65457] = 34, + [63193] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5827), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2625), 1, + STATE(2605), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5320), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5870), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [65572] = 34, + [63308] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5422), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2626), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5863), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, - STATE(5704), 1, + STATE(2606), 1, + sym_comment, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5368), 2, + STATE(6154), 1, + aux_sym_array_repeat1, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5396), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65687] = 8, + [63427] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - STATE(2627), 1, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(2607), 1, sym_comment, - STATE(3058), 2, - sym_template_string, - sym_arguments, - ACTIONS(4865), 13, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5114), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4140), 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(4867), 26, - sym__automatic_semicolon, + ACTIONS(4144), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265976,32 +266608,33 @@ 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, - [65750] = 34, + [63492] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5815), 1, - anon_sym_PIPE_PIPE, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, ACTIONS(5817), 1, anon_sym_GT_GT, ACTIONS(5821), 1, @@ -266010,174 +266643,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5827), 1, anon_sym_LT, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, ACTIONS(5841), 1, anon_sym_QMARK_QMARK, ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2628), 1, + STATE(2608), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5041), 3, + ACTIONS(5322), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65865] = 36, + [63607] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(5865), 1, + anon_sym_static, + ACTIONS(5867), 1, + anon_sym_readonly, + ACTIONS(5869), 1, + anon_sym_abstract, + STATE(2609), 1, + sym_comment, + STATE(3480), 1, + sym_accessibility_modifier, + STATE(3572), 1, + sym_override_modifier, + STATE(4163), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4561), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1042), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5872), 1, - anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, - STATE(2629), 1, - sym_comment, - STATE(6266), 1, - aux_sym_array_repeat1, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65984] = 9, + anon_sym_QMARK, + ACTIONS(4385), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63692] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(5230), 1, - anon_sym_LBRACK, - STATE(2630), 1, + ACTIONS(4309), 1, + anon_sym_QMARK, + STATE(2610), 1, sym_comment, - ACTIONS(5236), 2, + ACTIONS(4307), 5, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5233), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5224), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 26, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, 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, @@ -266197,66 +266812,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66049] = 20, + [63755] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5017), 1, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(5011), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5021), 1, - anon_sym_readonly, - STATE(2631), 1, + STATE(2611), 1, sym_comment, - STATE(3534), 1, - sym_override_modifier, - STATE(3907), 1, + STATE(4635), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5874), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4378), 18, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -266264,173 +266876,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66136] = 21, + [63836] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5817), 1, - anon_sym_GT_GT, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2632), 1, + STATE(2612), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5522), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5871), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5819), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 15, + ACTIONS(5524), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_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, - [66225] = 35, + [63897] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5138), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5827), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, + ACTIONS(5837), 1, anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2633), 1, + STATE(2613), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5878), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66342] = 7, + ACTIONS(4934), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [64002] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2634), 1, + STATE(2614), 1, sym_comment, - ACTIONS(2061), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5880), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2059), 13, + ACTIONS(4331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266444,10 +267027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 23, + ACTIONS(4856), 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, @@ -266468,69 +267056,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66403] = 7, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [64059] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2635), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5827), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2615), 1, sym_comment, - ACTIONS(5226), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5882), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5224), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5833), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 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, + [64156] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, anon_sym_GT_GT, + ACTIONS(5821), 1, anon_sym_AMP, + ACTIONS(5827), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2616), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4936), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(5804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5806), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5815), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 23, + ACTIONS(5833), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 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, + [64255] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 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(5808), 1, anon_sym_PERCENT, + ACTIONS(5810), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5827), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2617), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5829), 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(4934), 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, - [66464] = 5, + anon_sym_implements, + [64356] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2636), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5812), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2618), 1, sym_comment, - ACTIONS(4871), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -266539,246 +267322,345 @@ 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(4873), 30, - sym__automatic_semicolon, + ACTIONS(4934), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [66521] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_implements, + [64439] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5884), 1, - anon_sym_static, - ACTIONS(5886), 1, - anon_sym_readonly, - ACTIONS(5888), 1, - anon_sym_abstract, - STATE(2637), 1, - sym_comment, - STATE(3485), 1, - sym_accessibility_modifier, - STATE(3536), 1, - sym_override_modifier, - STATE(4179), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4554), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5812), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4378), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66606] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5203), 1, - anon_sym_LBRACK, - STATE(2638), 1, + STATE(2226), 1, + sym_type_arguments, + STATE(2619), 1, sym_comment, - ACTIONS(5206), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5890), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3568), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2059), 11, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(2065), 22, + ACTIONS(4934), 16, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [66673] = 10, + anon_sym_implements, + [64524] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - ACTIONS(5230), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - STATE(2639), 1, - sym_comment, - ACTIONS(5233), 2, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5894), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5236), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5224), 11, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2620), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5873), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [64639] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5827), 1, anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2621), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 22, + ACTIONS(4934), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [64732] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5827), 1, + anon_sym_LT, + ACTIONS(5837), 1, anon_sym_AMP_AMP, + ACTIONS(5839), 1, anon_sym_PIPE_PIPE, + STATE(2226), 1, + sym_type_arguments, + STATE(2622), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 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(5831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5829), 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(4934), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [66740] = 34, + anon_sym_implements, + [64839] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5815), 1, - anon_sym_PIPE_PIPE, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, ACTIONS(5817), 1, anon_sym_GT_GT, ACTIONS(5821), 1, @@ -266787,79 +267669,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5827), 1, anon_sym_LT, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, ACTIONS(5841), 1, anon_sym_QMARK_QMARK, ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2640), 1, + STATE(2623), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5138), 3, + ACTIONS(4987), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66855] = 34, + [64954] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5815), 1, - anon_sym_PIPE_PIPE, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, ACTIONS(5817), 1, anon_sym_GT_GT, ACTIONS(5821), 1, @@ -266868,144 +267750,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5827), 1, anon_sym_LT, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, ACTIONS(5841), 1, anon_sym_QMARK_QMARK, ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2641), 1, + STATE(2624), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5140), 3, + ACTIONS(4999), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66970] = 35, + [65069] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5138), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5827), 1, anon_sym_LT, - ACTIONS(5404), 1, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2625), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5833), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5001), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65184] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5414), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5827), 1, + anon_sym_LT, + ACTIONS(5837), 1, anon_sym_AMP_AMP, - ACTIONS(5416), 1, + ACTIONS(5839), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2642), 1, + STATE(2626), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5566), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(4989), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67087] = 5, + [65299] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2643), 1, + ACTIONS(5599), 1, + anon_sym_is, + STATE(2627), 1, sym_comment, - ACTIONS(4329), 13, + ACTIONS(4872), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267019,7 +267983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4849), 30, + ACTIONS(4874), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -267049,108 +268013,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [67144] = 36, + [65358] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, - ACTIONS(5898), 1, + ACTIONS(5875), 1, anon_sym_RBRACK, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2644), 1, + STATE(2628), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67263] = 8, + [65477] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, - anon_sym_EQ, - ACTIONS(4270), 1, - anon_sym_QMARK, - STATE(2645), 1, + ACTIONS(5877), 1, + anon_sym_is, + STATE(2629), 1, sym_comment, - ACTIONS(4268), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4135), 13, + ACTIONS(4858), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267164,10 +268119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(4860), 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, @@ -267188,526 +268148,705 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67326] = 36, + anon_sym_extends, + [65536] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(5900), 1, + ACTIONS(5879), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2646), 1, + STATE(2630), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + STATE(6258), 1, + aux_sym_array_repeat1, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67445] = 35, + [65655] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5138), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5422), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2627), 1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5881), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, - STATE(2647), 1, + STATE(2631), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5368), 2, + STATE(6270), 1, + aux_sym_array_repeat1, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5902), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67562] = 36, + [65774] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(5883), 1, + anon_sym_static, + ACTIONS(5885), 1, + anon_sym_readonly, + ACTIONS(5887), 1, + anon_sym_abstract, + STATE(2632), 1, + sym_comment, + STATE(3515), 1, + sym_accessibility_modifier, + STATE(3590), 1, + sym_override_modifier, + STATE(4130), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4561), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1042), 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(4385), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65859] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5795), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(5904), 1, + ACTIONS(5889), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2648), 1, + STATE(2633), 1, sym_comment, - STATE(5729), 1, + STATE(5733), 1, aux_sym_array_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67681] = 34, + [65978] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2222), 1, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5891), 1, + anon_sym_RBRACE, + STATE(2226), 1, sym_type_arguments, - STATE(2649), 1, + STATE(2634), 1, sym_comment, - STATE(6286), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5906), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [67796] = 36, + [66097] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5908), 1, - anon_sym_RBRACK, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2650), 1, + STATE(2635), 1, sym_comment, - STATE(5797), 1, - aux_sym_array_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67915] = 36, + ACTIONS(5624), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [66212] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5827), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5910), 1, - anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2651), 1, + STATE(2636), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(5831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5833), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5005), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66327] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2637), 1, + sym_comment, + ACTIONS(4315), 13, + anon_sym_STAR, + anon_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(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4876), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [66384] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5893), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2638), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5065), 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(5067), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68034] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [66459] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5813), 1, - anon_sym_AMP_AMP, - ACTIONS(5815), 1, - anon_sym_PIPE_PIPE, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, ACTIONS(5817), 1, anon_sym_GT_GT, ACTIONS(5821), 1, @@ -267716,150 +268855,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_PERCENT, - ACTIONS(5831), 1, - anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5827), 1, anon_sym_LT, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, ACTIONS(5841), 1, anon_sym_QMARK_QMARK, ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2652), 1, + STATE(2639), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5246), 3, + ACTIONS(5343), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(5829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68149] = 36, + [66574] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5912), 1, - anon_sym_RPAREN, - STATE(2222), 1, + ACTIONS(5896), 1, + anon_sym_LT, + STATE(2226), 1, sym_type_arguments, - STATE(2653), 1, + STATE(2640), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5326), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5328), 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, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68268] = 6, + anon_sym_implements, + [66657] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2654), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5899), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2641), 1, sym_comment, - ACTIONS(4983), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5319), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5273), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267870,19 +269008,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(5321), 26, + ACTIONS(5275), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -267896,586 +269028,659 @@ 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, - [68327] = 36, + anon_sym_implements, + [66734] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, - ACTIONS(5914), 1, - anon_sym_RBRACE, - STATE(2222), 1, + ACTIONS(5902), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, - STATE(2655), 1, + STATE(2642), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68446] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + [66853] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2643), 1, + sym_comment, + ACTIONS(4335), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4848), 30, sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5144), 1, anon_sym_RBRACE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(2656), 1, - sym_comment, - STATE(4686), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68527] = 36, + [66910] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(5916), 1, + ACTIONS(5904), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2657), 1, + STATE(2644), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5747), 1, + aux_sym_array_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68646] = 36, + [67029] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, - ACTIONS(5918), 1, - anon_sym_RPAREN, - STATE(2222), 1, + ACTIONS(5906), 1, + anon_sym_RBRACE, + STATE(2226), 1, sym_type_arguments, - STATE(2658), 1, + STATE(2645), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68765] = 34, + [67148] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5320), 1, + anon_sym_COMMA, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2659), 1, + STATE(2646), 1, sym_comment, - STATE(5704), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, + ACTIONS(5908), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5788), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [68880] = 36, + [67265] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(5920), 1, - anon_sym_RPAREN, - STATE(2222), 1, + ACTIONS(5910), 1, + anon_sym_RBRACK, + STATE(2226), 1, sym_type_arguments, - STATE(2660), 1, + STATE(2647), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + STATE(5892), 1, + aux_sym_array_repeat1, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68999] = 15, + [67384] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5320), 1, + anon_sym_COMMA, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5922), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2661), 1, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + STATE(2648), 1, sym_comment, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5065), 12, + ACTIONS(5374), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5067), 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, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5772), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [69076] = 18, + [67501] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5925), 1, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5912), 1, + anon_sym_RBRACK, + STATE(2226), 1, sym_type_arguments, - STATE(2662), 1, + STATE(2649), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + STATE(6317), 1, + aux_sym_array_repeat1, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5090), 11, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67620] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(4276), 1, + anon_sym_QMARK, + STATE(2650), 1, + sym_comment, + ACTIONS(4278), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4140), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -268484,12 +269689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 17, + ACTIONS(4144), 23, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + 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, @@ -268503,323 +269712,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [69159] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67683] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5320), 1, + anon_sym_COMMA, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5813), 1, + ACTIONS(5388), 1, anon_sym_AMP_AMP, - ACTIONS(5815), 1, + ACTIONS(5390), 1, anon_sym_PIPE_PIPE, - ACTIONS(5817), 1, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5821), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5823), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5825), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5829), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5831), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5833), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5841), 1, + ACTIONS(5416), 1, anon_sym_QMARK_QMARK, - ACTIONS(5843), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2663), 1, + STATE(2651), 1, sym_comment, - STATE(6286), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5809), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5811), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5819), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5827), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5914), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5109), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5835), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69274] = 36, + [67800] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(5827), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_COMMA, - ACTIONS(5928), 1, - anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2664), 1, + STATE(2652), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(5831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69393] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5930), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2665), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5155), 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(5157), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5086), 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(5829), 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, - [69468] = 36, + [67915] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(5933), 1, - anon_sym_RPAREN, - STATE(2222), 1, + ACTIONS(5916), 1, + anon_sym_RBRACK, + STATE(2226), 1, sym_type_arguments, - STATE(2666), 1, + STATE(2653), 1, sym_comment, - STATE(4675), 1, - aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + STATE(6317), 1, + aux_sym_array_repeat1, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69587] = 5, + [68034] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2667), 1, + STATE(2654), 1, sym_comment, - ACTIONS(4348), 13, + ACTIONS(5094), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268833,15 +269988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4875), 30, - sym__automatic_semicolon, + ACTIONS(5090), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -268862,65 +270015,66 @@ 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, - [69644] = 17, + [68093] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5009), 1, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5217), 1, - anon_sym_RBRACE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(2668), 1, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(4973), 1, + anon_sym_readonly, + STATE(2655), 1, sym_comment, - STATE(4686), 1, + STATE(3529), 1, + sym_override_modifier, + STATE(3892), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(4385), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -268928,343 +270082,453 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69725] = 36, + [68180] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, - ACTIONS(5935), 1, + ACTIONS(5922), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2669), 1, + STATE(2656), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69844] = 5, + [68299] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2670), 1, - sym_comment, - ACTIONS(5319), 13, - anon_sym_STAR, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, anon_sym_GT_GT, + ACTIONS(4906), 1, anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5924), 1, + anon_sym_RPAREN, + STATE(2226), 1, + sym_type_arguments, + STATE(2657), 1, + sym_comment, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68418] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5827), 1, + anon_sym_LT, + ACTIONS(5837), 1, anon_sym_AMP_AMP, + ACTIONS(5839), 1, anon_sym_PIPE_PIPE, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2658), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 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(5831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5007), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5829), 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, - [69901] = 35, + [68533] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5138), 1, + ACTIONS(5320), 1, anon_sym_COMMA, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5378), 1, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, anon_sym_GT_GT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_AMP, - ACTIONS(5384), 1, + ACTIONS(5398), 1, anon_sym_CARET, - ACTIONS(5386), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5390), 1, + ACTIONS(5404), 1, anon_sym_PERCENT, - ACTIONS(5392), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, anon_sym_QMARK_QMARK, ACTIONS(5420), 1, - anon_sym_satisfies, + anon_sym_BQUOTE, ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2671), 1, + STATE(2659), 1, sym_comment, - STATE(5704), 1, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(5374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(5394), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(5414), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5937), 2, + ACTIONS(5926), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(5410), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70018] = 36, + [68650] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, - ACTIONS(5939), 1, + ACTIONS(5928), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2672), 1, + STATE(2660), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70137] = 9, + [68769] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3568), 1, - anon_sym_extends, - STATE(2673), 1, + STATE(2661), 1, sym_comment, - ACTIONS(5203), 2, + ACTIONS(2094), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5930), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5206), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2059), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2092), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 26, - sym__automatic_semicolon, + ACTIONS(2098), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -269284,295 +270548,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70202] = 36, + [68830] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5795), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(5941), 1, + ACTIONS(5932), 1, anon_sym_RPAREN, - STATE(2222), 1, - sym_type_arguments, - STATE(2674), 1, - sym_comment, - STATE(6019), 1, - aux_sym_array_repeat1, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70321] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5943), 1, - anon_sym_RBRACK, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2675), 1, + STATE(2662), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - STATE(6328), 1, + STATE(6213), 1, aux_sym_array_repeat1, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70440] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5138), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5378), 1, - anon_sym_GT_GT, - ACTIONS(5382), 1, - anon_sym_AMP, - ACTIONS(5384), 1, - anon_sym_CARET, - ACTIONS(5386), 1, - anon_sym_PIPE, - ACTIONS(5390), 1, - anon_sym_PERCENT, - ACTIONS(5392), 1, - anon_sym_STAR_STAR, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5414), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2676), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5368), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5372), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5380), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5388), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5400), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5945), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5396), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70557] = 17, + [68949] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(5200), 1, + ACTIONS(5030), 1, anon_sym_RBRACE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2677), 1, + STATE(2663), 1, sym_comment, - STATE(4686), 1, + STATE(4635), 1, sym__property_name, - STATE(5720), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(5721), 1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -269596,43 +270695,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70638] = 9, + [69030] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, + ACTIONS(4266), 1, anon_sym_EQ, - ACTIONS(5236), 1, - anon_sym_extends, - STATE(2678), 1, + ACTIONS(4276), 1, + anon_sym_QMARK, + STATE(2664), 1, sym_comment, - ACTIONS(5230), 2, + ACTIONS(4269), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5233), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5224), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 26, - sym__automatic_semicolon, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -269652,126 +270750,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70703] = 36, + [69093] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5001), 1, + ACTIONS(4951), 1, anon_sym_COMMA, - ACTIONS(5947), 1, - anon_sym_RBRACK, - STATE(2222), 1, + ACTIONS(5934), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, - STATE(2679), 1, + STATE(2665), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, aux_sym_sequence_expression_repeat1, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70822] = 9, + [69212] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(5535), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, anon_sym_LBRACK, - STATE(2680), 1, - sym_comment, - ACTIONS(5538), 2, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5051), 6, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + STATE(2666), 1, + sym_comment, + STATE(2671), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5412), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5624), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4135), 11, + [69327] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5808), 1, + anon_sym_PERCENT, + ACTIONS(5810), 1, + anon_sym_STAR_STAR, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5827), 1, + anon_sym_LT, + ACTIONS(5837), 1, + anon_sym_AMP_AMP, + ACTIONS(5839), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2667), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5806), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5815), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5833), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5009), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69442] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2668), 1, + sym_comment, + ACTIONS(4862), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(4864), 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, @@ -269791,25 +271045,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70887] = 9, + anon_sym_extends, + anon_sym_is, + [69499] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, + ACTIONS(5035), 1, anon_sym_EQ, - ACTIONS(5051), 1, - anon_sym_extends, - STATE(2681), 1, + ACTIONS(5039), 1, + anon_sym_LBRACK, + STATE(2669), 1, sym_comment, - ACTIONS(5535), 2, + ACTIONS(5045), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5538), 3, + anon_sym_extends, + ACTIONS(5042), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(5033), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269820,12 +271076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 26, + ACTIONS(5037), 26, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, @@ -269847,78 +271103,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70952] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + [69564] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2670), 1, + sym_comment, + ACTIONS(5035), 2, anon_sym_EQ, - ACTIONS(5011), 1, + anon_sym_QMARK, + ACTIONS(5936), 5, anon_sym_COMMA, - ACTIONS(5316), 1, anon_sym_RBRACE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(2682), 1, - sym_comment, - STATE(4686), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5033), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71033] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5037), 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, + [69625] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2683), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + STATE(2671), 1, sym_comment, - ACTIONS(5266), 13, + STATE(3055), 2, + sym_template_string, + sym_arguments, + ACTIONS(4878), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269932,13 +271185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 29, + ACTIONS(4880), 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, @@ -269959,997 +271211,1033 @@ 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, - [71089] = 34, + [69688] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2627), 1, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(2684), 1, + STATE(2672), 1, sym_comment, - STATE(5704), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5246), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71203] = 35, + [69807] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5985), 1, - anon_sym_SEMI, - ACTIONS(5987), 1, - sym__automatic_semicolon, - STATE(2627), 1, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5940), 1, + anon_sym_RBRACK, + STATE(2226), 1, sym_type_arguments, - STATE(2685), 1, + STATE(2673), 1, sym_comment, - STATE(5704), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71319] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(2686), 1, - sym_comment, - STATE(4686), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5448), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5874), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71397] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5989), 1, - anon_sym_STAR, - ACTIONS(5991), 1, - anon_sym_async, - ACTIONS(5993), 1, - anon_sym_readonly, - STATE(2687), 1, - sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(3853), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5995), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71479] = 34, + [69926] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2627), 1, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5942), 1, + anon_sym_RBRACK, + STATE(2226), 1, sym_type_arguments, - STATE(2688), 1, + STATE(2674), 1, sym_comment, - STATE(5704), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5997), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71593] = 6, + [70045] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4983), 1, - anon_sym_extends, - STATE(2689), 1, - sym_comment, - ACTIONS(5319), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5321), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4930), 1, anon_sym_satisfies, - [71651] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5480), 1, - anon_sym_LBRACK, - STATE(2690), 1, - sym_comment, - ACTIONS(4853), 2, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5483), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(5944), 1, + anon_sym_RBRACK, + STATE(2226), 1, + sym_type_arguments, + STATE(2675), 1, + sym_comment, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70164] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4930), 1, anon_sym_satisfies, - [71713] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5450), 1, - anon_sym_LBRACK, - STATE(2691), 1, - sym_comment, - STATE(3907), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5874), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71793] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2692), 1, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2676), 1, sym_comment, - ACTIONS(3186), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3568), 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(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71849] = 35, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5946), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [70279] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, sym__ternary_qmark, - ACTIONS(5999), 1, - anon_sym_SEMI, - ACTIONS(6001), 1, - sym__automatic_semicolon, - STATE(2627), 1, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5948), 1, + anon_sym_RPAREN, + STATE(2226), 1, sym_type_arguments, - STATE(2693), 1, + STATE(2677), 1, sym_comment, - STATE(5704), 1, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71965] = 11, + [70398] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3568), 1, - anon_sym_extends, - ACTIONS(5203), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(6003), 1, - anon_sym_RPAREN, - STATE(2694), 1, - sym_comment, - ACTIONS(2061), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5206), 2, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5388), 1, + anon_sym_AMP_AMP, + ACTIONS(5390), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, + anon_sym_GT_GT, + ACTIONS(5396), 1, anon_sym_AMP, + ACTIONS(5398), 1, + anon_sym_CARET, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(5880), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2059), 11, + ACTIONS(5404), 1, + anon_sym_PERCENT, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5416), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2678), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5374), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5382), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5394), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5402), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5414), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5410), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70513] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4930), 1, anon_sym_satisfies, - [72033] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4853), 1, - anon_sym_extends, - ACTIONS(5480), 1, - anon_sym_LBRACK, - ACTIONS(6010), 1, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5950), 1, anon_sym_RPAREN, - STATE(2695), 1, + STATE(2226), 1, + sym_type_arguments, + STATE(2679), 1, sym_comment, - ACTIONS(5483), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6006), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6008), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4135), 11, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70632] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4930), 1, anon_sym_satisfies, - [72101] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5230), 1, - anon_sym_LBRACK, - ACTIONS(5236), 1, - anon_sym_extends, - ACTIONS(6013), 1, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5952), 1, anon_sym_RPAREN, - STATE(2696), 1, - sym_comment, - ACTIONS(5226), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5233), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5882), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5224), 11, + STATE(2226), 1, + sym_type_arguments, + STATE(2680), 1, + sym_comment, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70751] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5954), 1, + anon_sym_RBRACE, + STATE(2226), 1, + sym_type_arguments, + STATE(2681), 1, + sym_comment, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72169] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70870] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6016), 1, - anon_sym_STAR, - ACTIONS(6018), 1, - anon_sym_async, - ACTIONS(6020), 1, - anon_sym_readonly, - STATE(2697), 1, - sym_comment, - STATE(3524), 1, - sym_override_modifier, - STATE(3870), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6022), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72251] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2698), 1, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5956), 1, + anon_sym_RPAREN, + STATE(2226), 1, + sym_type_arguments, + STATE(2682), 1, sym_comment, - ACTIONS(4843), 13, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4845), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70989] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4898), 1, anon_sym_AMP_AMP, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, + anon_sym_AMP, + ACTIONS(4908), 1, anon_sym_CARET, + ACTIONS(4910), 1, + anon_sym_PIPE, + ACTIONS(4914), 1, anon_sym_PERCENT, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(5958), 1, + anon_sym_RPAREN, + STATE(2226), 1, + sym_type_arguments, + STATE(2683), 1, + sym_comment, + STATE(4654), 1, + aux_sym_sequence_expression_repeat1, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4894), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4922), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72307] = 17, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71108] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6024), 1, + ACTIONS(5960), 1, anon_sym_static, - ACTIONS(6026), 1, + ACTIONS(5962), 1, anon_sym_readonly, - ACTIONS(6028), 1, + ACTIONS(5964), 1, anon_sym_abstract, - STATE(2699), 1, + STATE(2684), 1, sym_comment, - STATE(3572), 1, + STATE(3567), 1, sym_override_modifier, - STATE(4217), 1, + STATE(4225), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -270958,7 +272246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4378), 20, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -270979,312 +272267,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [72387] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [71188] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(6030), 1, - anon_sym_STAR, - ACTIONS(6032), 1, - anon_sym_async, - ACTIONS(6036), 1, - anon_sym_abstract, - STATE(2700), 1, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + STATE(2671), 1, + sym_type_arguments, + STATE(2685), 1, sym_comment, - STATE(3825), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6034), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(4936), 2, anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72465] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [71288] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6040), 1, - anon_sym_RBRACE, - STATE(2701), 1, - sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72555] = 18, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6030), 1, - anon_sym_STAR, - ACTIONS(6032), 1, - anon_sym_async, - ACTIONS(6042), 1, - anon_sym_readonly, - STATE(2702), 1, - sym_comment, - STATE(3528), 1, - sym_override_modifier, - STATE(3829), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6034), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72637] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2703), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2686), 1, sym_comment, - ACTIONS(3200), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5001), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71402] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, anon_sym_GT_GT, + ACTIONS(5974), 1, anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2687), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(4999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3536), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71516] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, anon_sym_AMP_AMP, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, anon_sym_PERCENT, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2688), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5086), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 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, - [72693] = 22, + [71630] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(164), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - STATE(2704), 1, + ACTIONS(6040), 1, + anon_sym_COMMA, + ACTIONS(6042), 1, + anon_sym_RBRACE, + STATE(2689), 1, sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, + STATE(5860), 1, aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(7236), 1, + sym__property_name, + STATE(7272), 1, + sym__destructuring_pattern, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, + STATE(5815), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6038), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -271292,112 +272644,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [72783] = 34, + [71712] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5420), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2705), 1, + STATE(2690), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5009), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6044), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72897] = 8, + [71826] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(6048), 1, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, anon_sym_PIPE, - ACTIONS(6050), 1, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2691), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5009), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71940] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4860), 1, anon_sym_extends, - STATE(2706), 1, + STATE(2692), 1, sym_comment, - ACTIONS(5178), 11, + ACTIONS(5082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5180), 28, + ACTIONS(5084), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271426,32 +272856,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72959] = 8, + [71998] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, - anon_sym_AMP, - ACTIONS(6048), 1, - anon_sym_PIPE, - ACTIONS(6050), 1, - anon_sym_extends, - STATE(2707), 1, + STATE(2693), 1, sym_comment, - ACTIONS(5182), 11, + ACTIONS(5225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5184), 28, + ACTIONS(5227), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271480,94 +272906,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73021] = 34, + anon_sym_extends, + [72054] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, + STATE(2694), 1, + sym_comment, + ACTIONS(2092), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2708), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5591), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2098), 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, - ACTIONS(5949), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, + anon_sym_LBRACK, + 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(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 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(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73135] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72112] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6044), 1, + anon_sym_static, + ACTIONS(6046), 1, + anon_sym_readonly, + ACTIONS(6048), 1, + anon_sym_abstract, + STATE(2695), 1, + sym_comment, + STATE(3548), 1, + sym_override_modifier, + STATE(4123), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72192] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2709), 1, + STATE(2696), 1, sym_comment, - ACTIONS(3210), 13, + ACTIONS(5225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271581,7 +273043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3420), 29, + ACTIONS(5227), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271611,41 +273073,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73191] = 8, + [72248] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2710), 1, + STATE(2697), 1, sym_comment, - ACTIONS(5538), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5535), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5051), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4135), 11, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(5269), 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, @@ -271665,122 +273123,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73253] = 34, + anon_sym_extends, + [72304] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(4899), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(4903), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(4907), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2711), 1, + STATE(2698), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4879), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5306), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4897), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4905), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73367] = 9, + [72418] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4224), 1, - anon_sym_EQ, - ACTIONS(5051), 1, - anon_sym_extends, - STATE(2712), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6050), 1, + anon_sym_STAR, + ACTIONS(6052), 1, + anon_sym_async, + ACTIONS(6056), 1, + anon_sym_abstract, + STATE(2699), 1, sym_comment, - ACTIONS(5535), 2, + STATE(3796), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72496] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2700), 1, + sym_comment, + ACTIONS(3247), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 25, + ACTIONS(3407), 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, @@ -271800,381 +273316,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73431] = 34, + anon_sym_extends, + [72552] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(2701), 1, + sym_comment, + ACTIONS(5267), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5269), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, - anon_sym_GT_GT, - ACTIONS(4899), 1, - anon_sym_AMP, - ACTIONS(4901), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4903), 1, - anon_sym_PIPE, - ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2713), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5564), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73545] = 15, + anon_sym_extends, + [72608] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(6052), 1, - anon_sym_LT, - STATE(2627), 1, - sym_type_arguments, - STATE(2714), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5065), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, anon_sym_GT_GT, + ACTIONS(5974), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5067), 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, + ACTIONS(5976), 1, anon_sym_CARET, + ACTIONS(5980), 1, anon_sym_PERCENT, + ACTIONS(5982), 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_satisfies, - [73621] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5786), 1, - anon_sym_QMARK_DOT, - STATE(2715), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(2153), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_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(5984), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2155), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5992), 1, anon_sym_AMP_AMP, + ACTIONS(5994), 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, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73685] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(6055), 1, - anon_sym_LT, - STATE(2627), 1, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, sym_type_arguments, - STATE(2716), 1, + STATE(2702), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4989), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5090), 11, + ACTIONS(5966), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 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(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73767] = 34, + [72722] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2717), 1, + STATE(2703), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5109), 2, + ACTIONS(4987), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73881] = 8, + [72836] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2718), 1, + STATE(2704), 1, sym_comment, - ACTIONS(5556), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5553), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5363), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5549), 11, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5551), 22, + ACTIONS(5286), 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, @@ -272194,157 +273578,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73943] = 35, + anon_sym_extends, + [72892] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6050), 1, + anon_sym_STAR, + ACTIONS(6052), 1, + anon_sym_async, + ACTIONS(6058), 1, + anon_sym_readonly, + STATE(2705), 1, + sym_comment, + STATE(3526), 1, + sym_override_modifier, + STATE(3818), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72974] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + anon_sym_BQUOTE, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - ACTIONS(6058), 1, - anon_sym_SEMI, - ACTIONS(6060), 1, - sym__automatic_semicolon, - STATE(2627), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + STATE(2671), 1, sym_type_arguments, - STATE(2719), 1, + STATE(2706), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74059] = 14, + ACTIONS(4934), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [73080] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(6062), 1, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2720), 1, + STATE(2707), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5155), 12, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 20, + ACTIONS(4934), 11, 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [74133] = 6, + [73172] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - STATE(2721), 1, + STATE(2708), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272358,16 +273809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 28, + ACTIONS(5286), 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, @@ -272387,18 +273838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74191] = 7, + anon_sym_extends, + [73228] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5776), 1, - sym__automatic_semicolon, - STATE(2722), 1, + STATE(2709), 1, sym_comment, - ACTIONS(2057), 13, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272412,7 +273860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2113), 27, + ACTIONS(5286), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -272440,14 +273889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74251] = 5, + anon_sym_extends, + [73284] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2723), 1, + STATE(2710), 1, sym_comment, - ACTIONS(3222), 13, + ACTIONS(5302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272461,7 +273911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 29, + ACTIONS(5304), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272491,41 +273941,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74307] = 8, + [73340] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5363), 1, - anon_sym_extends, - STATE(2724), 1, + STATE(2711), 1, sym_comment, - ACTIONS(5553), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5556), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5549), 10, + ACTIONS(5308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5551), 26, + ACTIONS(5310), 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, @@ -272545,40 +273991,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74369] = 7, + anon_sym_extends, + [73396] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2725), 1, + STATE(2712), 1, sym_comment, - ACTIONS(4965), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4967), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4135), 10, + ACTIONS(5312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 26, + ACTIONS(5314), 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, @@ -272598,16 +274042,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74429] = 5, + anon_sym_extends, + [73452] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2726), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(6060), 1, + anon_sym_LT, + STATE(2671), 1, + sym_type_arguments, + STATE(2713), 1, sym_comment, - ACTIONS(3232), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -272616,126 +274090,123 @@ 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(3448), 29, + ACTIONS(4934), 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, - anon_sym_extends, - [74485] = 8, + [73536] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, - anon_sym_AMP, - ACTIONS(6048), 1, - anon_sym_PIPE, - ACTIONS(6050), 1, - anon_sym_extends, - STATE(2727), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(6060), 1, + anon_sym_LT, + STATE(2671), 1, + sym_type_arguments, + STATE(2714), 1, sym_comment, - ACTIONS(5080), 11, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5082), 28, + ACTIONS(4934), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [74547] = 6, + [73618] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2728), 1, - sym_comment, - ACTIONS(4983), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4874), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5319), 13, + STATE(2715), 1, + sym_comment, + ACTIONS(5530), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5533), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(5321), 25, + ACTIONS(4144), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -272755,211 +274226,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74605] = 35, + [73680] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + anon_sym_BQUOTE, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - ACTIONS(6065), 1, - anon_sym_SEMI, - ACTIONS(6067), 1, - sym__automatic_semicolon, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2729), 1, + STATE(2716), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74721] = 5, + ACTIONS(4934), 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, + [73778] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2730), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + STATE(2671), 1, + sym_type_arguments, + STATE(2717), 1, sym_comment, - ACTIONS(5086), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5088), 29, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74777] = 5, + [73874] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2731), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(6060), 1, + anon_sym_LT, + STATE(2671), 1, + sym_type_arguments, + STATE(2718), 1, sym_comment, - ACTIONS(5097), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(5099), 29, + ACTIONS(4934), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_satisfies, + [73958] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5996), 1, + anon_sym_PIPE, + STATE(2671), 1, + sym_type_arguments, + STATE(2719), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_extends, - [74833] = 5, + [74062] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2732), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2720), 1, sym_comment, - ACTIONS(5097), 13, + ACTIONS(5082), 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(5099), 29, + ACTIONS(5084), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272988,15 +274563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74889] = 5, + [74124] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2733), 1, + STATE(2721), 1, sym_comment, - ACTIONS(5097), 13, + ACTIONS(5253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273010,7 +274584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 29, + ACTIONS(5255), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273040,14 +274614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74945] = 5, + [74180] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2734), 1, + STATE(2722), 1, sym_comment, - ACTIONS(5101), 13, + ACTIONS(5245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273061,7 +274635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 29, + ACTIONS(5247), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273091,45 +274665,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75001] = 12, + [74236] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(5230), 1, - anon_sym_LBRACK, - ACTIONS(5236), 1, - anon_sym_extends, - ACTIONS(5296), 1, - anon_sym_QMARK, - ACTIONS(5882), 1, - anon_sym_COLON, - STATE(2735), 1, + STATE(2723), 1, sym_comment, - ACTIONS(5233), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5894), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5224), 11, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 22, + ACTIONS(4144), 28, 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_AMP_AMP, @@ -273149,68 +274717,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75071] = 8, + [74294] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2736), 1, - sym_comment, - ACTIONS(5483), 2, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5996), 1, anon_sym_PIPE, - ACTIONS(5480), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4853), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4135), 11, + STATE(2671), 1, + sym_type_arguments, + STATE(2724), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 8, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [75133] = 5, + [74396] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2737), 1, + STATE(2725), 1, sym_comment, - ACTIONS(5101), 13, + ACTIONS(5225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273224,7 +274812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 29, + ACTIONS(5227), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273254,14 +274842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75189] = 5, + [74452] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2738), 1, + STATE(2726), 1, sym_comment, - ACTIONS(5101), 13, + ACTIONS(5241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273275,7 +274863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 29, + ACTIONS(5243), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273305,65 +274893,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75245] = 5, + [74508] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2739), 1, - sym_comment, - ACTIONS(5113), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5115), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, anon_sym_AMP_AMP, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, anon_sym_PERCENT, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2727), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5005), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 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, - [75301] = 5, + [74622] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2740), 1, + STATE(2728), 1, sym_comment, - ACTIONS(5113), 13, + ACTIONS(3249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273377,7 +274994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5115), 29, + ACTIONS(3409), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273407,21 +275024,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75357] = 8, + [74678] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, ACTIONS(6069), 1, - sym__automatic_semicolon, - STATE(2741), 1, + anon_sym_LT, + STATE(2671), 1, + sym_type_arguments, + STATE(2729), 1, sym_comment, - ACTIONS(2113), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2059), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5273), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273432,18 +275064,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(2065), 25, + ACTIONS(5275), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -273457,41 +275084,127 @@ 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, + [74754] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - [75419] = 5, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + ACTIONS(6072), 1, + anon_sym_SEMI, + ACTIONS(6074), 1, + sym__automatic_semicolon, + STATE(2671), 1, + sym_type_arguments, + STATE(2730), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74870] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2742), 1, + ACTIONS(3267), 1, + anon_sym_QMARK, + ACTIONS(3459), 1, + anon_sym_extends, + ACTIONS(5024), 1, + anon_sym_LBRACK, + ACTIONS(5930), 1, + anon_sym_COLON, + STATE(2731), 1, sym_comment, - ACTIONS(5113), 13, + ACTIONS(5027), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5849), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2092), 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(5115), 29, - sym__automatic_semicolon, + ACTIONS(2098), 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, @@ -273511,38 +275224,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75475] = 5, + [74940] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2743), 1, - sym_comment, - ACTIONS(5132), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, anon_sym_GT_GT, + ACTIONS(5974), 1, anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + ACTIONS(6076), 1, + anon_sym_SEMI, + ACTIONS(6078), 1, + sym__automatic_semicolon, + STATE(2671), 1, + sym_type_arguments, + STATE(2732), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 29, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75056] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2733), 1, + sym_comment, + ACTIONS(5146), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5144), 7, sym__automatic_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_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4140), 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(4144), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273562,38 +275358,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75531] = 5, + [75116] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2744), 1, + ACTIONS(5035), 1, + anon_sym_EQ, + ACTIONS(5039), 1, + anon_sym_LBRACK, + ACTIONS(5045), 1, + anon_sym_extends, + ACTIONS(5074), 1, + anon_sym_QMARK, + ACTIONS(5936), 1, + anon_sym_COLON, + STATE(2734), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5042), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5845), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5033), 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(5164), 29, - sym__automatic_semicolon, + ACTIONS(5037), 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, @@ -273613,38 +275416,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75587] = 5, + [75186] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2745), 1, + ACTIONS(5740), 1, + anon_sym_LBRACK, + STATE(2735), 1, sym_comment, - ACTIONS(5166), 13, + ACTIONS(5208), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5743), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5653), 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(5168), 29, - sym__automatic_semicolon, + ACTIONS(5655), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273664,15 +275470,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75643] = 5, + [75248] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2746), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(6060), 1, + anon_sym_LT, + STATE(2671), 1, + sym_type_arguments, + STATE(2736), 1, sym_comment, - ACTIONS(5170), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273683,47 +275512,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(5172), 29, + ACTIONS(4934), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75699] = 5, + [75326] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2747), 1, + STATE(2737), 1, sym_comment, - ACTIONS(5174), 13, + ACTIONS(5221), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273737,7 +275553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 29, + ACTIONS(5223), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273767,14 +275583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75755] = 5, + [75382] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2748), 1, + STATE(2738), 1, sym_comment, - ACTIONS(5174), 13, + ACTIONS(5345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273788,7 +275604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 29, + ACTIONS(5347), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273818,14 +275634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75811] = 5, + [75438] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2749), 1, + STATE(2739), 1, sym_comment, - ACTIONS(5174), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273839,7 +275655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 29, + ACTIONS(5351), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273869,14 +275685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75867] = 5, + [75494] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2750), 1, + STATE(2740), 1, sym_comment, - ACTIONS(5186), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273890,7 +275706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 29, + ACTIONS(5351), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273920,14 +275736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75923] = 5, + [75550] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2751), 1, + STATE(2741), 1, sym_comment, - ACTIONS(5186), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273941,7 +275757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 29, + ACTIONS(5351), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273971,14 +275787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75979] = 5, + [75606] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2752), 1, + STATE(2742), 1, sym_comment, - ACTIONS(5186), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273992,7 +275808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 29, + ACTIONS(5355), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274022,78 +275838,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76035] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4564), 1, - anon_sym_LBRACK, - ACTIONS(6073), 1, - anon_sym_COMMA, - ACTIONS(6075), 1, - anon_sym_RBRACE, - STATE(2753), 1, - sym_comment, - STATE(6211), 1, - aux_sym_object_pattern_repeat1, - STATE(7093), 1, - sym__property_name, - STATE(7181), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - STATE(6203), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6071), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76117] = 5, + [75662] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2754), 1, + ACTIONS(6080), 1, + sym__automatic_semicolon, + STATE(2743), 1, sym_comment, - ACTIONS(5220), 13, + ACTIONS(2258), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2092), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274107,14 +275866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5222), 29, - sym__automatic_semicolon, + ACTIONS(2098), 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, @@ -274136,15 +275892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [76173] = 5, + [75724] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2755), 1, + STATE(2744), 1, sym_comment, - ACTIONS(5220), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274158,7 +275913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5222), 29, + ACTIONS(5355), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274188,14 +275943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76229] = 5, + [75780] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2756), 1, + STATE(2745), 1, sym_comment, - ACTIONS(5220), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274209,7 +275964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5222), 29, + ACTIONS(5355), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274239,14 +275994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76285] = 5, + [75836] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2757), 1, + STATE(2746), 1, sym_comment, - ACTIONS(5238), 13, + ACTIONS(5217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274260,7 +276015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5240), 29, + ACTIONS(5219), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274290,101 +276045,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76341] = 11, + [75892] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_QMARK, - ACTIONS(4254), 1, - anon_sym_EQ, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(2758), 1, + STATE(2747), 1, sym_comment, - ACTIONS(4257), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5051), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5538), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 11, + ACTIONS(5217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 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, - [76409] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4853), 1, - anon_sym_extends, - ACTIONS(5480), 1, - anon_sym_LBRACK, - ACTIONS(6081), 1, - anon_sym_RPAREN, - STATE(2759), 1, - sym_comment, - ACTIONS(5483), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6077), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6079), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4135), 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(4139), 22, + ACTIONS(5219), 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, @@ -274404,56 +276095,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76477] = 22, + anon_sym_extends, + [75948] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6082), 1, anon_sym_STAR, ACTIONS(6084), 1, - anon_sym_RBRACE, - STATE(2760), 1, + anon_sym_async, + ACTIONS(6086), 1, + anon_sym_readonly, + STATE(2748), 1, sym_comment, - STATE(3533), 1, + STATE(3537), 1, sym_override_modifier, - STATE(4640), 1, + STATE(3895), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -274472,14 +276160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76567] = 5, + [76030] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2761), 1, + STATE(2749), 1, sym_comment, - ACTIONS(4985), 13, + ACTIONS(5217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274493,7 +276181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4987), 29, + ACTIONS(5219), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274523,117 +276211,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76623] = 5, + [76086] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2762), 1, - sym_comment, - ACTIONS(5349), 13, - anon_sym_STAR, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, + anon_sym_AMP_AMP, + ACTIONS(6008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6010), 1, anon_sym_GT_GT, + ACTIONS(6014), 1, anon_sym_AMP, + ACTIONS(6016), 1, + anon_sym_CARET, + ACTIONS(6018), 1, anon_sym_PIPE, + ACTIONS(6022), 1, + anon_sym_PERCENT, + ACTIONS(6024), 1, + anon_sym_STAR_STAR, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2750), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4890), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5351), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76200] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, anon_sym_AMP_AMP, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, anon_sym_PERCENT, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2751), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [76679] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - STATE(2763), 1, - sym_comment, - ACTIONS(5224), 13, + ACTIONS(5007), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76314] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5384), 1, anon_sym_LBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, anon_sym_AMP_AMP, + ACTIONS(5994), 1, anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + ACTIONS(6090), 1, + anon_sym_SEMI, + ACTIONS(6092), 1, + sym__automatic_semicolon, + STATE(2671), 1, + sym_type_arguments, + STATE(2752), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 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(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 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, - [76737] = 5, + [76430] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2764), 1, + STATE(2753), 1, sym_comment, - ACTIONS(5327), 13, + ACTIONS(5057), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274647,7 +276473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5329), 29, + ACTIONS(5059), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274677,34 +276503,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76793] = 12, + [76486] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3186), 1, - anon_sym_QMARK, - ACTIONS(3568), 1, - anon_sym_extends, - ACTIONS(5203), 1, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5880), 1, - anon_sym_COLON, - STATE(2765), 1, + STATE(2754), 1, sym_comment, - ACTIONS(5206), 2, + ACTIONS(5114), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5517), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5890), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2059), 11, + ACTIONS(4140), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -274712,10 +276530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 22, + ACTIONS(4144), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -274735,52 +276557,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76863] = 18, + [76548] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, + anon_sym_AMP_AMP, + ACTIONS(6008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, + anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, + anon_sym_PERCENT, + ACTIONS(6024), 1, + anon_sym_STAR_STAR, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2755), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5160), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76662] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6086), 1, + ACTIONS(6094), 1, anon_sym_STAR, - ACTIONS(6088), 1, - anon_sym_async, - ACTIONS(6090), 1, - anon_sym_readonly, - STATE(2766), 1, + ACTIONS(6096), 1, + anon_sym_RBRACE, + STATE(2756), 1, sym_comment, - STATE(3529), 1, + STATE(3519), 1, sym_override_modifier, - STATE(3903), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6092), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 18, + ACTIONS(2907), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -274799,32 +276705,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76945] = 8, + [76752] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, - anon_sym_AMP, - ACTIONS(6048), 1, - anon_sym_PIPE, - ACTIONS(6050), 1, - anon_sym_extends, - STATE(2767), 1, + ACTIONS(6098), 1, + anon_sym_LBRACK, + STATE(2757), 1, sym_comment, - ACTIONS(5312), 11, + ACTIONS(5360), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5314), 28, + ACTIONS(5362), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274833,7 +276737,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, @@ -274853,14 +276756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77007] = 5, + anon_sym_extends, + [76810] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2768), 1, + STATE(2758), 1, sym_comment, - ACTIONS(5312), 13, + ACTIONS(3251), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274874,7 +276778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5314), 29, + ACTIONS(3411), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274904,14 +276808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77063] = 5, + [76866] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2769), 1, + ACTIONS(6100), 1, + anon_sym_extends, + STATE(2759), 1, sym_comment, - ACTIONS(5270), 13, + ACTIONS(5337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274925,7 +276831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 29, + ACTIONS(5339), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274954,33 +276860,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77119] = 8, + [76924] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, - anon_sym_AMP, - ACTIONS(6048), 1, - anon_sym_PIPE, - ACTIONS(6050), 1, - anon_sym_extends, - STATE(2770), 1, + STATE(2760), 1, sym_comment, - ACTIONS(5248), 11, + ACTIONS(5124), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5250), 28, + ACTIONS(5126), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275009,28 +276910,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77181] = 5, + anon_sym_extends, + [76980] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2771), 1, + ACTIONS(5290), 1, + anon_sym_extends, + ACTIONS(6098), 1, + anon_sym_LBRACK, + STATE(2761), 1, sym_comment, - ACTIONS(5274), 13, + ACTIONS(5288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5333), 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(5276), 29, + ACTIONS(5335), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275039,7 +276946,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, @@ -275059,29 +276965,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77237] = 5, + [77042] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2772), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2762), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5294), 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(5264), 29, + ACTIONS(5296), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275110,38 +277019,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77293] = 5, + [77104] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2773), 1, + ACTIONS(4874), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_LBRACK, + ACTIONS(6106), 1, + anon_sym_RPAREN, + STATE(2763), 1, sym_comment, - ACTIONS(5256), 13, + ACTIONS(5533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6102), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6104), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4140), 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(5258), 29, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -275161,15 +277076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77349] = 5, + [77172] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2774), 1, + STATE(2764), 1, sym_comment, - ACTIONS(5302), 13, + ACTIONS(5280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275183,7 +277097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5304), 29, + ACTIONS(5282), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275213,14 +277127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77405] = 5, + [77228] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2775), 1, + STATE(2765), 1, sym_comment, - ACTIONS(5256), 13, + ACTIONS(5206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275234,7 +277148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5258), 29, + ACTIONS(5208), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275264,14 +277178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77461] = 5, + [77284] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2776), 1, + STATE(2766), 1, sym_comment, - ACTIONS(5302), 13, + ACTIONS(5146), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275285,7 +277199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5304), 29, + ACTIONS(5144), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275315,20 +277229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77517] = 5, + [77340] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2777), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + STATE(2767), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5202), 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, @@ -275336,7 +277251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 29, + ACTIONS(5204), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275366,14 +277281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77573] = 5, + [77398] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2778), 1, + STATE(2768), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(5364), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275387,7 +277302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 29, + ACTIONS(5366), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275417,28 +277332,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77629] = 5, + [77454] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2779), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2769), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(5014), 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(5254), 29, + ACTIONS(5016), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275467,15 +277386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77685] = 5, + [77516] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2780), 1, + STATE(2770), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275489,7 +277407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 29, + ACTIONS(5269), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275519,14 +277437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77741] = 5, + [77572] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2781), 1, + STATE(2771), 1, sym_comment, - ACTIONS(5209), 13, + ACTIONS(5096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275540,7 +277458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 29, + ACTIONS(5098), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275570,28 +277488,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77797] = 5, + [77628] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2782), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2772), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5020), 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(5215), 29, + ACTIONS(5022), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275620,185 +277542,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77853] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, + [77690] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6094), 1, - anon_sym_RBRACE, - STATE(2783), 1, - sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, - sym__property_name, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77943] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2784), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2773), 1, sym_comment, - ACTIONS(5209), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 29, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6109), 2, sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77804] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5384), 1, anon_sym_LBRACK, + ACTIONS(5386), 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, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, anon_sym_CARET, + ACTIONS(5980), 1, anon_sym_PERCENT, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6000), 1, + sym__ternary_qmark, + ACTIONS(6111), 1, + anon_sym_SEMI, + ACTIONS(6113), 1, + sym__automatic_semicolon, + STATE(2671), 1, + sym_type_arguments, + STATE(2774), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [77999] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2785), 1, - sym_comment, - ACTIONS(5151), 13, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5153), 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(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 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, - [78055] = 5, + [77920] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2786), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5147), 13, + ACTIONS(5100), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275812,7 +277724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5149), 29, + ACTIONS(5102), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275842,92 +277754,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78111] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6096), 1, - anon_sym_STAR, - ACTIONS(6098), 1, - anon_sym_async, - ACTIONS(6102), 1, - anon_sym_abstract, - STATE(2787), 1, - sym_comment, - STATE(3807), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6100), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78189] = 6, + [77976] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, - anon_sym_EQ, - STATE(2788), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2776), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(5368), 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(4139), 28, + ACTIONS(5370), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275956,411 +277808,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78247] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6096), 1, - anon_sym_STAR, - ACTIONS(6098), 1, - anon_sym_async, - ACTIONS(6104), 1, - anon_sym_readonly, - STATE(2789), 1, - sym_comment, - STATE(3521), 1, - sym_override_modifier, - STATE(3833), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6100), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78329] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_static, - ACTIONS(6108), 1, - anon_sym_readonly, - ACTIONS(6110), 1, - anon_sym_abstract, - STATE(2790), 1, - sym_comment, - STATE(3567), 1, - sym_override_modifier, - STATE(4209), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78409] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6112), 1, - anon_sym_STAR, - ACTIONS(6114), 1, - anon_sym_async, - ACTIONS(6118), 1, - anon_sym_abstract, - STATE(2791), 1, - sym_comment, - STATE(3822), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6116), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78487] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6112), 1, - anon_sym_STAR, - ACTIONS(6114), 1, - anon_sym_async, - ACTIONS(6120), 1, - anon_sym_readonly, - STATE(2792), 1, - sym_comment, - STATE(3518), 1, - sym_override_modifier, - STATE(3822), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6116), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78569] = 34, + [78038] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2793), 1, + STATE(2777), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5086), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6122), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78683] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4564), 1, - anon_sym_LBRACK, - ACTIONS(6073), 1, - anon_sym_COMMA, - ACTIONS(6126), 1, - anon_sym_RBRACE, - STATE(2794), 1, - sym_comment, - STATE(5685), 1, - aux_sym_object_pattern_repeat1, - STATE(7093), 1, - sym__property_name, - STATE(7181), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - STATE(5680), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6124), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78765] = 5, + [78152] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2795), 1, + STATE(2778), 1, sym_comment, - ACTIONS(4935), 13, + ACTIONS(5074), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276374,7 +277909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4937), 29, + ACTIONS(5045), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -276404,118 +277939,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78821] = 5, + [78208] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2796), 1, - sym_comment, - ACTIONS(4949), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5384), 1, anon_sym_LBRACK, + ACTIONS(5386), 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(5420), 1, anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - anon_sym_extends, - [78877] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2797), 1, - sym_comment, - ACTIONS(4949), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_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(6115), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 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, + STATE(2671), 1, + sym_type_arguments, + STATE(2779), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [78933] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2798), 1, - sym_comment, - ACTIONS(4969), 13, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5326), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -276524,21 +277984,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(4971), 29, + ACTIONS(5328), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -276552,19 +278003,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, - anon_sym_extends, - [78989] = 5, + [78290] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2799), 1, + STATE(2780), 1, sym_comment, - ACTIONS(4969), 13, + ACTIONS(3267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276578,7 +278024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 29, + ACTIONS(3459), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -276608,171 +278054,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79045] = 8, + [78346] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(2800), 1, - sym_comment, - ACTIONS(5051), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 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(4139), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + ACTIONS(4896), 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, - [79107] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2801), 1, + STATE(2781), 1, sym_comment, - STATE(6286), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5140), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + ACTIONS(6118), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79221] = 5, + [78460] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2802), 1, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(4276), 1, + anon_sym_QMARK, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(2782), 1, sym_comment, - ACTIONS(4993), 13, + ACTIONS(4278), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5114), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(4995), 29, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -276792,39 +278191,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79277] = 6, + [78528] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, - anon_sym_AMP, - STATE(2803), 1, + ACTIONS(4874), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_LBRACK, + ACTIONS(6125), 1, + anon_sym_RPAREN, + STATE(2783), 1, sym_comment, - ACTIONS(4989), 12, + ACTIONS(5533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6120), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6122), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4140), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4991), 29, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -276844,15 +278248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79335] = 5, + [78596] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2804), 1, + STATE(2784), 1, sym_comment, - ACTIONS(4973), 13, + ACTIONS(4941), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276866,7 +278269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4975), 29, + ACTIONS(4943), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -276896,32 +278299,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79391] = 8, + [78652] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, - anon_sym_AMP, - ACTIONS(6048), 1, - anon_sym_PIPE, - ACTIONS(6050), 1, - anon_sym_extends, - STATE(2805), 1, + ACTIONS(6129), 1, + anon_sym_DOT, + STATE(2785), 1, sym_comment, - ACTIONS(4939), 11, + ACTIONS(4945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 28, + ACTIONS(4947), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -276931,7 +278332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -276950,28 +278350,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79453] = 5, + anon_sym_extends, + [78710] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2806), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2786), 1, sym_comment, - ACTIONS(4939), 13, + ACTIONS(5076), 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(4941), 29, + ACTIONS(5078), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277000,17 +278405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79509] = 6, + [78772] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5194), 1, - anon_sym_DOT, - STATE(2807), 1, + ACTIONS(5035), 1, + anon_sym_EQ, + STATE(2787), 1, sym_comment, - ACTIONS(5190), 13, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277024,7 +278428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 28, + ACTIONS(5037), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277034,6 +278438,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, @@ -277052,249 +278457,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79567] = 6, + [78830] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5197), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - STATE(2808), 1, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + STATE(2671), 1, + sym_type_arguments, + STATE(2788), 1, sym_comment, - ACTIONS(5190), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(5192), 28, + ACTIONS(4934), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_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, - [79625] = 34, + [78918] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2809), 1, + STATE(2789), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6164), 2, + ACTIONS(6131), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79739] = 5, + [79032] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2810), 1, - sym_comment, - ACTIONS(5242), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5244), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, anon_sym_AMP_AMP, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, anon_sym_PERCENT, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2790), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [79795] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2811), 1, - sym_comment, - ACTIONS(5298), 13, + ACTIONS(5320), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5300), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79146] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5384), 1, anon_sym_LBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, anon_sym_AMP_AMP, + ACTIONS(5994), 1, anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2791), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5160), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79260] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(164), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, + anon_sym_LBRACK, + ACTIONS(6040), 1, + anon_sym_COMMA, + ACTIONS(6135), 1, + anon_sym_RBRACE, + STATE(2792), 1, + sym_comment, + STATE(5718), 1, + aux_sym_object_pattern_repeat1, + STATE(7236), 1, + sym__property_name, + STATE(7272), 1, + sym__destructuring_pattern, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + STATE(5743), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6133), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79342] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, anon_sym_CARET, + ACTIONS(5980), 1, anon_sym_PERCENT, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2793), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5622), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 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, - [79851] = 5, + [79456] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2812), 1, + STATE(2794), 1, sym_comment, - ACTIONS(5323), 13, + ACTIONS(5116), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277308,7 +278929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5325), 29, + ACTIONS(5118), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277338,37 +278959,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79907] = 5, + [79512] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6137), 1, + anon_sym_STAR, + ACTIONS(6139), 1, + anon_sym_async, + ACTIONS(6141), 1, + anon_sym_readonly, + STATE(2795), 1, + sym_comment, + STATE(3524), 1, + sym_override_modifier, + STATE(3833), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6143), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79594] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2813), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2796), 1, sym_comment, - ACTIONS(5076), 13, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6145), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79708] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5114), 1, + anon_sym_extends, + STATE(2797), 1, + sym_comment, + ACTIONS(5514), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5517), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4140), 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(5078), 29, + ACTIONS(4144), 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, @@ -277388,15 +279157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79963] = 5, + [79770] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2814), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5055), 13, + ACTIONS(5094), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277410,15 +279183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 29, - sym__automatic_semicolon, + ACTIONS(5090), 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, @@ -277439,89 +279209,476 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80019] = 5, + [79828] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2815), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6137), 1, + anon_sym_STAR, + ACTIONS(6139), 1, + anon_sym_async, + ACTIONS(6147), 1, + anon_sym_abstract, + STATE(2799), 1, sym_comment, - ACTIONS(4931), 13, + STATE(3833), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6143), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79906] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1046), 1, + anon_sym_RBRACE, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_STAR, + STATE(2800), 1, + sym_comment, + STATE(3519), 1, + sym_override_modifier, + STATE(4623), 1, + sym__property_name, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79996] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2801), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5005), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80110] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, + anon_sym_AMP_AMP, + ACTIONS(6008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6010), 1, anon_sym_GT_GT, + ACTIONS(6014), 1, anon_sym_AMP, + ACTIONS(6016), 1, + anon_sym_CARET, + ACTIONS(6018), 1, anon_sym_PIPE, + ACTIONS(6022), 1, + anon_sym_PERCENT, + ACTIONS(6024), 1, + anon_sym_STAR_STAR, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2802), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4989), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 29, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80224] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6149), 1, + anon_sym_STAR, + ACTIONS(6151), 1, + anon_sym_async, + ACTIONS(6153), 1, + anon_sym_readonly, + STATE(2803), 1, + sym_comment, + STATE(3521), 1, + sym_override_modifier, + STATE(3821), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6155), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4385), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80306] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, anon_sym_AMP_AMP, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, anon_sym_PERCENT, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2804), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 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, - [80075] = 5, + [80420] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2816), 1, + ACTIONS(4210), 1, + anon_sym_EQ, + ACTIONS(5114), 1, + anon_sym_extends, + STATE(2805), 1, sym_comment, - ACTIONS(4957), 13, + ACTIONS(5514), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(4959), 29, + ACTIONS(4144), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -277541,15 +279698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80131] = 5, + [80484] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2817), 1, + ACTIONS(5512), 1, + sym__automatic_semicolon, + STATE(2806), 1, sym_comment, - ACTIONS(4977), 13, + ACTIONS(2090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277563,8 +279723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4979), 29, - sym__automatic_semicolon, + ACTIONS(2258), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -277592,29 +279751,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80187] = 5, + [80544] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2818), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2807), 1, sym_comment, - ACTIONS(4981), 13, + ACTIONS(4977), 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(4983), 29, + ACTIONS(4979), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277643,45 +279805,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80243] = 11, + [80606] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5230), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5236), 1, - anon_sym_extends, - ACTIONS(5894), 1, - anon_sym_RPAREN, - STATE(2819), 1, + ACTIONS(6094), 1, + anon_sym_STAR, + ACTIONS(6157), 1, + anon_sym_RBRACE, + STATE(2808), 1, sym_comment, - ACTIONS(5226), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5233), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5684), 2, - anon_sym_COMMA, + STATE(3519), 1, + sym_override_modifier, + STATE(4623), 1, + sym__property_name, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(5224), 11, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80696] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2809), 1, + sym_comment, + ACTIONS(5092), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 22, + ACTIONS(5094), 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, @@ -277701,124 +279923,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80311] = 34, + anon_sym_extends, + [80752] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6149), 1, + anon_sym_STAR, + ACTIONS(6151), 1, + anon_sym_async, + ACTIONS(6159), 1, + anon_sym_abstract, + STATE(2810), 1, + sym_comment, + STATE(3817), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6155), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80830] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2820), 1, + STATE(2811), 1, sym_comment, - STATE(6286), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4890), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5138), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80425] = 11, + [80944] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3568), 1, - anon_sym_extends, - ACTIONS(5203), 1, - anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_RPAREN, - STATE(2821), 1, + STATE(2812), 1, sym_comment, - ACTIONS(2061), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5206), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5365), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2059), 11, + ACTIONS(5263), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 22, + ACTIONS(5265), 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, @@ -277838,425 +280116,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80493] = 34, + anon_sym_extends, + [81000] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, + STATE(2813), 1, + sym_comment, + ACTIONS(5249), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 29, + sym__automatic_semicolon, sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2822), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5041), 2, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, + 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, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6156), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6158), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80607] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [81056] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2823), 1, + STATE(2814), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4883), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(6158), 2, + ACTIONS(4934), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80721] = 34, + anon_sym_satisfies, + [81144] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, + STATE(2815), 1, + sym_comment, + ACTIONS(5237), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5239), 29, + sym__automatic_semicolon, sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2824), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4961), 2, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, + 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, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6156), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6158), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80835] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [81200] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, + STATE(2816), 1, + sym_comment, + ACTIONS(5229), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4895), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4901), 1, - anon_sym_CARET, - ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_PERCENT, - ACTIONS(4909), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - ACTIONS(4919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2825), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4887), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4897), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4915), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4917), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6166), 2, + ACTIONS(5231), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80949] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6148), 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(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2826), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 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(6128), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [81256] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2817), 1, + sym_comment, + ACTIONS(5213), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 14, + ACTIONS(5215), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [81037] = 16, + anon_sym_extends, + [81312] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6168), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2827), 1, + STATE(2818), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(5188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278267,338 +280406,203 @@ 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(4953), 17, + ACTIONS(5190), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [81115] = 28, + anon_sym_extends, + [81368] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2828), 1, + STATE(2819), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(5174), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 8, + ACTIONS(5176), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81217] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2829), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6156), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6158), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - 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, - [81321] = 19, + anon_sym_extends, + [81424] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6168), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2830), 1, + STATE(2820), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(5170), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 16, + ACTIONS(5172), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [81405] = 25, + anon_sym_extends, + [81480] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5157), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2831), 1, + STATE(2821), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(5148), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 9, + ACTIONS(5150), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [81501] = 14, + anon_sym_extends, + [81538] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5152), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6171), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2832), 1, + STATE(2822), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5155), 12, + ACTIONS(5148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278609,13 +280613,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 20, + ACTIONS(5150), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -278631,957 +280642,636 @@ 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, - [81575] = 34, + anon_sym_extends, + [81596] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2833), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5140), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(6094), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81689] = 26, + ACTIONS(6161), 1, + anon_sym_RBRACE, + STATE(2823), 1, + sym_comment, + STATE(3519), 1, + sym_override_modifier, + STATE(4623), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81686] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2834), 1, + STATE(2824), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6128), 2, + ACTIONS(5132), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 9, + ACTIONS(5134), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81787] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2835), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6128), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6156), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6158), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [81887] = 18, + anon_sym_extends, + [81742] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5530), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6168), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2836), 1, + STATE(2825), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(4874), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5533), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 10, anon_sym_STAR, - anon_sym_SLASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 16, + ACTIONS(4144), 26, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [81969] = 19, + [81804] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6168), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2837), 1, + ACTIONS(6063), 1, + anon_sym_AMP, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2826), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(5132), 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(4953), 15, + ACTIONS(5134), 28, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82053] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [81866] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2838), 1, + STATE(2827), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(5316), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 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(4953), 11, + ACTIONS(5318), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [82145] = 30, + anon_sym_extends, + [81922] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6163), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2839), 1, + STATE(2828), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 6, + ACTIONS(4934), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [82251] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2840), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5138), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82365] = 34, + anon_sym_satisfies, + [82000] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6132), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(6144), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2841), 1, + STATE(2829), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5084), 2, + ACTIONS(4999), 2, anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(6128), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82479] = 34, + [82114] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(6063), 1, anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2842), 1, + STATE(2830), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4929), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + ACTIONS(4991), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82593] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4993), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5374), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - ACTIONS(6174), 1, - anon_sym_SEMI, - ACTIONS(6176), 1, - sym__automatic_semicolon, - STATE(2627), 1, - sym_type_arguments, - STATE(2843), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [82172] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2831), 1, + sym_comment, + ACTIONS(4995), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82709] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4997), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - ACTIONS(6160), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2844), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5119), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [82228] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2832), 1, + sym_comment, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5514), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + anon_sym_LBRACK, + ACTIONS(5114), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4140), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(4144), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82823] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82290] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, + ACTIONS(2909), 1, anon_sym_async, - ACTIONS(2904), 1, + ACTIONS(2911), 1, anon_sym_readonly, - ACTIONS(2908), 1, + ACTIONS(2915), 1, anon_sym_override, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(2845), 1, + ACTIONS(6166), 1, + anon_sym_RBRACE, + STATE(2833), 1, sym_comment, - STATE(3533), 1, + STATE(3519), 1, sym_override_modifier, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 18, + ACTIONS(2907), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -279600,334 +281290,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82913] = 34, + [82380] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2846), 1, + STATE(2834), 1, sym_comment, - STATE(6286), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5124), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + ACTIONS(6168), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83027] = 34, + [82494] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6170), 1, anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2847), 1, + STATE(2835), 1, sym_comment, - STATE(6286), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5130), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(5067), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83141] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [82568] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(2836), 1, + sym_comment, + ACTIONS(5061), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5063), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - ACTIONS(6160), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(2848), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5142), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [82624] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2837), 1, + sym_comment, + ACTIONS(5061), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(5063), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83255] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [82680] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5372), 1, + anon_sym_LBRACK, + ACTIONS(5561), 1, + anon_sym_STAR, + ACTIONS(5565), 1, + anon_sym_async, + ACTIONS(6173), 1, + anon_sym_abstract, + STATE(2838), 1, + sym_comment, + STATE(3827), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5569), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82758] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2849), 1, + STATE(2839), 1, sym_comment, - STATE(6286), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(5007), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4927), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83369] = 5, + [82872] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2850), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + STATE(2840), 1, sym_comment, - ACTIONS(5025), 13, + STATE(3059), 1, + sym_arguments, + ACTIONS(5233), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279941,13 +281699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5027), 29, + ACTIONS(5235), 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, @@ -279970,38 +281727,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [83425] = 5, + [82932] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2851), 1, + ACTIONS(3459), 1, + anon_sym_extends, + ACTIONS(5024), 1, + anon_sym_LBRACK, + ACTIONS(6175), 1, + anon_sym_RPAREN, + STATE(2841), 1, sym_comment, - ACTIONS(5029), 13, + ACTIONS(2094), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5027), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5930), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2092), 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(5031), 29, - sym__automatic_semicolon, + ACTIONS(2098), 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, @@ -280021,175 +281784,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [83481] = 34, + [83000] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4252), 1, + anon_sym_EQ, + ACTIONS(5114), 1, + anon_sym_extends, + STATE(2842), 1, + sym_comment, + ACTIONS(5514), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(5517), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2852), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5041), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4140), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(4144), 25, + 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, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83595] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83064] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(6144), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2853), 1, + STATE(2843), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5246), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5799), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83709] = 5, + [83178] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2854), 1, + STATE(2844), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(5049), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280203,7 +281940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 29, + ACTIONS(5051), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280233,96 +281970,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83765] = 8, + [83234] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4898), 1, + anon_sym_AMP_AMP, + ACTIONS(4900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4902), 1, + anon_sym_GT_GT, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(6048), 1, + ACTIONS(4908), 1, + anon_sym_CARET, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(6050), 1, - anon_sym_extends, - STATE(2855), 1, + ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(4916), 1, + anon_sym_STAR_STAR, + ACTIONS(4918), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2845), 1, sym_comment, - ACTIONS(5282), 11, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4904), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5284), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4924), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5620), 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(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4920), 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, - [83827] = 7, + [83348] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2856), 1, - sym_comment, - ACTIONS(4965), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4967), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4135), 11, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6178), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2846), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 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(4139), 22, + ACTIONS(5067), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -280338,43 +282109,187 @@ 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, - [83887] = 8, + [83422] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5553), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, anon_sym_LBRACK, - STATE(2857), 1, - sym_comment, - ACTIONS(5363), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5556), 3, - anon_sym_GT, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, anon_sym_PIPE, - ACTIONS(5549), 10, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + ACTIONS(6181), 1, + anon_sym_SEMI, + ACTIONS(6183), 1, + sym__automatic_semicolon, + STATE(2671), 1, + sym_type_arguments, + STATE(2847), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83538] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1064), 1, + anon_sym_RBRACE, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_STAR, + STATE(2848), 1, + sym_comment, + STATE(3519), 1, + sym_override_modifier, + STATE(4623), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83628] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2849), 1, + sym_comment, + ACTIONS(5049), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5551), 26, + ACTIONS(5051), 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, @@ -280394,42 +282309,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83949] = 9, + anon_sym_extends, + [83684] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4216), 1, - anon_sym_EQ, - ACTIONS(5051), 1, - anon_sym_extends, - STATE(2858), 1, + STATE(2850), 1, sym_comment, - ACTIONS(5535), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(5053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 25, + ACTIONS(5055), 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, @@ -280449,41 +282360,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84013] = 8, + anon_sym_extends, + [83740] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4853), 1, - anon_sym_extends, - STATE(2859), 1, + ACTIONS(5522), 1, + anon_sym_EQ, + STATE(2851), 1, sym_comment, - ACTIONS(5480), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5483), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(5520), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 26, + ACTIONS(5524), 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, @@ -280503,26 +282413,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84075] = 8, + [83798] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5051), 1, - anon_sym_extends, - STATE(2860), 1, + STATE(2852), 1, sym_comment, - ACTIONS(5535), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5538), 3, - anon_sym_GT, + ACTIONS(5743), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(5740), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5208), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5653), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -280530,14 +282444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 26, - sym__automatic_semicolon, + ACTIONS(5655), 22, 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, @@ -280557,259 +282467,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84137] = 34, + [83860] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5420), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2861), 1, + STATE(2853), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4883), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4987), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84251] = 34, + [83974] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4208), 1, + anon_sym_EQ, + STATE(2854), 1, + sym_comment, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5374), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5404), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5406), 1, + anon_sym_satisfies, + [84032] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2862), 1, + STATE(2855), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4961), 2, + ACTIONS(5343), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84365] = 21, + [84146] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - STATE(2627), 1, - sym_type_arguments, - STATE(2863), 1, + ACTIONS(5684), 1, + anon_sym_QMARK_DOT, + STATE(2856), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(2304), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 14, + ACTIONS(2306), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [84453] = 8, + [84210] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, - anon_sym_AMP, - ACTIONS(6048), 1, - anon_sym_PIPE, - ACTIONS(6050), 1, - anon_sym_extends, - STATE(2864), 1, + STATE(2857), 1, sym_comment, - ACTIONS(5126), 11, + ACTIONS(5104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5128), 28, + ACTIONS(5106), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280838,39 +282784,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84515] = 6, + anon_sym_extends, + [84266] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4857), 1, + ACTIONS(5039), 1, + anon_sym_LBRACK, + ACTIONS(5045), 1, anon_sym_extends, - STATE(2865), 1, + ACTIONS(6185), 1, + anon_sym_RPAREN, + STATE(2858), 1, sym_comment, - ACTIONS(5126), 13, + ACTIONS(5035), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5042), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5936), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5033), 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(5128), 28, - sym__automatic_semicolon, + ACTIONS(5037), 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, @@ -280890,36 +282842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84573] = 15, + [84334] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6178), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2866), 1, + STATE(2859), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5065), 12, + ACTIONS(5108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280930,13 +282860,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(5067), 18, + ACTIONS(5110), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -280950,244 +282888,281 @@ 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, - [84649] = 18, + anon_sym_extends, + [84390] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6181), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, + anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, + anon_sym_PERCENT, + ACTIONS(6024), 1, + anon_sym_STAR_STAR, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2867), 1, + STATE(2860), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5090), 11, + ACTIONS(6002), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 16, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 8, sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [84731] = 34, + anon_sym_satisfies, + [84492] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(5422), 1, anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(5970), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(5974), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(5976), 1, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(5980), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(5984), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6000), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2671), 1, sym_type_arguments, - STATE(2868), 1, + STATE(2861), 1, sym_comment, - STATE(6286), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(5306), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5109), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6128), 2, + ACTIONS(5966), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(5972), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(3067), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(5986), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84845] = 16, + [84606] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5386), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_BQUOTE, - ACTIONS(5971), 1, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - ACTIONS(6184), 1, + ACTIONS(5984), 1, anon_sym_LT, - STATE(2627), 1, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + ACTIONS(6188), 1, + anon_sym_SEMI, + ACTIONS(6190), 1, + sym__automatic_semicolon, + STATE(2671), 1, sym_type_arguments, - STATE(2869), 1, + STATE(2862), 1, sym_comment, - STATE(5704), 1, + STATE(6101), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 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, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [84923] = 5, + [84722] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2870), 1, + ACTIONS(5208), 1, + anon_sym_extends, + STATE(2863), 1, sym_comment, - ACTIONS(5308), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5740), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5743), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(5653), 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(5310), 29, + ACTIONS(5655), 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, @@ -281207,489 +283182,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [84979] = 28, + [84784] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5957), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6006), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2871), 1, + STATE(2864), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 8, - sym__automatic_semicolon, + ACTIONS(4934), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [85081] = 29, + [84888] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5953), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(5957), 1, + ACTIONS(6008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2872), 1, + STATE(2865), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 7, - sym__automatic_semicolon, + ACTIONS(4934), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [85185] = 19, + [84994] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5969), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6184), 1, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2873), 1, + STATE(2866), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5967), 2, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 8, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 16, - sym__automatic_semicolon, + ACTIONS(4934), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_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, - [85269] = 25, + [85086] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1021), 1, + anon_sym_RBRACE, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6094), 1, + anon_sym_STAR, + STATE(2867), 1, + sym_comment, + STATE(3519), 1, + sym_override_modifier, + STATE(4623), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - STATE(2627), 1, - sym_type_arguments, - STATE(2874), 1, + anon_sym_QMARK, + ACTIONS(2907), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85176] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2868), 1, sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5120), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 9, + ACTIONS(5122), 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, - [85365] = 26, + anon_sym_extends, + [85232] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + STATE(2869), 1, + sym_comment, + ACTIONS(5144), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, + anon_sym_extends, + ACTIONS(5146), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - STATE(2627), 1, - sym_type_arguments, - STATE(2875), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4140), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 9, + ACTIONS(4144), 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_QMARK_QMARK, - anon_sym_satisfies, - [85463] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - STATE(2627), 1, - sym_type_arguments, - STATE(2876), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [85563] = 18, + [85292] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5969), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6184), 1, + ACTIONS(6163), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2877), 1, + STATE(2870), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3098), 2, + ACTIONS(6020), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 10, + ACTIONS(4936), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 16, - sym__automatic_semicolon, + ACTIONS(4934), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -281702,81 +283639,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [85645] = 19, + [85376] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5971), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6022), 1, + anon_sym_PERCENT, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6184), 1, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2878), 1, + STATE(2871), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(6002), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 15, - sym__automatic_semicolon, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 9, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [85729] = 6, + anon_sym_satisfies, + [85472] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6187), 1, - anon_sym_LBRACK, - STATE(2879), 1, + STATE(2872), 1, sym_comment, - ACTIONS(5331), 13, + ACTIONS(4868), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281790,7 +283731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5333), 28, + ACTIONS(4870), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281799,6 +283740,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, @@ -281819,16 +283761,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85787] = 6, + [85528] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6189), 1, - anon_sym_extends, - STATE(2880), 1, + STATE(2873), 1, sym_comment, - ACTIONS(5335), 13, + ACTIONS(5128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281842,7 +283782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5337), 28, + ACTIONS(5130), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281871,33 +283811,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85845] = 8, + anon_sym_extends, + [85584] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5061), 1, - anon_sym_extends, - ACTIONS(6187), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - STATE(2881), 1, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6024), 1, + anon_sym_STAR_STAR, + ACTIONS(6163), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2874), 1, sym_comment, - ACTIONS(5059), 2, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5341), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4934), 15, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [85668] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5094), 1, + anon_sym_extends, + STATE(2875), 1, + sym_comment, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5343), 27, + ACTIONS(5090), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281906,6 +283909,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, @@ -281925,20 +283929,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85907] = 8, + [85726] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, + anon_sym_AMP_AMP, + ACTIONS(6008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6048), 1, + ACTIONS(6016), 1, + anon_sym_CARET, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6050), 1, + ACTIONS(6022), 1, + anon_sym_PERCENT, + ACTIONS(6024), 1, + anon_sym_STAR_STAR, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2876), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5322), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85840] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5039), 1, + anon_sym_LBRACK, + ACTIONS(5045), 1, anon_sym_extends, - STATE(2882), 1, + ACTIONS(5845), 1, + anon_sym_RPAREN, + STATE(2877), 1, sym_comment, - ACTIONS(5345), 11, + ACTIONS(5035), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5042), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5667), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5033), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281950,16 +284043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5347), 28, - sym__automatic_semicolon, + ACTIONS(5037), 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, @@ -281979,37 +284066,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85969] = 5, + [85908] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2883), 1, + ACTIONS(3459), 1, + anon_sym_extends, + ACTIONS(5024), 1, + anon_sym_LBRACK, + ACTIONS(5849), 1, + anon_sym_RPAREN, + STATE(2878), 1, sym_comment, - ACTIONS(5353), 13, + ACTIONS(2094), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5027), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5552), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2092), 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(5355), 29, - sym__automatic_semicolon, + ACTIONS(2098), 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, @@ -282029,135 +284123,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86025] = 23, + [85976] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5957), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2884), 1, + STATE(2879), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3098), 2, + ACTIONS(6030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 11, - sym__automatic_semicolon, + ACTIONS(4934), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [86117] = 5, + [86074] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2885), 1, - sym_comment, - ACTIONS(5361), 13, - anon_sym_STAR, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, anon_sym_GT_GT, + ACTIONS(5974), 1, anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2880), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5320), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5363), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86188] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5384), 1, anon_sym_LBRACK, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, + anon_sym_CARET, + ACTIONS(5980), 1, + anon_sym_PERCENT, + ACTIONS(5982), 1, + anon_sym_STAR_STAR, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, anon_sym_AMP_AMP, + ACTIONS(5994), 1, anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2881), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5322), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5968), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5972), 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(5978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 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, - [86173] = 5, + [86302] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2886), 1, + STATE(2882), 1, sym_comment, - ACTIONS(4965), 13, + ACTIONS(5120), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282171,7 +284376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4967), 29, + ACTIONS(5122), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282201,14 +284406,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86229] = 5, + [86358] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6192), 1, + anon_sym_STAR, + ACTIONS(6194), 1, + anon_sym_async, + ACTIONS(6196), 1, + anon_sym_readonly, + STATE(2883), 1, + sym_comment, + STATE(3530), 1, + sym_override_modifier, + STATE(3853), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6198), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86440] = 18, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(2887), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6200), 1, + anon_sym_STAR, + ACTIONS(6202), 1, + anon_sym_async, + ACTIONS(6204), 1, + anon_sym_readonly, + STATE(2884), 1, + sym_comment, + STATE(3525), 1, + sym_override_modifier, + STATE(3867), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6206), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86522] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2885), 1, sym_comment, - ACTIONS(5043), 13, + ACTIONS(3253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282222,7 +284555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5045), 29, + ACTIONS(3449), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282252,14 +284585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86285] = 5, + [86578] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2888), 1, + STATE(2886), 1, sym_comment, - ACTIONS(4855), 13, + ACTIONS(5128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282273,7 +284606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4857), 29, + ACTIONS(5130), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282303,97 +284636,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86341] = 30, + [86634] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5953), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2627), 1, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, sym_type_arguments, - STATE(2889), 1, + STATE(2887), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(5343), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [86447] = 6, + [86748] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6046), 1, - anon_sym_AMP, - STATE(2890), 1, + STATE(2888), 1, sym_comment, - ACTIONS(5278), 12, + ACTIONS(5136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282401,7 +284737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 29, + ACTIONS(5138), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282431,94 +284767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86505] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2891), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5084), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86619] = 5, + [86804] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2892), 1, + STATE(2889), 1, sym_comment, - ACTIONS(5049), 13, + ACTIONS(5140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282532,7 +284788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5051), 29, + ACTIONS(5142), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282562,94 +284818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86675] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2893), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(4929), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86789] = 5, + [86860] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2894), 1, + STATE(2890), 1, sym_comment, - ACTIONS(4851), 13, + ACTIONS(4955), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282663,7 +284839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4853), 29, + ACTIONS(4957), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282693,14 +284869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86845] = 5, + [86916] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2895), 1, + STATE(2891), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(4858), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282714,7 +284890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 29, + ACTIONS(4860), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282744,117 +284920,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86901] = 34, + [86972] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6163), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2896), 1, + STATE(2892), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6191), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, + ACTIONS(4934), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87015] = 5, + anon_sym_satisfies, + [87054] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2897), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5296), 13, + ACTIONS(5533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5530), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4874), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4140), 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(5236), 29, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -282874,95 +285038,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [87071] = 34, + [87116] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + STATE(2894), 1, + sym_comment, + ACTIONS(5136), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5138), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5374), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2898), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [87172] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2895), 1, + sym_comment, + ACTIONS(5112), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6193), 2, + ACTIONS(5114), 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, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87185] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [87228] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2899), 1, + STATE(2896), 1, sym_comment, - ACTIONS(5059), 13, + ACTIONS(5140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282976,7 +285161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 29, + ACTIONS(5142), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283006,16 +285191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87241] = 6, + [87284] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6187), 1, - anon_sym_LBRACK, - STATE(2900), 1, + STATE(2897), 1, sym_comment, - ACTIONS(5059), 13, + ACTIONS(4872), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283029,7 +285212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 28, + ACTIONS(4874), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283038,6 +285221,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, @@ -283058,14 +285242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87299] = 5, + [87340] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2901), 1, + STATE(2898), 1, sym_comment, - ACTIONS(5072), 13, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283079,7 +285263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5074), 29, + ACTIONS(5164), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283109,44 +285293,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87355] = 11, + [87396] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(4244), 1, - anon_sym_QMARK, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(2902), 1, + STATE(2899), 1, sym_comment, - ACTIONS(4241), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5051), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5538), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 11, + ACTIONS(5166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(5168), 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, @@ -283166,44 +285343,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87423] = 11, + anon_sym_extends, + [87452] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4853), 1, - anon_sym_extends, - ACTIONS(5480), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(5372), 1, anon_sym_LBRACK, - ACTIONS(6198), 1, - anon_sym_RPAREN, - STATE(2903), 1, + STATE(2900), 1, sym_comment, - ACTIONS(5483), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6077), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6195), 2, + STATE(3892), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5918), 2, anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4135), 11, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87532] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2901), 1, + sym_comment, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(5164), 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, @@ -283223,18 +285457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87491] = 7, + anon_sym_extends, + [87588] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - STATE(2904), 1, + STATE(2902), 1, sym_comment, - STATE(3045), 1, - sym_arguments, - ACTIONS(4997), 13, + ACTIONS(5288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283248,12 +285479,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4999), 27, + ACTIONS(5290), 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, @@ -283276,14 +285508,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87551] = 5, + anon_sym_extends, + [87644] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2905), 1, + ACTIONS(6098), 1, + anon_sym_LBRACK, + STATE(2903), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(5288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283297,7 +285532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 29, + ACTIONS(5290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283306,7 +285541,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, @@ -283327,16 +285561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87607] = 6, + [87702] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6202), 1, - anon_sym_DOT, - STATE(2906), 1, + STATE(2904), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283350,7 +285582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 28, + ACTIONS(5300), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283360,6 +285592,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, @@ -283379,279 +285612,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87665] = 34, + [87758] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(5410), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5420), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6208), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2907), 1, + STATE(2905), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5326), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5328), 16, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87779] = 34, + [87840] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6211), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2908), 1, + STATE(2906), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5124), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5273), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5275), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87893] = 34, + anon_sym_satisfies, + [87916] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2909), 1, + STATE(2907), 1, sym_comment, - STATE(5704), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(5130), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5951), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88007] = 6, + ACTIONS(4934), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [88016] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5637), 1, - anon_sym_EQ, - STATE(2910), 1, + ACTIONS(4874), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_LBRACK, + ACTIONS(6216), 1, + anon_sym_RPAREN, + STATE(2908), 1, sym_comment, - ACTIONS(5635), 13, + ACTIONS(5533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6120), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6214), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4140), 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(5639), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -283671,160 +285867,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88065] = 34, + [88084] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4266), 1, + anon_sym_EQ, + ACTIONS(4276), 1, + anon_sym_QMARK, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, + STATE(2909), 1, + sym_comment, + ACTIONS(4269), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5114), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5517), 2, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2911), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5142), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, + ACTIONS(4140), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(4144), 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(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [88179] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5450), 1, - anon_sym_LBRACK, - ACTIONS(5522), 1, - anon_sym_STAR, - ACTIONS(5526), 1, - anon_sym_async, - ACTIONS(6204), 1, - anon_sym_abstract, - STATE(2912), 1, - sym_comment, - STATE(3809), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5530), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88257] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88152] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6210), 1, - sym_regex_flags, - STATE(2913), 1, + STATE(2910), 1, sym_comment, - ACTIONS(6206), 16, + ACTIONS(5166), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -283837,17 +285945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6208), 25, + ACTIONS(5168), 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, @@ -283862,235 +285969,20 @@ 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, - [88315] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, - anon_sym_as, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2914), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(4927), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88429] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6212), 1, - anon_sym_RBRACE, - STATE(2915), 1, - sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88519] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1059), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - STATE(2916), 1, - sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, - sym__property_name, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88609] = 6, + anon_sym_extends, + [88208] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2917), 1, + STATE(2911), 1, sym_comment, - ACTIONS(2059), 13, + ACTIONS(5180), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284104,7 +285996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 28, + ACTIONS(5182), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284133,95 +286025,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88667] = 35, + anon_sym_extends, + [88264] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(5406), 1, + ACTIONS(6223), 1, + sym_regex_flags, + STATE(2912), 1, + sym_comment, + ACTIONS(6219), 16, + anon_sym_STAR, anon_sym_as, - ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(5420), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - ACTIONS(6214), 1, - anon_sym_SEMI, - ACTIONS(6216), 1, - sym__automatic_semicolon, - STATE(2627), 1, - sym_type_arguments, - STATE(2918), 1, - sym_comment, - STATE(5704), 1, - sym_optional_chain, - ACTIONS(5402), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5949), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5951), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6221), 25, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3098), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [88783] = 5, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [88322] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2919), 1, + STATE(2913), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(5184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284235,7 +286099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5140), 28, + ACTIONS(5186), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284264,102 +286128,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88838] = 34, + anon_sym_extends, + [88378] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4961), 1, - anon_sym_of, - ACTIONS(6222), 1, + ACTIONS(4898), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, + ACTIONS(4900), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, + ACTIONS(4902), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(4906), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(4908), 1, anon_sym_CARET, - ACTIONS(6234), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(4914), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(4916), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(4918), 1, anon_sym_LT, - ACTIONS(6250), 1, + ACTIONS(4926), 1, anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4932), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2920), 1, + STATE(2914), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(4886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(4894), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(4904), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(4912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(4922), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(4924), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6225), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(4920), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88951] = 8, + [88492] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5051), 1, - anon_sym_extends, - STATE(2921), 1, - sym_comment, - ACTIONS(5538), 2, + ACTIONS(6063), 1, anon_sym_AMP, + ACTIONS(6065), 1, anon_sym_PIPE, - ACTIONS(5535), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4135), 11, + ACTIONS(6067), 1, + anon_sym_extends, + STATE(2915), 1, + sym_comment, + ACTIONS(5194), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284371,12 +286234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 24, + ACTIONS(5196), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -284396,14 +286263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89012] = 5, + [88554] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2922), 1, + STATE(2916), 1, sym_comment, - ACTIONS(5476), 13, + ACTIONS(5198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284417,7 +286284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5478), 28, + ACTIONS(5200), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284446,14 +286313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89067] = 5, + anon_sym_extends, + [88610] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2923), 1, + STATE(2917), 1, sym_comment, - ACTIONS(2099), 13, + ACTIONS(5076), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284467,7 +286335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 28, + ACTIONS(5078), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284496,114 +286364,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89122] = 5, + anon_sym_extends, + [88666] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2924), 1, - sym_comment, - ACTIONS(4135), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 28, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2918), 1, + sym_comment, + STATE(4635), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5918), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88744] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5376), 1, + anon_sym_as, + ACTIONS(5378), 1, + anon_sym_BANG, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5384), 1, anon_sym_LBRACK, + ACTIONS(5386), 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, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(5422), 1, + anon_sym_satisfies, + ACTIONS(5970), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_AMP, + ACTIONS(5976), 1, anon_sym_CARET, + ACTIONS(5980), 1, anon_sym_PERCENT, + ACTIONS(5982), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5984), 1, + anon_sym_LT, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(5998), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6000), 1, + sym__ternary_qmark, + STATE(2671), 1, + sym_type_arguments, + STATE(2919), 1, + sym_comment, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(5418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89177] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2925), 1, - sym_comment, - ACTIONS(2091), 13, + ACTIONS(5966), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5968), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5972), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5978), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 28, + ACTIONS(5990), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6227), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 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, - [89232] = 5, + [88858] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2926), 1, + STATE(2920), 1, sym_comment, - ACTIONS(2169), 13, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284617,7 +286528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 28, + ACTIONS(5717), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284646,14 +286557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89287] = 5, + [88913] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2927), 1, + STATE(2921), 1, sym_comment, - ACTIONS(2127), 13, + ACTIONS(5612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284667,7 +286578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2131), 28, + ACTIONS(5614), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284696,78 +286607,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89342] = 19, + [88968] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6240), 1, - anon_sym_STAR_STAR, - ACTIONS(6254), 1, - anon_sym_LT, - STATE(2222), 1, + ACTIONS(5007), 1, + anon_sym_of, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, sym_type_arguments, - STATE(2928), 1, + STATE(2922), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(6229), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 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, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89425] = 5, + [89081] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2929), 1, + ACTIONS(6265), 1, + sym__automatic_semicolon, + STATE(2923), 1, sym_comment, - ACTIONS(5464), 13, + ACTIONS(2398), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2150), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284781,15 +286714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5466), 28, - sym__automatic_semicolon, + ACTIONS(2154), 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, @@ -284810,84 +286738,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89480] = 18, + [89140] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6238), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5001), 1, + anon_sym_of, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, + ACTIONS(6253), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, sym_type_arguments, - STATE(2930), 1, + STATE(2924), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, - anon_sym_BANG, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 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, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [89561] = 7, + [89253] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2931), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6267), 1, + anon_sym_STAR, + ACTIONS(6269), 1, + anon_sym_async, + STATE(2925), 1, sym_comment, - ACTIONS(6257), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6259), 3, + STATE(3887), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6271), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4135), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89328] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2926), 1, + sym_comment, + ACTIONS(5474), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284901,10 +286898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(5476), 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, @@ -284925,168 +286927,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89620] = 9, + [89383] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5049), 1, - anon_sym_QMARK, - STATE(2932), 1, - sym_comment, - ACTIONS(5051), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5538), 2, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5009), 1, + anon_sym_of, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, anon_sym_AMP, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6245), 1, anon_sym_PIPE, - ACTIONS(5535), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4135), 11, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2927), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 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(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 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, - [89683] = 27, + [89496] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6226), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4999), 1, + anon_sym_of, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6241), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(6243), 1, anon_sym_CARET, - ACTIONS(6238), 1, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6253), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, sym_type_arguments, - STATE(2933), 1, + STATE(2928), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6218), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6255), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 7, + [89609] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5035), 1, + anon_sym_EQ, + ACTIONS(5039), 1, + anon_sym_LBRACK, + ACTIONS(5936), 1, + anon_sym_COLON, + STATE(2929), 1, + sym_comment, + ACTIONS(5042), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5045), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5033), 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(5037), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [89782] = 14, + [89674] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2934), 1, + STATE(2930), 1, sym_comment, - STATE(4686), 1, + STATE(4635), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(5874), 2, + ACTIONS(5918), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285110,49 +287199,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89855] = 14, + [89747] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6261), 1, + ACTIONS(6192), 1, anon_sym_STAR, - STATE(2935), 1, + ACTIONS(6194), 1, + anon_sym_async, + STATE(2931), 1, sym_comment, - STATE(4654), 1, + STATE(3853), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6263), 2, + ACTIONS(6198), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(1042), 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(2900), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -285169,14 +287259,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89928] = 5, + [89822] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2936), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6273), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2932), 1, sym_comment, - ACTIONS(2079), 13, + STATE(5793), 1, + sym_optional_chain, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285187,17 +287296,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5067), 19, + 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_satisfies, + [89895] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5343), 1, + anon_sym_of, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2933), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2083), 28, + ACTIONS(6259), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90008] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6276), 1, sym__automatic_semicolon, + STATE(2934), 1, + sym_comment, + ACTIONS(2336), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2252), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 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, @@ -285219,113 +287449,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89983] = 26, + [90067] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6278), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2935), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5326), 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(5328), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [90148] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6226), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5624), 1, + anon_sym_of, + ACTIONS(6231), 1, + anon_sym_GT, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6241), 1, anon_sym_AMP, - ACTIONS(6238), 1, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6253), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + ACTIONS(6281), 1, + anon_sym_in, + STATE(2226), 1, sym_type_arguments, - STATE(2937), 1, + STATE(2936), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6218), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6255), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 8, + [90263] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6284), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(2937), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5273), 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(5275), 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, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [90080] = 10, + [90338] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(5049), 1, - anon_sym_QMARK, - ACTIONS(5535), 1, - anon_sym_LBRACK, STATE(2938), 1, sym_comment, - ACTIONS(5538), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5051), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4135), 11, + ACTIONS(5470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(5472), 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, @@ -285345,81 +287702,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90145] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [90393] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(6261), 1, - anon_sym_STAR, - ACTIONS(6265), 1, - anon_sym_async, - STATE(2939), 1, - sym_comment, - STATE(3808), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6267), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5738), 1, + anon_sym_RBRACE, + ACTIONS(6006), 1, + anon_sym_AMP_AMP, + ACTIONS(6008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, + anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, + anon_sym_PERCENT, + ACTIONS(6024), 1, + anon_sym_STAR_STAR, + ACTIONS(6026), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90220] = 7, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(2939), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90506] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6269), 1, - sym__automatic_semicolon, STATE(2940), 1, sym_comment, - ACTIONS(2375), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2099), 13, + ACTIONS(5466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285433,10 +287802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 23, + ACTIONS(5468), 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, @@ -285457,37 +287831,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90279] = 5, + [90561] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5208), 1, + anon_sym_extends, STATE(2941), 1, sym_comment, - ACTIONS(5468), 13, + ACTIONS(5743), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5740), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(5653), 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(5470), 28, - sym__automatic_semicolon, + ACTIONS(5655), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -285507,14 +287884,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90334] = 5, + [90622] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2942), 1, sym_comment, - ACTIONS(5456), 13, + ACTIONS(6287), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285528,15 +287909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5458), 28, - sym__automatic_semicolon, + ACTIONS(5090), 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, @@ -285557,27 +287935,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90389] = 10, + [90679] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(2094), 1, anon_sym_EQ, - ACTIONS(4268), 1, - anon_sym_COLON, - ACTIONS(5535), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5024), 1, anon_sym_LBRACK, + ACTIONS(5930), 1, + anon_sym_COLON, STATE(2943), 1, sym_comment, - ACTIONS(5538), 2, + ACTIONS(5027), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5051), 3, + ACTIONS(3459), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4135), 11, + ACTIONS(2092), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285589,7 +287967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(2098), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -285612,109 +287990,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90454] = 25, + [90744] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6238), 1, - anon_sym_PERCENT, - ACTIONS(6240), 1, - anon_sym_STAR_STAR, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, STATE(2944), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(4140), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6244), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 8, + ACTIONS(4144), 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, - [90549] = 7, + [90799] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6287), 1, + anon_sym_COMMA, STATE(2945), 1, sym_comment, - ACTIONS(4965), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4967), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4135), 11, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 24, + ACTIONS(5090), 27, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -285734,26 +288091,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90608] = 9, + [90856] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5361), 1, + ACTIONS(5206), 1, anon_sym_QMARK, STATE(2946), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5208), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5556), 2, + ACTIONS(5743), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5553), 3, + ACTIONS(5740), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(5549), 11, + ACTIONS(5653), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285765,7 +288122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5551), 22, + ACTIONS(5655), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -285788,16 +288145,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90671] = 6, + [90919] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6271), 1, - anon_sym_COMMA, STATE(2947), 1, sym_comment, - ACTIONS(5319), 13, + ACTIONS(5146), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5144), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4140), 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(4144), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90978] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6289), 1, + anon_sym_STAR, + ACTIONS(6291), 1, + anon_sym_async, + STATE(2948), 1, + sym_comment, + STATE(3874), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6293), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91053] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2949), 1, + sym_comment, + ACTIONS(5766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285811,15 +288278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 27, + ACTIONS(5768), 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, @@ -285839,114 +288307,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90728] = 19, + [91108] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(2950), 1, + sym_comment, + ACTIONS(2352), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2136), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2140), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6238), 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(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2948), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 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(6218), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91165] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4210), 1, + anon_sym_EQ, + STATE(2951), 1, + sym_comment, + ACTIONS(4140), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6236), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 15, + ACTIONS(4144), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [90811] = 15, + [91222] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6273), 1, + ACTIONS(6289), 1, anon_sym_STAR, - ACTIONS(6275), 1, - anon_sym_async, - STATE(2949), 1, + STATE(2952), 1, sym_comment, - STATE(3810), 1, + STATE(4674), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6277), 2, + ACTIONS(6295), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(1042), 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(4378), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -285963,46 +288468,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90886] = 15, + [91295] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6016), 1, + ACTIONS(6297), 1, anon_sym_STAR, - ACTIONS(6018), 1, + ACTIONS(6299), 1, anon_sym_async, - STATE(2950), 1, + STATE(2953), 1, sym_comment, - STATE(3870), 1, + STATE(3798), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6022), 2, + ACTIONS(6301), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 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(4378), 20, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286023,35 +288528,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90961] = 14, + [91370] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, + ACTIONS(5372), 1, anon_sym_LBRACK, - ACTIONS(6016), 1, + ACTIONS(6200), 1, anon_sym_STAR, - STATE(2951), 1, + ACTIONS(6202), 1, + anon_sym_async, + STATE(2954), 1, sym_comment, - STATE(4677), 1, + STATE(3867), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6279), 2, + ACTIONS(6206), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -286060,12 +288567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -286082,50 +288588,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91034] = 15, + [91445] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6030), 1, + ACTIONS(6192), 1, anon_sym_STAR, - ACTIONS(6032), 1, - anon_sym_async, - STATE(2952), 1, + STATE(2955), 1, sym_comment, - STATE(3794), 1, + STATE(4620), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6034), 2, + ACTIONS(6303), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(1042), 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(4378), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -286142,288 +288647,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91109] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [91518] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6040), 1, - anon_sym_RBRACE, - STATE(2953), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6305), 1, + sym_regex_flags, + STATE(2956), 1, sym_comment, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91190] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6219), 17, anon_sym_STAR, - ACTIONS(6040), 1, - anon_sym_RBRACE, - STATE(2954), 1, - sym_comment, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, + 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_QMARK, - ACTIONS(2900), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91273] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6221), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - ACTIONS(6160), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - ACTIONS(6281), 1, - anon_sym_COLON, - STATE(2222), 1, - sym_type_arguments, - STATE(2955), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + anon_sym_BQUOTE, + [91575] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2957), 1, + sym_comment, + ACTIONS(5462), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(5464), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91386] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4564), 1, - anon_sym_LBRACK, - STATE(2956), 1, - sym_comment, - STATE(7093), 1, - sym__property_name, - STATE(7181), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6285), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - STATE(6875), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6283), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91463] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91630] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6287), 1, - sym__automatic_semicolon, - STATE(2957), 1, + STATE(2958), 1, sym_comment, - ACTIONS(2387), 4, + ACTIONS(2430), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2091), 13, + ACTIONS(2180), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286437,7 +288775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 23, + ACTIONS(2184), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -286461,37 +288799,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91522] = 15, + [91687] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6030), 1, + ACTIONS(6297), 1, anon_sym_STAR, - ACTIONS(6032), 1, + ACTIONS(6299), 1, anon_sym_async, - STATE(2958), 1, + STATE(2959), 1, sym_comment, - STATE(3828), 1, + STATE(3804), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6034), 2, + ACTIONS(6301), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -286500,7 +288838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4378), 20, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286521,191 +288859,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91597] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [91762] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - STATE(2959), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2960), 1, sym_comment, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + 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(2900), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91680] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5460), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6222), 1, anon_sym_AMP_AMP, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2960), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 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(6218), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91817] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2961), 1, + sym_comment, + ACTIONS(5788), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 6, + ACTIONS(5790), 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, - [91783] = 18, + [91872] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1051), 1, + ACTIONS(1021), 1, anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(2961), 1, + STATE(2962), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -286722,123 +289023,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91864] = 28, + [91955] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(6226), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, + anon_sym_AMP_AMP, + ACTIONS(6008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(6234), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + ACTIONS(6307), 1, + anon_sym_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(2962), 1, + STATE(2963), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 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, - [91965] = 15, + [92068] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1021), 1, + anon_sym_RBRACE, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6273), 1, + ACTIONS(6094), 1, anon_sym_STAR, - ACTIONS(6275), 1, - anon_sym_async, - STATE(2963), 1, + STATE(2964), 1, sym_comment, - STATE(3795), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6277), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4378), 20, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -286855,210 +289165,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92040] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [92149] = 19, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(2964), 1, - sym_comment, - ACTIONS(2379), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2079), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2083), 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, - [92097] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2965), 1, - sym_comment, - ACTIONS(5670), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5672), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(235), 1, anon_sym_COMMA, + ACTIONS(1064), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92152] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6289), 1, - anon_sym_STAR, - ACTIONS(6291), 1, + ACTIONS(2909), 1, anon_sym_async, - STATE(2966), 1, - sym_comment, - STATE(3832), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6293), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(4961), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92227] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6289), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(2967), 1, + STATE(2965), 1, sym_comment, - STATE(4708), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6295), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -287075,48 +289229,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92300] = 18, + [92232] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1059), 1, + ACTIONS(1064), 1, anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(2968), 1, + STATE(2966), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5720), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(5721), 1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287138,21 +289292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92381] = 7, + [92313] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2969), 1, + STATE(2967), 1, sym_comment, - ACTIONS(6297), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6299), 3, + ACTIONS(2426), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287166,7 +289319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(2194), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -287190,50 +289343,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92440] = 15, + [92370] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6273), 1, + ACTIONS(6200), 1, anon_sym_STAR, - ACTIONS(6275), 1, - anon_sym_async, - STATE(2970), 1, + STATE(2968), 1, sym_comment, - STATE(3823), 1, + STATE(4836), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6277), 2, + ACTIONS(6309), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(1042), 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(4378), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -287250,58 +289402,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92515] = 19, + [92443] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, - ACTIONS(1059), 1, + ACTIONS(5011), 1, anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - STATE(2971), 1, + STATE(2969), 1, sym_comment, - STATE(4640), 1, - sym__property_name, - STATE(5720), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(5721), 1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -287314,21 +289458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92598] = 7, + [92510] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2972), 1, + STATE(2970), 1, sym_comment, - ACTIONS(6297), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6299), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + ACTIONS(2304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287342,10 +289479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(2306), 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, @@ -287366,21 +289508,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92657] = 7, + [92565] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2973), 1, + ACTIONS(6305), 1, + sym_regex_flags, + STATE(2971), 1, sym_comment, - ACTIONS(6297), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6299), 3, + ACTIONS(6219), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6221), 24, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [92622] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2972), 1, + sym_comment, + ACTIONS(5454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287394,10 +289580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(5456), 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, @@ -287418,114 +289609,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92716] = 16, + [92677] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5035), 1, + anon_sym_EQ, + ACTIONS(5039), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + STATE(2973), 1, + sym_comment, + ACTIONS(5045), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5042), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5033), 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(5037), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6240), 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(6254), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(2974), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92740] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5024), 1, + anon_sym_LBRACK, + STATE(2974), 1, + sym_comment, + ACTIONS(3459), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5027), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2092), 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(4953), 16, + ACTIONS(2098), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [92793] = 14, + [92803] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6301), 1, - anon_sym_STAR, - STATE(2975), 1, - sym_comment, - STATE(4618), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6303), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, + ACTIONS(5011), 1, anon_sym_RBRACE, + STATE(2975), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(2462), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -287538,21 +289773,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92866] = 7, + [92870] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4882), 1, + anon_sym_BQUOTE, STATE(2976), 1, sym_comment, - ACTIONS(6305), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6307), 3, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + anon_sym_implements, + ACTIONS(4878), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287566,10 +289805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(4880), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -287588,52 +289826,50 @@ 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, - [92925] = 15, + [92933] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6301), 1, + ACTIONS(6050), 1, anon_sym_STAR, - ACTIONS(6309), 1, - anon_sym_async, STATE(2977), 1, sym_comment, - STATE(3837), 1, + STATE(4823), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6311), 2, + ACTIONS(6313), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 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(4378), 20, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -287650,14 +289886,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93000] = 5, + [93006] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(5561), 1, + anon_sym_STAR, STATE(2978), 1, sym_comment, - ACTIONS(2199), 13, + STATE(4741), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6315), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93079] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2979), 1, + sym_comment, + ACTIONS(2214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287671,7 +289966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2203), 28, + ACTIONS(2218), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287700,14 +289995,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93055] = 5, + [93134] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2979), 1, + STATE(2980), 1, sym_comment, - ACTIONS(2141), 13, + ACTIONS(2348), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287721,15 +290022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2145), 28, - sym__automatic_semicolon, + ACTIONS(2218), 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, @@ -287750,14 +290046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93110] = 5, + [93191] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2980), 1, + STATE(2981), 1, sym_comment, - ACTIONS(2177), 13, + ACTIONS(5450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287771,7 +290067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 28, + ACTIONS(5452), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287800,50 +290096,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93165] = 11, + [93246] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6317), 1, + anon_sym_STAR, + STATE(2982), 1, + sym_comment, + STATE(4689), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6319), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, anon_sym_COMMA, - ACTIONS(5200), 1, anon_sym_RBRACE, - STATE(2981), 1, - sym_comment, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2409), 29, + ACTIONS(2907), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -287856,50 +290155,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93232] = 11, + [93319] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6317), 1, + anon_sym_STAR, + ACTIONS(6321), 1, + anon_sym_async, + STATE(2983), 1, + sym_comment, + STATE(3889), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6323), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, anon_sym_COMMA, - ACTIONS(5200), 1, anon_sym_RBRACE, - STATE(2982), 1, - sym_comment, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2397), 29, + ACTIONS(4385), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -287912,14 +290215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93299] = 5, + [93394] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2983), 1, + STATE(2984), 1, sym_comment, - ACTIONS(2239), 13, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287933,7 +290236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2243), 28, + ACTIONS(5090), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287962,50 +290265,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93354] = 19, + [93449] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, + ACTIONS(2909), 1, anon_sym_async, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - ACTIONS(6212), 1, + ACTIONS(6161), 1, anon_sym_RBRACE, - STATE(2984), 1, + STATE(2985), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2907), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288026,16 +290329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93437] = 6, + [93532] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4216), 1, - anon_sym_EQ, - STATE(2985), 1, + STATE(2986), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(2112), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288049,13 +290350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 27, + ACTIONS(2116), 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, @@ -288077,104 +290379,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93494] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6212), 1, - anon_sym_RBRACE, - STATE(2986), 1, - sym_comment, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [93575] = 9, + [93587] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5203), 1, - anon_sym_LBRACK, STATE(2987), 1, sym_comment, - ACTIONS(3568), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5206), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2059), 10, + ACTIONS(2238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 24, + ACTIONS(2242), 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, @@ -288194,22 +290429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93638] = 8, + [93642] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4216), 1, - anon_sym_EQ, - ACTIONS(4341), 1, - anon_sym_in, - ACTIONS(4344), 1, - anon_sym_of, STATE(2988), 1, sym_comment, - ACTIONS(4135), 12, + ACTIONS(2270), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -288220,12 +290450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 26, + ACTIONS(2274), 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, @@ -288247,14 +290479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93699] = 5, + [93697] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(2989), 1, sym_comment, - ACTIONS(5583), 13, + ACTIONS(5428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288268,7 +290500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5585), 28, + ACTIONS(5430), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288297,16 +290529,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93754] = 6, + [93752] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4224), 1, - anon_sym_EQ, + ACTIONS(5112), 1, + anon_sym_QMARK, STATE(2990), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(5114), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5514), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4140), 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(4144), 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, + [93815] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(2991), 1, + sym_comment, + ACTIONS(5426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288320,11 +290604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 27, + ACTIONS(5160), 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, @@ -288348,14 +290633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93811] = 5, + [93870] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2991), 1, + STATE(2992), 1, sym_comment, - ACTIONS(5442), 13, + ACTIONS(5508), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288369,7 +290654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5444), 28, + ACTIONS(5510), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288398,44 +290683,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93866] = 14, + [93925] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6273), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(2992), 1, + ACTIONS(6161), 1, + anon_sym_RBRACE, + STATE(2993), 1, sym_comment, - STATE(4617), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6313), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288457,73 +290746,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93939] = 7, + [94006] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2993), 1, - sym_comment, - ACTIONS(6006), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6008), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, anon_sym_AMP_AMP, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6010), 1, + anon_sym_GT_GT, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, anon_sym_PERCENT, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6026), 1, + anon_sym_LT, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + ACTIONS(6325), 1, + anon_sym_COLON, + STATE(2226), 1, + sym_type_arguments, + STATE(2994), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6002), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6020), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6030), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 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, - [93998] = 7, + [94119] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2994), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6297), 1, + anon_sym_STAR, + STATE(2995), 1, sym_comment, - ACTIONS(6315), 2, + STATE(4828), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6327), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(6317), 3, + ACTIONS(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94192] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6297), 1, + anon_sym_STAR, + ACTIONS(6299), 1, + anon_sym_async, + STATE(2996), 1, + sym_comment, + STATE(3822), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6301), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4135), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94267] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6329), 1, + sym__automatic_semicolon, + STATE(2997), 1, + sym_comment, + ACTIONS(2340), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2112), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288537,7 +290972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(2116), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -288561,41 +290996,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94057] = 9, + [94326] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - ACTIONS(5230), 1, - anon_sym_LBRACK, - STATE(2995), 1, + STATE(2998), 1, sym_comment, - ACTIONS(5236), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5233), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5224), 10, + ACTIONS(5678), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 24, + ACTIONS(4999), 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, @@ -288615,14 +291046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94120] = 5, + [94381] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2996), 1, + STATE(2999), 1, sym_comment, - ACTIONS(5438), 13, + ACTIONS(2278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288636,7 +291067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5440), 28, + ACTIONS(2282), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288665,14 +291096,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94175] = 5, + [94436] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(2997), 1, + ACTIONS(6331), 1, + sym__automatic_semicolon, + STATE(3000), 1, sym_comment, - ACTIONS(5772), 13, + ACTIONS(2330), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288686,15 +291124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5774), 28, - sym__automatic_semicolon, + ACTIONS(2242), 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, @@ -288715,159 +291148,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94230] = 21, + [94495] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6226), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6006), 1, + anon_sym_AMP_AMP, + ACTIONS(6008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6238), 1, + ACTIONS(6014), 1, + anon_sym_AMP, + ACTIONS(6016), 1, + anon_sym_CARET, + ACTIONS(6018), 1, + anon_sym_PIPE, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6026), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(6034), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6036), 1, + sym__ternary_qmark, + ACTIONS(6333), 1, + anon_sym_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(2998), 1, + STATE(3001), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6228), 2, + ACTIONS(6004), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 13, - sym__ternary_qmark, + ACTIONS(6032), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6028), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94608] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4989), 1, anon_sym_of, + ACTIONS(6233), 1, anon_sym_AMP_AMP, + ACTIONS(6235), 1, anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3002), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [94317] = 34, + [94721] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4883), 1, - anon_sym_of, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6222), 1, + ACTIONS(4987), 1, + anon_sym_of, + ACTIONS(6233), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, + ACTIONS(6235), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6241), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(6243), 1, anon_sym_CARET, - ACTIONS(6234), 1, + ACTIONS(6245), 1, anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6253), 1, anon_sym_LT, - ACTIONS(6250), 1, + ACTIONS(6261), 1, anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, + ACTIONS(6263), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(2999), 1, + STATE(3003), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6255), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94430] = 5, + [94834] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3000), 1, + STATE(3004), 1, sym_comment, - ACTIONS(5431), 13, + ACTIONS(5674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288881,7 +291406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5433), 28, + ACTIONS(5676), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288910,152 +291435,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94485] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(5522), 1, - anon_sym_STAR, - STATE(3001), 1, - sym_comment, - STATE(4843), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6319), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94558] = 34, + [94889] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6233), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, + ACTIONS(6235), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(6241), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6243), 1, anon_sym_CARET, - ACTIONS(6144), 1, + ACTIONS(6245), 1, anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6253), 1, anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - ACTIONS(6321), 1, - anon_sym_COLON, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3002), 1, + STATE(3005), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(6255), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94671] = 5, + ACTIONS(4934), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [94994] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3003), 1, + STATE(3006), 1, sym_comment, - ACTIONS(5427), 13, + ACTIONS(5792), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289069,7 +291531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5429), 28, + ACTIONS(5794), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289098,14 +291560,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94726] = 5, + [95049] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3004), 1, + STATE(3007), 1, sym_comment, - ACTIONS(2153), 13, + ACTIONS(6335), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6337), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289119,15 +291588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2155), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -289148,14 +291612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94781] = 5, + [95108] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3005), 1, + STATE(3008), 1, sym_comment, - ACTIONS(5541), 13, + ACTIONS(5680), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289169,7 +291633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5543), 28, + ACTIONS(5682), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289198,14 +291662,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94836] = 5, + [95163] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3006), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3009), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4934), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [95254] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3010), 1, sym_comment, - ACTIONS(5319), 13, + ACTIONS(5746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289219,7 +291751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 28, + ACTIONS(5748), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289248,176 +291780,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94891] = 34, + [95309] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5568), 1, - anon_sym_RBRACE, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3007), 1, + STATE(3011), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(5774), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95004] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(5776), 28, sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6323), 1, - anon_sym_STAR, - ACTIONS(6325), 1, - anon_sym_async, - STATE(3008), 1, - sym_comment, - STATE(3864), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6327), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [95079] = 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95364] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3009), 1, + ACTIONS(4293), 1, + anon_sym_EQ, + ACTIONS(5114), 1, + anon_sym_extends, + STATE(3012), 1, sym_comment, - ACTIONS(5583), 13, + ACTIONS(5514), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(5585), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -289437,14 +291883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95134] = 5, + anon_sym_implements, + [95427] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3010), 1, + STATE(3013), 1, sym_comment, - ACTIONS(5587), 13, + ACTIONS(5689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289458,7 +291905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5589), 28, + ACTIONS(5001), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289487,37 +291934,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95189] = 5, + [95482] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3011), 1, + ACTIONS(5114), 1, + anon_sym_extends, + STATE(3014), 1, sym_comment, - ACTIONS(5601), 13, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5514), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4140), 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(5603), 28, - sym__automatic_semicolon, + ACTIONS(4144), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -289537,46 +291987,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95244] = 15, + [95543] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6329), 1, + ACTIONS(6339), 1, anon_sym_STAR, - ACTIONS(6331), 1, + ACTIONS(6341), 1, anon_sym_async, - STATE(3012), 1, + STATE(3015), 1, sym_comment, - STATE(3842), 1, + STATE(3824), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6333), 2, + ACTIONS(6343), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 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(4378), 20, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289597,14 +292047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95319] = 5, + [95618] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3013), 1, + STATE(3016), 1, sym_comment, - ACTIONS(5664), 13, + ACTIONS(2190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289618,7 +292068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5124), 28, + ACTIONS(2194), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289647,14 +292097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95374] = 5, + [95673] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3014), 1, + STATE(3017), 1, sym_comment, - ACTIONS(5613), 13, + ACTIONS(2180), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289668,7 +292118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5615), 28, + ACTIONS(2184), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289697,95 +292147,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95429] = 34, + [95728] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5246), 1, - anon_sym_of, - ACTIONS(6222), 1, - anon_sym_AMP_AMP, - ACTIONS(6224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, - anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, - anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6345), 1, anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3015), 1, + STATE(3018), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6246), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6248), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95542] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3016), 1, - sym_comment, - ACTIONS(5583), 13, + ACTIONS(4936), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -289794,129 +292194,60 @@ 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(5585), 28, - sym__automatic_semicolon, + ACTIONS(4934), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95597] = 34, + [95811] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6345), 1, anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - ACTIONS(6335), 1, - anon_sym_COLON, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3017), 1, + STATE(3019), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6156), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95710] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3018), 1, - sym_comment, - ACTIONS(2299), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2153), 13, - anon_sym_STAR, + ACTIONS(4936), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -289925,51 +292256,32 @@ 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(2155), 26, - sym__automatic_semicolon, + ACTIONS(4934), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [95767] = 6, + [95892] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3019), 1, + STATE(3020), 1, sym_comment, - ACTIONS(2295), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2239), 13, + ACTIONS(5755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289983,10 +292295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2243), 23, + ACTIONS(5757), 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, @@ -290007,42 +292324,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95824] = 10, + [95947] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5203), 1, - anon_sym_LBRACK, - ACTIONS(5880), 1, - anon_sym_COLON, - STATE(3020), 1, + STATE(3021), 1, sym_comment, - ACTIONS(5206), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3568), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2059), 11, + ACTIONS(5759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 22, + ACTIONS(5761), 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, @@ -290062,65 +292374,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95889] = 6, + [96002] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3021), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3022), 1, sym_comment, - ACTIONS(2313), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2177), 13, - anon_sym_STAR, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4936), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 23, + ACTIONS(6259), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [95946] = 5, + [96101] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3022), 1, + STATE(3023), 1, sym_comment, - ACTIONS(5738), 13, + ACTIONS(5697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290134,7 +292467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 28, + ACTIONS(5005), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290163,20 +292496,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96001] = 7, + [96156] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6337), 1, - sym__automatic_semicolon, - STATE(3023), 1, - sym_comment, - ACTIONS(2295), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2239), 13, - anon_sym_STAR, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3024), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 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, + [96253] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5086), 1, + anon_sym_of, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3025), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96366] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6348), 1, + sym__automatic_semicolon, + STATE(3026), 1, + sym_comment, + ACTIONS(2426), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2190), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -290189,7 +292672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2243), 25, + ACTIONS(2194), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -290215,42 +292698,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96060] = 10, + [96425] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - ACTIONS(5230), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_COLON, - STATE(3024), 1, + STATE(3027), 1, sym_comment, - ACTIONS(5233), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5236), 3, + ACTIONS(6102), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6104), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5224), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 22, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -290270,19 +292750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96125] = 7, + [96484] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6339), 1, + ACTIONS(6350), 1, sym__automatic_semicolon, - STATE(3025), 1, + STATE(3028), 1, sym_comment, - ACTIONS(2313), 2, + ACTIONS(2430), 2, anon_sym_else, anon_sym_while, - ACTIONS(2177), 13, + ACTIONS(2180), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290296,7 +292776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 25, + ACTIONS(2184), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -290322,17 +292802,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96184] = 5, + [96543] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3026), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3029), 1, sym_comment, - ACTIONS(5732), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 3, anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6255), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 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, + [96638] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4210), 1, + anon_sym_EQ, + ACTIONS(4362), 1, anon_sym_in, + ACTIONS(4365), 1, + anon_sym_of, + STATE(3030), 1, + sym_comment, + ACTIONS(4140), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -290343,14 +292898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5734), 28, + ACTIONS(4144), 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, @@ -290372,14 +292925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96239] = 5, + [96699] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3027), 1, + STATE(3031), 1, sym_comment, - ACTIONS(5715), 13, + ACTIONS(2408), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290393,15 +292952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5717), 28, - sym__automatic_semicolon, + ACTIONS(2274), 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, @@ -290422,14 +292976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96294] = 5, + [96756] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3028), 1, + STATE(3032), 1, sym_comment, - ACTIONS(5711), 13, + ACTIONS(2412), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290443,15 +293003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5713), 28, - sym__automatic_semicolon, + ACTIONS(2282), 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, @@ -290472,14 +293027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96349] = 5, + [96813] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3029), 1, + STATE(3033), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(2150), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290493,7 +293048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5709), 28, + ACTIONS(2154), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290522,20 +293077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96404] = 6, + [96868] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3030), 1, + ACTIONS(6352), 1, + anon_sym_LPAREN, + ACTIONS(6355), 1, + anon_sym_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(6360), 1, + anon_sym_QMARK, + STATE(3034), 1, sym_comment, - ACTIONS(2339), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2215), 13, + ACTIONS(4140), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290546,13 +293103,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(2219), 23, + ACTIONS(4144), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -290573,22 +293131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96461] = 9, + [96931] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6341), 1, - anon_sym_LPAREN, - ACTIONS(6344), 1, - anon_sym_COLON, - ACTIONS(6346), 1, - anon_sym_LT, - ACTIONS(6349), 1, - anon_sym_QMARK, - STATE(3031), 1, + STATE(3035), 1, sym_comment, - ACTIONS(4135), 12, + ACTIONS(2136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290599,13 +293149,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(4139), 25, + ACTIONS(2140), 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, @@ -290627,53 +293181,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96524] = 14, + [96986] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3036), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(4934), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [97069] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(5989), 1, - anon_sym_STAR, - STATE(3032), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6351), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, + ACTIONS(5210), 1, anon_sym_RBRACE, + STATE(3037), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(2462), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -290686,302 +293301,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96597] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6353), 1, - sym_regex_flags, - STATE(3033), 1, - sym_comment, - ACTIONS(6206), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6208), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [96654] = 34, + [97136] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4929), 1, - anon_sym_of, - ACTIONS(6222), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(6234), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(6250), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - STATE(2222), 1, + ACTIONS(6362), 1, + anon_sym_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(3034), 1, + STATE(3038), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96767] = 34, + [97249] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5084), 1, - anon_sym_of, - ACTIONS(6222), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6233), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6241), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(6243), 1, anon_sym_CARET, - ACTIONS(6234), 1, + ACTIONS(6245), 1, anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6253), 1, anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3035), 1, + STATE(3039), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6255), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96880] = 34, + ACTIONS(4934), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [97352] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6359), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6241), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6243), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6245), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6253), 1, anon_sym_LT, - ACTIONS(6389), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3036), 1, + STATE(3040), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6255), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96993] = 5, + ACTIONS(4934), 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, + [97453] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6364), 1, + anon_sym_STAR, + ACTIONS(6366), 1, + anon_sym_async, + STATE(3041), 1, + sym_comment, + STATE(3908), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6368), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97528] = 14, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(3037), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6149), 1, + anon_sym_STAR, + STATE(3042), 1, + sym_comment, + STATE(4815), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6370), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97601] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3043), 1, sym_comment, - ACTIONS(5703), 13, + ACTIONS(5782), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290995,7 +293667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5705), 28, + ACTIONS(5784), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291024,37 +293696,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97048] = 15, + [97656] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5989), 1, + ACTIONS(6339), 1, anon_sym_STAR, - ACTIONS(5991), 1, + STATE(3044), 1, + sym_comment, + STATE(4738), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6372), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - STATE(3038), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97729] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6364), 1, + anon_sym_STAR, + STATE(3045), 1, sym_comment, - STATE(3853), 1, + STATE(4627), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(5995), 2, + ACTIONS(6374), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -291063,11 +293792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -291084,36 +293814,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97123] = 5, + [97802] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3039), 1, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(3046), 1, sym_comment, - ACTIONS(2261), 13, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5114), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4140), 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(2265), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, + [97867] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, + ACTIONS(5210), 1, anon_sym_RBRACE, + STATE(3047), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [97934] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3048), 1, + sym_comment, + ACTIONS(6120), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6122), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -291134,14 +293977,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97178] = 5, + [97993] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6267), 1, + anon_sym_STAR, + STATE(3049), 1, + sym_comment, + STATE(4621), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6376), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98066] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3040), 1, + STATE(3050), 1, sym_comment, - ACTIONS(2161), 13, + ACTIONS(6120), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6214), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291155,16 +294064,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, + [98125] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4281), 1, + anon_sym_EQ, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(3051), 1, + sym_comment, + ACTIONS(5114), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_extends, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(4144), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -291184,14 +294142,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97233] = 5, + [98188] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3041), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3052), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4934), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [98265] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3053), 1, sym_comment, - ACTIONS(5621), 13, + ACTIONS(2224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291205,7 +294224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5623), 28, + ACTIONS(2228), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291234,19 +294253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97288] = 7, + [98320] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6393), 1, + ACTIONS(6378), 1, sym__automatic_semicolon, - STATE(3042), 1, + STATE(3054), 1, sym_comment, - ACTIONS(2339), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2215), 13, + ACTIONS(2358), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291260,12 +294281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 25, + ACTIONS(2130), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -291286,20 +294305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97347] = 6, + [98379] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3043), 1, + STATE(3055), 1, sym_comment, - ACTIONS(2277), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2169), 13, + ACTIONS(5482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291313,10 +294326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 23, + ACTIONS(5484), 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, @@ -291337,93 +294355,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97404] = 34, + [98434] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6132), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(6144), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - ACTIONS(6395), 1, + ACTIONS(6380), 1, anon_sym_COLON, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3044), 1, + STATE(3056), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97517] = 5, + [98547] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3045), 1, + STATE(3057), 1, sym_comment, - ACTIONS(5631), 13, + ACTIONS(5699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291437,7 +294455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5633), 28, + ACTIONS(5701), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291466,93 +294484,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97572] = 34, + [98602] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4883), 1, - anon_sym_RBRACK, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6361), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(6389), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - STATE(2222), 1, + ACTIONS(6382), 1, + anon_sym_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(3046), 1, + STATE(3058), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97685] = 5, + [98715] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3047), 1, + STATE(3059), 1, sym_comment, - ACTIONS(5617), 13, + ACTIONS(5707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291566,7 +294584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5619), 28, + ACTIONS(5709), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291595,14 +294613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97740] = 5, + [98770] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3048), 1, + STATE(3060), 1, sym_comment, - ACTIONS(5697), 13, + ACTIONS(5661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291616,7 +294634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 28, + ACTIONS(5663), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291645,70 +294663,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97795] = 5, + [98825] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3049), 1, - sym_comment, - ACTIONS(5654), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5656), 28, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6384), 1, + anon_sym_STAR, + STATE(3061), 1, + sym_comment, + STATE(4624), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6386), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, anon_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, - [97850] = 6, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98898] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3050), 1, + STATE(3062), 1, sym_comment, - ACTIONS(2365), 5, + ACTIONS(2376), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2127), 13, + ACTIONS(2224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291722,7 +294749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2131), 23, + ACTIONS(2228), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -291746,14 +294773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97907] = 5, + [98955] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3051), 1, + STATE(3063), 1, sym_comment, - ACTIONS(5652), 13, + ACTIONS(5653), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291767,7 +294794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 28, + ACTIONS(5655), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291796,87 +294823,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97962] = 5, + [99010] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3052), 1, - sym_comment, - ACTIONS(5648), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5650), 28, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6082), 1, + anon_sym_STAR, + ACTIONS(6084), 1, + anon_sym_async, + STATE(3064), 1, + sym_comment, + STATE(3895), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6088), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, anon_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, - [98017] = 15, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99085] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6397), 1, + ACTIONS(6082), 1, anon_sym_STAR, - ACTIONS(6399), 1, - anon_sym_async, - STATE(3053), 1, + STATE(3065), 1, sym_comment, - STATE(3851), 1, + STATE(4757), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6401), 2, + ACTIONS(6388), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -291885,11 +294920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4378), 20, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -291906,152 +294942,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98092] = 34, + [99158] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6132), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(6144), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - ACTIONS(6403), 1, + ACTIONS(6390), 1, anon_sym_COLON, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3054), 1, + STATE(3066), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98205] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6397), 1, - anon_sym_STAR, - STATE(3055), 1, - sym_comment, - STATE(4725), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6405), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98278] = 5, + [99271] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3056), 1, + STATE(3067), 1, sym_comment, - ACTIONS(5764), 13, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292065,7 +295042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 28, + ACTIONS(5090), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292094,14 +295071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98333] = 5, + [99326] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3057), 1, + ACTIONS(6392), 1, + sym__automatic_semicolon, + STATE(3068), 1, sym_comment, - ACTIONS(5666), 13, + ACTIONS(2398), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2150), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292115,14 +295097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 28, - sym__automatic_semicolon, + ACTIONS(2154), 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, @@ -292144,14 +295123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98388] = 5, + [99385] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3058), 1, + STATE(3069), 1, sym_comment, - ACTIONS(5573), 13, + ACTIONS(5616), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292165,7 +295144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5575), 28, + ACTIONS(5618), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292194,93 +295173,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98443] = 34, + [99440] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6253), 1, anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - ACTIONS(6407), 1, - anon_sym_COLON, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3059), 1, + STATE(3070), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(6158), 2, + ACTIONS(4934), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98556] = 5, + anon_sym_satisfies, + [99527] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3060), 1, + STATE(3071), 1, sym_comment, - ACTIONS(5678), 13, + ACTIONS(2396), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292294,14 +295263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 28, + ACTIONS(2306), 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, @@ -292323,14 +295290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98611] = 5, + [99584] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3061), 1, + STATE(3072), 1, sym_comment, - ACTIONS(5680), 13, + ACTIONS(5711), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292344,7 +295311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5682), 28, + ACTIONS(5713), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292373,50 +295340,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98666] = 11, + [99639] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5160), 1, + anon_sym_of, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3073), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99752] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5005), 1, + anon_sym_of, + ACTIONS(6233), 1, + anon_sym_AMP_AMP, + ACTIONS(6235), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, + anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, + anon_sym_PERCENT, + ACTIONS(6251), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3074), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99865] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(5217), 1, + ACTIONS(1046), 1, anon_sym_RBRACE, - STATE(3062), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_STAR, + STATE(3075), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(4623), 1, + sym__property_name, + STATE(6195), 1, aux_sym_object_repeat1, - ACTIONS(1041), 6, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2397), 29, + ACTIONS(2907), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -292429,50 +295562,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98733] = 11, + [99948] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(5217), 1, + ACTIONS(1046), 1, anon_sym_RBRACE, - STATE(3063), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_STAR, + STATE(3076), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(4623), 1, + sym__property_name, + STATE(6195), 1, aux_sym_object_repeat1, - ACTIONS(1041), 6, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2409), 29, + ACTIONS(2907), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -292485,14 +295625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98800] = 5, + [100029] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3064), 1, + STATE(3077), 1, sym_comment, - ACTIONS(5609), 13, + ACTIONS(5608), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292506,7 +295646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5611), 28, + ACTIONS(5610), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292535,72 +295675,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98855] = 7, + [100084] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6409), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - STATE(3065), 1, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6137), 1, + anon_sym_STAR, + ACTIONS(6139), 1, + anon_sym_async, + STATE(3078), 1, sym_comment, - ACTIONS(2335), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2141), 13, + STATE(3833), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6143), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100159] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6050), 1, anon_sym_STAR, + ACTIONS(6052), 1, + anon_sym_async, + STATE(3079), 1, + sym_comment, + STATE(3815), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100234] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6398), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, anon_sym_GT_GT, + ACTIONS(6408), 1, anon_sym_AMP, + ACTIONS(6410), 1, + anon_sym_CARET, + ACTIONS(6412), 1, anon_sym_PIPE, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, + anon_sym_LT, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3080), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2145), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100347] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4890), 1, + anon_sym_of, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6233), 1, anon_sym_AMP_AMP, + ACTIONS(6235), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, anon_sym_PERCENT, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6253), 1, + anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3081), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 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, - [98914] = 6, + [100460] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3066), 1, - sym_comment, - ACTIONS(2299), 5, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6137), 1, + anon_sym_STAR, + STATE(3082), 1, + sym_comment, + STATE(4841), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6432), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2153), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100533] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3083), 1, + sym_comment, + ACTIONS(5604), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292614,10 +296033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2155), 23, + ACTIONS(5606), 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, @@ -292638,118 +296062,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98971] = 34, + [100588] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5041), 1, - anon_sym_of, - ACTIONS(6222), 1, + ACTIONS(5320), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6234), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6250), 1, + ACTIONS(6428), 1, anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, + ACTIONS(6430), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3067), 1, + STATE(3084), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99084] = 7, + [100701] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3068), 1, - sym_comment, - ACTIONS(6077), 2, + ACTIONS(4262), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6195), 3, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(3085), 1, + sym_comment, + ACTIONS(5114), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + anon_sym_extends, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(4139), 23, + ACTIONS(4144), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -292769,21 +296195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99143] = 7, + [100764] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3069), 1, + STATE(3086), 1, sym_comment, - ACTIONS(6077), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6079), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + ACTIONS(5557), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292797,10 +296216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(5559), 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, @@ -292821,14 +296245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99202] = 5, + [100819] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3070), 1, + STATE(3087), 1, sym_comment, - ACTIONS(5605), 13, + ACTIONS(6434), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6436), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292842,15 +296273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5607), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -292871,182 +296297,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99257] = 14, + [100878] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(164), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, anon_sym_LBRACK, - ACTIONS(6323), 1, - anon_sym_STAR, - STATE(3071), 1, + STATE(3088), 1, sym_comment, - STATE(4660), 1, + STATE(7236), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(7272), 1, + sym__destructuring_pattern, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6411), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(6440), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99330] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - ACTIONS(6413), 1, - anon_sym_COLON, - STATE(2222), 1, - sym_type_arguments, - STATE(3072), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6156), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99443] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6329), 1, - anon_sym_STAR, - STATE(3073), 1, - sym_comment, - STATE(4649), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6415), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 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(2900), 21, + STATE(6351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6438), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293056,6 +296344,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, @@ -293068,14 +296358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99516] = 5, + [100955] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3074), 1, + STATE(3089), 1, sym_comment, - ACTIONS(5452), 13, + ACTIONS(2126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293089,7 +296379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5454), 28, + ACTIONS(2130), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293118,14 +296408,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99571] = 5, + [101010] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3075), 1, + STATE(3090), 1, sym_comment, - ACTIONS(5766), 13, + ACTIONS(6442), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6444), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293139,15 +296436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5768), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -293168,14 +296460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99626] = 5, + [101069] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3076), 1, + STATE(3091), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(6442), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6444), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293189,15 +296488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5689), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -293218,251 +296512,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99681] = 34, + [101128] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(3092), 1, + sym_comment, + ACTIONS(6442), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6444), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5119), 1, - anon_sym_of, - ACTIONS(6222), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6250), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3077), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101187] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6446), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, + STATE(3093), 1, + sym_comment, + STATE(4670), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6448), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101260] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3094), 1, + sym_comment, + ACTIONS(5640), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99794] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(5642), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - anon_sym_of, - ACTIONS(6222), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6250), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3078), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6246), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6248), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99907] = 34, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101315] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_STAR, + ACTIONS(6096), 1, + anon_sym_RBRACE, + STATE(3095), 1, + sym_comment, + STATE(4623), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101398] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(6050), 1, + anon_sym_STAR, + ACTIONS(6052), 1, + anon_sym_async, + STATE(3096), 1, + sym_comment, + STATE(3797), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5130), 1, - anon_sym_of, - ACTIONS(6222), 1, - anon_sym_AMP_AMP, - ACTIONS(6224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, - anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, - anon_sym_PERCENT, - ACTIONS(6240), 1, - anon_sym_STAR_STAR, - ACTIONS(6242), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3079), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6218), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6246), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6248), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100020] = 5, + anon_sym_QMARK, + ACTIONS(4385), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101473] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3080), 1, + STATE(3097), 1, sym_comment, - ACTIONS(5545), 13, + ACTIONS(5629), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293476,7 +296818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5547), 28, + ACTIONS(5631), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293505,14 +296847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100075] = 5, + [101528] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3081), 1, + STATE(3098), 1, sym_comment, - ACTIONS(5559), 13, + ACTIONS(2252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293526,7 +296868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5084), 28, + ACTIONS(2256), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293555,21 +296897,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100130] = 7, + [101583] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6417), 1, - sym__automatic_semicolon, - STATE(3082), 1, + STATE(3099), 1, sym_comment, - ACTIONS(2335), 4, + ACTIONS(6450), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6452), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2141), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293583,7 +296925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2145), 23, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -293607,172 +296949,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100189] = 34, + [101642] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(3100), 1, + sym_comment, + ACTIONS(6450), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6452), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5142), 1, - anon_sym_of, - ACTIONS(6222), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3083), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6218), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6246), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6248), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100302] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101701] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_of, - ACTIONS(6222), 1, - anon_sym_AMP_AMP, - ACTIONS(6224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, - anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, - anon_sym_PERCENT, - ACTIONS(6240), 1, - anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3084), 1, + STATE(3101), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6218), 2, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(5067), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100415] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [101774] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3085), 1, + STATE(3102), 1, sym_comment, - ACTIONS(5660), 13, + ACTIONS(6450), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6452), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293786,15 +297088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5662), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -293815,212 +297112,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100470] = 34, + [101833] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6132), 1, + ACTIONS(5322), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, anon_sym_AMP_AMP, - ACTIONS(6134), 1, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6140), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6144), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6148), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6150), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6152), 1, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6160), 1, + ACTIONS(6428), 1, anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, + ACTIONS(6430), 1, sym__ternary_qmark, - ACTIONS(6419), 1, - anon_sym_COLON, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3086), 1, + STATE(3103), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6130), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6138), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6146), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6156), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6158), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6154), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100583] = 30, + [101946] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(3104), 1, + sym_comment, + ACTIONS(6457), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6459), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6222), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3087), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 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(6218), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102005] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6461), 1, + sym__automatic_semicolon, + STATE(3105), 1, + sym_comment, + ACTIONS(2376), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2224), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(2228), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 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, - [100688] = 14, + [102064] = 24, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, + ACTIONS(2066), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6421), 1, - anon_sym_STAR, - STATE(3088), 1, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6467), 1, + anon_sym_RBRACE, + ACTIONS(6469), 1, + anon_sym_async, + ACTIONS(6471), 1, + anon_sym_static, + ACTIONS(6473), 1, + anon_sym_readonly, + ACTIONS(6479), 1, + anon_sym_override, + STATE(3106), 1, sym_comment, - STATE(4646), 1, + STATE(3502), 1, + sym_accessibility_modifier, + STATE(3520), 1, + sym_override_modifier, + STATE(4471), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(5855), 1, + aux_sym_object_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6423), 2, + ACTIONS(6475), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 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(2900), 21, + ACTIONS(6477), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5858), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6463), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -294028,48 +297364,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100761] = 18, + [102157] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - ACTIONS(6084), 1, + ACTIONS(6096), 1, anon_sym_RBRACE, - STATE(3089), 1, + STATE(3107), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294091,153 +297427,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100842] = 23, + [102238] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6226), 1, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5343), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6238), 1, + ACTIONS(6408), 1, + anon_sym_AMP, + ACTIONS(6410), 1, + anon_sym_CARET, + ACTIONS(6412), 1, + anon_sym_PIPE, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6420), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + STATE(2226), 1, sym_type_arguments, - STATE(3090), 1, + STATE(3108), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2407), 2, + ACTIONS(6424), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [100933] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [102351] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6084), 1, - anon_sym_RBRACE, - STATE(3091), 1, - sym_comment, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6481), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101016] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6425), 1, - sym__automatic_semicolon, - STATE(3092), 1, + STATE(2226), 1, + sym_type_arguments, + STATE(3109), 1, sym_comment, - ACTIONS(2283), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2161), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5326), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -294246,18 +297551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 25, + ACTIONS(5328), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -294271,93 +297569,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, - [101075] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5144), 1, - anon_sym_RBRACE, - STATE(3093), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2397), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [101142] = 14, + [102432] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6427), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3094), 1, + STATE(3110), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5155), 12, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294368,12 +297587,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(5157), 19, + ACTIONS(5717), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_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, @@ -294389,55 +297617,51 @@ 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, - [101215] = 19, + [102487] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(4527), 1, + sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6484), 1, anon_sym_STAR, - STATE(3095), 1, + STATE(3111), 1, sym_comment, - STATE(4640), 1, + STATE(4680), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6486), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 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(2900), 20, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -294454,53 +297678,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101298] = 18, + [102560] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6488), 1, anon_sym_STAR, - STATE(3096), 1, + ACTIONS(6490), 1, + anon_sym_async, + STATE(3112), 1, sym_comment, - STATE(4640), 1, + STATE(3811), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6492), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 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(2900), 21, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -294517,14 +297738,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101379] = 5, + [102635] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3097), 1, + STATE(3113), 1, sym_comment, - ACTIONS(5577), 13, + ACTIONS(2336), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294538,15 +297765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5579), 28, - sym__automatic_semicolon, + ACTIONS(2256), 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, @@ -294567,91 +297789,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101434] = 5, + [102692] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3098), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5306), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6408), 1, + anon_sym_AMP, + ACTIONS(6410), 1, + anon_sym_CARET, + ACTIONS(6412), 1, + anon_sym_PIPE, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, + anon_sym_LT, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3114), 1, sym_comment, - ACTIONS(5319), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6424), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102805] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4890), 1, + anon_sym_RBRACK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, anon_sym_GT_GT, + ACTIONS(6408), 1, anon_sym_AMP, + ACTIONS(6410), 1, + anon_sym_CARET, + ACTIONS(6412), 1, anon_sym_PIPE, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, + anon_sym_LT, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3115), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102918] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5306), 1, + anon_sym_of, + ACTIONS(6233), 1, anon_sym_AMP_AMP, + ACTIONS(6235), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6237), 1, + anon_sym_GT_GT, + ACTIONS(6241), 1, + anon_sym_AMP, + ACTIONS(6243), 1, anon_sym_CARET, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, anon_sym_PERCENT, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6253), 1, + anon_sym_LT, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3116), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6231), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6239), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6247), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6257), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6255), 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, - [101489] = 9, + [103031] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4289), 1, - anon_sym_EQ, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(3099), 1, + ACTIONS(6494), 1, + sym__automatic_semicolon, + STATE(3117), 1, sym_comment, - ACTIONS(5051), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(2352), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 24, + ACTIONS(2140), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -294671,188 +298078,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101552] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5450), 1, - anon_sym_LBRACK, - ACTIONS(6086), 1, - anon_sym_STAR, - ACTIONS(6088), 1, - anon_sym_async, - STATE(3100), 1, - sym_comment, - STATE(3903), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6092), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101627] = 34, + [103090] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5109), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(6389), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - STATE(2222), 1, + ACTIONS(6496), 1, + anon_sym_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(3101), 1, + STATE(3118), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101740] = 14, + [103203] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6086), 1, + ACTIONS(6498), 1, anon_sym_STAR, - STATE(3102), 1, + ACTIONS(6500), 1, + anon_sym_async, + STATE(3119), 1, sym_comment, - STATE(4774), 1, + STATE(3830), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6430), 2, + ACTIONS(6502), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 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(2900), 21, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -294869,174 +298217,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101813] = 34, + [103278] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5140), 1, + ACTIONS(5160), 1, anon_sym_RBRACK, - ACTIONS(6361), 1, + ACTIONS(6400), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6389), 1, + ACTIONS(6428), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, + ACTIONS(6430), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3103), 1, + STATE(3120), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101926] = 7, + [103391] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6432), 1, - sym__automatic_semicolon, - STATE(3104), 1, - sym_comment, - ACTIONS(2343), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2261), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2265), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3121), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(6414), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(4934), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [101985] = 18, + [103478] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6434), 1, + ACTIONS(6504), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3105), 1, + STATE(3122), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5090), 11, + ACTIONS(5273), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -295047,8 +298404,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 15, + ACTIONS(5275), 17, sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -295063,140 +298421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102066] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_satisfies, + [103553] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5144), 1, - anon_sym_RBRACE, - STATE(3106), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2409), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [102133] = 14, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(6507), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6030), 1, - anon_sym_STAR, - STATE(3107), 1, - sym_comment, - STATE(4842), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6437), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102206] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - STATE(3108), 1, + STATE(3123), 1, sym_comment, - STATE(2441), 2, - sym_template_string, - sym_arguments, - ACTIONS(6439), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4865), 13, + ACTIONS(2358), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295210,9 +298448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 21, + ACTIONS(2130), 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, @@ -295231,372 +298472,332 @@ 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, - [102269] = 34, + [103612] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5086), 1, anon_sym_RBRACK, - ACTIONS(6361), 1, + ACTIONS(6400), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6389), 1, + ACTIONS(6428), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, + ACTIONS(6430), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3109), 1, + STATE(3124), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102382] = 34, + [103725] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6361), 1, + ACTIONS(5009), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6389), 1, + ACTIONS(6428), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, + ACTIONS(6430), 1, sym__ternary_qmark, - ACTIONS(6441), 1, - anon_sym_RBRACK, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3110), 1, + STATE(3125), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102495] = 34, + [103838] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5041), 1, + ACTIONS(5007), 1, anon_sym_RBRACK, - ACTIONS(6361), 1, + ACTIONS(6400), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6389), 1, + ACTIONS(6428), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, + ACTIONS(6430), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3111), 1, + STATE(3126), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102608] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [103951] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5014), 1, - anon_sym_RBRACE, - STATE(3112), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2397), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [102675] = 14, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6443), 1, - anon_sym_STAR, - STATE(3113), 1, - sym_comment, - STATE(4833), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6445), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5005), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6408), 1, + anon_sym_AMP, + ACTIONS(6410), 1, + anon_sym_CARET, + ACTIONS(6412), 1, + anon_sym_PIPE, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102748] = 7, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3127), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6424), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104064] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - sym__automatic_semicolon, - STATE(3114), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2301), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2199), 13, + ACTIONS(5657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295610,11 +298811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2203), 25, + ACTIONS(5659), 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, @@ -295636,124 +298840,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102807] = 9, + [104119] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6449), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6454), 1, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5001), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6408), 1, + anon_sym_AMP, + ACTIONS(6410), 1, + anon_sym_CARET, + ACTIONS(6412), 1, + anon_sym_PIPE, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6457), 1, - anon_sym_QMARK, - STATE(3115), 1, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3129), 1, sym_comment, - ACTIONS(5772), 12, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5774), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 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, - [102870] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5014), 1, - anon_sym_RBRACE, - STATE(3116), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2409), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [102937] = 5, + [104232] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3117), 1, + ACTIONS(4252), 1, + anon_sym_EQ, + STATE(3130), 1, sym_comment, - ACTIONS(5549), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295767,12 +298942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5551), 28, + ACTIONS(4144), 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, @@ -295796,170 +298970,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102992] = 19, + [104289] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(4527), 1, + sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6488), 1, anon_sym_STAR, - ACTIONS(6094), 1, - anon_sym_RBRACE, - STATE(3118), 1, + STATE(3131), 1, sym_comment, - STATE(4640), 1, + STATE(4831), 1, sym__property_name, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6509), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103075] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_COMMA, - ACTIONS(5316), 1, - anon_sym_RBRACE, - STATE(3119), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2397), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [103142] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, + ACTIONS(1042), 8, anon_sym_EQ, - ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5316), 1, - anon_sym_RBRACE, - STATE(3120), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 6, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2409), 29, + ACTIONS(2907), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -295972,344 +299029,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103209] = 34, + [104362] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(4961), 1, + ACTIONS(4999), 1, anon_sym_RBRACK, - ACTIONS(6361), 1, + ACTIONS(6400), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6389), 1, + ACTIONS(6428), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, + ACTIONS(6430), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3121), 1, + STATE(3132), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103322] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [104475] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(6459), 1, - anon_sym_STAR, - ACTIONS(6461), 1, - anon_sym_async, - STATE(3122), 1, - sym_comment, - STATE(3804), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6463), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4989), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6408), 1, + anon_sym_AMP, + ACTIONS(6410), 1, + anon_sym_CARET, + ACTIONS(6412), 1, + anon_sym_PIPE, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103397] = 9, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3133), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6424), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104588] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4298), 1, - anon_sym_EQ, - ACTIONS(5051), 1, - anon_sym_extends, - STATE(3123), 1, - sym_comment, - ACTIONS(5535), 2, - anon_sym_COMMA, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5538), 3, - anon_sym_GT, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(4987), 1, + anon_sym_RBRACK, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6408), 1, anon_sym_AMP, + ACTIONS(6410), 1, + anon_sym_CARET, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, + anon_sym_LT, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3134), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6396), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104701] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6400), 1, anon_sym_AMP_AMP, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6408), 1, + anon_sym_AMP, + ACTIONS(6410), 1, anon_sym_CARET, + ACTIONS(6412), 1, + anon_sym_PIPE, + ACTIONS(6416), 1, anon_sym_PERCENT, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6420), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3135), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6424), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 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(4934), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_implements, - [103460] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6094), 1, - anon_sym_RBRACE, - STATE(3124), 1, - sym_comment, - STATE(4640), 1, - sym__property_name, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103541] = 21, + [104806] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6365), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3125), 1, + STATE(3136), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6367), 2, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 7, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 13, + ACTIONS(4934), 10, 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, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [103628] = 8, + [104897] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5880), 1, - anon_sym_of, - ACTIONS(6465), 1, - anon_sym_in, - STATE(3126), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3137), 1, sym_comment, - ACTIONS(2059), 12, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 11, anon_sym_STAR, - anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -296317,66 +299456,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 26, - sym__automatic_semicolon, + ACTIONS(4934), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103689] = 15, + [104980] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6468), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3127), 1, + STATE(3138), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5065), 12, + ACTIONS(5536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296387,12 +299491,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(5067), 17, + ACTIONS(5538), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_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, @@ -296406,54 +299519,54 @@ 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, - [103764] = 14, + [105035] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6459), 1, - anon_sym_STAR, - STATE(3128), 1, - sym_comment, - STATE(4838), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6471), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(4961), 1, anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(5030), 1, + anon_sym_RBRACE, + STATE(3139), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2462), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -296466,101 +299579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103837] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5246), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, - anon_sym_LT, - ACTIONS(6389), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3129), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103950] = 8, + [105102] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5637), 1, - anon_sym_EQ, - ACTIONS(5862), 1, - anon_sym_of, - ACTIONS(6473), 1, - anon_sym_in, - STATE(3130), 1, + STATE(3140), 1, sym_comment, - ACTIONS(5635), 12, + ACTIONS(5585), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -296571,12 +299600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5639), 26, + ACTIONS(5322), 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, @@ -296598,53 +299629,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104011] = 14, + [105157] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6096), 1, - anon_sym_STAR, - STATE(3131), 1, - sym_comment, - STATE(4824), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6476), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(4961), 1, anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(5030), 1, + anon_sym_RBRACE, + STATE(3141), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -296657,36 +299685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104084] = 15, + [105224] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6478), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3132), 1, + STATE(3142), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5065), 12, + ACTIONS(5540), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296697,76 +299703,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(5067), 17, + ACTIONS(5542), 28, + sym__automatic_semicolon, 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_satisfies, - [104159] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4815), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6481), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3133), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5090), 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(5092), 15, - sym__ternary_qmark, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -296780,113 +299731,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [104240] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105279] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5109), 1, - anon_sym_of, - ACTIONS(6222), 1, - anon_sym_AMP_AMP, - ACTIONS(6224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, - anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3134), 1, + STATE(3143), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6246), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6248), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104353] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6484), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3135), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5155), 12, - anon_sym_STAR, + ACTIONS(4936), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -296895,44 +299780,32 @@ 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(5157), 19, + ACTIONS(4934), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, - [104426] = 7, + [105360] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6487), 1, - sym__automatic_semicolon, - STATE(3136), 1, + STATE(3144), 1, sym_comment, - ACTIONS(2343), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2261), 13, + ACTIONS(5587), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296946,10 +299819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2265), 23, + ACTIONS(5589), 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, @@ -296970,282 +299848,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104485] = 35, + [105415] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5788), 1, - anon_sym_of, - ACTIONS(6220), 1, - anon_sym_GT, - ACTIONS(6222), 1, - anon_sym_AMP_AMP, - ACTIONS(6224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6420), 1, anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - ACTIONS(6489), 1, - anon_sym_in, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3137), 1, + STATE(3145), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6228), 2, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104600] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4934), 7, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, anon_sym_RBRACK, - ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, - anon_sym_LT, - ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3138), 1, + anon_sym_satisfies, + [105514] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3146), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(2396), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2304), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(2306), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [104713] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105571] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_STAR, + ACTIONS(6157), 1, + anon_sym_RBRACE, + STATE(3147), 1, + sym_comment, + STATE(4623), 1, + sym__property_name, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105654] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5138), 1, - anon_sym_of, - ACTIONS(6222), 1, + ACTIONS(6006), 1, anon_sym_AMP_AMP, - ACTIONS(6224), 1, + ACTIONS(6008), 1, anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, + ACTIONS(6010), 1, anon_sym_GT_GT, - ACTIONS(6230), 1, + ACTIONS(6014), 1, anon_sym_AMP, - ACTIONS(6232), 1, + ACTIONS(6016), 1, anon_sym_CARET, - ACTIONS(6234), 1, + ACTIONS(6018), 1, anon_sym_PIPE, - ACTIONS(6238), 1, + ACTIONS(6022), 1, anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6024), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6026), 1, anon_sym_LT, - ACTIONS(6250), 1, + ACTIONS(6034), 1, anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, + ACTIONS(6036), 1, sym__ternary_qmark, - STATE(2222), 1, + ACTIONS(6514), 1, + anon_sym_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(3139), 1, + STATE(3148), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, + ACTIONS(6002), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6220), 2, + ACTIONS(6004), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6228), 2, + ACTIONS(6012), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6236), 2, + ACTIONS(6020), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6246), 2, + ACTIONS(6030), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6248), 2, + ACTIONS(6032), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, + ACTIONS(6028), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104826] = 14, + [105767] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6492), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(3140), 1, + ACTIONS(6157), 1, + anon_sym_RBRACE, + STATE(3149), 1, sym_comment, - STATE(4841), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6494), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297267,35 +300177,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104899] = 14, + [105848] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6408), 1, + anon_sym_AMP, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6420), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3150), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6424), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 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, + [105945] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5930), 1, + anon_sym_of, + ACTIONS(6516), 1, + anon_sym_in, + STATE(3151), 1, + sym_comment, + ACTIONS(2092), 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(2098), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106006] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6496), 1, + ACTIONS(6519), 1, anon_sym_STAR, - STATE(3141), 1, + STATE(3152), 1, sym_comment, - STATE(4629), 1, + STATE(4832), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6498), 2, + ACTIONS(6521), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -297304,7 +300338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297326,37 +300360,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104972] = 5, + [106079] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3142), 1, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(5112), 1, + anon_sym_QMARK, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(3153), 1, sym_comment, - ACTIONS(5742), 13, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5114), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4140), 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(5744), 28, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -297376,22 +300415,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105027] = 7, + [106144] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6500), 1, - sym__automatic_semicolon, - STATE(3143), 1, + ACTIONS(5522), 1, + anon_sym_EQ, + ACTIONS(5871), 1, + anon_sym_of, + ACTIONS(6523), 1, + anon_sym_in, + STATE(3154), 1, sym_comment, - ACTIONS(2365), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2127), 13, + ACTIONS(5520), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -297402,7 +300441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2131), 25, + ACTIONS(5524), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -297428,22 +300468,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105086] = 8, + [106205] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - ACTIONS(5882), 1, - anon_sym_of, - ACTIONS(6502), 1, - anon_sym_in, - STATE(3144), 1, + ACTIONS(6526), 1, + sym__automatic_semicolon, + STATE(3155), 1, sym_comment, - ACTIONS(5224), 12, + ACTIONS(2348), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2214), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -297454,8 +300494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 26, - sym__automatic_semicolon, + ACTIONS(2218), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -297481,14 +300520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105147] = 5, + [106264] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3145), 1, + STATE(3156), 1, sym_comment, - ACTIONS(5627), 13, + ACTIONS(5544), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297502,7 +300541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5629), 28, + ACTIONS(5546), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297531,38 +300570,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105202] = 16, + [106319] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6379), 1, + ACTIONS(6404), 1, + anon_sym_GT_GT, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6505), 1, + ACTIONS(6420), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3146), 1, + STATE(3157), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2407), 2, + ACTIONS(6394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6406), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6424), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6426), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 12, + ACTIONS(4936), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6422), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 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, + [106414] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6528), 1, + anon_sym_LPAREN, + ACTIONS(6531), 1, + anon_sym_COLON, + ACTIONS(6533), 1, + anon_sym_LT, + ACTIONS(6536), 1, + anon_sym_QMARK, + STATE(3158), 1, + sym_comment, + ACTIONS(5508), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297575,163 +300668,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 16, + ACTIONS(5510), 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, - [105279] = 7, + [106477] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6508), 1, - sym__automatic_semicolon, - STATE(3147), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6416), 1, + anon_sym_PERCENT, + ACTIONS(6418), 1, + anon_sym_STAR_STAR, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3159), 1, sym_comment, - ACTIONS(2277), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2169), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6394), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6414), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(2173), 25, + ACTIONS(4934), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [105338] = 28, + [106560] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4936), 1, anon_sym_BANG, - ACTIONS(6365), 1, + ACTIONS(6400), 1, + anon_sym_AMP_AMP, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3148), 1, + STATE(3160), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 7, + ACTIONS(4934), 6, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [105439] = 6, + [106663] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6353), 1, - sym_regex_flags, - STATE(3149), 1, + ACTIONS(6538), 1, + sym__automatic_semicolon, + STATE(3161), 1, sym_comment, - ACTIONS(6206), 17, + ACTIONS(2412), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2278), 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, @@ -297742,11 +300858,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(6208), 23, - sym__automatic_semicolon, + ACTIONS(2282), 25, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -297765,160 +300879,103 @@ 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, - [105496] = 29, + anon_sym_satisfies, + [106722] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(6361), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6400), 1, anon_sym_AMP_AMP, - ACTIONS(6365), 1, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(6428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6430), 1, + sym__ternary_qmark, + ACTIONS(6540), 1, + anon_sym_RBRACK, + STATE(2226), 1, sym_type_arguments, - STATE(3150), 1, + STATE(3162), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [105599] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6505), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3151), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 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, + ACTIONS(6422), 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, - [105682] = 7, + [106835] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6510), 1, + ACTIONS(6542), 1, sym__automatic_semicolon, - STATE(3152), 1, + STATE(3163), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(2408), 2, anon_sym_else, anon_sym_while, - ACTIONS(2079), 13, + ACTIONS(2270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297932,7 +300989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2083), 25, + ACTIONS(2274), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -297958,95 +301015,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105741] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6112), 1, - anon_sym_STAR, - ACTIONS(6114), 1, - anon_sym_async, - STATE(3153), 1, - sym_comment, - STATE(3822), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6116), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105816] = 14, + [106894] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6112), 1, + ACTIONS(6498), 1, anon_sym_STAR, - STATE(3154), 1, + STATE(3164), 1, sym_comment, - STATE(4801), 1, + STATE(4788), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6512), 2, + ACTIONS(6544), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -298055,7 +301052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298077,20 +301074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105889] = 6, + [106967] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3155), 1, + STATE(3165), 1, sym_comment, - ACTIONS(2301), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2199), 13, + ACTIONS(5581), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298104,10 +301095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2203), 23, + ACTIONS(5583), 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, @@ -298128,433 +301124,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105946] = 19, + [107022] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6505), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3156), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 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, - [106029] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4936), 1, anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5142), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6404), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6408), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6410), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6412), 1, anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, - anon_sym_LT, - ACTIONS(6389), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3157), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106142] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6377), 1, + ACTIONS(6416), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6420), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3158), 1, + STATE(3166), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6424), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6383), 3, + ACTIONS(6422), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 8, + ACTIONS(4934), 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, - [106237] = 26, + [107123] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3159), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 8, - sym__ternary_qmark, + ACTIONS(4888), 1, anon_sym_as, - anon_sym_RBRACK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5320), 1, + anon_sym_of, + ACTIONS(6233), 1, anon_sym_AMP_AMP, + ACTIONS(6235), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [106334] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6365), 1, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6241), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6243), 1, anon_sym_CARET, - ACTIONS(6377), 1, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6253), 1, anon_sym_LT, - STATE(2222), 1, + ACTIONS(6261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6263), 1, + sym__ternary_qmark, + STATE(2226), 1, sym_type_arguments, - STATE(3160), 1, + STATE(3167), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6355), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6255), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [106433] = 18, + [107236] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5114), 1, + anon_sym_extends, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6505), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3161), 1, + STATE(3168), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6546), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4140), 11, anon_sym_STAR, - anon_sym_SLASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 15, + ACTIONS(4144), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [106514] = 5, + [107303] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3162), 1, + STATE(3169), 1, sym_comment, - ACTIONS(5757), 13, + ACTIONS(5719), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298568,7 +301353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5759), 28, + ACTIONS(5721), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -298597,24 +301382,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106569] = 7, + [107358] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3163), 1, - sym_comment, - ACTIONS(6514), 2, + ACTIONS(5035), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6516), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + ACTIONS(5936), 1, + anon_sym_of, + ACTIONS(6550), 1, + anon_sym_in, + STATE(3170), 1, + sym_comment, + ACTIONS(5033), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -298625,10 +301408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(5037), 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, @@ -298649,40 +301435,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106628] = 8, + [107419] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5363), 1, - anon_sym_extends, - STATE(3164), 1, + STATE(3171), 1, sym_comment, - ACTIONS(5556), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5553), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(5549), 11, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5551), 24, + ACTIONS(5717), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -298702,77 +301485,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106689] = 11, + [107474] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4155), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(5357), 1, + anon_sym_RBRACE, + STATE(3172), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5051), 1, - anon_sym_extends, - ACTIONS(5535), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2462), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_LBRACK, - STATE(3165), 1, - sym_comment, - ACTIONS(5538), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6518), 2, + 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, + [107541] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4135), 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(4139), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5357), 1, + anon_sym_RBRACE, + STATE(3173), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, 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, - [106756] = 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [107608] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3166), 1, + STATE(3174), 1, sym_comment, - ACTIONS(6514), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6516), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + ACTIONS(5727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298786,10 +301618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(5729), 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, @@ -298810,18 +301647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106815] = 6, + [107663] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3167), 1, + STATE(3175), 1, sym_comment, - ACTIONS(6271), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(5319), 13, + ACTIONS(5574), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298835,12 +301668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 25, + ACTIONS(5576), 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, @@ -298861,243 +301697,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106872] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3168), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [106963] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3169), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [107068] = 34, + [107718] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5140), 1, - anon_sym_of, - ACTIONS(6222), 1, - anon_sym_AMP_AMP, - ACTIONS(6224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6226), 1, - anon_sym_GT_GT, - ACTIONS(6230), 1, - anon_sym_AMP, - ACTIONS(6232), 1, - anon_sym_CARET, - ACTIONS(6234), 1, - anon_sym_PIPE, - ACTIONS(6238), 1, - anon_sym_PERCENT, - ACTIONS(6240), 1, + ACTIONS(6418), 1, anon_sym_STAR_STAR, - ACTIONS(6242), 1, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6252), 1, - sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3170), 1, + STATE(3176), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6218), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6220), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6228), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6236), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6246), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6248), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6244), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107181] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3171), 1, - sym_comment, - ACTIONS(6514), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6516), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4135), 13, + ACTIONS(4936), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299108,409 +301739,208 @@ 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(4139), 23, + ACTIONS(4934), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [107240] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [107795] = 11, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5084), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, - anon_sym_LT, - ACTIONS(6389), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3172), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107353] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4966), 1, + anon_sym_RBRACE, + STATE(3177), 1, + sym_comment, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(4929), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6389), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3173), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107466] = 34, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [107862] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5119), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, - anon_sym_LT, - ACTIONS(6389), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3174), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6094), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107579] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3175), 1, + ACTIONS(6166), 1, + anon_sym_RBRACE, + STATE(3178), 1, sym_comment, - ACTIONS(6522), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6524), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4623), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(4135), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 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, - [107638] = 34, + anon_sym_QMARK, + ACTIONS(2907), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107943] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(4963), 1, + anon_sym_COMMA, + ACTIONS(4966), 1, + anon_sym_RBRACE, + STATE(3179), 1, + sym_comment, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 6, anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_GT_GT, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_PERCENT, - ACTIONS(6379), 1, - anon_sym_STAR_STAR, - ACTIONS(6381), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6389), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3176), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6355), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2462), 29, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6357), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6383), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107751] = 5, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [108010] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3177), 1, + STATE(3180), 1, sym_comment, - ACTIONS(5644), 13, + ACTIONS(5778), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299524,7 +301954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5646), 28, + ACTIONS(5780), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299553,14 +301983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107806] = 5, + [108065] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3178), 1, + STATE(3181), 1, sym_comment, - ACTIONS(2215), 13, + ACTIONS(5731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299574,7 +302004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 28, + ACTIONS(5733), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299603,99 +302033,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107861] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6132), 1, - anon_sym_AMP_AMP, - ACTIONS(6134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6136), 1, - anon_sym_GT_GT, - ACTIONS(6140), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_CARET, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6148), 1, - anon_sym_PERCENT, - ACTIONS(6150), 1, - anon_sym_STAR_STAR, - ACTIONS(6152), 1, - anon_sym_LT, - ACTIONS(6160), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6162), 1, - sym__ternary_qmark, - ACTIONS(6526), 1, - anon_sym_COLON, - STATE(2222), 1, - sym_type_arguments, - STATE(3179), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6128), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6130), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6138), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6156), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6158), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6154), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107974] = 6, + [108120] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3180), 1, + STATE(3182), 1, sym_comment, - ACTIONS(2283), 5, - sym__automatic_semicolon, + ACTIONS(6553), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6555), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2161), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299709,7 +302061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 23, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -299733,98 +302085,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108031] = 34, + [108179] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(5130), 1, - anon_sym_RBRACK, - ACTIONS(6361), 1, + ACTIONS(5322), 1, + anon_sym_of, + ACTIONS(6233), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6235), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6237), 1, anon_sym_GT_GT, - ACTIONS(6369), 1, + ACTIONS(6241), 1, anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6243), 1, anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6245), 1, anon_sym_PIPE, - ACTIONS(6377), 1, + ACTIONS(6249), 1, anon_sym_PERCENT, - ACTIONS(6379), 1, + ACTIONS(6251), 1, anon_sym_STAR_STAR, - ACTIONS(6381), 1, + ACTIONS(6253), 1, anon_sym_LT, - ACTIONS(6389), 1, + ACTIONS(6261), 1, anon_sym_QMARK_QMARK, - ACTIONS(6391), 1, + ACTIONS(6263), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3181), 1, + STATE(3183), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6355), 2, + ACTIONS(6229), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6357), 2, + ACTIONS(6231), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6367), 2, + ACTIONS(6239), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6375), 2, + ACTIONS(6247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6385), 2, + ACTIONS(6257), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6259), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6383), 3, + ACTIONS(6255), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108144] = 7, + [108292] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6528), 1, - sym__automatic_semicolon, - STATE(3182), 1, + STATE(3184), 1, sym_comment, - ACTIONS(2375), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2099), 13, + ACTIONS(5555), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299838,11 +302185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 25, + ACTIONS(4987), 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, @@ -299864,19 +302214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108203] = 7, + [108347] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6530), 1, + ACTIONS(6557), 1, sym__automatic_semicolon, - STATE(3183), 1, + STATE(3185), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2340), 2, anon_sym_else, anon_sym_while, - ACTIONS(2091), 13, + ACTIONS(2112), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299890,7 +302240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 25, + ACTIONS(2116), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -299916,14 +302266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108262] = 5, + [108406] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3184), 1, + ACTIONS(6559), 1, + sym__automatic_semicolon, + STATE(3186), 1, sym_comment, - ACTIONS(5728), 13, + ACTIONS(2330), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299937,14 +302292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5730), 28, - sym__automatic_semicolon, + ACTIONS(2242), 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, @@ -299966,41 +302318,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108317] = 9, + [108465] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, - anon_sym_EQ, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(3185), 1, + STATE(3187), 1, sym_comment, - ACTIONS(5051), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(5548), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 24, + ACTIONS(5550), 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, @@ -300020,68 +302368,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108380] = 24, + [108520] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(1894), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2123), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(4961), 1, + anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_COMMA, - ACTIONS(6536), 1, + ACTIONS(6094), 1, + anon_sym_STAR, + ACTIONS(6166), 1, anon_sym_RBRACE, - ACTIONS(6538), 1, - anon_sym_async, - ACTIONS(6540), 1, - anon_sym_static, - ACTIONS(6542), 1, - anon_sym_readonly, - ACTIONS(6548), 1, - anon_sym_override, - STATE(3186), 1, + STATE(3188), 1, sym_comment, - STATE(3471), 1, - sym_accessibility_modifier, - STATE(3523), 1, - sym_override_modifier, - STATE(4569), 1, + STATE(4623), 1, sym__property_name, - STATE(5753), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6544), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(6546), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5755), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6532), 14, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -300089,106 +302432,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108473] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3187), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 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, - [108563] = 12, + [108603] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3188), 1, + STATE(3189), 1, sym_comment, - STATE(4841), 1, + STATE(4689), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(1042), 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(2900), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -300212,41 +302488,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108631] = 8, + [108671] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5535), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - STATE(3189), 1, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6561), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3190), 1, sym_comment, - ACTIONS(5051), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + STATE(5793), 1, + sym_optional_chain, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 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(4139), 24, - sym__automatic_semicolon, + ACTIONS(5067), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -300262,871 +302545,897 @@ 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, - [108691] = 7, + [108743] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - STATE(3190), 1, - sym_comment, - ACTIONS(4375), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4135), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6568), 1, anon_sym_AMP_AMP, + ACTIONS(6570), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, anon_sym_PERCENT, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108749] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(3568), 1, - anon_sym_extends, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, STATE(3191), 1, sym_comment, - ACTIONS(5203), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5206), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2059), 11, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6564), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6566), 2, 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(2065), 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, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108811] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - ACTIONS(5236), 1, - anon_sym_extends, - STATE(3192), 1, - sym_comment, - ACTIONS(5230), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5233), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5224), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 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, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 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, - [108873] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3193), 1, - sym_comment, - STATE(4725), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [108941] = 9, + [108853] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4155), 1, - anon_sym_EQ, - ACTIONS(5051), 1, - anon_sym_extends, - STATE(3194), 1, - sym_comment, - ACTIONS(5535), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5538), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 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(4139), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6568), 1, anon_sym_AMP_AMP, + ACTIONS(6570), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, anon_sym_PERCENT, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3192), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109003] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4298), 1, - anon_sym_EQ, - STATE(3195), 1, - sym_comment, - ACTIONS(4135), 13, + ACTIONS(6564), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 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, - [109059] = 33, + [108963] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3196), 1, + STATE(3193), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109169] = 33, + [109073] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3197), 1, + STATE(3194), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109279] = 33, + [109183] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3198), 1, + STATE(3195), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109389] = 33, + [109293] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3199), 1, + STATE(3196), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109499] = 33, + [109403] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6166), 1, + anon_sym_RBRACE, + STATE(3197), 1, + sym_comment, + STATE(4623), 1, + sym__property_name, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109479] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, + ACTIONS(4936), 1, + anon_sym_BANG, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(2222), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + STATE(2226), 1, sym_type_arguments, - STATE(3200), 1, + STATE(3198), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109609] = 21, + ACTIONS(4934), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [109583] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3199), 1, + sym_comment, + ACTIONS(5146), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(5144), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4140), 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(4144), 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, + [109641] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6554), 1, + ACTIONS(6572), 1, anon_sym_GT_GT, - ACTIONS(6560), 1, + ACTIONS(6584), 1, anon_sym_PERCENT, - ACTIONS(6562), 1, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - ACTIONS(6564), 1, + ACTIONS(6588), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3201), 1, + STATE(3200), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6556), 2, + ACTIONS(6566), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 7, + ACTIONS(6590), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4936), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 12, + ACTIONS(4934), 9, 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, - [109695] = 16, + [109731] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6586), 1, + STATE(3201), 1, + sym_comment, + STATE(4674), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109799] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5514), 1, + anon_sym_LBRACK, STATE(3202), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(5114), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(4953), 15, + ACTIONS(4144), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [109771] = 18, + [109859] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6586), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, STATE(3203), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, + STATE(4627), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(2907), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109927] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6223), 1, + sym_regex_flags, + STATE(3204), 1, + sym_comment, + ACTIONS(6219), 17, anon_sym_STAR, - anon_sym_SLASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -301135,112 +303444,73 @@ 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(4953), 14, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(6221), 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [109851] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [109983] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(5410), 1, - anon_sym_BANG, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6584), 1, anon_sym_PERCENT, - ACTIONS(6562), 1, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - ACTIONS(6564), 1, + ACTIONS(6600), 1, anon_sym_LT, - ACTIONS(6568), 1, - anon_sym_AMP_AMP, - ACTIONS(6570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(3204), 1, - sym_comment, - STATE(3326), 1, + STATE(2226), 1, sym_type_arguments, - STATE(5704), 1, + STATE(3205), 1, + sym_comment, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3098), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [109961] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6210), 1, - sym_regex_flags, - STATE(3205), 1, - sym_comment, - ACTIONS(6206), 17, - anon_sym_STAR, - anon_sym_as, + ACTIONS(4936), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -301249,137 +303519,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(6208), 22, + ACTIONS(4934), 14, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [110017] = 33, + anon_sym_instanceof, + anon_sym_satisfies, + [110063] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, STATE(3206), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110127] = 12, + [110173] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3207), 1, sym_comment, - STATE(4677), 1, + STATE(4621), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -301388,7 +303645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301412,153 +303669,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110195] = 28, + [110241] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5035), 1, + anon_sym_EQ, + ACTIONS(5045), 1, + anon_sym_extends, + STATE(3208), 1, + sym_comment, + ACTIONS(5039), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5042), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5033), 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(5037), 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, + [110303] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6554), 1, + ACTIONS(6572), 1, anon_sym_GT_GT, - ACTIONS(6560), 1, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_CARET, + ACTIONS(6584), 1, anon_sym_PERCENT, - ACTIONS(6562), 1, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - ACTIONS(6564), 1, + ACTIONS(6588), 1, anon_sym_LT, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3208), 1, + STATE(3209), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(4936), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 6, + ACTIONS(4934), 6, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [110295] = 7, + [110401] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3209), 1, - sym_comment, - ACTIONS(4965), 3, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, + ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3210), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4936), 2, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4967), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4135), 11, + ACTIONS(6564), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(6594), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [110353] = 12, + [110497] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3210), 1, + STATE(3211), 1, sym_comment, - STATE(4629), 1, + STATE(4680), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -301567,7 +303895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301591,435 +303919,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110421] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [110565] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3211), 1, - sym_comment, - STATE(4640), 1, - sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110497] = 12, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, + ACTIONS(4337), 1, + anon_sym_EQ, + ACTIONS(5514), 1, anon_sym_LBRACK, STATE(3212), 1, sym_comment, - STATE(4694), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(5114), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 10, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110565] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110627] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, STATE(3213), 1, sym_comment, - STATE(4833), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110633] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3214), 1, - sym_comment, - STATE(4801), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110701] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3215), 1, - sym_comment, - STATE(4708), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110769] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4302), 1, - anon_sym_EQ, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(3216), 1, - sym_comment, - ACTIONS(5051), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6564), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6566), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6594), 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, - [110831] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5553), 1, - anon_sym_LBRACK, - STATE(3217), 1, - sym_comment, - ACTIONS(5363), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5556), 3, - anon_sym_GT, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 3, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5549), 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(5551), 24, - sym__automatic_semicolon, + ACTIONS(6590), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [110891] = 19, + [110721] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6560), 1, + ACTIONS(6584), 1, anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6600), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3218), 1, + STATE(3214), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 8, + ACTIONS(4936), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -302028,7 +304089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 14, + ACTIONS(4934), 14, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -302043,268 +304104,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [110973] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(3219), 1, - sym_comment, - STATE(4209), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(4378), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111041] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3220), 1, - sym_comment, - STATE(4791), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111109] = 25, + [110803] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6554), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6572), 1, anon_sym_GT_GT, - ACTIONS(6560), 1, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, anon_sym_PERCENT, - ACTIONS(6562), 1, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - ACTIONS(6564), 1, + ACTIONS(6588), 1, anon_sym_LT, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3221), 1, + STATE(3215), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 7, + ACTIONS(4934), 5, sym__ternary_qmark, anon_sym_as, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [111203] = 26, + [110905] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(6554), 1, + ACTIONS(4936), 1, + anon_sym_BANG, + ACTIONS(6572), 1, anon_sym_GT_GT, - ACTIONS(6560), 1, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, anon_sym_PERCENT, - ACTIONS(6562), 1, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - ACTIONS(6564), 1, + ACTIONS(6588), 1, anon_sym_LT, - ACTIONS(6572), 1, - anon_sym_AMP, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3222), 1, + STATE(3216), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 7, + ACTIONS(4934), 6, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [111299] = 6, + [111005] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3223), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6600), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3217), 1, sym_comment, - ACTIONS(4983), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5319), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302315,225 +304291,60 @@ 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(5321), 25, - sym__automatic_semicolon, + ACTIONS(4934), 15, 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, - [111355] = 27, + [111081] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - STATE(2222), 1, - sym_type_arguments, - STATE(3224), 1, + ACTIONS(3459), 1, + anon_sym_extends, + STATE(3218), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6550), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [111453] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(5024), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - ACTIONS(6568), 1, - anon_sym_AMP_AMP, - ACTIONS(6570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6572), 1, + ACTIONS(5027), 2, anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3225), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [111563] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6589), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3226), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5155), 12, + ACTIONS(2092), 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(5157), 18, + ACTIONS(2098), 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, @@ -302549,545 +304360,363 @@ 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, - [111635] = 29, + [111143] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6554), 1, + ACTIONS(6572), 1, anon_sym_GT_GT, - ACTIONS(6560), 1, + ACTIONS(6584), 1, anon_sym_PERCENT, - ACTIONS(6562), 1, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - ACTIONS(6564), 1, + ACTIONS(6588), 1, anon_sym_LT, - ACTIONS(6568), 1, - anon_sym_AMP_AMP, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3227), 1, + STATE(3219), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [111737] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4936), 7, anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6586), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3228), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4953), 13, + ACTIONS(4934), 12, 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, - [111819] = 30, + anon_sym_satisfies, + [111229] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - STATE(2222), 1, + ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(2226), 1, sym_type_arguments, - STATE(3229), 1, + STATE(3220), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4953), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [111923] = 33, + [111339] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3230), 1, + STATE(3221), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112033] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6592), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3231), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(5090), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 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, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [112113] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6595), 1, - anon_sym_LT, - STATE(2222), 1, - sym_type_arguments, - STATE(3232), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(5065), 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(5067), 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, + ACTIONS(6590), 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, - [112187] = 33, + [111449] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4815), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4869), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(4881), 1, + ACTIONS(4888), 1, anon_sym_as, - ACTIONS(4885), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, ACTIONS(6568), 1, anon_sym_AMP_AMP, ACTIONS(6570), 1, anon_sym_PIPE_PIPE, ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6574), 1, + ACTIONS(6578), 1, anon_sym_CARET, - ACTIONS(6576), 1, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, sym__ternary_qmark, - STATE(2222), 1, + STATE(2226), 1, sym_type_arguments, - STATE(3233), 1, + STATE(3222), 1, sym_comment, - STATE(6286), 1, + STATE(5793), 1, sym_optional_chain, - ACTIONS(4921), 2, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(6564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6552), 2, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, + ACTIONS(6574), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, + ACTIONS(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2407), 2, + STATE(2468), 2, sym_template_string, sym_arguments, - ACTIONS(6566), 3, + ACTIONS(6590), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112297] = 16, + [111559] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(2066), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6040), 1, - anon_sym_RBRACE, - STATE(3234), 1, + ACTIONS(6607), 1, + anon_sym_async, + ACTIONS(6609), 1, + anon_sym_static, + ACTIONS(6611), 1, + anon_sym_readonly, + ACTIONS(6617), 1, + anon_sym_override, + STATE(3223), 1, sym_comment, - STATE(4640), 1, + STATE(3502), 1, + sym_accessibility_modifier, + STATE(3520), 1, + sym_override_modifier, + STATE(4471), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(6605), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6613), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(6615), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6476), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6603), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -303095,144 +304724,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112373] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5637), 1, - anon_sym_EQ, - ACTIONS(5862), 1, - anon_sym_COLON, - STATE(3235), 1, - sym_comment, - ACTIONS(5641), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5635), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5639), 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, - [112433] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4312), 1, - anon_sym_EQ, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(3236), 1, - sym_comment, - ACTIONS(5051), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 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(4139), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [112495] = 12, + [111647] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3237), 1, + STATE(3224), 1, sym_comment, - STATE(4843), 1, + STATE(4757), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(1042), 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(2900), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -303256,43 +304780,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112563] = 16, + [111715] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1894), 1, + ACTIONS(1046), 1, + anon_sym_RBRACE, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6084), 1, - anon_sym_RBRACE, - STATE(3238), 1, + STATE(3225), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(6195), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -303316,86 +304840,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112639] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [111791] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5740), 1, anon_sym_LBRACK, - STATE(3239), 1, + STATE(3226), 1, sym_comment, - STATE(4617), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(5208), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5743), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5653), 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(5655), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112707] = 12, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111851] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3240), 1, + STATE(3227), 1, sym_comment, - STATE(4672), 1, + STATE(4836), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -303404,7 +304924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -303428,39 +304948,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112775] = 12, + [111919] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3241), 1, + STATE(3228), 1, sym_comment, - STATE(4654), 1, + STATE(4670), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, + ACTIONS(1042), 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(2900), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -303484,118 +305004,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112843] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [111987] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3242), 1, - sym_comment, - STATE(4824), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(5378), 1, anon_sym_BANG, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112911] = 19, + ACTIONS(5384), 1, + anon_sym_LBRACK, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(3229), 1, + sym_comment, + STATE(3342), 1, + sym_type_arguments, + STATE(6101), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6564), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6566), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6592), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6594), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3067), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112097] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3230), 1, + sym_comment, + ACTIONS(5094), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5088), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5090), 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, + [112153] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(4527), 1, + sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - STATE(3243), 1, + STATE(3231), 1, sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, + STATE(4832), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6598), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 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(2900), 18, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -303603,43 +305187,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112993] = 16, + [112221] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(4527), 1, + sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3244), 1, + STATE(3232), 1, sym_comment, - STATE(4640), 1, + STATE(4778), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 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(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -303663,142 +305243,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113069] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - ACTIONS(6568), 1, - anon_sym_AMP_AMP, - ACTIONS(6570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3245), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113179] = 22, + [112289] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(1894), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1021), 1, + anon_sym_RBRACE, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2123), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(4961), 1, + anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_async, - ACTIONS(6607), 1, - anon_sym_static, - ACTIONS(6609), 1, - anon_sym_readonly, - ACTIONS(6615), 1, - anon_sym_override, - STATE(3246), 1, + STATE(3233), 1, sym_comment, - STATE(3471), 1, - sym_accessibility_modifier, - STATE(3523), 1, - sym_override_modifier, - STATE(4569), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6603), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6611), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(6613), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6729), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6601), 14, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -303806,39 +305303,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113267] = 12, + [112365] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3247), 1, + STATE(3234), 1, sym_comment, - STATE(4618), 1, + STATE(4788), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 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(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -303862,39 +305359,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113335] = 12, + [112433] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1064), 1, + anon_sym_RBRACE, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3248), 1, + STATE(3235), 1, sym_comment, - STATE(4838), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -303918,338 +305419,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113403] = 33, + [112509] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - ACTIONS(6568), 1, - anon_sym_AMP_AMP, - ACTIONS(6570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3249), 1, + ACTIONS(5522), 1, + anon_sym_EQ, + ACTIONS(5871), 1, + anon_sym_COLON, + STATE(3236), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(5578), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5520), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6558), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113513] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(5524), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - ACTIONS(6568), 1, anon_sym_AMP_AMP, - ACTIONS(6570), 1, anon_sym_PIPE_PIPE, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3250), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [113623] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [112569] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - ACTIONS(6568), 1, - anon_sym_AMP_AMP, - ACTIONS(6570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3251), 1, + ACTIONS(4174), 1, + anon_sym_EQ, + STATE(3237), 1, sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, + ACTIONS(4378), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4140), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6556), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6558), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6578), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113733] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(4144), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - ACTIONS(6568), 1, anon_sym_AMP_AMP, - ACTIONS(6570), 1, anon_sym_PIPE_PIPE, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3252), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 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(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [113843] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [112627] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3253), 1, + STATE(3238), 1, sym_comment, - STATE(4172), 1, + STATE(4225), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -304258,63 +305554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4378), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113911] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3254), 1, - sym_comment, - STATE(4660), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 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(2900), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -304338,120 +305578,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113979] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4815), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4881), 1, - anon_sym_as, - ACTIONS(4885), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(4923), 1, - anon_sym_satisfies, - ACTIONS(6554), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_PERCENT, - ACTIONS(6562), 1, - anon_sym_STAR_STAR, - ACTIONS(6564), 1, - anon_sym_LT, - ACTIONS(6568), 1, - anon_sym_AMP_AMP, - ACTIONS(6570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6572), 1, - anon_sym_AMP, - ACTIONS(6574), 1, - anon_sym_CARET, - ACTIONS(6576), 1, - anon_sym_PIPE, - ACTIONS(6582), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6584), 1, - sym__ternary_qmark, - STATE(2222), 1, - sym_type_arguments, - STATE(3255), 1, - sym_comment, - STATE(6286), 1, - sym_optional_chain, - ACTIONS(4921), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6550), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6552), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6556), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6578), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6580), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2407), 2, - sym_template_string, - sym_arguments, - ACTIONS(6566), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [114089] = 16, + [112695] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6094), 1, + ACTIONS(6157), 1, anon_sym_RBRACE, - STATE(3256), 1, + STATE(3239), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5720), 1, + STATE(6195), 1, aux_sym_object_repeat1, - STATE(5721), 1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -304475,43 +305638,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114165] = 16, + [112771] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1059), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(4527), 1, + sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3257), 1, + STATE(3240), 1, sym_comment, - STATE(4640), 1, + STATE(4741), 1, sym__property_name, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 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(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -304535,46 +305694,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114241] = 12, + [112839] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3258), 1, + STATE(3241), 1, sym_comment, - STATE(4649), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 10, + 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(2900), 23, + ACTIONS(2454), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -304591,41 +305744,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114309] = 8, + [112895] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5480), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - STATE(3259), 1, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6619), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3242), 1, sym_comment, - ACTIONS(4853), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5483), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5273), 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(4139), 24, - sym__automatic_semicolon, + ACTIONS(5275), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -304639,43 +305802,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [114369] = 12, + [112969] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3260), 1, + STATE(3243), 1, sym_comment, - STATE(4646), 1, + STATE(4823), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 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(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -304699,30 +305859,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114437] = 12, + [113037] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3244), 1, sym_comment, - STATE(4842), 1, + STATE(4738), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -304731,7 +305891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -304755,40 +305915,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114505] = 6, + [113105] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - STATE(3262), 1, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3245), 1, sym_comment, - ACTIONS(1041), 10, - anon_sym_EQ, + STATE(4624), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(2409), 29, + ACTIONS(2907), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -304805,63 +305971,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114561] = 20, + [113173] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, + ACTIONS(4961), 1, + anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_COMMA, - ACTIONS(6617), 1, + ACTIONS(6161), 1, anon_sym_RBRACE, - STATE(3263), 1, + STATE(3246), 1, sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5660), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 18, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -304869,92 +306031,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114645] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4851), 1, - anon_sym_QMARK, - ACTIONS(4853), 1, - anon_sym_extends, - STATE(3264), 1, - sym_comment, - ACTIONS(5483), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5480), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4135), 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(4139), 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, - [114707] = 12, + [113249] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3265), 1, + STATE(3247), 1, sym_comment, - STATE(4774), 1, + STATE(4796), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 8, + ACTIONS(1042), 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(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -304978,43 +306087,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114775] = 16, + [113317] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6600), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3248), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(4936), 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(4934), 13, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [113399] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3249), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6564), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6566), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6592), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6594), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113509] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6212), 1, + ACTIONS(6096), 1, anon_sym_RBRACE, - STATE(3266), 1, + STATE(3250), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -305038,87 +306287,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114851] = 8, + [113585] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5553), 1, - anon_sym_LBRACK, - STATE(3267), 1, + ACTIONS(4872), 1, + anon_sym_QMARK, + ACTIONS(4874), 1, + anon_sym_extends, + STATE(3251), 1, sym_comment, - ACTIONS(5556), 2, + ACTIONS(5533), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5363), 3, + ACTIONS(5530), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5549), 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(5551), 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, - [114910] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3268), 1, - sym_comment, - ACTIONS(2203), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6619), 13, + ACTIONS(4140), 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(6622), 23, + ACTIONS(4144), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -305138,43 +306340,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114965] = 15, + [113647] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_readonly, - STATE(3269), 1, + STATE(3252), 1, sym_comment, - STATE(3590), 1, - sym_override_modifier, - STATE(4126), 1, + STATE(4082), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 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(4378), 21, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -305183,12 +306381,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, @@ -305196,54 +306396,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115038] = 17, + [113715] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, + ACTIONS(4527), 1, + sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_COMMA, - ACTIONS(6617), 1, - anon_sym_RBRACE, - STATE(3270), 1, + STATE(3253), 1, sym_comment, - STATE(4640), 1, + STATE(4828), 1, sym__property_name, - STATE(5660), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 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(2900), 20, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -305256,114 +306452,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115115] = 13, + [113783] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6627), 1, - anon_sym_abstract, - STATE(3271), 1, - sym_comment, - STATE(4124), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4378), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [115184] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - ACTIONS(6534), 1, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(6617), 1, + ACTIONS(6622), 1, anon_sym_RBRACE, - STATE(3272), 1, + STATE(3254), 1, sym_comment, - STATE(4640), 1, + STATE(3519), 1, + sym_override_modifier, + STATE(4623), 1, sym__property_name, - STATE(5660), 1, + STATE(5648), 1, aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -305371,36 +306516,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115259] = 6, + [113867] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3273), 1, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(5114), 1, + anon_sym_extends, + STATE(3255), 1, sym_comment, - ACTIONS(5444), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6629), 13, + ACTIONS(5514), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(6632), 23, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -305420,20 +306569,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115314] = 6, + [113929] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3274), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3256), 1, sym_comment, - ACTIONS(5440), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6635), 13, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6564), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6566), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6592), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6594), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114039] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6624), 1, + anon_sym_LT, + STATE(2226), 1, + sym_type_arguments, + STATE(3257), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(5326), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -305442,16 +306691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6638), 23, + ACTIONS(5328), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -305465,43 +306708,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [115369] = 13, + [114119] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6641), 1, - anon_sym_abstract, - STATE(3275), 1, + STATE(3258), 1, sym_comment, - STATE(4172), 1, + STATE(4620), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, + ACTIONS(1042), 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(4378), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -305525,147 +306764,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115438] = 8, + [114187] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4853), 1, - anon_sym_extends, - STATE(3276), 1, - sym_comment, - ACTIONS(5480), 2, - anon_sym_RBRACE, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(5483), 2, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_CARET, + ACTIONS(6580), 1, anon_sym_PIPE, - ACTIONS(4135), 11, + ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3259), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6564), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6594), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114297] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6568), 1, anon_sym_AMP_AMP, + ACTIONS(6570), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, anon_sym_PERCENT, + ACTIONS(6586), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3260), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [115497] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4241), 1, - anon_sym_RBRACK, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4368), 1, - anon_sym_EQ, - STATE(3277), 1, - sym_comment, - ACTIONS(4135), 13, + ACTIONS(6564), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6566), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6592), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 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(6594), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 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, - [115556] = 16, + [114407] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, + ACTIONS(2909), 1, anon_sym_async, - ACTIONS(5009), 1, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(4961), 1, anon_sym_EQ, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(3278), 1, + STATE(3261), 1, sym_comment, - STATE(4640), 1, + STATE(3519), 1, + sym_override_modifier, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - ACTIONS(6598), 2, + ACTIONS(6627), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2907), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -305673,12 +306970,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, @@ -305686,136 +306981,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115631] = 6, + [114489] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3279), 1, + ACTIONS(5530), 1, + anon_sym_LBRACK, + STATE(3262), 1, sym_comment, - ACTIONS(4983), 2, + ACTIONS(4874), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5319), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5321), 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, - [115686] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5365), 1, - anon_sym_RBRACK, - ACTIONS(5880), 1, - anon_sym_COMMA, - STATE(3280), 1, - sym_comment, - ACTIONS(2059), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5533), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2065), 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, - [115745] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3281), 1, - sym_comment, - ACTIONS(2173), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6643), 13, + ACTIONS(4140), 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(6646), 23, + ACTIONS(4144), 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, @@ -305835,20 +307033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115800] = 8, + [114549] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5637), 1, + ACTIONS(4293), 1, anon_sym_EQ, - ACTIONS(5641), 1, - anon_sym_RBRACK, - ACTIONS(5862), 1, - anon_sym_COMMA, - STATE(3282), 1, + STATE(3263), 1, sym_comment, - ACTIONS(5635), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305862,9 +307056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5639), 23, + ACTIONS(4144), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -305886,43 +307082,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115859] = 15, + anon_sym_implements, + [114605] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(4527), 1, + sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - STATE(3283), 1, + STATE(3264), 1, sym_comment, - STATE(4640), 1, + STATE(4815), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6598), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 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(2900), 21, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -305932,6 +307125,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, @@ -305944,43 +307139,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115932] = 15, + [114673] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4888), 1, + anon_sym_as, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(4930), 1, + anon_sym_satisfies, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_GT_GT, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_CARET, + ACTIONS(6580), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_PERCENT, + ACTIONS(6586), 1, + anon_sym_STAR_STAR, + ACTIONS(6588), 1, + anon_sym_LT, + ACTIONS(6596), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6598), 1, + sym__ternary_qmark, + STATE(2226), 1, + sym_type_arguments, + STATE(3265), 1, + sym_comment, + STATE(5793), 1, + sym_optional_chain, + ACTIONS(4928), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6564), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6566), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6574), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6582), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6592), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6594), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2468), 2, + sym_template_string, + sym_arguments, + ACTIONS(6590), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114783] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6649), 1, - anon_sym_readonly, - STATE(3284), 1, + STATE(3266), 1, sym_comment, - STATE(3593), 1, - sym_override_modifier, - STATE(4303), 1, + STATE(4831), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 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(4378), 21, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -305989,12 +307257,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, @@ -306002,77 +307272,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116005] = 18, + [114851] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - STATE(3285), 1, + STATE(3267), 1, sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, + STATE(4841), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6651), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116084] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - STATE(3286), 1, - sym_comment, - ACTIONS(1041), 8, + ACTIONS(1042), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -306081,20 +307304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2397), 30, + ACTIONS(2907), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -306111,39 +307328,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [116139] = 8, + [114919] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, + ACTIONS(4319), 1, anon_sym_EQ, - ACTIONS(5684), 1, - anon_sym_RBRACK, - ACTIONS(5882), 1, - anon_sym_COMMA, - STATE(3287), 1, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(3268), 1, sym_comment, - ACTIONS(5224), 13, + ACTIONS(5114), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(5228), 23, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -306163,39 +307381,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116198] = 13, + [114981] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6653), 1, + ACTIONS(6630), 1, anon_sym_abstract, - STATE(3288), 1, + STATE(3269), 1, sym_comment, - STATE(4147), 1, + STATE(4202), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306219,16 +307437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116267] = 6, + [115050] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4289), 1, - anon_sym_EQ, - STATE(3289), 1, + STATE(3270), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(5094), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306242,13 +307461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 25, + ACTIONS(5090), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -306268,220 +307486,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116322] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [115105] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_readonly, - STATE(3290), 1, - sym_comment, - STATE(3587), 1, - sym_override_modifier, - STATE(4149), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4378), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116395] = 13, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6657), 1, - anon_sym_abstract, - STATE(3291), 1, + STATE(3271), 1, sym_comment, - STATE(4174), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, + ACTIONS(2274), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4378), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116464] = 25, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4544), 1, - anon_sym_AT, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6659), 1, - anon_sym_STAR, - ACTIONS(6661), 1, - anon_sym_async, - ACTIONS(6663), 1, - anon_sym_static, - ACTIONS(6665), 1, - anon_sym_readonly, - ACTIONS(6669), 1, - anon_sym_declare, - ACTIONS(6671), 1, - anon_sym_abstract, - STATE(3292), 1, - sym_comment, - STATE(3381), 1, - sym_method_definition, - STATE(3451), 1, - sym_accessibility_modifier, - STATE(3489), 1, - aux_sym_export_statement_repeat1, - STATE(3520), 1, - sym_override_modifier, - STATE(3548), 1, - sym_decorator, - STATE(3800), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6667), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4554), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(4378), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116557] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(3293), 1, - sym_comment, - ACTIONS(5538), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5051), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4135), 11, + ACTIONS(6632), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(6635), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -306501,96 +307535,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116616] = 8, + [115160] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - STATE(3294), 1, - sym_comment, - ACTIONS(5874), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1041), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2409), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1901), 1, anon_sym_DQUOTE, + ACTIONS(1903), 1, anon_sym_SQUOTE, + ACTIONS(2909), 1, anon_sym_async, - anon_sym_new, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_STAR, + STATE(3272), 1, + sym_comment, + STATE(4623), 1, + sym__property_name, + ACTIONS(2741), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(2913), 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, - [116675] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5009), 1, - anon_sym_EQ, - STATE(3295), 1, - sym_comment, - ACTIONS(5874), 2, + ACTIONS(6627), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1041), 6, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2397), 29, + ACTIONS(2907), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -306603,16 +307594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116734] = 6, + [115235] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6271), 1, + ACTIONS(4269), 1, anon_sym_COMMA, - STATE(3296), 1, + ACTIONS(4278), 1, + anon_sym_RBRACK, + ACTIONS(4371), 1, + anon_sym_EQ, + STATE(3273), 1, sym_comment, - ACTIONS(5319), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306626,12 +307621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 25, - sym__automatic_semicolon, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -306652,72 +307645,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116789] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6118), 1, - anon_sym_abstract, - STATE(3297), 1, - sym_comment, - STATE(4209), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4378), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116858] = 6, + [115294] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(5035), 1, anon_sym_EQ, - STATE(3298), 1, + ACTIONS(5667), 1, + anon_sym_RBRACK, + ACTIONS(5936), 1, + anon_sym_COMMA, + STATE(3274), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306731,12 +307672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 25, - sym__automatic_semicolon, + ACTIONS(5037), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -306757,96 +307696,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116913] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6673), 1, - anon_sym_readonly, - STATE(3299), 1, - sym_comment, - STATE(3567), 1, - sym_override_modifier, - STATE(4209), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4378), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116986] = 8, + [115353] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5480), 1, - anon_sym_LBRACK, - STATE(3300), 1, + STATE(3275), 1, sym_comment, - ACTIONS(5483), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4853), 3, + ACTIONS(2282), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4135), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(6641), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -306866,94 +307745,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117045] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6675), 1, - anon_sym_readonly, - STATE(3301), 1, - sym_comment, - STATE(3582), 1, - sym_override_modifier, - STATE(4172), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4378), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [117118] = 6, + [115408] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3302), 1, + ACTIONS(5530), 1, + anon_sym_LBRACK, + STATE(3276), 1, sym_comment, - ACTIONS(5662), 3, + ACTIONS(5533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4874), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6677), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4140), 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(6680), 23, + ACTIONS(4144), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -306973,39 +307796,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117173] = 9, + [115467] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4228), 1, + ACTIONS(4281), 1, anon_sym_EQ, - ACTIONS(5535), 1, - anon_sym_LBRACK, - STATE(3303), 1, + STATE(3277), 1, sym_comment, - ACTIONS(5051), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5538), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4135), 10, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 22, + ACTIONS(4144), 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, @@ -307025,36 +307845,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117234] = 6, + [115522] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3304), 1, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(3278), 1, sym_comment, - ACTIONS(2165), 3, + ACTIONS(5114), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6683), 13, + anon_sym_extends, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(6686), 23, + ACTIONS(4144), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -307074,36 +307897,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117289] = 6, + [115583] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3305), 1, + ACTIONS(4874), 1, + anon_sym_extends, + STATE(3279), 1, sym_comment, - ACTIONS(5478), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6689), 13, + ACTIONS(5530), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4140), 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(6692), 23, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -307123,102 +307948,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117344] = 6, + [115642] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3306), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, + STATE(3280), 1, sym_comment, - ACTIONS(2131), 3, + ACTIONS(5918), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1042), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6695), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6698), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [117399] = 12, + 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, + [115701] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3307), 1, + ACTIONS(6094), 1, + anon_sym_STAR, + STATE(3281), 1, sym_comment, - STATE(4214), 1, + STATE(3519), 1, + sym_override_modifier, + STATE(4623), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6644), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1042), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(2907), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -307226,29 +308060,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117465] = 10, + [115780] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(5009), 1, - anon_sym_EQ, - STATE(3308), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + STATE(3282), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 4, + ACTIONS(1042), 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(2409), 29, + ACTIONS(2462), 30, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -307278,46 +308108,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117527] = 10, + anon_sym_abstract, + [115835] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, ACTIONS(6094), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6622), 1, anon_sym_RBRACE, - STATE(3309), 1, + STATE(3283), 1, sym_comment, - STATE(5720), 1, + STATE(4623), 1, + sym__property_name, + STATE(5648), 1, aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1041), 4, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(2907), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -307330,37 +308168,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117589] = 12, + [115910] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3310), 1, + ACTIONS(6646), 1, + anon_sym_readonly, + STATE(3284), 1, sym_comment, - STATE(4199), 1, + STATE(3562), 1, + sym_override_modifier, + STATE(4082), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307369,14 +308213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -307384,37 +308226,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117655] = 12, + [115983] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3311), 1, + ACTIONS(6648), 1, + anon_sym_abstract, + STATE(3285), 1, sym_comment, - STATE(4120), 1, + STATE(4082), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307438,96 +308282,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117721] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4228), 1, - anon_sym_EQ, - ACTIONS(4341), 1, - anon_sym_in, - ACTIONS(4344), 1, - anon_sym_of, - STATE(3312), 1, - sym_comment, - ACTIONS(4135), 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(4139), 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, - [117779] = 10, + [116052] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(5446), 1, + anon_sym_LBRACK, ACTIONS(6094), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6622), 1, anon_sym_RBRACE, - STATE(3313), 1, + STATE(3286), 1, sym_comment, - STATE(5720), 1, + STATE(4623), 1, + sym__property_name, + STATE(5648), 1, aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1041), 4, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2409), 29, + ACTIONS(2907), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -307540,16 +308342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117841] = 6, + [116129] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4312), 1, + ACTIONS(4262), 1, anon_sym_EQ, - STATE(3314), 1, + STATE(3287), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307563,12 +308365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 24, + ACTIONS(4144), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -307588,37 +308391,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117895] = 12, + [116184] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3315), 1, + ACTIONS(6094), 1, + anon_sym_STAR, + STATE(3288), 1, sym_comment, - STATE(4170), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + ACTIONS(2913), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6627), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1042), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307628,8 +308437,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, @@ -307642,51 +308449,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117961] = 10, + [116257] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(6212), 1, - anon_sym_RBRACE, - STATE(3316), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2409), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1969), 1, anon_sym_DQUOTE, + ACTIONS(1971), 1, anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4551), 1, + anon_sym_AT, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6650), 1, + anon_sym_STAR, + ACTIONS(6652), 1, anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, + ACTIONS(6654), 1, anon_sym_static, + ACTIONS(6656), 1, anon_sym_readonly, + ACTIONS(6660), 1, + anon_sym_declare, + ACTIONS(6662), 1, + anon_sym_abstract, + STATE(3289), 1, + sym_comment, + STATE(3415), 1, + sym_method_definition, + STATE(3460), 1, + sym_accessibility_modifier, + STATE(3496), 1, + aux_sym_export_statement_repeat1, + STATE(3518), 1, + sym_override_modifier, + STATE(3568), 1, + sym_decorator, + STATE(3835), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6658), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4561), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, + ACTIONS(4385), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, anon_sym_module, anon_sym_any, anon_sym_number, @@ -307694,37 +308517,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118023] = 12, + [116350] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3290), 1, + sym_comment, + ACTIONS(5576), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6664), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6667), 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, + [116405] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3317), 1, + ACTIONS(6670), 1, + anon_sym_readonly, + STATE(3291), 1, sym_comment, - STATE(4136), 1, + STATE(3596), 1, + sym_override_modifier, + STATE(4206), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307733,14 +308611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -307748,37 +308624,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118089] = 12, + [116478] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3292), 1, + sym_comment, + ACTIONS(2228), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6672), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6675), 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, + [116533] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5522), 1, + anon_sym_EQ, + ACTIONS(5578), 1, + anon_sym_RBRACK, + ACTIONS(5871), 1, + anon_sym_COMMA, + STATE(3293), 1, + sym_comment, + ACTIONS(5520), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5524), 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, + [116592] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5740), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_comment, + ACTIONS(5743), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5208), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5653), 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(5655), 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, + [116651] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3318), 1, + ACTIONS(6147), 1, + anon_sym_abstract, + STATE(3295), 1, sym_comment, - STATE(4275), 1, + STATE(4225), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307802,37 +308831,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118155] = 12, + [116720] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3319), 1, + ACTIONS(6678), 1, + anon_sym_readonly, + STATE(3296), 1, sym_comment, - STATE(4071), 1, + STATE(3567), 1, + sym_override_modifier, + STATE(4225), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307841,14 +308876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -307856,37 +308889,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118221] = 12, + [116793] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6287), 1, + anon_sym_COMMA, + STATE(3297), 1, + sym_comment, + ACTIONS(5088), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5090), 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, + [116848] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5514), 1, + anon_sym_LBRACK, + STATE(3298), 1, + sym_comment, + ACTIONS(5517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5114), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4140), 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(4144), 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, + [116907] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3299), 1, + sym_comment, + ACTIONS(5784), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6680), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6683), 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, + [116962] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3320), 1, + ACTIONS(6686), 1, + anon_sym_abstract, + STATE(3300), 1, sym_comment, - STATE(4183), 1, + STATE(4073), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307910,29 +309094,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118287] = 10, + [117031] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1059), 1, - anon_sym_RBRACE, - ACTIONS(5009), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4961), 1, anon_sym_EQ, - STATE(3321), 1, + STATE(3301), 1, sym_comment, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1041), 4, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1042), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2397), 29, + anon_sym_PIPE_RBRACE, + ACTIONS(2462), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -307962,51 +309145,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118349] = 10, + [117090] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1059), 1, - anon_sym_RBRACE, - ACTIONS(5009), 1, - anon_sym_EQ, - STATE(3322), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6688), 1, + anon_sym_readonly, + STATE(3302), 1, sym_comment, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1041), 4, - anon_sym_LPAREN, + STATE(3560), 1, + sym_override_modifier, + STATE(4271), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2409), 29, + ACTIONS(4385), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -308014,39 +309203,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118411] = 14, + [117163] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3303), 1, + sym_comment, + ACTIONS(5768), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6690), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6693), 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, + [117218] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3304), 1, + sym_comment, + ACTIONS(5780), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6696), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6699), 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, + [117273] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5552), 1, + anon_sym_RBRACK, + ACTIONS(5930), 1, + anon_sym_COMMA, + STATE(3305), 1, + sym_comment, + ACTIONS(2092), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2098), 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, + [117332] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_COMMA, - ACTIONS(6617), 1, - anon_sym_RBRACE, - STATE(3323), 1, + ACTIONS(6702), 1, + anon_sym_readonly, + STATE(3306), 1, sym_comment, - STATE(4640), 1, + STATE(3585), 1, + sym_override_modifier, + STATE(4100), 1, sym__property_name, - STATE(5660), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(4385), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308055,14 +309397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -308070,16 +309410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118481] = 6, + [117405] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4302), 1, - anon_sym_EQ, - STATE(3324), 1, + STATE(3307), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(2140), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308093,11 +309435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 24, + ACTIONS(6707), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -308118,42 +309459,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118535] = 10, + [117460] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(5009), 1, - anon_sym_EQ, - STATE(3325), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6710), 1, + anon_sym_abstract, + STATE(3308), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 4, - anon_sym_LPAREN, + STATE(4102), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(4385), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -308170,21 +309515,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118597] = 8, + [117529] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - STATE(3326), 1, + ACTIONS(4319), 1, + anon_sym_EQ, + STATE(3309), 1, sym_comment, - STATE(3058), 2, - sym_template_string, - sym_arguments, - ACTIONS(4865), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308198,10 +309538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 21, + ACTIONS(4144), 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, @@ -308219,39 +309561,46 @@ 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, - [118655] = 6, + [117583] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4520), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, sym__automatic_semicolon, - STATE(3327), 1, + ACTIONS(4969), 1, + anon_sym_LBRACK, + STATE(3310), 1, sym_comment, - ACTIONS(1041), 8, + STATE(4158), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2397), 29, + ACTIONS(4385), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -308268,42 +309617,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118709] = 10, + [117649] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(5009), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(6084), 1, - anon_sym_RBRACE, - STATE(3328), 1, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3311), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 4, + STATE(4623), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6627), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2409), 29, + ACTIONS(2907), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -308320,44 +309672,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118771] = 12, + [117717] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(3329), 1, + STATE(3312), 1, sym_comment, - STATE(4186), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 6, - anon_sym_EQ, + ACTIONS(1042), 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(4378), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2462), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -308374,37 +309720,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118837] = 12, + [117771] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4362), 1, + anon_sym_in, + ACTIONS(4365), 1, + anon_sym_of, + STATE(3313), 1, + sym_comment, + ACTIONS(4140), 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(4144), 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, + [117829] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3330), 1, + STATE(3314), 1, sym_comment, - STATE(4248), 1, + STATE(4092), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308428,79 +309824,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118903] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5880), 1, - anon_sym_of, - ACTIONS(6465), 1, - anon_sym_in, - STATE(3331), 1, - sym_comment, - ACTIONS(2059), 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(2065), 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, - [118961] = 10, + [117895] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - STATE(3332), 1, + ACTIONS(6096), 1, + anon_sym_RBRACE, + STATE(3315), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(1041), 4, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(2462), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308530,29 +309876,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119023] = 10, + [117957] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - ACTIONS(6084), 1, + ACTIONS(6096), 1, anon_sym_RBRACE, - STATE(3333), 1, + STATE(3316), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(1041), 4, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308582,37 +309928,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119085] = 12, + [118019] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3334), 1, + STATE(3317), 1, sym_comment, - STATE(4134), 1, + STATE(4119), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308636,37 +309982,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119151] = 12, + [118085] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3335), 1, + STATE(3318), 1, sym_comment, - STATE(4278), 1, + STATE(4166), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308690,37 +310036,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119217] = 12, + [118151] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3336), 1, + STATE(3319), 1, sym_comment, - STATE(4150), 1, + STATE(4072), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308744,38 +310090,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119283] = 13, + [118217] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(5446), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3337), 1, + STATE(3320), 1, sym_comment, - STATE(4640), 1, + STATE(4149), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6598), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308799,37 +310144,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119351] = 12, + [118283] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3338), 1, + STATE(3321), 1, sym_comment, - STATE(4182), 1, + STATE(4075), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308853,44 +310198,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119417] = 12, + [118349] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4337), 1, + anon_sym_EQ, + STATE(3322), 1, + sym_comment, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 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, + [118403] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6223), 1, + sym_regex_flags, + STATE(3323), 1, + sym_comment, + ACTIONS(6219), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6221), 20, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [118457] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3339), 1, + STATE(3324), 1, sym_comment, - STATE(4139), 1, + STATE(4286), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118523] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(6161), 1, + anon_sym_RBRACE, + STATE(3325), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [118585] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(6161), 1, + anon_sym_RBRACE, + STATE(3326), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2462), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -308907,37 +310452,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119483] = 12, + [118647] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4527), 1, sym__automatic_semicolon, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3340), 1, + STATE(3327), 1, sym_comment, - STATE(4087), 1, + STATE(4280), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 6, + ACTIONS(1042), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308961,29 +310506,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119549] = 10, + [118713] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(6040), 1, + ACTIONS(1021), 1, anon_sym_RBRACE, - STATE(3341), 1, + ACTIONS(4961), 1, + anon_sym_EQ, + STATE(3328), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(1041), 4, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -309013,79 +310558,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119611] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - ACTIONS(5882), 1, - anon_sym_of, - ACTIONS(6502), 1, - anon_sym_in, - STATE(3342), 1, - sym_comment, - ACTIONS(5224), 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(5228), 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, - [119669] = 10, + [118775] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(6040), 1, + ACTIONS(1021), 1, anon_sym_RBRACE, - STATE(3343), 1, + ACTIONS(4961), 1, + anon_sym_EQ, + STATE(3329), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(1041), 4, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2409), 29, + ACTIONS(2462), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -309115,29 +310610,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119731] = 10, + [118837] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(1020), 1, + ACTIONS(1064), 1, anon_sym_RBRACE, - ACTIONS(5009), 1, + ACTIONS(4961), 1, anon_sym_EQ, - STATE(3344), 1, + STATE(3330), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(1041), 4, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2409), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -309167,127 +310662,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119793] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5637), 1, - anon_sym_EQ, - ACTIONS(5862), 1, - anon_sym_of, - ACTIONS(6473), 1, - anon_sym_in, - STATE(3345), 1, - sym_comment, - ACTIONS(5635), 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(5639), 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, - [119851] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6210), 1, - sym_regex_flags, - STATE(3346), 1, - sym_comment, - ACTIONS(6206), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6208), 20, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [119905] = 10, + [118899] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(235), 1, anon_sym_COMMA, - ACTIONS(5009), 1, - anon_sym_EQ, - ACTIONS(6212), 1, + ACTIONS(1064), 1, anon_sym_RBRACE, - STATE(3347), 1, + ACTIONS(4961), 1, + anon_sym_EQ, + STATE(3331), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(1041), 4, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(2462), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -309317,41 +310714,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119967] = 14, + [118961] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + STATE(3332), 1, + sym_comment, + STATE(4088), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119027] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + STATE(3333), 1, + sym_comment, + STATE(4249), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119093] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(3348), 1, + STATE(3334), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - ACTIONS(6651), 2, + ACTIONS(6644), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309373,43 +310878,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120037] = 15, + [119163] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, + ACTIONS(2909), 1, anon_sym_async, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(3349), 1, + STATE(3335), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - ACTIONS(6651), 2, + ACTIONS(6644), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2907), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309430,207 +310935,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120109] = 6, + [119235] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4498), 1, - anon_sym_EQ, - STATE(3350), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + STATE(3336), 1, sym_comment, - ACTIONS(4135), 13, - anon_sym_STAR, + STATE(4210), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4139), 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, - [120162] = 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119301] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4440), 1, - anon_sym_EQ, - STATE(3351), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + STATE(3337), 1, sym_comment, - ACTIONS(4135), 13, - anon_sym_STAR, + STATE(4204), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 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(4139), 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, - [120215] = 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119367] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4456), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1046), 1, + anon_sym_RBRACE, + ACTIONS(4961), 1, anon_sym_EQ, - STATE(3352), 1, + STATE(3338), 1, sym_comment, - ACTIONS(4135), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 23, - sym__ternary_qmark, - anon_sym_as, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2462), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [120268] = 6, + 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, + [119429] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(1046), 1, + anon_sym_RBRACE, + ACTIONS(4961), 1, anon_sym_EQ, - STATE(3353), 1, + STATE(3339), 1, sym_comment, - ACTIONS(4135), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4139), 23, - sym__ternary_qmark, - anon_sym_as, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [120321] = 6, + 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, + [119491] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4490), 1, + ACTIONS(5035), 1, anon_sym_EQ, - STATE(3354), 1, + ACTIONS(5936), 1, + anon_sym_of, + ACTIONS(6550), 1, + anon_sym_in, + STATE(3340), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(5033), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -309641,7 +311173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(5037), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309665,36 +311197,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120374] = 12, + [119549] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3355), 1, + STATE(3341), 1, sym_comment, - STATE(4640), 1, + STATE(4090), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6651), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 4, - anon_sym_LPAREN, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309718,16 +311251,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120439] = 6, + [119615] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4502), 1, - anon_sym_EQ, - STATE(3356), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + STATE(3342), 1, sym_comment, - ACTIONS(4135), 13, + STATE(3055), 2, + sym_template_string, + sym_arguments, + ACTIONS(4878), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309741,10 +311279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(4880), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -309763,21 +311300,395 @@ 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, - [120492] = 6, + [119673] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4494), 1, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(4961), 1, anon_sym_EQ, - STATE(3357), 1, + ACTIONS(6166), 1, + anon_sym_RBRACE, + STATE(3343), 1, sym_comment, - ACTIONS(4135), 13, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, + anon_sym_export, anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [119735] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + STATE(3344), 1, + sym_comment, + STATE(4205), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119801] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(6166), 1, + anon_sym_RBRACE, + STATE(3345), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2462), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [119863] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6622), 1, + anon_sym_RBRACE, + STATE(3346), 1, + sym_comment, + STATE(4623), 1, + sym__property_name, + STATE(5648), 1, + aux_sym_object_repeat1, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119933] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(6157), 1, + anon_sym_RBRACE, + STATE(3347), 1, + sym_comment, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2462), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [119995] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4527), 1, + sym__automatic_semicolon, + ACTIONS(4969), 1, + anon_sym_LBRACK, + STATE(3348), 1, + sym_comment, + STATE(4239), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120061] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(235), 1, + anon_sym_COMMA, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(6157), 1, + anon_sym_RBRACE, + STATE(3349), 1, + sym_comment, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [120123] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5930), 1, + anon_sym_of, + ACTIONS(6516), 1, anon_sym_in, + STATE(3350), 1, + sym_comment, + ACTIONS(2092), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -309788,7 +311699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(2098), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309812,16 +311723,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120545] = 6, + [120181] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4460), 1, + ACTIONS(5522), 1, anon_sym_EQ, - STATE(3358), 1, + ACTIONS(5871), 1, + anon_sym_of, + ACTIONS(6523), 1, + anon_sym_in, + STATE(3351), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(5520), 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(5524), 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, + [120239] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4487), 1, + anon_sym_EQ, + STATE(3352), 1, + sym_comment, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309835,7 +311796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309859,16 +311820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120598] = 6, + [120292] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4478), 1, + ACTIONS(4477), 1, anon_sym_EQ, - STATE(3359), 1, + STATE(3353), 1, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309882,7 +311843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 23, + ACTIONS(4144), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309906,34 +311867,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120651] = 5, + [120345] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6703), 1, - sym__automatic_semicolon, - STATE(3360), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3354), 1, sym_comment, - ACTIONS(6701), 35, + STATE(4623), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6644), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -309950,62 +311920,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [120701] = 5, - ACTIONS(3), 1, + [120410] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4481), 1, + anon_sym_EQ, + STATE(3355), 1, + sym_comment, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 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, + [120463] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6707), 1, - sym__automatic_semicolon, - STATE(3361), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_EQ, + STATE(3356), 1, sym_comment, - ACTIONS(6705), 35, - anon_sym_export, + ACTIONS(4140), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - anon_sym_SEMI, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [120516] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4505), 1, + anon_sym_EQ, + STATE(3357), 1, + sym_comment, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_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_abstract, - [120751] = 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 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, + [120569] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4455), 1, + anon_sym_EQ, + STATE(3358), 1, + sym_comment, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 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, + [120622] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4461), 1, + anon_sym_EQ, + STATE(3359), 1, + sym_comment, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 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, + [120675] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4485), 1, + anon_sym_EQ, + STATE(3360), 1, + sym_comment, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 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, + [120728] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4479), 1, + anon_sym_EQ, + STATE(3361), 1, + sym_comment, + ACTIONS(4140), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4144), 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, + [120781] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6711), 1, + ACTIONS(6714), 1, sym__automatic_semicolon, STATE(3362), 1, sym_comment, - ACTIONS(6709), 35, + ACTIONS(6712), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310041,16 +312294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120801] = 5, + [120831] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6715), 1, + ACTIONS(6718), 1, sym__automatic_semicolon, STATE(3363), 1, sym_comment, - ACTIONS(6713), 35, + ACTIONS(6716), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310086,23 +312339,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120851] = 5, + [120881] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6719), 1, + ACTIONS(6722), 1, + anon_sym_SEMI, + ACTIONS(6725), 1, sym__automatic_semicolon, STATE(3364), 1, sym_comment, - ACTIONS(6717), 35, + ACTIONS(6720), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -310131,37 +312385,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120901] = 7, + [120933] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5009), 1, - anon_sym_EQ, + ACTIONS(6729), 1, + sym__automatic_semicolon, STATE(3365), 1, sym_comment, - ACTIONS(6598), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(6727), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -310178,16 +312429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120955] = 5, + anon_sym_abstract, + [120983] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6723), 1, + ACTIONS(6733), 1, sym__automatic_semicolon, STATE(3366), 1, sym_comment, - ACTIONS(6721), 35, + ACTIONS(6731), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310223,16 +312475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121005] = 5, + [121033] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6703), 1, + ACTIONS(6737), 1, sym__automatic_semicolon, STATE(3367), 1, sym_comment, - ACTIONS(6701), 35, + ACTIONS(6735), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310268,16 +312520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121055] = 5, + [121083] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6715), 1, + ACTIONS(6741), 1, sym__automatic_semicolon, STATE(3368), 1, sym_comment, - ACTIONS(6713), 35, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310313,16 +312565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121105] = 5, + [121133] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6703), 1, + ACTIONS(6745), 1, sym__automatic_semicolon, STATE(3369), 1, sym_comment, - ACTIONS(6701), 35, + ACTIONS(6743), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310358,16 +312610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121155] = 5, + [121183] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6727), 1, + ACTIONS(6733), 1, sym__automatic_semicolon, STATE(3370), 1, sym_comment, - ACTIONS(6725), 35, + ACTIONS(6731), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310403,16 +312655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121205] = 5, + [121233] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6719), 1, + ACTIONS(6729), 1, sym__automatic_semicolon, STATE(3371), 1, sym_comment, - ACTIONS(6717), 35, + ACTIONS(6727), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310448,16 +312700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121255] = 5, + [121283] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6731), 1, + ACTIONS(6718), 1, sym__automatic_semicolon, STATE(3372), 1, sym_comment, - ACTIONS(6729), 35, + ACTIONS(6716), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310493,16 +312745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121305] = 5, + [121333] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6703), 1, + ACTIONS(6741), 1, sym__automatic_semicolon, STATE(3373), 1, sym_comment, - ACTIONS(6701), 35, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310538,16 +312790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121355] = 5, + [121383] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6703), 1, + ACTIONS(6718), 1, sym__automatic_semicolon, STATE(3374), 1, sym_comment, - ACTIONS(6701), 35, + ACTIONS(6716), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310583,16 +312835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121405] = 5, + [121433] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6735), 1, + ACTIONS(6747), 1, sym__automatic_semicolon, STATE(3375), 1, sym_comment, - ACTIONS(6733), 35, + ACTIONS(2090), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310628,34 +312880,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121455] = 5, + [121483] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6731), 1, - sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, STATE(3376), 1, sym_comment, - ACTIONS(6729), 35, + ACTIONS(6627), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -310672,44 +312927,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [121505] = 5, + [121537] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6715), 1, - sym__automatic_semicolon, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(2915), 1, + anon_sym_override, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6749), 1, + anon_sym_STAR, + ACTIONS(6751), 1, + anon_sym_async, + ACTIONS(6753), 1, + anon_sym_readonly, STATE(3377), 1, sym_comment, - ACTIONS(6713), 35, + STATE(3522), 1, + sym_override_modifier, + STATE(4721), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6755), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 18, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -310717,35 +312984,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [121555] = 5, + [121611] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6739), 1, - sym__automatic_semicolon, + ACTIONS(4961), 1, + anon_sym_EQ, STATE(3378), 1, sym_comment, - ACTIONS(6737), 35, + ACTIONS(6627), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2462), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -310762,17 +313031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [121605] = 5, + [121665] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6743), 1, + ACTIONS(6741), 1, sym__automatic_semicolon, STATE(3379), 1, sym_comment, - ACTIONS(6741), 35, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310808,16 +313076,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121655] = 5, + [121715] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6719), 1, + ACTIONS(6718), 1, sym__automatic_semicolon, STATE(3380), 1, sym_comment, - ACTIONS(6717), 35, + ACTIONS(6716), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310853,24 +313121,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121705] = 6, + [121765] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6747), 1, - anon_sym_SEMI, - ACTIONS(6750), 1, + ACTIONS(2248), 1, sym__automatic_semicolon, STATE(3381), 1, sym_comment, - ACTIONS(6745), 34, + ACTIONS(2244), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -310899,16 +313166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121757] = 5, + [121815] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6707), 1, + ACTIONS(6733), 1, sym__automatic_semicolon, STATE(3382), 1, sym_comment, - ACTIONS(6705), 35, + ACTIONS(6731), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310944,16 +313211,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121807] = 5, + [121865] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6715), 1, + ACTIONS(6759), 1, sym__automatic_semicolon, STATE(3383), 1, sym_comment, - ACTIONS(6713), 35, + ACTIONS(6757), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310989,16 +313256,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121857] = 5, + [121915] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6743), 1, + ACTIONS(6718), 1, sym__automatic_semicolon, STATE(3384), 1, sym_comment, - ACTIONS(6741), 35, + ACTIONS(6716), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311034,16 +313301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121907] = 5, + [121965] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6754), 1, + ACTIONS(6759), 1, sym__automatic_semicolon, STATE(3385), 1, sym_comment, - ACTIONS(6752), 35, + ACTIONS(6757), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311079,16 +313346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121957] = 5, + [122015] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6758), 1, + ACTIONS(2288), 1, sym__automatic_semicolon, STATE(3386), 1, sym_comment, - ACTIONS(6756), 35, + ACTIONS(2286), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311124,16 +313391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122007] = 5, + [122065] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6719), 1, + ACTIONS(6745), 1, sym__automatic_semicolon, STATE(3387), 1, sym_comment, - ACTIONS(6717), 35, + ACTIONS(6743), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311169,16 +313436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122057] = 5, + [122115] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6762), 1, + ACTIONS(6763), 1, sym__automatic_semicolon, STATE(3388), 1, sym_comment, - ACTIONS(6760), 35, + ACTIONS(6761), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311214,24 +313481,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122107] = 6, + [122165] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6766), 1, - anon_sym_SEMI, - ACTIONS(6769), 1, + ACTIONS(6745), 1, sym__automatic_semicolon, STATE(3389), 1, sym_comment, - ACTIONS(6764), 34, + ACTIONS(6743), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -311260,16 +313526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122159] = 5, + [122215] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6707), 1, + ACTIONS(6767), 1, sym__automatic_semicolon, STATE(3390), 1, sym_comment, - ACTIONS(6705), 35, + ACTIONS(6765), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311305,16 +313571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122209] = 5, + [122265] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6762), 1, + ACTIONS(6759), 1, sym__automatic_semicolon, STATE(3391), 1, sym_comment, - ACTIONS(6760), 35, + ACTIONS(6757), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311350,16 +313616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122259] = 5, + [122315] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6762), 1, + ACTIONS(6745), 1, sym__automatic_semicolon, STATE(3392), 1, sym_comment, - ACTIONS(6760), 35, + ACTIONS(6743), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311395,16 +313661,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122309] = 5, + [122365] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6762), 1, + ACTIONS(6771), 1, sym__automatic_semicolon, STATE(3393), 1, sym_comment, - ACTIONS(6760), 35, + ACTIONS(6769), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311440,16 +313706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122359] = 5, + [122415] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6707), 1, + ACTIONS(6775), 1, sym__automatic_semicolon, STATE(3394), 1, sym_comment, - ACTIONS(6705), 35, + ACTIONS(6773), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311485,16 +313751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122409] = 5, + [122465] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6703), 1, + ACTIONS(6745), 1, sym__automatic_semicolon, STATE(3395), 1, sym_comment, - ACTIONS(6701), 35, + ACTIONS(6743), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311530,16 +313796,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122459] = 5, + [122515] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2107), 1, + ACTIONS(6779), 1, sym__automatic_semicolon, STATE(3396), 1, sym_comment, - ACTIONS(2105), 35, + ACTIONS(6777), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311575,16 +313841,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122509] = 5, + [122565] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6731), 1, + ACTIONS(6745), 1, sym__automatic_semicolon, STATE(3397), 1, sym_comment, - ACTIONS(6729), 35, + ACTIONS(6743), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311620,16 +313886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122559] = 5, + [122615] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6771), 1, + ACTIONS(6779), 1, sym__automatic_semicolon, STATE(3398), 1, sym_comment, - ACTIONS(2057), 35, + ACTIONS(6777), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311665,16 +313931,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122609] = 5, + [122665] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6773), 1, + ACTIONS(6741), 1, sym__automatic_semicolon, STATE(3399), 1, sym_comment, - ACTIONS(2109), 35, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311710,16 +313976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122659] = 5, + [122715] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6715), 1, + ACTIONS(6729), 1, sym__automatic_semicolon, STATE(3400), 1, sym_comment, - ACTIONS(6713), 35, + ACTIONS(6727), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311755,16 +314021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122709] = 5, + [122765] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2111), 1, + ACTIONS(6729), 1, sym__automatic_semicolon, STATE(3401), 1, sym_comment, - ACTIONS(2109), 35, + ACTIONS(6727), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311800,16 +314066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122759] = 5, + [122815] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6703), 1, + ACTIONS(6733), 1, sym__automatic_semicolon, STATE(3402), 1, sym_comment, - ACTIONS(6701), 35, + ACTIONS(6731), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311845,16 +314111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122809] = 5, + [122865] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6758), 1, + ACTIONS(6745), 1, sym__automatic_semicolon, STATE(3403), 1, sym_comment, - ACTIONS(6756), 35, + ACTIONS(6743), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311890,56 +314156,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122859] = 17, + [122915] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6775), 1, - anon_sym_STAR, - ACTIONS(6777), 1, - anon_sym_async, - ACTIONS(6779), 1, - anon_sym_readonly, + ACTIONS(6781), 1, + sym__automatic_semicolon, STATE(3404), 1, sym_comment, - STATE(3516), 1, - sym_override_modifier, - STATE(4794), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6781), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, + ACTIONS(2244), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -311947,38 +314200,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122933] = 8, + anon_sym_abstract, + [122965] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6534), 1, - anon_sym_COMMA, - ACTIONS(6617), 1, - anon_sym_RBRACE, + ACTIONS(6733), 1, + sym__automatic_semicolon, STATE(3405), 1, sym_comment, - STATE(5660), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(6731), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -311995,16 +314245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122989] = 5, + anon_sym_abstract, + [123015] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6707), 1, + ACTIONS(6783), 1, sym__automatic_semicolon, STATE(3406), 1, sym_comment, - ACTIONS(6705), 35, + ACTIONS(2090), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312040,34 +314291,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123039] = 9, + [123065] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(6783), 1, - anon_sym_LPAREN, - ACTIONS(6785), 1, - anon_sym_DOT, + ACTIONS(6775), 1, + sym__automatic_semicolon, STATE(3407), 1, sym_comment, - STATE(3594), 1, - sym_arguments, - STATE(6483), 1, - sym_type_arguments, - ACTIONS(4218), 31, + ACTIONS(6773), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -312089,38 +314336,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123097] = 8, + [123115] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6534), 1, - anon_sym_COMMA, - ACTIONS(6617), 1, - anon_sym_RBRACE, + ACTIONS(6741), 1, + sym__automatic_semicolon, STATE(3408), 1, sym_comment, - STATE(5660), 1, - aux_sym_object_repeat1, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2409), 29, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -312137,16 +314380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123153] = 5, + anon_sym_abstract, + [123165] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6719), 1, + ACTIONS(6759), 1, sym__automatic_semicolon, STATE(3409), 1, sym_comment, - ACTIONS(6717), 35, + ACTIONS(6757), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312182,30 +314426,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123203] = 5, + [123215] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6731), 1, - sym__automatic_semicolon, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(6785), 1, + anon_sym_LPAREN, + ACTIONS(6787), 1, + anon_sym_DOT, STATE(3410), 1, sym_comment, - ACTIONS(6729), 35, + STATE(3581), 1, + sym_arguments, + STATE(6982), 1, + sym_type_arguments, + ACTIONS(4132), 31, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -312227,16 +314475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123253] = 5, + [123273] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6719), 1, + ACTIONS(6729), 1, sym__automatic_semicolon, STATE(3411), 1, sym_comment, - ACTIONS(6717), 35, + ACTIONS(6727), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312272,16 +314520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123303] = 5, + [123323] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6762), 1, + ACTIONS(6759), 1, sym__automatic_semicolon, STATE(3412), 1, sym_comment, - ACTIONS(6760), 35, + ACTIONS(6757), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312317,16 +314565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123353] = 5, + [123373] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6787), 1, + ACTIONS(6729), 1, sym__automatic_semicolon, STATE(3413), 1, sym_comment, - ACTIONS(2109), 35, + ACTIONS(6727), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312362,16 +314610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123403] = 5, + [123423] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6719), 1, + ACTIONS(6729), 1, sym__automatic_semicolon, STATE(3414), 1, sym_comment, - ACTIONS(6717), 35, + ACTIONS(6727), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312407,23 +314655,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123453] = 5, + [123473] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6789), 1, + ACTIONS(6791), 1, + anon_sym_SEMI, + ACTIONS(6794), 1, sym__automatic_semicolon, STATE(3415), 1, sym_comment, - ACTIONS(2057), 35, + ACTIONS(6789), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -312452,16 +314701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123503] = 5, + [123525] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6731), 1, + ACTIONS(6798), 1, sym__automatic_semicolon, STATE(3416), 1, sym_comment, - ACTIONS(6729), 35, + ACTIONS(6796), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312497,24 +314746,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123553] = 7, + [123575] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5009), 1, - anon_sym_EQ, - STATE(3417), 1, - sym_comment, - ACTIONS(6598), 2, + ACTIONS(6465), 1, anon_sym_COMMA, + ACTIONS(6622), 1, anon_sym_RBRACE, - ACTIONS(1041), 4, + STATE(3417), 1, + sym_comment, + STATE(5648), 1, + aux_sym_object_repeat1, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2409), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312544,32 +314794,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123607] = 4, + [123631] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6622), 1, + anon_sym_RBRACE, STATE(3418), 1, sym_comment, - ACTIONS(6791), 35, + STATE(5648), 1, + aux_sym_object_repeat1, + ACTIONS(1042), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2462), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -312586,15 +314842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [123654] = 4, + [123687] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(6800), 1, + sym__automatic_semicolon, STATE(3419), 1, sym_comment, - ACTIONS(6793), 35, + ACTIONS(2244), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312630,34 +314887,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123701] = 12, + [123737] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6795), 1, + ACTIONS(6802), 1, anon_sym_EQ_GT, STATE(3420), 1, sym_comment, - STATE(4794), 1, + STATE(4721), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312681,46 +314938,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123764] = 13, + [123800] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6775), 1, - anon_sym_STAR, STATE(3421), 1, sym_comment, - STATE(4794), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6781), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(6644), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1042), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2462), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -312733,47 +314983,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123829] = 14, + [123851] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6775), 1, - anon_sym_STAR, - ACTIONS(6777), 1, - anon_sym_async, STATE(3422), 1, sym_comment, - STATE(4794), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6781), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(6804), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -312786,37 +315025,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123896] = 13, + anon_sym_abstract, + [123898] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6797), 1, + ACTIONS(6806), 1, anon_sym_STAR, STATE(3423), 1, sym_comment, - STATE(4811), 1, + STATE(4743), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6799), 2, + ACTIONS(6808), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312838,14 +315078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123961] = 4, + [123963] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3424), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(6810), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312881,14 +315121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124008] = 4, + [124010] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3425), 1, sym_comment, - ACTIONS(2105), 35, + ACTIONS(6720), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312924,46 +315164,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124055] = 13, + [124057] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6803), 1, - anon_sym_STAR, STATE(3426), 1, sym_comment, - STATE(4661), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6805), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1041), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(6810), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -312976,14 +315206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124120] = 4, + anon_sym_abstract, + [124104] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3427), 1, sym_comment, - ACTIONS(2109), 35, + ACTIONS(6812), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -313019,36 +315250,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124167] = 4, + [124151] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + anon_sym_STAR, STATE(3428), 1, sym_comment, - ACTIONS(6807), 35, + STATE(4812), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6816), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -313061,15 +315302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [124214] = 4, + [124216] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3429), 1, sym_comment, - ACTIONS(6764), 35, + ACTIONS(2286), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -313105,39 +315345,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124261] = 14, + [124263] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6797), 1, + ACTIONS(6749), 1, anon_sym_STAR, - ACTIONS(6809), 1, + ACTIONS(6751), 1, anon_sym_async, STATE(3430), 1, sym_comment, - STATE(4811), 1, + STATE(4721), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6799), 2, + ACTIONS(6755), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2907), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313158,36 +315398,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124328] = 4, + [124330] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6818), 1, + anon_sym_STAR, + ACTIONS(6820), 1, + anon_sym_async, STATE(3431), 1, sym_comment, - ACTIONS(6793), 35, + STATE(4846), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6822), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1042), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -313200,38 +315451,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [124375] = 13, + [124397] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6811), 1, + ACTIONS(6818), 1, anon_sym_STAR, STATE(3432), 1, sym_comment, - STATE(4724), 1, + STATE(4846), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6813), 2, + ACTIONS(6822), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313253,35 +315503,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124440] = 6, + [124462] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3433), 1, sym_comment, - ACTIONS(6651), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1041), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2397), 29, + ACTIONS(2244), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -313298,22 +315545,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124491] = 6, + anon_sym_abstract, + [124509] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3434), 1, sym_comment, - ACTIONS(6651), 2, + ACTIONS(6644), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1041), 4, + ACTIONS(1042), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2409), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -313343,43 +315591,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124542] = 14, + [124560] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + STATE(3435), 1, + sym_comment, + ACTIONS(6824), 35, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1896), 1, + 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_abstract, + [124607] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6811), 1, + ACTIONS(6749), 1, anon_sym_STAR, - ACTIONS(6815), 1, - anon_sym_async, - STATE(3435), 1, + STATE(3436), 1, sym_comment, - STATE(4724), 1, + STATE(4721), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6813), 2, + ACTIONS(6755), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -313396,39 +315686,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124609] = 11, + [124672] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3436), 1, + ACTIONS(6814), 1, + anon_sym_STAR, + ACTIONS(6826), 1, + anon_sym_async, + STATE(3437), 1, sym_comment, - STATE(4738), 1, + STATE(4812), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(6816), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124739] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3438), 1, + sym_comment, + ACTIONS(4297), 34, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_LT, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -313445,32 +315780,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124669] = 11, + anon_sym_abstract, + [124785] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3437), 1, + STATE(3439), 1, sym_comment, - STATE(4672), 1, + STATE(4627), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313494,32 +315830,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124729] = 11, + [124845] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3438), 1, + STATE(3440), 1, sym_comment, - STATE(4838), 1, + STATE(4788), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313543,32 +315879,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124789] = 11, + [124905] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3439), 1, + STATE(3441), 1, sym_comment, - STATE(4725), 1, + STATE(4721), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313592,32 +315928,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124849] = 11, + [124965] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3440), 1, + STATE(3442), 1, sym_comment, - STATE(4811), 1, + STATE(4757), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313641,32 +315977,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124909] = 11, + [125025] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3441), 1, + STATE(3443), 1, sym_comment, - STATE(4694), 1, + STATE(4689), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313690,32 +316026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124969] = 11, + [125085] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3442), 1, + STATE(3444), 1, sym_comment, - STATE(4617), 1, + STATE(4674), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313739,48 +316075,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125029] = 11, + [125145] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3443), 1, + ACTIONS(5561), 1, + anon_sym_STAR, + ACTIONS(5565), 1, + anon_sym_async, + ACTIONS(6828), 1, + anon_sym_static, + ACTIONS(6830), 1, + anon_sym_readonly, + ACTIONS(6832), 1, + anon_sym_declare, + ACTIONS(6834), 1, + anon_sym_abstract, + STATE(3445), 1, sym_comment, - STATE(4660), 1, + STATE(3533), 1, + sym_override_modifier, + STATE(3827), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(5569), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(4385), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -313788,32 +316132,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125089] = 11, + [125221] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3444), 1, + STATE(3446), 1, sym_comment, - STATE(4654), 1, + STATE(4732), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313837,32 +316181,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125149] = 11, + [125281] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3445), 1, + STATE(3447), 1, sym_comment, - STATE(4708), 1, + STATE(4620), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313886,32 +316230,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125209] = 11, + [125341] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3446), 1, + STATE(3448), 1, sym_comment, - STATE(4842), 1, + STATE(4837), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313935,32 +316279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125269] = 11, + [125401] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3449), 1, sym_comment, - STATE(4625), 1, + STATE(4823), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313984,32 +316328,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125329] = 11, + [125461] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3448), 1, + STATE(3450), 1, sym_comment, - STATE(4661), 1, + STATE(4828), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314033,32 +316377,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125389] = 11, + [125521] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3449), 1, + STATE(3451), 1, sym_comment, - STATE(4645), 1, + STATE(4680), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314082,32 +316426,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125449] = 11, + [125581] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3450), 1, + STATE(3452), 1, sym_comment, - STATE(4618), 1, + STATE(4846), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314131,56 +316475,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125509] = 19, + [125641] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6096), 1, - anon_sym_STAR, - ACTIONS(6098), 1, - anon_sym_async, - ACTIONS(6817), 1, - anon_sym_static, - ACTIONS(6819), 1, - anon_sym_readonly, - ACTIONS(6821), 1, - anon_sym_declare, - ACTIONS(6823), 1, - anon_sym_abstract, - STATE(3451), 1, + STATE(3453), 1, sym_comment, - STATE(3532), 1, - sym_override_modifier, - STATE(3811), 1, + STATE(4738), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6100), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 16, + ACTIONS(1042), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -314188,32 +316524,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125585] = 11, + [125701] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3452), 1, + STATE(3454), 1, sym_comment, - STATE(4724), 1, + STATE(4670), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314237,32 +316573,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125645] = 11, + [125761] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3453), 1, + STATE(3455), 1, sym_comment, - STATE(4629), 1, + STATE(4625), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314286,32 +316622,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125705] = 11, + [125821] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3454), 1, + STATE(3456), 1, sym_comment, - STATE(4649), 1, + STATE(4841), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314335,32 +316671,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125765] = 11, + [125881] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3457), 1, sym_comment, - STATE(4841), 1, + STATE(4626), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314384,32 +316720,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125825] = 11, + [125941] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3456), 1, + STATE(3458), 1, sym_comment, - STATE(4747), 1, + STATE(4684), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314433,32 +316769,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125885] = 11, + [126001] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3457), 1, + STATE(3459), 1, sym_comment, - STATE(4646), 1, + STATE(4750), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314482,48 +316818,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125945] = 11, + [126061] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3458), 1, + ACTIONS(6149), 1, + anon_sym_STAR, + ACTIONS(6151), 1, + anon_sym_async, + ACTIONS(6836), 1, + anon_sym_static, + ACTIONS(6838), 1, + anon_sym_readonly, + ACTIONS(6840), 1, + anon_sym_declare, + ACTIONS(6842), 1, + anon_sym_abstract, + STATE(3460), 1, sym_comment, - STATE(4801), 1, + STATE(3527), 1, + sym_override_modifier, + STATE(3814), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(6155), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(4385), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -314531,32 +316875,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126005] = 11, + [126137] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3459), 1, + STATE(3461), 1, sym_comment, - STATE(4836), 1, + STATE(4621), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314580,32 +316924,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126065] = 11, + [126197] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3460), 1, + STATE(3462), 1, sym_comment, - STATE(4644), 1, + STATE(4743), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314629,32 +316973,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126125] = 11, + [126257] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3461), 1, + STATE(3463), 1, sym_comment, - STATE(4794), 1, + STATE(4812), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314678,32 +317022,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126185] = 11, + [126317] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3462), 1, + STATE(3464), 1, sym_comment, - STATE(4677), 1, + STATE(4778), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314727,56 +317071,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126245] = 19, + [126377] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5522), 1, - anon_sym_STAR, - ACTIONS(5526), 1, - anon_sym_async, - ACTIONS(6825), 1, - anon_sym_static, - ACTIONS(6827), 1, - anon_sym_readonly, - ACTIONS(6829), 1, - anon_sym_declare, - ACTIONS(6831), 1, - anon_sym_abstract, - STATE(3463), 1, + STATE(3465), 1, sym_comment, - STATE(3522), 1, - sym_override_modifier, - STATE(3809), 1, + STATE(4831), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(5530), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 16, + ACTIONS(1042), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -314784,32 +317120,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126321] = 11, + [126437] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3464), 1, + STATE(3466), 1, sym_comment, - STATE(4833), 1, + STATE(4832), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(1041), 3, + ACTIONS(1042), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314833,74 +317169,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126381] = 4, + [126497] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3465), 1, - sym_comment, - ACTIONS(4320), 34, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1901), 1, anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_LT, - 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_abstract, - [126427] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6833), 1, - anon_sym_RBRACE, - STATE(3466), 1, + STATE(3467), 1, sym_comment, - STATE(5240), 1, + STATE(4624), 1, sym__property_name, - STATE(6265), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(1042), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314924,32 +317218,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126488] = 12, + [126557] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6835), 1, + ACTIONS(6844), 1, anon_sym_RBRACE, - STATE(3467), 1, + STATE(3468), 1, sym_comment, - STATE(5418), 1, + STATE(5321), 1, sym__property_name, - STATE(6747), 1, + STATE(6209), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314973,32 +317267,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126549] = 12, + [126618] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2943), 1, + anon_sym_type, + ACTIONS(2945), 1, + anon_sym_namespace, + ACTIONS(2947), 1, + anon_sym_import, + ACTIONS(2949), 1, + anon_sym_var, + ACTIONS(2951), 1, + anon_sym_let, + ACTIONS(2953), 1, + anon_sym_const, + ACTIONS(2955), 1, + anon_sym_class, + ACTIONS(2957), 1, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_function, + ACTIONS(2961), 1, + anon_sym_declare, + ACTIONS(2963), 1, + anon_sym_module, + ACTIONS(2965), 1, + anon_sym_abstract, + ACTIONS(2967), 1, + anon_sym_global, + ACTIONS(2969), 1, + anon_sym_interface, + ACTIONS(2971), 1, + anon_sym_enum, + STATE(3469), 1, + sym_comment, + STATE(4863), 1, + aux_sym_export_statement_repeat1, + STATE(4972), 1, + sym_declaration, + STATE(4974), 1, + sym_internal_module, + STATE(5640), 1, + sym_decorator, + STATE(4973), 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, + [126703] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6837), 1, + ACTIONS(6846), 1, anon_sym_RBRACE, - STATE(3468), 1, + STATE(3470), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315022,32 +317377,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126610] = 12, + [126764] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2943), 1, + anon_sym_type, + ACTIONS(2945), 1, + anon_sym_namespace, + ACTIONS(2947), 1, + anon_sym_import, + ACTIONS(2949), 1, + anon_sym_var, + ACTIONS(2951), 1, + anon_sym_let, + ACTIONS(2953), 1, + anon_sym_const, + ACTIONS(2955), 1, + anon_sym_class, + ACTIONS(2957), 1, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_function, + ACTIONS(2961), 1, + anon_sym_declare, + ACTIONS(2965), 1, + anon_sym_abstract, + ACTIONS(2969), 1, + anon_sym_interface, + ACTIONS(2971), 1, + anon_sym_enum, + ACTIONS(4529), 1, + anon_sym_module, + ACTIONS(6848), 1, + anon_sym_default, + STATE(3471), 1, + sym_comment, + STATE(4863), 1, + aux_sym_export_statement_repeat1, + STATE(4929), 1, + sym_declaration, + STATE(4974), 1, + sym_internal_module, + STATE(5640), 1, + sym_decorator, + STATE(4973), 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, + [126849] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_RBRACE, - STATE(3469), 1, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(6852), 1, + anon_sym_readonly, + STATE(3472), 1, sym_comment, - STATE(5418), 1, + STATE(3534), 1, + sym_override_modifier, + STATE(3828), 1, sym__property_name, - STATE(6747), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(6854), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315056,14 +317479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -315071,32 +317490,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126671] = 12, + [126916] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6841), 1, + ACTIONS(6856), 1, anon_sym_RBRACE, - STATE(3470), 1, + STATE(3473), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315120,53 +317539,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126732] = 17, + [126977] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_STAR, - ACTIONS(6843), 1, - anon_sym_static, - STATE(3471), 1, + ACTIONS(6858), 1, + anon_sym_RBRACE, + STATE(3474), 1, sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(4640), 1, + STATE(5482), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(6582), 1, + sym_enum_assignment, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 17, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -315174,53 +317588,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126803] = 17, + [127038] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_async, - ACTIONS(5021), 1, - anon_sym_readonly, - ACTIONS(6845), 1, - anon_sym_static, - STATE(3472), 1, + ACTIONS(6860), 1, + anon_sym_RBRACE, + STATE(3475), 1, sym_comment, - STATE(3534), 1, - sym_override_modifier, - STATE(3907), 1, + STATE(5482), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6582), 1, + sym_enum_assignment, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(5023), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 17, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -315228,32 +317637,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126874] = 12, + [127099] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6847), 1, + ACTIONS(6862), 1, anon_sym_RBRACE, - STATE(3473), 1, + STATE(3476), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315277,154 +317686,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126935] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2872), 1, - anon_sym_namespace, - ACTIONS(2874), 1, - anon_sym_import, - ACTIONS(2876), 1, - anon_sym_var, - ACTIONS(2878), 1, - anon_sym_let, - ACTIONS(2880), 1, - anon_sym_const, - ACTIONS(2884), 1, - anon_sym_class, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2888), 1, - anon_sym_function, - ACTIONS(2890), 1, - anon_sym_declare, - ACTIONS(2894), 1, - anon_sym_abstract, - ACTIONS(2896), 1, - anon_sym_interface, - ACTIONS(2898), 1, - anon_sym_enum, - ACTIONS(2916), 1, - anon_sym_type, - ACTIONS(2918), 1, - anon_sym_module, - ACTIONS(2920), 1, - anon_sym_global, - STATE(3474), 1, - sym_comment, - STATE(5301), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, - STATE(6896), 1, - sym_declaration, - STATE(6916), 1, - sym_internal_module, - STATE(6924), 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, - [127020] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2936), 1, - anon_sym_type, - ACTIONS(2938), 1, - anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, - anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, - anon_sym_declare, - ACTIONS(2956), 1, - anon_sym_module, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2960), 1, - anon_sym_global, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - STATE(3475), 1, - sym_comment, - STATE(4959), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_internal_module, - STATE(5249), 1, - sym_declaration, - STATE(5608), 1, - sym_decorator, - STATE(5246), 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, - [127105] = 12, + [127160] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6849), 1, + ACTIONS(6864), 1, anon_sym_RBRACE, - STATE(3476), 1, + STATE(3477), 1, sym_comment, - STATE(5318), 1, + STATE(5482), 1, sym__property_name, - STATE(6172), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315448,32 +317735,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127166] = 12, + [127221] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6851), 1, + ACTIONS(6866), 1, anon_sym_RBRACE, - STATE(3477), 1, + STATE(3478), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315497,47 +317784,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127227] = 15, + [127282] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6853), 1, + ACTIONS(6200), 1, anon_sym_STAR, - ACTIONS(6855), 1, + ACTIONS(6202), 1, + anon_sym_async, + ACTIONS(6204), 1, anon_sym_readonly, - STATE(3478), 1, + ACTIONS(6868), 1, + anon_sym_static, + STATE(3479), 1, sym_comment, - STATE(3526), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3801), 1, + STATE(3867), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6857), 2, + ACTIONS(6206), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(4385), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -315549,32 +317838,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127294] = 12, + [127353] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6859), 1, - anon_sym_RBRACE, - STATE(3479), 1, + ACTIONS(5960), 1, + anon_sym_static, + ACTIONS(5962), 1, + anon_sym_readonly, + ACTIONS(5964), 1, + anon_sym_abstract, + STATE(3480), 1, sym_comment, - STATE(5418), 1, + STATE(3567), 1, + sym_override_modifier, + STATE(4225), 1, sym__property_name, - STATE(6747), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315582,15 +317877,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, @@ -315598,93 +317890,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127355] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2663), 1, - anon_sym_namespace, - ACTIONS(2669), 1, - anon_sym_import, - ACTIONS(2671), 1, - anon_sym_var, - ACTIONS(2673), 1, - anon_sym_let, - ACTIONS(2675), 1, - anon_sym_const, - ACTIONS(2683), 1, - anon_sym_class, - ACTIONS(2685), 1, - anon_sym_async, - ACTIONS(2687), 1, - anon_sym_function, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_declare, - ACTIONS(2704), 1, - anon_sym_abstract, - ACTIONS(2706), 1, - anon_sym_interface, - ACTIONS(2708), 1, - anon_sym_enum, - ACTIONS(2738), 1, - anon_sym_type, - ACTIONS(2740), 1, - anon_sym_module, - ACTIONS(2742), 1, - anon_sym_global, - STATE(1482), 1, - sym_internal_module, - STATE(1563), 1, - sym_declaration, - STATE(3480), 1, - sym_comment, - STATE(4924), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, - STATE(1527), 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, - [127440] = 12, + [127420] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6861), 1, + ACTIONS(6870), 1, anon_sym_RBRACE, STATE(3481), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315708,32 +317939,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127501] = 12, + [127481] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6863), 1, - anon_sym_RBRACE, + ACTIONS(6678), 1, + anon_sym_readonly, + ACTIONS(6872), 1, + anon_sym_STAR, STATE(3482), 1, sym_comment, - STATE(5418), 1, + STATE(3523), 1, + sym_override_modifier, + STATE(3823), 1, sym__property_name, - STATE(6747), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(6874), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315742,14 +317980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -315757,169 +317991,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127562] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2796), 1, - anon_sym_namespace, - ACTIONS(2798), 1, - anon_sym_import, - ACTIONS(2800), 1, - anon_sym_var, - ACTIONS(2802), 1, - anon_sym_let, - ACTIONS(2804), 1, - anon_sym_const, - ACTIONS(2808), 1, - anon_sym_class, - ACTIONS(2810), 1, - anon_sym_async, - ACTIONS(2812), 1, - anon_sym_function, - ACTIONS(2814), 1, - anon_sym_declare, - ACTIONS(2816), 1, - anon_sym_module, - ACTIONS(2818), 1, - anon_sym_abstract, - ACTIONS(2820), 1, - anon_sym_interface, - ACTIONS(2822), 1, - anon_sym_enum, - ACTIONS(2910), 1, - anon_sym_type, - ACTIONS(6865), 1, - anon_sym_default, - STATE(1093), 1, - sym_declaration, - STATE(1154), 1, - sym_internal_module, - STATE(3483), 1, - sym_comment, - STATE(5013), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, - STATE(1157), 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, - [127647] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2936), 1, - anon_sym_type, - ACTIONS(2938), 1, - anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, - anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, - anon_sym_declare, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - ACTIONS(4522), 1, - anon_sym_module, - ACTIONS(6867), 1, - anon_sym_default, - STATE(3484), 1, - sym_comment, - STATE(4959), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_internal_module, - STATE(5285), 1, - sym_declaration, - STATE(5608), 1, - sym_decorator, - STATE(5246), 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, - [127732] = 15, + [127548] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, + ACTIONS(4409), 1, anon_sym_override, - ACTIONS(5017), 1, + ACTIONS(4959), 1, + anon_sym_STAR, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_static, - ACTIONS(6108), 1, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(4973), 1, anon_sym_readonly, - ACTIONS(6110), 1, - anon_sym_abstract, - STATE(3485), 1, + ACTIONS(6876), 1, + anon_sym_static, + STATE(3483), 1, sym_comment, - STATE(3567), 1, + STATE(3529), 1, sym_override_modifier, - STATE(4209), 1, + STATE(3892), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + ACTIONS(4975), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 20, + ACTIONS(4385), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -315931,32 +318045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127799] = 12, + [127619] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6869), 1, + ACTIONS(6878), 1, anon_sym_RBRACE, - STATE(3486), 1, + STATE(3484), 1, sym_comment, - STATE(4923), 1, + STATE(5482), 1, sym__property_name, - STATE(6088), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315980,32 +318094,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127860] = 12, + [127680] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6871), 1, + ACTIONS(6880), 1, anon_sym_RBRACE, - STATE(3487), 1, + STATE(3485), 1, sym_comment, - STATE(5151), 1, + STATE(5482), 1, sym__property_name, - STATE(6302), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316029,81 +318143,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127921] = 12, + [127741] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6873), 1, + ACTIONS(6882), 1, anon_sym_RBRACE, - STATE(3488), 1, + STATE(3486), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [127982] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6875), 1, - anon_sym_AT, - STATE(3548), 1, - sym_decorator, - STATE(3489), 2, - sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4272), 30, + ACTIONS(2907), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -316120,33 +318192,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [128031] = 12, + [127802] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6878), 1, + ACTIONS(6884), 1, anon_sym_RBRACE, - STATE(3490), 1, + STATE(3487), 1, sym_comment, - STATE(5418), 1, + STATE(5256), 1, sym__property_name, - STATE(6747), 1, + STATE(6022), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316170,32 +318241,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128092] = 12, + [127863] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6880), 1, + ACTIONS(6886), 1, anon_sym_RBRACE, - STATE(3491), 1, + STATE(3488), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316219,32 +318290,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128153] = 12, + [127924] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6882), 1, + ACTIONS(6888), 1, anon_sym_RBRACE, - STATE(3492), 1, + STATE(3489), 1, sym_comment, - STATE(5390), 1, + STATE(5396), 1, sym__property_name, - STATE(6018), 1, + STATE(6269), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316268,32 +318339,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128214] = 12, + [127985] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6884), 1, + ACTIONS(6890), 1, anon_sym_RBRACE, - STATE(3493), 1, + STATE(3490), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316317,84 +318388,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128275] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [128046] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6673), 1, - anon_sym_readonly, - ACTIONS(6886), 1, - anon_sym_STAR, - STATE(3494), 1, - sym_comment, - STATE(3519), 1, - sym_override_modifier, - STATE(3831), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6888), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4378), 19, - anon_sym_export, - anon_sym_type, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2841), 1, anon_sym_namespace, + ACTIONS(2843), 1, + anon_sym_import, + ACTIONS(2845), 1, + anon_sym_var, + ACTIONS(2847), 1, anon_sym_let, + ACTIONS(2849), 1, + anon_sym_const, + ACTIONS(2853), 1, + anon_sym_class, + ACTIONS(2855), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(2857), 1, + anon_sym_function, + ACTIONS(2859), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(2863), 1, + anon_sym_abstract, + ACTIONS(2865), 1, + anon_sym_interface, + ACTIONS(2867), 1, + anon_sym_enum, + ACTIONS(2929), 1, + anon_sym_type, + ACTIONS(2931), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [128342] = 12, + ACTIONS(2933), 1, + anon_sym_global, + STATE(1055), 1, + sym_internal_module, + STATE(1075), 1, + sym_declaration, + STATE(3491), 1, + sym_comment, + STATE(4852), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(1034), 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, + [128131] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6890), 1, + ACTIONS(6892), 1, anon_sym_RBRACE, - STATE(3495), 1, + STATE(3492), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316418,81 +318498,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128403] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [128192] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6892), 1, - anon_sym_RBRACE, - STATE(3496), 1, - sym_comment, - STATE(5418), 1, - sym__property_name, - STATE(6747), 1, - sym_enum_assignment, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2879), 1, + anon_sym_namespace, + ACTIONS(2881), 1, + anon_sym_import, + ACTIONS(2883), 1, + anon_sym_var, + ACTIONS(2885), 1, + anon_sym_let, + ACTIONS(2887), 1, + anon_sym_const, + ACTIONS(2891), 1, + anon_sym_class, + ACTIONS(2893), 1, + anon_sym_async, + ACTIONS(2895), 1, + anon_sym_function, + ACTIONS(2897), 1, + anon_sym_declare, + ACTIONS(2901), 1, + anon_sym_abstract, + ACTIONS(2903), 1, + anon_sym_interface, + ACTIONS(2905), 1, + anon_sym_enum, + ACTIONS(2917), 1, anon_sym_type, + ACTIONS(2919), 1, + anon_sym_module, + ACTIONS(2921), 1, + anon_sym_global, + STATE(1271), 1, + sym_declaration, + STATE(1333), 1, + sym_internal_module, + STATE(3493), 1, + sym_comment, + STATE(4979), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(1361), 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, + [128277] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2799), 1, anon_sym_namespace, + ACTIONS(2801), 1, + anon_sym_import, + ACTIONS(2803), 1, + anon_sym_var, + ACTIONS(2805), 1, anon_sym_let, + ACTIONS(2807), 1, + anon_sym_const, + ACTIONS(2811), 1, + anon_sym_class, + ACTIONS(2813), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2815), 1, + anon_sym_function, + ACTIONS(2817), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2819), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [128464] = 12, + ACTIONS(2821), 1, + anon_sym_abstract, + ACTIONS(2823), 1, + anon_sym_interface, + ACTIONS(2825), 1, + anon_sym_enum, + ACTIONS(2923), 1, + anon_sym_type, + ACTIONS(6894), 1, + anon_sym_default, + STATE(1185), 1, + sym_internal_module, + STATE(1290), 1, + sym_declaration, + STATE(3494), 1, + sym_comment, + STATE(4857), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(1189), 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, + [128362] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6894), 1, + ACTIONS(6896), 1, anon_sym_RBRACE, - STATE(3497), 1, + STATE(3495), 1, sym_comment, - STATE(5418), 1, + STATE(4990), 1, sym__property_name, - STATE(6747), 1, + STATE(5732), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316516,39 +318669,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128525] = 12, + [128423] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6896), 1, - anon_sym_RBRACE, - STATE(3498), 1, + ACTIONS(6898), 1, + anon_sym_AT, + STATE(3568), 1, + sym_decorator, + STATE(3496), 2, sym_comment, - STATE(5418), 1, - sym__property_name, - STATE(6747), 1, - sym_enum_assignment, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + aux_sym_export_statement_repeat1, + ACTIONS(4212), 30, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -316565,54 +318711,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128586] = 24, + anon_sym_abstract, + [128472] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2758), 1, + ACTIONS(2670), 1, anon_sym_namespace, - ACTIONS(2760), 1, + ACTIONS(2676), 1, anon_sym_import, - ACTIONS(2762), 1, + ACTIONS(2678), 1, anon_sym_var, - ACTIONS(2764), 1, + ACTIONS(2680), 1, anon_sym_let, - ACTIONS(2766), 1, + ACTIONS(2682), 1, anon_sym_const, - ACTIONS(2770), 1, + ACTIONS(2690), 1, anon_sym_class, - ACTIONS(2772), 1, + ACTIONS(2692), 1, anon_sym_async, - ACTIONS(2774), 1, + ACTIONS(2694), 1, anon_sym_function, - ACTIONS(2776), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2707), 1, anon_sym_declare, - ACTIONS(2780), 1, + ACTIONS(2711), 1, anon_sym_abstract, - ACTIONS(2782), 1, + ACTIONS(2713), 1, anon_sym_interface, - ACTIONS(2784), 1, + ACTIONS(2715), 1, anon_sym_enum, - ACTIONS(2922), 1, + ACTIONS(2745), 1, anon_sym_type, - ACTIONS(2924), 1, + ACTIONS(2747), 1, anon_sym_module, - ACTIONS(2926), 1, + ACTIONS(2749), 1, anon_sym_global, - STATE(1342), 1, + STATE(1481), 1, sym_internal_module, - STATE(1360), 1, + STATE(1562), 1, sym_declaration, - STATE(3499), 1, + STATE(3497), 1, sym_comment, - STATE(4973), 1, + STATE(4860), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(1340), 13, + STATE(1478), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -316626,155 +318773,115 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [128671] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [128557] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - ACTIONS(6898), 1, - anon_sym_RBRACE, - STATE(3500), 1, - sym_comment, - STATE(5418), 1, - sym__property_name, - STATE(6747), 1, - sym_enum_assignment, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2841), 1, anon_sym_namespace, + ACTIONS(2843), 1, + anon_sym_import, + ACTIONS(2845), 1, + anon_sym_var, + ACTIONS(2847), 1, anon_sym_let, + ACTIONS(2849), 1, + anon_sym_const, + ACTIONS(2853), 1, + anon_sym_class, + ACTIONS(2855), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2857), 1, + anon_sym_function, + ACTIONS(2859), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2861), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [128732] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4402), 1, - anon_sym_override, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6900), 1, - anon_sym_static, - ACTIONS(6902), 1, - anon_sym_readonly, - ACTIONS(6904), 1, + ACTIONS(2863), 1, anon_sym_abstract, - STATE(3501), 1, - sym_comment, - STATE(3573), 1, - sym_override_modifier, - STATE(4289), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4378), 20, - anon_sym_export, + ACTIONS(2865), 1, + anon_sym_interface, + ACTIONS(2867), 1, + anon_sym_enum, + ACTIONS(2929), 1, anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [128799] = 24, + ACTIONS(6901), 1, + anon_sym_default, + STATE(1055), 1, + sym_internal_module, + STATE(1097), 1, + sym_declaration, + STATE(3498), 1, + sym_comment, + STATE(4852), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(1034), 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, + [128642] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2834), 1, + ACTIONS(2761), 1, anon_sym_namespace, - ACTIONS(2836), 1, + ACTIONS(2763), 1, anon_sym_import, - ACTIONS(2838), 1, + ACTIONS(2765), 1, anon_sym_var, - ACTIONS(2840), 1, + ACTIONS(2767), 1, anon_sym_let, - ACTIONS(2842), 1, + ACTIONS(2769), 1, anon_sym_const, - ACTIONS(2846), 1, + ACTIONS(2773), 1, anon_sym_class, - ACTIONS(2848), 1, + ACTIONS(2775), 1, anon_sym_async, - ACTIONS(2850), 1, + ACTIONS(2777), 1, anon_sym_function, - ACTIONS(2852), 1, + ACTIONS(2779), 1, anon_sym_declare, - ACTIONS(2854), 1, + ACTIONS(2781), 1, anon_sym_module, - ACTIONS(2856), 1, + ACTIONS(2783), 1, anon_sym_abstract, - ACTIONS(2858), 1, + ACTIONS(2785), 1, anon_sym_interface, - ACTIONS(2860), 1, + ACTIONS(2787), 1, anon_sym_enum, - ACTIONS(2928), 1, + ACTIONS(2935), 1, anon_sym_type, - ACTIONS(6906), 1, + ACTIONS(6903), 1, anon_sym_default, - STATE(1221), 1, - sym_internal_module, - STATE(1375), 1, - sym_declaration, - STATE(3502), 1, + STATE(3499), 1, sym_comment, - STATE(4937), 1, + STATE(5015), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(1216), 13, + STATE(6634), 1, + sym_internal_module, + STATE(6804), 1, + sym_declaration, + STATE(6630), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -316788,32 +318895,32 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [128884] = 12, + [128727] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6908), 1, + ACTIONS(6905), 1, anon_sym_RBRACE, - STATE(3503), 1, + STATE(3500), 1, sym_comment, - STATE(5004), 1, + STATE(5331), 1, sym__property_name, - STATE(5728), 1, + STATE(6260), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316837,104 +318944,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128945] = 24, + [128788] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2834), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6907), 1, + anon_sym_RBRACE, + STATE(3501), 1, + sym_comment, + STATE(5124), 1, + sym__property_name, + STATE(5745), 1, + sym_enum_assignment, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2907), 23, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2836), 1, - anon_sym_import, - ACTIONS(2838), 1, - anon_sym_var, - ACTIONS(2840), 1, anon_sym_let, - ACTIONS(2842), 1, - anon_sym_const, - ACTIONS(2846), 1, - anon_sym_class, - ACTIONS(2848), 1, anon_sym_async, - ACTIONS(2850), 1, - anon_sym_function, - ACTIONS(2852), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2856), 1, - anon_sym_abstract, - ACTIONS(2858), 1, - anon_sym_interface, - ACTIONS(2860), 1, - anon_sym_enum, - ACTIONS(2928), 1, - anon_sym_type, - ACTIONS(2930), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(2932), 1, - anon_sym_global, - STATE(1221), 1, - sym_internal_module, - STATE(1261), 1, - sym_declaration, - STATE(3504), 1, - sym_comment, - STATE(4937), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, - STATE(1216), 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, - [129030] = 17, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128849] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(4402), 1, + ACTIONS(2909), 1, + anon_sym_async, + ACTIONS(2911), 1, + anon_sym_readonly, + ACTIONS(2915), 1, anon_sym_override, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6086), 1, + ACTIONS(6094), 1, anon_sym_STAR, - ACTIONS(6088), 1, - anon_sym_async, - ACTIONS(6090), 1, - anon_sym_readonly, - ACTIONS(6910), 1, + ACTIONS(6909), 1, anon_sym_static, - STATE(3505), 1, + STATE(3502), 1, sym_comment, - STATE(3529), 1, + STATE(3519), 1, sym_override_modifier, - STATE(3903), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6092), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 17, + ACTIONS(2907), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316952,54 +319047,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129101] = 24, + [128920] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2872), 1, + ACTIONS(2799), 1, anon_sym_namespace, - ACTIONS(2874), 1, + ACTIONS(2801), 1, anon_sym_import, - ACTIONS(2876), 1, + ACTIONS(2803), 1, anon_sym_var, - ACTIONS(2878), 1, + ACTIONS(2805), 1, anon_sym_let, - ACTIONS(2880), 1, + ACTIONS(2807), 1, anon_sym_const, - ACTIONS(2884), 1, + ACTIONS(2811), 1, anon_sym_class, - ACTIONS(2886), 1, + ACTIONS(2813), 1, anon_sym_async, - ACTIONS(2888), 1, + ACTIONS(2815), 1, anon_sym_function, - ACTIONS(2890), 1, + ACTIONS(2817), 1, anon_sym_declare, - ACTIONS(2892), 1, - anon_sym_module, - ACTIONS(2894), 1, + ACTIONS(2821), 1, anon_sym_abstract, - ACTIONS(2896), 1, + ACTIONS(2823), 1, anon_sym_interface, - ACTIONS(2898), 1, + ACTIONS(2825), 1, anon_sym_enum, - ACTIONS(2916), 1, + ACTIONS(2923), 1, anon_sym_type, - ACTIONS(6912), 1, - anon_sym_default, - STATE(3506), 1, + ACTIONS(2925), 1, + anon_sym_module, + ACTIONS(2927), 1, + anon_sym_global, + STATE(1185), 1, + sym_internal_module, + STATE(1197), 1, + sym_declaration, + STATE(3503), 1, sym_comment, - STATE(5301), 1, + STATE(4857), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(6809), 1, - sym_declaration, - STATE(6916), 1, - sym_internal_module, - STATE(6924), 13, + STATE(1189), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -317013,32 +319108,32 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [129186] = 12, + [129005] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6914), 1, + ACTIONS(6911), 1, anon_sym_RBRACE, - STATE(3507), 1, + STATE(3504), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317062,32 +319157,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129247] = 12, + [129066] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6916), 1, + ACTIONS(6913), 1, anon_sym_RBRACE, - STATE(3508), 1, + STATE(3505), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317111,32 +319206,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129308] = 12, + [129127] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6918), 1, + ACTIONS(6915), 1, anon_sym_RBRACE, - STATE(3509), 1, + STATE(3506), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317160,32 +319255,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129369] = 12, + [129188] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6920), 1, + ACTIONS(6917), 1, anon_sym_RBRACE, - STATE(3510), 1, + STATE(3507), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317209,54 +319304,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129430] = 24, + [129249] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(2758), 1, + ACTIONS(2879), 1, anon_sym_namespace, - ACTIONS(2760), 1, + ACTIONS(2881), 1, anon_sym_import, - ACTIONS(2762), 1, + ACTIONS(2883), 1, anon_sym_var, - ACTIONS(2764), 1, + ACTIONS(2885), 1, anon_sym_let, - ACTIONS(2766), 1, + ACTIONS(2887), 1, anon_sym_const, - ACTIONS(2770), 1, + ACTIONS(2891), 1, anon_sym_class, - ACTIONS(2772), 1, + ACTIONS(2893), 1, anon_sym_async, - ACTIONS(2774), 1, + ACTIONS(2895), 1, anon_sym_function, - ACTIONS(2776), 1, + ACTIONS(2897), 1, anon_sym_declare, - ACTIONS(2778), 1, + ACTIONS(2899), 1, anon_sym_module, - ACTIONS(2780), 1, + ACTIONS(2901), 1, anon_sym_abstract, - ACTIONS(2782), 1, + ACTIONS(2903), 1, anon_sym_interface, - ACTIONS(2784), 1, + ACTIONS(2905), 1, anon_sym_enum, - ACTIONS(2922), 1, + ACTIONS(2917), 1, anon_sym_type, - ACTIONS(6922), 1, + ACTIONS(6919), 1, anon_sym_default, - STATE(1342), 1, - sym_internal_module, - STATE(1354), 1, + STATE(1204), 1, sym_declaration, - STATE(3511), 1, + STATE(1333), 1, + sym_internal_module, + STATE(3508), 1, sym_comment, - STATE(4973), 1, + STATE(4979), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(1340), 13, + STATE(1361), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -317270,54 +319365,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [129515] = 24, + [129334] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2663), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2761), 1, anon_sym_namespace, - ACTIONS(2669), 1, + ACTIONS(2763), 1, anon_sym_import, - ACTIONS(2671), 1, + ACTIONS(2765), 1, anon_sym_var, - ACTIONS(2673), 1, + ACTIONS(2767), 1, anon_sym_let, - ACTIONS(2675), 1, + ACTIONS(2769), 1, anon_sym_const, - ACTIONS(2683), 1, + ACTIONS(2773), 1, anon_sym_class, - ACTIONS(2685), 1, + ACTIONS(2775), 1, anon_sym_async, - ACTIONS(2687), 1, + ACTIONS(2777), 1, anon_sym_function, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2779), 1, anon_sym_declare, - ACTIONS(2702), 1, - anon_sym_module, - ACTIONS(2704), 1, + ACTIONS(2783), 1, anon_sym_abstract, - ACTIONS(2706), 1, + ACTIONS(2785), 1, anon_sym_interface, - ACTIONS(2708), 1, + ACTIONS(2787), 1, anon_sym_enum, - ACTIONS(2738), 1, + ACTIONS(2935), 1, anon_sym_type, - ACTIONS(6924), 1, - anon_sym_default, - STATE(1482), 1, - sym_internal_module, - STATE(1552), 1, - sym_declaration, - STATE(3512), 1, + ACTIONS(2937), 1, + anon_sym_module, + ACTIONS(2939), 1, + anon_sym_global, + STATE(3509), 1, sym_comment, - STATE(4924), 1, + STATE(5015), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - STATE(1527), 13, + STATE(6634), 1, + sym_internal_module, + STATE(6648), 1, + sym_declaration, + STATE(6630), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -317331,32 +319426,32 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [129600] = 12, + [129419] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6926), 1, + ACTIONS(6921), 1, anon_sym_RBRACE, - STATE(3513), 1, + STATE(3510), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317380,32 +319475,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129661] = 12, + [129480] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6928), 1, + ACTIONS(6923), 1, anon_sym_RBRACE, - STATE(3514), 1, + STATE(3511), 1, sym_comment, - STATE(5418), 1, + STATE(5482), 1, sym__property_name, - STATE(6747), 1, + STATE(6582), 1, sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317429,105 +319524,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129722] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2796), 1, - anon_sym_namespace, - ACTIONS(2798), 1, - anon_sym_import, - ACTIONS(2800), 1, - anon_sym_var, - ACTIONS(2802), 1, - anon_sym_let, - ACTIONS(2804), 1, - anon_sym_const, - ACTIONS(2808), 1, - anon_sym_class, - ACTIONS(2810), 1, - anon_sym_async, - ACTIONS(2812), 1, - anon_sym_function, - ACTIONS(2814), 1, - anon_sym_declare, - ACTIONS(2818), 1, - anon_sym_abstract, - ACTIONS(2820), 1, - anon_sym_interface, - ACTIONS(2822), 1, - anon_sym_enum, - ACTIONS(2910), 1, - anon_sym_type, - ACTIONS(2912), 1, - anon_sym_module, - ACTIONS(2914), 1, - anon_sym_global, - STATE(1087), 1, - sym_declaration, - STATE(1154), 1, - sym_internal_module, - STATE(3515), 1, - sym_comment, - STATE(5013), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, - STATE(1157), 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, - [129807] = 14, + [129541] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6797), 1, - anon_sym_STAR, - ACTIONS(6809), 1, - anon_sym_async, - ACTIONS(6930), 1, - anon_sym_readonly, - STATE(3516), 1, + ACTIONS(6925), 1, + anon_sym_RBRACE, + STATE(3512), 1, sym_comment, - STATE(4811), 1, + STATE(5482), 1, sym__property_name, - ACTIONS(2734), 2, + STATE(6582), 1, + sym_enum_assignment, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6799), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 19, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317540,44 +319573,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129871] = 14, + [129602] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6086), 1, - anon_sym_STAR, - ACTIONS(6088), 1, - anon_sym_async, - ACTIONS(6090), 1, - anon_sym_readonly, - STATE(3517), 1, + ACTIONS(6927), 1, + anon_sym_RBRACE, + STATE(3513), 1, sym_comment, - STATE(3903), 1, + STATE(5482), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6582), 1, + sym_enum_assignment, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6092), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317590,44 +319622,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129935] = 14, + [129663] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6289), 1, - anon_sym_STAR, - ACTIONS(6291), 1, - anon_sym_async, - ACTIONS(6932), 1, - anon_sym_readonly, - STATE(3518), 1, + ACTIONS(6929), 1, + anon_sym_RBRACE, + STATE(3514), 1, sym_comment, - STATE(3832), 1, + STATE(5482), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6582), 1, + sym_enum_assignment, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6293), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317640,33 +319671,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129999] = 12, + [129724] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4409), 1, + anon_sym_override, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6934), 1, - anon_sym_STAR, - STATE(3519), 1, + ACTIONS(6931), 1, + anon_sym_static, + ACTIONS(6933), 1, + anon_sym_readonly, + ACTIONS(6935), 1, + anon_sym_abstract, + STATE(3515), 1, sym_comment, - STATE(4694), 1, + STATE(3542), 1, + sym_override_modifier, + STATE(4111), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6936), 2, - anon_sym_get, - anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 21, + ACTIONS(4385), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317674,13 +319710,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, @@ -317688,44 +319723,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130059] = 14, + [129791] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2670), 1, + anon_sym_namespace, + ACTIONS(2676), 1, + anon_sym_import, + ACTIONS(2678), 1, + anon_sym_var, + ACTIONS(2680), 1, + anon_sym_let, + ACTIONS(2682), 1, + anon_sym_const, + ACTIONS(2690), 1, + anon_sym_class, + ACTIONS(2692), 1, + anon_sym_async, + ACTIONS(2694), 1, + anon_sym_function, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(2707), 1, + anon_sym_declare, + ACTIONS(2709), 1, + anon_sym_module, + ACTIONS(2711), 1, + anon_sym_abstract, + ACTIONS(2713), 1, + anon_sym_interface, + ACTIONS(2715), 1, + anon_sym_enum, + ACTIONS(2745), 1, + anon_sym_type, + ACTIONS(6937), 1, + anon_sym_default, + STATE(1481), 1, + sym_internal_module, + STATE(1525), 1, + sym_declaration, + STATE(3516), 1, + sym_comment, + STATE(4860), 1, + aux_sym_export_statement_repeat1, + STATE(5640), 1, + sym_decorator, + STATE(1478), 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, + [129876] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6096), 1, - anon_sym_STAR, - ACTIONS(6098), 1, - anon_sym_async, - ACTIONS(6938), 1, - anon_sym_readonly, - STATE(3520), 1, + ACTIONS(6939), 1, + anon_sym_RBRACE, + STATE(3517), 1, sym_comment, - STATE(3803), 1, + STATE(5482), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6582), 1, + sym_enum_assignment, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6100), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317738,37 +319833,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130123] = 14, + [129937] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6030), 1, + ACTIONS(6149), 1, anon_sym_STAR, - ACTIONS(6032), 1, + ACTIONS(6151), 1, anon_sym_async, - ACTIONS(6940), 1, + ACTIONS(6941), 1, anon_sym_readonly, - STATE(3521), 1, + STATE(3518), 1, sym_comment, - STATE(3797), 1, + STATE(3812), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6034), 2, + ACTIONS(6155), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317788,37 +319883,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130187] = 14, + [130001] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6112), 1, + ACTIONS(6749), 1, anon_sym_STAR, - ACTIONS(6114), 1, + ACTIONS(6751), 1, anon_sym_async, - ACTIONS(6120), 1, + ACTIONS(6753), 1, anon_sym_readonly, - STATE(3522), 1, + STATE(3519), 1, sym_comment, - STATE(3822), 1, + STATE(4721), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6116), 2, + ACTIONS(6755), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(2907), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317838,37 +319933,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130251] = 14, + [130065] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, + ACTIONS(2909), 1, anon_sym_async, - ACTIONS(2904), 1, + ACTIONS(2911), 1, anon_sym_readonly, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_STAR, - STATE(3523), 1, + STATE(3520), 1, sym_comment, - STATE(4640), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(2913), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 19, + ACTIONS(2907), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317888,37 +319983,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130315] = 14, + [130129] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6301), 1, + ACTIONS(6050), 1, anon_sym_STAR, - ACTIONS(6309), 1, + ACTIONS(6052), 1, anon_sym_async, - ACTIONS(6942), 1, + ACTIONS(6943), 1, anon_sym_readonly, - STATE(3524), 1, + STATE(3521), 1, sym_comment, - STATE(3837), 1, + STATE(3809), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6311), 2, + ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317938,37 +320033,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130379] = 14, + [130193] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5522), 1, + ACTIONS(6818), 1, anon_sym_STAR, - ACTIONS(5526), 1, + ACTIONS(6820), 1, anon_sym_async, - ACTIONS(5528), 1, + ACTIONS(6945), 1, anon_sym_readonly, - STATE(3525), 1, + STATE(3522), 1, sym_comment, - STATE(3809), 1, + STATE(4846), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(5530), 2, + ACTIONS(6822), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(2907), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317988,33 +320083,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130443] = 12, + [130257] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6886), 1, + ACTIONS(6947), 1, anon_sym_STAR, - STATE(3526), 1, + STATE(3523), 1, sym_comment, - STATE(4791), 1, + STATE(4778), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(6944), 2, + ACTIONS(6949), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 21, + ACTIONS(2907), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318036,41 +320131,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130503] = 11, + [130317] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3527), 1, + ACTIONS(6498), 1, + anon_sym_STAR, + ACTIONS(6500), 1, + anon_sym_async, + ACTIONS(6951), 1, + anon_sym_readonly, + STATE(3524), 1, sym_comment, - STATE(5418), 1, + STATE(3830), 1, sym__property_name, - STATE(6747), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(6502), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318083,37 +320181,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130561] = 14, + [130381] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6273), 1, + ACTIONS(6082), 1, anon_sym_STAR, - ACTIONS(6275), 1, + ACTIONS(6084), 1, anon_sym_async, - ACTIONS(6946), 1, + ACTIONS(6086), 1, anon_sym_readonly, - STATE(3528), 1, + STATE(3525), 1, sym_comment, - STATE(3817), 1, + STATE(3895), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6277), 2, + ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318133,37 +320231,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130625] = 14, + [130445] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6016), 1, + ACTIONS(6297), 1, anon_sym_STAR, - ACTIONS(6018), 1, + ACTIONS(6299), 1, anon_sym_async, - ACTIONS(6020), 1, + ACTIONS(6953), 1, anon_sym_readonly, - STATE(3529), 1, + STATE(3526), 1, sym_comment, - STATE(3870), 1, + STATE(3802), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6022), 2, + ACTIONS(6301), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318183,35 +320281,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130689] = 5, + [130509] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3530), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6050), 1, + anon_sym_STAR, + ACTIONS(6052), 1, + anon_sym_async, + ACTIONS(6955), 1, + anon_sym_readonly, + STATE(3527), 1, sym_comment, - ACTIONS(1041), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2409), 29, + STATE(3800), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4385), 19, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -318224,44 +320331,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130735] = 14, + [130573] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6323), 1, - anon_sym_STAR, - ACTIONS(6325), 1, - anon_sym_async, - ACTIONS(6948), 1, - anon_sym_readonly, - STATE(3531), 1, + STATE(3528), 1, sym_comment, - STATE(3864), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6327), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(1042), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -318274,37 +320372,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130799] = 14, + [130619] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6030), 1, + ACTIONS(6192), 1, anon_sym_STAR, - ACTIONS(6032), 1, + ACTIONS(6194), 1, anon_sym_async, - ACTIONS(6950), 1, + ACTIONS(6196), 1, anon_sym_readonly, - STATE(3532), 1, + STATE(3529), 1, sym_comment, - STATE(3820), 1, + STATE(3853), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6034), 2, + ACTIONS(6198), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318324,37 +320422,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130863] = 14, + [130683] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6775), 1, + ACTIONS(6364), 1, anon_sym_STAR, - ACTIONS(6777), 1, + ACTIONS(6366), 1, anon_sym_async, - ACTIONS(6779), 1, + ACTIONS(6957), 1, anon_sym_readonly, - STATE(3533), 1, + STATE(3530), 1, sym_comment, - STATE(4794), 1, + STATE(3908), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(6781), 2, + ACTIONS(6368), 2, anon_sym_get, anon_sym_set, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 19, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318374,44 +320472,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130927] = 14, + [130747] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5989), 1, - anon_sym_STAR, - ACTIONS(5991), 1, - anon_sym_async, - ACTIONS(5993), 1, - anon_sym_readonly, - STATE(3534), 1, + STATE(3531), 1, sym_comment, - STATE(3853), 1, + STATE(5482), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6582), 1, + sym_enum_assignment, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - ACTIONS(5995), 2, - anon_sym_get, - anon_sym_set, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318424,37 +320519,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130991] = 14, + [130805] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5007), 1, + ACTIONS(4959), 1, anon_sym_STAR, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(5019), 1, + ACTIONS(4971), 1, anon_sym_async, - ACTIONS(5021), 1, + ACTIONS(4973), 1, anon_sym_readonly, - STATE(3535), 1, + STATE(3532), 1, sym_comment, - STATE(3907), 1, + STATE(3892), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - ACTIONS(5023), 2, + ACTIONS(4975), 2, anon_sym_get, anon_sym_set, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 19, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318474,40 +320569,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131055] = 11, + [130869] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6673), 1, + ACTIONS(6137), 1, + anon_sym_STAR, + ACTIONS(6139), 1, + anon_sym_async, + ACTIONS(6141), 1, anon_sym_readonly, - STATE(3536), 1, + STATE(3533), 1, sym_comment, - STATE(4209), 1, + STATE(3833), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + ACTIONS(6143), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318520,71 +320619,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131112] = 4, + [130933] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3537), 1, - sym_comment, - ACTIONS(4331), 31, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1901), 1, anon_sym_DQUOTE, + ACTIONS(1903), 1, anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6872), 1, + anon_sym_STAR, + STATE(3534), 1, + sym_comment, + STATE(4796), 1, + sym__property_name, + ACTIONS(2741), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6959), 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_abstract, - [131155] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3538), 1, - sym_comment, - ACTIONS(4356), 31, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2907), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -318597,40 +320667,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [131198] = 10, + [130993] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3539), 1, + ACTIONS(6200), 1, + anon_sym_STAR, + ACTIONS(6202), 1, + anon_sym_async, + ACTIONS(6204), 1, + anon_sym_readonly, + STATE(3535), 1, sym_comment, - STATE(4640), 1, + STATE(3867), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(6206), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318643,39 +320717,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131253] = 10, + [131057] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(5561), 1, + anon_sym_STAR, + ACTIONS(5565), 1, + anon_sym_async, + ACTIONS(5567), 1, + anon_sym_readonly, + STATE(3536), 1, sym_comment, - STATE(4301), 1, + STATE(3827), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + ACTIONS(5569), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 23, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318688,39 +320767,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131308] = 10, + [131121] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3541), 1, + ACTIONS(6317), 1, + anon_sym_STAR, + ACTIONS(6321), 1, + anon_sym_async, + ACTIONS(6961), 1, + anon_sym_readonly, + STATE(3537), 1, sym_comment, - STATE(4654), 1, + STATE(3889), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + ACTIONS(6323), 2, + anon_sym_get, + anon_sym_set, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318733,73 +320817,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131363] = 10, + [131185] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3542), 1, + STATE(3538), 1, sym_comment, - STATE(4738), 1, + STATE(4831), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [131418] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3543), 1, - sym_comment, - ACTIONS(4348), 31, + ACTIONS(2907), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -318816,29 +320862,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [131461] = 10, + [131240] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3544), 1, + STATE(3539), 1, sym_comment, - STATE(4694), 1, + STATE(4684), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318862,30 +320907,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131516] = 11, + [131295] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6952), 1, - anon_sym_readonly, - STATE(3545), 1, + STATE(3540), 1, sym_comment, - STATE(4238), 1, + STATE(4815), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318894,6 +320937,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, @@ -318908,28 +320952,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131573] = 10, + [131350] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3546), 1, + STATE(3541), 1, sym_comment, - STATE(4724), 1, + STATE(4689), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318953,75 +320997,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131628] = 10, + [131405] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(6963), 1, + anon_sym_readonly, + STATE(3542), 1, sym_comment, - STATE(4677), 1, + STATE(4283), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [131683] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3548), 1, - sym_comment, - ACTIONS(4358), 31, + ACTIONS(4385), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -319036,29 +321043,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [131726] = 10, + [131462] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3549), 1, + STATE(3543), 1, sym_comment, - STATE(4686), 1, + STATE(4836), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319082,28 +321088,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131781] = 10, + [131517] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3550), 1, + STATE(3544), 1, sym_comment, - STATE(4672), 1, + STATE(4680), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319127,28 +321133,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131836] = 10, + [131572] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3551), 1, + STATE(3545), 1, sym_comment, - STATE(4661), 1, + STATE(4750), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319172,28 +321178,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131891] = 10, + [131627] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3552), 1, + STATE(3546), 1, sym_comment, - STATE(4625), 1, + STATE(4635), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319217,28 +321223,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131946] = 10, + [131682] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3553), 1, + ACTIONS(6965), 1, + anon_sym_readonly, + STATE(3547), 1, sym_comment, - STATE(4660), 1, + STATE(4275), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319247,7 +321255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -319262,28 +321269,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132001] = 10, + [131739] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3554), 1, + ACTIONS(6967), 1, + anon_sym_readonly, + STATE(3548), 1, sym_comment, - STATE(4649), 1, + STATE(4171), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319292,7 +321301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -319307,28 +321315,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132056] = 10, + [131796] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3555), 1, + STATE(3549), 1, sym_comment, - STATE(4131), 1, + STATE(4812), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319352,28 +321360,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132111] = 10, + [131851] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3556), 1, + STATE(3550), 1, sym_comment, - STATE(4646), 1, + STATE(4670), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319397,28 +321405,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132166] = 10, + [131906] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3557), 1, + STATE(3551), 1, sym_comment, - STATE(4833), 1, + STATE(4620), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319442,28 +321450,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132221] = 10, + [131961] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3558), 1, + ACTIONS(6969), 1, + anon_sym_readonly, + STATE(3552), 1, sym_comment, - STATE(4172), 1, + STATE(4187), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 23, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319472,7 +321482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -319487,28 +321496,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132276] = 10, + [132018] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3559), 1, + STATE(3553), 1, sym_comment, - STATE(4836), 1, + STATE(4626), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319532,35 +321541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132331] = 10, + [132073] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3560), 1, + STATE(3554), 1, sym_comment, - STATE(4841), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4315), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -319577,28 +321579,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132386] = 10, + anon_sym_abstract, + [132116] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3561), 1, + STATE(3555), 1, sym_comment, - STATE(4838), 1, + STATE(4788), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319622,28 +321625,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132441] = 10, + [132171] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3562), 1, + STATE(3556), 1, sym_comment, - STATE(4842), 1, + STATE(4732), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319667,73 +321670,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132496] = 10, + [132226] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3563), 1, + STATE(3557), 1, sym_comment, - STATE(4824), 1, + STATE(4823), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [132551] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3564), 1, - sym_comment, - ACTIONS(4329), 31, + ACTIONS(2907), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -319750,29 +321715,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [132594] = 10, + [132281] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3565), 1, + ACTIONS(6971), 1, + anon_sym_readonly, + STATE(3558), 1, sym_comment, - STATE(4617), 1, + STATE(4124), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319781,7 +321747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -319796,28 +321761,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132649] = 10, + [132338] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3566), 1, + STATE(3559), 1, sym_comment, - STATE(4645), 1, + STATE(4828), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319841,30 +321806,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132704] = 11, + [132393] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6675), 1, + ACTIONS(6973), 1, anon_sym_readonly, - STATE(3567), 1, + STATE(3560), 1, sym_comment, - STATE(4172), 1, + STATE(4155), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319887,28 +321852,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132761] = 10, + [132450] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3568), 1, + STATE(3561), 1, sym_comment, - STATE(4774), 1, + STATE(4204), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319932,30 +321897,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132816] = 11, + [132505] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6954), 1, + ACTIONS(6975), 1, anon_sym_readonly, - STATE(3569), 1, + STATE(3562), 1, sym_comment, - STATE(4123), 1, + STATE(4204), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319978,28 +321943,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132873] = 10, + [132562] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3570), 1, + STATE(3563), 1, sym_comment, - STATE(4794), 1, + STATE(4674), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320023,28 +321988,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132928] = 10, + [132617] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3571), 1, + STATE(3564), 1, sym_comment, - STATE(4708), 1, + STATE(4623), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320068,30 +322033,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132983] = 11, + [132672] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6956), 1, - anon_sym_readonly, - STATE(3572), 1, + STATE(3565), 1, sym_comment, - STATE(4121), 1, + STATE(4285), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320100,6 +322063,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, @@ -320114,30 +322078,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133040] = 11, + [132727] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6958), 1, - anon_sym_readonly, - STATE(3573), 1, + STATE(3566), 1, sym_comment, - STATE(4145), 1, + STATE(4721), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320146,6 +322108,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, @@ -320160,28 +322123,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133097] = 10, + [132782] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3574), 1, + ACTIONS(6646), 1, + anon_sym_readonly, + STATE(3567), 1, sym_comment, - STATE(4843), 1, + STATE(4082), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320190,7 +322155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -320205,38 +322169,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133152] = 11, + [132839] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(6960), 1, - anon_sym_readonly, - STATE(3575), 1, + STATE(3568), 1, sym_comment, - STATE(4146), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(4004), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4313), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -320251,35 +322207,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133209] = 10, + anon_sym_abstract, + [132882] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5446), 1, - anon_sym_LBRACK, - STATE(3576), 1, + STATE(3569), 1, sym_comment, - STATE(4629), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4548), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4132), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -320296,28 +322246,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133264] = 10, + anon_sym_abstract, + [132925] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3577), 1, + STATE(3570), 1, sym_comment, - STATE(4618), 1, + STATE(4082), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320341,28 +322292,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133319] = 4, + [132980] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3578), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3571), 1, sym_comment, - ACTIONS(4218), 31, + STATE(4796), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2907), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -320379,29 +322337,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [133362] = 10, + [133035] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3579), 1, + ACTIONS(6678), 1, + anon_sym_readonly, + STATE(3572), 1, sym_comment, - STATE(4747), 1, + STATE(4225), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320410,7 +322369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -320425,30 +322383,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133417] = 11, + [133092] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6962), 1, - anon_sym_readonly, - STATE(3580), 1, + STATE(3573), 1, sym_comment, - STATE(4297), 1, + STATE(4225), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320457,6 +322413,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, @@ -320471,28 +322428,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133474] = 10, + [133147] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3581), 1, + STATE(3574), 1, sym_comment, - STATE(4791), 1, + STATE(4738), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320516,30 +322473,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133529] = 11, + [133202] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6964), 1, - anon_sym_readonly, - STATE(3582), 1, + STATE(3575), 1, sym_comment, - STATE(4182), 1, + STATE(4841), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320548,6 +322503,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, @@ -320562,30 +322518,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133586] = 11, + [133257] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6966), 1, - anon_sym_readonly, - STATE(3583), 1, + STATE(3576), 1, sym_comment, - STATE(4274), 1, + STATE(4154), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320594,6 +322548,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, @@ -320608,28 +322563,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133643] = 10, + [133312] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(3577), 1, sym_comment, - STATE(4209), 1, + STATE(4778), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320653,28 +322608,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133698] = 10, + [133367] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3585), 1, + STATE(3578), 1, sym_comment, - STATE(4801), 1, + STATE(4627), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320698,30 +322653,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133753] = 11, + [133422] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6968), 1, - anon_sym_readonly, - STATE(3586), 1, + STATE(3579), 1, sym_comment, - STATE(4108), 1, + STATE(4743), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320730,6 +322683,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, @@ -320744,30 +322698,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133810] = 11, + [133477] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6970), 1, - anon_sym_readonly, - STATE(3587), 1, + STATE(3580), 1, sym_comment, - STATE(4184), 1, + STATE(4621), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320776,6 +322728,45 @@ 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, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133532] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3581), 1, + sym_comment, + ACTIONS(4311), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, @@ -320790,28 +322781,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133867] = 10, + anon_sym_abstract, + [133575] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3588), 1, + STATE(3582), 1, sym_comment, - STATE(4185), 1, + STATE(4741), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320835,35 +322827,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133922] = 10, + [133630] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3589), 1, + STATE(3583), 1, sym_comment, - STATE(4811), 1, + STATE(4251), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133685] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3584), 1, + sym_comment, + ACTIONS(4327), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -320880,30 +322910,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133977] = 11, + anon_sym_abstract, + [133728] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, + ACTIONS(6977), 1, anon_sym_readonly, - STATE(3590), 1, + STATE(3585), 1, sym_comment, - STATE(4200), 1, + STATE(4250), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320926,28 +322957,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134034] = 10, + [133785] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - STATE(3591), 1, + STATE(3586), 1, sym_comment, - STATE(4201), 1, + STATE(4098), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 23, + ACTIONS(4385), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320971,28 +323002,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134089] = 10, + [133840] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3592), 1, + STATE(3587), 1, sym_comment, - STATE(4644), 1, + STATE(4846), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321016,30 +323047,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134144] = 11, + [133895] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(4969), 1, anon_sym_LBRACK, - ACTIONS(6974), 1, + ACTIONS(6979), 1, anon_sym_readonly, - STATE(3593), 1, + STATE(3588), 1, sym_comment, - STATE(4153), 1, + STATE(4105), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(3905), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4000), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 22, + ACTIONS(4385), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321062,28 +323093,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134201] = 4, + [133952] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3594), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6981), 1, + anon_sym_readonly, + STATE(3589), 1, sym_comment, - ACTIONS(4354), 31, + STATE(4252), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4385), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, + 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, + [134009] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, anon_sym_DQUOTE, + ACTIONS(1971), 1, anon_sym_SQUOTE, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6983), 1, + anon_sym_readonly, + STATE(3590), 1, + sym_comment, + STATE(4118), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4385), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134066] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3591), 1, + sym_comment, + STATE(4624), 1, + sym__property_name, + ACTIONS(2741), 2, sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2907), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134121] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4969), 1, + anon_sym_LBRACK, + STATE(3592), 1, + sym_comment, + STATE(4077), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4385), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -321100,29 +323275,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [134244] = 10, + [134176] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3595), 1, + STATE(3593), 1, sym_comment, - STATE(4182), 1, + STATE(4625), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321146,28 +323320,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134299] = 10, + [134231] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3596), 1, + STATE(3594), 1, sym_comment, - STATE(4725), 1, + STATE(4757), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4548), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321191,28 +323365,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134354] = 10, + [134286] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + STATE(3595), 1, + sym_comment, + ACTIONS(4331), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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_abstract, + [134329] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(4969), 1, + anon_sym_LBRACK, + ACTIONS(6985), 1, + anon_sym_readonly, + STATE(3596), 1, + sym_comment, + STATE(4079), 1, + sym__property_name, + ACTIONS(3905), 2, + sym_number, + sym_private_property_identifier, + STATE(4000), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4385), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134386] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(5017), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3597), 1, sym_comment, - STATE(4163), 1, + STATE(4832), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2741), 2, sym_number, sym_private_property_identifier, - STATE(4004), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4378), 23, + ACTIONS(2907), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321236,18 +323495,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134409] = 6, + [134441] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6976), 1, - sym_identifier, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, STATE(3598), 1, sym_comment, - STATE(7481), 1, + STATE(4837), 1, + sym__property_name, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2907), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134496] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3599), 1, + sym_comment, + ACTIONS(4335), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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_abstract, + [134539] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6987), 1, + sym_identifier, + STATE(3600), 1, + sym_comment, + STATE(7070), 1, sym_mapped_type_clause, - ACTIONS(6978), 22, + ACTIONS(6989), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321270,17 +323613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134449] = 5, + [134579] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3599), 1, + STATE(3601), 1, sym_comment, - ACTIONS(4329), 2, + ACTIONS(4315), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4849), 19, + ACTIONS(4876), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -321300,18 +323643,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [134484] = 5, + [134614] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3600), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4186), 1, + anon_sym_QMARK_DOT, + ACTIONS(6991), 1, + anon_sym_LT, + STATE(3602), 1, sym_comment, - ACTIONS(4356), 2, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + ACTIONS(4180), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4841), 19, - anon_sym_export, + ACTIONS(4176), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321321,38 +323675,33 @@ 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, - [134519] = 11, + [134661] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(6980), 1, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(6993), 1, anon_sym_DOT, - ACTIONS(6982), 1, + ACTIONS(6995), 1, anon_sym_QMARK_DOT, - ACTIONS(6984), 1, - anon_sym_LT, - STATE(3601), 1, + STATE(3603), 1, sym_comment, - STATE(3675), 1, + STATE(3663), 1, sym_arguments, - STATE(3710), 1, + STATE(3685), 1, sym_type_arguments, - ACTIONS(4799), 2, + ACTIONS(4800), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4801), 13, + ACTIONS(4802), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321366,29 +323715,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134566] = 11, + [134708] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(6991), 1, anon_sym_LT, - ACTIONS(6986), 1, + ACTIONS(6997), 1, anon_sym_DOT, - ACTIONS(6988), 1, + ACTIONS(6999), 1, anon_sym_QMARK_DOT, - STATE(3602), 1, + STATE(3604), 1, sym_comment, - STATE(3653), 1, + STATE(3667), 1, sym_arguments, - STATE(3712), 1, + STATE(3767), 1, sym_type_arguments, - ACTIONS(4805), 2, + ACTIONS(4842), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4807), 13, + ACTIONS(4844), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321402,29 +323751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134613] = 11, + [134755] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(4177), 1, - anon_sym_DOT, - ACTIONS(4179), 1, - anon_sym_QMARK_DOT, - ACTIONS(6984), 1, - anon_sym_LT, - STATE(3603), 1, + STATE(3605), 1, sym_comment, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, - ACTIONS(4167), 2, + ACTIONS(4335), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4157), 13, + ACTIONS(4848), 19, + anon_sym_export, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321434,21 +323772,26 @@ 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, - [134660] = 5, + [134790] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3604), 1, + STATE(3606), 1, sym_comment, - ACTIONS(4348), 2, + ACTIONS(4331), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4875), 19, + ACTIONS(4856), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -321468,16 +323811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [134695] = 5, + [134825] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2205), 1, + ACTIONS(2198), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3605), 1, + STATE(3607), 1, sym_comment, - ACTIONS(2207), 19, + ACTIONS(2200), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321497,16 +323840,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [134729] = 5, + [134859] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2249), 1, + ACTIONS(2170), 1, anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3606), 1, + STATE(3608), 1, sym_comment, - ACTIONS(2251), 19, + ACTIONS(2172), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321526,17 +323869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [134763] = 5, + [134893] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3607), 1, + STATE(3609), 1, sym_comment, - ACTIONS(5174), 2, + ACTIONS(5349), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5176), 17, + ACTIONS(5351), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321554,17 +323897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134796] = 5, + [134926] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3608), 1, + STATE(3610), 1, sym_comment, - ACTIONS(5113), 2, + ACTIONS(5162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5115), 17, + ACTIONS(5164), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321582,17 +323925,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134829] = 5, + [134959] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3609), 1, + STATE(3611), 1, sym_comment, - ACTIONS(5238), 2, + ACTIONS(5136), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5240), 17, + ACTIONS(5138), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321610,17 +323953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134862] = 5, + [134992] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3610), 1, + STATE(3612), 1, sym_comment, - ACTIONS(5174), 2, + ACTIONS(5140), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5176), 17, + ACTIONS(5142), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321638,17 +323981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134895] = 5, + [135025] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3611), 1, + STATE(3613), 1, sym_comment, - ACTIONS(5151), 2, + ACTIONS(5136), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5153), 17, + ACTIONS(5138), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321666,45 +324009,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134928] = 5, + [135058] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3612), 1, - sym_comment, - ACTIONS(5147), 2, + ACTIONS(4810), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5149), 17, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7003), 1, + anon_sym_is, + STATE(3614), 1, + sym_comment, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4229), 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, - [134961] = 5, + [135099] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3613), 1, + STATE(3615), 1, sym_comment, - ACTIONS(5220), 2, + ACTIONS(5166), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5222), 17, + ACTIONS(5168), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321722,17 +324069,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134994] = 5, + [135132] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3614), 1, + STATE(3616), 1, sym_comment, - ACTIONS(5186), 2, + ACTIONS(5140), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5188), 17, + ACTIONS(5142), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321750,17 +324097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135027] = 5, + [135165] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3615), 1, + STATE(3617), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5217), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5211), 17, + ACTIONS(5219), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321778,17 +324125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135060] = 5, + [135198] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3616), 1, + STATE(3618), 1, sym_comment, - ACTIONS(5186), 2, + ACTIONS(5104), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5188), 17, + ACTIONS(5106), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321806,17 +324153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135093] = 5, + [135231] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3617), 1, + STATE(3619), 1, sym_comment, - ACTIONS(5213), 2, + ACTIONS(5217), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5215), 17, + ACTIONS(5219), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321834,17 +324181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135126] = 5, + [135264] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3618), 1, + STATE(3620), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5349), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5211), 17, + ACTIONS(5351), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321862,17 +324209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135159] = 5, + [135297] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3619), 1, + STATE(3621), 1, sym_comment, - ACTIONS(5186), 2, + ACTIONS(5217), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5188), 17, + ACTIONS(5219), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321890,17 +324237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135192] = 5, + [135330] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3620), 1, + STATE(3622), 1, sym_comment, - ACTIONS(5220), 2, + ACTIONS(5225), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5222), 17, + ACTIONS(5227), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321918,49 +324265,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135225] = 9, + [135363] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4821), 1, - anon_sym_EQ, - ACTIONS(6984), 1, - anon_sym_LT, - ACTIONS(6990), 1, - anon_sym_DOT, - ACTIONS(6992), 1, - anon_sym_is, - STATE(3621), 1, + STATE(3623), 1, sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4202), 14, + ACTIONS(5128), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5130), 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, - [135266] = 5, + [135396] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3622), 1, + STATE(3624), 1, sym_comment, - ACTIONS(5220), 2, + ACTIONS(5353), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5222), 17, + ACTIONS(5355), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321978,17 +324321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135299] = 5, + [135429] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3623), 1, + STATE(3625), 1, sym_comment, - ACTIONS(5132), 2, + ACTIONS(5120), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5134), 17, + ACTIONS(5122), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322006,17 +324349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135332] = 5, + [135462] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3624), 1, + STATE(3626), 1, sym_comment, - ACTIONS(5174), 2, + ACTIONS(5353), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5176), 17, + ACTIONS(5355), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322034,17 +324377,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135365] = 5, + [135495] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3625), 1, + STATE(3627), 1, sym_comment, - ACTIONS(5113), 2, + ACTIONS(5128), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5115), 17, + ACTIONS(5130), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322062,17 +324405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135398] = 5, + [135528] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3626), 1, + STATE(3628), 1, sym_comment, - ACTIONS(5113), 2, + ACTIONS(5345), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5115), 17, + ACTIONS(5347), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322090,17 +324433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135431] = 5, + [135561] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3627), 1, + STATE(3629), 1, sym_comment, - ACTIONS(5101), 2, + ACTIONS(5284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5103), 17, + ACTIONS(5286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322118,17 +324461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135464] = 5, + [135594] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3628), 1, + STATE(3630), 1, sym_comment, - ACTIONS(5101), 2, + ACTIONS(5284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5103), 17, + ACTIONS(5286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322146,17 +324489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135497] = 5, + [135627] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3629), 1, + STATE(3631), 1, sym_comment, - ACTIONS(5101), 2, + ACTIONS(5284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5103), 17, + ACTIONS(5286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322174,17 +324517,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135530] = 5, + [135660] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3630), 1, + STATE(3632), 1, sym_comment, - ACTIONS(5256), 2, + ACTIONS(5162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5258), 17, + ACTIONS(5164), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322202,17 +324545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135563] = 5, + [135693] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3631), 1, + STATE(3633), 1, sym_comment, - ACTIONS(5302), 2, + ACTIONS(5267), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5304), 17, + ACTIONS(5269), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322230,17 +324573,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135596] = 5, + [135726] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3632), 1, + STATE(3634), 1, sym_comment, - ACTIONS(5256), 2, + ACTIONS(5166), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5258), 17, + ACTIONS(5168), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322258,17 +324601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135629] = 5, + [135759] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3633), 1, + STATE(3635), 1, sym_comment, - ACTIONS(5302), 2, + ACTIONS(5349), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5304), 17, + ACTIONS(5351), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322286,17 +324629,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135662] = 5, + [135792] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3634), 1, + STATE(3636), 1, sym_comment, - ACTIONS(5266), 2, + ACTIONS(5120), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5268), 17, + ACTIONS(5122), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322314,17 +324657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135695] = 5, + [135825] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3635), 1, + STATE(3637), 1, sym_comment, - ACTIONS(5252), 2, + ACTIONS(5267), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5254), 17, + ACTIONS(5269), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322342,17 +324685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135728] = 5, + [135858] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3636), 1, + STATE(3638), 1, sym_comment, - ACTIONS(5097), 2, + ACTIONS(5108), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5099), 17, + ACTIONS(5110), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322370,17 +324713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135761] = 5, + [135891] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3637), 1, + STATE(3639), 1, sym_comment, - ACTIONS(5097), 2, + ACTIONS(5267), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5099), 17, + ACTIONS(5269), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322398,17 +324741,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135794] = 5, + [135924] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3638), 1, + STATE(3640), 1, sym_comment, - ACTIONS(5266), 2, + ACTIONS(5353), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5268), 17, + ACTIONS(5355), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322426,17 +324769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135827] = 5, + [135957] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3639), 1, + STATE(3641), 1, sym_comment, - ACTIONS(5252), 2, + ACTIONS(5221), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5254), 17, + ACTIONS(5223), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322454,17 +324797,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135860] = 5, + [135990] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3640), 1, + STATE(3642), 1, sym_comment, - ACTIONS(5213), 2, + ACTIONS(5225), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5215), 17, + ACTIONS(5227), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322482,17 +324825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135893] = 5, + [136023] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3641), 1, + STATE(3643), 1, sym_comment, - ACTIONS(5097), 2, + ACTIONS(5225), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5099), 17, + ACTIONS(5227), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322510,355 +324853,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135926] = 16, + [136056] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6994), 1, + ACTIONS(7005), 1, sym_identifier, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(6998), 1, + ACTIONS(7009), 1, anon_sym_type, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7002), 1, + ACTIONS(7013), 1, anon_sym_typeof, - STATE(3642), 1, + STATE(3644), 1, sym_comment, - STATE(5486), 1, + STATE(5564), 1, sym_import_require_clause, - STATE(5490), 1, + STATE(5565), 1, sym_string, - STATE(6543), 1, + STATE(6732), 1, sym__import_identifier, - STATE(6968), 1, + STATE(6920), 1, sym_import_clause, - STATE(7318), 2, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7004), 5, + ACTIONS(7015), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [135980] = 16, + [136110] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7006), 1, + ACTIONS(7017), 1, sym_identifier, - ACTIONS(7008), 1, + ACTIONS(7019), 1, anon_sym_type, - ACTIONS(7010), 1, + ACTIONS(7021), 1, anon_sym_typeof, - STATE(3643), 1, + STATE(3645), 1, sym_comment, - STATE(5540), 1, + STATE(5626), 1, sym_import_require_clause, - STATE(5541), 1, + STATE(5629), 1, sym_string, - STATE(6543), 1, + STATE(6732), 1, sym__import_identifier, - STATE(6682), 1, + STATE(6737), 1, sym_import_clause, - STATE(7318), 2, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7004), 5, + ACTIONS(7015), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [136034] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_EQ, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7018), 1, - anon_sym_COMMA, - ACTIONS(7020), 1, - anon_sym_COLON, - ACTIONS(7022), 1, - anon_sym_GT, - ACTIONS(7025), 1, - anon_sym_DOT, - ACTIONS(7027), 1, - anon_sym_SLASH_GT, - ACTIONS(7029), 1, - anon_sym_LT, - ACTIONS(7031), 1, - anon_sym_extends, - STATE(3644), 1, - sym_comment, - STATE(4226), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4227), 1, - sym_type_arguments, - STATE(4734), 1, - sym_jsx_namespace_name, - STATE(5505), 1, - sym_constraint, - STATE(6974), 1, - sym_default_type, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [136094] = 19, + [136164] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, - anon_sym_EQ, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7018), 1, - anon_sym_COMMA, - ACTIONS(7020), 1, - anon_sym_COLON, - ACTIONS(7022), 1, - anon_sym_GT, - ACTIONS(7025), 1, - anon_sym_DOT, - ACTIONS(7029), 1, - anon_sym_LT, - ACTIONS(7031), 1, - anon_sym_extends, - ACTIONS(7033), 1, - anon_sym_SLASH_GT, - STATE(3645), 1, - sym_comment, - STATE(4092), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4093), 1, - sym_type_arguments, - STATE(4734), 1, - sym_jsx_namespace_name, - STATE(5505), 1, - sym_constraint, - STATE(6974), 1, - sym_default_type, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [136154] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7035), 1, + ACTIONS(7023), 1, sym_identifier, - ACTIONS(7037), 1, + ACTIONS(7025), 1, anon_sym_type, - ACTIONS(7039), 1, + ACTIONS(7027), 1, anon_sym_typeof, STATE(3646), 1, sym_comment, - STATE(5441), 1, - sym_string, - STATE(5442), 1, + STATE(5445), 1, sym_import_require_clause, - STATE(6543), 1, - sym__import_identifier, - STATE(6874), 1, + STATE(5446), 1, + sym_string, + STATE(6666), 1, sym_import_clause, - STATE(7318), 2, + STATE(6732), 1, + sym__import_identifier, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7004), 5, + ACTIONS(7015), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [136208] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4821), 1, - anon_sym_EQ, - ACTIONS(6984), 1, - anon_sym_LT, - ACTIONS(6990), 1, - anon_sym_DOT, - STATE(3647), 1, - sym_comment, - STATE(3695), 1, - sym_type_arguments, - ACTIONS(4202), 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, - [136246] = 16, + [136218] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7041), 1, + ACTIONS(7029), 1, sym_identifier, - ACTIONS(7043), 1, + ACTIONS(7031), 1, anon_sym_type, - ACTIONS(7045), 1, + ACTIONS(7033), 1, anon_sym_typeof, - STATE(3648), 1, + STATE(3647), 1, sym_comment, - STATE(5574), 1, + STATE(5578), 1, sym_string, - STATE(5575), 1, + STATE(5579), 1, sym_import_require_clause, - STATE(6543), 1, + STATE(6732), 1, sym__import_identifier, - STATE(6914), 1, + STATE(6918), 1, sym_import_clause, - STATE(7318), 2, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7004), 5, + ACTIONS(7015), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [136300] = 16, + [136272] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7047), 1, + ACTIONS(7035), 1, sym_identifier, - ACTIONS(7049), 1, + ACTIONS(7037), 1, anon_sym_type, - ACTIONS(7051), 1, + ACTIONS(7039), 1, anon_sym_typeof, - STATE(3649), 1, + STATE(3648), 1, sym_comment, - STATE(5553), 1, + STATE(5566), 1, sym_import_require_clause, - STATE(5622), 1, + STATE(5567), 1, sym_string, - STATE(6540), 1, + STATE(6686), 1, sym_import_clause, - STATE(6543), 1, + STATE(6732), 1, sym__import_identifier, - STATE(7318), 2, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7004), 5, + ACTIONS(7015), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [136354] = 11, + [136326] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(4805), 1, - anon_sym_PIPE, - ACTIONS(7053), 1, + ACTIONS(7043), 1, + anon_sym_EQ, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7047), 1, + anon_sym_COMMA, + ACTIONS(7049), 1, + anon_sym_COLON, + ACTIONS(7051), 1, + anon_sym_GT, + ACTIONS(7054), 1, anon_sym_DOT, - ACTIONS(7055), 1, - anon_sym_QMARK_DOT, - ACTIONS(7057), 1, + ACTIONS(7056), 1, + anon_sym_SLASH_GT, + ACTIONS(7058), 1, anon_sym_LT, - STATE(3650), 1, + ACTIONS(7060), 1, + anon_sym_extends, + STATE(3649), 1, sym_comment, - STATE(3852), 1, - sym_arguments, - STATE(4015), 1, + STATE(4186), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4228), 1, sym_type_arguments, - ACTIONS(4807), 10, - sym__automatic_semicolon, + STATE(4691), 1, + sym_jsx_namespace_name, + STATE(5588), 1, + sym_constraint, + STATE(6570), 1, + sym_default_type, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136386] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7043), 1, anon_sym_EQ, + ACTIONS(7045), 1, anon_sym_LBRACE, + ACTIONS(7047), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(7049), 1, + anon_sym_COLON, + ACTIONS(7051), 1, + anon_sym_GT, + ACTIONS(7054), 1, + anon_sym_DOT, + ACTIONS(7058), 1, + anon_sym_LT, + ACTIONS(7060), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [136397] = 5, + ACTIONS(7062), 1, + anon_sym_SLASH_GT, + STATE(3650), 1, + sym_comment, + STATE(4173), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4247), 1, + sym_type_arguments, + STATE(4691), 1, + sym_jsx_namespace_name, + STATE(5588), 1, + sym_constraint, + STATE(6570), 1, + sym_default_type, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136446] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(4810), 1, anon_sym_EQ, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(7001), 1, + anon_sym_DOT, STATE(3651), 1, sym_comment, - ACTIONS(4971), 16, + STATE(3741), 1, + sym_type_arguments, + ACTIONS(4229), 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, @@ -322867,26 +325153,25 @@ 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, - [136428] = 6, + [136484] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, + ACTIONS(3251), 1, anon_sym_EQ, STATE(3652), 1, sym_comment, - ACTIONS(5192), 15, + ACTIONS(3411), 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, @@ -322894,76 +325179,85 @@ 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, - [136461] = 5, + [136515] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5061), 1, + anon_sym_EQ, STATE(3653), 1, sym_comment, - ACTIONS(4957), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4959), 15, + ACTIONS(5063), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [136492] = 5, + [136546] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3186), 1, - anon_sym_EQ, + ACTIONS(4180), 1, + anon_sym_PIPE, + ACTIONS(4196), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_DOT, + ACTIONS(4200), 1, + anon_sym_QMARK_DOT, + ACTIONS(7064), 1, + anon_sym_LT, STATE(3654), 1, sym_comment, - ACTIONS(3568), 16, - anon_sym_as, + STATE(3904), 1, + sym_arguments, + STATE(3994), 1, + sym_type_arguments, + ACTIONS(4176), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - 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, - [136523] = 5, + anon_sym_PIPE_RBRACE, + [136589] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_EQ, + ACTIONS(7066), 1, + anon_sym_DOT, + ACTIONS(7068), 1, + anon_sym_QMARK_DOT, STATE(3655), 1, sym_comment, - ACTIONS(5035), 16, + ACTIONS(4945), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4947), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -322972,51 +325266,56 @@ 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, - [136554] = 5, + [136624] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, - anon_sym_EQ, + ACTIONS(4196), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_PIPE, + ACTIONS(7064), 1, + anon_sym_LT, + ACTIONS(7070), 1, + anon_sym_DOT, + ACTIONS(7072), 1, + anon_sym_QMARK_DOT, STATE(3656), 1, sym_comment, - ACTIONS(5031), 16, - anon_sym_as, + STATE(3902), 1, + sym_arguments, + STATE(3993), 1, + sym_type_arguments, + ACTIONS(4844), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - [136585] = 5, + anon_sym_PIPE_RBRACE, + [136667] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, + ACTIONS(3249), 1, anon_sym_EQ, STATE(3657), 1, sym_comment, - ACTIONS(5027), 16, + ACTIONS(3409), 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, @@ -323024,54 +325323,55 @@ 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, - [136616] = 5, + [136698] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4985), 1, - anon_sym_EQ, + ACTIONS(4196), 1, + anon_sym_LPAREN, + ACTIONS(4800), 1, + anon_sym_PIPE, + ACTIONS(7064), 1, + anon_sym_LT, + ACTIONS(7074), 1, + anon_sym_DOT, + ACTIONS(7076), 1, + anon_sym_QMARK_DOT, STATE(3658), 1, sym_comment, - ACTIONS(4987), 16, - anon_sym_as, + STATE(3901), 1, + sym_arguments, + STATE(3992), 1, + sym_type_arguments, + ACTIONS(4802), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - [136647] = 7, + anon_sym_PIPE_RBRACE, + [136741] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7059), 1, - anon_sym_DOT, - ACTIONS(7061), 1, - anon_sym_QMARK_DOT, + ACTIONS(5241), 1, + anon_sym_EQ, STATE(3659), 1, sym_comment, - ACTIONS(5290), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5292), 13, + ACTIONS(5243), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -323080,69 +325380,71 @@ 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, - [136682] = 5, + [136772] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(3267), 1, + anon_sym_EQ, STATE(3660), 1, sym_comment, - ACTIONS(4981), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4983), 15, + ACTIONS(3459), 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, 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, - [136713] = 5, + [136803] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5053), 1, + anon_sym_EQ, STATE(3661), 1, sym_comment, - ACTIONS(2207), 16, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5055), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [136744] = 5, + [136834] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5349), 1, + ACTIONS(5049), 1, anon_sym_EQ, STATE(3662), 1, sym_comment, - ACTIONS(5351), 16, + ACTIONS(5051), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323159,75 +325461,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136775] = 5, + [136865] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3200), 1, - anon_sym_EQ, STATE(3663), 1, sym_comment, - ACTIONS(3536), 16, + ACTIONS(5229), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5231), 15, 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, 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, - [136806] = 5, + [136896] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2249), 1, - anon_sym_PIPE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5049), 1, + anon_sym_EQ, STATE(3664), 1, sym_comment, - ACTIONS(2251), 16, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5051), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [136837] = 5, + [136927] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3232), 1, + ACTIONS(5245), 1, anon_sym_EQ, STATE(3665), 1, sym_comment, - ACTIONS(3448), 16, + ACTIONS(5247), 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, @@ -323235,18 +325536,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, - [136868] = 5, + [136958] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3222), 1, + ACTIONS(3247), 1, anon_sym_EQ, STATE(3666), 1, sym_comment, - ACTIONS(3438), 16, + ACTIONS(3407), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323263,20 +325565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [136899] = 7, + [136989] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, - anon_sym_EQ, - ACTIONS(6984), 1, - anon_sym_LT, STATE(3667), 1, sym_comment, - STATE(3703), 1, - sym_type_arguments, - ACTIONS(4857), 14, + ACTIONS(5249), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5251), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323286,26 +325585,30 @@ 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, - [136934] = 5, + [137020] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4935), 1, + ACTIONS(4858), 1, anon_sym_EQ, + ACTIONS(6991), 1, + anon_sym_LT, STATE(3668), 1, sym_comment, - ACTIONS(4937), 16, + STATE(3763), 1, + sym_type_arguments, + ACTIONS(4860), 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, @@ -323314,19 +325617,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, - [136965] = 5, + [137055] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4949), 1, + ACTIONS(5100), 1, anon_sym_EQ, STATE(3669), 1, sym_comment, - ACTIONS(4951), 16, + ACTIONS(5102), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323343,21 +325645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136996] = 5, + [137086] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(5148), 1, anon_sym_EQ, STATE(3670), 1, sym_comment, - ACTIONS(4971), 16, + ACTIONS(5150), 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, @@ -323366,58 +325669,52 @@ 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, - [137027] = 11, + [137119] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(4799), 1, - anon_sym_PIPE, - ACTIONS(7057), 1, - anon_sym_LT, - ACTIONS(7063), 1, + ACTIONS(2158), 1, anon_sym_DOT, - ACTIONS(7065), 1, - anon_sym_QMARK_DOT, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5148), 1, + anon_sym_EQ, STATE(3671), 1, sym_comment, - STATE(3850), 1, - sym_arguments, - STATE(4022), 1, - sym_type_arguments, - ACTIONS(4801), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5150), 15, + 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_LT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [137070] = 5, + [137152] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3210), 1, + ACTIONS(5124), 1, anon_sym_EQ, STATE(3672), 1, sym_comment, - ACTIONS(3420), 16, + ACTIONS(5126), 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, @@ -323425,18 +325722,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, - [137101] = 5, + [137183] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5327), 1, + ACTIONS(5061), 1, anon_sym_EQ, STATE(3673), 1, sym_comment, - ACTIONS(5329), 16, + ACTIONS(5063), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323453,74 +325751,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [137132] = 11, + [137214] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(4161), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_QMARK_DOT, - ACTIONS(4167), 1, - anon_sym_PIPE, - ACTIONS(7057), 1, - anon_sym_LT, STATE(3674), 1, sym_comment, - STATE(3867), 1, - sym_arguments, - STATE(4003), 1, - sym_type_arguments, - ACTIONS(4157), 10, - sym__automatic_semicolon, + ACTIONS(5092), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5094), 15, + 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [137175] = 5, + [137245] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5116), 1, + anon_sym_EQ, STATE(3675), 1, sym_comment, - ACTIONS(5055), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5057), 15, + ACTIONS(5118), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [137206] = 5, + [137276] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4949), 1, + ACTIONS(5253), 1, anon_sym_EQ, STATE(3676), 1, sym_comment, - ACTIONS(4951), 16, + ACTIONS(5255), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323537,23 +325829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [137237] = 6, + [137307] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2087), 1, - anon_sym_DOT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, + ACTIONS(3253), 1, anon_sym_EQ, STATE(3677), 1, sym_comment, - ACTIONS(5192), 15, + ACTIONS(3449), 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, @@ -323561,72 +325853,70 @@ 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, - [137270] = 5, + [137338] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1980), 1, - anon_sym_EQ, - ACTIONS(2696), 1, + ACTIONS(2198), 1, + anon_sym_PIPE, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3678), 1, sym_comment, - ACTIONS(2030), 15, - anon_sym_as, + ACTIONS(2200), 16, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_with, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, 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, - anon_sym_is, - [137300] = 6, + anon_sym_PIPE_RBRACE, + [137369] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2170), 1, + anon_sym_PIPE, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4843), 1, - anon_sym_EQ, - ACTIONS(6992), 1, - anon_sym_is, STATE(3679), 1, sym_comment, - ACTIONS(4845), 14, - anon_sym_as, + ACTIONS(2172), 16, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_with, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, 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, - [137332] = 6, + anon_sym_PIPE_RBRACE, + [137400] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4851), 1, + ACTIONS(1955), 1, anon_sym_EQ, - ACTIONS(6992), 1, - anon_sym_is, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(3680), 1, sym_comment, - ACTIONS(4853), 14, + ACTIONS(2037), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323641,18 +325931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137364] = 6, + anon_sym_is, + [137430] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, + ACTIONS(4868), 1, anon_sym_EQ, - ACTIONS(7067), 1, + ACTIONS(7003), 1, anon_sym_is, STATE(3681), 1, sym_comment, - ACTIONS(4857), 14, + ACTIONS(4870), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323667,16 +325958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137396] = 5, + [137462] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4871), 1, + ACTIONS(4858), 1, anon_sym_EQ, + ACTIONS(7078), 1, + anon_sym_is, STATE(3682), 1, sym_comment, - ACTIONS(4873), 15, + ACTIONS(4860), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323691,70 +325984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [137426] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3683), 1, - sym_comment, - ACTIONS(7069), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [137453] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7077), 1, - sym_number, - ACTIONS(7079), 1, - anon_sym_unique, - STATE(3684), 1, - sym_comment, - STATE(7479), 2, - sym_string, - sym_predefined_type, - ACTIONS(7075), 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, - [137490] = 6, + [137494] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, + ACTIONS(4872), 1, anon_sym_EQ, - ACTIONS(7081), 1, - anon_sym_AMP, - STATE(3685), 1, + ACTIONS(7003), 1, + anon_sym_is, + STATE(3683), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(4874), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323765,192 +326006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137521] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7083), 1, - sym_number, - STATE(3686), 1, - sym_comment, - STATE(7013), 1, - sym_predefined_type, - STATE(7014), 1, - sym_string, - ACTIONS(7075), 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, - [137560] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7085), 1, - sym_number, - STATE(3687), 1, - sym_comment, - STATE(7008), 1, - sym_predefined_type, - STATE(7009), 1, - sym_string, - ACTIONS(7075), 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, - [137599] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7087), 1, - sym_number, - STATE(3688), 1, - sym_comment, - STATE(7004), 1, - sym_predefined_type, - STATE(7005), 1, - sym_string, - ACTIONS(7075), 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, - [137638] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(7091), 1, - anon_sym_DOT, - ACTIONS(7093), 1, - anon_sym_QMARK_DOT, - ACTIONS(7095), 1, - anon_sym_LT, - STATE(3689), 1, - sym_comment, - STATE(4029), 1, - sym_arguments, - STATE(4280), 1, - sym_type_arguments, - ACTIONS(4801), 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, - [137677] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(7095), 1, - anon_sym_LT, - ACTIONS(7097), 1, - anon_sym_DOT, - ACTIONS(7099), 1, - anon_sym_QMARK_DOT, - STATE(3690), 1, - sym_comment, - STATE(3972), 1, - sym_arguments, - STATE(4178), 1, - sym_type_arguments, - ACTIONS(4807), 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_QMARK, anon_sym_extends, - [137716] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7101), 1, - sym_number, - STATE(3691), 1, - sym_comment, - STATE(7018), 2, - sym_string, - sym_predefined_type, - ACTIONS(7075), 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, - [137753] = 5, + [137526] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, + ACTIONS(4862), 1, anon_sym_EQ, - STATE(3692), 1, + STATE(3684), 1, sym_comment, - ACTIONS(4967), 14, + ACTIONS(4864), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323965,44 +326034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137782] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7103), 1, - sym_number, - STATE(3693), 1, - sym_comment, - STATE(7105), 2, - sym_string, - sym_predefined_type, - ACTIONS(7075), 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, - [137819] = 5, + anon_sym_is, + [137556] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5361), 1, + ACTIONS(5213), 1, anon_sym_EQ, - STATE(3694), 1, + STATE(3685), 1, sym_comment, - ACTIONS(5363), 14, + ACTIONS(5215), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324017,16 +326059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137848] = 5, + [137585] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5353), 1, + ACTIONS(5180), 1, anon_sym_EQ, - STATE(3695), 1, + STATE(3686), 1, sym_comment, - ACTIONS(5355), 14, + ACTIONS(5182), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324041,45 +326083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137877] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(7095), 1, - anon_sym_LT, - ACTIONS(7105), 1, - anon_sym_DOT, - ACTIONS(7107), 1, - anon_sym_QMARK_DOT, - STATE(3696), 1, - sym_comment, - STATE(3994), 1, - sym_arguments, - STATE(4219), 1, - sym_type_arguments, - ACTIONS(4157), 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, - [137916] = 5, + [137614] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5072), 1, + ACTIONS(5298), 1, anon_sym_EQ, - STATE(3697), 1, + STATE(3687), 1, sym_comment, - ACTIONS(5074), 14, + ACTIONS(5300), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324094,22 +326107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137945] = 8, + [137643] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5345), 1, + ACTIONS(4941), 1, anon_sym_EQ, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - STATE(3698), 1, + STATE(3688), 1, sym_comment, - ACTIONS(5347), 11, + ACTIONS(4943), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324120,45 +326127,44 @@ 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, - [137980] = 7, + anon_sym_extends, + [137672] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5341), 1, + ACTIONS(4872), 1, anon_sym_EQ, - ACTIONS(7113), 1, - anon_sym_LBRACK, - STATE(3699), 1, + STATE(3689), 1, sym_comment, - ACTIONS(5061), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(5343), 10, + ACTIONS(4874), 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, - [138013] = 6, + anon_sym_extends, + [137701] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5335), 1, + ACTIONS(5198), 1, anon_sym_EQ, - ACTIONS(7115), 1, - anon_sym_extends, - STATE(3700), 1, + STATE(3690), 1, sym_comment, - ACTIONS(5337), 13, + ACTIONS(5200), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324172,24 +326178,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - [138044] = 6, + anon_sym_extends, + [137730] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5331), 1, + ACTIONS(5112), 1, anon_sym_EQ, - ACTIONS(7113), 1, - anon_sym_LBRACK, - STATE(3701), 1, + STATE(3691), 1, sym_comment, - ACTIONS(5333), 13, + ACTIONS(5114), 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, @@ -324197,18 +326203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138075] = 6, + [137759] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5059), 1, + ACTIONS(5360), 1, anon_sym_EQ, - ACTIONS(7113), 1, + ACTIONS(7080), 1, anon_sym_LBRACK, - STATE(3702), 1, + STATE(3692), 1, sym_comment, - ACTIONS(5061), 13, + ACTIONS(5362), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324222,23 +326228,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138106] = 5, + [137790] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5308), 1, + ACTIONS(5288), 1, anon_sym_EQ, - STATE(3703), 1, + ACTIONS(7080), 1, + anon_sym_LBRACK, + STATE(3693), 1, sym_comment, - ACTIONS(5310), 14, + ACTIONS(5290), 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, @@ -324246,16 +326253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138135] = 5, + [137821] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5170), 1, + ACTIONS(5288), 1, anon_sym_EQ, - STATE(3704), 1, + STATE(3694), 1, sym_comment, - ACTIONS(5172), 14, + ACTIONS(5290), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324270,16 +326277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138164] = 5, + [137850] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5059), 1, + ACTIONS(4858), 1, anon_sym_EQ, - STATE(3705), 1, + STATE(3695), 1, sym_comment, - ACTIONS(5061), 14, + ACTIONS(4860), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324294,16 +326301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138193] = 5, + [137879] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4851), 1, + ACTIONS(4955), 1, anon_sym_EQ, - STATE(3706), 1, + STATE(3696), 1, sym_comment, - ACTIONS(4853), 14, + ACTIONS(4957), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324318,16 +326325,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138222] = 5, + [137908] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3697), 1, + sym_comment, + ACTIONS(7082), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [137935] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3698), 1, + sym_comment, + ACTIONS(7084), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [137962] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4993), 1, + ACTIONS(5076), 1, anon_sym_EQ, - STATE(3707), 1, + STATE(3699), 1, sym_comment, - ACTIONS(4995), 14, + ACTIONS(5078), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324342,22 +326395,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138251] = 8, + [137991] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5182), 1, + ACTIONS(5076), 1, anon_sym_EQ, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - STATE(3708), 1, + STATE(3700), 1, sym_comment, - ACTIONS(5184), 11, + ACTIONS(5078), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324369,16 +326422,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [138286] = 5, + [138026] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5049), 1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7098), 1, + sym_number, + ACTIONS(7100), 1, + anon_sym_unique, + STATE(3701), 1, + sym_comment, + STATE(7191), 2, + sym_string, + sym_predefined_type, + ACTIONS(7096), 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, + [138063] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3702), 1, + sym_comment, + ACTIONS(7102), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [138090] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5302), 1, anon_sym_EQ, - STATE(3709), 1, + STATE(3703), 1, sym_comment, - ACTIONS(5051), 14, + ACTIONS(5304), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324393,16 +326497,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138315] = 5, + [138119] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5076), 1, + STATE(3704), 1, + sym_comment, + ACTIONS(7104), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [138146] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7106), 1, + sym_number, + STATE(3705), 1, + sym_comment, + STATE(7315), 2, + sym_string, + sym_predefined_type, + ACTIONS(7096), 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, + [138183] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5074), 1, anon_sym_EQ, - STATE(3710), 1, + STATE(3706), 1, sym_comment, - ACTIONS(5078), 14, + ACTIONS(5045), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324417,14 +326572,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138344] = 4, + [138212] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7108), 1, + sym_number, + STATE(3707), 1, + sym_comment, + STATE(7311), 1, + sym_predefined_type, + STATE(7313), 1, + sym_string, + ACTIONS(7096), 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, + [138251] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7110), 1, + sym_number, + STATE(3708), 1, + sym_comment, + STATE(7394), 1, + sym_predefined_type, + STATE(7395), 1, + sym_string, + ACTIONS(7096), 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, + [138290] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7112), 1, + sym_number, + STATE(3709), 1, + sym_comment, + STATE(7307), 1, + sym_predefined_type, + STATE(7308), 1, + sym_string, + ACTIONS(7096), 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, + [138329] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4810), 1, + anon_sym_PIPE, + ACTIONS(7064), 1, + anon_sym_LT, + ACTIONS(7114), 1, + anon_sym_DOT, + ACTIONS(7116), 1, + anon_sym_is, + STATE(3710), 1, + sym_comment, + STATE(4026), 1, + sym_type_arguments, + ACTIONS(4229), 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, + [138366] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7118), 1, + sym_number, STATE(3711), 1, sym_comment, - ACTIONS(7117), 15, + STATE(7304), 1, + sym_predefined_type, + STATE(7305), 1, + sym_string, + ACTIONS(7096), 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, + [138405] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7120), 1, + sym_number, + STATE(3712), 1, + sym_comment, + STATE(7194), 1, + sym_string, + STATE(7195), 1, + sym_predefined_type, + ACTIONS(7096), 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, + [138444] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7122), 1, + sym_number, + STATE(3713), 1, + sym_comment, + STATE(7397), 1, + sym_predefined_type, + STATE(7398), 1, + sym_string, + ACTIONS(7096), 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, + [138483] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3714), 1, + sym_comment, + ACTIONS(7124), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -324440,16 +326797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [138371] = 5, + [138510] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4931), 1, + ACTIONS(4995), 1, anon_sym_EQ, - STATE(3712), 1, + STATE(3715), 1, sym_comment, - ACTIONS(4933), 14, + ACTIONS(4997), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324464,16 +326821,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138400] = 5, + [138539] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7126), 1, + sym_number, + STATE(3716), 1, + sym_comment, + STATE(7402), 1, + sym_predefined_type, + STATE(7403), 1, + sym_string, + ACTIONS(7096), 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, + [138578] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, + ACTIONS(5020), 1, anon_sym_EQ, - STATE(3713), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + STATE(3717), 1, sym_comment, - ACTIONS(4857), 14, + ACTIONS(5022), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324484,20 +326876,23 @@ 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, - [138429] = 5, + [138613] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5043), 1, + ACTIONS(5014), 1, anon_sym_EQ, - STATE(3714), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + STATE(3718), 1, sym_comment, - ACTIONS(5045), 14, + ACTIONS(5016), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324508,44 +326903,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_QMARK, + [138648] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7128), 1, + anon_sym_LPAREN, + ACTIONS(7130), 1, + anon_sym_DOT, + ACTIONS(7132), 1, + anon_sym_QMARK_DOT, + ACTIONS(7134), 1, + anon_sym_LT, + STATE(3719), 1, + sym_comment, + STATE(3975), 1, + sym_arguments, + STATE(4219), 1, + sym_type_arguments, + ACTIONS(4802), 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_QMARK, anon_sym_extends, - [138458] = 5, + [138687] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5166), 1, - anon_sym_EQ, - STATE(3715), 1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7136), 1, + sym_number, + STATE(3720), 1, sym_comment, - ACTIONS(5168), 14, - anon_sym_as, + STATE(7409), 2, + sym_string, + sym_predefined_type, + ACTIONS(7096), 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, + [138724] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7128), 1, + anon_sym_LPAREN, + ACTIONS(7134), 1, + anon_sym_LT, + ACTIONS(7138), 1, + anon_sym_DOT, + ACTIONS(7140), 1, + anon_sym_QMARK_DOT, + STATE(3721), 1, + sym_comment, + STATE(3977), 1, + sym_arguments, + STATE(4220), 1, + sym_type_arguments, + ACTIONS(4844), 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, - [138487] = 5, + [138763] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5162), 1, + ACTIONS(4991), 1, anon_sym_EQ, - STATE(3716), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + STATE(3722), 1, sym_comment, - ACTIONS(5164), 14, + ACTIONS(4993), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324556,22 +327012,19 @@ 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, - [138516] = 6, + [138794] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4989), 1, + ACTIONS(5316), 1, anon_sym_EQ, - ACTIONS(7081), 1, - anon_sym_AMP, - STATE(3717), 1, + STATE(3723), 1, sym_comment, - ACTIONS(4991), 13, + ACTIONS(5318), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324582,19 +327035,44 @@ 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, - [138547] = 5, + [138823] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, + ACTIONS(5217), 1, + anon_sym_PIPE, + STATE(3724), 1, + sym_comment, + ACTIONS(5219), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3718), 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, + [138852] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5364), 1, + anon_sym_EQ, + STATE(3725), 1, sym_comment, - ACTIONS(4975), 14, + ACTIONS(5366), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324609,16 +327087,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138576] = 5, + [138881] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5086), 1, + ACTIONS(5132), 1, anon_sym_EQ, - STATE(3719), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + STATE(3726), 1, sym_comment, - ACTIONS(5088), 14, + ACTIONS(5134), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324629,20 +327113,17 @@ 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, - [138605] = 5, + [138916] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, + ACTIONS(5132), 1, anon_sym_EQ, - STATE(3720), 1, + STATE(3727), 1, sym_comment, - ACTIONS(5288), 14, + ACTIONS(5134), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324657,86 +327138,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138634] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3721), 1, - sym_comment, - ACTIONS(7119), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [138661] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3722), 1, - sym_comment, - ACTIONS(7121), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [138688] = 5, + [138945] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5097), 1, - anon_sym_PIPE, - STATE(3723), 1, + ACTIONS(7128), 1, + anon_sym_LPAREN, + ACTIONS(7134), 1, + anon_sym_LT, + ACTIONS(7142), 1, + anon_sym_DOT, + ACTIONS(7144), 1, + anon_sym_QMARK_DOT, + STATE(3728), 1, sym_comment, - ACTIONS(5099), 14, + STATE(3980), 1, + sym_arguments, + STATE(4221), 1, + sym_type_arguments, + ACTIONS(4176), 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, - [138717] = 5, + [138984] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5097), 1, + ACTIONS(5217), 1, anon_sym_PIPE, - STATE(3724), 1, + STATE(3729), 1, sym_comment, - ACTIONS(5099), 14, + ACTIONS(5219), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -324751,152 +327191,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138746] = 5, + [139013] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5097), 1, - anon_sym_PIPE, - STATE(3725), 1, - sym_comment, - ACTIONS(5099), 14, - sym__automatic_semicolon, + ACTIONS(5170), 1, anon_sym_EQ, + STATE(3730), 1, + sym_comment, + ACTIONS(5172), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [138775] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3726), 1, - sym_comment, - ACTIONS(7123), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [138802] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(7057), 1, - anon_sym_LT, - ACTIONS(7125), 1, - anon_sym_DOT, - ACTIONS(7127), 1, - anon_sym_is, - STATE(3727), 1, - sym_comment, - STATE(4010), 1, - sym_type_arguments, - ACTIONS(4202), 10, - sym__automatic_semicolon, - anon_sym_EQ, - 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, - [138839] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3728), 1, - sym_comment, - ACTIONS(7129), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [138866] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7131), 1, - sym_number, - STATE(3729), 1, - sym_comment, - STATE(7201), 2, - sym_string, - sym_predefined_type, - ACTIONS(7075), 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, - [138903] = 10, + [139042] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, + ACTIONS(7092), 1, anon_sym_DQUOTE, - ACTIONS(7073), 1, + ACTIONS(7094), 1, anon_sym_SQUOTE, - ACTIONS(7079), 1, + ACTIONS(7100), 1, anon_sym_unique, - ACTIONS(7133), 1, + ACTIONS(7146), 1, sym_number, - STATE(3730), 1, + STATE(3731), 1, sym_comment, - STATE(7203), 1, + STATE(7198), 1, sym_string, - STATE(7204), 1, + STATE(7200), 1, sym_predefined_type, - ACTIONS(7075), 9, + ACTIONS(7096), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -324906,16 +327244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [138942] = 5, + [139081] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, + ACTIONS(5096), 1, anon_sym_EQ, - STATE(3731), 1, + STATE(3732), 1, sym_comment, - ACTIONS(4979), 14, + ACTIONS(5098), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324930,106 +327268,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138971] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7135), 1, - sym_number, - STATE(3732), 1, - sym_comment, - STATE(7208), 1, - sym_string, - STATE(7210), 1, - sym_predefined_type, - ACTIONS(7075), 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, - [139010] = 9, + [139110] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7137), 1, - sym_number, + ACTIONS(5217), 1, + anon_sym_PIPE, STATE(3733), 1, sym_comment, - STATE(7484), 2, - sym_string, - sym_predefined_type, - ACTIONS(7075), 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, - [139047] = 4, + ACTIONS(5219), 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, + [139139] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5202), 1, + anon_sym_EQ, + ACTIONS(7086), 1, + anon_sym_AMP, STATE(3734), 1, sym_comment, - ACTIONS(7139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [139074] = 10, + ACTIONS(5204), 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, + [139170] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, + ACTIONS(7092), 1, anon_sym_DQUOTE, - ACTIONS(7073), 1, + ACTIONS(7094), 1, anon_sym_SQUOTE, - ACTIONS(7079), 1, + ACTIONS(7100), 1, anon_sym_unique, - ACTIONS(7141), 1, + ACTIONS(7148), 1, sym_number, STATE(3735), 1, sym_comment, - STATE(7217), 1, - sym_string, - STATE(7227), 1, + STATE(7209), 1, sym_predefined_type, - ACTIONS(7075), 9, + STATE(7210), 1, + sym_string, + ACTIONS(7096), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -325039,103 +327346,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [139113] = 10, + [139209] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7143), 1, - sym_number, + ACTIONS(5146), 1, + anon_sym_EQ, STATE(3736), 1, sym_comment, - STATE(7230), 1, - sym_string, - STATE(7356), 1, - sym_predefined_type, - ACTIONS(7075), 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, - [139152] = 5, + ACTIONS(5144), 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, + [139238] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5101), 1, - anon_sym_PIPE, + ACTIONS(5174), 1, + anon_sym_EQ, STATE(3737), 1, sym_comment, - ACTIONS(5103), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5176), 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, - [139181] = 5, + [139267] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5113), 1, - anon_sym_PIPE, + ACTIONS(5188), 1, + anon_sym_EQ, STATE(3738), 1, sym_comment, - ACTIONS(5115), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5190), 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, - [139210] = 10, + [139296] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, + ACTIONS(7092), 1, anon_sym_DQUOTE, - ACTIONS(7073), 1, + ACTIONS(7094), 1, anon_sym_SQUOTE, - ACTIONS(7079), 1, + ACTIONS(7100), 1, anon_sym_unique, - ACTIONS(7145), 1, + ACTIONS(7150), 1, sym_number, STATE(3739), 1, sym_comment, - STATE(7466), 1, - sym_predefined_type, - STATE(7469), 1, + STATE(7205), 1, sym_string, - ACTIONS(7075), 9, + STATE(7206), 1, + sym_predefined_type, + ACTIONS(7096), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -325145,88 +327447,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [139249] = 5, + [139335] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5147), 1, - anon_sym_PIPE, + ACTIONS(5206), 1, + anon_sym_EQ, STATE(3740), 1, sym_comment, - ACTIONS(5149), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5208), 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, - [139278] = 5, + [139364] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5151), 1, - anon_sym_PIPE, + ACTIONS(5280), 1, + anon_sym_EQ, STATE(3741), 1, sym_comment, - ACTIONS(5153), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5282), 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, - [139307] = 5, + [139393] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5209), 1, + ACTIONS(5294), 1, + anon_sym_EQ, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, STATE(3742), 1, sym_comment, - ACTIONS(5211), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5296), 11, + 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_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [139336] = 5, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [139428] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5213), 1, + ACTIONS(5104), 1, anon_sym_PIPE, STATE(3743), 1, sym_comment, - ACTIONS(5215), 14, + ACTIONS(5106), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325241,16 +327546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139365] = 5, + [139457] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5209), 1, + ACTIONS(5108), 1, anon_sym_PIPE, STATE(3744), 1, sym_comment, - ACTIONS(5211), 14, + ACTIONS(5110), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325265,16 +327570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139394] = 5, + [139486] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5213), 1, + ACTIONS(5120), 1, anon_sym_PIPE, STATE(3745), 1, sym_comment, - ACTIONS(5215), 14, + ACTIONS(5122), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325289,16 +327594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139423] = 5, + [139515] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5252), 1, + ACTIONS(5128), 1, anon_sym_PIPE, STATE(3746), 1, sym_comment, - ACTIONS(5254), 14, + ACTIONS(5130), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325313,16 +327618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139452] = 5, + [139544] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5266), 1, + ACTIONS(5120), 1, anon_sym_PIPE, STATE(3747), 1, sym_comment, - ACTIONS(5268), 14, + ACTIONS(5122), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325337,16 +327642,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139481] = 5, + [139573] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5252), 1, + ACTIONS(5128), 1, anon_sym_PIPE, STATE(3748), 1, sym_comment, - ACTIONS(5254), 14, + ACTIONS(5130), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325361,16 +327666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139510] = 5, + [139602] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5266), 1, + ACTIONS(5136), 1, anon_sym_PIPE, STATE(3749), 1, sym_comment, - ACTIONS(5268), 14, + ACTIONS(5138), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325385,16 +327690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139539] = 5, + [139631] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5302), 1, + ACTIONS(5140), 1, anon_sym_PIPE, STATE(3750), 1, sym_comment, - ACTIONS(5304), 14, + ACTIONS(5142), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325409,16 +327714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139568] = 5, + [139660] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5256), 1, + ACTIONS(5136), 1, anon_sym_PIPE, STATE(3751), 1, sym_comment, - ACTIONS(5258), 14, + ACTIONS(5138), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325433,16 +327738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139597] = 5, + [139689] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5302), 1, + ACTIONS(5140), 1, anon_sym_PIPE, STATE(3752), 1, sym_comment, - ACTIONS(5304), 14, + ACTIONS(5142), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325457,16 +327762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139626] = 5, + [139718] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5256), 1, + ACTIONS(5162), 1, anon_sym_PIPE, STATE(3753), 1, sym_comment, - ACTIONS(5258), 14, + ACTIONS(5164), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325481,74 +327786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139655] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7147), 1, - sym_number, - STATE(3754), 1, - sym_comment, - STATE(7462), 1, - sym_predefined_type, - STATE(7463), 1, - sym_string, - ACTIONS(7075), 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, - [139694] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7149), 1, - sym_number, - STATE(3755), 1, - sym_comment, - STATE(7454), 1, - sym_predefined_type, - STATE(7458), 1, - sym_string, - ACTIONS(7075), 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, - [139733] = 5, + [139747] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5101), 1, + ACTIONS(5166), 1, anon_sym_PIPE, - STATE(3756), 1, + STATE(3754), 1, sym_comment, - ACTIONS(5103), 14, + ACTIONS(5168), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325563,16 +327810,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139762] = 5, + [139776] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5101), 1, + ACTIONS(5162), 1, anon_sym_PIPE, - STATE(3757), 1, + STATE(3755), 1, sym_comment, - ACTIONS(5103), 14, + ACTIONS(5164), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325587,16 +327834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139791] = 5, + [139805] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5113), 1, + ACTIONS(5166), 1, anon_sym_PIPE, - STATE(3758), 1, + STATE(3756), 1, sym_comment, - ACTIONS(5115), 14, + ACTIONS(5168), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325611,50 +327858,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139820] = 5, + [139834] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5113), 1, - anon_sym_PIPE, - STATE(3759), 1, - sym_comment, - ACTIONS(5115), 14, - sym__automatic_semicolon, + ACTIONS(4868), 1, anon_sym_EQ, + STATE(3757), 1, + sym_comment, + ACTIONS(4870), 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, - [139849] = 10, + [139863] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5333), 1, + anon_sym_EQ, + ACTIONS(7080), 1, + anon_sym_LBRACK, + STATE(3758), 1, + sym_comment, + ACTIONS(5290), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5335), 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, + [139896] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, + ACTIONS(7092), 1, anon_sym_DQUOTE, - ACTIONS(7073), 1, + ACTIONS(7094), 1, anon_sym_SQUOTE, - ACTIONS(7079), 1, + ACTIONS(7100), 1, anon_sym_unique, - ACTIONS(7151), 1, + ACTIONS(7152), 1, sym_number, - STATE(3760), 1, + STATE(3759), 1, sym_comment, - STATE(7340), 1, - sym_predefined_type, - STATE(7341), 1, + STATE(7222), 2, sym_string, - ACTIONS(7075), 9, + sym_predefined_type, + ACTIONS(7096), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -325664,14 +327936,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [139888] = 4, + [139933] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5353), 1, + anon_sym_PIPE, + STATE(3760), 1, + sym_comment, + ACTIONS(5355), 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, + [139962] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3761), 1, sym_comment, - ACTIONS(7153), 15, + ACTIONS(7154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -325687,49 +327983,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [139915] = 8, + [139989] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5080), 1, - anon_sym_EQ, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(5353), 1, anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, STATE(3762), 1, sym_comment, - ACTIONS(5082), 11, - anon_sym_as, + ACTIONS(5355), 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, - [139950] = 8, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140018] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4939), 1, + ACTIONS(5057), 1, anon_sym_EQ, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, STATE(3763), 1, sym_comment, - ACTIONS(4941), 11, + ACTIONS(5059), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325740,17 +328027,106 @@ 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, - [139985] = 5, + anon_sym_extends, + [140047] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4939), 1, - anon_sym_EQ, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7156), 1, + sym_number, STATE(3764), 1, sym_comment, - ACTIONS(4941), 14, + STATE(7212), 1, + sym_predefined_type, + STATE(7214), 1, + sym_string, + ACTIONS(7096), 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, + [140086] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7158), 1, + sym_number, + STATE(3765), 1, + sym_comment, + STATE(7275), 2, + sym_string, + sym_predefined_type, + ACTIONS(7096), 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, + [140123] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7160), 1, + sym_number, + STATE(3766), 1, + sym_comment, + STATE(7281), 1, + sym_string, + STATE(7282), 1, + sym_predefined_type, + ACTIONS(7096), 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, + [140162] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5237), 1, + anon_sym_EQ, + STATE(3767), 1, + sym_comment, + ACTIONS(5239), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325765,49 +328141,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140014] = 4, + [140191] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3765), 1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7162), 1, + sym_number, + STATE(3768), 1, sym_comment, - ACTIONS(7155), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [140041] = 10, + STATE(7218), 1, + sym_predefined_type, + STATE(7220), 1, + sym_string, + ACTIONS(7096), 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, + [140230] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, + ACTIONS(7092), 1, anon_sym_DQUOTE, - ACTIONS(7073), 1, + ACTIONS(7094), 1, anon_sym_SQUOTE, - ACTIONS(7079), 1, + ACTIONS(7100), 1, anon_sym_unique, - ACTIONS(7157), 1, + ACTIONS(7164), 1, sym_number, - STATE(3766), 1, + STATE(3769), 1, sym_comment, - STATE(7320), 1, + STATE(7287), 1, + sym_string, + STATE(7288), 1, sym_predefined_type, - STATE(7334), 1, + ACTIONS(7096), 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, + [140269] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + anon_sym_unique, + ACTIONS(7166), 1, + sym_number, + STATE(3770), 1, + sym_comment, + STATE(7291), 1, sym_string, - ACTIONS(7075), 9, + STATE(7295), 1, + sym_predefined_type, + ACTIONS(7096), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -325817,16 +328228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [140080] = 5, + [140308] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5242), 1, + ACTIONS(5263), 1, anon_sym_EQ, - STATE(3767), 1, + STATE(3771), 1, sym_comment, - ACTIONS(5244), 14, + ACTIONS(5265), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325841,16 +328252,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140109] = 5, + [140337] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5262), 1, + ACTIONS(5353), 1, + anon_sym_PIPE, + STATE(3772), 1, + sym_comment, + ACTIONS(5355), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3768), 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, + [140366] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5349), 1, + anon_sym_PIPE, + STATE(3773), 1, + sym_comment, + ACTIONS(5351), 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, + [140395] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3774), 1, + sym_comment, + ACTIONS(7168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [140422] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5349), 1, + anon_sym_PIPE, + STATE(3775), 1, + sym_comment, + ACTIONS(5351), 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, + [140451] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5308), 1, + anon_sym_EQ, + STATE(3776), 1, sym_comment, - ACTIONS(5264), 14, + ACTIONS(5310), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325865,16 +328371,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140138] = 5, + [140480] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4843), 1, + ACTIONS(5349), 1, + anon_sym_PIPE, + STATE(3777), 1, + sym_comment, + ACTIONS(5351), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3769), 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, + [140509] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5337), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_extends, + STATE(3778), 1, sym_comment, - ACTIONS(4845), 14, + ACTIONS(5339), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325888,23 +328420,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, + [140540] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5345), 1, + anon_sym_PIPE, + STATE(3779), 1, + sym_comment, + ACTIONS(5347), 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, - [140167] = 8, + anon_sym_PIPE_RBRACE, + [140569] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5178), 1, + ACTIONS(5368), 1, anon_sym_EQ, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - STATE(3770), 1, + STATE(3780), 1, sym_comment, - ACTIONS(5180), 11, + ACTIONS(5370), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325916,16 +328471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [140202] = 5, + [140604] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5274), 1, + ACTIONS(5312), 1, anon_sym_EQ, - STATE(3771), 1, + STATE(3781), 1, sym_comment, - ACTIONS(5276), 14, + ACTIONS(5314), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325940,22 +328495,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140231] = 8, + [140633] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3782), 1, + sym_comment, + ACTIONS(7172), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [140660] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5248), 1, + ACTIONS(5184), 1, anon_sym_EQ, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - STATE(3772), 1, + STATE(3783), 1, sym_comment, - ACTIONS(5250), 11, + ACTIONS(5186), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325966,17 +328538,26 @@ 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, - [140266] = 5, + anon_sym_extends, + [140689] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, + ACTIONS(5194), 1, anon_sym_EQ, - STATE(3773), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + STATE(3784), 1, sym_comment, - ACTIONS(5272), 14, + ACTIONS(5196), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325987,20 +328568,40 @@ 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, - [140295] = 5, + [140724] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3785), 1, + sym_comment, + ACTIONS(7174), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [140751] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5238), 1, + ACTIONS(5221), 1, anon_sym_PIPE, - STATE(3774), 1, + STATE(3786), 1, sym_comment, - ACTIONS(5240), 14, + ACTIONS(5223), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326015,16 +328616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140324] = 5, + [140780] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5220), 1, + ACTIONS(5225), 1, anon_sym_PIPE, - STATE(3775), 1, + STATE(3787), 1, sym_comment, - ACTIONS(5222), 14, + ACTIONS(5227), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326039,16 +328640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140353] = 5, + [140809] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5220), 1, + ACTIONS(5225), 1, anon_sym_PIPE, - STATE(3776), 1, + STATE(3788), 1, sym_comment, - ACTIONS(5222), 14, + ACTIONS(5227), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326063,16 +328664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140382] = 5, + [140838] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5220), 1, + ACTIONS(5225), 1, anon_sym_PIPE, - STATE(3777), 1, + STATE(3789), 1, sym_comment, - ACTIONS(5222), 14, + ACTIONS(5227), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326087,16 +328688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140411] = 5, + [140867] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5186), 1, + ACTIONS(5267), 1, anon_sym_PIPE, - STATE(3778), 1, + STATE(3790), 1, sym_comment, - ACTIONS(5188), 14, + ACTIONS(5269), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326111,16 +328712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140440] = 5, + [140896] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5186), 1, + ACTIONS(5267), 1, anon_sym_PIPE, - STATE(3779), 1, + STATE(3791), 1, sym_comment, - ACTIONS(5188), 14, + ACTIONS(5269), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326135,16 +328736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140469] = 5, + [140925] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5186), 1, + ACTIONS(5267), 1, anon_sym_PIPE, - STATE(3780), 1, + STATE(3792), 1, sym_comment, - ACTIONS(5188), 14, + ACTIONS(5269), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326159,16 +328760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140498] = 5, + [140954] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5174), 1, + ACTIONS(5284), 1, anon_sym_PIPE, - STATE(3781), 1, + STATE(3793), 1, sym_comment, - ACTIONS(5176), 14, + ACTIONS(5286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326183,16 +328784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140527] = 5, + [140983] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5174), 1, + ACTIONS(5284), 1, anon_sym_PIPE, - STATE(3782), 1, + STATE(3794), 1, sym_comment, - ACTIONS(5176), 14, + ACTIONS(5286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326207,16 +328808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140556] = 5, + [141012] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5174), 1, + ACTIONS(5284), 1, anon_sym_PIPE, - STATE(3783), 1, + STATE(3795), 1, sym_comment, - ACTIONS(5176), 14, + ACTIONS(5286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326231,173 +328832,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140585] = 5, + [141041] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5298), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(3784), 1, - sym_comment, - ACTIONS(5300), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7180), 1, + anon_sym_BANG, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7188), 1, anon_sym_QMARK, - anon_sym_extends, - [140614] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5357), 1, - anon_sym_EQ, - STATE(3785), 1, + STATE(3796), 1, sym_comment, - ACTIONS(5359), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(4786), 1, + sym_formal_parameters, + STATE(5327), 1, + sym_type_annotation, + STATE(6238), 1, + sym__initializer, + STATE(6458), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7178), 3, + sym__automatic_semicolon, 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, - [140643] = 5, + anon_sym_SEMI, + [141089] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5312), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(3786), 1, - sym_comment, - ACTIONS(5314), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7190), 1, + anon_sym_BANG, + ACTIONS(7192), 1, anon_sym_QMARK, - anon_sym_extends, - [140672] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5312), 1, - anon_sym_EQ, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - STATE(3787), 1, + STATE(3797), 1, sym_comment, - ACTIONS(5314), 11, - anon_sym_as, - anon_sym_LBRACE, + STATE(4786), 1, + sym_formal_parameters, + STATE(5289), 1, + sym_type_annotation, + STATE(6105), 1, + sym__initializer, + STATE(6535), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7178), 3, + sym__automatic_semicolon, 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, - [140707] = 5, + anon_sym_SEMI, + [141137] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5323), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(3788), 1, - sym_comment, - ACTIONS(5325), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7196), 1, + anon_sym_BANG, + ACTIONS(7198), 1, anon_sym_QMARK, - anon_sym_extends, - [140736] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5296), 1, - anon_sym_EQ, - STATE(3789), 1, + STATE(3798), 1, sym_comment, - ACTIONS(5236), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(4786), 1, + sym_formal_parameters, + STATE(5285), 1, + sym_type_annotation, + STATE(6104), 1, + sym__initializer, + STATE(6532), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7194), 3, + sym__automatic_semicolon, 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, - [140765] = 10, + anon_sym_SEMI, + [141185] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, + ACTIONS(210), 1, anon_sym_unique, - ACTIONS(7159), 1, - sym_number, - STATE(3790), 1, + STATE(3757), 1, + sym_type_predicate, + STATE(3799), 1, sym_comment, - STATE(7078), 1, + STATE(7054), 1, sym_predefined_type, - STATE(7082), 1, - sym_string, - ACTIONS(7075), 9, + ACTIONS(7200), 2, + sym_identifier, + sym_this, + ACTIONS(212), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -326407,55 +328957,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [140804] = 10, + [141219] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, - anon_sym_unique, - ACTIONS(7161), 1, - sym_number, - STATE(3791), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7202), 1, + anon_sym_BANG, + ACTIONS(7204), 1, + anon_sym_QMARK, + STATE(3800), 1, sym_comment, - STATE(7049), 1, - sym_string, - STATE(7084), 1, - sym_predefined_type, - ACTIONS(7075), 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, - [140843] = 10, + STATE(4786), 1, + sym_formal_parameters, + STATE(5338), 1, + sym_type_annotation, + STATE(6285), 1, + sym__initializer, + STATE(6419), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7178), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141267] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7079), 1, + ACTIONS(210), 1, anon_sym_unique, - ACTIONS(7163), 1, - sym_number, - STATE(3792), 1, + STATE(3801), 1, sym_comment, - STATE(7098), 1, + STATE(4303), 1, + sym_type_predicate, + STATE(7185), 1, sym_predefined_type, - STATE(7099), 1, - sym_string, - ACTIONS(7075), 9, + ACTIONS(7206), 2, + sym_identifier, + sym_this, + ACTIONS(212), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -326465,395 +329016,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [140882] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5132), 1, - anon_sym_PIPE, - STATE(3793), 1, - sym_comment, - ACTIONS(5134), 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, - [140911] = 15, + [141301] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_BANG, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7177), 1, + ACTIONS(7208), 1, + anon_sym_BANG, + ACTIONS(7210), 1, anon_sym_QMARK, - STATE(3794), 1, + STATE(3802), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4941), 1, + STATE(5277), 1, sym_type_annotation, - STATE(5708), 1, + STATE(6065), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6591), 1, + STATE(6579), 1, sym__call_signature, - ACTIONS(7167), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140959] = 15, + [141349] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(4521), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_RBRACE, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7212), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7181), 1, - anon_sym_BANG, - ACTIONS(7183), 1, - anon_sym_QMARK, - STATE(3795), 1, + STATE(3803), 1, sym_comment, - STATE(4813), 1, + STATE(4407), 1, sym_formal_parameters, - STATE(5383), 1, - sym_type_annotation, - STATE(6000), 1, - sym__initializer, - STATE(6459), 1, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + STATE(6802), 1, sym_type_parameters, - STATE(6852), 1, - sym__call_signature, - ACTIONS(7179), 3, + ACTIONS(4527), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [141007] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6996), 1, - anon_sym_STAR, - ACTIONS(7000), 1, - anon_sym_LBRACE, - ACTIONS(7185), 1, - sym_identifier, - ACTIONS(7187), 1, - anon_sym_type, - STATE(3796), 1, - sym_comment, - STATE(5500), 1, - sym_import_require_clause, - STATE(5501), 1, - sym_string, - STATE(6543), 1, - sym__import_identifier, - STATE(6725), 1, - sym_import_clause, - ACTIONS(7189), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7318), 2, - sym_namespace_import, - sym_named_imports, - [141055] = 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [141393] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7191), 1, + ACTIONS(7216), 1, anon_sym_BANG, - ACTIONS(7193), 1, + ACTIONS(7218), 1, anon_sym_QMARK, - STATE(3797), 1, + STATE(3804), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5252), 1, + STATE(5183), 1, sym_type_annotation, - STATE(5899), 1, + STATE(5974), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6946), 1, + STATE(6650), 1, sym__call_signature, - ACTIONS(7167), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141103] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - STATE(3798), 1, - sym_comment, - STATE(2441), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 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, - [141135] = 15, + [141441] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7185), 1, + ACTIONS(7220), 1, sym_identifier, - ACTIONS(7187), 1, + ACTIONS(7222), 1, anon_sym_type, - STATE(3799), 1, + STATE(3805), 1, sym_comment, - STATE(5503), 1, + STATE(5425), 1, sym_import_require_clause, - STATE(5508), 1, + STATE(5426), 1, sym_string, - STATE(6543), 1, - sym__import_identifier, - STATE(6817), 1, + STATE(6627), 1, sym_import_clause, - ACTIONS(7189), 2, + STATE(6732), 1, + sym__import_identifier, + ACTIONS(7224), 2, anon_sym_COMMA, anon_sym_from, - STATE(7318), 2, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - [141183] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_BANG, - ACTIONS(7199), 1, - anon_sym_QMARK, - STATE(3800), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(5042), 1, - sym_type_annotation, - STATE(6188), 1, - sym__initializer, - STATE(6405), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - ACTIONS(7195), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141231] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7203), 1, - anon_sym_BANG, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7207), 1, - anon_sym_QMARK, - STATE(3801), 1, - sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(5009), 1, - sym_type_annotation, - STATE(6166), 1, - sym__initializer, - STATE(6244), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7201), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141279] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(7057), 1, - anon_sym_LT, - ACTIONS(7125), 1, - anon_sym_DOT, - STATE(3802), 1, - sym_comment, - STATE(4010), 1, - sym_type_arguments, - ACTIONS(4202), 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, - [141313] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7211), 1, - anon_sym_BANG, - ACTIONS(7213), 1, - anon_sym_QMARK, - STATE(3803), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(5321), 1, - sym_type_annotation, - STATE(6164), 1, - sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6587), 1, - sym__call_signature, - ACTIONS(7209), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141361] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7217), 1, - anon_sym_BANG, - ACTIONS(7219), 1, - anon_sym_QMARK, - STATE(3804), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(4962), 1, - sym_type_annotation, - STATE(6120), 1, - sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6658), 1, - sym__call_signature, - ACTIONS(7215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141409] = 8, + [141489] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(206), 1, + ACTIONS(210), 1, anon_sym_unique, - STATE(3805), 1, + STATE(3806), 1, sym_comment, - STATE(4128), 1, + STATE(3979), 1, sym_type_predicate, - STATE(7277), 1, + STATE(7345), 1, sym_predefined_type, - ACTIONS(7221), 2, + ACTIONS(7226), 2, sym_identifier, sym_this, - ACTIONS(208), 9, + ACTIONS(212), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -326863,347 +329172,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141443] = 13, + [141523] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(4530), 1, + ACTIONS(4531), 1, anon_sym_RBRACE, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7223), 1, + ACTIONS(7212), 1, anon_sym_EQ, - STATE(3806), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(3807), 1, sym_comment, - STATE(4479), 1, + STATE(4407), 1, sym_formal_parameters, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(6555), 1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + STATE(6802), 1, sym_type_parameters, - ACTIONS(4520), 5, + ACTIONS(4527), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [141487] = 15, + [141567] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(4810), 1, + anon_sym_PIPE, + ACTIONS(7064), 1, anon_sym_LT, - ACTIONS(7225), 1, - anon_sym_BANG, - ACTIONS(7227), 1, - anon_sym_QMARK, - STATE(3807), 1, + ACTIONS(7114), 1, + anon_sym_DOT, + STATE(3808), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(5267), 1, - sym_type_annotation, - STATE(6226), 1, - sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6519), 1, - sym__call_signature, - ACTIONS(7209), 3, + STATE(4026), 1, + sym_type_arguments, + ACTIONS(4229), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141535] = 15, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141601] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7231), 1, + ACTIONS(7228), 1, anon_sym_BANG, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(7235), 1, + ACTIONS(7230), 1, anon_sym_QMARK, - STATE(3808), 1, + STATE(3809), 1, sym_comment, - STATE(4286), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4635), 1, - sym__call_signature, - STATE(5032), 1, + STATE(5292), 1, sym_type_annotation, - STATE(5775), 1, + STATE(6134), 1, sym__initializer, - STATE(6561), 1, + STATE(6524), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7229), 3, + ACTIONS(7178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141583] = 15, + [141649] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(4521), 1, + anon_sym_COMMA, + ACTIONS(4540), 1, + anon_sym_RBRACE, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7203), 1, - anon_sym_BANG, - ACTIONS(7233), 1, + ACTIONS(7212), 1, + anon_sym_EQ, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(3809), 1, + STATE(3810), 1, sym_comment, - STATE(4286), 1, + STATE(4407), 1, sym_formal_parameters, - STATE(4789), 1, - sym__call_signature, - STATE(5009), 1, - sym_type_annotation, - STATE(6157), 1, - sym__initializer, - STATE(6561), 1, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + STATE(6802), 1, sym_type_parameters, - ACTIONS(7201), 3, + ACTIONS(4527), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [141631] = 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [141693] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7239), 1, + ACTIONS(7234), 1, anon_sym_BANG, - ACTIONS(7241), 1, + ACTIONS(7236), 1, anon_sym_QMARK, - STATE(3810), 1, + STATE(3811), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5080), 1, + STATE(4865), 1, sym_type_annotation, - STATE(5825), 1, + STATE(5684), 1, sym__initializer, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - STATE(6583), 1, + STATE(6958), 1, sym__call_signature, - ACTIONS(7179), 3, + ACTIONS(7232), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141679] = 15, + [141741] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7243), 1, + ACTIONS(7240), 1, anon_sym_BANG, - ACTIONS(7245), 1, + ACTIONS(7242), 1, anon_sym_QMARK, - STATE(3811), 1, + STATE(3812), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5319), 1, + STATE(5230), 1, sym_type_annotation, - STATE(6081), 1, + STATE(5994), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6585), 1, + STATE(6641), 1, sym__call_signature, - ACTIONS(7209), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7238), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141727] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6996), 1, - anon_sym_STAR, - ACTIONS(7000), 1, - anon_sym_LBRACE, - ACTIONS(7185), 1, - sym_identifier, - ACTIONS(7187), 1, - anon_sym_type, - STATE(3812), 1, - sym_comment, - STATE(5452), 1, - sym_string, - STATE(5453), 1, - sym_import_require_clause, - STATE(6543), 1, - sym__import_identifier, - STATE(6855), 1, - sym_import_clause, - ACTIONS(7189), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7318), 2, - sym_namespace_import, - sym_named_imports, - [141775] = 15, + [141789] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7185), 1, + ACTIONS(7220), 1, sym_identifier, - ACTIONS(7187), 1, + ACTIONS(7222), 1, anon_sym_type, STATE(3813), 1, sym_comment, - STATE(5436), 1, + STATE(5607), 1, sym_import_require_clause, - STATE(5437), 1, + STATE(5608), 1, sym_string, - STATE(6543), 1, - sym__import_identifier, - STATE(6963), 1, + STATE(6442), 1, sym_import_clause, - ACTIONS(7189), 2, + STATE(6732), 1, + sym__import_identifier, + ACTIONS(7224), 2, anon_sym_COMMA, anon_sym_from, - STATE(7318), 2, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - [141823] = 13, + [141837] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COMMA, - ACTIONS(4517), 1, - anon_sym_RBRACE, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7223), 1, + ACTIONS(7176), 1, anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7244), 1, + anon_sym_BANG, + ACTIONS(7246), 1, + anon_sym_QMARK, STATE(3814), 1, sym_comment, - STATE(4479), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - STATE(6555), 1, + STATE(5229), 1, + sym_type_annotation, + STATE(5987), 1, + sym__initializer, + STATE(6594), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(4520), 5, + ACTIONS(7238), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [141867] = 13, + [141885] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COMMA, - ACTIONS(4533), 1, - anon_sym_RBRACE, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7223), 1, + ACTIONS(7176), 1, anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7248), 1, + anon_sym_BANG, + ACTIONS(7250), 1, + anon_sym_QMARK, STATE(3815), 1, sym_comment, - STATE(4479), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6555), 1, + STATE(5340), 1, + sym_type_annotation, + STATE(6286), 1, + sym__initializer, + STATE(6416), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(4520), 5, + ACTIONS(7178), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [141911] = 8, + [141933] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(206), 1, + ACTIONS(210), 1, anon_sym_unique, - STATE(2296), 1, + STATE(2872), 1, sym_type_predicate, STATE(3816), 1, sym_comment, - STATE(7376), 1, + STATE(7455), 1, sym_predefined_type, - ACTIONS(7247), 2, + ACTIONS(7252), 2, sym_identifier, sym_this, - ACTIONS(208), 9, + ACTIONS(212), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -327213,577 +329484,649 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141945] = 15, + [141967] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7254), 1, anon_sym_BANG, - ACTIONS(7251), 1, + ACTIONS(7256), 1, anon_sym_QMARK, STATE(3817), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5342), 1, + STATE(5223), 1, sym_type_annotation, - STATE(6121), 1, + STATE(5955), 1, sym__initializer, - STATE(6459), 1, + STATE(6656), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - STATE(6690), 1, + ACTIONS(7238), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142015] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_BANG, + ACTIONS(7260), 1, + anon_sym_QMARK, + STATE(3818), 1, + sym_comment, + STATE(4786), 1, + sym_formal_parameters, + STATE(5324), 1, + sym_type_annotation, + STATE(6236), 1, + sym__initializer, + STATE(6463), 1, sym__call_signature, - ACTIONS(7179), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141993] = 9, + [142063] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(7007), 1, + anon_sym_STAR, + ACTIONS(7011), 1, + anon_sym_LBRACE, + ACTIONS(7220), 1, + sym_identifier, + ACTIONS(7222), 1, + anon_sym_type, + STATE(3819), 1, + sym_comment, + STATE(5528), 1, + sym_import_require_clause, + STATE(5529), 1, + sym_string, + STATE(6732), 1, + sym__import_identifier, + STATE(6884), 1, + sym_import_clause, + ACTIONS(7224), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7380), 2, + sym_namespace_import, + sym_named_imports, + [142111] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4181), 1, + ACTIONS(4138), 1, anon_sym_LT, - ACTIONS(7255), 1, + ACTIONS(7264), 1, anon_sym_GT, - ACTIONS(7258), 1, + ACTIONS(7267), 1, anon_sym_DOT, - STATE(3695), 1, + STATE(3741), 1, sym_type_arguments, - STATE(3818), 1, + STATE(3820), 1, sym_comment, - ACTIONS(7253), 4, + ACTIONS(7262), 4, anon_sym_LBRACE, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - ACTIONS(4821), 6, + ACTIONS(4810), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [142029] = 15, + [142147] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(7262), 1, + ACTIONS(7269), 1, anon_sym_BANG, - ACTIONS(7264), 1, + ACTIONS(7271), 1, anon_sym_QMARK, - STATE(3819), 1, + STATE(3821), 1, sym_comment, - STATE(4286), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4820), 1, - sym__call_signature, - STATE(4938), 1, + STATE(5222), 1, sym_type_annotation, - STATE(6004), 1, + STATE(5953), 1, sym__initializer, - STATE(6561), 1, + STATE(6661), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7260), 3, + ACTIONS(7238), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142077] = 15, + [142195] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7273), 1, anon_sym_BANG, - ACTIONS(7268), 1, + ACTIONS(7275), 1, anon_sym_QMARK, - STATE(3820), 1, + STATE(3822), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4969), 1, + STATE(5405), 1, sym_type_annotation, - STATE(5718), 1, + STATE(6240), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6722), 1, + STATE(6446), 1, sym__call_signature, - ACTIONS(7167), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142125] = 13, + [142243] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COMMA, - ACTIONS(4524), 1, - anon_sym_RBRACE, - ACTIONS(7175), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7223), 1, - anon_sym_EQ, - STATE(3821), 1, + ACTIONS(7279), 1, + anon_sym_BANG, + ACTIONS(7281), 1, + anon_sym_QMARK, + STATE(3823), 1, sym_comment, - STATE(4479), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - STATE(6555), 1, + STATE(5216), 1, + sym_type_annotation, + STATE(5647), 1, + sym__initializer, + STATE(5951), 1, + sym__call_signature, + STATE(6730), 1, sym_type_parameters, - ACTIONS(4520), 5, + ACTIONS(7277), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [142169] = 15, + [142291] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(7272), 1, + ACTIONS(7285), 1, anon_sym_BANG, - ACTIONS(7274), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(7289), 1, anon_sym_QMARK, - STATE(3822), 1, + STATE(3824), 1, sym_comment, - STATE(4286), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(4682), 1, + STATE(4663), 1, sym__call_signature, - STATE(5221), 1, + STATE(5391), 1, sym_type_annotation, - STATE(6320), 1, + STATE(6283), 1, sym__initializer, - STATE(6561), 1, + STATE(6621), 1, sym_type_parameters, - ACTIONS(7270), 3, + ACTIONS(7283), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142217] = 15, + [142339] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(210), 1, + anon_sym_unique, + STATE(2312), 1, + sym_type_predicate, + STATE(3825), 1, + sym_comment, + STATE(7246), 1, + sym_predefined_type, + ACTIONS(7291), 2, + sym_identifier, + sym_this, + ACTIONS(212), 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, + [142373] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(7007), 1, + anon_sym_STAR, + ACTIONS(7011), 1, + anon_sym_LBRACE, + ACTIONS(7220), 1, + sym_identifier, + ACTIONS(7222), 1, + anon_sym_type, + STATE(3826), 1, + sym_comment, + STATE(5519), 1, + sym_import_require_clause, + STATE(5520), 1, + sym_string, + STATE(6729), 1, + sym_import_clause, + STATE(6732), 1, + sym__import_identifier, + ACTIONS(7224), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7380), 2, + sym_namespace_import, + sym_named_imports, + [142421] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7276), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(7295), 1, anon_sym_BANG, - ACTIONS(7278), 1, + ACTIONS(7297), 1, anon_sym_QMARK, - STATE(3823), 1, + STATE(3827), 1, sym_comment, - STATE(4813), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(5225), 1, + STATE(4847), 1, + sym__call_signature, + STATE(5145), 1, sym_type_annotation, - STATE(6309), 1, + STATE(5877), 1, sym__initializer, - STATE(6355), 1, - sym__call_signature, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - ACTIONS(7179), 3, + ACTIONS(7293), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142265] = 13, + [142469] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_RBRACE, - ACTIONS(7175), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7223), 1, - anon_sym_EQ, - STATE(3824), 1, + ACTIONS(7295), 1, + anon_sym_BANG, + ACTIONS(7299), 1, + anon_sym_QMARK, + STATE(3828), 1, sym_comment, - STATE(4479), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - STATE(6555), 1, + STATE(5145), 1, + sym_type_annotation, + STATE(5801), 1, + sym__call_signature, + STATE(5803), 1, + sym__initializer, + STATE(6730), 1, sym_type_parameters, - ACTIONS(4520), 5, + ACTIONS(7293), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [142517] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + STATE(3829), 1, + sym_comment, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5265), 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_PIPE_RBRACE, - [142309] = 15, + anon_sym_extends, + [142549] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7280), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(7303), 1, anon_sym_BANG, - ACTIONS(7282), 1, + ACTIONS(7305), 1, anon_sym_QMARK, - STATE(3825), 1, + STATE(3830), 1, sym_comment, - STATE(4813), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(5054), 1, + STATE(4754), 1, + sym__call_signature, + STATE(5279), 1, sym_type_annotation, - STATE(5798), 1, + STATE(6081), 1, sym__initializer, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - STATE(6972), 1, - sym__call_signature, - ACTIONS(7167), 3, + ACTIONS(7301), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142357] = 15, + [142597] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7185), 1, + ACTIONS(7220), 1, sym_identifier, - ACTIONS(7187), 1, + ACTIONS(7222), 1, anon_sym_type, - STATE(3826), 1, + STATE(3831), 1, sym_comment, - STATE(5627), 1, + STATE(5637), 1, sym_string, - STATE(5628), 1, + STATE(5638), 1, sym_import_require_clause, - STATE(6543), 1, + STATE(6732), 1, sym__import_identifier, - STATE(6928), 1, + STATE(6932), 1, sym_import_clause, - ACTIONS(7189), 2, + ACTIONS(7224), 2, anon_sym_COMMA, anon_sym_from, - STATE(7318), 2, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - [142405] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(206), 1, - anon_sym_unique, - STATE(3769), 1, - sym_type_predicate, - STATE(3827), 1, - sym_comment, - STATE(7231), 1, - sym_predefined_type, - ACTIONS(7284), 2, - sym_identifier, - sym_this, - ACTIONS(208), 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, - [142439] = 15, + [142645] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7286), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(7309), 1, anon_sym_BANG, - ACTIONS(7288), 1, + ACTIONS(7311), 1, anon_sym_QMARK, - STATE(3828), 1, + STATE(3832), 1, sym_comment, - STATE(4813), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(5307), 1, + STATE(4744), 1, + sym__call_signature, + STATE(5091), 1, sym_type_annotation, - STATE(5916), 1, + STATE(5683), 1, sym__initializer, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - STATE(6936), 1, - sym__call_signature, - ACTIONS(7167), 3, + ACTIONS(7307), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142487] = 15, + [142693] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7290), 1, + ACTIONS(7279), 1, anon_sym_BANG, - ACTIONS(7292), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(7313), 1, anon_sym_QMARK, - STATE(3829), 1, + STATE(3833), 1, sym_comment, - STATE(4813), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(5070), 1, + STATE(4782), 1, + sym__call_signature, + STATE(5216), 1, sym_type_annotation, - STATE(5817), 1, + STATE(5917), 1, sym__initializer, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - STATE(6560), 1, - sym__call_signature, - ACTIONS(7167), 3, + ACTIONS(7277), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142535] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(206), 1, - anon_sym_unique, - STATE(3830), 1, - sym_comment, - STATE(3995), 1, - sym_type_predicate, - STATE(7166), 1, - sym_predefined_type, - ACTIONS(7294), 2, - sym_identifier, - sym_this, - ACTIONS(208), 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, - [142569] = 15, + [142741] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(4521), 1, + anon_sym_COMMA, + ACTIONS(4537), 1, + anon_sym_RBRACE, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7212), 1, + anon_sym_EQ, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7272), 1, - anon_sym_BANG, - ACTIONS(7296), 1, - anon_sym_QMARK, - STATE(3831), 1, + STATE(3834), 1, sym_comment, - STATE(4061), 1, + STATE(4407), 1, sym_formal_parameters, - STATE(5221), 1, - sym_type_annotation, - STATE(6257), 1, - sym__initializer, - STATE(6267), 1, - sym__call_signature, - STATE(6986), 1, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + STATE(6802), 1, sym_type_parameters, - ACTIONS(7270), 3, + ACTIONS(4527), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [142617] = 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [142785] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(7300), 1, + ACTIONS(7317), 1, anon_sym_BANG, - ACTIONS(7302), 1, + ACTIONS(7319), 1, anon_sym_QMARK, - STATE(3832), 1, + STATE(3835), 1, sym_comment, - STATE(4286), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4648), 1, - sym__call_signature, - STATE(5372), 1, + STATE(5147), 1, sym_type_annotation, - STATE(5958), 1, + STATE(5810), 1, sym__initializer, - STATE(6561), 1, + STATE(6767), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7298), 3, + ACTIONS(7315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142665] = 15, + [142833] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(4521), 1, + anon_sym_COMMA, + ACTIONS(4524), 1, + anon_sym_RBRACE, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7212), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7304), 1, - anon_sym_BANG, - ACTIONS(7306), 1, - anon_sym_QMARK, - STATE(3833), 1, + STATE(3836), 1, sym_comment, - STATE(4813), 1, + STATE(4407), 1, sym_formal_parameters, - STATE(5264), 1, - sym_type_annotation, - STATE(6230), 1, - sym__initializer, - STATE(6459), 1, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + STATE(6802), 1, sym_type_parameters, - STATE(6511), 1, - sym__call_signature, - ACTIONS(7209), 3, + ACTIONS(4527), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [142713] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [142877] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(206), 1, - anon_sym_unique, - STATE(2698), 1, - sym_type_predicate, - STATE(3834), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(3837), 1, sym_comment, - STATE(7134), 1, - sym_predefined_type, - ACTIONS(7308), 2, - sym_identifier, - sym_this, - ACTIONS(208), 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, - [142747] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3835), 1, - sym_comment, - ACTIONS(5149), 13, + ACTIONS(5138), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -327797,68 +330140,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142772] = 8, + [142902] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7095), 1, - anon_sym_LT, - ACTIONS(7310), 1, - anon_sym_DOT, - ACTIONS(7312), 1, - anon_sym_is, - STATE(3836), 1, + STATE(3838), 1, sym_comment, - STATE(4242), 1, - sym_type_arguments, - ACTIONS(4202), 9, + ACTIONS(5269), 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, - [142805] = 12, + [142927] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7316), 1, - anon_sym_QMARK, - STATE(3837), 1, + STATE(3839), 1, sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(5158), 1, - sym_type_annotation, - STATE(5161), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7314), 5, + ACTIONS(5286), 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, - [142846] = 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142952] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3838), 1, + STATE(3840), 1, sym_comment, - ACTIONS(5099), 13, + ACTIONS(5355), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -327872,74 +330203,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142871] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [142977] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7318), 1, - anon_sym_LBRACE, - ACTIONS(7322), 1, - sym_html_character_reference, - ACTIONS(7324), 1, - anon_sym_LT_SLASH, - ACTIONS(7326), 1, - anon_sym_LT, - STATE(2430), 1, - sym_jsx_closing_element, - STATE(3839), 1, - sym_comment, - STATE(3899), 1, - sym_jsx_opening_element, - STATE(3931), 1, - aux_sym_jsx_element_repeat1, - ACTIONS(7320), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4668), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [142912] = 14, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, + STATE(3841), 1, + sym_comment, + ACTIONS(5227), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7025), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7029), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(7328), 1, - anon_sym_COLON, - ACTIONS(7330), 1, - anon_sym_GT, - ACTIONS(7332), 1, - anon_sym_SLASH_GT, - STATE(3840), 1, - sym_comment, - STATE(4079), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4080), 1, - sym_type_arguments, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [142957] = 4, + anon_sym_extends, + [143002] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3841), 1, + STATE(3842), 1, sym_comment, - ACTIONS(5099), 13, + ACTIONS(5227), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -327953,43 +330245,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142982] = 12, + [143027] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7336), 1, - anon_sym_QMARK, - STATE(3842), 1, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(7321), 1, + anon_sym_DOT, + ACTIONS(7323), 1, + anon_sym_QMARK_DOT, + STATE(3843), 1, sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(4500), 1, - sym__call_signature, - STATE(4881), 1, - sym_type_annotation, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7334), 5, + ACTIONS(4947), 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, - [143023] = 4, + [143058] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3843), 1, + STATE(3844), 1, sym_comment, - ACTIONS(5099), 13, + ACTIONS(5219), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328003,14 +330290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143048] = 4, + [143083] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3844), 1, + STATE(3845), 1, sym_comment, - ACTIONS(5103), 13, + ACTIONS(5219), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328024,14 +330311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143073] = 4, + [143108] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3845), 1, + STATE(3846), 1, sym_comment, - ACTIONS(5103), 13, + ACTIONS(5286), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328045,241 +330332,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143098] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7318), 1, - anon_sym_LBRACE, - ACTIONS(7322), 1, - sym_html_character_reference, - ACTIONS(7326), 1, - anon_sym_LT, - ACTIONS(7338), 1, - anon_sym_LT_SLASH, - STATE(3846), 1, - sym_comment, - STATE(3899), 1, - sym_jsx_opening_element, - STATE(3931), 1, - aux_sym_jsx_element_repeat1, - STATE(4763), 1, - sym_jsx_closing_element, - ACTIONS(7320), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4668), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [143139] = 5, + [143133] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4329), 1, - anon_sym_PIPE, STATE(3847), 1, sym_comment, - ACTIONS(4849), 12, + ACTIONS(5219), 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, - [143166] = 6, + [143158] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2087), 1, - anon_sym_DOT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, - anon_sym_PIPE, STATE(3848), 1, sym_comment, - ACTIONS(5192), 11, + ACTIONS(5286), 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, - [143195] = 5, + [143183] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4949), 1, - anon_sym_PIPE, STATE(3849), 1, sym_comment, - ACTIONS(4951), 12, + ACTIONS(5227), 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, - [143222] = 5, + [143208] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5055), 1, - anon_sym_PIPE, STATE(3850), 1, sym_comment, - ACTIONS(5057), 12, + ACTIONS(5347), 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, - [143249] = 12, + [143233] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7340), 1, - anon_sym_QMARK, STATE(3851), 1, sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(4881), 1, - sym_type_annotation, - STATE(4882), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7334), 5, + ACTIONS(5351), 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, - [143290] = 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [143258] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_PIPE, STATE(3852), 1, sym_comment, - ACTIONS(4959), 12, + ACTIONS(5351), 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, - [143317] = 12, + [143283] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7344), 1, + ACTIONS(7327), 1, anon_sym_QMARK, STATE(3853), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4537), 1, + STATE(4467), 1, sym__call_signature, - STATE(4855), 1, + STATE(5360), 1, sym_type_annotation, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7342), 5, + ACTIONS(7325), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143358] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [143324] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7318), 1, - anon_sym_LBRACE, - ACTIONS(7322), 1, - sym_html_character_reference, - ACTIONS(7326), 1, - anon_sym_LT, - ACTIONS(7346), 1, - anon_sym_LT_SLASH, - STATE(3047), 1, - sym_jsx_closing_element, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(3854), 1, sym_comment, - STATE(3899), 1, - sym_jsx_opening_element, - STATE(3900), 1, - aux_sym_jsx_element_repeat1, - ACTIONS(7320), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4668), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [143399] = 4, + ACTIONS(5269), 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, + [143349] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3855), 1, sym_comment, - ACTIONS(5103), 13, + ACTIONS(5351), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328293,45 +330529,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143424] = 5, + [143374] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_PIPE, STATE(3856), 1, sym_comment, - ACTIONS(4971), 12, + ACTIONS(5223), 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, - [143451] = 7, + [143399] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(5263), 1, anon_sym_PIPE, - ACTIONS(7057), 1, - anon_sym_LT, STATE(3857), 1, sym_comment, - STATE(3973), 1, - sym_type_arguments, - ACTIONS(4857), 10, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5265), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -328339,14 +330575,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143482] = 4, + [143432] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3858), 1, sym_comment, - ACTIONS(5115), 13, + ACTIONS(5355), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328360,181 +330596,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143507] = 5, + [143457] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_PIPE, STATE(3859), 1, sym_comment, - ACTIONS(4971), 12, + ACTIONS(5355), 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, - [143534] = 5, + [143482] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4949), 1, - anon_sym_PIPE, STATE(3860), 1, sym_comment, - ACTIONS(4951), 12, + ACTIONS(5269), 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, - [143561] = 4, + [143507] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7054), 1, + anon_sym_DOT, + ACTIONS(7058), 1, + anon_sym_LT, + ACTIONS(7329), 1, + anon_sym_COLON, + ACTIONS(7331), 1, + anon_sym_GT, + ACTIONS(7333), 1, + anon_sym_SLASH_GT, STATE(3861), 1, sym_comment, - ACTIONS(5115), 13, + STATE(4175), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4179), 1, + sym_type_arguments, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [143552] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5245), 1, + anon_sym_PIPE, + STATE(3862), 1, + sym_comment, + ACTIONS(5247), 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, - [143586] = 12, + anon_sym_PIPE_RBRACE, + [143579] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7318), 1, + ACTIONS(7335), 1, anon_sym_LBRACE, - ACTIONS(7322), 1, + ACTIONS(7339), 1, sym_html_character_reference, - ACTIONS(7324), 1, + ACTIONS(7341), 1, anon_sym_LT_SLASH, - ACTIONS(7326), 1, + ACTIONS(7343), 1, anon_sym_LT, - STATE(2463), 1, + STATE(2452), 1, sym_jsx_closing_element, - STATE(3839), 1, - aux_sym_jsx_element_repeat1, - STATE(3862), 1, + STATE(3863), 1, sym_comment, - STATE(3899), 1, + STATE(3865), 1, sym_jsx_opening_element, - ACTIONS(7320), 2, + STATE(3875), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(7337), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(4668), 4, + STATE(4678), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [143627] = 4, + [143620] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3863), 1, - sym_comment, - ACTIONS(5115), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7045), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7054), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7058), 1, anon_sym_LT, - anon_sym_extends, - [143652] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7329), 1, anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7348), 1, - anon_sym_QMARK, + ACTIONS(7331), 1, + anon_sym_GT, + ACTIONS(7345), 1, + anon_sym_SLASH_GT, STATE(3864), 1, sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(4513), 1, - sym__call_signature, - STATE(5158), 1, - sym_type_annotation, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7314), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143693] = 4, + STATE(4133), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4135), 1, + sym_type_arguments, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [143665] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3865), 1, - sym_comment, - ACTIONS(5134), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7335), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7339), 1, + sym_html_character_reference, + ACTIONS(7343), 1, anon_sym_LT, - anon_sym_extends, - [143718] = 5, + ACTIONS(7347), 1, + anon_sym_LT_SLASH, + STATE(3891), 1, + aux_sym_jsx_element_repeat1, + STATE(4755), 1, + sym_jsx_closing_element, + ACTIONS(7337), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3865), 2, + sym_jsx_opening_element, + sym_comment, + STATE(4678), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [143704] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4935), 1, + ACTIONS(5124), 1, anon_sym_PIPE, STATE(3866), 1, sym_comment, - ACTIONS(4937), 12, + ACTIONS(5126), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -328547,140 +330801,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143745] = 5, + [143731] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4981), 1, - anon_sym_PIPE, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(7351), 1, + anon_sym_QMARK, STATE(3867), 1, sym_comment, - ACTIONS(4983), 12, + STATE(4041), 1, + sym_formal_parameters, + STATE(5235), 1, + sym__call_signature, + STATE(5236), 1, + sym_type_annotation, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7349), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, [143772] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4348), 1, + ACTIONS(5116), 1, anon_sym_PIPE, STATE(3868), 1, sym_comment, - ACTIONS(4875), 12, + ACTIONS(5118), 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, - [143799] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7352), 1, - anon_sym_COLON, - ACTIONS(7354), 1, - anon_sym_QMARK, - STATE(3869), 1, - sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(4599), 1, - sym__call_signature, - STATE(5067), 1, - sym_type_annotation, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7350), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143840] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7356), 1, - anon_sym_QMARK, - STATE(3870), 1, - sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(4853), 1, - sym__call_signature, - STATE(4855), 1, - sym_type_annotation, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7342), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143881] = 7, + [143799] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5290), 1, + ACTIONS(5100), 1, anon_sym_PIPE, - ACTIONS(7358), 1, - anon_sym_DOT, - ACTIONS(7360), 1, - anon_sym_QMARK_DOT, - STATE(3871), 1, + STATE(3869), 1, sym_comment, - ACTIONS(5292), 10, + ACTIONS(5102), 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, - [143912] = 4, + [143826] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3872), 1, + STATE(3870), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5168), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328694,14 +330895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143937] = 4, + [143851] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3873), 1, + STATE(3871), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5164), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328715,14 +330916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143962] = 4, + [143876] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3874), 1, + STATE(3872), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5168), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328736,35 +330937,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143987] = 4, + [143901] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7335), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, + sym_html_character_reference, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(7353), 1, + anon_sym_LT_SLASH, + STATE(3865), 1, + sym_jsx_opening_element, + STATE(3873), 1, + sym_comment, + STATE(3958), 1, + aux_sym_jsx_element_repeat1, + STATE(4961), 1, + sym_jsx_closing_element, + ACTIONS(7337), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4678), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [143942] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3875), 1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(7357), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_comment, - ACTIONS(5188), 13, + STATE(4041), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5096), 1, + sym_type_annotation, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7355), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [143983] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7335), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, + sym_html_character_reference, + ACTIONS(7341), 1, + anon_sym_LT_SLASH, + ACTIONS(7343), 1, anon_sym_LT, - anon_sym_extends, - [144012] = 4, + STATE(2425), 1, + sym_jsx_closing_element, + STATE(3865), 1, + sym_jsx_opening_element, + STATE(3875), 1, + sym_comment, + STATE(3958), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(7337), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4678), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [144024] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3876), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5164), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328778,14 +331045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144037] = 4, + [144049] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3877), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5142), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328799,60 +331066,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144062] = 5, + [144074] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_PIPE, STATE(3878), 1, sym_comment, - ACTIONS(5035), 12, + ACTIONS(5138), 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, - [144089] = 5, + [144099] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, - anon_sym_PIPE, STATE(3879), 1, sym_comment, - ACTIONS(5031), 12, + ACTIONS(5142), 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, - [144116] = 5, + [144124] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, + ACTIONS(5253), 1, anon_sym_PIPE, STATE(3880), 1, sym_comment, - ACTIONS(5027), 12, + ACTIONS(5255), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -328865,14 +331130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144143] = 4, + [144151] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3881), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5130), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328886,14 +331151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144168] = 4, + [144176] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3882), 1, sym_comment, - ACTIONS(5222), 13, + ACTIONS(5122), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328907,14 +331172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144193] = 4, + [144201] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3883), 1, sym_comment, - ACTIONS(5211), 13, + ACTIONS(5130), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328928,35 +331193,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144218] = 4, + [144226] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7134), 1, + anon_sym_LT, + ACTIONS(7359), 1, + anon_sym_DOT, + ACTIONS(7361), 1, + anon_sym_is, STATE(3884), 1, sym_comment, - ACTIONS(5215), 13, + STATE(4272), 1, + sym_type_arguments, + ACTIONS(4229), 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, - [144243] = 4, + [144259] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3885), 1, sym_comment, - ACTIONS(5211), 13, + ACTIONS(5122), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328970,56 +331239,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144268] = 4, + [144284] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3886), 1, - sym_comment, - ACTIONS(5215), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7335), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7339), 1, + sym_html_character_reference, + ACTIONS(7343), 1, anon_sym_LT, - anon_sym_extends, - [144293] = 4, + ACTIONS(7363), 1, + anon_sym_LT_SLASH, + STATE(3187), 1, + sym_jsx_closing_element, + STATE(3865), 1, + sym_jsx_opening_element, + STATE(3886), 1, + sym_comment, + STATE(3958), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(7337), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4678), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [144325] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(7365), 1, + anon_sym_QMARK, STATE(3887), 1, sym_comment, - ACTIONS(5254), 13, + STATE(4041), 1, + sym_formal_parameters, + STATE(4511), 1, + sym__call_signature, + STATE(5096), 1, + sym_type_annotation, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7355), 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, - [144318] = 4, + anon_sym_PIPE_RBRACE, + [144366] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(3888), 1, sym_comment, - ACTIONS(5222), 13, + ACTIONS(5110), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -329033,169 +331318,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144343] = 4, + [144391] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_QMARK, STATE(3889), 1, sym_comment, - ACTIONS(5268), 13, + STATE(4041), 1, + sym_formal_parameters, + STATE(5122), 1, + sym_type_annotation, + STATE(5123), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7367), 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, - [144368] = 4, + anon_sym_PIPE_RBRACE, + [144432] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5053), 1, + anon_sym_PIPE, STATE(3890), 1, sym_comment, - ACTIONS(5222), 13, + ACTIONS(5055), 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, - [144393] = 4, + anon_sym_PIPE_RBRACE, + [144459] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7335), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, + sym_html_character_reference, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(7347), 1, + anon_sym_LT_SLASH, + STATE(3865), 1, + sym_jsx_opening_element, STATE(3891), 1, sym_comment, - ACTIONS(5254), 13, + STATE(3958), 1, + aux_sym_jsx_element_repeat1, + STATE(4768), 1, + sym_jsx_closing_element, + ACTIONS(7337), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4678), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [144500] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(7371), 1, + anon_sym_QMARK, + STATE(3892), 1, + sym_comment, + STATE(4041), 1, + sym_formal_parameters, + STATE(4418), 1, + sym__call_signature, + STATE(5236), 1, + sym_type_annotation, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7349), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144541] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5049), 1, + anon_sym_PIPE, + STATE(3893), 1, + sym_comment, + ACTIONS(5051), 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, - [144418] = 4, + anon_sym_PIPE_RBRACE, + [144568] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3892), 1, + ACTIONS(5049), 1, + anon_sym_PIPE, + STATE(3894), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5051), 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, - [144443] = 12, + anon_sym_PIPE_RBRACE, + [144595] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7362), 1, + ACTIONS(7373), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3895), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5063), 1, + STATE(5359), 1, sym__call_signature, - STATE(5067), 1, + STATE(5360), 1, sym_type_annotation, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7350), 5, + ACTIONS(7325), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144484] = 4, + [144636] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3894), 1, + ACTIONS(5061), 1, + anon_sym_PIPE, + STATE(3896), 1, sym_comment, - ACTIONS(5304), 13, + ACTIONS(5063), 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, - [144509] = 4, + anon_sym_PIPE_RBRACE, + [144663] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3895), 1, + ACTIONS(4315), 1, + anon_sym_PIPE, + STATE(3897), 1, sym_comment, - ACTIONS(5258), 13, + ACTIONS(4876), 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, - [144534] = 4, + anon_sym_PIPE_RBRACE, + [144690] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3896), 1, + STATE(3898), 1, sym_comment, - ACTIONS(5304), 13, + ACTIONS(5106), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -329209,204 +331565,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144559] = 4, + [144715] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3897), 1, + ACTIONS(5061), 1, + anon_sym_PIPE, + STATE(3899), 1, sym_comment, - ACTIONS(5240), 13, + ACTIONS(5063), 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, - [144584] = 4, + anon_sym_PIPE_RBRACE, + [144742] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(3898), 1, + ACTIONS(4335), 1, + anon_sym_PIPE, + STATE(3900), 1, sym_comment, - ACTIONS(5258), 13, + ACTIONS(4848), 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, - [144609] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [144769] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7318), 1, - anon_sym_LBRACE, - ACTIONS(7322), 1, - sym_html_character_reference, - ACTIONS(7326), 1, - anon_sym_LT, - ACTIONS(7338), 1, - anon_sym_LT_SLASH, - STATE(3846), 1, - aux_sym_jsx_element_repeat1, - STATE(4788), 1, - sym_jsx_closing_element, - ACTIONS(7320), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3899), 2, - sym_jsx_opening_element, - sym_comment, - STATE(4668), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144648] = 12, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7318), 1, - anon_sym_LBRACE, - ACTIONS(7322), 1, - sym_html_character_reference, - ACTIONS(7326), 1, - anon_sym_LT, - ACTIONS(7346), 1, - anon_sym_LT_SLASH, - STATE(3080), 1, - sym_jsx_closing_element, - STATE(3899), 1, - sym_jsx_opening_element, - STATE(3900), 1, + ACTIONS(5229), 1, + anon_sym_PIPE, + STATE(3901), 1, sym_comment, - STATE(3931), 1, - aux_sym_jsx_element_repeat1, - ACTIONS(7320), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4668), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144689] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(5231), 12, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(7025), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7029), 1, - anon_sym_LT, - ACTIONS(7328), 1, - anon_sym_COLON, - ACTIONS(7330), 1, - anon_sym_GT, - ACTIONS(7364), 1, - anon_sym_SLASH_GT, - STATE(3901), 1, - sym_comment, - STATE(4190), 1, - sym_type_arguments, - STATE(4192), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [144734] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144796] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7318), 1, - anon_sym_LBRACE, - ACTIONS(7322), 1, - sym_html_character_reference, - ACTIONS(7326), 1, - anon_sym_LT, - ACTIONS(7366), 1, - anon_sym_LT_SLASH, - STATE(3899), 1, - sym_jsx_opening_element, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5249), 1, + anon_sym_PIPE, STATE(3902), 1, sym_comment, - STATE(3905), 1, - aux_sym_jsx_element_repeat1, - STATE(5133), 1, - sym_jsx_closing_element, - ACTIONS(7320), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4668), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144775] = 12, + ACTIONS(5251), 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, + [144823] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, + ACTIONS(7377), 1, + anon_sym_COLON, + ACTIONS(7379), 1, anon_sym_QMARK, STATE(3903), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5341), 1, + STATE(4347), 1, sym__call_signature, - STATE(5343), 1, + STATE(5157), 1, sym_type_annotation, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7368), 5, + ACTIONS(7375), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144816] = 5, + [144864] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4356), 1, + ACTIONS(5092), 1, anon_sym_PIPE, STATE(3904), 1, sym_comment, - ACTIONS(4841), 12, + ACTIONS(5094), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -329419,120 +331704,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144843] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [144891] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7318), 1, - anon_sym_LBRACE, - ACTIONS(7322), 1, - sym_html_character_reference, - ACTIONS(7326), 1, - anon_sym_LT, - ACTIONS(7366), 1, - anon_sym_LT_SLASH, - STATE(3899), 1, - sym_jsx_opening_element, - STATE(3905), 1, - sym_comment, - STATE(3931), 1, - aux_sym_jsx_element_repeat1, - STATE(5278), 1, - sym_jsx_closing_element, - ACTIONS(7320), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4668), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144884] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5349), 1, + ACTIONS(4331), 1, anon_sym_PIPE, - STATE(3906), 1, + STATE(3905), 1, sym_comment, - ACTIONS(5351), 12, + ACTIONS(4856), 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, - [144911] = 12, + [144918] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7335), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, + sym_html_character_reference, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(7353), 1, + anon_sym_LT_SLASH, + STATE(3865), 1, + sym_jsx_opening_element, + STATE(3873), 1, + aux_sym_jsx_element_repeat1, + STATE(3906), 1, + sym_comment, + STATE(4970), 1, + sym_jsx_closing_element, + ACTIONS(7337), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4678), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [144959] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7335), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, + sym_html_character_reference, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(7363), 1, + anon_sym_LT_SLASH, + STATE(3083), 1, + sym_jsx_closing_element, + STATE(3865), 1, + sym_jsx_opening_element, + STATE(3886), 1, + aux_sym_jsx_element_repeat1, + STATE(3907), 1, + sym_comment, + ACTIONS(7337), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4678), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [145000] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7372), 1, + ACTIONS(7381), 1, anon_sym_QMARK, - STATE(3907), 1, + STATE(3908), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4566), 1, + STATE(4493), 1, sym__call_signature, - STATE(5343), 1, + STATE(5122), 1, sym_type_annotation, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7368), 5, + ACTIONS(7367), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144952] = 5, + [145041] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4985), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - STATE(3908), 1, + ACTIONS(7064), 1, + anon_sym_LT, + STATE(3909), 1, sym_comment, - ACTIONS(4987), 12, + STATE(4029), 1, + sym_type_arguments, + ACTIONS(4860), 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, - [144979] = 6, + [145072] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2247), 1, + ACTIONS(2158), 1, anon_sym_DOT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, + ACTIONS(5148), 1, anon_sym_PIPE, - STATE(3909), 1, + STATE(3910), 1, sym_comment, - ACTIONS(5192), 11, + ACTIONS(5150), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -329544,451 +331860,508 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [145008] = 5, + [145101] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5327), 1, + ACTIONS(5148), 1, anon_sym_PIPE, - STATE(3910), 1, + STATE(3911), 1, sym_comment, - ACTIONS(5329), 12, + ACTIONS(5150), 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, - [145035] = 8, + [145130] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4977), 1, + ACTIONS(7383), 1, + anon_sym_QMARK, + STATE(3912), 1, + sym_comment, + STATE(4041), 1, + sym_formal_parameters, + STATE(5156), 1, + sym__call_signature, + STATE(5157), 1, + sym_type_annotation, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7375), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145171] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5241), 1, anon_sym_PIPE, - STATE(3911), 1, + STATE(3913), 1, sym_comment, - STATE(2441), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 8, + ACTIONS(5243), 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, - [145068] = 13, + [145198] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7058), 1, anon_sym_LT, - STATE(3912), 1, + ACTIONS(7385), 1, + anon_sym_GT, + ACTIONS(7387), 1, + anon_sym_DOT, + ACTIONS(7389), 1, + anon_sym_SLASH_GT, + STATE(3914), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(5005), 1, - sym_type_annotation, - STATE(5737), 1, - sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6816), 1, - sym__call_signature, - ACTIONS(7374), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145110] = 11, + STATE(4183), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4184), 1, + sym_type_arguments, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [145240] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(3913), 1, + ACTIONS(4858), 1, + anon_sym_PIPE, + ACTIONS(7391), 1, + anon_sym_is, + STATE(3915), 1, sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(4883), 1, - sym_type_annotation, - STATE(4884), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7376), 5, + ACTIONS(4860), 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, - [145148] = 11, + [145268] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(3914), 1, - sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(5149), 1, - sym__call_signature, - STATE(5150), 1, - sym_type_annotation, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7378), 5, - sym__automatic_semicolon, + ACTIONS(4521), 1, anon_sym_COMMA, + ACTIONS(4524), 1, anon_sym_RBRACE, + ACTIONS(7212), 1, + anon_sym_EQ, + STATE(3916), 1, + sym_comment, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [145186] = 11, + [145302] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - STATE(3915), 1, + STATE(3917), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5169), 1, - sym_type_annotation, - STATE(5170), 1, + STATE(5086), 1, sym__call_signature, - STATE(6986), 1, + STATE(5093), 1, + sym_type_annotation, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7380), 5, + ACTIONS(7393), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145224] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7029), 1, - anon_sym_LT, - ACTIONS(7382), 1, - anon_sym_GT, - ACTIONS(7384), 1, - anon_sym_DOT, - ACTIONS(7386), 1, - anon_sym_SLASH_GT, - STATE(3916), 1, - sym_comment, - STATE(4223), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4224), 1, - sym_type_arguments, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [145266] = 13, + [145340] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(3917), 1, + STATE(3918), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4956), 1, + STATE(4853), 1, sym_type_annotation, - STATE(6114), 1, + STATE(5675), 1, sym__initializer, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - STATE(6669), 1, + STATE(6976), 1, sym__call_signature, - ACTIONS(7388), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145308] = 13, + [145382] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7287), 1, anon_sym_LPAREN, - STATE(3918), 1, + STATE(3919), 1, sym_comment, - STATE(4286), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(4630), 1, + STATE(4780), 1, sym__call_signature, - STATE(5018), 1, + STATE(5217), 1, sym_type_annotation, - STATE(5757), 1, + STATE(5930), 1, sym__initializer, - STATE(6561), 1, + STATE(6621), 1, sym_type_parameters, - ACTIONS(7390), 3, + ACTIONS(7397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145350] = 11, + [145424] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(3919), 1, + STATE(3920), 1, sym_comment, - STATE(4061), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4565), 1, - sym__call_signature, - STATE(5354), 1, + STATE(4873), 1, sym_type_annotation, - STATE(6986), 1, + STATE(5694), 1, + sym__initializer, + STATE(6768), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7392), 5, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145388] = 10, + [145466] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7223), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(3920), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(3921), 1, sym_comment, - STATE(4479), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6555), 1, + STATE(5291), 1, + sym_type_annotation, + STATE(6118), 1, + sym__initializer, + STATE(6528), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(4789), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4520), 5, + ACTIONS(7399), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145424] = 14, + [145508] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7185), 1, + ACTIONS(7220), 1, sym_identifier, - ACTIONS(7187), 1, + ACTIONS(7222), 1, anon_sym_type, - STATE(3921), 1, + STATE(3922), 1, sym_comment, - STATE(5436), 1, - sym_import_require_clause, - STATE(5437), 1, + STATE(5637), 1, sym_string, - STATE(6543), 1, + STATE(5638), 1, + sym_import_require_clause, + STATE(6732), 1, sym__import_identifier, - STATE(6963), 1, + STATE(6932), 1, sym_import_clause, - STATE(7318), 2, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - [145468] = 13, + [145552] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(3922), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(3923), 1, sym_comment, - STATE(4813), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4970), 1, + STATE(5278), 1, sym_type_annotation, - STATE(6125), 1, + STATE(6097), 1, + sym__call_signature, + STATE(6100), 1, sym__initializer, - STATE(6459), 1, + STATE(6730), 1, sym_type_parameters, - STATE(6635), 1, - sym__call_signature, - ACTIONS(7388), 3, + ACTIONS(7401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145510] = 13, + [145594] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(3923), 1, + STATE(3924), 1, sym_comment, - STATE(4286), 1, - sym_formal_parameters, STATE(4786), 1, - sym__call_signature, - STATE(5022), 1, + sym_formal_parameters, + STATE(5079), 1, sym_type_annotation, - STATE(6176), 1, + STATE(5879), 1, sym__initializer, - STATE(6561), 1, + STATE(6765), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7394), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145552] = 5, + [145636] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4871), 1, - anon_sym_PIPE, - STATE(3924), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(3925), 1, sym_comment, - ACTIONS(4873), 11, + STATE(4127), 1, + sym_formal_parameters, + STATE(4737), 1, + sym__call_signature, + STATE(5278), 1, + sym_type_annotation, + STATE(6072), 1, + sym__initializer, + STATE(6621), 1, + sym_type_parameters, + ACTIONS(7401), 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, - [145578] = 11, + [145678] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(3925), 1, + STATE(3926), 1, sym_comment, - STATE(4061), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4496), 1, - sym__call_signature, - STATE(5150), 1, + STATE(5288), 1, sym_type_annotation, - STATE(6986), 1, + STATE(6111), 1, + sym__initializer, + STATE(6531), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7378), 5, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [145720] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4521), 1, + anon_sym_COMMA, + ACTIONS(4540), 1, anon_sym_RBRACE, + ACTIONS(7212), 1, + anon_sym_EQ, + STATE(3927), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [145616] = 6, + [145754] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7405), 1, + anon_sym_QMARK, + STATE(3741), 1, + sym_type_arguments, + STATE(3928), 1, + sym_comment, + STATE(6785), 1, + sym_type_annotation, + ACTIONS(4229), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [145790] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4843), 1, + ACTIONS(4868), 1, anon_sym_PIPE, - ACTIONS(7127), 1, + ACTIONS(7116), 1, anon_sym_is, - STATE(3926), 1, + STATE(3929), 1, sym_comment, - ACTIONS(4845), 10, + ACTIONS(4870), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -329999,252 +332372,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [145644] = 14, + [145818] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7185), 1, + ACTIONS(7220), 1, sym_identifier, - ACTIONS(7187), 1, + ACTIONS(7222), 1, anon_sym_type, - STATE(3927), 1, + STATE(3930), 1, sym_comment, - STATE(5503), 1, + STATE(5519), 1, sym_import_require_clause, - STATE(5508), 1, + STATE(5520), 1, sym_string, - STATE(6543), 1, - sym__import_identifier, - STATE(6817), 1, + STATE(6729), 1, sym_import_clause, - STATE(7318), 2, + STATE(6732), 1, + sym__import_identifier, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - [145688] = 13, + [145862] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(3928), 1, + STATE(3931), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5047), 1, + STATE(5228), 1, sym_type_annotation, - STATE(5786), 1, + STATE(5982), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6949), 1, + STATE(6556), 1, sym__call_signature, - ACTIONS(7396), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145730] = 13, + [145904] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(3929), 1, + STATE(3932), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5198), 1, + STATE(5078), 1, sym_type_annotation, - STATE(6332), 1, + STATE(5878), 1, sym__initializer, - STATE(6354), 1, + STATE(6764), 1, sym__call_signature, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7396), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145772] = 11, + [145946] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - STATE(3930), 1, + STATE(3933), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4502), 1, + STATE(4522), 1, sym__call_signature, - STATE(4883), 1, + STATE(5341), 1, sym_type_annotation, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7376), 5, + ACTIONS(7410), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145810] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7398), 1, - anon_sym_LBRACE, - ACTIONS(7404), 1, - sym_html_character_reference, - ACTIONS(7407), 1, - anon_sym_LT_SLASH, - ACTIONS(7409), 1, - anon_sym_LT, - STATE(3899), 1, - sym_jsx_opening_element, - ACTIONS(7401), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3931), 2, - sym_comment, - aux_sym_jsx_element_repeat1, - STATE(4668), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [145846] = 13, + [145984] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(3932), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(3934), 1, sym_comment, - STATE(4813), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(5214), 1, + STATE(4752), 1, + sym__call_signature, + STATE(5101), 1, sym_type_annotation, - STATE(6334), 1, + STATE(5898), 1, sym__initializer, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - STATE(6473), 1, - sym__call_signature, - ACTIONS(7396), 3, + ACTIONS(7412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145888] = 13, + [146026] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - STATE(3933), 1, + STATE(3935), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5409), 1, + STATE(5341), 1, sym_type_annotation, - STATE(5921), 1, - sym__initializer, - STATE(5922), 1, + STATE(5343), 1, sym__call_signature, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7412), 3, + ACTIONS(7410), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145930] = 13, + anon_sym_PIPE_RBRACE, + [146064] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1955), 1, + anon_sym_PIPE, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(3934), 1, + STATE(3936), 1, sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(5222), 1, - sym_type_annotation, - STATE(6273), 1, - sym__initializer, - STATE(6276), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7414), 3, + ACTIONS(2037), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145972] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [146090] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(4530), 1, + ACTIONS(4531), 1, anon_sym_RBRACE, - ACTIONS(7223), 1, + ACTIONS(7212), 1, anon_sym_EQ, - STATE(3935), 1, + STATE(3937), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, + STATE(5848), 1, aux_sym_object_repeat1, - ACTIONS(4520), 7, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -330252,166 +332589,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [146006] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7029), 1, - anon_sym_LT, - ACTIONS(7382), 1, - anon_sym_GT, - ACTIONS(7384), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_SLASH_GT, - STATE(3936), 1, - sym_comment, - STATE(4193), 1, - sym_type_arguments, - STATE(4211), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [146048] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [146124] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6996), 1, - anon_sym_STAR, - ACTIONS(7000), 1, - anon_sym_LBRACE, - ACTIONS(7185), 1, - sym_identifier, - ACTIONS(7187), 1, - anon_sym_type, - STATE(3937), 1, - sym_comment, - STATE(5627), 1, - sym_string, - STATE(5628), 1, - sym_import_require_clause, - STATE(6543), 1, - sym__import_identifier, - STATE(6928), 1, - sym_import_clause, - STATE(7318), 2, - sym_namespace_import, - sym_named_imports, - [146092] = 13, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7029), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7382), 1, - anon_sym_GT, - ACTIONS(7384), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - anon_sym_SLASH_GT, STATE(3938), 1, sym_comment, - STATE(4089), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4090), 1, - sym_type_arguments, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [146134] = 13, + STATE(4786), 1, + sym_formal_parameters, + STATE(5348), 1, + sym_type_annotation, + STATE(6296), 1, + sym__initializer, + STATE(6406), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7399), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146166] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, STATE(3939), 1, sym_comment, - STATE(4813), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(5217), 1, sym_type_annotation, - STATE(5834), 1, + STATE(5940), 1, + sym__call_signature, + STATE(5941), 1, sym__initializer, - STATE(6459), 1, + STATE(6730), 1, sym_type_parameters, - STATE(6990), 1, - sym__call_signature, - ACTIONS(7396), 3, + ACTIONS(7397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146176] = 9, + [146208] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_RBRACE, - ACTIONS(7223), 1, + ACTIONS(7176), 1, anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, STATE(3940), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 7, + STATE(4786), 1, + sym_formal_parameters, + STATE(5334), 1, + sym_type_annotation, + STATE(6275), 1, + sym__initializer, + STATE(6436), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7399), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + [146250] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7184), 1, anon_sym_COLON, + ACTIONS(7186), 1, anon_sym_LT, - anon_sym_QMARK, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(3941), 1, + sym_comment, + STATE(4041), 1, + sym_formal_parameters, + STATE(4507), 1, + sym__call_signature, + STATE(5093), 1, + sym_type_annotation, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7393), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146210] = 9, + [146288] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(4533), 1, + ACTIONS(4537), 1, anon_sym_RBRACE, - ACTIONS(7223), 1, + ACTIONS(7212), 1, anon_sym_EQ, - STATE(3941), 1, + STATE(3942), 1, sym_comment, - STATE(5720), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(5721), 1, + STATE(6198), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4520), 7, + ACTIONS(4527), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -330419,745 +332728,739 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [146244] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6996), 1, - anon_sym_STAR, - ACTIONS(7000), 1, - anon_sym_LBRACE, - ACTIONS(7185), 1, - sym_identifier, - ACTIONS(7187), 1, - anon_sym_type, - STATE(3942), 1, - sym_comment, - STATE(5500), 1, - sym_import_require_clause, - STATE(5501), 1, - sym_string, - STATE(6543), 1, - sym__import_identifier, - STATE(6725), 1, - sym_import_clause, - STATE(7318), 2, - sym_namespace_import, - sym_named_imports, - [146288] = 13, + [146322] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, STATE(3943), 1, sym_comment, - STATE(4286), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4702), 1, - sym__call_signature, - STATE(5222), 1, + STATE(5294), 1, sym_type_annotation, - STATE(6307), 1, + STATE(6155), 1, sym__initializer, - STATE(6561), 1, + STATE(6514), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7414), 3, + ACTIONS(7399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146330] = 9, + [146364] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COMMA, - ACTIONS(4517), 1, - anon_sym_RBRACE, - ACTIONS(7223), 1, - anon_sym_EQ, + ACTIONS(4862), 1, + anon_sym_PIPE, STATE(3944), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 7, + ACTIONS(4864), 11, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [146364] = 11, + [146390] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, STATE(3945), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4536), 1, + STATE(4476), 1, sym__call_signature, - STATE(4865), 1, + STATE(5138), 1, sym_type_annotation, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7420), 5, + ACTIONS(7414), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146402] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [146428] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7029), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7382), 1, - anon_sym_GT, - ACTIONS(7384), 1, - anon_sym_DOT, - ACTIONS(7422), 1, - anon_sym_SLASH_GT, + ACTIONS(7214), 1, + anon_sym_LPAREN, STATE(3946), 1, sym_comment, - STATE(4130), 1, - sym_type_arguments, - STATE(4207), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [146444] = 13, + STATE(4041), 1, + sym_formal_parameters, + STATE(5361), 1, + sym__call_signature, + STATE(5363), 1, + sym_type_annotation, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7416), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146466] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, STATE(3947), 1, sym_comment, - STATE(4286), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4653), 1, + STATE(4468), 1, sym__call_signature, - STATE(5409), 1, + STATE(5363), 1, sym_type_annotation, - STATE(5965), 1, - sym__initializer, - STATE(6561), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7412), 3, + ACTIONS(7416), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146486] = 13, + anon_sym_PIPE_RBRACE, + [146504] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, STATE(3948), 1, sym_comment, - STATE(4813), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5025), 1, + STATE(5138), 1, sym_type_annotation, - STATE(5950), 1, - sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6880), 1, + STATE(5141), 1, sym__call_signature, - ACTIONS(7424), 3, + STATE(6730), 1, + sym_type_parameters, + ACTIONS(7414), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146528] = 14, + anon_sym_PIPE_RBRACE, + [146542] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(7007), 1, anon_sym_STAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - ACTIONS(7185), 1, + ACTIONS(7220), 1, sym_identifier, - ACTIONS(7187), 1, + ACTIONS(7222), 1, anon_sym_type, STATE(3949), 1, sym_comment, - STATE(5452), 1, - sym_string, - STATE(5453), 1, + STATE(5607), 1, sym_import_require_clause, - STATE(6543), 1, - sym__import_identifier, - STATE(6855), 1, + STATE(5608), 1, + sym_string, + STATE(6442), 1, sym_import_clause, - STATE(7318), 2, + STATE(6732), 1, + sym__import_identifier, + STATE(7380), 2, sym_namespace_import, sym_named_imports, - [146572] = 13, + [146586] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, STATE(3950), 1, sym_comment, - STATE(4813), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(5275), 1, + STATE(4845), 1, + sym__call_signature, + STATE(5146), 1, sym_type_annotation, - STATE(5904), 1, + STATE(5807), 1, sym__initializer, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - STATE(6941), 1, - sym__call_signature, - ACTIONS(7374), 3, + ACTIONS(7418), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146614] = 13, + [146628] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, STATE(3951), 1, sym_comment, - STATE(4813), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(5184), 1, + STATE(4672), 1, + sym__call_signature, + STATE(5390), 1, sym_type_annotation, - STATE(5874), 1, + STATE(6295), 1, sym__initializer, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - STATE(6961), 1, - sym__call_signature, - ACTIONS(7374), 3, + ACTIONS(7420), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146656] = 13, + [146670] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, STATE(3952), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4915), 1, + STATE(5399), 1, sym_type_annotation, - STATE(5681), 1, + STATE(6271), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6517), 1, - sym__call_signature, - ACTIONS(7374), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146698] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(3953), 1, - sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(4516), 1, + STATE(6432), 1, sym__call_signature, - STATE(5169), 1, - sym_type_annotation, - STATE(6986), 1, + STATE(6818), 1, sym_type_parameters, - ACTIONS(7380), 5, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146736] = 13, + [146712] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(3954), 1, + STATE(3953), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5311), 1, + STATE(5407), 1, sym_type_annotation, - STATE(6180), 1, + STATE(6231), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6529), 1, + STATE(6465), 1, sym__call_signature, - ACTIONS(7426), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146778] = 13, + [146754] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(3955), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_comment, - STATE(4813), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5312), 1, + STATE(5238), 1, + sym__call_signature, + STATE(5239), 1, sym_type_annotation, - STATE(6179), 1, - sym__initializer, - STATE(6459), 1, + STATE(6730), 1, sym_type_parameters, - STATE(6461), 1, - sym__call_signature, - ACTIONS(7396), 3, + ACTIONS(7424), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146820] = 9, + anon_sym_PIPE_RBRACE, + [146792] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COMMA, - ACTIONS(4524), 1, - anon_sym_RBRACE, - ACTIONS(7223), 1, - anon_sym_EQ, - STATE(3956), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(7007), 1, + anon_sym_STAR, + ACTIONS(7011), 1, + anon_sym_LBRACE, + ACTIONS(7220), 1, + sym_identifier, + ACTIONS(7222), 1, + anon_sym_type, + STATE(3955), 1, sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [146854] = 11, + STATE(5528), 1, + sym_import_require_clause, + STATE(5529), 1, + sym_string, + STATE(6732), 1, + sym__import_identifier, + STATE(6884), 1, + sym_import_clause, + STATE(7380), 2, + sym_namespace_import, + sym_named_imports, + [146836] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - STATE(3957), 1, + STATE(3956), 1, sym_comment, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4864), 1, + STATE(4421), 1, sym__call_signature, - STATE(4865), 1, + STATE(5239), 1, sym_type_annotation, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - ACTIONS(7420), 5, + ACTIONS(7424), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146892] = 13, + [146874] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7212), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(3958), 1, + STATE(3957), 1, sym_comment, - STATE(4813), 1, + STATE(4407), 1, sym_formal_parameters, - STATE(5377), 1, - sym_type_annotation, - STATE(6042), 1, - sym__initializer, - STATE(6459), 1, + STATE(6802), 1, sym_type_parameters, - STATE(6769), 1, - sym__call_signature, - ACTIONS(7396), 3, - sym__automatic_semicolon, + ACTIONS(4794), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4527), 5, + sym__automatic_semicolon, anon_sym_SEMI, - [146934] = 13, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146910] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7426), 1, + anon_sym_LBRACE, + ACTIONS(7432), 1, + sym_html_character_reference, + ACTIONS(7435), 1, + anon_sym_LT_SLASH, + ACTIONS(7437), 1, + anon_sym_LT, + STATE(3865), 1, + sym_jsx_opening_element, + ACTIONS(7429), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3958), 2, + sym_comment, + aux_sym_jsx_element_repeat1, + STATE(4678), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [146946] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, STATE(3959), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5105), 1, + STATE(5171), 1, sym_type_annotation, - STATE(6254), 1, + STATE(5952), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6480), 1, + STATE(6680), 1, sym__call_signature, - ACTIONS(7388), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146976] = 10, + [146988] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(6984), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(6990), 1, - anon_sym_DOT, - ACTIONS(7428), 1, - anon_sym_QMARK, - STATE(3695), 1, - sym_type_arguments, STATE(3960), 1, sym_comment, - STATE(6525), 1, + STATE(4786), 1, + sym_formal_parameters, + STATE(5179), 1, sym_type_annotation, - ACTIONS(4202), 6, + STATE(5964), 1, + sym__initializer, + STATE(6651), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7422), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [147012] = 5, + anon_sym_SEMI, + [147030] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1980), 1, - anon_sym_PIPE, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(7007), 1, + anon_sym_STAR, + ACTIONS(7011), 1, + anon_sym_LBRACE, + ACTIONS(7220), 1, + sym_identifier, + ACTIONS(7222), 1, + anon_sym_type, STATE(3961), 1, sym_comment, - ACTIONS(2030), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [147038] = 13, + STATE(5425), 1, + sym_import_require_clause, + STATE(5426), 1, + sym_string, + STATE(6627), 1, + sym_import_clause, + STATE(6732), 1, + sym__import_identifier, + STATE(7380), 2, + sym_namespace_import, + sym_named_imports, + [147074] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7058), 1, anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, + ACTIONS(7385), 1, + anon_sym_GT, + ACTIONS(7387), 1, + anon_sym_DOT, + ACTIONS(7440), 1, + anon_sym_SLASH_GT, STATE(3962), 1, sym_comment, - STATE(4286), 1, - sym_formal_parameters, - STATE(4750), 1, - sym__call_signature, - STATE(5135), 1, - sym_type_annotation, - STATE(6262), 1, - sym__initializer, - STATE(6561), 1, - sym_type_parameters, - ACTIONS(7431), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147080] = 7, + STATE(4164), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4169), 1, + sym_type_arguments, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [147116] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7095), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7058), 1, anon_sym_LT, - ACTIONS(7310), 1, + ACTIONS(7385), 1, + anon_sym_GT, + ACTIONS(7387), 1, anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_SLASH_GT, STATE(3963), 1, sym_comment, - STATE(4242), 1, + STATE(4167), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4170), 1, sym_type_arguments, - ACTIONS(4202), 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, - [147110] = 11, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [147158] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, + ACTIONS(4521), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_RBRACE, + ACTIONS(7212), 1, + anon_sym_EQ, STATE(3964), 1, sym_comment, - STATE(4061), 1, - sym_formal_parameters, - STATE(5353), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_annotation, - STATE(6986), 1, - sym_type_parameters, - ACTIONS(7392), 5, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [147148] = 13, + [147192] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, STATE(3965), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4894), 1, + STATE(5280), 1, sym_type_annotation, - STATE(6063), 1, + STATE(6074), 1, sym__initializer, - STATE(6459), 1, - sym_type_parameters, - STATE(6740), 1, + STATE(6653), 1, sym__call_signature, - ACTIONS(7388), 3, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147190] = 6, + [147234] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(7127), 1, - anon_sym_is, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7186), 1, + anon_sym_LT, STATE(3966), 1, sym_comment, - ACTIONS(4853), 10, + STATE(4786), 1, + sym_formal_parameters, + STATE(5269), 1, + sym_type_annotation, + STATE(6046), 1, + sym__initializer, + STATE(6595), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + ACTIONS(7422), 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, - [147218] = 6, + [147276] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, - anon_sym_PIPE, - ACTIONS(7433), 1, - anon_sym_is, + ACTIONS(7134), 1, + anon_sym_LT, + ACTIONS(7359), 1, + anon_sym_DOT, STATE(3967), 1, sym_comment, - ACTIONS(4857), 10, + STATE(4272), 1, + sym_type_arguments, + ACTIONS(4229), 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, - [147246] = 5, + [147306] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5357), 1, - anon_sym_PIPE, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7058), 1, + anon_sym_LT, + ACTIONS(7385), 1, + anon_sym_GT, + ACTIONS(7387), 1, + anon_sym_DOT, + ACTIONS(7444), 1, + anon_sym_SLASH_GT, STATE(3968), 1, sym_comment, - ACTIONS(5359), 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, - [147271] = 5, + STATE(4101), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4103), 1, + sym_type_arguments, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [147348] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5274), 1, + ACTIONS(4872), 1, anon_sym_PIPE, + ACTIONS(7116), 1, + anon_sym_is, STATE(3969), 1, sym_comment, - ACTIONS(5276), 10, + ACTIONS(4874), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331168,16 +333471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147296] = 5, + [147376] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4939), 1, + ACTIONS(5337), 1, anon_sym_PIPE, + ACTIONS(7446), 1, + anon_sym_extends, STATE(3970), 1, sym_comment, - ACTIONS(4941), 10, + ACTIONS(5339), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331186,18 +333491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147321] = 5, + [147403] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3232), 1, + ACTIONS(5096), 1, anon_sym_PIPE, STATE(3971), 1, sym_comment, - ACTIONS(3448), 10, + ACTIONS(5098), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331208,35 +333512,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147346] = 4, + [147428] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5184), 1, + anon_sym_PIPE, STATE(3972), 1, sym_comment, - ACTIONS(4959), 11, + ACTIONS(5186), 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, - [147369] = 5, + anon_sym_PIPE_RBRACE, + [147453] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5308), 1, + ACTIONS(5180), 1, anon_sym_PIPE, STATE(3973), 1, sym_comment, - ACTIONS(5310), 10, + ACTIONS(5182), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331247,122 +333552,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147394] = 7, + [147478] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_PIPE, - ACTIONS(7439), 1, - anon_sym_extends, STATE(3974), 1, sym_comment, - ACTIONS(4941), 8, + ACTIONS(4527), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [147423] = 5, + [147501] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_PIPE, STATE(3975), 1, sym_comment, - ACTIONS(4975), 10, + ACTIONS(5231), 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, - [147448] = 6, + [147524] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7095), 1, - anon_sym_LT, + ACTIONS(3253), 1, + anon_sym_PIPE, STATE(3976), 1, sym_comment, - STATE(4250), 1, - sym_type_arguments, - ACTIONS(4857), 9, + ACTIONS(3449), 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, - [147475] = 5, + anon_sym_PIPE_RBRACE, + [147549] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3200), 1, - anon_sym_PIPE, STATE(3977), 1, sym_comment, - ACTIONS(3536), 10, + ACTIONS(5251), 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, - [147500] = 8, + [147572] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7134), 1, anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, STATE(3978), 1, sym_comment, - STATE(4479), 1, - sym_formal_parameters, - STATE(6555), 1, - sym_type_parameters, - ACTIONS(4520), 7, + STATE(4273), 1, + sym_type_arguments, + ACTIONS(4860), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [147531] = 5, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147599] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5043), 1, + ACTIONS(4868), 1, anon_sym_PIPE, STATE(3979), 1, sym_comment, - ACTIONS(5045), 10, + ACTIONS(4870), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331373,77 +333670,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147556] = 6, + [147624] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5059), 1, - anon_sym_PIPE, - ACTIONS(7441), 1, - anon_sym_LBRACK, STATE(3980), 1, sym_comment, - ACTIONS(5061), 9, + ACTIONS(5094), 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, - [147583] = 5, + [147647] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5170), 1, - anon_sym_PIPE, STATE(3981), 1, sym_comment, - ACTIONS(5172), 10, + ACTIONS(5150), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147608] = 5, + [147672] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2158), 1, + anon_sym_DOT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5166), 1, - anon_sym_PIPE, STATE(3982), 1, sym_comment, - ACTIONS(5168), 10, + ACTIONS(5150), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147633] = 5, + [147697] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5162), 1, + ACTIONS(4995), 1, anon_sym_PIPE, STATE(3983), 1, sym_comment, - ACTIONS(5164), 10, + ACTIONS(4997), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331454,16 +333749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147658] = 5, + [147722] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5049), 1, + ACTIONS(4991), 1, anon_sym_PIPE, + ACTIONS(7448), 1, + anon_sym_AMP, STATE(3984), 1, sym_comment, - ACTIONS(5051), 10, + ACTIONS(4993), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331471,48 +333768,42 @@ 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, - [147683] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [147749] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7443), 1, - sym_identifier, - ACTIONS(7445), 1, - anon_sym_type, - ACTIONS(7447), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_RBRACE, - ACTIONS(7451), 1, - anon_sym_typeof, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5316), 1, + anon_sym_PIPE, STATE(3985), 1, sym_comment, - STATE(5427), 1, - sym_string, - STATE(5743), 1, - sym_import_specifier, - STATE(6851), 1, - sym__import_identifier, - STATE(7127), 1, - sym__module_export_name, - [147726] = 5, + ACTIONS(5318), 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, + [147774] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3222), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, anon_sym_PIPE, + ACTIONS(7452), 1, + anon_sym_extends, STATE(3986), 1, sym_comment, - ACTIONS(3438), 10, + ACTIONS(5134), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331520,23 +333811,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, - [147751] = 7, + [147803] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(5132), 1, anon_sym_PIPE, - ACTIONS(7439), 1, - anon_sym_extends, STATE(3987), 1, sym_comment, - ACTIONS(5314), 8, + ACTIONS(5134), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331544,17 +333829,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, - [147780] = 5, + [147828] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3210), 1, + ACTIONS(5170), 1, anon_sym_PIPE, STATE(3988), 1, sym_comment, - ACTIONS(3420), 10, + ACTIONS(5172), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331565,37 +333852,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147805] = 6, + [147853] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5331), 1, + ACTIONS(5298), 1, anon_sym_PIPE, - ACTIONS(7441), 1, - anon_sym_LBRACK, STATE(3989), 1, sym_comment, - ACTIONS(5333), 9, + ACTIONS(5300), 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, - [147832] = 5, + [147878] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5059), 1, + ACTIONS(5174), 1, anon_sym_PIPE, STATE(3990), 1, sym_comment, - ACTIONS(5061), 10, + ACTIONS(5176), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331606,18 +333892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147857] = 6, + [147903] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5335), 1, + ACTIONS(5188), 1, anon_sym_PIPE, - ACTIONS(7453), 1, - anon_sym_extends, STATE(3991), 1, sym_comment, - ACTIONS(5337), 9, + ACTIONS(5190), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331626,17 +333910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147884] = 5, + [147928] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5296), 1, + ACTIONS(5213), 1, anon_sym_PIPE, STATE(3992), 1, sym_comment, - ACTIONS(5236), 10, + ACTIONS(5215), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331647,74 +333932,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147909] = 4, + [147953] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5237), 1, + anon_sym_PIPE, STATE(3993), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(5239), 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, - [147932] = 4, + [147978] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5263), 1, + anon_sym_PIPE, STATE(3994), 1, sym_comment, - ACTIONS(4983), 11, + ACTIONS(5265), 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, - [147955] = 5, + anon_sym_PIPE_RBRACE, + [148003] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4843), 1, + ACTIONS(5288), 1, anon_sym_PIPE, + ACTIONS(7454), 1, + anon_sym_LBRACK, STATE(3995), 1, sym_comment, - ACTIONS(4845), 10, + ACTIONS(5290), 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, - [147980] = 5, + [148030] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, + ACTIONS(5288), 1, anon_sym_PIPE, STATE(3996), 1, sym_comment, - ACTIONS(4857), 10, + ACTIONS(5290), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331725,36 +334013,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148005] = 5, + [148055] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5312), 1, - anon_sym_PIPE, STATE(3997), 1, sym_comment, - ACTIONS(5314), 10, + ACTIONS(6531), 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, - [148030] = 5, + [148078] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4851), 1, + ACTIONS(4872), 1, anon_sym_PIPE, STATE(3998), 1, sym_comment, - ACTIONS(4853), 10, + ACTIONS(4874), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331765,64 +334052,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148055] = 7, + [148103] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_PIPE, - ACTIONS(7439), 1, - anon_sym_extends, STATE(3999), 1, sym_comment, - ACTIONS(5082), 8, + ACTIONS(4876), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [148084] = 7, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148126] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5059), 1, - anon_sym_PIPE, - ACTIONS(7441), 1, - anon_sym_LBRACK, STATE(4000), 1, sym_comment, - ACTIONS(5061), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5343), 7, + ACTIONS(6355), 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, - [148113] = 7, + [148149] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(5198), 1, anon_sym_PIPE, - ACTIONS(7439), 1, - anon_sym_extends, STATE(4001), 1, sym_comment, - ACTIONS(5347), 8, + ACTIONS(5200), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331830,17 +334107,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, - [148142] = 5, + [148174] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3186), 1, + ACTIONS(5076), 1, anon_sym_PIPE, STATE(4002), 1, sym_comment, - ACTIONS(3568), 10, + ACTIONS(5078), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331851,16 +334130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148167] = 5, + [148199] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, + ACTIONS(4941), 1, anon_sym_PIPE, STATE(4003), 1, sym_comment, - ACTIONS(4979), 10, + ACTIONS(4943), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331871,60 +334150,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148192] = 4, + [148224] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5112), 1, + anon_sym_PIPE, STATE(4004), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(5114), 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, - [148215] = 6, + [148249] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7455), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_QMARK_DOT, + ACTIONS(3267), 1, + anon_sym_PIPE, STATE(4005), 1, sym_comment, - ACTIONS(5292), 9, + ACTIONS(3459), 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, - [148242] = 7, + anon_sym_PIPE_RBRACE, + [148274] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7439), 1, + ACTIONS(7452), 1, anon_sym_extends, STATE(4006), 1, sym_comment, - ACTIONS(5184), 8, + ACTIONS(5078), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331933,20 +334212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [148271] = 7, + [148303] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(7439), 1, - anon_sym_extends, STATE(4007), 1, sym_comment, - ACTIONS(5180), 8, + ACTIONS(4860), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331954,19 +334229,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, - [148300] = 6, + [148328] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4989), 1, + ACTIONS(5074), 1, anon_sym_PIPE, - ACTIONS(7435), 1, - anon_sym_AMP, STATE(4008), 1, sym_comment, - ACTIONS(4991), 9, + ACTIONS(5045), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331974,18 +334249,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, - [148327] = 5, + [148353] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4993), 1, + ACTIONS(4955), 1, anon_sym_PIPE, STATE(4009), 1, sym_comment, - ACTIONS(4995), 10, + ACTIONS(4957), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331996,16 +334272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148352] = 5, + [148378] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5353), 1, + ACTIONS(3247), 1, anon_sym_PIPE, STATE(4010), 1, sym_comment, - ACTIONS(5355), 10, + ACTIONS(3407), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332016,36 +334292,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148377] = 5, + [148403] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, STATE(4011), 1, sym_comment, - ACTIONS(5192), 10, + STATE(4407), 1, + sym_formal_parameters, + STATE(6802), 1, + sym_type_parameters, + ACTIONS(4527), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [148402] = 5, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [148434] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5262), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, anon_sym_PIPE, + ACTIONS(7452), 1, + anon_sym_extends, STATE(4012), 1, sym_comment, - ACTIONS(5264), 10, + ACTIONS(5196), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332053,38 +334336,43 @@ 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, - [148427] = 4, + [148463] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7452), 1, + anon_sym_extends, STATE(4013), 1, sym_comment, - ACTIONS(4841), 11, + ACTIONS(5022), 8, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [148450] = 5, + anon_sym_PIPE_RBRACE, + [148492] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5361), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, anon_sym_PIPE, + ACTIONS(7452), 1, + anon_sym_extends, STATE(4014), 1, sym_comment, - ACTIONS(5363), 10, + ACTIONS(5016), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332092,19 +334380,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, - [148475] = 5, + [148521] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4931), 1, + ACTIONS(5202), 1, anon_sym_PIPE, + ACTIONS(7448), 1, + anon_sym_AMP, STATE(4015), 1, sym_comment, - ACTIONS(4933), 10, + ACTIONS(5204), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332112,58 +334400,57 @@ 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, - [148500] = 5, + [148548] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5086), 1, - anon_sym_PIPE, STATE(4016), 1, sym_comment, - ACTIONS(5088), 10, + ACTIONS(4848), 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, - [148525] = 4, + [148571] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(3249), 1, + anon_sym_PIPE, STATE(4017), 1, sym_comment, - ACTIONS(4875), 11, + ACTIONS(3409), 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, - [148548] = 5, + anon_sym_PIPE_RBRACE, + [148596] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, + ACTIONS(5302), 1, anon_sym_PIPE, STATE(4018), 1, sym_comment, - ACTIONS(5288), 10, + ACTIONS(5304), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332174,16 +334461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148573] = 5, + [148621] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5072), 1, + ACTIONS(5146), 1, anon_sym_PIPE, STATE(4019), 1, sym_comment, - ACTIONS(5074), 10, + ACTIONS(5144), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332194,38 +334481,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148598] = 5, + [148646] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2087), 1, - anon_sym_DOT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5308), 1, + anon_sym_PIPE, STATE(4020), 1, sym_comment, - ACTIONS(5192), 10, + ACTIONS(5310), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [148623] = 6, + anon_sym_PIPE_RBRACE, + [148671] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, + ACTIONS(5312), 1, anon_sym_PIPE, - ACTIONS(7435), 1, - anon_sym_AMP, STATE(4021), 1, sym_comment, - ACTIONS(5280), 9, + ACTIONS(5314), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332233,18 +334518,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, - [148650] = 5, + [148696] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5076), 1, + ACTIONS(5206), 1, anon_sym_PIPE, STATE(4022), 1, sym_comment, - ACTIONS(5078), 10, + ACTIONS(5208), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332255,35 +334541,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148675] = 4, + [148721] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4023), 1, - sym_comment, - ACTIONS(4520), 11, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(7456), 1, + sym_identifier, + ACTIONS(7458), 1, + anon_sym_type, + ACTIONS(7460), 1, anon_sym_COMMA, + ACTIONS(7462), 1, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [148698] = 5, + ACTIONS(7464), 1, + anon_sym_typeof, + STATE(4023), 1, + sym_comment, + STATE(5611), 1, + sym_string, + STATE(6263), 1, + sym_import_specifier, + STATE(6433), 1, + sym__import_identifier, + STATE(7249), 1, + sym__module_export_name, + [148764] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, + ACTIONS(3251), 1, anon_sym_PIPE, STATE(4024), 1, sym_comment, - ACTIONS(4967), 10, + ACTIONS(3411), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332294,35 +334590,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148723] = 4, + [148789] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7466), 1, + anon_sym_DOT, + ACTIONS(7468), 1, + anon_sym_QMARK_DOT, STATE(4025), 1, sym_comment, - ACTIONS(4849), 11, + ACTIONS(4947), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [148746] = 5, + [148816] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, + ACTIONS(5280), 1, anon_sym_PIPE, STATE(4026), 1, sym_comment, - ACTIONS(5272), 10, + ACTIONS(5282), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332333,16 +334631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148771] = 5, + [148841] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5323), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, anon_sym_PIPE, + ACTIONS(7452), 1, + anon_sym_extends, STATE(4027), 1, sym_comment, - ACTIONS(5325), 10, + ACTIONS(5296), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332350,19 +334652,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [148870] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4028), 1, + sym_comment, + ACTIONS(4856), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148796] = 5, + [148893] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5298), 1, + ACTIONS(5057), 1, anon_sym_PIPE, - STATE(4028), 1, + STATE(4029), 1, sym_comment, - ACTIONS(5300), 10, + ACTIONS(5059), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332373,39 +334692,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148821] = 4, + [148918] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4029), 1, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(7454), 1, + anon_sym_LBRACK, + STATE(4030), 1, sym_comment, - ACTIONS(5057), 11, + ACTIONS(5290), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5335), 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, + [148947] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5360), 1, + anon_sym_PIPE, + ACTIONS(7454), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(4031), 1, + sym_comment, + ACTIONS(5362), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [148844] = 7, + anon_sym_PIPE_RBRACE, + [148974] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7439), 1, + ACTIONS(7452), 1, anon_sym_extends, - STATE(4030), 1, + STATE(4032), 1, sym_comment, - ACTIONS(5250), 8, + ACTIONS(5370), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332414,16 +334757,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [148873] = 5, + [149003] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5242), 1, + ACTIONS(5364), 1, anon_sym_PIPE, - STATE(4031), 1, + STATE(4033), 1, sym_comment, - ACTIONS(5244), 10, + ACTIONS(5366), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332434,511 +334777,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148898] = 13, + [149028] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7459), 1, + ACTIONS(7470), 1, sym_identifier, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - STATE(3177), 1, + STATE(3175), 1, sym_class_body, - STATE(4032), 1, + STATE(4034), 1, sym_comment, - STATE(4564), 1, + STATE(4437), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6604), 1, + STATE(6752), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [148938] = 10, + [149068] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7467), 1, - anon_sym_EQ, - ACTIONS(7471), 1, - anon_sym_BANG, - STATE(4033), 1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + STATE(4035), 1, sym_comment, - STATE(4975), 1, - sym__initializer, - STATE(5361), 1, - sym_type_annotation, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7469), 3, - sym__automatic_semicolon, + STATE(3055), 2, + sym_template_string, + sym_arguments, + ACTIONS(5265), 6, anon_sym_COMMA, - anon_sym_SEMI, - [148972] = 13, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149096] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7475), 1, + ACTIONS(7478), 1, sym_identifier, - STATE(3177), 1, + STATE(3060), 1, sym_class_body, - STATE(4034), 1, + STATE(4036), 1, sym_comment, - STATE(4564), 1, + STATE(4429), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6604), 1, + STATE(6552), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149012] = 13, + [149136] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7477), 1, + ACTIONS(7480), 1, sym_identifier, - STATE(3177), 1, + STATE(3060), 1, sym_class_body, - STATE(4035), 1, + STATE(4037), 1, sym_comment, - STATE(4564), 1, + STATE(4429), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6604), 1, + STATE(6552), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149052] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_PIPE, - ACTIONS(7439), 1, - anon_sym_extends, - STATE(4036), 1, - sym_comment, - ACTIONS(7479), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149080] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7223), 1, - anon_sym_EQ, - STATE(4037), 1, - sym_comment, - ACTIONS(4789), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4520), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [149106] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7033), 1, - anon_sym_SLASH_GT, - ACTIONS(7328), 1, - anon_sym_COLON, - ACTIONS(7330), 1, - anon_sym_GT, - STATE(4038), 1, - sym_comment, - STATE(4094), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [149142] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(7483), 1, - anon_sym_DOT, - STATE(4039), 1, - sym_comment, - STATE(4337), 1, - sym_arguments, - ACTIONS(7481), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149170] = 13, + [149176] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7485), 1, + ACTIONS(7482), 1, sym_identifier, - STATE(3085), 1, + STATE(3060), 1, sym_class_body, - STATE(4040), 1, + STATE(4038), 1, sym_comment, - STATE(4578), 1, + STATE(4429), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6901), 1, + STATE(6552), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149210] = 13, + [149216] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7487), 1, + ACTIONS(7484), 1, sym_identifier, - STATE(3177), 1, + STATE(3175), 1, sym_class_body, - STATE(4041), 1, + STATE(4039), 1, sym_comment, - STATE(4564), 1, + STATE(4437), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6604), 1, + STATE(6752), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149250] = 13, + [149256] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(7443), 1, + ACTIONS(7456), 1, sym_identifier, - ACTIONS(7445), 1, + ACTIONS(7458), 1, anon_sym_type, - ACTIONS(7451), 1, + ACTIONS(7464), 1, anon_sym_typeof, - ACTIONS(7489), 1, + ACTIONS(7486), 1, anon_sym_RBRACE, - STATE(4042), 1, + STATE(4040), 1, sym_comment, - STATE(5427), 1, + STATE(5611), 1, sym_string, - STATE(6638), 1, - sym_import_specifier, - STATE(6851), 1, + STATE(6433), 1, sym__import_identifier, - STATE(7127), 1, + STATE(6839), 1, + sym_import_specifier, + STATE(7249), 1, sym__module_export_name, - [149290] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7461), 1, - anon_sym_LBRACE, - ACTIONS(7463), 1, - anon_sym_extends, - ACTIONS(7465), 1, - anon_sym_implements, - ACTIONS(7491), 1, - sym_identifier, - STATE(3085), 1, - sym_class_body, - STATE(4043), 1, - sym_comment, - STATE(4578), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6901), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [149330] = 6, + [149296] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7495), 1, + ACTIONS(7490), 1, anon_sym_COLON, - STATE(4044), 1, + STATE(4041), 1, sym_comment, - STATE(4797), 3, + STATE(4756), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(7493), 6, + ACTIONS(7488), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149356] = 13, + [149322] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7497), 1, + ACTIONS(7492), 1, sym_identifier, - STATE(3085), 1, + STATE(3175), 1, sym_class_body, - STATE(4045), 1, + STATE(4042), 1, sym_comment, - STATE(4578), 1, + STATE(4437), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6901), 1, + STATE(6752), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149396] = 13, + [149362] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, - anon_sym_extends, - ACTIONS(7465), 1, - anon_sym_implements, - ACTIONS(7499), 1, + ACTIONS(7329), 1, + anon_sym_COLON, + ACTIONS(7331), 1, + anon_sym_GT, + ACTIONS(7333), 1, + anon_sym_SLASH_GT, + STATE(4043), 1, + sym_comment, + STATE(4181), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, sym_identifier, - STATE(3085), 1, - sym_class_body, - STATE(4046), 1, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149398] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7496), 1, + anon_sym_BANG, + STATE(4044), 1, sym_comment, - STATE(4578), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6901), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [149436] = 12, + STATE(5009), 1, + sym_type_annotation, + STATE(6329), 1, + sym__initializer, + ACTIONS(7498), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7494), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149432] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7496), 1, + anon_sym_BANG, + ACTIONS(7500), 1, + anon_sym_EQ, + STATE(4045), 1, + sym_comment, + STATE(5009), 1, + sym_type_annotation, + STATE(5136), 1, + sym__initializer, + ACTIONS(7498), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7494), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149466] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(7443), 1, + ACTIONS(7456), 1, sym_identifier, - ACTIONS(7501), 1, + ACTIONS(7458), 1, anon_sym_type, - ACTIONS(7503), 1, - anon_sym_as, - STATE(4047), 1, + ACTIONS(7464), 1, + anon_sym_typeof, + ACTIONS(7502), 1, + anon_sym_RBRACE, + STATE(4046), 1, sym_comment, - STATE(5427), 1, + STATE(5611), 1, sym_string, - STATE(6848), 1, + STATE(6433), 1, sym__import_identifier, - STATE(7119), 1, + STATE(6839), 1, + sym_import_specifier, + STATE(7249), 1, sym__module_export_name, - ACTIONS(7189), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [149474] = 13, + [149506] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7505), 1, + ACTIONS(7504), 1, sym_identifier, - STATE(3085), 1, + STATE(3175), 1, + sym_class_body, + STATE(4047), 1, + sym_comment, + STATE(4437), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6752), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [149546] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(7472), 1, + anon_sym_LBRACE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(7476), 1, + anon_sym_implements, + ACTIONS(7506), 1, + sym_identifier, + STATE(3060), 1, sym_class_body, STATE(4048), 1, sym_comment, - STATE(4578), 1, + STATE(4429), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6901), 1, + STATE(6552), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149514] = 10, + [149586] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7471), 1, - anon_sym_BANG, + ACTIONS(4196), 1, + anon_sym_LPAREN, + ACTIONS(7510), 1, + anon_sym_DOT, STATE(4049), 1, sym_comment, - STATE(5361), 1, - sym_type_annotation, - STATE(5760), 1, - sym__initializer, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7469), 3, + STATE(4307), 1, + sym_arguments, + ACTIONS(7508), 7, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149548] = 5, + anon_sym_PIPE_RBRACE, + [149614] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7507), 1, - anon_sym_is, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7452), 1, + anon_sym_extends, STATE(4050), 1, sym_comment, - ACTIONS(4857), 9, + ACTIONS(7512), 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_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [149572] = 11, + anon_sym_PIPE_RBRACE, + [149642] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(7476), 1, + anon_sym_implements, + ACTIONS(7514), 1, + sym_identifier, + ACTIONS(7516), 1, anon_sym_LBRACE, - ACTIONS(7328), 1, - anon_sym_COLON, - ACTIONS(7330), 1, - anon_sym_GT, - ACTIONS(7364), 1, - anon_sym_SLASH_GT, + STATE(2433), 1, + sym_class_body, STATE(4051), 1, sym_comment, - STATE(4189), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [149608] = 5, + STATE(4571), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6580), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [149682] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7312), 1, - anon_sym_is, STATE(4052), 1, sym_comment, - ACTIONS(4853), 9, + ACTIONS(4864), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -332948,16 +335247,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [149632] = 5, + anon_sym_is, + [149704] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7312), 1, - anon_sym_is, + ACTIONS(7490), 1, + anon_sym_COLON, STATE(4053), 1, sym_comment, - ACTIONS(4845), 9, + STATE(4775), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7518), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149730] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7361), 1, + anon_sym_is, + STATE(4054), 1, + sym_comment, + ACTIONS(4874), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -332967,1336 +335287,1379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [149656] = 13, + [149754] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7509), 1, + ACTIONS(7520), 1, sym_identifier, - STATE(3177), 1, + STATE(3060), 1, sym_class_body, - STATE(4054), 1, + STATE(4055), 1, sym_comment, - STATE(4564), 1, + STATE(4429), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6604), 1, + STATE(6552), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149696] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4055), 1, - sym_comment, - ACTIONS(4873), 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, - [149718] = 11, + [149794] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7027), 1, - anon_sym_SLASH_GT, - ACTIONS(7328), 1, - anon_sym_COLON, - ACTIONS(7330), 1, - anon_sym_GT, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(7476), 1, + anon_sym_implements, + ACTIONS(7522), 1, + sym_identifier, + STATE(3060), 1, + sym_class_body, STATE(4056), 1, sym_comment, - STATE(4228), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [149754] = 13, + STATE(4429), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6552), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [149834] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7463), 1, + ACTIONS(7472), 1, + anon_sym_LBRACE, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7511), 1, + ACTIONS(7524), 1, sym_identifier, - ACTIONS(7513), 1, - anon_sym_LBRACE, - STATE(2477), 1, + STATE(3060), 1, sym_class_body, STATE(4057), 1, sym_comment, - STATE(4476), 1, + STATE(4429), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6486), 1, + STATE(6552), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149794] = 11, + [149874] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7328), 1, + ACTIONS(7062), 1, + anon_sym_SLASH_GT, + ACTIONS(7329), 1, anon_sym_COLON, - ACTIONS(7330), 1, + ACTIONS(7331), 1, anon_sym_GT, - ACTIONS(7332), 1, - anon_sym_SLASH_GT, STATE(4058), 1, sym_comment, - STATE(4082), 1, + STATE(4258), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [149830] = 13, + [149910] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, - anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7515), 1, + ACTIONS(7516), 1, + anon_sym_LBRACE, + ACTIONS(7526), 1, sym_identifier, - STATE(3085), 1, + STATE(2478), 1, sym_class_body, STATE(4059), 1, sym_comment, - STATE(4578), 1, + STATE(4349), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6901), 1, + STATE(6936), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149870] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [149950] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7461), 1, - anon_sym_LBRACE, - ACTIONS(7463), 1, - anon_sym_extends, - ACTIONS(7465), 1, - anon_sym_implements, - ACTIONS(7517), 1, - sym_identifier, - STATE(3177), 1, - sym_class_body, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7361), 1, + anon_sym_is, STATE(4060), 1, sym_comment, - STATE(4564), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6604), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [149910] = 6, + ACTIONS(4870), 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, + [149974] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7495), 1, - anon_sym_COLON, STATE(4061), 1, sym_comment, - STATE(4787), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7519), 6, + ACTIONS(2037), 10, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149936] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [149996] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7056), 1, + anon_sym_SLASH_GT, + ACTIONS(7329), 1, + anon_sym_COLON, + ACTIONS(7331), 1, + anon_sym_GT, + STATE(4062), 1, + sym_comment, + STATE(4229), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150032] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(7528), 1, + sym_identifier, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7534), 1, + anon_sym_RBRACE, + STATE(4063), 1, + sym_comment, + STATE(5611), 1, + sym_string, + STATE(6184), 1, + sym_export_specifier, + STATE(6186), 1, + sym__module_export_name, + ACTIONS(7530), 2, + anon_sym_type, + anon_sym_typeof, + [150070] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7463), 1, + ACTIONS(7472), 1, + anon_sym_LBRACE, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7513), 1, - anon_sym_LBRACE, - ACTIONS(7521), 1, + ACTIONS(7536), 1, sym_identifier, - STATE(2486), 1, + STATE(3175), 1, sym_class_body, - STATE(4062), 1, + STATE(4064), 1, sym_comment, - STATE(4439), 1, + STATE(4437), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6516), 1, + STATE(6752), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [149976] = 13, + [150110] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7461), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7523), 1, + ACTIONS(7538), 1, sym_identifier, - STATE(3177), 1, + STATE(3175), 1, sym_class_body, - STATE(4063), 1, + STATE(4065), 1, sym_comment, - STATE(4564), 1, + STATE(4437), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6604), 1, + STATE(6752), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [150016] = 7, + [150150] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7329), 1, + anon_sym_COLON, + ACTIONS(7331), 1, + anon_sym_GT, + ACTIONS(7345), 1, + anon_sym_SLASH_GT, + STATE(4066), 1, + sym_comment, + STATE(4137), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150186] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, + ACTIONS(7212), 1, + anon_sym_EQ, + STATE(4067), 1, + sym_comment, + ACTIONS(4794), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4527), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - STATE(4064), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [150212] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7540), 1, + anon_sym_is, + STATE(4068), 1, sym_comment, - STATE(3058), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 6, + ACTIONS(4860), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [150044] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7461), 1, - anon_sym_LBRACE, - ACTIONS(7463), 1, - anon_sym_extends, - ACTIONS(7465), 1, - anon_sym_implements, - ACTIONS(7525), 1, - sym_identifier, - STATE(3085), 1, - sym_class_body, - STATE(4065), 1, - sym_comment, - STATE(4578), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6901), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [150084] = 13, + [150236] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7463), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7476), 1, anon_sym_implements, - ACTIONS(7513), 1, + ACTIONS(7516), 1, anon_sym_LBRACE, - ACTIONS(7527), 1, + ACTIONS(7542), 1, sym_identifier, - STATE(3302), 1, + STATE(3290), 1, sym_class_body, - STATE(4066), 1, + STATE(4069), 1, sym_comment, - STATE(4561), 1, + STATE(4485), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6821), 1, + STATE(6973), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [150124] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7529), 1, - sym_identifier, - ACTIONS(7533), 1, - anon_sym_COMMA, - ACTIONS(7535), 1, - anon_sym_RBRACE, - STATE(4067), 1, - sym_comment, - STATE(5427), 1, - sym_string, - STATE(5714), 1, - sym_export_specifier, - STATE(5715), 1, - sym__module_export_name, - ACTIONS(7531), 2, - anon_sym_type, - anon_sym_typeof, - [150162] = 13, + [150276] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(7443), 1, + ACTIONS(7456), 1, sym_identifier, - ACTIONS(7445), 1, + ACTIONS(7544), 1, anon_sym_type, - ACTIONS(7451), 1, - anon_sym_typeof, - ACTIONS(7537), 1, - anon_sym_RBRACE, - STATE(4068), 1, + ACTIONS(7546), 1, + anon_sym_as, + STATE(4070), 1, sym_comment, - STATE(5427), 1, + STATE(5611), 1, sym_string, - STATE(6638), 1, - sym_import_specifier, - STATE(6851), 1, + STATE(6996), 1, sym__import_identifier, - STATE(7127), 1, + STATE(7003), 1, sym__module_export_name, - [150202] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4069), 1, - sym_comment, - ACTIONS(2030), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7224), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [150224] = 12, + anon_sym_RBRACE, + [150314] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7539), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - ACTIONS(7541), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7476), 1, anon_sym_implements, - STATE(4070), 1, + ACTIONS(7548), 1, + sym_identifier, + STATE(3175), 1, + sym_class_body, + STATE(4071), 1, sym_comment, - STATE(4410), 1, + STATE(4437), 1, sym_type_parameters, - STATE(5297), 1, - sym_class_body, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6770), 1, + STATE(6752), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [150261] = 10, + [150354] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7545), 1, + ACTIONS(7550), 1, anon_sym_BANG, - ACTIONS(7547), 1, + ACTIONS(7552), 1, anon_sym_QMARK, - STATE(4071), 1, + STATE(4072), 1, sym_comment, - STATE(4867), 1, + STATE(5370), 1, sym_type_annotation, - STATE(6084), 1, + STATE(6171), 1, sym__initializer, - ACTIONS(7215), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150294] = 4, + [150387] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4072), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7554), 1, + anon_sym_BANG, + ACTIONS(7556), 1, + anon_sym_QMARK, + STATE(4073), 1, sym_comment, - ACTIONS(5351), 9, + STATE(5349), 1, + sym_type_annotation, + STATE(6144), 1, + sym__initializer, + ACTIONS(7194), 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, - [150315] = 7, + [150420] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_extends, - STATE(4073), 1, - sym_comment, - ACTIONS(5082), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7045), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [150342] = 4, + ACTIONS(7558), 1, + anon_sym_GT, + ACTIONS(7560), 1, + anon_sym_SLASH_GT, + STATE(4074), 1, + sym_comment, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150453] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4074), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7562), 1, + anon_sym_BANG, + ACTIONS(7564), 1, + anon_sym_QMARK, + STATE(4075), 1, sym_comment, - ACTIONS(5359), 9, + STATE(4989), 1, + sym_type_annotation, + STATE(5731), 1, + sym__initializer, + ACTIONS(7232), 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, - [150363] = 5, + [150486] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7555), 1, - anon_sym_EQ, - STATE(4075), 1, - sym_comment, - ACTIONS(4337), 8, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(5386), 1, anon_sym_DOT, - anon_sym_EQ_GT, - [150386] = 4, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(6991), 1, + anon_sym_LT, + STATE(3067), 1, + sym_template_string, + STATE(3230), 1, + sym_arguments, + STATE(4035), 1, + sym_type_arguments, + STATE(4076), 1, + sym_comment, + STATE(6537), 1, + sym_optional_chain, + [150523] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4076), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7566), 1, + anon_sym_BANG, + ACTIONS(7568), 1, + anon_sym_QMARK, + STATE(4077), 1, sym_comment, - ACTIONS(4967), 9, + STATE(4977), 1, + sym_type_annotation, + STATE(5701), 1, + sym__initializer, + ACTIONS(7232), 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, + [150556] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7570), 1, + anon_sym_LBRACE, + ACTIONS(7572), 1, anon_sym_extends, - [150407] = 4, + ACTIONS(7574), 1, + anon_sym_implements, + STATE(1022), 1, + sym_class_body, + STATE(4078), 1, + sym_comment, + STATE(4396), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6885), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [150593] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4077), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7576), 1, + anon_sym_BANG, + ACTIONS(7578), 1, + anon_sym_QMARK, + STATE(4079), 1, sym_comment, - ACTIONS(5236), 9, + STATE(4879), 1, + sym_type_annotation, + STATE(5700), 1, + sym__initializer, + ACTIONS(7232), 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, - [150428] = 4, + [150626] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4078), 1, + ACTIONS(7580), 1, + anon_sym_AMP, + ACTIONS(7582), 1, + anon_sym_PIPE, + ACTIONS(7584), 1, + anon_sym_extends, + STATE(4080), 1, sym_comment, - ACTIONS(5288), 9, + ACTIONS(5370), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [150449] = 10, + [150653] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7557), 1, + ACTIONS(7331), 1, anon_sym_GT, - ACTIONS(7559), 1, + ACTIONS(7345), 1, anon_sym_SLASH_GT, - STATE(4079), 1, + STATE(4081), 1, sym_comment, - STATE(4270), 1, + STATE(4096), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [150482] = 10, - ACTIONS(3), 1, + [150686] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4082), 1, + sym_comment, + STATE(5279), 1, + sym_type_annotation, + STATE(6086), 1, + sym__initializer, + ACTIONS(7303), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7301), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150717] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7586), 1, anon_sym_LBRACE, - ACTIONS(7561), 1, - anon_sym_GT, - ACTIONS(7563), 1, - anon_sym_SLASH_GT, - STATE(4080), 1, + STATE(4083), 1, sym_comment, - STATE(4115), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [150515] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4603), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6371), 1, + sym_class_heritage, + STATE(6502), 1, + sym_class_body, + STATE(7325), 1, + sym_implements_clause, + [150754] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7588), 1, anon_sym_LBRACE, - ACTIONS(7565), 1, - anon_sym_GT, - ACTIONS(7567), 1, - anon_sym_SLASH_GT, - STATE(4081), 1, + STATE(385), 1, + sym_class_body, + STATE(4084), 1, sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [150548] = 10, + STATE(4535), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6891), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [150791] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(7590), 1, + anon_sym_DOT, + STATE(2468), 1, + sym_template_string, + STATE(2945), 1, + sym_arguments, + STATE(4085), 1, + sym_comment, + STATE(5536), 1, + sym_type_arguments, + STATE(6826), 1, + sym_optional_chain, + [150828] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4086), 1, + sym_comment, + ACTIONS(5366), 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, + [150849] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7569), 1, - anon_sym_GT, - ACTIONS(7571), 1, + ACTIONS(7062), 1, anon_sym_SLASH_GT, - STATE(4082), 1, + ACTIONS(7331), 1, + anon_sym_GT, + STATE(4087), 1, sym_comment, - STATE(4270), 1, + STATE(4157), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [150581] = 5, + [150882] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - STATE(4083), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7592), 1, + anon_sym_BANG, + ACTIONS(7594), 1, + anon_sym_QMARK, + STATE(4088), 1, sym_comment, - ACTIONS(5280), 8, + STATE(5005), 1, + sym_type_annotation, + STATE(5757), 1, + sym__initializer, + ACTIONS(7232), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [150604] = 12, + [150915] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7573), 1, + ACTIONS(7596), 1, anon_sym_LBRACE, - STATE(1543), 1, + STATE(1570), 1, sym_class_body, - STATE(4084), 1, + STATE(4089), 1, sym_comment, - STATE(4549), 1, + STATE(4534), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6727), 1, + STATE(6896), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [150641] = 4, + [150952] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4085), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7598), 1, + anon_sym_BANG, + ACTIONS(7600), 1, + anon_sym_QMARK, + STATE(4090), 1, sym_comment, - ACTIONS(4337), 9, + STATE(5010), 1, + sym_type_annotation, + STATE(5774), 1, + sym__initializer, + ACTIONS(7232), 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, - [150662] = 4, + [150985] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4086), 1, - sym_comment, - ACTIONS(5363), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7212), 1, + anon_sym_EQ, + ACTIONS(7602), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [150683] = 10, + ACTIONS(7604), 1, + anon_sym_RBRACE, + STATE(4091), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [151016] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7575), 1, + ACTIONS(7606), 1, anon_sym_BANG, - ACTIONS(7577), 1, + ACTIONS(7608), 1, anon_sym_QMARK, - STATE(4087), 1, + STATE(4092), 1, sym_comment, - STATE(4990), 1, + STATE(5246), 1, sym_type_annotation, - STATE(6142), 1, + STATE(5661), 1, sym__initializer, - ACTIONS(7215), 3, + ACTIONS(7232), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150716] = 10, + [151049] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7565), 1, - anon_sym_GT, - ACTIONS(7579), 1, + ACTIONS(7056), 1, anon_sym_SLASH_GT, - STATE(4088), 1, + ACTIONS(7331), 1, + anon_sym_GT, + STATE(4093), 1, sym_comment, - STATE(4270), 1, + STATE(4180), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [150749] = 10, + [151082] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(1325), 1, + sym_class_body, + STATE(4094), 1, + sym_comment, + STATE(4558), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6910), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [151119] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(2934), 1, + sym_class_body, + STATE(4095), 1, + sym_comment, + STATE(4447), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6733), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [151156] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7581), 1, + ACTIONS(7614), 1, anon_sym_GT, - ACTIONS(7583), 1, + ACTIONS(7616), 1, anon_sym_SLASH_GT, - STATE(4089), 1, + STATE(4096), 1, sym_comment, - STATE(4270), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [150782] = 10, + [151189] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4097), 1, + sym_comment, + STATE(4560), 1, + sym_type_parameters, + STATE(4904), 1, + sym_class_body, + STATE(6082), 1, + sym_extends_clause, + STATE(6560), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [151226] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7620), 1, + anon_sym_BANG, + ACTIONS(7622), 1, + anon_sym_QMARK, + STATE(4098), 1, + sym_comment, + STATE(4848), 1, + sym_type_annotation, + STATE(6149), 1, + sym__initializer, + ACTIONS(7178), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151259] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7585), 1, + ACTIONS(7558), 1, anon_sym_GT, - ACTIONS(7587), 1, + ACTIONS(7624), 1, anon_sym_SLASH_GT, - STATE(4090), 1, + STATE(4099), 1, sym_comment, - STATE(4279), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [150815] = 5, + [151292] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4091), 1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7626), 1, + anon_sym_BANG, + ACTIONS(7628), 1, + anon_sym_QMARK, + STATE(4100), 1, sym_comment, - ACTIONS(4333), 8, - anon_sym_LBRACE, + STATE(5298), 1, + sym_type_annotation, + STATE(6160), 1, + sym__initializer, + ACTIONS(7178), 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, - [150838] = 10, + anon_sym_SEMI, + [151325] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7557), 1, + ACTIONS(7630), 1, anon_sym_GT, - ACTIONS(7591), 1, + ACTIONS(7632), 1, anon_sym_SLASH_GT, - STATE(4092), 1, + STATE(4101), 1, sym_comment, - STATE(4270), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [150871] = 10, + [151358] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7634), 1, + anon_sym_BANG, + ACTIONS(7636), 1, + anon_sym_QMARK, + STATE(4102), 1, + sym_comment, + STATE(5299), 1, + sym_type_annotation, + STATE(6168), 1, + sym__initializer, + ACTIONS(7178), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151391] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7561), 1, + ACTIONS(7638), 1, anon_sym_GT, - ACTIONS(7593), 1, + ACTIONS(7640), 1, anon_sym_SLASH_GT, - STATE(4093), 1, + STATE(4103), 1, sym_comment, - STATE(4277), 1, + STATE(4108), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [150904] = 10, + [151424] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7569), 1, + ACTIONS(7642), 1, anon_sym_GT, - ACTIONS(7595), 1, + ACTIONS(7644), 1, anon_sym_SLASH_GT, - STATE(4094), 1, + STATE(4104), 1, sym_comment, - STATE(4270), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [150937] = 7, + [151457] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_extends, - STATE(4095), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7646), 1, + anon_sym_BANG, + ACTIONS(7648), 1, + anon_sym_QMARK, + STATE(4105), 1, sym_comment, - ACTIONS(5347), 6, + STATE(5303), 1, + sym_type_annotation, + STATE(6174), 1, + sym__initializer, + ACTIONS(7178), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [150964] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7597), 1, - anon_sym_LBRACE, - STATE(966), 1, - sym_class_body, - STATE(4096), 1, - sym_comment, - STATE(4348), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6582), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [151001] = 6, + [151490] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7599), 1, - anon_sym_LBRACK, - STATE(4097), 1, + STATE(4106), 1, sym_comment, - ACTIONS(5061), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(5343), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7650), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [151026] = 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [151511] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7601), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(1403), 1, + STATE(2561), 1, sym_class_body, - STATE(4098), 1, + STATE(4107), 1, sym_comment, - STATE(4352), 1, + STATE(4599), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6782), 1, + STATE(6389), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [151063] = 5, + [151548] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7603), 1, - anon_sym_extends, - STATE(4099), 1, - sym_comment, - ACTIONS(5337), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7045), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [151086] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7599), 1, - anon_sym_LBRACK, - STATE(4100), 1, + ACTIONS(7558), 1, + anon_sym_GT, + ACTIONS(7654), 1, + anon_sym_SLASH_GT, + STATE(4108), 1, sym_comment, - ACTIONS(5333), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [151109] = 12, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [151581] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7605), 1, + ACTIONS(7656), 1, anon_sym_LBRACE, - STATE(1188), 1, - sym_class_body, - STATE(4101), 1, - sym_comment, - STATE(4457), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6421), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [151146] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6984), 1, + ACTIONS(7658), 1, + anon_sym_DQUOTE, + ACTIONS(7660), 1, + anon_sym_SQUOTE, + ACTIONS(7662), 1, anon_sym_LT, - STATE(2407), 1, - sym_template_string, - STATE(3279), 1, - sym_arguments, - STATE(3798), 1, - sym_type_arguments, - STATE(4102), 1, + STATE(3906), 1, + sym_jsx_opening_element, + STATE(4109), 1, sym_comment, - STATE(6453), 1, - sym_optional_chain, - [151183] = 4, + STATE(5187), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [151612] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4103), 1, - sym_comment, - ACTIONS(4937), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(2717), 1, + anon_sym_RBRACE, + ACTIONS(7212), 1, + anon_sym_EQ, + ACTIONS(7602), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [151204] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(6984), 1, - anon_sym_LT, - ACTIONS(7607), 1, - anon_sym_DOT, - STATE(3006), 1, - sym_arguments, - STATE(3098), 1, - sym_template_string, - STATE(4104), 1, + STATE(4110), 1, sym_comment, - STATE(5561), 1, - sym_type_arguments, - STATE(6656), 1, - sym_optional_chain, - [151241] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 4, anon_sym_LPAREN, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6984), 1, - anon_sym_LT, - ACTIONS(7609), 1, - anon_sym_DOT, - STATE(2407), 1, - sym_template_string, - STATE(2947), 1, - sym_arguments, - STATE(4105), 1, - sym_comment, - STATE(5506), 1, - sym_type_arguments, - STATE(6453), 1, - sym_optional_chain, - [151278] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(367), 1, - sym_class_body, - STATE(4106), 1, - sym_comment, - STATE(4353), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6831), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [151315] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7597), 1, - anon_sym_LBRACE, - STATE(1021), 1, - sym_class_body, - STATE(4107), 1, - sym_comment, - STATE(4354), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6856), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [151352] = 10, + anon_sym_QMARK, + [151643] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7613), 1, + ACTIONS(7664), 1, anon_sym_BANG, - ACTIONS(7615), 1, + ACTIONS(7666), 1, anon_sym_QMARK, - STATE(4108), 1, + STATE(4111), 1, sym_comment, - STATE(5092), 1, + STATE(5315), 1, sym_type_annotation, - STATE(5832), 1, + STATE(6200), 1, sym__initializer, - ACTIONS(7167), 3, + ACTIONS(7178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151385] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(7617), 1, - anon_sym_EQ, - ACTIONS(7619), 1, - anon_sym_DOT, - STATE(4109), 1, - sym_comment, - STATE(4327), 1, - sym_arguments, - ACTIONS(7481), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [151414] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(7621), 1, - anon_sym_EQ, - STATE(4110), 1, - sym_comment, - ACTIONS(7479), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [151443] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [151676] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7623), 1, - anon_sym_LBRACE, - STATE(1014), 1, - sym_class_body, - STATE(4111), 1, - sym_comment, - STATE(4449), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6460), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [151480] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(457), 1, - sym_class_body, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(7456), 1, + sym_identifier, + ACTIONS(7458), 1, + anon_sym_type, + ACTIONS(7464), 1, + anon_sym_typeof, STATE(4112), 1, sym_comment, - STATE(4531), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6692), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [151517] = 4, + STATE(5611), 1, + sym_string, + STATE(6433), 1, + sym__import_identifier, + STATE(6839), 1, + sym_import_specifier, + STATE(7249), 1, + sym__module_export_name, + [151713] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4113), 1, sym_comment, - ACTIONS(4951), 9, + ACTIONS(5314), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334306,14 +336669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151538] = 4, + [151734] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4114), 1, sym_comment, - ACTIONS(4951), 9, + ACTIONS(5310), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334323,411 +336686,560 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151559] = 10, + [151755] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7671), 1, anon_sym_LBRACE, - ACTIONS(7627), 1, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7668), 2, + sym_jsx_identifier, + sym_identifier, + ACTIONS(7674), 2, anon_sym_GT, - ACTIONS(7629), 1, anon_sym_SLASH_GT, - STATE(4115), 1, + STATE(4115), 2, sym_comment, - STATE(4270), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [151592] = 10, + [151784] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7631), 1, + ACTIONS(7642), 1, anon_sym_GT, - ACTIONS(7633), 1, + ACTIONS(7676), 1, anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, STATE(4116), 1, sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [151625] = 12, + [151817] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6984), 1, - anon_sym_LT, - STATE(2407), 1, - sym_template_string, - STATE(2654), 1, - sym_arguments, - STATE(3798), 1, - sym_type_arguments, STATE(4117), 1, sym_comment, - STATE(6453), 1, - sym_optional_chain, - [151662] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7529), 1, - sym_identifier, - ACTIONS(7635), 1, - anon_sym_RBRACE, - STATE(4118), 1, - sym_comment, - STATE(5427), 1, - sym_string, - STATE(5715), 1, - sym__module_export_name, - STATE(6683), 1, - sym_export_specifier, - ACTIONS(7531), 2, - anon_sym_type, - anon_sym_typeof, - [151697] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7601), 1, + ACTIONS(5304), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(1226), 1, - sym_class_body, - STATE(4119), 1, - sym_comment, - STATE(4360), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6944), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [151734] = 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151838] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7637), 1, + ACTIONS(7678), 1, anon_sym_BANG, - ACTIONS(7639), 1, + ACTIONS(7680), 1, anon_sym_QMARK, - STATE(4120), 1, + STATE(4118), 1, sym_comment, - STATE(5243), 1, + STATE(5318), 1, sym_type_annotation, - STATE(6205), 1, + STATE(6203), 1, sym__initializer, - ACTIONS(7179), 3, + ACTIONS(7178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151767] = 10, + [151871] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7641), 1, + ACTIONS(7682), 1, anon_sym_BANG, - ACTIONS(7643), 1, + ACTIONS(7684), 1, anon_sym_QMARK, - STATE(4121), 1, + STATE(4119), 1, sym_comment, - STATE(5247), 1, + STATE(5319), 1, sym_type_annotation, - STATE(6259), 1, + STATE(6232), 1, sym__initializer, - ACTIONS(7179), 3, + ACTIONS(7178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151800] = 10, - ACTIONS(3), 1, + [151904] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4120), 1, + sym_comment, + STATE(4598), 1, + sym_type_parameters, + STATE(5775), 1, + sym_class_body, + STATE(6082), 1, + sym_extends_clause, + STATE(6403), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [151941] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7612), 1, anon_sym_LBRACE, - ACTIONS(7330), 1, - anon_sym_GT, - ACTIONS(7332), 1, - anon_sym_SLASH_GT, - STATE(4081), 1, - aux_sym__jsx_start_opening_element_repeat1, + STATE(3117), 1, + sym_class_body, + STATE(4121), 1, + sym_comment, + STATE(4594), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6413), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [151978] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(7686), 1, + anon_sym_DOT, + STATE(2468), 1, + sym_template_string, + STATE(2579), 1, + sym_arguments, STATE(4122), 1, sym_comment, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [151833] = 10, + STATE(5536), 1, + sym_type_arguments, + STATE(6826), 1, + sym_optional_chain, + [152015] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7645), 1, + ACTIONS(7688), 1, anon_sym_BANG, - ACTIONS(7647), 1, + ACTIONS(7690), 1, anon_sym_QMARK, STATE(4123), 1, sym_comment, - STATE(5263), 1, + STATE(5328), 1, sym_type_annotation, - STATE(6234), 1, + STATE(6244), 1, sym__initializer, - ACTIONS(7179), 3, + ACTIONS(7178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151866] = 10, + [152048] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7649), 1, + ACTIONS(7692), 1, anon_sym_BANG, - ACTIONS(7651), 1, + ACTIONS(7694), 1, anon_sym_QMARK, STATE(4124), 1, sym_comment, - STATE(5280), 1, + STATE(5329), 1, sym_type_annotation, - STATE(6206), 1, + STATE(6247), 1, sym__initializer, - ACTIONS(7179), 3, + ACTIONS(7178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151899] = 12, + [152081] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(7698), 1, + anon_sym_DOT, + STATE(4125), 1, + sym_comment, + STATE(5584), 1, + sym_arguments, + STATE(6625), 1, + sym_type_arguments, + ACTIONS(7696), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [152112] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7653), 1, + ACTIONS(7618), 1, anon_sym_LBRACE, - STATE(1175), 1, - sym_class_body, - STATE(4125), 1, + STATE(4126), 1, sym_comment, - STATE(4527), 1, + STATE(4585), 1, sym_type_parameters, - STATE(5699), 1, + STATE(4925), 1, + sym_class_body, + STATE(6082), 1, sym_extends_clause, - STATE(6673), 1, + STATE(6600), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [151936] = 10, + [152149] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7700), 1, anon_sym_COLON, - ACTIONS(7655), 1, - anon_sym_BANG, - ACTIONS(7657), 1, - anon_sym_QMARK, - STATE(4126), 1, + STATE(4127), 1, sym_comment, - STATE(5304), 1, + STATE(5220), 3, sym_type_annotation, - STATE(6323), 1, - sym__initializer, - ACTIONS(7179), 3, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7488), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [151969] = 4, + [152174] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4127), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7642), 1, + anon_sym_GT, + ACTIONS(7702), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4128), 1, sym_comment, - ACTIONS(7659), 9, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152207] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2719), 1, + anon_sym_RBRACE, + ACTIONS(7212), 1, anon_sym_EQ, + ACTIONS(7602), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + STATE(4129), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [151990] = 4, + [152238] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4128), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7704), 1, + anon_sym_BANG, + ACTIONS(7706), 1, + anon_sym_QMARK, + STATE(4130), 1, sym_comment, - ACTIONS(4845), 9, + STATE(5224), 1, + sym_type_annotation, + STATE(5959), 1, + sym__initializer, + ACTIONS(7238), 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, + [152271] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, anon_sym_extends, - [152011] = 4, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7708), 1, + anon_sym_LBRACE, + STATE(316), 1, + sym_class_body, + STATE(4131), 1, + sym_comment, + STATE(4379), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6449), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [152308] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4129), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3098), 1, + sym_class_body, + STATE(4132), 1, sym_comment, - ACTIONS(5300), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4374), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6961), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [152345] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7045), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152032] = 10, + ACTIONS(7710), 1, + anon_sym_GT, + ACTIONS(7712), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4133), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152378] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7558), 1, + anon_sym_GT, + ACTIONS(7714), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4134), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152411] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7585), 1, + ACTIONS(7716), 1, anon_sym_GT, - ACTIONS(7661), 1, + ACTIONS(7718), 1, anon_sym_SLASH_GT, STATE(4116), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4130), 1, + STATE(4135), 1, sym_comment, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [152065] = 10, + [152444] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7212), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7602), 1, + anon_sym_COMMA, + ACTIONS(7720), 1, + anon_sym_RBRACE, + STATE(4136), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7663), 1, - anon_sym_BANG, - ACTIONS(7665), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4131), 1, + [152475] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7722), 1, + anon_sym_GT, + ACTIONS(7724), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4137), 1, sym_comment, - STATE(5330), 1, - sym_type_annotation, - STATE(6149), 1, - sym__initializer, - ACTIONS(7179), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152098] = 4, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152508] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4132), 1, + ACTIONS(7580), 1, + anon_sym_AMP, + ACTIONS(7582), 1, + anon_sym_PIPE, + ACTIONS(7584), 1, + anon_sym_extends, + STATE(4138), 1, sym_comment, - ACTIONS(4971), 9, + ACTIONS(5078), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152119] = 4, + [152535] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4133), 1, + STATE(4139), 1, sym_comment, - ACTIONS(4971), 9, + ACTIONS(3459), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334737,159 +337249,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152140] = 9, + [152556] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7212), 1, anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4134), 1, + ACTIONS(7602), 1, + anon_sym_COMMA, + ACTIONS(7726), 1, + anon_sym_RBRACE, + STATE(4140), 1, sym_comment, - STATE(5125), 1, - sym_type_annotation, - STATE(6333), 1, - sym__initializer, - ACTIONS(7669), 2, - anon_sym_BANG, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(7667), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152171] = 4, + [152587] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4135), 1, + STATE(4141), 1, sym_comment, - ACTIONS(7671), 9, - anon_sym_EQ, + ACTIONS(5078), 9, + 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, - [152192] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152608] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7673), 1, - anon_sym_BANG, - ACTIONS(7675), 1, - anon_sym_QMARK, - STATE(4136), 1, + STATE(4142), 1, sym_comment, - STATE(5122), 1, - sym_type_annotation, - STATE(5863), 1, - sym__initializer, - ACTIONS(7179), 3, + ACTIONS(5200), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [152225] = 5, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152629] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7677), 1, - anon_sym_EQ, - STATE(4137), 1, + ACTIONS(7580), 1, + anon_sym_AMP, + ACTIONS(7582), 1, + anon_sym_PIPE, + ACTIONS(7584), 1, + anon_sym_extends, + STATE(4143), 1, sym_comment, - ACTIONS(7679), 8, + ACTIONS(5196), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, - [152248] = 12, + anon_sym_SEMI, + anon_sym_LBRACK, + [152656] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7623), 1, + ACTIONS(7728), 1, anon_sym_LBRACE, - STATE(1103), 1, + STATE(409), 1, sym_class_body, - STATE(4138), 1, + STATE(4144), 1, sym_comment, - STATE(4441), 1, + STATE(4601), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6512), 1, + STATE(6603), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [152285] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7681), 1, - anon_sym_BANG, - ACTIONS(7683), 1, - anon_sym_QMARK, - STATE(4139), 1, - sym_comment, - STATE(5303), 1, - sym_type_annotation, - STATE(5914), 1, - sym__initializer, - ACTIONS(7179), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152318] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4140), 1, - sym_comment, - ACTIONS(7685), 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, - [152339] = 4, + [152693] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4141), 1, + STATE(4145), 1, sym_comment, - ACTIONS(5164), 9, + ACTIONS(5186), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334899,31 +337367,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152360] = 4, + [152714] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4142), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6991), 1, + anon_sym_LT, + STATE(2468), 1, + sym_template_string, + STATE(2654), 1, + sym_arguments, + STATE(3829), 1, + sym_type_arguments, + STATE(4146), 1, sym_comment, - ACTIONS(5168), 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, - [152381] = 4, + STATE(6826), 1, + sym_optional_chain, + [152751] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4143), 1, + STATE(4147), 1, sym_comment, - ACTIONS(5172), 9, + ACTIONS(5182), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334933,101 +337409,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152402] = 5, + [152772] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7687), 1, - anon_sym_EQ, - STATE(4144), 1, + STATE(4148), 1, sym_comment, - ACTIONS(7689), 8, - anon_sym_LBRACE, + ACTIONS(7730), 9, + anon_sym_EQ, 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, - [152425] = 10, + anon_sym_QMARK, + [152793] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7691), 1, + ACTIONS(7732), 1, anon_sym_BANG, - ACTIONS(7693), 1, + ACTIONS(7734), 1, anon_sym_QMARK, - STATE(4145), 1, + STATE(4149), 1, sym_comment, - STATE(5294), 1, + STATE(5013), 1, sym_type_annotation, - STATE(5912), 1, + STATE(5783), 1, sym__initializer, - ACTIONS(7179), 3, + ACTIONS(7232), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152458] = 10, + [152826] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7695), 1, - anon_sym_BANG, - ACTIONS(7697), 1, - anon_sym_QMARK, - STATE(4146), 1, + STATE(4150), 1, sym_comment, - STATE(5232), 1, - sym_type_annotation, - STATE(5898), 1, - sym__initializer, - ACTIONS(7179), 3, + ACTIONS(5126), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [152491] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152847] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7699), 1, - anon_sym_BANG, - ACTIONS(7701), 1, - anon_sym_QMARK, - STATE(4147), 1, + STATE(4151), 1, sym_comment, - STATE(5215), 1, - sym_type_annotation, - STATE(5894), 1, - sym__initializer, - ACTIONS(7179), 3, + ACTIONS(5118), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [152524] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152868] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4148), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(7736), 1, + anon_sym_DOT, + STATE(3067), 1, + sym_template_string, + STATE(3297), 1, + sym_arguments, + STATE(4152), 1, sym_comment, - ACTIONS(5325), 9, + STATE(5615), 1, + sym_type_arguments, + STATE(6537), 1, + sym_optional_chain, + [152905] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4153), 1, + sym_comment, + ACTIONS(5102), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335037,683 +337525,560 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152545] = 10, + [152926] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7703), 1, + ACTIONS(7738), 1, anon_sym_BANG, - ACTIONS(7705), 1, + ACTIONS(7740), 1, anon_sym_QMARK, - STATE(4149), 1, + STATE(4154), 1, sym_comment, - STATE(5205), 1, + STATE(5020), 1, sym_type_annotation, - STATE(5893), 1, + STATE(5809), 1, sym__initializer, - ACTIONS(7179), 3, + ACTIONS(7232), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152578] = 10, + [152959] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7707), 1, + ACTIONS(7742), 1, anon_sym_BANG, - ACTIONS(7709), 1, + ACTIONS(7744), 1, anon_sym_QMARK, - STATE(4150), 1, + STATE(4155), 1, sym_comment, - STATE(5193), 1, + STATE(5025), 1, sym_type_annotation, - STATE(5877), 1, + STATE(5822), 1, sym__initializer, - ACTIONS(7179), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152611] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4151), 1, - sym_comment, - ACTIONS(5088), 9, + ACTIONS(7232), 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, - [152632] = 12, + [152992] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7746), 1, anon_sym_LBRACE, - STATE(2978), 1, + STATE(911), 1, sym_class_body, - STATE(4152), 1, + STATE(4156), 1, sym_comment, - STATE(4519), 1, + STATE(4380), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6647), 1, + STATE(6455), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [152669] = 10, + [153029] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7614), 1, + anon_sym_GT, + ACTIONS(7748), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4157), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153062] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7713), 1, + ACTIONS(7750), 1, anon_sym_BANG, - ACTIONS(7715), 1, + ACTIONS(7752), 1, anon_sym_QMARK, - STATE(4153), 1, + STATE(4158), 1, sym_comment, - STATE(5165), 1, + STATE(5038), 1, sym_type_annotation, - STATE(5870), 1, + STATE(5829), 1, sym__initializer, - ACTIONS(7179), 3, + ACTIONS(7232), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152702] = 5, + [153095] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7717), 1, - anon_sym_EQ, - STATE(4154), 1, - sym_comment, - ACTIONS(7719), 8, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(4822), 1, anon_sym_DOT, - anon_sym_EQ_GT, - [152725] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4155), 1, - sym_comment, - ACTIONS(4987), 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, - [152746] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7223), 1, - anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_COMMA, - ACTIONS(7723), 1, - anon_sym_RBRACE, - STATE(4156), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6991), 1, anon_sym_LT, - anon_sym_QMARK, - [152777] = 12, + STATE(2280), 1, + sym_arguments, + STATE(2468), 1, + sym_template_string, + STATE(3829), 1, + sym_type_arguments, + STATE(4159), 1, + sym_comment, + STATE(6826), 1, + sym_optional_chain, + [153132] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7725), 1, + ACTIONS(7618), 1, anon_sym_LBRACE, - STATE(348), 1, - sym_class_body, - STATE(4157), 1, + STATE(4160), 1, sym_comment, - STATE(4401), 1, + STATE(4616), 1, sym_type_parameters, - STATE(5699), 1, + STATE(4940), 1, + sym_class_body, + STATE(6082), 1, sym_extends_clause, - STATE(6890), 1, + STATE(6340), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [152814] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [153169] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7467), 1, - anon_sym_EQ, - STATE(4158), 1, - sym_comment, - STATE(4976), 1, - sym__initializer, - STATE(5361), 1, - sym_type_annotation, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7469), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152845] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4159), 1, - sym_comment, - STATE(5361), 1, - sym_type_annotation, - STATE(5762), 1, - sym__initializer, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7469), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152876] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4160), 1, - sym_comment, - ACTIONS(5276), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7045), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152897] = 12, + ACTIONS(7614), 1, + anon_sym_GT, + ACTIONS(7754), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4161), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153202] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7727), 1, + ACTIONS(7586), 1, anon_sym_LBRACE, - STATE(3268), 1, - sym_class_body, - STATE(4161), 1, + STATE(4162), 1, sym_comment, - STATE(4508), 1, + STATE(4588), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6621), 1, + STATE(6483), 1, sym_class_heritage, - STATE(7283), 1, + STATE(6974), 1, + sym_class_body, + STATE(7325), 1, sym_implements_clause, - [152934] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4162), 1, - sym_comment, - ACTIONS(4333), 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, - [152955] = 10, + [153239] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7729), 1, - anon_sym_BANG, - ACTIONS(7731), 1, - anon_sym_QMARK, STATE(4163), 1, sym_comment, - STATE(5174), 1, + STATE(5145), 1, sym_type_annotation, - STATE(5823), 1, + STATE(5798), 1, sym__initializer, - ACTIONS(7179), 3, + ACTIONS(7295), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7293), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152988] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [153270] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4164), 1, - sym_comment, - ACTIONS(7689), 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, - [153009] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4165), 1, - sym_comment, - ACTIONS(7719), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(7045), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [153030] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(7223), 1, - anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_COMMA, - STATE(4166), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [153061] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4167), 1, + ACTIONS(7630), 1, + anon_sym_GT, + ACTIONS(7756), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4164), 1, sym_comment, - ACTIONS(7733), 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, - [153082] = 12, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153303] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7758), 1, anon_sym_LBRACE, - STATE(3178), 1, + STATE(1151), 1, sym_class_body, - STATE(4168), 1, + STATE(4165), 1, sym_comment, - STATE(4563), 1, + STATE(4370), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6869), 1, + STATE(6435), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [153119] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4169), 1, - sym_comment, - ACTIONS(7735), 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, - [153140] = 10, + [153340] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7737), 1, + ACTIONS(7760), 1, anon_sym_BANG, - ACTIONS(7739), 1, + ACTIONS(7762), 1, anon_sym_QMARK, - STATE(4170), 1, + STATE(4166), 1, sym_comment, - STATE(5068), 1, + STATE(5061), 1, sym_type_annotation, - STATE(6212), 1, + STATE(5859), 1, sym__initializer, - ACTIONS(7215), 3, + ACTIONS(7232), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153173] = 5, + [153373] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7741), 1, - anon_sym_EQ, - STATE(4171), 1, - sym_comment, - ACTIONS(7733), 8, + ACTIONS(7045), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(7630), 1, anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [153196] = 9, + ACTIONS(7764), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4167), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153406] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4172), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7766), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_class_body, + STATE(4168), 1, sym_comment, - STATE(5372), 1, - sym_type_annotation, - STATE(5827), 1, - sym__initializer, - ACTIONS(7300), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7298), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153227] = 7, + STATE(4460), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6459), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [153443] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_extends, - STATE(4173), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7638), 1, + anon_sym_GT, + ACTIONS(7768), 1, + anon_sym_SLASH_GT, + STATE(4074), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4169), 1, sym_comment, - ACTIONS(5180), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153476] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7045), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [153254] = 10, + ACTIONS(7638), 1, + anon_sym_GT, + ACTIONS(7770), 1, + anon_sym_SLASH_GT, + STATE(4134), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4170), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153509] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7743), 1, + ACTIONS(7772), 1, anon_sym_BANG, - ACTIONS(7745), 1, + ACTIONS(7774), 1, anon_sym_QMARK, - STATE(4174), 1, + STATE(4171), 1, sym_comment, - STATE(5112), 1, + STATE(5218), 1, sym_type_annotation, - STATE(5859), 1, + STATE(6002), 1, sym__initializer, - ACTIONS(7167), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153287] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_extends, - STATE(4175), 1, - sym_comment, - ACTIONS(5184), 6, + ACTIONS(7194), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [153314] = 9, + [153542] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2712), 1, - anon_sym_RBRACE, - ACTIONS(7223), 1, - anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_COMMA, - STATE(4176), 1, - sym_comment, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4520), 4, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7064), 1, anon_sym_LT, - anon_sym_QMARK, - [153345] = 10, + STATE(2468), 1, + sym_template_string, + STATE(2798), 1, + sym_arguments, + STATE(3857), 1, + sym_type_arguments, + STATE(4172), 1, + sym_comment, + STATE(6826), 1, + sym_optional_chain, + [153579] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7330), 1, + ACTIONS(7710), 1, anon_sym_GT, - ACTIONS(7364), 1, + ACTIONS(7776), 1, anon_sym_SLASH_GT, - STATE(4177), 1, - sym_comment, - STATE(4213), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4173), 1, + sym_comment, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [153378] = 4, + [153612] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4178), 1, - sym_comment, - ACTIONS(4933), 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(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, anon_sym_extends, - [153399] = 9, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7746), 1, + anon_sym_LBRACE, + STATE(902), 1, + sym_class_body, + STATE(4174), 1, + sym_comment, + STATE(4428), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6422), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [153649] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4179), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7710), 1, + anon_sym_GT, + ACTIONS(7778), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4175), 1, sym_comment, - STATE(5009), 1, - sym_type_annotation, - STATE(6161), 1, - sym__initializer, - ACTIONS(7203), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7201), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153430] = 12, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153682] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7539), 1, - anon_sym_LBRACE, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - STATE(4180), 1, + ACTIONS(7780), 1, + anon_sym_LBRACE, + STATE(1394), 1, + sym_class_body, + STATE(4176), 1, sym_comment, - STATE(4405), 1, + STATE(4448), 1, sym_type_parameters, - STATE(5302), 1, - sym_class_body, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6834), 1, + STATE(6437), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [153467] = 4, + [153719] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4181), 1, + STATE(4177), 1, sym_comment, - ACTIONS(7747), 9, + ACTIONS(7782), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -335723,497 +338088,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [153488] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4182), 1, - sym_comment, - STATE(5032), 1, - sym_type_annotation, - STATE(5770), 1, - sym__initializer, - ACTIONS(7231), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7229), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153519] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7749), 1, - anon_sym_BANG, - ACTIONS(7751), 1, - anon_sym_QMARK, - STATE(4183), 1, - sym_comment, - STATE(5035), 1, - sym_type_annotation, - STATE(6185), 1, - sym__initializer, - ACTIONS(7215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153552] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7753), 1, - anon_sym_BANG, - ACTIONS(7755), 1, - anon_sym_QMARK, - STATE(4184), 1, - sym_comment, - STATE(5021), 1, - sym_type_annotation, - STATE(6170), 1, - sym__initializer, - ACTIONS(7215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153585] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7757), 1, - anon_sym_BANG, - ACTIONS(7759), 1, - anon_sym_QMARK, - STATE(4185), 1, - sym_comment, - STATE(5010), 1, - sym_type_annotation, - STATE(6159), 1, - sym__initializer, - ACTIONS(7215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153618] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7761), 1, - anon_sym_BANG, - ACTIONS(7763), 1, - anon_sym_QMARK, - STATE(4186), 1, - sym_comment, - STATE(5001), 1, - sym_type_annotation, - STATE(6150), 1, - sym__initializer, - ACTIONS(7215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153651] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6984), 1, - anon_sym_LT, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(2407), 1, - sym_template_string, - STATE(2670), 1, - sym_arguments, - STATE(4187), 1, - sym_comment, - STATE(5506), 1, - sym_type_arguments, - STATE(6453), 1, - sym_optional_chain, - [153688] = 12, + [153740] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7611), 1, + ACTIONS(7784), 1, anon_sym_LBRACE, - STATE(388), 1, + STATE(1174), 1, sym_class_body, - STATE(4188), 1, + STATE(4178), 1, sym_comment, - STATE(4347), 1, + STATE(4439), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6340), 1, + STATE(6907), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [153725] = 10, + [153777] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7569), 1, + ACTIONS(7716), 1, anon_sym_GT, - ACTIONS(7767), 1, + ACTIONS(7786), 1, anon_sym_SLASH_GT, - STATE(4189), 1, + STATE(4179), 1, sym_comment, - STATE(4270), 1, + STATE(4265), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [153758] = 10, + [153810] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7561), 1, + ACTIONS(7614), 1, anon_sym_GT, - ACTIONS(7769), 1, + ACTIONS(7788), 1, anon_sym_SLASH_GT, - STATE(4190), 1, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4180), 1, sym_comment, - STATE(4271), 1, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153843] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7722), 1, + anon_sym_GT, + ACTIONS(7790), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4181), 1, + sym_comment, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [153791] = 4, + [153876] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4191), 1, + ACTIONS(7700), 1, + anon_sym_COLON, + STATE(4182), 1, sym_comment, - ACTIONS(5244), 9, + STATE(5151), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7518), 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, - [153812] = 10, + [153901] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7557), 1, + ACTIONS(7630), 1, anon_sym_GT, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_SLASH_GT, - STATE(4192), 1, - sym_comment, - STATE(4270), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4183), 1, + sym_comment, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [153845] = 10, + [153934] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7585), 1, + ACTIONS(7638), 1, anon_sym_GT, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_SLASH_GT, - STATE(4193), 1, - sym_comment, - STATE(4261), 1, + STATE(4099), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4184), 1, + sym_comment, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [153878] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_extends, - STATE(4194), 1, - sym_comment, - ACTIONS(5314), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [153905] = 12, + [153967] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7775), 1, + ACTIONS(7610), 1, anon_sym_LBRACE, - STATE(4195), 1, + STATE(1396), 1, + sym_class_body, + STATE(4185), 1, sym_comment, - STATE(4408), 1, + STATE(4382), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6533), 1, - sym_class_body, - STATE(6718), 1, + STATE(6838), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [153942] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6984), 1, - anon_sym_LT, - STATE(2375), 1, - sym_arguments, - STATE(2407), 1, - sym_template_string, - STATE(3798), 1, - sym_type_arguments, - STATE(4196), 1, - sym_comment, - STATE(6453), 1, - sym_optional_chain, - [153979] = 10, + [154004] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7631), 1, + ACTIONS(7710), 1, anon_sym_GT, - ACTIONS(7777), 1, + ACTIONS(7796), 1, anon_sym_SLASH_GT, - STATE(4197), 1, - sym_comment, - STATE(4270), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154012] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7627), 1, - anon_sym_GT, - ACTIONS(7779), 1, - anon_sym_SLASH_GT, - STATE(4198), 1, + STATE(4186), 1, sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [154045] = 10, + [154037] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7781), 1, + ACTIONS(7798), 1, anon_sym_BANG, - ACTIONS(7783), 1, + ACTIONS(7800), 1, anon_sym_QMARK, - STATE(4199), 1, + STATE(4187), 1, sym_comment, - STATE(4944), 1, + STATE(5258), 1, sym_type_annotation, - STATE(6102), 1, + STATE(6028), 1, sym__initializer, - ACTIONS(7215), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154078] = 10, + [154070] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7785), 1, - anon_sym_BANG, - ACTIONS(7787), 1, - anon_sym_QMARK, - STATE(4200), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(3307), 1, + sym_class_body, + STATE(4188), 1, sym_comment, - STATE(4935), 1, - sym_type_annotation, - STATE(6096), 1, - sym__initializer, - ACTIONS(7215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154111] = 10, + STATE(4564), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6824), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [154107] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7789), 1, - anon_sym_BANG, - ACTIONS(7791), 1, - anon_sym_QMARK, - STATE(4201), 1, + STATE(4189), 1, sym_comment, - STATE(4931), 1, - sym_type_annotation, - STATE(6095), 1, - sym__initializer, - ACTIONS(7215), 3, + ACTIONS(3449), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154144] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154128] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(4882), 1, + anon_sym_BQUOTE, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(6991), 1, anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2400), 1, - sym_class_body, - STATE(4202), 1, + ACTIONS(7802), 1, + anon_sym_DOT, + STATE(2468), 1, + sym_template_string, + STATE(2942), 1, + sym_arguments, + STATE(4190), 1, sym_comment, - STATE(4413), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6641), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [154181] = 4, + STATE(5536), 1, + sym_type_arguments, + STATE(6826), 1, + sym_optional_chain, + [154165] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4203), 1, + STATE(4191), 1, sym_comment, - ACTIONS(5314), 9, + ACTIONS(4997), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336223,14 +338402,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154202] = 4, + [154186] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4204), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4192), 1, + sym_comment, + STATE(5009), 1, + sym_type_annotation, + STATE(6334), 1, + sym__initializer, + ACTIONS(7498), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7494), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154217] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4193), 1, sym_comment, - ACTIONS(5272), 9, + ACTIONS(3411), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336240,240 +338441,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154223] = 7, + [154238] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7500), 1, + anon_sym_EQ, + STATE(4194), 1, + sym_comment, + STATE(5009), 1, + sym_type_annotation, + STATE(5137), 1, + sym__initializer, + ACTIONS(7498), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7494), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154269] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7549), 1, + STATE(4195), 1, + sym_comment, + ACTIONS(3409), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7551), 1, anon_sym_PIPE, - ACTIONS(7553), 1, anon_sym_extends, - STATE(4205), 1, + [154290] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7580), 1, + anon_sym_AMP, + STATE(4196), 1, sym_comment, - ACTIONS(5250), 6, + ACTIONS(4993), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [154250] = 12, + anon_sym_PIPE, + anon_sym_extends, + [154313] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7653), 1, + ACTIONS(7728), 1, anon_sym_LBRACE, - STATE(1254), 1, + STATE(414), 1, sym_class_body, - STATE(4206), 1, + STATE(4197), 1, sym_comment, - STATE(4573), 1, + STATE(4451), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6886), 1, + STATE(6665), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [154287] = 10, - ACTIONS(3), 1, + [154350] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + STATE(4198), 1, + sym_comment, + ACTIONS(5318), 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, + [154371] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7580), 1, + anon_sym_AMP, + ACTIONS(7582), 1, + anon_sym_PIPE, + ACTIONS(7584), 1, + anon_sym_extends, + STATE(4199), 1, + sym_comment, + ACTIONS(5134), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7581), 1, - anon_sym_GT, - ACTIONS(7793), 1, - anon_sym_SLASH_GT, - STATE(4207), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [154398] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4200), 1, sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154320] = 12, + ACTIONS(3407), 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, + [154419] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7539), 1, + ACTIONS(7570), 1, anon_sym_LBRACE, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - STATE(4208), 1, + STATE(1057), 1, + sym_class_body, + STATE(4201), 1, sym_comment, - STATE(4415), 1, + STATE(4602), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(5705), 1, - sym_class_body, - STATE(6616), 1, + STATE(6944), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [154357] = 9, + [154456] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4209), 1, + ACTIONS(7804), 1, + anon_sym_BANG, + ACTIONS(7806), 1, + anon_sym_QMARK, + STATE(4202), 1, sym_comment, - STATE(5221), 1, + STATE(5262), 1, sym_type_annotation, - STATE(6290), 1, + STATE(6033), 1, sym__initializer, - ACTIONS(7272), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7270), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154388] = 12, + [154489] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(3114), 1, + STATE(3035), 1, sym_class_body, - STATE(4210), 1, + STATE(4203), 1, sym_comment, - STATE(4416), 1, + STATE(4489), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6612), 1, + STATE(6847), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [154425] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7581), 1, - anon_sym_GT, - ACTIONS(7795), 1, - anon_sym_SLASH_GT, - STATE(4211), 1, - sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154458] = 4, + [154526] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4212), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4204), 1, sym_comment, - ACTIONS(3568), 9, + STATE(5391), 1, + sym_type_annotation, + STATE(6293), 1, + sym__initializer, + ACTIONS(7285), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7283), 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, - [154479] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [154557] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7565), 1, - anon_sym_GT, - ACTIONS(7797), 1, - anon_sym_SLASH_GT, - STATE(4213), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7810), 1, + anon_sym_BANG, + ACTIONS(7812), 1, + anon_sym_QMARK, + STATE(4205), 1, sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154512] = 10, + STATE(5317), 1, + sym_type_annotation, + STATE(6142), 1, + sym__initializer, + ACTIONS(7808), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154590] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7799), 1, + ACTIONS(7814), 1, anon_sym_BANG, - ACTIONS(7801), 1, + ACTIONS(7816), 1, anon_sym_QMARK, - STATE(4214), 1, + STATE(4206), 1, sym_comment, - STATE(4911), 1, + STATE(5263), 1, sym_type_annotation, - STATE(6076), 1, + STATE(6036), 1, sym__initializer, - ACTIONS(7215), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154545] = 4, + [154623] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4215), 1, + STATE(4207), 1, sym_comment, - ACTIONS(5264), 9, + ACTIONS(5134), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336483,310 +338735,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154566] = 6, + [154644] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7803), 1, - anon_sym_COLON, - STATE(4216), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7784), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_class_body, + STATE(4208), 1, sym_comment, - STATE(5024), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7493), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4464), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6864), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [154681] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7656), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [154591] = 10, + ACTIONS(7658), 1, + anon_sym_DQUOTE, + ACTIONS(7660), 1, + anon_sym_SQUOTE, + ACTIONS(7662), 1, + anon_sym_LT, + STATE(3906), 1, + sym_jsx_opening_element, + STATE(4209), 1, + sym_comment, + STATE(5186), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [154712] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7805), 1, + ACTIONS(7818), 1, anon_sym_BANG, - ACTIONS(7807), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - STATE(4217), 1, + STATE(4210), 1, sym_comment, - STATE(5041), 1, + STATE(5212), 1, sym_type_annotation, - STATE(5777), 1, + STATE(5993), 1, sym__initializer, - ACTIONS(7167), 3, + ACTIONS(7808), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154624] = 11, + [154745] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5376), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(6984), 1, - anon_sym_LT, - STATE(4218), 1, + STATE(4211), 1, sym_comment, - STATE(5561), 1, - sym_type_arguments, - STATE(6656), 1, - sym_optional_chain, - STATE(3098), 2, - sym_template_string, - sym_arguments, - [154659] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4219), 1, - sym_comment, - ACTIONS(4979), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7822), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [154680] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(7057), 1, - anon_sym_LT, - STATE(2407), 1, - sym_template_string, - STATE(2728), 1, - sym_arguments, - STATE(3911), 1, - sym_type_arguments, - STATE(4220), 1, - sym_comment, - STATE(6453), 1, - sym_optional_chain, - [154717] = 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [154766] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7775), 1, + ACTIONS(7758), 1, anon_sym_LBRACE, - STATE(4221), 1, - sym_comment, - STATE(4422), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6576), 1, - sym_class_heritage, - STATE(6685), 1, + STATE(995), 1, sym_class_body, - STATE(7283), 1, - sym_implements_clause, - [154754] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7565), 1, - anon_sym_GT, - ACTIONS(7809), 1, - anon_sym_SLASH_GT, - STATE(4222), 1, - sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154787] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7581), 1, - anon_sym_GT, - ACTIONS(7811), 1, - anon_sym_SLASH_GT, - STATE(4223), 1, - sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154820] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7585), 1, - anon_sym_GT, - ACTIONS(7813), 1, - anon_sym_SLASH_GT, - STATE(4197), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4224), 1, - sym_comment, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154853] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7539), 1, - anon_sym_LBRACE, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - STATE(4225), 1, + STATE(4212), 1, sym_comment, - STATE(4407), 1, + STATE(4398), 1, sym_type_parameters, - STATE(5368), 1, - sym_class_body, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6799), 1, + STATE(6471), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [154890] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7557), 1, - anon_sym_GT, - ACTIONS(7815), 1, - anon_sym_SLASH_GT, - STATE(4226), 1, - sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154923] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7561), 1, - anon_sym_GT, - ACTIONS(7817), 1, - anon_sym_SLASH_GT, - STATE(4198), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4227), 1, - sym_comment, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154956] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7569), 1, - anon_sym_GT, - ACTIONS(7819), 1, - anon_sym_SLASH_GT, - STATE(4228), 1, - sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154989] = 4, + [154803] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4229), 1, + STATE(4213), 1, sym_comment, - ACTIONS(4941), 9, + ACTIONS(2200), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336796,103 +338864,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155010] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7223), 1, - anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_COMMA, - ACTIONS(7821), 1, - anon_sym_RBRACE, - STATE(4230), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [155041] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7223), 1, - anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_COMMA, - STATE(4231), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [155072] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2535), 1, - sym_class_body, - STATE(4232), 1, - sym_comment, - STATE(4433), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6530), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [155109] = 7, + [154824] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_extends, - STATE(4233), 1, + STATE(4214), 1, sym_comment, - ACTIONS(4941), 6, + ACTIONS(5300), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [155136] = 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154845] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4234), 1, + STATE(4215), 1, sym_comment, - ACTIONS(3536), 9, + ACTIONS(5172), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336902,109 +338898,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155157] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - anon_sym_LT, - ACTIONS(7825), 1, - anon_sym_DOT, - STATE(4235), 1, - sym_comment, - STATE(5507), 1, - sym_arguments, - STATE(6964), 1, - sym_type_arguments, - ACTIONS(7823), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [155188] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - ACTIONS(6984), 1, - anon_sym_LT, - ACTIONS(7827), 1, - anon_sym_DOT, - STATE(3098), 1, - sym_template_string, - STATE(3296), 1, - sym_arguments, - STATE(4236), 1, - sym_comment, - STATE(5561), 1, - sym_type_arguments, - STATE(6656), 1, - sym_optional_chain, - [155225] = 12, + [154866] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7539), 1, - anon_sym_LBRACE, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - STATE(4237), 1, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3113), 1, + sym_class_body, + STATE(4216), 1, sym_comment, - STATE(4437), 1, + STATE(4547), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(5723), 1, - sym_class_body, - STATE(6526), 1, + STATE(6478), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [155262] = 10, + [154903] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7829), 1, - anon_sym_BANG, - ACTIONS(7831), 1, - anon_sym_QMARK, - STATE(4238), 1, + STATE(4217), 1, sym_comment, - STATE(5020), 1, - sym_type_annotation, - STATE(5756), 1, - sym__initializer, - ACTIONS(7167), 3, + ACTIONS(5176), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155295] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154924] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4239), 1, + STATE(4218), 1, sym_comment, - ACTIONS(3420), 9, + ACTIONS(5190), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337014,37 +338957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155316] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7033), 1, - anon_sym_SLASH_GT, - ACTIONS(7330), 1, - anon_sym_GT, - STATE(4088), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4240), 1, - sym_comment, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [155349] = 4, + [154945] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4241), 1, + STATE(4219), 1, sym_comment, - ACTIONS(3438), 9, + ACTIONS(5215), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337054,14 +338974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155370] = 4, + [154966] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4242), 1, + STATE(4220), 1, sym_comment, - ACTIONS(5355), 9, + ACTIONS(5239), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337071,39 +338991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155391] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7833), 1, - anon_sym_LBRACE, - STATE(956), 1, - sym_class_body, - STATE(4243), 1, - sym_comment, - STATE(4471), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6451), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [155428] = 4, + [154987] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4244), 1, + STATE(4221), 1, sym_comment, - ACTIONS(3448), 9, + ACTIONS(5265), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337113,171 +339008,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155449] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4245), 1, - sym_comment, - ACTIONS(7835), 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, - [155470] = 12, + [155008] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7725), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(400), 1, + STATE(2950), 1, sym_class_body, - STATE(4246), 1, + STATE(4222), 1, sym_comment, - STATE(4409), 1, + STATE(4443), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6780), 1, + STATE(6427), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [155507] = 12, + [155045] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7837), 1, + ACTIONS(7766), 1, anon_sym_LBRACE, - STATE(326), 1, + STATE(1144), 1, sym_class_body, - STATE(4247), 1, + STATE(4223), 1, sym_comment, - STATE(4469), 1, + STATE(4436), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6445), 1, + STATE(6414), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [155544] = 10, + [155082] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7824), 1, + anon_sym_LBRACK, + STATE(4224), 1, + sym_comment, + ACTIONS(5290), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155105] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7839), 1, - anon_sym_BANG, - ACTIONS(7841), 1, - anon_sym_QMARK, - STATE(4248), 1, + STATE(4225), 1, sym_comment, - STATE(5071), 1, + STATE(5216), 1, sym_type_annotation, - STATE(5828), 1, + STATE(5937), 1, sym__initializer, - ACTIONS(7167), 3, + ACTIONS(7279), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7277), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155577] = 12, + [155136] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(1425), 1, - sym_class_body, - STATE(4249), 1, + STATE(4226), 1, sym_comment, - STATE(4447), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6474), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [155614] = 4, + ACTIONS(7826), 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, + [155157] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2674), 1, + anon_sym_RBRACE, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4250), 1, - sym_comment, - ACTIONS(5310), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7212), 1, + anon_sym_EQ, + ACTIONS(7602), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [155635] = 12, + STATE(4227), 1, + sym_comment, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [155188] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7716), 1, + anon_sym_GT, + ACTIONS(7828), 1, + anon_sym_SLASH_GT, + STATE(4104), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4228), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155221] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7843), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7045), 1, anon_sym_LBRACE, - STATE(1155), 1, - sym_class_body, - STATE(4251), 1, + ACTIONS(7722), 1, + anon_sym_GT, + ACTIONS(7830), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4229), 1, sym_comment, - STATE(4466), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6431), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [155672] = 4, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155254] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4252), 1, + STATE(4230), 1, sym_comment, - ACTIONS(4975), 9, + ACTIONS(5290), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337287,57 +339200,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155693] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7833), 1, - anon_sym_LBRACE, - STATE(923), 1, - sym_class_body, - STATE(4253), 1, - sym_comment, - STATE(4465), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6418), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [155730] = 5, + [155275] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - STATE(4254), 1, + STATE(4231), 1, sym_comment, - ACTIONS(4991), 8, + ACTIONS(2172), 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, - [155753] = 4, + [155296] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4255), 1, + STATE(4232), 1, sym_comment, - ACTIONS(5074), 9, + ACTIONS(5055), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337347,14 +339234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155774] = 4, + [155317] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4256), 1, + STATE(4233), 1, sym_comment, - ACTIONS(4995), 9, + ACTIONS(5051), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337364,14 +339251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155795] = 4, + [155338] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4257), 1, + STATE(4234), 1, sym_comment, - ACTIONS(5329), 9, + ACTIONS(5051), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337381,857 +339268,821 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155816] = 12, + [155359] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(6991), 1, anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(3030), 1, - sym_class_body, - STATE(4258), 1, + STATE(4235), 1, sym_comment, - STATE(4428), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6548), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [155853] = 4, + STATE(5615), 1, + sym_type_arguments, + STATE(6537), 1, + sym_optional_chain, + STATE(3067), 2, + sym_template_string, + sym_arguments, + [155394] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4259), 1, + STATE(4236), 1, sym_comment, - ACTIONS(7679), 9, + ACTIONS(5063), 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, - [155874] = 5, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155415] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7599), 1, - anon_sym_LBRACK, - STATE(4260), 1, + STATE(4237), 1, sym_comment, - ACTIONS(5061), 8, + ACTIONS(5063), 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, - [155897] = 10, - ACTIONS(3), 1, + [155436] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + STATE(4238), 1, + sym_comment, + ACTIONS(7832), 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, + [155457] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7631), 1, - anon_sym_GT, - ACTIONS(7845), 1, - anon_sym_SLASH_GT, - STATE(4261), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7834), 1, + anon_sym_BANG, + ACTIONS(7836), 1, + anon_sym_QMARK, + STATE(4239), 1, sym_comment, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [155930] = 12, + STATE(5307), 1, + sym_type_annotation, + STATE(6210), 1, + sym__initializer, + ACTIONS(7194), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155490] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(6984), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6991), 1, anon_sym_LT, - STATE(3098), 1, + STATE(2468), 1, sym_template_string, - STATE(3223), 1, + STATE(3270), 1, sym_arguments, - STATE(4064), 1, + STATE(3829), 1, sym_type_arguments, - STATE(4262), 1, + STATE(4240), 1, sym_comment, - STATE(6656), 1, + STATE(6826), 1, sym_optional_chain, - [155967] = 10, + [155527] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7027), 1, - anon_sym_SLASH_GT, - ACTIONS(7330), 1, - anon_sym_GT, - STATE(4222), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4263), 1, - sym_comment, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(7528), 1, sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156000] = 12, + ACTIONS(7838), 1, + anon_sym_RBRACE, + STATE(4241), 1, + sym_comment, + STATE(5611), 1, + sym_string, + STATE(6186), 1, + sym__module_export_name, + STATE(6872), 1, + sym_export_specifier, + ACTIONS(7530), 2, + anon_sym_type, + anon_sym_typeof, + [155562] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7539), 1, - anon_sym_LBRACE, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - STATE(4264), 1, + ACTIONS(7840), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_class_body, + STATE(4242), 1, sym_comment, - STATE(4411), 1, + STATE(4445), 1, sym_type_parameters, - STATE(5117), 1, - sym_class_body, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6741), 1, + STATE(6400), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [156037] = 12, + [155599] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7580), 1, + anon_sym_AMP, + ACTIONS(7582), 1, + anon_sym_PIPE, + ACTIONS(7584), 1, + anon_sym_extends, + STATE(4243), 1, + sym_comment, + ACTIONS(5016), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [155626] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7625), 1, + ACTIONS(7780), 1, anon_sym_LBRACE, - STATE(432), 1, + STATE(1375), 1, sym_class_body, - STATE(4265), 1, + STATE(4244), 1, sym_comment, - STATE(4587), 1, + STATE(4419), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6995), 1, + STATE(6367), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [156074] = 4, + [155663] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4266), 1, + ACTIONS(7580), 1, + anon_sym_AMP, + ACTIONS(7582), 1, + anon_sym_PIPE, + ACTIONS(7584), 1, + anon_sym_extends, + STATE(4245), 1, sym_comment, - ACTIONS(5061), 9, + ACTIONS(5022), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [156095] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7847), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_DQUOTE, - ACTIONS(7851), 1, - anon_sym_SQUOTE, - ACTIONS(7853), 1, - anon_sym_LT, - STATE(3902), 1, - sym_jsx_opening_element, - STATE(4267), 1, - sym_comment, - STATE(5101), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [156126] = 12, + [155690] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7618), 1, anon_sym_LBRACE, - STATE(3042), 1, - sym_class_body, - STATE(4268), 1, + STATE(4246), 1, sym_comment, - STATE(4461), 1, + STATE(4559), 1, sym_type_parameters, - STATE(5699), 1, + STATE(4955), 1, + sym_class_body, + STATE(6082), 1, sym_extends_clause, - STATE(6368), 1, + STATE(6642), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [156163] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7847), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_DQUOTE, - ACTIONS(7851), 1, - anon_sym_SQUOTE, - ACTIONS(7853), 1, - anon_sym_LT, - STATE(3902), 1, - sym_jsx_opening_element, - STATE(4269), 1, - sym_comment, - STATE(5107), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [156194] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7858), 1, - anon_sym_LBRACE, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7855), 2, - sym_jsx_identifier, - sym_identifier, - ACTIONS(7861), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(4270), 2, - sym_comment, - aux_sym__jsx_start_opening_element_repeat1, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156223] = 10, + [155727] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7016), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(7627), 1, + ACTIONS(7716), 1, anon_sym_GT, - ACTIONS(7863), 1, + ACTIONS(7842), 1, anon_sym_SLASH_GT, - STATE(4270), 1, + STATE(4128), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4271), 1, + STATE(4247), 1, sym_comment, - STATE(4734), 1, + STATE(4691), 1, sym_jsx_namespace_name, - ACTIONS(7012), 2, + ACTIONS(7041), 2, sym_jsx_identifier, sym_identifier, - STATE(5159), 2, + STATE(5036), 2, sym_jsx_expression, sym_jsx_attribute, - [156256] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [155760] = 11, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOT, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(6984), 1, - anon_sym_LT, - STATE(4272), 1, - sym_comment, - STATE(5506), 1, - sym_type_arguments, - STATE(6453), 1, - sym_optional_chain, - STATE(2407), 2, - sym_template_string, - sym_arguments, - [156291] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7223), 1, - anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_COMMA, - ACTIONS(7865), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(7528), 1, + sym_identifier, + ACTIONS(7844), 1, anon_sym_RBRACE, - STATE(4273), 1, + STATE(4248), 1, sym_comment, - STATE(5720), 1, - aux_sym_object_repeat1, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4520), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [156322] = 10, + STATE(5611), 1, + sym_string, + STATE(6186), 1, + sym__module_export_name, + STATE(6872), 1, + sym_export_specifier, + ACTIONS(7530), 2, + anon_sym_type, + anon_sym_typeof, + [155795] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7867), 1, - anon_sym_BANG, - ACTIONS(7869), 1, - anon_sym_QMARK, - STATE(4274), 1, + STATE(4249), 1, sym_comment, - STATE(5104), 1, + STATE(5097), 1, sym_type_annotation, - STATE(5854), 1, + STATE(5903), 1, sym__initializer, - ACTIONS(7167), 3, + ACTIONS(7848), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7846), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156355] = 10, + [155826] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7873), 1, + ACTIONS(7850), 1, anon_sym_BANG, - ACTIONS(7875), 1, + ACTIONS(7852), 1, anon_sym_QMARK, - STATE(4275), 1, + STATE(4250), 1, sym_comment, - STATE(4850), 1, + STATE(5375), 1, sym_type_annotation, - STATE(6017), 1, + STATE(6185), 1, sym__initializer, - ACTIONS(7871), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156388] = 9, + [155859] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7223), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_COMMA, - ACTIONS(7877), 1, - anon_sym_RBRACE, - STATE(4276), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - STATE(6315), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 4, - anon_sym_LPAREN, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7854), 1, + anon_sym_BANG, + ACTIONS(7856), 1, anon_sym_QMARK, - [156419] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7627), 1, - anon_sym_GT, - ACTIONS(7879), 1, - anon_sym_SLASH_GT, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4277), 1, + STATE(4251), 1, sym_comment, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156452] = 10, + STATE(5374), 1, + sym_type_annotation, + STATE(6183), 1, + sym__initializer, + ACTIONS(7194), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155892] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7881), 1, + ACTIONS(7858), 1, anon_sym_BANG, - ACTIONS(7883), 1, + ACTIONS(7860), 1, anon_sym_QMARK, - STATE(4278), 1, + STATE(4252), 1, sym_comment, - STATE(5051), 1, + STATE(5225), 1, sym_type_annotation, - STATE(5929), 1, + STATE(5965), 1, sym__initializer, - ACTIONS(7871), 3, + ACTIONS(7238), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156485] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7016), 1, - anon_sym_LBRACE, - ACTIONS(7631), 1, - anon_sym_GT, - ACTIONS(7885), 1, - anon_sym_SLASH_GT, - STATE(4270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4279), 1, - sym_comment, - STATE(4734), 1, - sym_jsx_namespace_name, - ACTIONS(7012), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5159), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156518] = 4, + [155925] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4280), 1, + STATE(4253), 1, sym_comment, - ACTIONS(5078), 9, + ACTIONS(7862), 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, - [156539] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7443), 1, - sym_identifier, - ACTIONS(7445), 1, - anon_sym_type, - ACTIONS(7451), 1, - anon_sym_typeof, - STATE(4281), 1, - sym_comment, - STATE(5427), 1, - sym_string, - STATE(6638), 1, - sym_import_specifier, - STATE(6851), 1, - sym__import_identifier, - STATE(7127), 1, - sym__module_export_name, - [156576] = 4, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [155946] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4282), 1, + STATE(4254), 1, sym_comment, - ACTIONS(5035), 9, + ACTIONS(7864), 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, - [156597] = 4, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [155967] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4283), 1, - sym_comment, - ACTIONS(5031), 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(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, anon_sym_extends, - [156618] = 4, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7840), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_class_body, + STATE(4255), 1, + sym_comment, + STATE(4391), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6876), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [156004] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4284), 1, + STATE(4256), 1, sym_comment, - ACTIONS(5027), 9, + ACTIONS(7866), 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, - [156639] = 10, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [156025] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(7868), 1, anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7887), 1, - anon_sym_BANG, - ACTIONS(7889), 1, - anon_sym_QMARK, - STATE(4285), 1, + STATE(4257), 1, sym_comment, - STATE(5282), 1, - sym_type_annotation, - STATE(6217), 1, - sym__initializer, - ACTIONS(7209), 3, + ACTIONS(7512), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [156054] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7722), 1, + anon_sym_GT, + ACTIONS(7870), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4258), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [156087] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_EQ, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4259), 1, + sym_comment, + STATE(4314), 1, + sym_arguments, + ACTIONS(7508), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [156116] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4260), 1, + sym_comment, + ACTIONS(7876), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [156672] = 6, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [156137] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7803), 1, - anon_sym_COLON, - STATE(4286), 1, + STATE(4261), 1, sym_comment, - STATE(5360), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7519), 5, + ACTIONS(4360), 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, - [156697] = 12, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [156158] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4262), 1, + sym_comment, + ACTIONS(4353), 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, + [156179] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7837), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(331), 1, + STATE(2447), 1, sym_class_body, - STATE(4287), 1, + STATE(4263), 1, sym_comment, - STATE(4464), 1, + STATE(4577), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6398), 1, + STATE(6551), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [156734] = 12, + [156216] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7596), 1, anon_sym_LBRACE, - STATE(3155), 1, + STATE(1504), 1, sym_class_body, - STATE(4288), 1, + STATE(4264), 1, sym_comment, - STATE(4448), 1, + STATE(4473), 1, sym_type_parameters, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6463), 1, + STATE(6724), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [156771] = 10, + [156253] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7642), 1, + anon_sym_GT, + ACTIONS(7878), 1, + anon_sym_SLASH_GT, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4265), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [156286] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7891), 1, - anon_sym_BANG, - ACTIONS(7893), 1, - anon_sym_QMARK, - STATE(4289), 1, + STATE(4266), 1, sym_comment, - STATE(5097), 1, - sym_type_annotation, - STATE(5836), 1, - sym__initializer, - ACTIONS(7167), 3, + ACTIONS(4874), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [156804] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156307] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5376), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(5404), 1, + ACTIONS(4882), 1, anon_sym_BQUOTE, - ACTIONS(6984), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(6991), 1, anon_sym_LT, - STATE(2689), 1, - sym_arguments, - STATE(3098), 1, - sym_template_string, - STATE(4064), 1, - sym_type_arguments, - STATE(4290), 1, + STATE(4267), 1, sym_comment, - STATE(6656), 1, + STATE(5536), 1, + sym_type_arguments, + STATE(6826), 1, sym_optional_chain, - [156841] = 12, + STATE(2468), 2, + sym_template_string, + sym_arguments, + [156342] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7843), 1, + ACTIONS(7618), 1, anon_sym_LBRACE, - STATE(1158), 1, - sym_class_body, - STATE(4291), 1, + STATE(4268), 1, sym_comment, - STATE(4475), 1, + STATE(4572), 1, sym_type_parameters, - STATE(5699), 1, + STATE(5790), 1, + sym_class_body, + STATE(6082), 1, sym_extends_clause, - STATE(6467), 1, + STATE(6563), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [156878] = 4, + [156379] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4292), 1, + ACTIONS(7880), 1, + anon_sym_EQ, + STATE(4269), 1, sym_comment, - ACTIONS(4853), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7862), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [156899] = 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [156402] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4869), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_QMARK_DOT, - ACTIONS(5370), 1, + ACTIONS(7882), 1, + anon_sym_EQ, + STATE(4270), 1, + sym_comment, + ACTIONS(7866), 8, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6984), 1, - anon_sym_LT, - ACTIONS(7895), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - STATE(2407), 1, - sym_template_string, - STATE(3167), 1, - sym_arguments, - STATE(4293), 1, - sym_comment, - STATE(5506), 1, - sym_type_arguments, - STATE(6453), 1, - sym_optional_chain, - [156936] = 12, + anon_sym_EQ_GT, + [156425] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7573), 1, - anon_sym_LBRACE, - STATE(1502), 1, - sym_class_body, - STATE(4294), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7884), 1, + anon_sym_BANG, + ACTIONS(7886), 1, + anon_sym_QMARK, + STATE(4271), 1, sym_comment, - STATE(4467), 1, - sym_type_parameters, - STATE(5699), 1, - sym_extends_clause, - STATE(6441), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [156973] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5366), 1, + sym_type_annotation, + STATE(6153), 1, + sym__initializer, + ACTIONS(7194), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156458] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7529), 1, - sym_identifier, - ACTIONS(7897), 1, - anon_sym_RBRACE, - STATE(4295), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4272), 1, sym_comment, - STATE(5427), 1, - sym_string, - STATE(5715), 1, - sym__module_export_name, - STATE(6683), 1, - sym_export_specifier, - ACTIONS(7531), 2, - anon_sym_type, - anon_sym_typeof, - [157008] = 4, + ACTIONS(5282), 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, + [156479] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4296), 1, + STATE(4273), 1, sym_comment, - ACTIONS(2207), 9, + ACTIONS(5059), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338241,37 +340092,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157029] = 10, + [156500] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7588), 1, + anon_sym_LBRACE, + STATE(380), 1, + sym_class_body, + STATE(4274), 1, + sym_comment, + STATE(4492), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6989), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [156537] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7899), 1, + ACTIONS(7888), 1, anon_sym_BANG, - ACTIONS(7901), 1, + ACTIONS(7890), 1, anon_sym_QMARK, - STATE(4297), 1, + STATE(4275), 1, sym_comment, - STATE(5305), 1, + STATE(5312), 1, sym_type_annotation, - STATE(6168), 1, + STATE(6141), 1, sym__initializer, - ACTIONS(7209), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157062] = 4, + [156570] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4298), 1, + ACTIONS(7212), 1, + anon_sym_EQ, + ACTIONS(7602), 1, + anon_sym_COMMA, + ACTIONS(7892), 1, + anon_sym_RBRACE, + STATE(4276), 1, + sym_comment, + STATE(6195), 1, + aux_sym_object_repeat1, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4527), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156601] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4277), 1, sym_comment, - ACTIONS(2251), 9, + ACTIONS(5255), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338281,14 +340179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157083] = 4, + [156622] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4299), 1, + STATE(4278), 1, sym_comment, - ACTIONS(5045), 9, + ACTIONS(5247), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338298,14 +340196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157104] = 4, + [156643] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4300), 1, + STATE(4279), 1, sym_comment, - ACTIONS(4857), 9, + ACTIONS(5114), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338315,37 +340213,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157125] = 10, + [156664] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7903), 1, + ACTIONS(7894), 1, anon_sym_BANG, - ACTIONS(7905), 1, + ACTIONS(7896), 1, anon_sym_QMARK, - STATE(4301), 1, + STATE(4280), 1, sym_comment, - STATE(5201), 1, + STATE(5202), 1, sym_type_annotation, - STATE(5889), 1, + STATE(5999), 1, sym__initializer, - ACTIONS(7167), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157158] = 4, + [156697] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4302), 1, + STATE(4281), 1, sym_comment, - ACTIONS(5051), 9, + ACTIONS(5243), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338355,5021 +340253,5375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157179] = 10, + [156718] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(7331), 1, + anon_sym_GT, + ACTIONS(7333), 1, + anon_sym_SLASH_GT, + STATE(4161), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4282), 1, + sym_comment, + STATE(4691), 1, + sym_jsx_namespace_name, + ACTIONS(7041), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5036), 2, + sym_jsx_expression, + sym_jsx_attribute, + [156751] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7907), 1, + ACTIONS(7898), 1, anon_sym_BANG, - ACTIONS(7909), 1, + ACTIONS(7900), 1, anon_sym_QMARK, - STATE(4303), 1, + STATE(4283), 1, sym_comment, - STATE(5126), 1, + STATE(5304), 1, sym_type_annotation, - STATE(5866), 1, + STATE(6131), 1, sym__initializer, - ACTIONS(7167), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157212] = 11, + [156784] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7911), 1, - sym_escape_sequence, - ACTIONS(7913), 1, - anon_sym_BQUOTE, - ACTIONS(7915), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7917), 1, - sym__template_chars, - STATE(4304), 1, - sym_comment, - STATE(4744), 1, - aux_sym_template_string_repeat1, - STATE(4854), 1, - aux_sym_template_literal_type_repeat1, - STATE(5571), 1, - sym_template_substitution, - STATE(6024), 1, - sym_template_type, - [157246] = 10, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4010), 1, - sym_identifier, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(7824), 1, anon_sym_LBRACK, - ACTIONS(7919), 1, - anon_sym_enum, - STATE(4305), 1, - sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5538), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [157278] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7911), 1, - sym_escape_sequence, - ACTIONS(7915), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7917), 1, - sym__template_chars, - ACTIONS(7921), 1, - anon_sym_BQUOTE, - STATE(4306), 1, + STATE(4284), 1, sym_comment, - STATE(4744), 1, - aux_sym_template_string_repeat1, - STATE(4984), 1, - aux_sym_template_literal_type_repeat1, - STATE(5571), 1, - sym_template_substitution, - STATE(6024), 1, - sym_template_type, - [157312] = 9, + ACTIONS(5362), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156807] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7471), 1, + ACTIONS(7902), 1, anon_sym_BANG, - STATE(4307), 1, + ACTIONS(7904), 1, + anon_sym_QMARK, + STATE(4285), 1, sym_comment, - STATE(5361), 1, + STATE(5275), 1, sym_type_annotation, - STATE(5760), 1, + STATE(6062), 1, sym__initializer, - ACTIONS(7469), 3, + ACTIONS(7194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157342] = 5, + [156840] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7923), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4308), 1, - sym_comment, - ACTIONS(6271), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [157364] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7925), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, - anon_sym_QMARK_COLON, - STATE(4309), 1, + ACTIONS(7906), 1, + anon_sym_BANG, + ACTIONS(7908), 1, + anon_sym_QMARK, + STATE(4286), 1, sym_comment, - STATE(4876), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + STATE(5300), 1, sym_type_annotation, - [157392] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7931), 1, - sym_identifier, - ACTIONS(7933), 1, - anon_sym_const, - ACTIONS(7935), 1, - anon_sym_GT, - ACTIONS(7937), 1, - sym_jsx_identifier, - ACTIONS(7939), 1, - anon_sym_SLASH_GT, - STATE(3916), 1, - sym_nested_identifier, - STATE(4263), 1, - sym_jsx_namespace_name, - STATE(4310), 1, - sym_comment, - STATE(5711), 1, - sym_type_parameter, - [157426] = 7, + STATE(6128), 1, + sym__initializer, + ACTIONS(7194), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156873] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(7941), 1, - anon_sym_DOT, - STATE(4311), 1, + ACTIONS(7910), 1, + anon_sym_extends, + STATE(4287), 1, sym_comment, - STATE(4713), 1, - sym_arguments, - ACTIONS(7481), 5, + ACTIONS(5339), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157452] = 8, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [156896] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7925), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, - anon_sym_QMARK_COLON, - STATE(4312), 1, + ACTIONS(7824), 1, + anon_sym_LBRACK, + STATE(4288), 1, sym_comment, - STATE(4877), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157480] = 7, + ACTIONS(5290), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5335), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [156921] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7549), 1, + ACTIONS(7580), 1, anon_sym_AMP, - ACTIONS(7551), 1, + ACTIONS(7582), 1, anon_sym_PIPE, - ACTIONS(7553), 1, + ACTIONS(7584), 1, anon_sym_extends, - STATE(4313), 1, + STATE(4289), 1, sym_comment, - ACTIONS(7479), 5, + ACTIONS(5296), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157506] = 11, + anon_sym_LBRACK, + [156948] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7911), 1, - sym_escape_sequence, - ACTIONS(7915), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7917), 1, - sym__template_chars, - ACTIONS(7943), 1, - anon_sym_BQUOTE, - STATE(4314), 1, - sym_comment, - STATE(4785), 1, - aux_sym_template_string_repeat1, - STATE(4854), 1, - aux_sym_template_literal_type_repeat1, - STATE(5571), 1, - sym_template_substitution, - STATE(6024), 1, - sym_template_type, - [157540] = 10, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7529), 1, - sym_identifier, - STATE(4315), 1, + ACTIONS(7912), 1, + anon_sym_EQ, + STATE(4290), 1, sym_comment, - STATE(5427), 1, - sym_string, - STATE(5715), 1, - sym__module_export_name, - STATE(6683), 1, - sym_export_specifier, - ACTIONS(7531), 2, - anon_sym_type, - anon_sym_typeof, - [157572] = 7, + ACTIONS(7864), 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, + [156971] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - ACTIONS(7947), 1, - anon_sym_DOT, - STATE(4316), 1, + STATE(4291), 1, sym_comment, - STATE(4893), 1, - sym_statement_block, - ACTIONS(2071), 5, + ACTIONS(5208), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157598] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7925), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, - anon_sym_QMARK_COLON, - STATE(4317), 1, - sym_comment, - STATE(4977), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157626] = 7, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156992] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - ACTIONS(7949), 1, - anon_sym_DOT, - STATE(4318), 1, + STATE(4292), 1, sym_comment, - STATE(4893), 1, - sym_statement_block, - ACTIONS(2071), 5, + ACTIONS(5144), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157652] = 7, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157013] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(7580), 1, anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_PIPE, - ACTIONS(7439), 1, - anon_sym_extends, - STATE(4319), 1, + STATE(4293), 1, sym_comment, - ACTIONS(7951), 5, + ACTIONS(5204), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157678] = 7, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [157036] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_PIPE, - ACTIONS(7439), 1, - anon_sym_extends, - STATE(4320), 1, + STATE(4294), 1, sym_comment, - ACTIONS(7953), 5, + ACTIONS(5098), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157704] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7435), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7437), 1, anon_sym_PIPE, - ACTIONS(7439), 1, anon_sym_extends, - STATE(4321), 1, + [157057] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(6991), 1, + anon_sym_LT, + ACTIONS(7914), 1, + anon_sym_DOT, + STATE(2984), 1, + sym_arguments, + STATE(3067), 1, + sym_template_string, + STATE(4295), 1, + sym_comment, + STATE(5615), 1, + sym_type_arguments, + STATE(6537), 1, + sym_optional_chain, + [157094] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4296), 1, sym_comment, - ACTIONS(7955), 5, + ACTIONS(5045), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157730] = 8, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157115] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7925), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, - anon_sym_QMARK_COLON, - STATE(4322), 1, + STATE(4297), 1, sym_comment, - STATE(4989), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157758] = 11, + ACTIONS(4943), 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, + [157136] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - sym_escape_sequence, - ACTIONS(7915), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7917), 1, - sym__template_chars, - ACTIONS(7957), 1, - anon_sym_BQUOTE, - STATE(4323), 1, + ACTIONS(7916), 1, + anon_sym_EQ, + STATE(4298), 1, sym_comment, - STATE(4744), 1, - aux_sym_template_string_repeat1, - STATE(4854), 1, - aux_sym_template_literal_type_repeat1, - STATE(5571), 1, - sym_template_substitution, - STATE(6024), 1, - sym_template_type, - [157792] = 11, + ACTIONS(7876), 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, + [157159] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - sym_escape_sequence, - ACTIONS(7915), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7917), 1, - sym__template_chars, - ACTIONS(7959), 1, - anon_sym_BQUOTE, - STATE(4324), 1, + ACTIONS(7918), 1, + anon_sym_EQ, + STATE(4299), 1, sym_comment, - STATE(4744), 1, - aux_sym_template_string_repeat1, - STATE(4854), 1, - aux_sym_template_literal_type_repeat1, - STATE(5571), 1, - sym_template_substitution, - STATE(6024), 1, - sym_template_type, - [157826] = 8, + ACTIONS(4353), 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, + [157182] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7925), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, - anon_sym_QMARK_COLON, - STATE(4325), 1, + ACTIONS(4896), 1, + anon_sym_QMARK_DOT, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(5420), 1, + anon_sym_BQUOTE, + ACTIONS(6991), 1, + anon_sym_LT, + STATE(2875), 1, + sym_arguments, + STATE(3067), 1, + sym_template_string, + STATE(4035), 1, + sym_type_arguments, + STATE(4300), 1, sym_comment, - STATE(5208), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157854] = 11, + STATE(6537), 1, + sym_optional_chain, + [157219] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - sym_escape_sequence, - ACTIONS(7915), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7917), 1, - sym__template_chars, - ACTIONS(7961), 1, - anon_sym_BQUOTE, - STATE(4326), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7708), 1, + anon_sym_LBRACE, + STATE(349), 1, + sym_class_body, + STATE(4301), 1, sym_comment, - STATE(4744), 1, - aux_sym_template_string_repeat1, - STATE(4854), 1, - aux_sym_template_literal_type_repeat1, - STATE(5571), 1, - sym_template_substitution, - STATE(6024), 1, - sym_template_type, - [157888] = 5, + STATE(4369), 1, + sym_type_parameters, + STATE(6082), 1, + sym_extends_clause, + STATE(6402), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [157256] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7963), 1, + ACTIONS(7920), 1, anon_sym_EQ, - STATE(4327), 1, + STATE(4302), 1, sym_comment, - ACTIONS(7965), 7, + ACTIONS(4360), 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, - [157910] = 8, + [157279] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7925), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, - anon_sym_QMARK_COLON, - STATE(4328), 1, + STATE(4303), 1, sym_comment, - STATE(5364), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157938] = 5, + ACTIONS(4870), 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, + [157300] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7969), 1, - anon_sym_DOT, - STATE(4329), 1, + STATE(4304), 1, sym_comment, - ACTIONS(7967), 7, + ACTIONS(4957), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157960] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157321] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4010), 1, - sym_identifier, - ACTIONS(4012), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4305), 1, + sym_comment, + ACTIONS(4860), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4014), 1, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(7971), 1, - anon_sym_enum, - STATE(4330), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157342] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7922), 1, + sym_escape_sequence, + ACTIONS(7924), 1, + anon_sym_BQUOTE, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7928), 1, + sym__template_chars, + STATE(4306), 1, sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5524), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [157992] = 8, + STATE(4694), 1, + aux_sym_template_string_repeat1, + STATE(4986), 1, + aux_sym_template_literal_type_repeat1, + STATE(5618), 1, + sym_template_substitution, + STATE(5689), 1, + sym_template_type, + [157376] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - ACTIONS(7925), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, - anon_sym_QMARK_COLON, - STATE(4331), 1, + STATE(4307), 1, sym_comment, - STATE(4979), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [158020] = 10, + ACTIONS(7930), 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, + [157396] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4010), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(7973), 1, + ACTIONS(7932), 1, anon_sym_enum, - STATE(4332), 1, + STATE(4308), 1, sym_comment, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(5487), 1, + STATE(5456), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - [158052] = 10, + [157428] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4010), 1, + ACTIONS(7934), 1, sym_identifier, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7975), 1, - anon_sym_enum, - STATE(4333), 1, + ACTIONS(7936), 1, + anon_sym_const, + ACTIONS(7938), 1, + anon_sym_GT, + ACTIONS(7940), 1, + sym_jsx_identifier, + ACTIONS(7942), 1, + anon_sym_SLASH_GT, + STATE(3963), 1, + sym_nested_identifier, + STATE(4087), 1, + sym_jsx_namespace_name, + STATE(4309), 1, sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5445), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [158084] = 8, + STATE(6202), 1, + sym_type_parameter, + [157462] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7925), 1, + ACTIONS(7944), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, + ACTIONS(7946), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, + ACTIONS(7948), 1, anon_sym_QMARK_COLON, - STATE(4334), 1, + STATE(4310), 1, sym_comment, - STATE(5140), 4, + STATE(5106), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [158112] = 8, + [157490] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(7925), 1, + ACTIONS(7944), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7927), 1, + ACTIONS(7946), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7929), 1, + ACTIONS(7948), 1, anon_sym_QMARK_COLON, - STATE(4335), 1, + STATE(4311), 1, sym_comment, - STATE(5141), 4, + STATE(5103), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [158140] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4010), 1, - sym_identifier, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7977), 1, - anon_sym_enum, - STATE(4336), 1, - sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5577), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [158172] = 4, + [157518] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4337), 1, + ACTIONS(7952), 1, + anon_sym_DOT, + STATE(4312), 1, sym_comment, - ACTIONS(7965), 8, + ACTIONS(7950), 7, 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, - [158192] = 11, + [157540] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + ACTIONS(7944), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7946), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7948), 1, + anon_sym_QMARK_COLON, + STATE(4313), 1, + sym_comment, + STATE(5213), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157568] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7954), 1, + anon_sym_EQ, + STATE(4314), 1, + sym_comment, + ACTIONS(7930), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [157590] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, + ACTIONS(7936), 1, anon_sym_const, - ACTIONS(7935), 1, + ACTIONS(7938), 1, anon_sym_GT, - ACTIONS(7979), 1, + ACTIONS(7956), 1, sym_identifier, - ACTIONS(7981), 1, + ACTIONS(7958), 1, sym_jsx_identifier, - ACTIONS(7983), 1, + ACTIONS(7960), 1, anon_sym_SLASH_GT, - STATE(3938), 1, + STATE(3914), 1, sym_nested_identifier, - STATE(4240), 1, + STATE(4093), 1, sym_jsx_namespace_name, - STATE(4338), 1, + STATE(4315), 1, sym_comment, - STATE(5711), 1, + STATE(6202), 1, sym_type_parameter, - [158226] = 4, + [157624] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4339), 1, + ACTIONS(7922), 1, + sym_escape_sequence, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7928), 1, + sym__template_chars, + ACTIONS(7962), 1, + anon_sym_BQUOTE, + STATE(4316), 1, sym_comment, - ACTIONS(6271), 8, - sym__automatic_semicolon, - anon_sym_EQ, + STATE(4694), 1, + aux_sym_template_string_repeat1, + STATE(5098), 1, + aux_sym_template_literal_type_repeat1, + STATE(5618), 1, + sym_template_substitution, + STATE(5689), 1, + sym_template_type, + [157658] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7964), 1, anon_sym_LBRACE, + ACTIONS(7966), 1, + anon_sym_DOT, + STATE(4317), 1, + sym_comment, + STATE(4861), 1, + sym_statement_block, + ACTIONS(2074), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [158246] = 11, + [157684] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - sym_escape_sequence, - ACTIONS(7915), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7917), 1, - sym__template_chars, - ACTIONS(7985), 1, - anon_sym_BQUOTE, - STATE(4340), 1, + ACTIONS(7968), 1, + anon_sym_EQ, + STATE(4318), 1, sym_comment, - STATE(4744), 1, - aux_sym_template_string_repeat1, - STATE(4854), 1, - aux_sym_template_literal_type_repeat1, - STATE(5571), 1, - sym_template_substitution, - STATE(6024), 1, - sym_template_type, - [158280] = 10, + ACTIONS(6287), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [157706] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4010), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(7987), 1, + ACTIONS(7970), 1, anon_sym_enum, - STATE(4341), 1, + STATE(4319), 1, sym_comment, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(5643), 1, + STATE(5442), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - [158312] = 11, + [157738] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - sym_escape_sequence, - ACTIONS(7915), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7917), 1, - sym__template_chars, - ACTIONS(7989), 1, - anon_sym_BQUOTE, - STATE(4342), 1, - sym_comment, - STATE(4785), 1, - aux_sym_template_string_repeat1, - STATE(4854), 1, - aux_sym_template_literal_type_repeat1, - STATE(5571), 1, - sym_template_substitution, - STATE(6024), 1, - sym_template_type, - [158346] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(7993), 1, - anon_sym_LT, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(7997), 1, - anon_sym_LBRACE_PIPE, - STATE(1348), 1, - sym_object_type, - STATE(4343), 1, - sym_comment, - STATE(4903), 1, - sym_type_parameters, - STATE(5669), 1, - sym_extends_type_clause, - [158377] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7999), 1, - sym_identifier, - STATE(4344), 1, - sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5524), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [158406] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8001), 1, - sym_identifier, - STATE(3650), 1, - sym__type_query_member_expression, - STATE(3671), 1, - sym__type_query_subscript_expression, - STATE(3871), 1, - sym__type_query_call_expression, - STATE(3968), 1, - sym__type_query_instantiation_expression, - STATE(4345), 1, - sym_comment, - STATE(5596), 1, - sym_import, - [158437] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4346), 1, + ACTIONS(7944), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7946), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7948), 1, + anon_sym_QMARK_COLON, + STATE(4320), 1, sym_comment, - STATE(5157), 1, + STATE(5109), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - ACTIONS(8003), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [158460] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(373), 1, - sym_class_body, - STATE(4347), 1, - sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6662), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [158491] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7597), 1, - anon_sym_LBRACE, - STATE(1018), 1, - sym_class_body, - STATE(4348), 1, - sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6847), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [158522] = 10, + [157766] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4097), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(4099), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(8005), 1, + ACTIONS(7528), 1, sym_identifier, - ACTIONS(8007), 1, - anon_sym_DOT, - STATE(929), 1, - sym_nested_identifier, - STATE(1085), 1, - sym_string, - STATE(1262), 1, - sym__module, - STATE(4349), 1, + STATE(4321), 1, sym_comment, - [158553] = 8, + STATE(5611), 1, + sym_string, + STATE(6186), 1, + sym__module_export_name, + STATE(6872), 1, + sym_export_specifier, + ACTIONS(7530), 2, + anon_sym_type, + anon_sym_typeof, + [157798] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4350), 1, + ACTIONS(7922), 1, + sym_escape_sequence, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7928), 1, + sym__template_chars, + ACTIONS(7972), 1, + anon_sym_BQUOTE, + STATE(4322), 1, sym_comment, - STATE(5211), 1, - sym_type_annotation, - STATE(5645), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158580] = 8, + STATE(4694), 1, + aux_sym_template_string_repeat1, + STATE(5098), 1, + aux_sym_template_literal_type_repeat1, + STATE(5618), 1, + sym_template_substitution, + STATE(5689), 1, + sym_template_type, + [157832] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4351), 1, + STATE(4323), 1, sym_comment, - STATE(5219), 1, - sym_type_annotation, - STATE(6313), 1, - sym__initializer, - ACTIONS(7396), 3, + ACTIONS(6287), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [158607] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [157852] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7601), 1, - anon_sym_LBRACE, - STATE(1298), 1, - sym_class_body, - STATE(4352), 1, - sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6930), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [158638] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7611), 1, + ACTIONS(4027), 1, + sym_identifier, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(405), 1, - sym_class_body, - STATE(4353), 1, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(7974), 1, + anon_sym_enum, + STATE(4324), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6973), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [158669] = 10, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5440), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [157884] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7597), 1, - anon_sym_LBRACE, - STATE(1124), 1, - sym_class_body, - STATE(4354), 1, + ACTIONS(7922), 1, + sym_escape_sequence, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7928), 1, + sym__template_chars, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + STATE(4325), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6953), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [158700] = 8, + STATE(4697), 1, + aux_sym_template_string_repeat1, + STATE(5098), 1, + aux_sym_template_literal_type_repeat1, + STATE(5618), 1, + sym_template_substitution, + STATE(5689), 1, + sym_template_type, + [157918] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4355), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7452), 1, + anon_sym_extends, + STATE(4326), 1, sym_comment, - STATE(5135), 1, - sym_type_annotation, - STATE(6284), 1, - sym__initializer, - ACTIONS(7431), 3, + ACTIONS(7978), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [158727] = 8, + anon_sym_PIPE_RBRACE, + [157944] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4356), 1, + ACTIONS(7496), 1, + anon_sym_BANG, + STATE(4327), 1, sym_comment, - STATE(5239), 1, + STATE(5009), 1, sym_type_annotation, - STATE(6271), 1, + STATE(6329), 1, sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158754] = 8, + [157974] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4357), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7452), 1, + anon_sym_extends, + STATE(4328), 1, sym_comment, - STATE(5241), 1, - sym_type_annotation, - STATE(6264), 1, - sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7980), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [158781] = 8, + anon_sym_PIPE_RBRACE, + [158000] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4358), 1, + ACTIONS(7944), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7946), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7948), 1, + anon_sym_QMARK_COLON, + STATE(4329), 1, sym_comment, - STATE(5254), 1, + STATE(5388), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(6237), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158808] = 8, + [158028] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4359), 1, + ACTIONS(7944), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7946), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7948), 1, + anon_sym_QMARK_COLON, + STATE(4330), 1, sym_comment, - STATE(5261), 1, + STATE(5110), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(6235), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158835] = 10, + [158056] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7452), 1, anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7601), 1, - anon_sym_LBRACE, - STATE(1186), 1, - sym_class_body, - STATE(4360), 1, - sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6988), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [158866] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4361), 1, + STATE(4331), 1, sym_comment, - STATE(5325), 1, - sym_type_annotation, - STATE(6154), 1, - sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7982), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [158893] = 8, + anon_sym_PIPE_RBRACE, + [158082] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4362), 1, + ACTIONS(7944), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7946), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7948), 1, + anon_sym_QMARK_COLON, + STATE(4332), 1, sym_comment, - STATE(5115), 1, + STATE(5384), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(6280), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158920] = 8, + [158110] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4363), 1, + ACTIONS(7944), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7946), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7948), 1, + anon_sym_QMARK_COLON, + STATE(4333), 1, sym_comment, - STATE(5381), 1, + STATE(5381), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(6037), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158947] = 8, + [158138] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4364), 1, + ACTIONS(4027), 1, + sym_identifier, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_enum, + STATE(4334), 1, sym_comment, - STATE(5336), 1, - sym_type_annotation, - STATE(5925), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158974] = 8, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5548), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [158170] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4365), 1, + ACTIONS(7922), 1, + sym_escape_sequence, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7928), 1, + sym__template_chars, + ACTIONS(7986), 1, + anon_sym_BQUOTE, + STATE(4335), 1, sym_comment, - STATE(4847), 1, - sym_type_annotation, - STATE(5923), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159001] = 8, + STATE(4694), 1, + aux_sym_template_string_repeat1, + STATE(5098), 1, + aux_sym_template_literal_type_repeat1, + STATE(5618), 1, + sym_template_substitution, + STATE(5689), 1, + sym_template_type, + [158204] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4366), 1, + ACTIONS(4027), 1, + sym_identifier, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(7988), 1, + anon_sym_enum, + STATE(4336), 1, sym_comment, - STATE(5326), 1, - sym_type_annotation, - STATE(5919), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159028] = 8, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5581), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [158236] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4367), 1, + ACTIONS(7964), 1, + anon_sym_LBRACE, + ACTIONS(7990), 1, + anon_sym_DOT, + STATE(4337), 1, sym_comment, - STATE(5314), 1, - sym_type_annotation, - STATE(5915), 1, - sym__initializer, - ACTIONS(7396), 3, + STATE(4861), 1, + sym_statement_block, + ACTIONS(2074), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [159055] = 8, + anon_sym_PIPE_RBRACE, + [158262] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4368), 1, + ACTIONS(7922), 1, + sym_escape_sequence, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7928), 1, + sym__template_chars, + ACTIONS(7992), 1, + anon_sym_BQUOTE, + STATE(4338), 1, sym_comment, - STATE(5269), 1, - sym_type_annotation, - STATE(5903), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159082] = 8, + STATE(4694), 1, + aux_sym_template_string_repeat1, + STATE(5098), 1, + aux_sym_template_literal_type_repeat1, + STATE(5618), 1, + sym_template_substitution, + STATE(5689), 1, + sym_template_type, + [158296] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4369), 1, + ACTIONS(7922), 1, + sym_escape_sequence, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7928), 1, + sym__template_chars, + ACTIONS(7994), 1, + anon_sym_BQUOTE, + STATE(4339), 1, sym_comment, - STATE(5253), 1, - sym_type_annotation, - STATE(5901), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159109] = 8, + STATE(4697), 1, + aux_sym_template_string_repeat1, + STATE(5098), 1, + aux_sym_template_literal_type_repeat1, + STATE(5618), 1, + sym_template_substitution, + STATE(5689), 1, + sym_template_type, + [158330] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4370), 1, + ACTIONS(7128), 1, + anon_sym_LPAREN, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(4340), 1, sym_comment, - STATE(5197), 1, - sym_type_annotation, - STATE(5882), 1, - sym__initializer, - ACTIONS(7396), 3, + STATE(4811), 1, + sym_arguments, + ACTIONS(7508), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [159136] = 8, + [158356] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4371), 1, + ACTIONS(7580), 1, + anon_sym_AMP, + ACTIONS(7582), 1, + anon_sym_PIPE, + ACTIONS(7584), 1, + anon_sym_extends, + STATE(4341), 1, sym_comment, - STATE(5194), 1, - sym_type_annotation, - STATE(5878), 1, - sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7512), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [159163] = 8, + [158382] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4372), 1, + ACTIONS(4027), 1, + sym_identifier, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(7998), 1, + anon_sym_enum, + STATE(4342), 1, sym_comment, - STATE(5188), 1, - sym_type_annotation, - STATE(5875), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159190] = 8, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5559), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [158414] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4373), 1, + ACTIONS(7922), 1, + sym_escape_sequence, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7928), 1, + sym__template_chars, + ACTIONS(8000), 1, + anon_sym_BQUOTE, + STATE(4343), 1, sym_comment, - STATE(5085), 1, - sym_type_annotation, - STATE(6229), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159217] = 8, + STATE(4694), 1, + aux_sym_template_string_repeat1, + STATE(5098), 1, + aux_sym_template_literal_type_repeat1, + STATE(5618), 1, + sym_template_substitution, + STATE(5689), 1, + sym_template_type, + [158448] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4374), 1, + ACTIONS(7944), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7946), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7948), 1, + anon_sym_QMARK_COLON, + STATE(4344), 1, sym_comment, - STATE(5079), 1, + STATE(5282), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(6223), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159244] = 8, + [158476] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4375), 1, + STATE(4345), 1, sym_comment, - STATE(5180), 1, + STATE(5182), 1, sym_type_annotation, - STATE(5873), 1, + STATE(5969), 1, sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159271] = 8, + [158503] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4376), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8002), 1, + sym_identifier, + ACTIONS(8004), 1, + anon_sym_STAR, + ACTIONS(8006), 1, + anon_sym_LPAREN, + STATE(4346), 1, sym_comment, - STATE(5130), 1, - sym_type_annotation, - STATE(5868), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159298] = 8, + STATE(4786), 1, + sym_formal_parameters, + STATE(6548), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [158534] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4377), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4347), 1, sym_comment, - STATE(5064), 1, - sym_type_annotation, - STATE(6201), 1, - sym__initializer, - ACTIONS(7388), 3, + STATE(6957), 1, + sym_statement_block, + ACTIONS(8010), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [159325] = 8, + anon_sym_PIPE_RBRACE, + [158557] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4378), 1, + STATE(4348), 1, sym_comment, - STATE(5062), 1, - sym_type_annotation, - STATE(6199), 1, - sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7782), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [159352] = 8, + anon_sym_COLON, + [158576] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4379), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(2402), 1, + sym_class_body, + STATE(4349), 1, sym_comment, - STATE(5059), 1, - sym_type_annotation, - STATE(6197), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159379] = 8, + STATE(6082), 1, + sym_extends_clause, + STATE(6712), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [158607] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8012), 1, + sym_identifier, + STATE(4350), 1, + sym_comment, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5440), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [158636] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4380), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8014), 1, + sym_identifier, + ACTIONS(8016), 1, + anon_sym_STAR, + STATE(4351), 1, sym_comment, - STATE(5057), 1, - sym_type_annotation, - STATE(6196), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159406] = 8, + STATE(4786), 1, + sym_formal_parameters, + STATE(6561), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [158667] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4381), 1, + STATE(4352), 1, sym_comment, - STATE(5129), 1, - sym_type_annotation, - STATE(5867), 1, - sym__initializer, - ACTIONS(7396), 3, + ACTIONS(4353), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [159433] = 8, + anon_sym_DOT, + [158686] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4382), 1, + STATE(4353), 1, sym_comment, - STATE(5052), 1, + STATE(5177), 1, sym_type_annotation, - STATE(6191), 1, + STATE(5961), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159460] = 8, + [158713] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4383), 1, + STATE(4354), 1, sym_comment, - STATE(5048), 1, - sym_type_annotation, - STATE(6133), 1, - sym__initializer, - ACTIONS(7388), 3, + ACTIONS(4360), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [159487] = 8, + anon_sym_DOT, + [158732] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4384), 1, + STATE(4355), 1, sym_comment, - STATE(5033), 1, + STATE(5261), 1, sym_type_annotation, - STATE(6178), 1, + STATE(6030), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159514] = 8, + [158759] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4385), 1, + STATE(4356), 1, sym_comment, - STATE(5029), 1, + STATE(5163), 1, sym_type_annotation, - STATE(6173), 1, + STATE(6151), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159541] = 8, + [158786] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4386), 1, + STATE(4357), 1, sym_comment, - STATE(5008), 1, - sym_type_annotation, - STATE(6155), 1, - sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7876), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [159568] = 8, + anon_sym_DOT, + [158805] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4387), 1, + ACTIONS(4019), 1, + anon_sym_DQUOTE, + ACTIONS(4021), 1, + anon_sym_SQUOTE, + ACTIONS(8018), 1, + sym_identifier, + ACTIONS(8020), 1, + anon_sym_DOT, + STATE(1011), 1, + sym_nested_identifier, + STATE(1260), 1, + sym_string, + STATE(1544), 1, + sym__module, + STATE(4358), 1, sym_comment, - STATE(5006), 1, - sym_type_annotation, - STATE(6153), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159595] = 8, + [158836] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4388), 1, + STATE(4359), 1, sym_comment, - STATE(5106), 1, - sym_type_annotation, - STATE(5853), 1, - sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7826), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [159622] = 8, + anon_sym_COLON, + [158855] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4389), 1, + STATE(4360), 1, sym_comment, - STATE(4999), 1, - sym_type_annotation, - STATE(6148), 1, - sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7832), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [159649] = 8, + anon_sym_COLON, + [158874] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4390), 1, + STATE(4361), 1, sym_comment, - STATE(4997), 1, - sym_type_annotation, - STATE(6147), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159676] = 8, + ACTIONS(2156), 7, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + sym_identifier, + [158893] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4391), 1, + STATE(4362), 1, sym_comment, - STATE(5098), 1, + STATE(5191), 1, sym_type_annotation, - STATE(5837), 1, + STATE(5985), 1, sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159703] = 8, + [158920] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4392), 1, + STATE(4363), 1, sym_comment, - STATE(5086), 1, - sym_type_annotation, - STATE(5829), 1, - sym__initializer, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159730] = 8, + ACTIONS(2120), 7, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + sym_identifier, + [158939] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4393), 1, + ACTIONS(8022), 1, + anon_sym_LBRACE, + ACTIONS(8024), 1, + anon_sym_LT, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8028), 1, + anon_sym_LBRACE_PIPE, + STATE(1563), 1, + sym_object_type, + STATE(4364), 1, sym_comment, - STATE(4986), 1, - sym_type_annotation, - STATE(6162), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159757] = 10, + STATE(5054), 1, + sym_type_parameters, + STATE(5986), 1, + sym_extends_type_clause, + [158970] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(8009), 1, + ACTIONS(8030), 1, sym_identifier, - ACTIONS(8011), 1, + ACTIONS(8032), 1, anon_sym_DOT, - STATE(4316), 1, - sym_nested_identifier, - STATE(4394), 1, + STATE(4365), 1, sym_comment, - STATE(4556), 1, + STATE(4880), 1, + sym_nested_identifier, + STATE(5627), 1, sym_string, - STATE(5251), 1, + STATE(6652), 1, sym__module, - [159788] = 8, + [159001] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(8024), 1, + anon_sym_LT, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8034), 1, + anon_sym_LBRACE_PIPE, + STATE(4366), 1, + sym_comment, + STATE(5227), 1, + sym_type_parameters, + STATE(5975), 1, + sym_extends_type_clause, + STATE(6799), 1, + sym_object_type, + [159032] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4395), 1, + STATE(4367), 1, sym_comment, - STATE(4983), 1, + STATE(5287), 1, sym_type_annotation, - STATE(6138), 1, + STATE(6110), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159815] = 8, + [159059] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4396), 1, + STATE(4368), 1, sym_comment, - STATE(4981), 1, + STATE(5398), 1, sym_type_annotation, - STATE(6137), 1, + STATE(6268), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159842] = 10, + [159086] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1352), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7993), 1, - anon_sym_LT, - ACTIONS(7995), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(8013), 1, - anon_sym_LBRACE_PIPE, - STATE(4397), 1, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7708), 1, + anon_sym_LBRACE, + STATE(330), 1, + sym_class_body, + STATE(4369), 1, sym_comment, - STATE(5272), 1, - sym_object_type, - STATE(5394), 1, - sym_type_parameters, - STATE(5962), 1, - sym_extends_type_clause, - [159873] = 5, + STATE(6082), 1, + sym_extends_clause, + STATE(6429), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [159117] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8015), 1, - sym__automatic_semicolon, - STATE(4398), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7758), 1, + anon_sym_LBRACE, + STATE(1019), 1, + sym_class_body, + STATE(4370), 1, sym_comment, - ACTIONS(2111), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159894] = 8, + STATE(6082), 1, + sym_extends_clause, + STATE(6462), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [159148] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4399), 1, + STATE(4371), 1, sym_comment, - STATE(5044), 1, + STATE(5190), 1, sym_type_annotation, - STATE(5779), 1, + STATE(5984), 1, sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159921] = 8, + [159175] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(8036), 1, + sym_identifier, + ACTIONS(8038), 1, + anon_sym_LPAREN, + STATE(2421), 1, + sym_arguments, + STATE(4372), 1, + sym_comment, + STATE(6597), 1, + sym_type_arguments, + ACTIONS(8040), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [159204] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4400), 1, + STATE(4373), 1, sym_comment, - STATE(4988), 1, + STATE(5192), 1, sym_type_annotation, - STATE(6141), 1, + STATE(5989), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159948] = 10, + [159231] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7725), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(372), 1, + STATE(3017), 1, sym_class_body, - STATE(4401), 1, + STATE(4374), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6818), 1, + STATE(6851), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [159979] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [159262] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8017), 1, - sym_identifier, - STATE(2206), 1, - sym__type_query_subscript_expression, - STATE(2207), 1, - sym__type_query_member_expression, - STATE(2365), 1, - sym__type_query_call_expression, - STATE(2387), 1, - sym__type_query_instantiation_expression, - STATE(4402), 1, - sym_comment, - STATE(5415), 1, - sym_import, - [160010] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4403), 1, + STATE(4375), 1, sym_comment, - STATE(5018), 1, + STATE(5254), 1, sym_type_annotation, - STATE(5751), 1, + STATE(6017), 1, sym__initializer, - ACTIONS(7390), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160037] = 8, + [159289] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4404), 1, + STATE(4376), 1, sym_comment, - STATE(4974), 1, - sym_type_annotation, - STATE(6130), 1, - sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7864), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [160064] = 10, + anon_sym_DOT, + [159308] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - STATE(4405), 1, - sym_comment, - STATE(5299), 1, - sym_class_body, - STATE(5699), 1, - sym_extends_clause, - STATE(6773), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [160095] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7999), 1, - sym_identifier, - STATE(4406), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4377), 1, sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5642), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [160124] = 10, + STATE(5255), 1, + sym_type_annotation, + STATE(6024), 1, + sym__initializer, + ACTIONS(7422), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159335] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - STATE(4407), 1, + STATE(4378), 1, sym_comment, - STATE(5204), 1, - sym_class_body, - STATE(5699), 1, - sym_extends_clause, - STATE(6750), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [160155] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7775), 1, + ACTIONS(7862), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(4408), 1, - sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6407), 1, - sym_class_body, - STATE(6860), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [160186] = 10, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [159354] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7725), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - STATE(386), 1, + STATE(357), 1, sym_class_body, - STATE(4409), 1, + STATE(4379), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6742), 1, + STATE(6470), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [160217] = 10, + [159385] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - STATE(4410), 1, - sym_comment, - STATE(5100), 1, - sym_class_body, - STATE(5699), 1, - sym_extends_clause, - STATE(6736), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [160248] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7539), 1, + ACTIONS(7746), 1, anon_sym_LBRACE, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - STATE(4411), 1, - sym_comment, - STATE(5031), 1, + STATE(948), 1, sym_class_body, - STATE(5699), 1, + STATE(4380), 1, + sym_comment, + STATE(6082), 1, sym_extends_clause, - STATE(6713), 1, + STATE(6474), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [160279] = 8, + [159416] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4412), 1, + STATE(4381), 1, sym_comment, - STATE(4960), 1, + STATE(5257), 1, sym_type_annotation, - STATE(6117), 1, + STATE(6026), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160306] = 10, + [159443] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7727), 1, + ACTIONS(7610), 1, anon_sym_LBRACE, - STATE(2422), 1, + STATE(1357), 1, sym_class_body, - STATE(4413), 1, + STATE(4382), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6803), 1, + STATE(6809), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [160337] = 6, + [159474] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7329), 1, anon_sym_COLON, - STATE(4414), 1, + ACTIONS(8044), 1, + anon_sym_EQ, + STATE(4383), 1, sym_comment, - STATE(4891), 1, - sym_type_annotation, - ACTIONS(8019), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160360] = 10, + ACTIONS(8042), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [159497] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - STATE(4415), 1, + ACTIONS(4138), 1, + anon_sym_LT, + ACTIONS(8036), 1, + sym_identifier, + ACTIONS(8046), 1, + anon_sym_LPAREN, + STATE(3138), 1, + sym_arguments, + STATE(4384), 1, sym_comment, - STATE(5671), 1, - sym_class_body, - STATE(5699), 1, - sym_extends_clause, - STATE(6791), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [160391] = 10, + STATE(6706), 1, + sym_type_arguments, + ACTIONS(8040), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [159526] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(3143), 1, - sym_class_body, - STATE(4416), 1, + ACTIONS(8048), 1, + anon_sym_EQ, + STATE(4385), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6772), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [160422] = 8, + STATE(5544), 1, + sym_constraint, + STATE(6916), 1, + sym_default_type, + ACTIONS(8050), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(8052), 2, + anon_sym_COLON, + anon_sym_extends, + [159553] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4417), 1, - sym_comment, - STATE(4953), 1, - sym_type_annotation, - STATE(6112), 1, - sym__initializer, - ACTIONS(7388), 3, + ACTIONS(8054), 1, sym__automatic_semicolon, + STATE(4386), 1, + sym_comment, + ACTIONS(2258), 6, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [160449] = 8, + anon_sym_PIPE_RBRACE, + [159574] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4418), 1, + STATE(4387), 1, sym_comment, - STATE(4951), 1, + STATE(5247), 1, sym_type_annotation, - STATE(6110), 1, + STATE(6014), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160476] = 6, + [159601] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4419), 1, + STATE(4388), 1, sym_comment, - STATE(4995), 1, + STATE(5271), 1, sym_type_annotation, - ACTIONS(8021), 5, + STATE(6053), 1, + sym__initializer, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160499] = 8, + [159628] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4420), 1, + STATE(4389), 1, sym_comment, - STATE(4922), 1, + STATE(5266), 1, sym_type_annotation, - STATE(5684), 1, + STATE(6044), 1, sym__initializer, - ACTIONS(7374), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160526] = 10, + [159655] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4091), 1, + ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(4093), 1, + ACTIONS(1971), 1, anon_sym_SQUOTE, - ACTIONS(8023), 1, + ACTIONS(8056), 1, sym_identifier, - ACTIONS(8025), 1, + ACTIONS(8058), 1, anon_sym_DOT, - STATE(921), 1, + STATE(4337), 1, sym_nested_identifier, - STATE(1139), 1, + STATE(4390), 1, + sym_comment, + STATE(4431), 1, sym_string, - STATE(1358), 1, + STATE(4971), 1, sym__module, - STATE(4421), 1, - sym_comment, - [160557] = 10, + [159686] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7775), 1, + ACTIONS(7840), 1, anon_sym_LBRACE, - STATE(4422), 1, + STATE(454), 1, + sym_class_body, + STATE(4391), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6551), 1, - sym_class_body, - STATE(6744), 1, + STATE(6725), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [160588] = 10, + [159717] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7993), 1, + ACTIONS(8024), 1, anon_sym_LT, - ACTIONS(7995), 1, + ACTIONS(8026), 1, anon_sym_extends, - ACTIONS(8027), 1, + ACTIONS(8060), 1, anon_sym_LBRACE, - ACTIONS(8029), 1, + ACTIONS(8062), 1, anon_sym_LBRACE_PIPE, - STATE(1241), 1, + STATE(1090), 1, sym_object_type, - STATE(4423), 1, + STATE(4392), 1, sym_comment, - STATE(5279), 1, + STATE(5344), 1, sym_type_parameters, - STATE(6215), 1, + STATE(6292), 1, sym_extends_type_clause, - [160619] = 8, + [159748] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(4126), 1, + anon_sym_DQUOTE, + ACTIONS(4128), 1, + anon_sym_SQUOTE, + ACTIONS(8064), 1, + sym_identifier, + ACTIONS(8066), 1, + anon_sym_DOT, + STATE(893), 1, + sym_nested_identifier, + STATE(905), 1, + sym_string, + STATE(1076), 1, + sym__module, + STATE(4393), 1, + sym_comment, + [159779] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4424), 1, + STATE(4394), 1, sym_comment, - STATE(5011), 1, + STATE(5270), 1, sym_type_annotation, - STATE(5745), 1, + STATE(6048), 1, sym__initializer, - ACTIONS(7374), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160646] = 8, + [159806] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4425), 1, + STATE(4395), 1, sym_comment, - STATE(4942), 1, + STATE(5242), 1, sym_type_annotation, - STATE(6100), 1, + STATE(6008), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160673] = 8, + [159833] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4426), 1, + ACTIONS(7570), 1, + anon_sym_LBRACE, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + STATE(987), 1, + sym_class_body, + STATE(4396), 1, sym_comment, - STATE(4940), 1, - sym_type_annotation, - STATE(6098), 1, - sym__initializer, - ACTIONS(7388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160700] = 8, + STATE(6082), 1, + sym_extends_clause, + STATE(6835), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [159864] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4427), 1, + STATE(4397), 1, sym_comment, - STATE(4929), 1, + STATE(5284), 1, sym_type_annotation, - STATE(6094), 1, + STATE(6089), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160727] = 10, + [159891] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7758), 1, anon_sym_LBRACE, - STATE(3021), 1, + STATE(994), 1, sym_class_body, - STATE(4428), 1, + STATE(4398), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6501), 1, + STATE(6480), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [160758] = 8, + [159922] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4429), 1, + STATE(4399), 1, sym_comment, - STATE(4927), 1, + STATE(5400), 1, sym_type_annotation, - STATE(6093), 1, + STATE(6230), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160785] = 8, + [159949] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8068), 1, + sym_identifier, + ACTIONS(8070), 1, + anon_sym_STAR, + STATE(4400), 1, + sym_comment, + STATE(4786), 1, + sym_formal_parameters, + STATE(6636), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [159980] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4430), 1, + STATE(4401), 1, sym_comment, - STATE(5077), 1, - sym_type_annotation, - STATE(5824), 1, - sym__initializer, - ACTIONS(7374), 3, + ACTIONS(8072), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [160812] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [159999] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8031), 1, - sym_identifier, - STATE(3689), 1, - sym__type_query_subscript_expression, - STATE(3690), 1, - sym__type_query_member_expression, - STATE(4005), 1, - sym__type_query_call_expression, - STATE(4074), 1, - sym__type_query_instantiation_expression, - STATE(4431), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4402), 1, sym_comment, - STATE(5464), 1, - sym_import, - [160843] = 8, + STATE(5121), 1, + sym_type_annotation, + ACTIONS(8074), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160022] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4432), 1, + STATE(4403), 1, sym_comment, - STATE(5081), 1, + STATE(5368), 1, sym_type_annotation, - STATE(5826), 1, + STATE(6167), 1, sym__initializer, - ACTIONS(7374), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160870] = 10, + [160049] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2398), 1, - sym_class_body, - STATE(4433), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4404), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6624), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [160901] = 8, + STATE(5295), 1, + sym_type_annotation, + STATE(6112), 1, + sym__initializer, + ACTIONS(7422), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160076] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4434), 1, + STATE(4405), 1, sym_comment, - STATE(5102), 1, + STATE(5296), 1, sym_type_annotation, - STATE(5843), 1, + STATE(6122), 1, sym__initializer, - ACTIONS(7374), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160928] = 8, + [160103] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4435), 1, + STATE(4406), 1, sym_comment, - STATE(4920), 1, + STATE(5297), 1, sym_type_annotation, - STATE(6082), 1, + STATE(6126), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160955] = 8, + [160130] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4436), 1, + STATE(4407), 1, sym_comment, - STATE(4918), 1, + STATE(5233), 1, sym_type_annotation, - STATE(6140), 1, - sym__initializer, - ACTIONS(7388), 3, + ACTIONS(8076), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [160982] = 10, + anon_sym_PIPE_RBRACE, + [160153] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7539), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - STATE(4437), 1, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8012), 1, + sym_identifier, + STATE(4408), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(5707), 1, - sym_class_body, - STATE(6614), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [161013] = 8, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5455), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [160182] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(4108), 1, + anon_sym_DQUOTE, + ACTIONS(4110), 1, + anon_sym_SQUOTE, + ACTIONS(8078), 1, + sym_identifier, + ACTIONS(8080), 1, + anon_sym_DOT, + STATE(903), 1, + sym_nested_identifier, + STATE(1052), 1, + sym_string, + STATE(1270), 1, + sym__module, + STATE(4409), 1, + sym_comment, + [160213] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4438), 1, + STATE(4410), 1, sym_comment, - STATE(5103), 1, + STATE(5383), 1, sym_type_annotation, - STATE(5850), 1, + STATE(6325), 1, sym__initializer, - ACTIONS(7374), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161040] = 10, + [160240] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2397), 1, - sym_class_body, - STATE(4439), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4411), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6613), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [161071] = 8, + STATE(5380), 1, + sym_type_annotation, + STATE(6336), 1, + sym__initializer, + ACTIONS(7403), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160267] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4440), 1, + STATE(4412), 1, sym_comment, - STATE(5199), 1, + STATE(5308), 1, sym_type_annotation, - STATE(5884), 1, + STATE(6135), 1, sym__initializer, - ACTIONS(7374), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161098] = 10, + [160294] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(8024), 1, + anon_sym_LT, + ACTIONS(8026), 1, anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7623), 1, + ACTIONS(8082), 1, anon_sym_LBRACE, - STATE(999), 1, - sym_class_body, - STATE(4441), 1, + ACTIONS(8084), 1, + anon_sym_LBRACE_PIPE, + STATE(1193), 1, + sym_object_type, + STATE(4413), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6462), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [161129] = 8, + STATE(4858), 1, + sym_type_parameters, + STATE(5674), 1, + sym_extends_type_clause, + [160325] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4442), 1, + STATE(4414), 1, sym_comment, - STATE(5281), 1, + STATE(5221), 1, sym_type_annotation, - STATE(5909), 1, + STATE(6003), 1, sym__initializer, - ACTIONS(7374), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161156] = 8, + [160352] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4443), 1, + STATE(4415), 1, sym_comment, - STATE(4909), 1, + STATE(5311), 1, sym_type_annotation, - STATE(6075), 1, + STATE(6139), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161183] = 8, + [160379] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4444), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4416), 1, sym_comment, - STATE(4907), 1, - sym_type_annotation, - STATE(6074), 1, - sym__initializer, - ACTIONS(7388), 3, + STATE(6858), 1, + sym_statement_block, + ACTIONS(8086), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [161210] = 8, + anon_sym_PIPE_RBRACE, + [160402] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8012), 1, + sym_identifier, + STATE(4417), 1, + sym_comment, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5456), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [160431] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4418), 1, + sym_comment, + STATE(6343), 1, + sym_statement_block, + ACTIONS(8086), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160454] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7780), 1, + anon_sym_LBRACE, + STATE(1308), 1, + sym_class_body, + STATE(4419), 1, + sym_comment, + STATE(6082), 1, + sym_extends_clause, + STATE(6341), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [160485] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1355), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8024), 1, + anon_sym_LT, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_LBRACE_PIPE, + STATE(4420), 1, + sym_comment, + STATE(4964), 1, + sym_object_type, + STATE(5181), 1, + sym_type_parameters, + STATE(5966), 1, + sym_extends_type_clause, + [160516] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4421), 1, + sym_comment, + STATE(6852), 1, + sym_statement_block, + ACTIONS(8090), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160539] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8092), 1, + sym_identifier, + ACTIONS(8094), 1, + anon_sym_STAR, + STATE(4422), 1, + sym_comment, + STATE(4786), 1, + sym_formal_parameters, + STATE(6548), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [160570] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4445), 1, + STATE(4423), 1, sym_comment, - STATE(4904), 1, + STATE(5377), 1, sym_type_annotation, - STATE(6071), 1, + STATE(6163), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161237] = 8, + [160597] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8012), 1, + sym_identifier, + STATE(4424), 1, + sym_comment, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5437), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [160626] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8096), 1, + sym_identifier, + ACTIONS(8098), 1, + anon_sym_STAR, + STATE(4425), 1, + sym_comment, + STATE(4786), 1, + sym_formal_parameters, + STATE(6561), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [160657] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(8102), 1, + anon_sym_RBRACE, + STATE(4426), 1, + sym_comment, + STATE(5648), 1, + aux_sym_object_repeat1, + ACTIONS(4527), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [160682] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4446), 1, + STATE(4427), 1, sym_comment, - STATE(4902), 1, - sym_type_annotation, - STATE(6069), 1, - sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7822), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [161264] = 10, + anon_sym_COLON, + [160701] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7605), 1, + ACTIONS(7746), 1, anon_sym_LBRACE, - STATE(1289), 1, + STATE(916), 1, sym_class_body, - STATE(4447), 1, + STATE(4428), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6424), 1, + STATE(6452), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [161295] = 10, + [160732] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(3050), 1, + STATE(2938), 1, sym_class_body, - STATE(4448), 1, + STATE(4429), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6423), 1, + STATE(6543), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [161326] = 10, + [160763] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7623), 1, - anon_sym_LBRACE, - STATE(1058), 1, - sym_class_body, - STATE(4449), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4430), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6410), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [161357] = 4, + STATE(5369), 1, + sym_type_annotation, + STATE(6169), 1, + sym__initializer, + ACTIONS(7422), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160790] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4450), 1, + ACTIONS(7964), 1, + anon_sym_LBRACE, + STATE(4431), 1, sym_comment, - ACTIONS(7733), 7, + STATE(4861), 1, + sym_statement_block, + ACTIONS(2074), 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, - [161376] = 4, + anon_sym_PIPE_RBRACE, + [160813] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4451), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4432), 1, sym_comment, - ACTIONS(7719), 7, + STATE(5371), 1, + sym_type_annotation, + STATE(6176), 1, + sym__initializer, + ACTIONS(7422), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [161395] = 4, + [160840] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4452), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4433), 1, sym_comment, - ACTIONS(7689), 7, + STATE(5372), 1, + sym_type_annotation, + STATE(6180), 1, + sym__initializer, + ACTIONS(7422), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [161414] = 4, + [160867] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4453), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4434), 1, sym_comment, - ACTIONS(7679), 7, + STATE(5101), 1, + sym_type_annotation, + STATE(5906), 1, + sym__initializer, + ACTIONS(7412), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [161433] = 4, + [160894] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4454), 1, + ACTIONS(8104), 1, + anon_sym_EQ, + ACTIONS(8106), 1, + anon_sym_DOT, + STATE(4435), 1, sym_comment, - ACTIONS(4333), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7950), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [161452] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [160917] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4455), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7766), 1, + anon_sym_LBRACE, + STATE(965), 1, + sym_class_body, + STATE(4436), 1, sym_comment, - ACTIONS(4337), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(6082), 1, + sym_extends_clause, + STATE(6361), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [160948] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7612), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [161471] = 8, + STATE(3043), 1, + sym_class_body, + STATE(4437), 1, + sym_comment, + STATE(6082), 1, + sym_extends_clause, + STATE(6849), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [160979] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4456), 1, + STATE(4438), 1, sym_comment, - STATE(4897), 1, + STATE(5376), 1, sym_type_annotation, - STATE(6064), 1, + STATE(6201), 1, sym__initializer, - ACTIONS(7388), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161498] = 10, + [161006] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7605), 1, + ACTIONS(7784), 1, anon_sym_LBRACE, - STATE(1251), 1, + STATE(1171), 1, sym_class_body, - STATE(4457), 1, + STATE(4439), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6353), 1, + STATE(6868), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [161529] = 4, + [161037] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4458), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4440), 1, sym_comment, - ACTIONS(8033), 7, + STATE(5215), 1, + sym_type_annotation, + STATE(6000), 1, + sym__initializer, + ACTIONS(7403), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [161548] = 8, + [161064] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4459), 1, + STATE(4441), 1, sym_comment, - STATE(5409), 1, - sym_type_annotation, - STATE(5973), 1, - sym__initializer, - ACTIONS(7412), 3, + ACTIONS(7866), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [161575] = 10, + anon_sym_DOT, + [161083] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, + ACTIONS(131), 1, anon_sym_import, - ACTIONS(8035), 1, + ACTIONS(8108), 1, sym_identifier, - STATE(2516), 1, + STATE(3603), 1, sym__type_query_subscript_expression, - STATE(2518), 1, + STATE(3604), 1, sym__type_query_member_expression, - STATE(2905), 1, - sym__type_query_instantiation_expression, - STATE(2906), 1, + STATE(3655), 1, sym__type_query_call_expression, - STATE(4460), 1, + STATE(3688), 1, + sym__type_query_instantiation_expression, + STATE(4442), 1, sym_comment, - STATE(5458), 1, + STATE(5554), 1, sym_import, - [161606] = 10, + [161114] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(3025), 1, + STATE(3032), 1, sym_class_body, - STATE(4461), 1, + STATE(4443), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6716), 1, + STATE(6368), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [161637] = 10, + [161145] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4117), 1, - anon_sym_DQUOTE, - ACTIONS(4119), 1, - anon_sym_SQUOTE, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, - anon_sym_DOT, - STATE(901), 1, - sym_nested_identifier, - STATE(919), 1, - sym_string, - STATE(1047), 1, - sym__module, - STATE(4462), 1, - sym_comment, - [161668] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7993), 1, - anon_sym_LT, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(8041), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(8043), 1, - anon_sym_LBRACE_PIPE, - STATE(1013), 1, - sym_object_type, - STATE(4463), 1, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8012), 1, + sym_identifier, + STATE(4444), 1, sym_comment, - STATE(5168), 1, - sym_type_parameters, - STATE(6322), 1, - sym_extends_type_clause, - [161699] = 10, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5442), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [161174] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7837), 1, + ACTIONS(7840), 1, anon_sym_LBRACE, - STATE(321), 1, + STATE(438), 1, sym_class_body, - STATE(4464), 1, + STATE(4445), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6425), 1, + STATE(6968), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [161730] = 10, + [161205] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7833), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_class_body, - STATE(4465), 1, + ACTIONS(8048), 1, + anon_sym_EQ, + STATE(4446), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6448), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [161761] = 10, + STATE(5588), 1, + sym_constraint, + STATE(6570), 1, + sym_default_type, + ACTIONS(8052), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(8110), 2, + anon_sym_COMMA, + anon_sym_GT, + [161232] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7843), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(1063), 1, + STATE(3028), 1, sym_class_body, - STATE(4466), 1, + STATE(4447), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6458), 1, + STATE(6515), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [161792] = 10, + [161263] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7573), 1, + ACTIONS(7780), 1, anon_sym_LBRACE, - STATE(1486), 1, + STATE(1408), 1, sym_class_body, - STATE(4467), 1, + STATE(4448), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6761), 1, + STATE(6375), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [161823] = 9, + [161294] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4449), 1, + sym_comment, + STATE(4859), 1, + sym_type_annotation, + STATE(5659), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161321] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4181), 1, - anon_sym_LT, - ACTIONS(8045), 1, + ACTIONS(131), 1, + anon_sym_import, + ACTIONS(8112), 1, sym_identifier, - ACTIONS(8047), 1, - anon_sym_LPAREN, - STATE(2403), 1, - sym_arguments, - STATE(4468), 1, + STATE(2467), 1, + sym__type_query_member_expression, + STATE(2470), 1, + sym__type_query_subscript_expression, + STATE(2784), 1, + sym__type_query_instantiation_expression, + STATE(2785), 1, + sym__type_query_call_expression, + STATE(4450), 1, sym_comment, - STATE(6492), 1, - sym_type_arguments, - ACTIONS(8049), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [161852] = 10, + STATE(5464), 1, + sym_import, + [161352] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7837), 1, + ACTIONS(7728), 1, anon_sym_LBRACE, - STATE(306), 1, + STATE(419), 1, sym_class_body, - STATE(4469), 1, + STATE(4451), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6466), 1, + STATE(6626), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [161883] = 4, + [161383] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4470), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4452), 1, sym_comment, - ACTIONS(8051), 7, + STATE(5385), 1, + sym_type_annotation, + STATE(6208), 1, + sym__initializer, + ACTIONS(7422), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [161410] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [161902] = 10, + STATE(4453), 1, + sym_comment, + STATE(5174), 1, + sym_type_annotation, + STATE(5954), 1, + sym__initializer, + ACTIONS(7403), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161437] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7833), 1, - anon_sym_LBRACE, - STATE(918), 1, - sym_class_body, - STATE(4471), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4454), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6470), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [161933] = 10, + STATE(5410), 1, + sym_type_annotation, + STATE(6225), 1, + sym__initializer, + ACTIONS(7422), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161464] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(210), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7993), 1, - anon_sym_LT, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(8053), 1, - anon_sym_LBRACE_PIPE, - STATE(4472), 1, + ACTIONS(8114), 1, + sym__automatic_semicolon, + STATE(4455), 1, sym_comment, - STATE(5224), 1, - sym_type_parameters, - STATE(6311), 1, - sym_extends_type_clause, - STATE(6814), 1, - sym_object_type, - [161964] = 10, - ACTIONS(3), 1, + ACTIONS(2248), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [161485] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + STATE(4456), 1, + sym_comment, + ACTIONS(7650), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [161504] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8055), 1, - sym_identifier, - ACTIONS(8057), 1, - anon_sym_DOT, - STATE(4473), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4457), 1, sym_comment, - STATE(4947), 1, - sym_nested_identifier, - STATE(5633), 1, - sym_string, - STATE(6895), 1, - sym__module, - [161995] = 8, + STATE(5080), 1, + sym_type_annotation, + STATE(5888), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161531] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4474), 1, + STATE(4458), 1, sym_comment, - STATE(4846), 1, + STATE(5408), 1, sym_type_annotation, - STATE(6051), 1, + STATE(6228), 1, sym__initializer, - ACTIONS(8059), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162022] = 10, + [161558] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7843), 1, - anon_sym_LBRACE, - STATE(1112), 1, - sym_class_body, - STATE(4475), 1, + STATE(4459), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6476), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [162053] = 10, + ACTIONS(6355), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [161577] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7727), 1, + ACTIONS(7766), 1, anon_sym_LBRACE, - STATE(2524), 1, + STATE(1132), 1, sym_class_body, - STATE(4476), 1, + STATE(4460), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6359), 1, + STATE(6423), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [162084] = 8, + [161608] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4477), 1, + STATE(4461), 1, sym_comment, - STATE(4868), 1, + STATE(5313), 1, sym_type_annotation, - STATE(6041), 1, + STATE(6147), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162111] = 8, + [161635] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4478), 1, + STATE(4462), 1, sym_comment, - STATE(4866), 1, - sym_type_annotation, - STATE(5951), 1, - sym__initializer, - ACTIONS(7424), 3, + ACTIONS(2248), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [162138] = 6, + anon_sym_PIPE_RBRACE, + [161654] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4479), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4463), 1, sym_comment, - STATE(5329), 1, - sym_type_annotation, - ACTIONS(8061), 5, + STATE(6715), 1, + sym_statement_block, + ACTIONS(8116), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162161] = 8, + [161677] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4480), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7784), 1, + anon_sym_LBRACE, + STATE(1340), 1, + sym_class_body, + STATE(4464), 1, sym_comment, - STATE(4858), 1, - sym_type_annotation, - STATE(6031), 1, - sym__initializer, - ACTIONS(7424), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162188] = 8, + STATE(6082), 1, + sym_extends_clause, + STATE(6716), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [161708] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4481), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4465), 1, sym_comment, - STATE(4857), 1, - sym_type_annotation, - STATE(6029), 1, - sym__initializer, - ACTIONS(7424), 3, + STATE(6713), 1, + sym_statement_block, + ACTIONS(8118), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162215] = 8, + anon_sym_PIPE_RBRACE, + [161731] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4482), 1, + STATE(4466), 1, sym_comment, - STATE(5309), 1, - sym_type_annotation, - STATE(6183), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, + ACTIONS(6531), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [162242] = 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [161750] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6069), 1, - sym__automatic_semicolon, - STATE(4483), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4467), 1, sym_comment, - ACTIONS(2113), 6, + STATE(6498), 1, + sym_statement_block, + ACTIONS(8118), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [162263] = 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161773] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4484), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4468), 1, sym_comment, - ACTIONS(8063), 7, + STATE(6500), 1, + sym_statement_block, + ACTIONS(8116), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [162282] = 8, + [161796] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4485), 1, + STATE(4469), 1, sym_comment, - STATE(4849), 1, + STATE(5406), 1, sym_type_annotation, - STATE(6015), 1, + STATE(6234), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162309] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8065), 1, - sym_identifier, - ACTIONS(8067), 1, - anon_sym_STAR, - ACTIONS(8069), 1, - anon_sym_LPAREN, - STATE(4486), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6984), 1, - sym__call_signature, - [162340] = 8, + [161823] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4487), 1, + STATE(4470), 1, sym_comment, - STATE(5333), 1, + STATE(5352), 1, sym_type_annotation, - STATE(6014), 1, + STATE(6145), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162367] = 8, + [161850] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(8120), 1, anon_sym_COLON, - STATE(4488), 1, + ACTIONS(8122), 1, + anon_sym_QMARK, + STATE(4471), 1, sym_comment, - STATE(4885), 1, - sym_type_annotation, - STATE(6012), 1, - sym__initializer, - ACTIONS(7424), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162394] = 8, + STATE(4786), 1, + sym_formal_parameters, + STATE(6453), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [161881] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4489), 1, + STATE(4472), 1, sym_comment, - STATE(4890), 1, + STATE(5339), 1, sym_type_annotation, - STATE(6011), 1, + STATE(6143), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162421] = 4, + [161908] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4490), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7596), 1, + anon_sym_LBRACE, + STATE(1505), 1, + sym_class_body, + STATE(4473), 1, sym_comment, - ACTIONS(8071), 7, - sym__automatic_semicolon, + STATE(6082), 1, + sym_extends_clause, + STATE(6578), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [161939] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4029), 1, anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8012), 1, + sym_identifier, + STATE(4474), 1, + sym_comment, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5443), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [161968] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4475), 1, + sym_comment, + STATE(5395), 1, + sym_type_annotation, + STATE(6277), 1, + sym__initializer, + ACTIONS(7422), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [162440] = 6, + [161995] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(4491), 1, + STATE(4476), 1, sym_comment, - STATE(6975), 1, + STATE(6339), 1, sym_statement_block, - ACTIONS(8075), 5, + ACTIONS(8124), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162463] = 8, + [162018] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4492), 1, + STATE(4477), 1, sym_comment, - STATE(4908), 1, + STATE(5120), 1, sym_type_annotation, - STATE(6007), 1, + STATE(5921), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(8126), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162490] = 6, + [162045] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4493), 1, + STATE(4478), 1, sym_comment, - STATE(6753), 1, - sym_statement_block, - ACTIONS(8077), 5, + ACTIONS(5871), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162513] = 6, + anon_sym_COLON, + [162064] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4494), 1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(8128), 1, + anon_sym_EQ, + ACTIONS(8132), 1, + anon_sym_QMARK, + STATE(4479), 1, sym_comment, - STATE(6751), 1, - sym_statement_block, - ACTIONS(8079), 5, - sym__automatic_semicolon, + STATE(5600), 1, + sym_type_annotation, + STATE(6348), 1, + sym__initializer, + ACTIONS(8130), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162536] = 10, + anon_sym_RPAREN, + [162093] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8081), 1, + ACTIONS(8134), 1, sym_identifier, - ACTIONS(8083), 1, + ACTIONS(8136), 1, anon_sym_STAR, - STATE(4495), 1, + STATE(4480), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6618), 1, + STATE(6548), 1, sym__call_signature, - [162567] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4496), 1, - sym_comment, - STATE(6362), 1, - sym_statement_block, - ACTIONS(8085), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162590] = 8, + STATE(6818), 1, + sym_type_parameters, + [162124] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4497), 1, + STATE(4481), 1, sym_comment, - STATE(4933), 1, + STATE(5217), 1, sym_type_annotation, - STATE(6005), 1, + STATE(5920), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162617] = 6, + [162151] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4498), 1, + STATE(4482), 1, sym_comment, - STATE(6434), 1, - sym_statement_block, - ACTIONS(8087), 5, - sym__automatic_semicolon, + ACTIONS(4269), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162640] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [162170] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4499), 1, + ACTIONS(8138), 1, + anon_sym_EQ, + STATE(4483), 1, sym_comment, - STATE(6559), 1, - sym_statement_block, - ACTIONS(8085), 5, - sym__automatic_semicolon, + ACTIONS(4269), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162663] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [162191] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4500), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4484), 1, sym_comment, - STATE(6364), 1, - sym_statement_block, - ACTIONS(8089), 5, + STATE(5390), 1, + sym_type_annotation, + STATE(6311), 1, + sym__initializer, + ACTIONS(7420), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162686] = 6, + [162218] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(4501), 1, + STATE(3299), 1, + sym_class_body, + STATE(4485), 1, sym_comment, - STATE(6406), 1, - sym_statement_block, - ACTIONS(8091), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162709] = 6, + STATE(6082), 1, + sym_extends_clause, + STATE(6823), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [162249] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(4502), 1, + STATE(4486), 1, sym_comment, - STATE(6369), 1, + STATE(6577), 1, sym_statement_block, - ACTIONS(8093), 5, + ACTIONS(8124), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162732] = 8, + [162272] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4503), 1, + ACTIONS(131), 1, + anon_sym_import, + ACTIONS(8141), 1, + sym_identifier, + STATE(2205), 1, + sym__type_query_subscript_expression, + STATE(2210), 1, + sym__type_query_member_expression, + STATE(2232), 1, + sym__type_query_instantiation_expression, + STATE(2233), 1, + sym__type_query_call_expression, + STATE(4487), 1, sym_comment, - STATE(5222), 1, - sym_type_annotation, - STATE(6312), 1, - sym__initializer, - ACTIONS(7414), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162759] = 6, + STATE(5498), 1, + sym_import, + [162303] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(4504), 1, + STATE(4488), 1, sym_comment, - STATE(6661), 1, + STATE(6575), 1, sym_statement_block, - ACTIONS(8089), 5, + ACTIONS(8143), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162782] = 6, + [162326] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(4505), 1, + STATE(2999), 1, + sym_class_body, + STATE(4489), 1, sym_comment, - STATE(6592), 1, - sym_statement_block, - ACTIONS(8093), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162805] = 8, + STATE(6082), 1, + sym_extends_clause, + STATE(6709), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [162357] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(8145), 1, anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4506), 1, + STATE(4490), 1, sym_comment, - STATE(4954), 1, - sym_type_annotation, - STATE(5997), 1, - sym__initializer, - ACTIONS(7424), 3, - sym__automatic_semicolon, + ACTIONS(4269), 6, anon_sym_COMMA, - anon_sym_SEMI, - [162832] = 8, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [162378] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4507), 1, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8012), 1, + sym_identifier, + STATE(4491), 1, sym_comment, - STATE(4966), 1, - sym_type_annotation, - STATE(5983), 1, - sym__initializer, - ACTIONS(7424), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162859] = 10, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(5581), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [162407] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7727), 1, + ACTIONS(7588), 1, anon_sym_LBRACE, - STATE(3306), 1, + STATE(431), 1, sym_class_body, - STATE(4508), 1, + STATE(4492), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6372), 1, + STATE(6929), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [162890] = 4, + [162438] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4509), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4493), 1, sym_comment, - ACTIONS(2107), 7, + STATE(6553), 1, + sym_statement_block, + ACTIONS(8143), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162909] = 10, + [162461] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4494), 1, + sym_comment, + STATE(5305), 1, + sym_type_annotation, + STATE(6132), 1, + sym__initializer, + ACTIONS(7403), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162488] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(8148), 1, sym_identifier, - ACTIONS(8097), 1, + ACTIONS(8150), 1, anon_sym_STAR, - STATE(4510), 1, + STATE(4495), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6984), 1, + STATE(6548), 1, sym__call_signature, - [162940] = 10, + STATE(6818), 1, + sym_type_parameters, + [162519] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, + ACTIONS(131), 1, + anon_sym_import, + ACTIONS(8152), 1, sym_identifier, - ACTIONS(8101), 1, - anon_sym_STAR, - STATE(4511), 1, + STATE(3719), 1, + sym__type_query_subscript_expression, + STATE(3721), 1, + sym__type_query_member_expression, + STATE(4025), 1, + sym__type_query_call_expression, + STATE(4297), 1, + sym__type_query_instantiation_expression, + STATE(4496), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6618), 1, - sym__call_signature, - [162971] = 7, + STATE(5414), 1, + sym_import, + [162550] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(8105), 1, - anon_sym_RBRACE, - STATE(4512), 1, - sym_comment, - STATE(5660), 1, - aux_sym_object_repeat1, - ACTIONS(4520), 4, - anon_sym_LPAREN, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [162996] = 6, + STATE(4497), 1, + sym_comment, + STATE(5075), 1, + sym_type_annotation, + STATE(5870), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162577] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4513), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4498), 1, sym_comment, - STATE(6485), 1, - sym_statement_block, - ACTIONS(8107), 5, + STATE(5066), 1, + sym_type_annotation, + STATE(5865), 1, + sym__initializer, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163019] = 10, + [162604] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8109), 1, + ACTIONS(8154), 1, sym_identifier, - ACTIONS(8111), 1, + ACTIONS(8156), 1, anon_sym_STAR, - STATE(4514), 1, + STATE(4499), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6618), 1, + STATE(6561), 1, sym__call_signature, - [163050] = 4, + STATE(6818), 1, + sym_type_parameters, + [162635] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4515), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8158), 1, + sym_identifier, + ACTIONS(8160), 1, + anon_sym_STAR, + STATE(4500), 1, sym_comment, - ACTIONS(2111), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163069] = 6, + STATE(4786), 1, + sym_formal_parameters, + STATE(6561), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [162666] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4516), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4501), 1, sym_comment, - STATE(6371), 1, - sym_statement_block, - ACTIONS(8113), 5, + STATE(5009), 1, + sym_type_annotation, + STATE(6334), 1, + sym__initializer, + ACTIONS(7494), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163092] = 6, + [162693] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(4517), 1, + STATE(4502), 1, sym_comment, - STATE(6783), 1, + STATE(6356), 1, sym_statement_block, - ACTIONS(8107), 5, + ACTIONS(8162), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163115] = 6, + [162716] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(4518), 1, + STATE(4503), 1, sym_comment, - STATE(6764), 1, + STATE(6593), 1, sym_statement_block, - ACTIONS(8113), 5, + ACTIONS(8164), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163138] = 10, + [162739] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(2927), 1, - sym_class_body, - STATE(4519), 1, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8166), 1, + sym_identifier, + STATE(4192), 1, + sym__destructuring_pattern, + STATE(4504), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6388), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [163169] = 9, + STATE(5562), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [162768] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(7999), 1, + ACTIONS(8168), 1, sym_identifier, - STATE(4520), 1, - sym_comment, - STATE(4555), 1, + STATE(4194), 1, sym__destructuring_pattern, - STATE(5539), 1, + STATE(4505), 1, + sym_comment, + STATE(5563), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - [163198] = 8, + [162797] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4521), 1, + STATE(4506), 1, sym_comment, - STATE(5195), 1, + STATE(5058), 1, sym_type_annotation, - STATE(5952), 1, + STATE(5857), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163225] = 5, + [162824] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8115), 1, - sym__automatic_semicolon, - STATE(4522), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4507), 1, sym_comment, - ACTIONS(2113), 6, + STATE(6554), 1, + sym_statement_block, + ACTIONS(8162), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163246] = 10, - ACTIONS(3), 1, + [162847] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4508), 1, + sym_comment, + STATE(5056), 1, + sym_type_annotation, + STATE(5853), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162874] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8117), 1, - sym_identifier, - ACTIONS(8119), 1, - anon_sym_STAR, - STATE(4523), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4509), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6984), 1, - sym__call_signature, - [163277] = 9, + STATE(5050), 1, + sym_type_annotation, + STATE(5843), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162901] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(7999), 1, + ACTIONS(8012), 1, sym_identifier, - STATE(4524), 1, - sym_comment, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(5538), 1, + STATE(4510), 1, + sym_comment, + STATE(5665), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - [163306] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [162930] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8121), 1, - sym_identifier, - ACTIONS(8123), 1, - anon_sym_STAR, - STATE(4525), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4511), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6618), 1, - sym__call_signature, - [163337] = 4, + STATE(6350), 1, + sym_statement_block, + ACTIONS(8164), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162953] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4526), 1, + STATE(4512), 1, sym_comment, - ACTIONS(6452), 7, + ACTIONS(5936), 7, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [163356] = 10, + [162972] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7653), 1, - anon_sym_LBRACE, - STATE(1383), 1, - sym_class_body, - STATE(4527), 1, + STATE(4513), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6414), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [163387] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5930), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [162991] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8125), 1, - sym_identifier, - ACTIONS(8127), 1, - anon_sym_STAR, - STATE(4528), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8170), 1, + anon_sym_EQ, + STATE(4514), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6482), 1, - sym__call_signature, - [163418] = 8, + ACTIONS(4307), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [163012] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4529), 1, + STATE(4515), 1, sym_comment, - STATE(5037), 1, + STATE(5044), 1, sym_type_annotation, - STATE(5937), 1, + STATE(5841), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163445] = 8, + [163039] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4530), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4516), 1, sym_comment, - STATE(5040), 1, - sym_type_annotation, - STATE(5936), 1, - sym__initializer, - ACTIONS(7424), 3, + STATE(6789), 1, + sym_statement_block, + ACTIONS(8172), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163472] = 10, + anon_sym_PIPE_RBRACE, + [163062] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(8024), 1, + anon_sym_LT, + ACTIONS(8026), 1, anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7625), 1, + ACTIONS(8174), 1, anon_sym_LBRACE, - STATE(456), 1, - sym_class_body, - STATE(4531), 1, + ACTIONS(8176), 1, + anon_sym_LBRACE_PIPE, + STATE(1263), 1, + sym_object_type, + STATE(4517), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6443), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [163503] = 8, + STATE(5411), 1, + sym_type_parameters, + STATE(6219), 1, + sym_extends_type_clause, + [163093] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(4120), 1, + anon_sym_DQUOTE, + ACTIONS(4122), 1, + anon_sym_SQUOTE, + ACTIONS(8178), 1, + sym_identifier, + ACTIONS(8180), 1, + anon_sym_DOT, + STATE(914), 1, + sym_nested_identifier, + STATE(1031), 1, + sym_string, + STATE(1206), 1, + sym__module, + STATE(4518), 1, + sym_comment, + [163124] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4532), 1, + STATE(4519), 1, sym_comment, - STATE(5058), 1, + STATE(5043), 1, sym_type_annotation, - STATE(5928), 1, + STATE(5836), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163530] = 8, + [163151] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(4533), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4520), 1, sym_comment, - STATE(5061), 1, - sym_type_annotation, - STATE(5926), 1, - sym__initializer, - ACTIONS(7424), 3, + STATE(6684), 1, + sym_statement_block, + ACTIONS(8182), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163557] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8129), 1, - sym_identifier, - ACTIONS(8131), 1, - anon_sym_STAR, - STATE(4534), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6984), 1, - sym__call_signature, - [163588] = 8, + anon_sym_PIPE_RBRACE, + [163174] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4535), 1, + STATE(4521), 1, sym_comment, - STATE(5066), 1, + STATE(5042), 1, sym_type_annotation, - STATE(5917), 1, + STATE(5834), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163615] = 6, + [163201] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(4536), 1, + STATE(4522), 1, sym_comment, - STATE(6392), 1, + STATE(6596), 1, sym_statement_block, - ACTIONS(8133), 5, + ACTIONS(8172), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163638] = 6, + [163224] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(4537), 1, + STATE(4523), 1, sym_comment, - STATE(6394), 1, + STATE(6738), 1, sym_statement_block, - ACTIONS(8091), 5, + ACTIONS(8184), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163661] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8135), 1, - sym_identifier, - ACTIONS(8137), 1, - anon_sym_STAR, - STATE(4538), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6618), 1, - sym__call_signature, - [163692] = 6, + [163247] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(4539), 1, + STATE(4524), 1, sym_comment, - STATE(6413), 1, + STATE(6694), 1, sym_statement_block, - ACTIONS(8133), 5, + ACTIONS(8186), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163715] = 8, + [163270] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4540), 1, + STATE(4525), 1, sym_comment, - STATE(5073), 1, + STATE(5158), 1, sym_type_annotation, - STATE(5913), 1, + STATE(5867), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163742] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [163297] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8008), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7999), 1, - sym_identifier, - STATE(4541), 1, + STATE(4526), 1, sym_comment, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(5643), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [163771] = 8, + STATE(6424), 1, + sym_statement_block, + ACTIONS(8188), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163320] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4542), 1, + STATE(4527), 1, sym_comment, - STATE(5091), 1, + STATE(5037), 1, sym_type_annotation, - STATE(5900), 1, + STATE(5827), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163798] = 8, + [163347] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4543), 1, + STATE(4528), 1, sym_comment, - STATE(5108), 1, + STATE(5026), 1, sym_type_annotation, - STATE(5897), 1, + STATE(5726), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163825] = 10, + [163374] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8139), 1, - anon_sym_LBRACE, - ACTIONS(8141), 1, - anon_sym_COMMA, - ACTIONS(8143), 1, - anon_sym_DOT, - ACTIONS(8145), 1, - anon_sym_LT, - ACTIONS(8147), 1, - anon_sym_LBRACE_PIPE, - STATE(4544), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4529), 1, sym_comment, - STATE(5514), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5647), 1, - sym_type_arguments, - [163856] = 8, + STATE(5302), 1, + sym_type_annotation, + STATE(6130), 1, + sym__initializer, + ACTIONS(7403), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163401] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4545), 1, + STATE(4530), 1, sym_comment, - STATE(5121), 1, + STATE(5146), 1, sym_type_annotation, - STATE(5886), 1, + STATE(5804), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7418), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163883] = 8, + [163428] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4546), 1, + STATE(4531), 1, sym_comment, - STATE(5124), 1, + STATE(5018), 1, sym_type_annotation, - STATE(5885), 1, + STATE(5805), 1, sym__initializer, - ACTIONS(7424), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163910] = 10, + [163455] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(8149), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(8151), 1, - anon_sym_QMARK, - STATE(4547), 1, + STATE(4532), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6798), 1, - sym__call_signature, - [163941] = 4, + STATE(5016), 1, + sym_type_annotation, + STATE(5791), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163482] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4548), 1, - sym_comment, - ACTIONS(6344), 7, - anon_sym_EQ, + ACTIONS(8190), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(8194), 1, + anon_sym_DOT, + ACTIONS(8196), 1, anon_sym_LT, - anon_sym_QMARK, - [163960] = 10, + ACTIONS(8198), 1, + anon_sym_LBRACE_PIPE, + STATE(4533), 1, + sym_comment, + STATE(5511), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5868), 1, + sym_type_arguments, + [163513] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7573), 1, + ACTIONS(7596), 1, anon_sym_LBRACE, - STATE(1465), 1, + STATE(1458), 1, sym_class_body, - STATE(4549), 1, + STATE(4534), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6478), 1, + STATE(6746), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [163991] = 10, - ACTIONS(3), 1, + [163544] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7588), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_class_body, + STATE(4535), 1, + sym_comment, + STATE(6082), 1, + sym_extends_clause, + STATE(6840), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [163575] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4536), 1, + sym_comment, + ACTIONS(8200), 7, + anon_sym_export, anon_sym_LPAREN, - ACTIONS(8153), 1, + anon_sym_DOT, + anon_sym_class, + anon_sym_LT, + anon_sym_AT, + anon_sym_abstract, + [163594] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4537), 1, + sym_comment, + ACTIONS(8202), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [163613] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(7456), 1, sym_identifier, - ACTIONS(8155), 1, - anon_sym_STAR, - STATE(4550), 1, + ACTIONS(7544), 1, + anon_sym_type, + STATE(4538), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6618), 1, - sym__call_signature, - [164022] = 10, + STATE(5611), 1, + sym_string, + STATE(6996), 1, + sym__import_identifier, + STATE(7003), 1, + sym__module_export_name, + [163644] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_LBRACK, + ACTIONS(8012), 1, + sym_identifier, + STATE(4501), 1, + sym__destructuring_pattern, + STATE(4539), 1, + sym_comment, + STATE(5580), 1, + sym_variable_declarator, + STATE(4562), 2, + sym_object_pattern, + sym_array_pattern, + [163673] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(131), 1, + anon_sym_import, + ACTIONS(8204), 1, + sym_identifier, + STATE(3656), 1, + sym__type_query_member_expression, + STATE(3658), 1, + sym__type_query_subscript_expression, + STATE(3843), 1, + sym__type_query_call_expression, + STATE(4003), 1, + sym__type_query_instantiation_expression, + STATE(4540), 1, + sym_comment, + STATE(5620), 1, + sym_import, + [163704] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8157), 1, + ACTIONS(8206), 1, sym_identifier, - ACTIONS(8159), 1, + ACTIONS(8208), 1, anon_sym_STAR, - STATE(4551), 1, + STATE(4541), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6358), 1, + STATE(6548), 1, sym__call_signature, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - [164053] = 4, + [163735] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4552), 1, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4542), 1, sym_comment, - ACTIONS(8161), 7, - anon_sym_export, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_class, - anon_sym_LT, - anon_sym_AT, - anon_sym_abstract, - [164072] = 8, + STATE(5364), 1, + sym_type_annotation, + ACTIONS(8210), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163758] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4553), 1, + STATE(4543), 1, sym_comment, - STATE(5166), 1, + STATE(5011), 1, sym_type_annotation, - STATE(5838), 1, + STATE(5781), 1, sym__initializer, - ACTIONS(8163), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164099] = 8, + [163785] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4554), 1, + STATE(4544), 1, sym_comment, - STATE(5176), 1, + STATE(5007), 1, sym_type_annotation, - STATE(5833), 1, + STATE(5777), 1, sym__initializer, - ACTIONS(8163), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164126] = 8, + [163812] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6080), 1, + sym__automatic_semicolon, + STATE(4545), 1, + sym_comment, + ACTIONS(2258), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [163833] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4555), 1, + STATE(4546), 1, sym_comment, - STATE(5361), 1, + STATE(5316), 1, sym_type_annotation, - STATE(5762), 1, + STATE(6205), 1, sym__initializer, - ACTIONS(7469), 3, + ACTIONS(8212), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164153] = 6, + [163860] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(4556), 1, + STATE(2958), 1, + sym_class_body, + STATE(4547), 1, sym_comment, - STATE(4893), 1, - sym_statement_block, - ACTIONS(2071), 5, + STATE(6082), 1, + sym_extends_clause, + STATE(6444), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [163891] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4548), 1, + sym_comment, + STATE(4999), 1, + sym_type_annotation, + STATE(5749), 1, + sym__initializer, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164176] = 5, + [163918] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4557), 1, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4549), 1, sym_comment, - ACTIONS(4257), 6, + STATE(4998), 1, + sym_type_annotation, + STATE(5746), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + [163945] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [164197] = 8, + STATE(4550), 1, + sym_comment, + STATE(5226), 1, + sym_type_annotation, + STATE(5980), 1, + sym__initializer, + ACTIONS(7408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163972] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4558), 1, + STATE(4551), 1, sym_comment, - STATE(5022), 1, + STATE(4996), 1, sym_type_annotation, - STATE(6169), 1, + STATE(5738), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164224] = 4, + [163999] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4559), 1, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4552), 1, sym_comment, - ACTIONS(4257), 7, - anon_sym_EQ, + STATE(5357), 1, + sym_type_annotation, + ACTIONS(8214), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164022] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [164243] = 9, + STATE(4553), 1, + sym_comment, + STATE(4988), 1, + sym_type_annotation, + STATE(5729), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164049] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, anon_sym_COLON, - ACTIONS(8168), 1, + STATE(4554), 1, + sym_comment, + STATE(5314), 1, + sym_type_annotation, + STATE(6196), 1, + sym__initializer, + ACTIONS(8212), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164076] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(8172), 1, - anon_sym_QMARK, - STATE(4560), 1, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4555), 1, sym_comment, - STATE(5468), 1, + STATE(4976), 1, sym_type_annotation, - STATE(6958), 1, + STATE(5708), 1, sym__initializer, - ACTIONS(8170), 2, + ACTIONS(7395), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [164272] = 10, + anon_sym_SEMI, + [164103] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8216), 1, + sym_identifier, + ACTIONS(8218), 1, + anon_sym_STAR, + STATE(4556), 1, + sym_comment, + STATE(4786), 1, + sym_formal_parameters, + STATE(6561), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [164134] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4557), 1, + sym_comment, + ACTIONS(2298), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164153] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7727), 1, + ACTIONS(7610), 1, anon_sym_LBRACE, - STATE(3273), 1, + STATE(1420), 1, sym_class_body, - STATE(4561), 1, + STATE(4558), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6619), 1, + STATE(6845), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [164303] = 4, + [164184] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4559), 1, + sym_comment, + STATE(4926), 1, + sym_class_body, + STATE(6082), 1, + sym_extends_clause, + STATE(6602), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [164215] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4560), 1, + sym_comment, + STATE(4888), 1, + sym_class_body, + STATE(6082), 1, + sym_extends_clause, + STATE(6546), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [164246] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4561), 1, + sym_comment, + STATE(5342), 1, + sym_type_annotation, + STATE(6291), 1, + sym__initializer, + ACTIONS(7399), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164273] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4562), 1, sym_comment, - ACTIONS(5862), 7, + ACTIONS(7730), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -343377,164 +345629,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [164322] = 10, + [164292] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, - anon_sym_extends, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(2980), 1, - sym_class_body, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4563), 1, sym_comment, - STATE(5699), 1, - sym_extends_clause, - STATE(6651), 1, - sym_class_heritage, - STATE(7283), 1, - sym_implements_clause, - [164353] = 10, + STATE(4864), 1, + sym_type_annotation, + STATE(5682), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164319] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(3026), 1, + STATE(3275), 1, sym_class_body, STATE(4564), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6987), 1, + STATE(6701), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [164384] = 6, + [164350] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4565), 1, sym_comment, - STATE(6653), 1, - sym_statement_block, - ACTIONS(8174), 5, + STATE(4856), 1, + sym_type_annotation, + STATE(5670), 1, + sym__initializer, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164407] = 6, + [164377] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4566), 1, sym_comment, - STATE(6693), 1, - sym_statement_block, - ACTIONS(8176), 5, + STATE(4850), 1, + sym_type_annotation, + STATE(5669), 1, + sym__initializer, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164430] = 6, + [164404] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, STATE(4567), 1, sym_comment, - STATE(6659), 1, - sym_statement_block, - ACTIONS(8176), 5, + ACTIONS(2158), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [164453] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8178), 1, - sym_identifier, - ACTIONS(8180), 1, - anon_sym_STAR, - STATE(4568), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6984), 1, - sym__call_signature, - [164484] = 10, + [164423] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(8151), 1, - anon_sym_QMARK, - ACTIONS(8182), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(4569), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6798), 1, - sym__call_signature, - [164515] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4570), 1, + STATE(4568), 1, sym_comment, - ACTIONS(2185), 7, + STATE(5330), 1, + sym_type_annotation, + STATE(6252), 1, + sym__initializer, + ACTIONS(7399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164534] = 4, + [164450] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4571), 1, + STATE(4569), 1, sym_comment, - ACTIONS(2247), 7, + ACTIONS(2122), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -343542,47358 +345756,47518 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [164553] = 4, + [164469] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4572), 1, + STATE(4570), 1, sym_comment, - ACTIONS(2087), 7, + ACTIONS(8220), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [164572] = 10, + [164488] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7653), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(1169), 1, + STATE(2558), 1, sym_class_body, - STATE(4573), 1, + STATE(4571), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6678), 1, + STATE(6409), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [164603] = 4, + [164519] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4574), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4572), 1, + sym_comment, + STATE(5734), 1, + sym_class_body, + STATE(6082), 1, + sym_extends_clause, + STATE(6408), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [164550] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4573), 1, sym_comment, - ACTIONS(2195), 7, + STATE(5323), 1, + sym_type_annotation, + STATE(6215), 1, + sym__initializer, + ACTIONS(7399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164622] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [164577] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7999), 1, - sym_identifier, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(4575), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4574), 1, sym_comment, - STATE(5576), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [164651] = 10, + STATE(5322), 1, + sym_type_annotation, + STATE(6212), 1, + sym__initializer, + ACTIONS(7399), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164604] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(8122), 1, + anon_sym_QMARK, + ACTIONS(8222), 1, + anon_sym_COLON, + STATE(4575), 1, + sym_comment, + STATE(4786), 1, + sym_formal_parameters, + STATE(6453), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [164635] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, - anon_sym_DQUOTE, - ACTIONS(4022), 1, - anon_sym_SQUOTE, - ACTIONS(8184), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8224), 1, sym_identifier, - ACTIONS(8186), 1, - anon_sym_DOT, - STATE(1071), 1, - sym_nested_identifier, - STATE(1382), 1, - sym_string, - STATE(1569), 1, - sym__module, + ACTIONS(8226), 1, + anon_sym_STAR, STATE(4576), 1, sym_comment, - [164682] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7993), 1, - anon_sym_LT, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(8188), 1, - anon_sym_LBRACE, - ACTIONS(8190), 1, - anon_sym_LBRACE_PIPE, - STATE(1570), 1, - sym_object_type, - STATE(4577), 1, - sym_comment, - STATE(5127), 1, + STATE(4786), 1, + sym_formal_parameters, + STATE(6561), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - STATE(5871), 1, - sym_extends_type_clause, - [164713] = 10, + [164666] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7711), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(2991), 1, + STATE(2550), 1, sym_class_body, - STATE(4578), 1, + STATE(4577), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6598), 1, + STATE(6392), 1, sym_class_heritage, - STATE(7283), 1, + STATE(7325), 1, sym_implements_clause, - [164744] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [164697] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7999), 1, - sym_identifier, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(4579), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4578), 1, sym_comment, - STATE(5577), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [164773] = 9, + ACTIONS(2312), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164716] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4181), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8045), 1, - sym_identifier, - ACTIONS(8192), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - STATE(3074), 1, - sym_arguments, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8230), 1, + anon_sym_STAR, + STATE(4579), 1, + sym_comment, + STATE(4786), 1, + sym_formal_parameters, + STATE(6548), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [164747] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4580), 1, sym_comment, - STATE(6942), 1, - sym_type_arguments, - ACTIONS(8049), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [164802] = 6, + STATE(5053), 1, + sym_type_annotation, + STATE(5847), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164774] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8194), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(8196), 1, - anon_sym_DOT, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4581), 1, sym_comment, - ACTIONS(7967), 5, - anon_sym_LBRACE, + STATE(5049), 1, + sym_type_annotation, + STATE(5835), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [164825] = 8, + anon_sym_SEMI, + [164801] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, STATE(4582), 1, sym_comment, - STATE(5210), 1, + STATE(5021), 1, sym_type_annotation, - STATE(5804), 1, + STATE(5806), 1, sym__initializer, - ACTIONS(8163), 3, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164852] = 8, + [164828] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(7173), 1, + ACTIONS(7184), 1, anon_sym_COLON, STATE(4583), 1, sym_comment, - STATE(5216), 1, + STATE(5310), 1, sym_type_annotation, - STATE(5802), 1, + STATE(6193), 1, sym__initializer, - ACTIONS(8163), 3, + ACTIONS(7399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164879] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [164855] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7328), 1, - anon_sym_COLON, - ACTIONS(8200), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4584), 1, sym_comment, - ACTIONS(8198), 5, + STATE(5017), 1, + sym_type_annotation, + STATE(5802), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164882] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7618), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [164902] = 8, + STATE(4585), 1, + sym_comment, + STATE(4901), 1, + sym_class_body, + STATE(6082), 1, + sym_extends_clause, + STATE(6558), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [164913] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8202), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4585), 1, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4586), 1, sym_comment, - STATE(5639), 1, - sym_constraint, - STATE(6765), 1, - sym_default_type, - ACTIONS(8204), 2, + STATE(5306), 1, + sym_type_annotation, + STATE(6182), 1, + sym__initializer, + ACTIONS(7399), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(8206), 2, - anon_sym_COLON, - anon_sym_extends, - [164929] = 10, + anon_sym_SEMI, + [164940] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8208), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8232), 1, sym_identifier, - STATE(3601), 1, - sym__type_query_subscript_expression, - STATE(3602), 1, - sym__type_query_member_expression, - STATE(3659), 1, - sym__type_query_call_expression, - STATE(3785), 1, - sym__type_query_instantiation_expression, - STATE(4586), 1, + ACTIONS(8234), 1, + anon_sym_STAR, + STATE(4587), 1, sym_comment, - STATE(5636), 1, - sym_import, - [164960] = 10, + STATE(4786), 1, + sym_formal_parameters, + STATE(6548), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [164971] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7541), 1, + ACTIONS(7572), 1, anon_sym_extends, - ACTIONS(7543), 1, + ACTIONS(7574), 1, anon_sym_implements, - ACTIONS(7625), 1, + ACTIONS(7586), 1, anon_sym_LBRACE, - STATE(453), 1, - sym_class_body, - STATE(4587), 1, + STATE(4588), 1, sym_comment, - STATE(5699), 1, + STATE(6082), 1, sym_extends_clause, - STATE(6807), 1, + STATE(6357), 1, sym_class_heritage, - STATE(7283), 1, + STATE(6605), 1, + sym_class_body, + STATE(7325), 1, sym_implements_clause, - [164991] = 8, + [165002] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8202), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4588), 1, - sym_comment, - STATE(5505), 1, - sym_constraint, - STATE(6974), 1, - sym_default_type, - ACTIONS(8206), 2, + ACTIONS(7184), 1, anon_sym_COLON, - anon_sym_extends, - ACTIONS(8210), 2, + STATE(4589), 1, + sym_comment, + STATE(5293), 1, + sym_type_annotation, + STATE(6152), 1, + sym__initializer, + ACTIONS(7399), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [165018] = 9, + anon_sym_SEMI, + [165029] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7999), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8236), 1, sym_identifier, - STATE(4555), 1, - sym__destructuring_pattern, - STATE(4589), 1, + ACTIONS(8238), 1, + anon_sym_STAR, + STATE(4590), 1, sym_comment, - STATE(5443), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [165047] = 9, + STATE(4786), 1, + sym_formal_parameters, + STATE(6561), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [165060] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(7999), 1, + ACTIONS(8012), 1, sym_identifier, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(4590), 1, + STATE(4591), 1, sym_comment, - STATE(5445), 1, + STATE(5548), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - [165076] = 4, + [165089] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4591), 1, - sym_comment, - ACTIONS(7835), 7, - sym__automatic_semicolon, + ACTIONS(7176), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(7184), 1, anon_sym_COLON, - [165095] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_EQ, STATE(4592), 1, sym_comment, - ACTIONS(4268), 6, + STATE(4982), 1, + sym_type_annotation, + STATE(5713), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, + anon_sym_SEMI, [165116] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(8214), 1, + ACTIONS(8012), 1, sym_identifier, - STATE(4159), 1, + STATE(4501), 1, sym__destructuring_pattern, STATE(4593), 1, sym_comment, - STATE(5482), 1, + STATE(5560), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - [165145] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [165145] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7612), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(8216), 1, - sym_identifier, - STATE(4158), 1, - sym__destructuring_pattern, + STATE(3161), 1, + sym_class_body, STATE(4594), 1, sym_comment, - STATE(5484), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [165174] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6082), 1, + sym_extends_clause, + STATE(6370), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [165176] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7999), 1, - sym_identifier, - STATE(4555), 1, - sym__destructuring_pattern, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4595), 1, sym_comment, - STATE(5982), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [165203] = 9, + STATE(5286), 1, + sym_type_annotation, + STATE(6103), 1, + sym__initializer, + ACTIONS(7403), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165203] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4596), 1, + sym_comment, + STATE(5290), 1, + sym_type_annotation, + STATE(6113), 1, + sym__initializer, + ACTIONS(7399), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165230] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(7999), 1, + ACTIONS(8012), 1, sym_identifier, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(4596), 1, + STATE(4597), 1, sym_comment, - STATE(5485), 1, + STATE(5559), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - [165232] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4597), 1, - sym_comment, - ACTIONS(5882), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [165251] = 4, + [165259] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7618), 1, + anon_sym_LBRACE, STATE(4598), 1, sym_comment, - ACTIONS(7747), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [165270] = 6, + STATE(6082), 1, + sym_extends_clause, + STATE(6273), 1, + sym_class_body, + STATE(6386), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [165290] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7652), 1, anon_sym_LBRACE, + STATE(2573), 1, + sym_class_body, STATE(4599), 1, sym_comment, - STATE(6870), 1, - sym_statement_block, - ACTIONS(8218), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165293] = 4, + STATE(6082), 1, + sym_extends_clause, + STATE(6426), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [165321] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4600), 1, sym_comment, - ACTIONS(7735), 7, + STATE(4872), 1, + sym_type_annotation, + STATE(5653), 1, + sym__initializer, + ACTIONS(7395), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [165312] = 5, + [165348] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8220), 1, - sym__automatic_semicolon, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7728), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_class_body, STATE(4601), 1, sym_comment, - ACTIONS(2111), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [165333] = 10, + STATE(6082), 1, + sym_extends_clause, + STATE(6574), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [165379] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7570), 1, + anon_sym_LBRACE, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + STATE(1024), 1, + sym_class_body, + STATE(4602), 1, + sym_comment, + STATE(6082), 1, + sym_extends_clause, + STATE(6888), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [165410] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7586), 1, + anon_sym_LBRACE, + STATE(4603), 1, + sym_comment, + STATE(6082), 1, + sym_extends_clause, + STATE(6466), 1, + sym_class_heritage, + STATE(6472), 1, + sym_class_body, + STATE(7325), 1, + sym_implements_clause, + [165441] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8222), 1, + ACTIONS(8240), 1, sym_identifier, - ACTIONS(8224), 1, + ACTIONS(8242), 1, anon_sym_STAR, - STATE(4602), 1, + STATE(4604), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - STATE(6984), 1, + STATE(6922), 1, sym__call_signature, - [165364] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8226), 1, - anon_sym_EQ, - STATE(4603), 1, - sym_comment, - ACTIONS(4257), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [165385] = 9, + [165472] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(7999), 1, + ACTIONS(8012), 1, sym_identifier, - STATE(4555), 1, + STATE(4501), 1, sym__destructuring_pattern, - STATE(4604), 1, + STATE(4605), 1, sym_comment, - STATE(5487), 1, + STATE(5625), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4562), 2, sym_object_pattern, sym_array_pattern, - [165414] = 4, + [165501] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4605), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4606), 1, sym_comment, - ACTIONS(5880), 7, + STATE(4984), 1, + sym_type_annotation, + STATE(5680), 1, + sym__initializer, + ACTIONS(7395), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [165433] = 4, + [165528] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4606), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4607), 1, sym_comment, - ACTIONS(7685), 7, + STATE(5278), 1, + sym_type_annotation, + STATE(6070), 1, + sym__initializer, + ACTIONS(7401), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [165452] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [165555] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7443), 1, - sym_identifier, - ACTIONS(7501), 1, - anon_sym_type, - STATE(4607), 1, - sym_comment, - STATE(5427), 1, - sym_string, - STATE(6848), 1, - sym__import_identifier, - STATE(7119), 1, - sym__module_export_name, - [165483] = 10, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8229), 1, - sym_identifier, - ACTIONS(8231), 1, - anon_sym_STAR, STATE(4608), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6618), 1, - sym__call_signature, - [165514] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(2288), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [165574] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4012), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(7999), 1, - sym_identifier, - STATE(4555), 1, - sym__destructuring_pattern, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4609), 1, sym_comment, - STATE(5519), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [165543] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5267), 1, + sym_type_annotation, + STATE(6067), 1, + sym__initializer, + ACTIONS(8212), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165601] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8233), 1, - sym_identifier, - ACTIONS(8235), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4610), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6984), 1, - sym__call_signature, - [165574] = 6, + STATE(5273), 1, + sym_type_annotation, + STATE(6068), 1, + sym__initializer, + ACTIONS(8212), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165628] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7223), 1, + ACTIONS(7176), 1, anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(4611), 1, sym_comment, - ACTIONS(8237), 2, + STATE(4994), 1, + sym_type_annotation, + STATE(5735), 1, + sym__initializer, + ACTIONS(7395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165655] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8244), 1, + sym__automatic_semicolon, + STATE(4612), 1, + sym_comment, + ACTIONS(2248), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [165676] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7212), 1, + anon_sym_EQ, + STATE(4613), 1, + sym_comment, + ACTIONS(8246), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4520), 4, + ACTIONS(4527), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [165597] = 4, + [165699] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4612), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4614), 1, sym_comment, - ACTIONS(7671), 7, + STATE(5189), 1, + sym_type_annotation, + STATE(5979), 1, + sym__initializer, + ACTIONS(7403), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [165616] = 4, + [165726] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4613), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(4615), 1, sym_comment, - ACTIONS(7659), 7, + STATE(5003), 1, + sym_type_annotation, + STATE(5751), 1, + sym__initializer, + ACTIONS(7395), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [165635] = 4, - ACTIONS(3), 1, + [165753] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7572), 1, + anon_sym_extends, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4616), 1, + sym_comment, + STATE(4915), 1, + sym_class_body, + STATE(6082), 1, + sym_extends_clause, + STATE(6581), 1, + sym_class_heritage, + STATE(7325), 1, + sym_implements_clause, + [165784] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(4614), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4617), 1, sym_comment, - ACTIONS(2245), 7, + ACTIONS(8249), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, - sym_identifier, - [165654] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [165803] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4615), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4618), 1, sym_comment, - ACTIONS(2085), 7, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, - sym_identifier, - [165673] = 6, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8253), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8251), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165825] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3393), 1, - sym_statement_block, - STATE(4616), 1, + STATE(4619), 1, sym_comment, - ACTIONS(8176), 4, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8257), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8255), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165695] = 9, + [165847] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8242), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(8259), 1, anon_sym_QMARK, - STATE(4617), 1, - sym_comment, - STATE(4813), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6794), 1, + STATE(4465), 1, sym__call_signature, - [165723] = 9, + STATE(4620), 1, + sym_comment, + STATE(6730), 1, + sym_type_parameters, + [165875] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(8244), 1, + ACTIONS(8261), 1, anon_sym_QMARK, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4618), 1, - sym_comment, - STATE(5156), 1, + STATE(4503), 1, sym__call_signature, - STATE(6986), 1, + STATE(4621), 1, + sym_comment, + STATE(6730), 1, sym_type_parameters, - [165751] = 4, + [165903] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4619), 1, + aux_sym_object_type_repeat1, + STATE(4622), 1, sym_comment, - ACTIONS(2107), 6, - anon_sym_COMMA, + ACTIONS(8265), 2, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [165769] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + ACTIONS(8263), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165925] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8246), 1, - sym_identifier, - STATE(4620), 1, - sym_comment, - ACTIONS(7004), 5, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(7186), 1, anon_sym_LT, - anon_sym_BQUOTE, - [165789] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8250), 1, - anon_sym_RBRACE, - ACTIONS(8252), 1, - anon_sym_case, - STATE(4621), 1, + ACTIONS(8267), 1, + anon_sym_QMARK, + STATE(4623), 1, sym_comment, - STATE(4624), 1, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [165815] = 9, + STATE(4786), 1, + sym_formal_parameters, + STATE(6818), 1, + sym_type_parameters, + STATE(6927), 1, + sym__call_signature, + [165953] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7619), 1, - anon_sym_DOT, - ACTIONS(8254), 1, - anon_sym_COMMA, - ACTIONS(8256), 1, - anon_sym_GT, - STATE(4327), 1, - sym_arguments, - STATE(4622), 1, + ACTIONS(8269), 1, + anon_sym_QMARK, + STATE(4041), 1, + sym_formal_parameters, + STATE(4520), 1, + sym__call_signature, + STATE(4624), 1, sym_comment, - STATE(5733), 1, - aux_sym_type_arguments_repeat1, - [165843] = 9, + STATE(6730), 1, + sym_type_parameters, + [165981] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8258), 1, - anon_sym_COMMA, - ACTIONS(8260), 1, - anon_sym_GT, - STATE(4623), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(8271), 1, + anon_sym_QMARK, + STATE(4041), 1, + sym_formal_parameters, + STATE(4524), 1, + sym__call_signature, + STATE(4625), 1, sym_comment, - STATE(5738), 1, - aux_sym_type_arguments_repeat1, - [165871] = 8, + STATE(6730), 1, + sym_type_parameters, + [166009] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8262), 1, - anon_sym_RBRACE, - STATE(4624), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(8273), 1, + anon_sym_QMARK, + STATE(4041), 1, + sym_formal_parameters, + STATE(4626), 1, sym_comment, - STATE(4803), 1, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [165897] = 9, + STATE(5248), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + [166037] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8264), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(8275), 1, anon_sym_QMARK, - STATE(4625), 1, - sym_comment, - STATE(4813), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(6439), 1, + STATE(4488), 1, sym__call_signature, - STATE(6459), 1, + STATE(4627), 1, + sym_comment, + STATE(6730), 1, sym_type_parameters, - [165925] = 6, + [166065] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4626), 1, + STATE(4628), 1, sym_comment, - STATE(4632), 1, + STATE(4776), 1, aux_sym_object_type_repeat1, - ACTIONS(8268), 2, + ACTIONS(8265), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8266), 3, + ACTIONS(8263), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165947] = 6, + [166087] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3406), 1, - sym_statement_block, - STATE(4627), 1, + STATE(4629), 1, sym_comment, - ACTIONS(8093), 4, + STATE(4638), 1, + aux_sym_object_type_repeat1, + ACTIONS(8279), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8277), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165969] = 6, + [166109] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3403), 1, - sym_statement_block, - STATE(4628), 1, + STATE(4630), 1, sym_comment, - ACTIONS(8089), 4, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8283), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8281), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165991] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_QMARK, - STATE(4286), 1, - sym_formal_parameters, - STATE(4629), 1, - sym_comment, - STATE(4737), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [166019] = 6, + [166131] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3394), 1, + STATE(3367), 1, sym_statement_block, - STATE(4630), 1, + STATE(4631), 1, sym_comment, - ACTIONS(8093), 4, + ACTIONS(8188), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166041] = 6, + [166153] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4631), 1, + STATE(4632), 1, sym_comment, - STATE(4638), 1, - aux_sym_object_type_repeat1, - ACTIONS(8274), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8272), 3, - sym__automatic_semicolon, + ACTIONS(4527), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [166063] = 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [166171] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4632), 1, - sym_comment, - STATE(4673), 1, + STATE(4628), 1, aux_sym_object_type_repeat1, - ACTIONS(8274), 2, + STATE(4633), 1, + sym_comment, + ACTIONS(8289), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8272), 3, + ACTIONS(8287), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166085] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [166193] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8276), 1, - sym_identifier, - STATE(4633), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6982), 1, - sym__call_signature, - [166113] = 9, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8293), 1, + anon_sym_RBRACE, + ACTIONS(8295), 1, + anon_sym_case, + STATE(4634), 1, + sym_comment, + STATE(4842), 1, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [166219] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(8278), 1, - sym_identifier, - STATE(4634), 1, - sym_comment, - STATE(4813), 1, + ACTIONS(8297), 1, + anon_sym_QMARK, + STATE(4041), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6982), 1, + STATE(4416), 1, sym__call_signature, - [166141] = 6, + STATE(4635), 1, + sym_comment, + STATE(6730), 1, + sym_type_parameters, + [166247] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3386), 1, - sym_statement_block, - STATE(4635), 1, + STATE(4630), 1, + aux_sym_object_type_repeat1, + STATE(4636), 1, sym_comment, - ACTIONS(8089), 4, + ACTIONS(8301), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8299), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166163] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [166269] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4099), 1, - anon_sym_SQUOTE, - ACTIONS(8005), 1, - sym_identifier, - STATE(929), 1, - sym_nested_identifier, - STATE(1085), 1, - sym_string, - STATE(1262), 1, - sym__module, - STATE(4636), 1, - sym_comment, - [166191] = 9, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4099), 1, - anon_sym_SQUOTE, - ACTIONS(8005), 1, - sym_identifier, - STATE(929), 1, - sym_nested_identifier, - STATE(1085), 1, - sym_string, - STATE(1276), 1, - sym__module, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8303), 1, + anon_sym_RBRACE, STATE(4637), 1, sym_comment, - [166219] = 6, + STATE(4842), 1, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [166295] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4638), 1, sym_comment, - STATE(4673), 1, + STATE(4776), 1, aux_sym_object_type_repeat1, - ACTIONS(8282), 2, + ACTIONS(8301), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8280), 3, + ACTIONS(8299), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166241] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [166317] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(8009), 1, - sym_identifier, - STATE(4316), 1, - sym_nested_identifier, - STATE(4556), 1, - sym_string, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(4639), 1, sym_comment, - STATE(4934), 1, - sym__module, - [166269] = 9, + ACTIONS(8220), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [166335] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8284), 1, - anon_sym_QMARK, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8305), 1, + sym_identifier, STATE(4640), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6878), 1, + STATE(6566), 1, sym__call_signature, - [166297] = 9, + STATE(6818), 1, + sym_type_parameters, + [166363] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(4120), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(4122), 1, anon_sym_SQUOTE, - ACTIONS(8009), 1, + ACTIONS(8178), 1, sym_identifier, - STATE(4316), 1, + STATE(914), 1, sym_nested_identifier, - STATE(4556), 1, + STATE(1031), 1, sym_string, + STATE(1356), 1, + sym__module, STATE(4641), 1, sym_comment, - STATE(5251), 1, - sym__module, - [166325] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [166391] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8286), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(4642), 1, sym_comment, - ACTIONS(7004), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [166345] = 4, + ACTIONS(8202), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [166409] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(4120), 1, + anon_sym_DQUOTE, + ACTIONS(4122), 1, + anon_sym_SQUOTE, + ACTIONS(8178), 1, + sym_identifier, + STATE(914), 1, + sym_nested_identifier, + STATE(1031), 1, + sym_string, + STATE(1206), 1, + sym__module, STATE(4643), 1, sym_comment, - ACTIONS(4520), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [166363] = 9, + [166437] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(8288), 1, - anon_sym_QMARK, - STATE(4061), 1, - sym_formal_parameters, + ACTIONS(8307), 1, + anon_sym_catch, + ACTIONS(8309), 1, + anon_sym_finally, STATE(4644), 1, sym_comment, - STATE(5778), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [166391] = 9, + STATE(5516), 1, + sym_catch_clause, + STATE(6760), 1, + sym_finally_clause, + ACTIONS(3025), 2, + anon_sym_else, + anon_sym_while, + [166463] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_QMARK, - STATE(4061), 1, - sym_formal_parameters, - STATE(4493), 1, - sym__call_signature, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8311), 1, + anon_sym_COMMA, + ACTIONS(8313), 1, + anon_sym_GT, STATE(4645), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [166419] = 9, + STATE(6264), 1, + aux_sym_type_arguments_repeat1, + [166491] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(8292), 1, - anon_sym_QMARK, - STATE(4061), 1, - sym_formal_parameters, - STATE(4498), 1, - sym__call_signature, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8315), 1, + anon_sym_COMMA, + ACTIONS(8317), 1, + anon_sym_GT, STATE(4646), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [166447] = 8, + STATE(6029), 1, + aux_sym_type_arguments_repeat1, + [166519] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8294), 1, - anon_sym_RBRACE, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(7874), 1, + anon_sym_DOT, + ACTIONS(8319), 1, + anon_sym_COMMA, + ACTIONS(8321), 1, + anon_sym_GT, + STATE(4314), 1, + sym_arguments, STATE(4647), 1, sym_comment, - STATE(4657), 1, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [166473] = 6, + STATE(6025), 1, + aux_sym_type_arguments_repeat1, + [166547] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3363), 1, - sym_statement_block, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(7874), 1, + anon_sym_DOT, + ACTIONS(8323), 1, + anon_sym_COMMA, + ACTIONS(8325), 1, + anon_sym_GT, + STATE(4314), 1, + sym_arguments, STATE(4648), 1, sym_comment, - ACTIONS(8107), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166495] = 9, + STATE(6239), 1, + aux_sym_type_arguments_repeat1, + [166575] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(8296), 1, - anon_sym_QMARK, - STATE(4061), 1, - sym_formal_parameters, - STATE(4504), 1, - sym__call_signature, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(8327), 1, + sym_identifier, + ACTIONS(8329), 1, + anon_sym_LBRACK, STATE(4649), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [166523] = 9, + STATE(5844), 1, + sym__destructuring_pattern, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + [166601] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(7619), 1, - anon_sym_DOT, - ACTIONS(8298), 1, - anon_sym_COMMA, - ACTIONS(8300), 1, - anon_sym_GT, - STATE(4327), 1, - sym_arguments, + ACTIONS(8331), 1, + sym_identifier, STATE(4650), 1, sym_comment, - STATE(6021), 1, - aux_sym_type_arguments_repeat1, - [166551] = 9, + STATE(4786), 1, + sym_formal_parameters, + STATE(6818), 1, + sym_type_parameters, + STATE(6924), 1, + sym__call_signature, + [166629] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8302), 1, - anon_sym_COMMA, - ACTIONS(8304), 1, - anon_sym_GT, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8333), 1, + anon_sym_RBRACE, STATE(4651), 1, sym_comment, - STATE(6025), 1, - aux_sym_type_arguments_repeat1, - [166579] = 4, + STATE(4733), 1, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [166655] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8335), 1, + sym_identifier, STATE(4652), 1, sym_comment, - ACTIONS(8063), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [166597] = 6, + STATE(4786), 1, + sym_formal_parameters, + STATE(6566), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [166683] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3360), 1, - sym_statement_block, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8337), 1, + anon_sym_RBRACE, STATE(4653), 1, sym_comment, - ACTIONS(8113), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166619] = 9, + STATE(4661), 1, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [166709] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(8306), 1, - anon_sym_QMARK, - STATE(4286), 1, - sym_formal_parameters, - STATE(4628), 1, - sym__call_signature, + ACTIONS(4951), 1, + anon_sym_COMMA, STATE(4654), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [166647] = 6, + STATE(4688), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(8339), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [166731] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3368), 1, - sym_statement_block, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(7874), 1, + anon_sym_DOT, + ACTIONS(8341), 1, + anon_sym_COMMA, + ACTIONS(8343), 1, + anon_sym_GT, + STATE(4314), 1, + sym_arguments, STATE(4655), 1, sym_comment, - ACTIONS(8107), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166669] = 6, + STATE(6272), 1, + aux_sym_type_arguments_repeat1, + [166759] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3369), 1, + STATE(3416), 1, sym_statement_block, STATE(4656), 1, sym_comment, - ACTIONS(8113), 4, + ACTIONS(8186), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166691] = 8, + [166781] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8308), 1, - anon_sym_RBRACE, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(8128), 1, + anon_sym_EQ, STATE(4657), 1, sym_comment, - STATE(4803), 1, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [166717] = 6, + STATE(5558), 1, + sym_type_annotation, + STATE(6980), 1, + sym__initializer, + ACTIONS(8345), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [166807] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8347), 1, + anon_sym_COMMA, + ACTIONS(8349), 1, + anon_sym_GT, STATE(4658), 1, sym_comment, - STATE(4663), 1, - aux_sym_object_type_repeat1, - ACTIONS(8312), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8310), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166739] = 6, + STATE(6276), 1, + aux_sym_type_arguments_repeat1, + [166835] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3390), 1, + sym_statement_block, STATE(4659), 1, sym_comment, - STATE(4673), 1, - aux_sym_object_type_repeat1, - ACTIONS(8316), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8314), 3, + ACTIONS(8184), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166761] = 9, + [166857] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(8318), 1, - anon_sym_QMARK, - STATE(4061), 1, - sym_formal_parameters, - STATE(4517), 1, - sym__call_signature, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8351), 1, + anon_sym_RBRACE, + STATE(4634), 1, + aux_sym_switch_body_repeat1, STATE(4660), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [166789] = 9, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [166883] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(8320), 1, - anon_sym_QMARK, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8353), 1, + anon_sym_RBRACE, STATE(4661), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6933), 1, - sym__call_signature, - [166817] = 6, + STATE(4842), 1, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [166909] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4662), 1, sym_comment, - STATE(4666), 1, + STATE(4676), 1, aux_sym_object_type_repeat1, - ACTIONS(8324), 2, + ACTIONS(8357), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8322), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166839] = 6, + [166931] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3398), 1, + sym_statement_block, STATE(4663), 1, sym_comment, - STATE(4673), 1, - aux_sym_object_type_repeat1, - ACTIONS(8324), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8322), 3, + ACTIONS(8164), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166861] = 8, + [166953] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8143), 1, - anon_sym_DOT, - ACTIONS(8145), 1, - anon_sym_LT, - ACTIONS(8326), 1, - anon_sym_LBRACE, + ACTIONS(8359), 1, + sym_identifier, STATE(4664), 1, sym_comment, - STATE(5647), 1, - sym_type_arguments, - ACTIONS(8328), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [166887] = 4, + ACTIONS(7015), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [166973] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(4108), 1, + anon_sym_DQUOTE, + ACTIONS(4110), 1, + anon_sym_SQUOTE, + ACTIONS(8078), 1, + sym_identifier, + STATE(903), 1, + sym_nested_identifier, + STATE(1052), 1, + sym_string, + STATE(1198), 1, + sym__module, STATE(4665), 1, sym_comment, - ACTIONS(8051), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [166905] = 6, + [167001] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8361), 1, + anon_sym_RBRACE, + STATE(4637), 1, + aux_sym_switch_body_repeat1, STATE(4666), 1, sym_comment, - STATE(4673), 1, - aux_sym_object_type_repeat1, - ACTIONS(8332), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8330), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166927] = 6, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [167027] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4667), 1, + ACTIONS(8365), 1, + anon_sym_AT, + STATE(5640), 1, + sym_decorator, + STATE(4667), 2, sym_comment, - STATE(4673), 1, - aux_sym_object_type_repeat1, - ACTIONS(8336), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8334), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166949] = 4, + aux_sym_export_statement_repeat1, + ACTIONS(8363), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [167049] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(4108), 1, + anon_sym_DQUOTE, + ACTIONS(4110), 1, + anon_sym_SQUOTE, + ACTIONS(8078), 1, + sym_identifier, + STATE(903), 1, + sym_nested_identifier, + STATE(1052), 1, + sym_string, + STATE(1270), 1, + sym__module, STATE(4668), 1, sym_comment, - ACTIONS(8338), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [166967] = 4, + [167077] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4669), 1, sym_comment, - ACTIONS(2111), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [166985] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8340), 1, - anon_sym_export, - ACTIONS(8342), 1, - anon_sym_class, - ACTIONS(8344), 1, - anon_sym_abstract, - STATE(4670), 1, - sym_comment, - STATE(4706), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, - [167013] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4659), 1, + STATE(4776), 1, aux_sym_object_type_repeat1, - STATE(4671), 1, - sym_comment, - ACTIONS(8336), 2, + ACTIONS(8370), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8334), 3, + ACTIONS(8368), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167035] = 9, + [167099] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(8346), 1, + ACTIONS(8372), 1, anon_sym_QMARK, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4501), 1, - sym__call_signature, - STATE(4672), 1, + STATE(4670), 1, sym_comment, - STATE(6986), 1, + STATE(5345), 1, + sym__call_signature, + STATE(6730), 1, sym_type_parameters, - [167063] = 5, + [167127] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8351), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4673), 2, + STATE(4671), 1, sym_comment, + STATE(4683), 1, aux_sym_object_type_repeat1, - ACTIONS(8348), 3, + ACTIONS(8376), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167083] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [167149] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4091), 1, - anon_sym_DQUOTE, - ACTIONS(4093), 1, - anon_sym_SQUOTE, - ACTIONS(8023), 1, - sym_identifier, - STATE(921), 1, - sym_nested_identifier, - STATE(1139), 1, - sym_string, - STATE(1311), 1, - sym__module, - STATE(4674), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3399), 1, + sym_statement_block, + STATE(4672), 1, sym_comment, - [167111] = 6, + ACTIONS(8162), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167171] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5001), 1, - anon_sym_COMMA, - STATE(4675), 1, - sym_comment, - STATE(4687), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(8353), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(8378), 1, anon_sym_COLON, - anon_sym_RBRACK, - [167133] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4091), 1, - anon_sym_DQUOTE, - ACTIONS(4093), 1, - anon_sym_SQUOTE, - ACTIONS(8023), 1, - sym_identifier, - STATE(921), 1, - sym_nested_identifier, - STATE(1139), 1, - sym_string, - STATE(1358), 1, - sym__module, - STATE(4676), 1, + STATE(4673), 1, sym_comment, - [167161] = 9, + ACTIONS(7518), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6751), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [167193] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(8355), 1, + ACTIONS(8380), 1, anon_sym_QMARK, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4677), 1, + STATE(4674), 1, sym_comment, - STATE(4899), 1, + STATE(5084), 1, sym__call_signature, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - [167189] = 6, + [167221] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, - STATE(4678), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8382), 1, + anon_sym_LBRACE, + ACTIONS(8384), 1, + anon_sym_COMMA, + STATE(4675), 1, sym_comment, - ACTIONS(8359), 2, + STATE(5707), 1, + aux_sym_implements_clause_repeat1, + [167249] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4676), 1, + sym_comment, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8376), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8357), 3, + ACTIONS(8374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167211] = 8, + [167271] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8361), 1, - anon_sym_RBRACE, - STATE(4679), 1, + ACTIONS(7938), 1, + anon_sym_GT, + ACTIONS(8386), 1, + sym_identifier, + ACTIONS(8388), 1, + sym_jsx_identifier, + ACTIONS(8390), 1, + anon_sym_SLASH_GT, + STATE(3968), 1, + sym_nested_identifier, + STATE(4081), 1, + sym_jsx_namespace_name, + STATE(4677), 1, sym_comment, - STATE(4692), 1, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [167237] = 8, + [167299] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8363), 1, - anon_sym_RBRACE, - STATE(4680), 1, + STATE(4678), 1, sym_comment, - STATE(4808), 1, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [167263] = 5, + ACTIONS(8392), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [167317] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8365), 1, - sym_identifier, - STATE(4681), 1, + STATE(4679), 1, sym_comment, - ACTIONS(7004), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(8394), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - anon_sym_BQUOTE, - [167283] = 6, + [167335] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3364), 1, - sym_statement_block, - STATE(4682), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(8396), 1, + anon_sym_QMARK, + STATE(4127), 1, + sym_formal_parameters, + STATE(4680), 1, sym_comment, - ACTIONS(8091), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167305] = 8, + STATE(4716), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [167363] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8367), 1, - anon_sym_catch, - ACTIONS(8369), 1, - anon_sym_finally, - STATE(4683), 1, + STATE(4681), 1, sym_comment, - STATE(5419), 1, - sym_catch_clause, - STATE(6842), 1, - sym_finally_clause, - ACTIONS(3036), 2, + ACTIONS(2248), 6, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_else, anon_sym_while, - [167331] = 4, + anon_sym_catch, + anon_sym_finally, + [167381] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4684), 1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3379), 1, + sym_statement_block, + STATE(4682), 1, sym_comment, - ACTIONS(8071), 6, + ACTIONS(8162), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [167349] = 6, + [167403] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4667), 1, - aux_sym_object_type_repeat1, - STATE(4685), 1, + STATE(4683), 1, sym_comment, - ACTIONS(8373), 2, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8400), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8371), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167371] = 9, + [167425] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(8375), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(8402), 1, anon_sym_QMARK, - STATE(4061), 1, + STATE(4684), 1, + sym_comment, + STATE(4786), 1, sym_formal_parameters, - STATE(4567), 1, + STATE(6697), 1, sym__call_signature, - STATE(4686), 1, - sym_comment, - STATE(6986), 1, + STATE(6818), 1, sym_type_parameters, - [167399] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [167453] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8377), 1, - anon_sym_COMMA, - STATE(4687), 2, - sym_comment, - aux_sym_sequence_expression_repeat1, - ACTIONS(5136), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [167419] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8380), 1, - anon_sym_RBRACE, - STATE(4688), 1, + ACTIONS(4126), 1, + anon_sym_DQUOTE, + ACTIONS(4128), 1, + anon_sym_SQUOTE, + ACTIONS(8064), 1, + sym_identifier, + STATE(893), 1, + sym_nested_identifier, + STATE(905), 1, + sym_string, + STATE(1058), 1, + sym__module, + STATE(4685), 1, sym_comment, - STATE(4803), 1, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [167445] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [167481] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(7619), 1, - anon_sym_DOT, - ACTIONS(8382), 1, - anon_sym_COMMA, - ACTIONS(8384), 1, - anon_sym_GT, - STATE(4327), 1, - sym_arguments, - STATE(4689), 1, - sym_comment, - STATE(6268), 1, - aux_sym_type_arguments_repeat1, - [167473] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(8168), 1, - anon_sym_EQ, - STATE(4690), 1, + ACTIONS(4126), 1, + anon_sym_DQUOTE, + ACTIONS(4128), 1, + anon_sym_SQUOTE, + ACTIONS(8064), 1, + sym_identifier, + STATE(893), 1, + sym_nested_identifier, + STATE(905), 1, + sym_string, + STATE(1076), 1, + sym__module, + STATE(4686), 1, sym_comment, - STATE(5604), 1, - sym_type_annotation, - STATE(6824), 1, - sym__initializer, - ACTIONS(8386), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [167499] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [167509] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8388), 1, - anon_sym_COMMA, - ACTIONS(8390), 1, - anon_sym_GT, - STATE(4691), 1, - sym_comment, - STATE(6272), 1, - aux_sym_type_arguments_repeat1, - [167527] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8392), 1, - anon_sym_RBRACE, - STATE(4692), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8404), 1, + sym_identifier, + STATE(4687), 1, sym_comment, - STATE(4803), 1, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [167553] = 6, + STATE(4786), 1, + sym_formal_parameters, + STATE(6818), 1, + sym_type_parameters, + STATE(6924), 1, + sym__call_signature, + [167537] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4693), 1, + ACTIONS(8406), 1, + anon_sym_COMMA, + STATE(4688), 2, sym_comment, - STATE(4701), 1, - aux_sym_object_type_repeat1, - ACTIONS(8396), 2, + aux_sym_sequence_expression_repeat1, + ACTIONS(5080), 4, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167575] = 9, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [167557] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(8398), 1, + ACTIONS(8409), 1, anon_sym_QMARK, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4694), 1, + STATE(4689), 1, sym_comment, - STATE(5924), 1, + STATE(5150), 1, sym__call_signature, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - [167603] = 4, + [167585] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4695), 1, + STATE(4690), 1, sym_comment, - ACTIONS(5583), 6, + ACTIONS(8411), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [167621] = 4, + [167603] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4696), 1, + ACTIONS(8415), 1, + anon_sym_EQ, + STATE(4691), 1, sym_comment, - ACTIONS(5468), 6, + ACTIONS(8413), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [167639] = 4, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [167623] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4697), 1, + ACTIONS(7938), 1, + anon_sym_GT, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, + sym_jsx_identifier, + ACTIONS(8421), 1, + anon_sym_SLASH_GT, + STATE(3962), 1, + sym_nested_identifier, + STATE(4282), 1, + sym_jsx_namespace_name, + STATE(4692), 1, + sym_comment, + [167651] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4693), 1, sym_comment, - ACTIONS(5464), 6, + ACTIONS(8423), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [167657] = 9, + [167669] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8400), 1, + ACTIONS(8425), 1, + anon_sym_BQUOTE, + ACTIONS(8427), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4694), 1, + sym_comment, + STATE(4695), 1, + aux_sym_template_string_repeat1, + STATE(5618), 1, + sym_template_substitution, + ACTIONS(7922), 2, + sym__template_chars, + sym_escape_sequence, + [167695] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8432), 1, + anon_sym_BQUOTE, + ACTIONS(8434), 1, + anon_sym_DOLLAR_LBRACE, + STATE(5618), 1, + sym_template_substitution, + ACTIONS(8429), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4695), 2, + sym_comment, + aux_sym_template_string_repeat1, + [167719] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4696), 1, + sym_comment, + ACTIONS(2288), 6, anon_sym_COMMA, - ACTIONS(8402), 1, - anon_sym_GT, - STATE(4698), 1, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [167737] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8427), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8437), 1, + anon_sym_BQUOTE, + STATE(4695), 1, + aux_sym_template_string_repeat1, + STATE(4697), 1, sym_comment, - STATE(6152), 1, - aux_sym_type_arguments_repeat1, - [167685] = 9, + STATE(5618), 1, + sym_template_substitution, + ACTIONS(7922), 2, + sym__template_chars, + sym_escape_sequence, + [167763] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(7619), 1, + ACTIONS(7874), 1, anon_sym_DOT, - ACTIONS(8404), 1, + ACTIONS(8439), 1, anon_sym_COMMA, - ACTIONS(8406), 1, + ACTIONS(8441), 1, anon_sym_GT, - STATE(4327), 1, + STATE(4314), 1, sym_arguments, + STATE(4698), 1, + sym_comment, + STATE(6256), 1, + aux_sym_type_arguments_repeat1, + [167791] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8443), 1, + anon_sym_COMMA, + ACTIONS(8445), 1, + anon_sym_GT, STATE(4699), 1, sym_comment, - STATE(6158), 1, + STATE(6248), 1, aux_sym_type_arguments_repeat1, - [167713] = 6, + [167819] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4700), 1, sym_comment, - STATE(4704), 1, - aux_sym_object_type_repeat1, - ACTIONS(8410), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8408), 3, + ACTIONS(8249), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [167735] = 6, + anon_sym_COLON, + [167837] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(7874), 1, + anon_sym_DOT, + ACTIONS(8447), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_GT, + STATE(4314), 1, + sym_arguments, STATE(4701), 1, sym_comment, - ACTIONS(8410), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8408), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167757] = 6, + STATE(5750), 1, + aux_sym_type_arguments_repeat1, + [167865] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3416), 1, + STATE(3396), 1, sym_statement_block, STATE(4702), 1, sym_comment, - ACTIONS(8133), 4, + ACTIONS(8164), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167779] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [167887] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4669), 1, + aux_sym_object_type_repeat1, STATE(4703), 1, sym_comment, - ACTIONS(5431), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [167797] = 6, + ACTIONS(8453), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8451), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167909] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, STATE(4704), 1, sym_comment, - ACTIONS(8414), 2, + STATE(4708), 1, + aux_sym_object_type_repeat1, + ACTIONS(8370), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8412), 3, + ACTIONS(8368), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167819] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4705), 1, - sym_comment, - ACTIONS(5427), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [167837] = 6, + [167931] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8418), 1, - anon_sym_AT, - STATE(5608), 1, - sym_decorator, - STATE(4706), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(7874), 1, + anon_sym_DOT, + ACTIONS(8455), 1, + anon_sym_COMMA, + ACTIONS(8457), 1, + anon_sym_GT, + STATE(4314), 1, + sym_arguments, + STATE(4705), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(8416), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [167859] = 9, + STATE(6150), 1, + aux_sym_type_arguments_repeat1, + [167959] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(8421), 1, + ACTIONS(8459), 1, anon_sym_export, - ACTIONS(8423), 1, + ACTIONS(8461), 1, anon_sym_class, - ACTIONS(8425), 1, + ACTIONS(8463), 1, anon_sym_abstract, - STATE(4706), 1, + STATE(4667), 1, aux_sym_export_statement_repeat1, - STATE(4707), 1, + STATE(4706), 1, sym_comment, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - [167887] = 9, + [167987] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(8427), 1, - anon_sym_QMARK, - STATE(4286), 1, - sym_formal_parameters, - STATE(4655), 1, - sym__call_signature, - STATE(4708), 1, + STATE(4707), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [167915] = 6, + ACTIONS(8465), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [168005] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3371), 1, - sym_statement_block, - STATE(4709), 1, + STATE(4708), 1, sym_comment, - ACTIONS(8091), 4, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8469), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8467), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167937] = 9, + [168027] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4117), 1, - anon_sym_DQUOTE, - ACTIONS(4119), 1, - anon_sym_SQUOTE, - ACTIONS(8037), 1, - sym_identifier, - STATE(901), 1, - sym_nested_identifier, - STATE(919), 1, - sym_string, - STATE(1131), 1, - sym__module, - STATE(4710), 1, + STATE(4709), 1, sym_comment, - [167965] = 6, + ACTIONS(8471), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [168045] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3372), 1, + STATE(3407), 1, sym_statement_block, - STATE(4711), 1, + STATE(4710), 1, sym_comment, - ACTIONS(8133), 4, + ACTIONS(8172), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167987] = 9, + [168067] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8429), 1, + ACTIONS(8473), 1, sym_identifier, - STATE(4712), 1, + STATE(4711), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6774), 1, + STATE(6566), 1, sym__call_signature, - [168015] = 4, + STATE(6818), 1, + sym_type_parameters, + [168095] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4713), 1, + STATE(4712), 1, sym_comment, - ACTIONS(7965), 6, + ACTIONS(8072), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DOT, - [168033] = 9, + anon_sym_COLON, + [168113] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4117), 1, + ACTIONS(1901), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, + ACTIONS(1903), 1, anon_sym_SQUOTE, - ACTIONS(8037), 1, + ACTIONS(8030), 1, sym_identifier, - STATE(901), 1, + STATE(4713), 1, + sym_comment, + STATE(4880), 1, sym_nested_identifier, - STATE(919), 1, + STATE(5627), 1, sym_string, - STATE(1047), 1, + STATE(6652), 1, sym__module, + [168141] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(8030), 1, + sym_identifier, STATE(4714), 1, sym_comment, - [168061] = 6, + STATE(4880), 1, + sym_nested_identifier, + STATE(5627), 1, + sym_string, + STATE(6805), 1, + sym__module, + [168169] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, STATE(4715), 1, sym_comment, - ACTIONS(7493), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6908), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [168083] = 4, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8477), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168191] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3362), 1, + sym_statement_block, STATE(4716), 1, sym_comment, - ACTIONS(6271), 6, + ACTIONS(8182), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DOT, - [168101] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168213] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8479), 1, + anon_sym_COMMA, + ACTIONS(8481), 1, + anon_sym_GT, STATE(4717), 1, sym_comment, - ACTIONS(5583), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168119] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5753), 1, + aux_sym_type_arguments_repeat1, + [168241] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8427), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8483), 1, + anon_sym_BQUOTE, + STATE(4694), 1, + aux_sym_template_string_repeat1, STATE(4718), 1, sym_comment, - ACTIONS(5587), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168137] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5618), 1, + sym_template_substitution, + ACTIONS(7922), 2, + sym__template_chars, + sym_escape_sequence, + [168267] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8433), 1, - sym_identifier, - ACTIONS(8435), 1, - anon_sym_LBRACK, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8485), 1, + anon_sym_export, + ACTIONS(8487), 1, + anon_sym_class, + ACTIONS(8489), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(4719), 1, sym_comment, - STATE(6032), 1, - sym__destructuring_pattern, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - [168163] = 8, + STATE(5640), 1, + sym_decorator, + [168295] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8437), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_switch_body_repeat1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3414), 1, + sym_statement_block, STATE(4720), 1, sym_comment, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [168189] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8124), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168317] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(8491), 1, + anon_sym_QMARK, STATE(4721), 1, sym_comment, - ACTIONS(5601), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168207] = 9, + STATE(4786), 1, + sym_formal_parameters, + STATE(6818), 1, + sym_type_parameters, + STATE(6853), 1, + sym__call_signature, + [168345] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(8439), 1, - anon_sym_LBRACE, - ACTIONS(8441), 1, + ACTIONS(8493), 1, anon_sym_COMMA, + ACTIONS(8495), 1, + anon_sym_GT, STATE(4722), 1, sym_comment, - STATE(6030), 1, - aux_sym_implements_clause_repeat1, - [168235] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6136), 1, + aux_sym_type_arguments_repeat1, + [168373] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8443), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(4723), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6774), 1, - sym__call_signature, - [168263] = 9, + STATE(4726), 1, + aux_sym_object_type_repeat1, + ACTIONS(8499), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168395] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(8445), 1, - anon_sym_QMARK, STATE(4724), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6790), 1, - sym__call_signature, - [168291] = 9, + STATE(4727), 1, + aux_sym_object_type_repeat1, + ACTIONS(8503), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8501), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168417] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(8447), 1, - anon_sym_QMARK, - STATE(4061), 1, - sym_formal_parameters, STATE(4725), 1, sym_comment, - STATE(4886), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [168319] = 9, + ACTIONS(8505), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4527), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [168437] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(7619), 1, - anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_COMMA, - ACTIONS(8451), 1, - anon_sym_GT, - STATE(4327), 1, - sym_arguments, STATE(4726), 1, sym_comment, - STATE(6296), 1, - aux_sym_type_arguments_repeat1, - [168347] = 9, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8503), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8501), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168459] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8453), 1, - anon_sym_COMMA, - ACTIONS(8455), 1, - anon_sym_GT, STATE(4727), 1, sym_comment, - STATE(6292), 1, - aux_sym_type_arguments_repeat1, - [168375] = 4, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8509), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8507), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168481] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8511), 1, + sym_identifier, STATE(4728), 1, sym_comment, - ACTIONS(5583), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168393] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4786), 1, + sym_formal_parameters, + STATE(6818), 1, + sym_type_parameters, + STATE(6924), 1, + sym__call_signature, + [168509] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7935), 1, - anon_sym_GT, - ACTIONS(8457), 1, - sym_identifier, - ACTIONS(8459), 1, - sym_jsx_identifier, - ACTIONS(8461), 1, - anon_sym_SLASH_GT, - STATE(3946), 1, - sym_nested_identifier, - STATE(4122), 1, - sym_jsx_namespace_name, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8513), 1, + anon_sym_RBRACE, STATE(4729), 1, sym_comment, - [168421] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4781), 1, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [168535] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(4730), 1, sym_comment, - ACTIONS(8463), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168439] = 6, + STATE(4736), 1, + aux_sym_object_type_repeat1, + ACTIONS(8517), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8515), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168557] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + STATE(4715), 1, + aux_sym_object_type_repeat1, STATE(4731), 1, sym_comment, - STATE(4745), 1, - aux_sym_object_type_repeat1, - ACTIONS(8467), 2, + ACTIONS(8521), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8465), 3, + ACTIONS(8519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168461] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168579] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(8523), 1, + anon_sym_QMARK, + STATE(4041), 1, + sym_formal_parameters, STATE(4732), 1, sym_comment, - ACTIONS(5613), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168479] = 6, + STATE(6280), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + [168607] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3362), 1, - sym_statement_block, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8525), 1, + anon_sym_RBRACE, STATE(4733), 1, sym_comment, - ACTIONS(8075), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168501] = 5, + STATE(4842), 1, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [168633] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8471), 1, - anon_sym_EQ, - STATE(4734), 1, - sym_comment, - ACTIONS(8469), 5, + ACTIONS(3887), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8527), 1, sym_identifier, - [168521] = 5, + STATE(4734), 1, + sym_comment, + STATE(5537), 1, + sym__destructuring_pattern, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + [168659] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8473), 1, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8529), 1, sym_identifier, STATE(4735), 1, sym_comment, - ACTIONS(7004), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [168541] = 6, + STATE(6828), 1, + sym__destructuring_pattern, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + [168685] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3379), 1, - sym_statement_block, STATE(4736), 1, sym_comment, - ACTIONS(8085), 4, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8521), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8519), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168563] = 6, + [168707] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3378), 1, + STATE(3365), 1, sym_statement_block, STATE(4737), 1, sym_comment, - ACTIONS(8087), 4, + ACTIONS(8124), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168585] = 9, + [168729] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7287), 1, anon_sym_LPAREN, - ACTIONS(8475), 1, + ACTIONS(8531), 1, anon_sym_QMARK, - STATE(4061), 1, + STATE(4127), 1, sym_formal_parameters, + STATE(4702), 1, + sym__call_signature, STATE(4738), 1, sym_comment, - STATE(5237), 1, - sym__call_signature, - STATE(6986), 1, + STATE(6621), 1, sym_type_parameters, - [168613] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168757] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7935), 1, - anon_sym_GT, - ACTIONS(8477), 1, - sym_identifier, - ACTIONS(8479), 1, - sym_jsx_identifier, - ACTIONS(8481), 1, - anon_sym_SLASH_GT, - STATE(3936), 1, - sym_nested_identifier, - STATE(4177), 1, - sym_jsx_namespace_name, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3405), 1, + sym_statement_block, STATE(4739), 1, sym_comment, - [168641] = 5, + ACTIONS(8143), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168779] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8483), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8533), 1, sym_identifier, STATE(4740), 1, sym_comment, - ACTIONS(7004), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [168661] = 6, + STATE(4786), 1, + sym_formal_parameters, + STATE(6566), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [168807] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(8535), 1, + anon_sym_QMARK, + STATE(4127), 1, + sym_formal_parameters, STATE(4741), 1, sym_comment, - STATE(4751), 1, - aux_sym_object_type_repeat1, - ACTIONS(8487), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8485), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168683] = 4, + STATE(4839), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [168835] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(4742), 1, sym_comment, - ACTIONS(8489), 6, + ACTIONS(8537), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [168701] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168853] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(8491), 1, - sym_identifier, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(8539), 1, + anon_sym_QMARK, STATE(4743), 1, sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6774), 1, + STATE(6477), 1, sym__call_signature, - [168729] = 8, + STATE(6818), 1, + sym_type_parameters, + [168881] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8493), 1, - anon_sym_BQUOTE, - ACTIONS(8495), 1, - anon_sym_DOLLAR_LBRACE, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3393), 1, + sym_statement_block, STATE(4744), 1, sym_comment, - STATE(4790), 1, - aux_sym_template_string_repeat1, - STATE(5571), 1, - sym_template_substitution, - ACTIONS(7911), 2, - sym__template_chars, - sym_escape_sequence, - [168755] = 6, + ACTIONS(8010), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168903] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, STATE(4745), 1, sym_comment, - ACTIONS(8487), 2, + STATE(4749), 1, + aux_sym_object_type_repeat1, + ACTIONS(8543), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8485), 3, + ACTIONS(8541), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168777] = 5, + [168925] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8497), 1, + ACTIONS(1909), 1, + anon_sym_LT, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8545), 1, sym_identifier, STATE(4746), 1, sym_comment, - ACTIONS(7004), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [168797] = 9, + STATE(4786), 1, + sym_formal_parameters, + STATE(6818), 1, + sym_type_parameters, + STATE(6924), 1, + sym__call_signature, + [168953] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(8499), 1, - anon_sym_QMARK, - STATE(4286), 1, - sym_formal_parameters, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8547), 1, + sym_identifier, STATE(4747), 1, sym_comment, - STATE(4840), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [168825] = 9, + STATE(5691), 1, + sym__destructuring_pattern, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + [168979] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(7619), 1, - anon_sym_DOT, - ACTIONS(8501), 1, - anon_sym_COMMA, - ACTIONS(8503), 1, - anon_sym_GT, - STATE(4327), 1, - sym_arguments, + STATE(4618), 1, + aux_sym_object_type_repeat1, STATE(4748), 1, sym_comment, - STATE(6090), 1, - aux_sym_type_arguments_repeat1, - [168853] = 4, + ACTIONS(8551), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8549), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169001] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4749), 1, sym_comment, - ACTIONS(8505), 6, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8551), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8549), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [168871] = 6, + [169023] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3384), 1, - sym_statement_block, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(8553), 1, + anon_sym_QMARK, + STATE(4127), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, STATE(4750), 1, sym_comment, - ACTIONS(8085), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168893] = 6, + STATE(6621), 1, + sym_type_parameters, + [169051] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, + ACTIONS(8194), 1, + anon_sym_DOT, + ACTIONS(8196), 1, + anon_sym_LT, + ACTIONS(8555), 1, + anon_sym_LBRACE, STATE(4751), 1, sym_comment, - ACTIONS(8509), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8507), 3, - sym__automatic_semicolon, + STATE(5868), 1, + sym_type_arguments, + ACTIONS(8557), 2, anon_sym_COMMA, - anon_sym_SEMI, - [168915] = 9, + anon_sym_LBRACE_PIPE, + [169077] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8511), 1, - anon_sym_COMMA, - ACTIONS(8513), 1, - anon_sym_GT, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3394), 1, + sym_statement_block, STATE(4752), 1, sym_comment, - STATE(6092), 1, - aux_sym_type_arguments_repeat1, - [168943] = 4, + ACTIONS(8172), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169099] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(4753), 1, sym_comment, - ACTIONS(8515), 6, + ACTIONS(5657), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [168961] = 4, + [169117] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3366), 1, + sym_statement_block, + STATE(4754), 1, + sym_comment, + ACTIONS(8143), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169139] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4754), 1, + STATE(4755), 1, sym_comment, - ACTIONS(8517), 6, + ACTIONS(5604), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [168979] = 4, + [169157] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4755), 1, + STATE(4756), 1, sym_comment, - ACTIONS(8519), 6, + ACTIONS(8559), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [168997] = 9, + [169175] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(7619), 1, - anon_sym_DOT, - ACTIONS(8521), 1, - anon_sym_COMMA, - ACTIONS(8523), 1, - anon_sym_GT, - STATE(4327), 1, - sym_arguments, - STATE(4756), 1, - sym_comment, - STATE(6231), 1, - aux_sym_type_arguments_repeat1, - [169025] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8525), 1, - anon_sym_COMMA, - ACTIONS(8527), 1, - anon_sym_GT, + ACTIONS(8561), 1, + anon_sym_QMARK, + STATE(4041), 1, + sym_formal_parameters, STATE(4757), 1, sym_comment, - STATE(6227), 1, - aux_sym_type_arguments_repeat1, - [169053] = 6, + STATE(5356), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + [169203] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(8563), 1, + sym_identifier, STATE(4758), 1, sym_comment, - STATE(4760), 1, - aux_sym_object_type_repeat1, - ACTIONS(8531), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8529), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169075] = 6, + ACTIONS(7015), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [169223] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4759), 1, sym_comment, - STATE(4761), 1, + STATE(4776), 1, aux_sym_object_type_repeat1, - ACTIONS(8535), 2, + ACTIONS(8567), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8533), 3, + ACTIONS(8565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169097] = 6, + [169245] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, STATE(4760), 1, sym_comment, - ACTIONS(8535), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8533), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169119] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4673), 1, + STATE(4833), 1, aux_sym_object_type_repeat1, - STATE(4761), 1, - sym_comment, - ACTIONS(8539), 2, + ACTIONS(8571), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8537), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169141] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8541), 1, - anon_sym_DOT, - STATE(4762), 1, - sym_comment, - ACTIONS(7967), 5, + ACTIONS(8569), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [169161] = 4, + [169267] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4763), 1, + STATE(4761), 1, sym_comment, - ACTIONS(5545), 6, + ACTIONS(5454), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [169179] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4764), 1, - sym_comment, - STATE(4766), 1, - aux_sym_object_type_repeat1, - ACTIONS(8545), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8543), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169201] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4765), 1, - sym_comment, - STATE(4769), 1, - aux_sym_object_type_repeat1, - ACTIONS(8549), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8547), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169223] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, - STATE(4766), 1, - sym_comment, - ACTIONS(8549), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8547), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169245] = 4, + [169285] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4767), 1, + STATE(4762), 1, sym_comment, - ACTIONS(8551), 6, + ACTIONS(5450), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [169263] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, - STATE(4768), 1, - sym_comment, - ACTIONS(8555), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8553), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169285] = 6, + [169303] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, - STATE(4769), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_QMARK, + STATE(4763), 1, sym_comment, - ACTIONS(8559), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8557), 3, - sym__automatic_semicolon, + ACTIONS(8573), 2, anon_sym_COMMA, - anon_sym_SEMI, - [169307] = 4, + anon_sym_RBRACK, + [169329] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4770), 1, - sym_comment, - ACTIONS(5687), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(1909), 1, anon_sym_LT, - [169325] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4678), 1, - aux_sym_object_type_repeat1, - STATE(4771), 1, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8577), 1, + sym_identifier, + STATE(4764), 1, sym_comment, - ACTIONS(8555), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8553), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169347] = 9, + STATE(4786), 1, + sym_formal_parameters, + STATE(6566), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [169357] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(4019), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(4021), 1, anon_sym_SQUOTE, - ACTIONS(8055), 1, + ACTIONS(8018), 1, sym_identifier, - STATE(4772), 1, - sym_comment, - STATE(4947), 1, + STATE(1011), 1, sym_nested_identifier, - STATE(5633), 1, + STATE(1260), 1, sym_string, - STATE(6895), 1, + STATE(1544), 1, sym__module, - [169375] = 9, + STATE(4765), 1, + sym_comment, + [169385] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8055), 1, - sym_identifier, - STATE(4773), 1, + STATE(4766), 1, sym_comment, - STATE(4947), 1, - sym_nested_identifier, - STATE(5633), 1, - sym_string, - STATE(6702), 1, - sym__module, + ACTIONS(5544), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, [169403] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8561), 1, - anon_sym_QMARK, - STATE(4061), 1, - sym_formal_parameters, - STATE(4774), 1, + ACTIONS(8579), 1, + sym_identifier, + STATE(4767), 1, sym_comment, - STATE(5323), 1, - sym__call_signature, - STATE(6986), 1, + STATE(4786), 1, + sym_formal_parameters, + STATE(6818), 1, sym_type_parameters, - [169431] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4775), 1, - sym_comment, - STATE(4782), 1, - aux_sym_object_type_repeat1, - ACTIONS(8565), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169453] = 4, + STATE(6924), 1, + sym__call_signature, + [169431] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4776), 1, + STATE(4768), 1, sym_comment, - ACTIONS(8567), 6, + ACTIONS(5548), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [169471] = 6, + [169449] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4777), 1, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8581), 1, + sym_identifier, + STATE(4769), 1, sym_comment, - STATE(4783), 1, - aux_sym_object_type_repeat1, - ACTIONS(8571), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8569), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169493] = 9, + STATE(5840), 1, + sym__destructuring_pattern, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + [169475] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8573), 1, - anon_sym_export, - ACTIONS(8575), 1, - anon_sym_class, - ACTIONS(8577), 1, - anon_sym_abstract, - STATE(4706), 1, - aux_sym_export_statement_repeat1, - STATE(4778), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(7874), 1, + anon_sym_DOT, + ACTIONS(8583), 1, + anon_sym_COMMA, + ACTIONS(8585), 1, + anon_sym_GT, + STATE(4314), 1, + sym_arguments, + STATE(4770), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [169521] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5737), 1, + aux_sym_type_arguments_repeat1, + [169503] = 9, ACTIONS(5), 1, sym_html_comment, - STATE(4779), 1, - sym_comment, - ACTIONS(5697), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169539] = 4, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8587), 1, + anon_sym_COMMA, + ACTIONS(8589), 1, + anon_sym_GT, + STATE(4771), 1, + sym_comment, + STATE(5742), 1, + aux_sym_type_arguments_repeat1, + [169531] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(4780), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8591), 1, + anon_sym_DOT, + STATE(4772), 1, sym_comment, - ACTIONS(5703), 6, + ACTIONS(7950), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169557] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COMMA, + anon_sym_SEMI, + [169551] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8579), 1, - sym_identifier, - STATE(4781), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4773), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6982), 1, - sym__call_signature, - [169585] = 6, + ACTIONS(8593), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [169569] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, - STATE(4782), 1, + STATE(4774), 1, sym_comment, - ACTIONS(8571), 2, + ACTIONS(8595), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(8569), 3, + [169587] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4775), 1, + sym_comment, + ACTIONS(8597), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [169607] = 6, + anon_sym_PIPE_RBRACE, + [169605] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4673), 1, - aux_sym_object_type_repeat1, - STATE(4783), 1, - sym_comment, - ACTIONS(8583), 2, + ACTIONS(8602), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8581), 3, + STATE(4776), 2, + sym_comment, + aux_sym_object_type_repeat1, + ACTIONS(8599), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169629] = 8, + [169625] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8604), 1, + sym_identifier, + STATE(4777), 1, + sym_comment, + STATE(5792), 1, + sym__destructuring_pattern, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + [169651] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8495), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8585), 1, - anon_sym_BQUOTE, - STATE(4744), 1, - aux_sym_template_string_repeat1, - STATE(4784), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(8606), 1, + anon_sym_QMARK, + STATE(4041), 1, + sym_formal_parameters, + STATE(4778), 1, sym_comment, - STATE(5571), 1, - sym_template_substitution, - ACTIONS(7911), 2, - sym__template_chars, - sym_escape_sequence, - [169655] = 8, + STATE(6095), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + [169679] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8495), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_BQUOTE, - STATE(4785), 1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8608), 1, + anon_sym_export, + ACTIONS(8610), 1, + anon_sym_class, + ACTIONS(8612), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, + STATE(4779), 1, sym_comment, - STATE(4790), 1, - aux_sym_template_string_repeat1, - STATE(5571), 1, - sym_template_substitution, - ACTIONS(7911), 2, - sym__template_chars, - sym_escape_sequence, - [169681] = 6, + STATE(5640), 1, + sym_decorator, + [169707] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3375), 1, + STATE(3409), 1, sym_statement_block, - STATE(4786), 1, + STATE(4780), 1, sym_comment, - ACTIONS(8174), 4, + ACTIONS(8116), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169703] = 4, + [169729] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4787), 1, - sym_comment, - ACTIONS(8589), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(8291), 1, + anon_sym_default, + ACTIONS(8295), 1, + anon_sym_case, + ACTIONS(8614), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [169721] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4788), 1, + STATE(4781), 1, sym_comment, - ACTIONS(5617), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169739] = 6, + STATE(4842), 1, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [169755] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3392), 1, + STATE(3389), 1, sym_statement_block, - STATE(4789), 1, + STATE(4782), 1, sym_comment, - ACTIONS(8176), 4, + ACTIONS(8118), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169761] = 7, + [169777] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(4019), 1, + anon_sym_DQUOTE, + ACTIONS(4021), 1, + anon_sym_SQUOTE, + ACTIONS(8018), 1, + sym_identifier, + STATE(1011), 1, + sym_nested_identifier, + STATE(1260), 1, + sym_string, + STATE(1572), 1, + sym__module, + STATE(4783), 1, + sym_comment, + [169805] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8594), 1, - anon_sym_BQUOTE, - ACTIONS(8596), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5571), 1, - sym_template_substitution, - ACTIONS(8591), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4790), 2, + ACTIONS(5), 1, + sym_html_comment, + STATE(4784), 1, sym_comment, - aux_sym_template_string_repeat1, - [169785] = 9, + ACTIONS(7262), 6, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [169823] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_QMARK, - STATE(4061), 1, - sym_formal_parameters, - STATE(4791), 1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8616), 1, + anon_sym_export, + ACTIONS(8618), 1, + anon_sym_class, + ACTIONS(8620), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, + STATE(4785), 1, sym_comment, - STATE(6279), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [169813] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5640), 1, + sym_decorator, + [169851] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4792), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8378), 1, + anon_sym_COLON, + STATE(4786), 1, sym_comment, - ACTIONS(8601), 6, + ACTIONS(7488), 2, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169831] = 4, + anon_sym_EQ_GT, + STATE(6517), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [169873] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4793), 1, + STATE(4787), 1, sym_comment, - ACTIONS(5627), 6, + ACTIONS(8622), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [169849] = 9, + [169891] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8603), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + ACTIONS(8624), 1, anon_sym_QMARK, - STATE(4794), 1, - sym_comment, - STATE(4813), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6657), 1, + STATE(4739), 1, sym__call_signature, - [169877] = 8, + STATE(4788), 1, + sym_comment, + STATE(6621), 1, + sym_type_parameters, + [169919] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8435), 1, - anon_sym_LBRACK, - ACTIONS(8605), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(8056), 1, sym_identifier, - STATE(4795), 1, + STATE(4337), 1, + sym_nested_identifier, + STATE(4431), 1, + sym_string, + STATE(4789), 1, sym_comment, - STATE(5741), 1, - sym__destructuring_pattern, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - [169903] = 5, + STATE(4971), 1, + sym__module, + [169947] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4796), 1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3392), 1, + sym_statement_block, + STATE(4790), 1, sym_comment, - ACTIONS(8607), 2, + ACTIONS(8118), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4520), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [169923] = 4, + anon_sym_SEMI, + [169969] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4797), 1, + STATE(4791), 1, sym_comment, - ACTIONS(8609), 6, + STATE(4824), 1, + aux_sym_object_type_repeat1, + ACTIONS(8628), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8626), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [169941] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8611), 1, - sym_identifier, - STATE(4798), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6982), 1, - sym__call_signature, - [169969] = 4, + [169991] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4799), 1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3391), 1, + sym_statement_block, + STATE(4792), 1, sym_comment, - ACTIONS(8033), 6, + ACTIONS(8116), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [169987] = 9, + [170013] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8613), 1, + ACTIONS(8630), 1, sym_identifier, - STATE(4800), 1, - sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6774), 1, + STATE(4793), 1, + sym_comment, + STATE(6566), 1, sym__call_signature, - [170015] = 9, + STATE(6818), 1, + sym_type_parameters, + [170041] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(8615), 1, - anon_sym_QMARK, - STATE(4286), 1, - sym_formal_parameters, - STATE(4709), 1, - sym__call_signature, - STATE(4801), 1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8632), 1, + anon_sym_export, + ACTIONS(8634), 1, + anon_sym_class, + ACTIONS(8636), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, + STATE(4794), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [170043] = 9, - ACTIONS(3), 1, + STATE(5640), 1, + sym_decorator, + [170069] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + STATE(4795), 1, + sym_comment, + ACTIONS(8638), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [170093] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - ACTIONS(8617), 1, - sym_identifier, - STATE(4802), 1, - sym_comment, - STATE(4813), 1, + ACTIONS(8640), 1, + anon_sym_QMARK, + STATE(4041), 1, sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6982), 1, + STATE(4796), 1, + sym_comment, + STATE(5938), 1, sym__call_signature, - [170071] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + STATE(6730), 1, + sym_type_parameters, + [170121] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8619), 1, - anon_sym_default, - ACTIONS(8622), 1, - anon_sym_RBRACE, - ACTIONS(8624), 1, - anon_sym_case, - STATE(4803), 2, - sym_comment, - aux_sym_switch_body_repeat1, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [170095] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8495), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8627), 1, - anon_sym_BQUOTE, - STATE(4785), 1, - aux_sym_template_string_repeat1, - STATE(4804), 1, + STATE(4797), 1, sym_comment, - STATE(5571), 1, - sym_template_substitution, - ACTIONS(7911), 2, - sym__template_chars, - sym_escape_sequence, - [170121] = 8, + ACTIONS(8622), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170139] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8435), 1, - anon_sym_LBRACK, - ACTIONS(8629), 1, + ACTIONS(1969), 1, + anon_sym_DQUOTE, + ACTIONS(1971), 1, + anon_sym_SQUOTE, + ACTIONS(8056), 1, sym_identifier, - STATE(4805), 1, + STATE(4337), 1, + sym_nested_identifier, + STATE(4431), 1, + sym_string, + STATE(4798), 1, sym_comment, - STATE(5769), 1, - sym__destructuring_pattern, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - [170147] = 9, + STATE(4854), 1, + sym__module, + [170167] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8631), 1, + ACTIONS(8642), 1, sym_identifier, - STATE(4806), 1, - sym_comment, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(6459), 1, + STATE(4799), 1, + sym_comment, + STATE(6818), 1, sym_type_parameters, - STATE(6774), 1, + STATE(6924), 1, sym__call_signature, - [170175] = 9, + [170195] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8633), 1, - sym_identifier, - STATE(4807), 1, + STATE(4800), 1, sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6459), 1, - sym_type_parameters, - STATE(6982), 1, - sym__call_signature, - [170203] = 8, + ACTIONS(8644), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170213] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8248), 1, - anon_sym_default, - ACTIONS(8252), 1, - anon_sym_case, - ACTIONS(8635), 1, - anon_sym_RBRACE, - STATE(4803), 1, - aux_sym_switch_body_repeat1, - STATE(4808), 1, + STATE(4801), 1, sym_comment, - STATE(5984), 2, - sym_switch_case, - sym_switch_default, - [170229] = 8, + ACTIONS(8646), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170231] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8435), 1, - anon_sym_LBRACK, - ACTIONS(8637), 1, - sym_identifier, - STATE(4809), 1, + STATE(4802), 1, sym_comment, - STATE(5600), 1, - sym__destructuring_pattern, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - [170255] = 8, + ACTIONS(8622), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170249] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8435), 1, - anon_sym_LBRACK, - ACTIONS(8639), 1, - sym_identifier, - STATE(4810), 1, + STATE(4803), 1, sym_comment, - STATE(6625), 1, - sym__destructuring_pattern, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - [170281] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(5715), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(8641), 1, - anon_sym_QMARK, - STATE(4811), 1, - sym_comment, - STATE(4813), 1, - sym_formal_parameters, - STATE(6402), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [170309] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [170267] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8643), 1, - anon_sym_export, - ACTIONS(8645), 1, - anon_sym_class, - ACTIONS(8647), 1, - anon_sym_abstract, - STATE(4706), 1, - aux_sym_export_statement_repeat1, - STATE(4812), 1, - sym_comment, - STATE(5608), 1, - sym_decorator, - [170337] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, - STATE(4813), 1, + STATE(4804), 1, sym_comment, - ACTIONS(7519), 2, + ACTIONS(5719), 6, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6677), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [170359] = 9, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170285] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8649), 1, - anon_sym_export, - ACTIONS(8651), 1, - anon_sym_class, - ACTIONS(8653), 1, - anon_sym_abstract, - STATE(4706), 1, - aux_sym_export_statement_repeat1, - STATE(4814), 1, + STATE(4805), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [170387] = 8, + ACTIONS(5715), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170303] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8435), 1, - anon_sym_LBRACK, - ACTIONS(8655), 1, - sym_identifier, - STATE(4815), 1, + STATE(4806), 1, sym_comment, - STATE(5896), 1, - sym__destructuring_pattern, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - [170413] = 9, + ACTIONS(5727), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170321] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8141), 1, + ACTIONS(8192), 1, anon_sym_COMMA, - ACTIONS(8145), 1, + ACTIONS(8196), 1, anon_sym_LT, - ACTIONS(8657), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(8659), 1, + ACTIONS(8650), 1, anon_sym_LBRACE_PIPE, - STATE(4816), 1, + STATE(4807), 1, sym_comment, - STATE(5513), 1, + STATE(5510), 1, aux_sym_extends_type_clause_repeat1, - STATE(5648), 1, + STATE(5866), 1, sym_type_arguments, - [170441] = 9, + [170349] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8661), 1, - sym_identifier, - STATE(4813), 1, - sym_formal_parameters, - STATE(4817), 1, + STATE(4808), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6774), 1, - sym__call_signature, - [170469] = 8, + ACTIONS(5731), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170367] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8435), 1, - anon_sym_LBRACK, - ACTIONS(8663), 1, - sym_identifier, - STATE(4818), 1, + STATE(4809), 1, sym_comment, - STATE(6144), 1, - sym__destructuring_pattern, - STATE(4245), 2, - sym_object_pattern, - sym_array_pattern, - [170495] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5715), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170385] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8665), 1, - sym_identifier, - STATE(4813), 1, - sym_formal_parameters, - STATE(4819), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4810), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6982), 1, - sym__call_signature, - [170523] = 6, + ACTIONS(6287), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [170403] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3385), 1, - sym_statement_block, - STATE(4820), 1, + STATE(4811), 1, sym_comment, - ACTIONS(8218), 4, + ACTIONS(7930), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [170545] = 4, + anon_sym_DOT, + [170421] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(8652), 1, + anon_sym_QMARK, + STATE(4786), 1, + sym_formal_parameters, + STATE(4812), 1, + sym_comment, + STATE(6573), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [170449] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4821), 1, + STATE(4813), 1, sym_comment, - ACTIONS(8667), 6, + ACTIONS(5755), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [170563] = 9, + [170467] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, - anon_sym_DQUOTE, - ACTIONS(4022), 1, - anon_sym_SQUOTE, - ACTIONS(8184), 1, - sym_identifier, - STATE(1071), 1, - sym_nested_identifier, - STATE(1382), 1, - sym_string, - STATE(1546), 1, - sym__module, - STATE(4822), 1, - sym_comment, - [170591] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4020), 1, - anon_sym_DQUOTE, - ACTIONS(4022), 1, - anon_sym_SQUOTE, - ACTIONS(8184), 1, - sym_identifier, - STATE(1071), 1, - sym_nested_identifier, - STATE(1382), 1, - sym_string, - STATE(1569), 1, - sym__module, - STATE(4823), 1, + STATE(4814), 1, sym_comment, - [170619] = 9, + ACTIONS(5759), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170485] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8669), 1, + ACTIONS(8654), 1, anon_sym_QMARK, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4824), 1, + STATE(4815), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6528), 1, + STATE(6557), 1, sym__call_signature, - [170647] = 9, + STATE(6818), 1, + sym_type_parameters, + [170513] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8671), 1, + ACTIONS(8656), 1, sym_identifier, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4825), 1, + STATE(4816), 1, sym_comment, - STATE(6357), 1, + STATE(6696), 1, sym__call_signature, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - [170675] = 9, + [170541] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4817), 1, + sym_comment, + ACTIONS(5792), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170559] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + STATE(4818), 1, + sym_comment, + ACTIONS(5788), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8673), 1, + [170577] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3887), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8658), 1, sym_identifier, - STATE(4813), 1, - sym_formal_parameters, - STATE(4826), 1, + STATE(4819), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6774), 1, - sym__call_signature, - [170703] = 6, + STATE(6040), 1, + sym__destructuring_pattern, + STATE(4148), 2, + sym_object_pattern, + sym_array_pattern, + [170603] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4768), 1, - aux_sym_object_type_repeat1, - STATE(4827), 1, + STATE(4820), 1, sym_comment, - ACTIONS(8677), 2, + STATE(4829), 1, + aux_sym_object_type_repeat1, + ACTIONS(8662), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8675), 3, + ACTIONS(8660), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170725] = 4, + [170625] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4828), 1, + STATE(4821), 1, sym_comment, - ACTIONS(8679), 6, + ACTIONS(8664), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [170743] = 4, + [170643] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4829), 1, + STATE(4822), 1, sym_comment, - ACTIONS(8681), 6, + ACTIONS(8666), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [170761] = 4, - ACTIONS(3), 1, + [170661] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(8668), 1, + anon_sym_QMARK, + STATE(4786), 1, + sym_formal_parameters, + STATE(4823), 1, + sym_comment, + STATE(6397), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [170689] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4830), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4776), 1, + aux_sym_object_type_repeat1, + STATE(4824), 1, sym_comment, - ACTIONS(8683), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [170779] = 4, + ACTIONS(8662), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8660), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170711] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4831), 1, + STATE(4825), 1, sym_comment, - ACTIONS(8679), 6, + ACTIONS(8670), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [170797] = 4, + [170729] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4832), 1, - sym_comment, - ACTIONS(8685), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(1909), 1, anon_sym_LT, - [170815] = 9, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8672), 1, + sym_identifier, + STATE(4786), 1, + sym_formal_parameters, + STATE(4826), 1, + sym_comment, + STATE(6566), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [170757] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(8006), 1, anon_sym_LPAREN, - ACTIONS(8687), 1, - anon_sym_QMARK, - STATE(4061), 1, + ACTIONS(8674), 1, + sym_identifier, + STATE(4786), 1, sym_formal_parameters, - STATE(4833), 1, + STATE(4827), 1, sym_comment, - STATE(5147), 1, + STATE(6491), 1, sym__call_signature, - STATE(6986), 1, + STATE(6818), 1, sym_type_parameters, - [170843] = 7, + [170785] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - STATE(4834), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(8676), 1, + anon_sym_QMARK, + STATE(4786), 1, + sym_formal_parameters, + STATE(4828), 1, sym_comment, - ACTIONS(8689), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [170867] = 6, + STATE(6412), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [170813] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3370), 1, - sym_statement_block, - STATE(4835), 1, + STATE(4776), 1, + aux_sym_object_type_repeat1, + STATE(4829), 1, sym_comment, - ACTIONS(8079), 4, + ACTIONS(8680), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8678), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170889] = 9, + [170835] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(1909), 1, anon_sym_LT, - ACTIONS(8691), 1, - anon_sym_QMARK, - STATE(4813), 1, + ACTIONS(8006), 1, + anon_sym_LPAREN, + ACTIONS(8682), 1, + sym_identifier, + STATE(4786), 1, sym_formal_parameters, - STATE(4836), 1, + STATE(4830), 1, sym_comment, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - STATE(6922), 1, + STATE(6924), 1, sym__call_signature, - [170917] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [170863] = 9, ACTIONS(5), 1, sym_html_comment, - STATE(4837), 1, - sym_comment, - ACTIONS(8679), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, anon_sym_LT, - [170935] = 9, + ACTIONS(8684), 1, + anon_sym_QMARK, + STATE(4786), 1, + sym_formal_parameters, + STATE(4831), 1, + sym_comment, + STATE(6475), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [170891] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8693), 1, + ACTIONS(8686), 1, anon_sym_QMARK, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4838), 1, + STATE(4832), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6866), 1, + STATE(6505), 1, sym__call_signature, - [170963] = 8, + STATE(6818), 1, + sym_type_parameters, + [170919] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8697), 1, - anon_sym_QMARK, - STATE(4839), 1, + STATE(4776), 1, + aux_sym_object_type_repeat1, + STATE(4833), 1, sym_comment, - ACTIONS(8695), 2, + ACTIONS(8690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8688), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [170989] = 6, + anon_sym_SEMI, + [170941] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3366), 1, - sym_statement_block, - STATE(4840), 1, + ACTIONS(8427), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8692), 1, + anon_sym_BQUOTE, + STATE(4697), 1, + aux_sym_template_string_repeat1, + STATE(4834), 1, + sym_comment, + STATE(5618), 1, + sym_template_substitution, + ACTIONS(7922), 2, + sym__template_chars, + sym_escape_sequence, + [170967] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(4759), 1, + aux_sym_object_type_repeat1, + STATE(4835), 1, sym_comment, - ACTIONS(8077), 4, + ACTIONS(8690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8688), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171011] = 9, + [170989] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8699), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + ACTIONS(8694), 1, anon_sym_QMARK, - STATE(4813), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4841), 1, + STATE(4836), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6907), 1, + STATE(5232), 1, sym__call_signature, - [171039] = 9, + STATE(6730), 1, + sym_type_parameters, + [171017] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(8701), 1, + ACTIONS(8696), 1, anon_sym_QMARK, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(4842), 1, + STATE(4837), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6623), 1, + STATE(6509), 1, sym__call_signature, - [171067] = 9, + STATE(6818), 1, + sym_type_parameters, + [171045] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(8698), 1, + sym_identifier, + STATE(4838), 1, + sym_comment, + ACTIONS(7015), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [171065] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3384), 1, + sym_statement_block, + STATE(4839), 1, + sym_comment, + ACTIONS(8086), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171087] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8700), 1, + sym_identifier, + STATE(4840), 1, + sym_comment, + ACTIONS(7015), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [171107] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7287), 1, anon_sym_LPAREN, - ACTIONS(8703), 1, + ACTIONS(8702), 1, anon_sym_QMARK, - STATE(4286), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(4616), 1, + STATE(4790), 1, sym__call_signature, - STATE(4843), 1, + STATE(4841), 1, sym_comment, - STATE(6561), 1, + STATE(6621), 1, sym_type_parameters, - [171095] = 9, + [171135] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8704), 1, + anon_sym_default, + ACTIONS(8707), 1, + anon_sym_RBRACE, + ACTIONS(8709), 1, + anon_sym_case, + STATE(4842), 2, + sym_comment, + aux_sym_switch_body_repeat1, + STATE(5667), 2, + sym_switch_case, + sym_switch_default, + [171159] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8069), 1, - anon_sym_LPAREN, - ACTIONS(8705), 1, + ACTIONS(8712), 1, sym_identifier, - STATE(4813), 1, - sym_formal_parameters, - STATE(4844), 1, + STATE(4843), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6568), 1, - sym__call_signature, - [171123] = 4, + ACTIONS(7015), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [171179] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4845), 1, - sym_comment, - ACTIONS(7253), 6, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(8714), 1, sym_identifier, - [171141] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(4846), 1, + STATE(4844), 1, sym_comment, - STATE(5848), 1, - sym__initializer, - ACTIONS(8707), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171162] = 6, + ACTIONS(7015), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [171199] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(4847), 1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3388), 1, + sym_statement_block, + STATE(4845), 1, sym_comment, - STATE(6132), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8090), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171183] = 8, + [171221] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + ACTIONS(8716), 1, + anon_sym_QMARK, + STATE(4786), 1, sym_formal_parameters, - STATE(4848), 1, + STATE(4846), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6918), 1, + STATE(6711), 1, sym__call_signature, - [171208] = 6, + STATE(6818), 1, + sym_type_parameters, + [171249] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3372), 1, + sym_statement_block, + STATE(4847), 1, + sym_comment, + ACTIONS(8086), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171271] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4849), 1, + STATE(4848), 1, sym_comment, - STATE(5819), 1, + STATE(6221), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171229] = 6, + [171292] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(8378), 1, + anon_sym_COLON, + ACTIONS(8720), 1, + anon_sym_EQ_GT, + STATE(4849), 1, + sym_comment, + STATE(6751), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [171313] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(4850), 1, sym_comment, - STATE(5831), 1, + STATE(6127), 1, sym__initializer, - ACTIONS(8713), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171250] = 8, + [171334] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(8725), 1, + anon_sym_BQUOTE, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, STATE(4851), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6906), 1, - sym__call_signature, - [171275] = 8, + STATE(4986), 1, + aux_sym_template_literal_type_repeat1, + STATE(5689), 1, + sym_template_type, + [171359] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(8651), 1, - anon_sym_class, - ACTIONS(8653), 1, + ACTIONS(8463), 1, anon_sym_abstract, - STATE(4706), 1, + ACTIONS(8731), 1, + anon_sym_class, + STATE(4667), 1, aux_sym_export_statement_repeat1, STATE(4852), 1, sym_comment, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - [171300] = 4, + [171384] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4853), 1, sym_comment, - ACTIONS(8091), 5, + STATE(6124), 1, + sym__initializer, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171317] = 8, + [171405] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8715), 1, - anon_sym_BQUOTE, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, STATE(4854), 1, sym_comment, - STATE(5087), 1, - aux_sym_template_literal_type_repeat1, - STATE(6024), 1, - sym_template_type, - [171342] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4855), 1, - sym_comment, - ACTIONS(8721), 5, + ACTIONS(2176), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171359] = 8, + [171422] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, - STATE(4856), 1, + ACTIONS(8733), 1, + anon_sym_LBRACE, + ACTIONS(8735), 1, + anon_sym_SEMI, + ACTIONS(8737), 1, + sym__automatic_semicolon, + ACTIONS(8739), 1, + sym__function_signature_automatic_semicolon, + STATE(408), 1, + sym_statement_block, + STATE(4855), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6864), 1, - sym__call_signature, - [171384] = 6, + [171447] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4857), 1, + STATE(4856), 1, sym_comment, - STATE(5840), 1, + STATE(6125), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171405] = 6, + [171468] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8489), 1, + anon_sym_abstract, + ACTIONS(8741), 1, + anon_sym_class, + STATE(4667), 1, + aux_sym_export_statement_repeat1, + STATE(4857), 1, + sym_comment, + STATE(5640), 1, + sym_decorator, + [171493] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8082), 1, + anon_sym_LBRACE, + ACTIONS(8084), 1, + anon_sym_LBRACE_PIPE, + STATE(1327), 1, + sym_object_type, STATE(4858), 1, sym_comment, - STATE(5844), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171426] = 8, + STATE(5730), 1, + sym_extends_type_clause, + [171518] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4859), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6797), 1, - sym__call_signature, - [171451] = 8, + STATE(6138), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171539] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8620), 1, + anon_sym_abstract, + ACTIONS(8743), 1, + anon_sym_class, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(4860), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6792), 1, - sym__call_signature, - [171476] = 8, + STATE(5640), 1, + sym_decorator, + [171564] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4861), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6787), 1, - sym__call_signature, - [171501] = 8, + ACTIONS(2210), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171581] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_LBRACE, - ACTIONS(8725), 1, - anon_sym_SEMI, - ACTIONS(8727), 1, - sym__automatic_semicolon, - ACTIONS(8729), 1, - sym__function_signature_automatic_semicolon, - STATE(436), 1, - sym_statement_block, + ACTIONS(5410), 1, + anon_sym_in, STATE(4862), 1, sym_comment, - [171526] = 8, + ACTIONS(6355), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [171600] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8745), 1, + anon_sym_class, + ACTIONS(8747), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(4863), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6743), 1, - sym__call_signature, - [171551] = 4, + STATE(5640), 1, + sym_decorator, + [171625] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4864), 1, sym_comment, - ACTIONS(8133), 5, + STATE(6123), 1, + sym__initializer, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171568] = 4, + [171646] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4865), 1, sym_comment, - ACTIONS(8731), 5, + STATE(6116), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171585] = 6, + [171667] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4866), 1, sym_comment, - STATE(5851), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171606] = 6, + ACTIONS(2158), 5, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_GT, + anon_sym_DOT, + [171684] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4867), 1, sym_comment, - STATE(5895), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171627] = 6, + ACTIONS(2122), 5, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_GT, + anon_sym_DOT, + [171701] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4868), 1, sym_comment, - STATE(5845), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171648] = 7, + ACTIONS(8751), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [171718] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, STATE(4869), 1, sym_comment, - ACTIONS(8735), 2, + ACTIONS(3437), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [171671] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171735] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2158), 1, + anon_sym_DOT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(5148), 1, + anon_sym_LBRACE, STATE(4870), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6637), 1, - sym__call_signature, - [171696] = 8, + ACTIONS(5150), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [171756] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(5148), 1, + anon_sym_LBRACE, STATE(4871), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6632), 1, - sym__call_signature, - [171721] = 8, + ACTIONS(5150), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [171777] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(4733), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4872), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [171746] = 8, + STATE(6140), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171798] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4873), 1, sym_comment, - STATE(6457), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [171771] = 8, + STATE(6092), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171819] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4874), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6620), 1, - sym__call_signature, - [171796] = 8, + ACTIONS(3441), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171836] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8737), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - ACTIONS(8739), 1, - anon_sym_SEMI, - ACTIONS(8741), 1, - sym__automatic_semicolon, - ACTIONS(8743), 1, - sym__function_signature_automatic_semicolon, - STATE(387), 1, - sym_statement_block, + ACTIONS(8753), 1, + anon_sym_DOT, STATE(4875), 1, sym_comment, - [171821] = 4, + STATE(6734), 1, + sym_statement_block, + ACTIONS(2074), 2, + anon_sym_else, + anon_sym_while, + [171859] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4876), 1, sym_comment, - ACTIONS(8745), 5, + ACTIONS(3379), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171838] = 4, + [171876] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4877), 1, sym_comment, - ACTIONS(8747), 5, + ACTIONS(3493), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171855] = 8, + [171893] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(8749), 1, - anon_sym_BQUOTE, + ACTIONS(8735), 1, + anon_sym_SEMI, + ACTIONS(8737), 1, + sym__automatic_semicolon, + ACTIONS(8739), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8755), 1, + anon_sym_LBRACE, + STATE(1023), 1, + sym_statement_block, STATE(4878), 1, sym_comment, - STATE(4984), 1, - aux_sym_template_literal_type_repeat1, - STATE(6024), 1, - sym_template_type, - [171880] = 8, + [171918] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4879), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6615), 1, - sym__call_signature, - [171905] = 8, + STATE(6146), 1, + sym__initializer, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171939] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, + ACTIONS(8008), 1, + anon_sym_LBRACE, + ACTIONS(8757), 1, + anon_sym_DOT, STATE(4880), 1, sym_comment, - STATE(5344), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [171930] = 4, + STATE(6734), 1, + sym_statement_block, + ACTIONS(2074), 2, + anon_sym_else, + anon_sym_while, + [171962] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4881), 1, sym_comment, - ACTIONS(8751), 5, + ACTIONS(3579), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171947] = 4, + [171979] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4882), 1, sym_comment, - ACTIONS(8089), 5, + ACTIONS(3501), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171964] = 4, + [171996] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4883), 1, sym_comment, - ACTIONS(8753), 5, + ACTIONS(3505), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171981] = 4, + [172013] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4884), 1, sym_comment, - ACTIONS(8093), 5, + ACTIONS(3507), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171998] = 6, + [172030] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4885), 1, sym_comment, - STATE(5815), 1, - sym__initializer, - ACTIONS(8711), 3, + ACTIONS(3509), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172019] = 4, + anon_sym_PIPE_RBRACE, + [172047] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4886), 1, sym_comment, - ACTIONS(8089), 5, + ACTIONS(3511), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172036] = 8, + [172064] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, STATE(4887), 1, sym_comment, - STATE(5137), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [172061] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4888), 1, - sym_comment, - ACTIONS(8093), 5, + ACTIONS(2376), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172078] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, - STATE(4889), 1, - sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6923), 1, - sym__call_signature, - [172103] = 6, + [172081] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(4890), 1, + STATE(4888), 1, sym_comment, - STATE(5814), 1, - sym__initializer, - ACTIONS(8711), 3, + ACTIONS(3515), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172124] = 4, + anon_sym_PIPE_RBRACE, + [172098] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(4891), 1, + STATE(4889), 1, sym_comment, - ACTIONS(8755), 5, + ACTIONS(3517), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172141] = 7, + [172115] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(4890), 1, + sym_comment, + ACTIONS(5124), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172132] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4891), 1, + sym_comment, + ACTIONS(5116), 5, anon_sym_LBRACE, - ACTIONS(8757), 1, - anon_sym_DOT, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172149] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, STATE(4892), 1, sym_comment, - STATE(6349), 1, - sym_statement_block, - ACTIONS(2071), 2, - anon_sym_else, - anon_sym_while, - [172164] = 4, + ACTIONS(5100), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172166] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4893), 1, sym_comment, - ACTIONS(2229), 5, + ACTIONS(3525), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172181] = 6, + [172183] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4894), 1, sym_comment, - STATE(5969), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3529), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172202] = 4, + anon_sym_PIPE_RBRACE, + [172200] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4895), 1, sym_comment, - ACTIONS(8761), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [172219] = 4, + ACTIONS(3531), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172217] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4896), 1, sym_comment, - ACTIONS(5862), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [172236] = 6, + ACTIONS(3533), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172234] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4897), 1, sym_comment, - STATE(5852), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3535), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172257] = 8, + anon_sym_PIPE_RBRACE, + [172251] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4898), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6574), 1, - sym__call_signature, - [172282] = 4, + ACTIONS(3537), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172268] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4899), 1, sym_comment, - ACTIONS(8091), 5, + ACTIONS(3539), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172299] = 8, + [172285] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, STATE(4900), 1, sym_comment, - STATE(5306), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [172324] = 4, + ACTIONS(3549), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172302] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4901), 1, sym_comment, - ACTIONS(8763), 5, + ACTIONS(2412), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172341] = 6, + [172319] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4902), 1, sym_comment, - STATE(5856), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(2408), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172362] = 8, + anon_sym_PIPE_RBRACE, + [172336] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(7997), 1, - anon_sym_LBRACE_PIPE, - STATE(1399), 1, - sym_object_type, STATE(4903), 1, sym_comment, - STATE(5726), 1, - sym_extends_type_clause, - [172387] = 6, + ACTIONS(2348), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172353] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4904), 1, sym_comment, - STATE(5862), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3555), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172408] = 8, + anon_sym_PIPE_RBRACE, + [172370] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, STATE(4905), 1, sym_comment, - STATE(5185), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [172433] = 8, + ACTIONS(3563), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172387] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4906), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6531), 1, - sym__call_signature, - [172458] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(4907), 1, - sym_comment, - STATE(5864), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3563), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172479] = 6, + anon_sym_PIPE_RBRACE, + [172404] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(4907), 1, + sym_comment, + ACTIONS(5053), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172421] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, STATE(4908), 1, sym_comment, - STATE(5813), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172500] = 6, + ACTIONS(5049), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172438] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4909), 1, sym_comment, - STATE(5865), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172521] = 4, + ACTIONS(5049), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172455] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4910), 1, sym_comment, - ACTIONS(8133), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172538] = 6, + ACTIONS(5061), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172472] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4911), 1, sym_comment, - STATE(5879), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172559] = 8, + ACTIONS(5061), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172489] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4912), 1, sym_comment, - STATE(6450), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [172584] = 4, + ACTIONS(3567), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172506] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4913), 1, sym_comment, - ACTIONS(8765), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [172601] = 5, + ACTIONS(3569), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172523] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5396), 1, - anon_sym_in, STATE(4914), 1, sym_comment, - ACTIONS(6344), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [172620] = 6, + ACTIONS(3571), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172540] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4915), 1, sym_comment, - STATE(6327), 1, - sym__initializer, - ACTIONS(8767), 3, + ACTIONS(3573), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172641] = 8, + anon_sym_PIPE_RBRACE, + [172557] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8342), 1, - anon_sym_class, - ACTIONS(8344), 1, - anon_sym_abstract, - STATE(4706), 1, - aux_sym_export_statement_repeat1, STATE(4916), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [172666] = 8, + ACTIONS(3575), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172574] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4917), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6500), 1, - sym__call_signature, - [172691] = 6, + ACTIONS(5788), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172591] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4918), 1, sym_comment, - STATE(5888), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172712] = 8, + ACTIONS(5792), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172608] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, STATE(4919), 1, sym_comment, - STATE(5271), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [172737] = 6, + ACTIONS(3577), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172625] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4920), 1, sym_comment, - STATE(5890), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3579), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172758] = 8, + anon_sym_PIPE_RBRACE, + [172642] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8645), 1, - anon_sym_class, - ACTIONS(8647), 1, - anon_sym_abstract, - STATE(4706), 1, - aux_sym_export_statement_repeat1, STATE(4921), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [172783] = 6, + ACTIONS(3579), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172659] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4922), 1, sym_comment, - STATE(6330), 1, - sym__initializer, - ACTIONS(8767), 3, + ACTIONS(3551), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172804] = 8, + anon_sym_PIPE_RBRACE, + [172676] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8168), 1, - anon_sym_EQ, - ACTIONS(8769), 1, - anon_sym_COMMA, - ACTIONS(8771), 1, - anon_sym_RBRACE, STATE(4923), 1, sym_comment, - STATE(6274), 1, - aux_sym_enum_body_repeat1, - STATE(6465), 1, - sym__initializer, - [172829] = 8, + ACTIONS(3593), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172693] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8653), 1, - anon_sym_abstract, - ACTIONS(8773), 1, - anon_sym_class, - STATE(4706), 1, - aux_sym_export_statement_repeat1, STATE(4924), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [172854] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3559), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172710] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8775), 1, - sym_identifier, - ACTIONS(8777), 1, - anon_sym_GT, - ACTIONS(8779), 1, - sym_jsx_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(4925), 1, sym_comment, - STATE(6536), 1, - sym_nested_identifier, - STATE(7322), 1, - sym_jsx_namespace_name, - [172879] = 6, + ACTIONS(2352), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172727] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, STATE(4926), 1, sym_comment, - STATE(6525), 1, - sym_type_annotation, - ACTIONS(4257), 3, - anon_sym_EQ, + ACTIONS(2430), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [172900] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172744] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4927), 1, sym_comment, - STATE(5905), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(2426), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172921] = 6, + anon_sym_PIPE_RBRACE, + [172761] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, - ACTIONS(8781), 1, - anon_sym_EQ_GT, STATE(4928), 1, sym_comment, - STATE(6677), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [172942] = 6, + ACTIONS(3553), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172778] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4929), 1, sym_comment, - STATE(5907), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3413), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172963] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [172795] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(4930), 1, sym_comment, - ACTIONS(8784), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [172980] = 6, + ACTIONS(3551), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172812] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4931), 1, sym_comment, - STATE(5911), 1, - sym__initializer, - ACTIONS(8733), 3, + ACTIONS(3541), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173001] = 6, + anon_sym_PIPE_RBRACE, + [172829] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, - ACTIONS(8786), 1, - anon_sym_EQ_GT, STATE(4932), 1, sym_comment, - STATE(6908), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [173022] = 6, + ACTIONS(5759), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172846] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4933), 1, sym_comment, - STATE(5812), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173043] = 4, + ACTIONS(5755), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172863] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4934), 1, sym_comment, - ACTIONS(2225), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173060] = 6, + ACTIONS(5241), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172880] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4935), 1, sym_comment, - STATE(5918), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173081] = 4, + ACTIONS(5245), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172897] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4936), 1, sym_comment, - ACTIONS(6079), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [173098] = 8, + ACTIONS(5253), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172914] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8577), 1, - anon_sym_abstract, - ACTIONS(8789), 1, - anon_sym_class, - STATE(4706), 1, - aux_sym_export_statement_repeat1, STATE(4937), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [173123] = 6, + ACTIONS(3491), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172931] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4938), 1, sym_comment, - STATE(6182), 1, - sym__initializer, - ACTIONS(8791), 3, + ACTIONS(3489), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173144] = 8, + anon_sym_PIPE_RBRACE, + [172948] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, STATE(4939), 1, sym_comment, - STATE(5207), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [173169] = 6, + ACTIONS(3487), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172965] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4940), 1, sym_comment, - STATE(5931), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3485), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173190] = 6, + anon_sym_PIPE_RBRACE, + [172982] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4941), 1, sym_comment, - STATE(6331), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173211] = 6, + ACTIONS(5715), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172999] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4942), 1, sym_comment, - STATE(5932), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173232] = 4, + ACTIONS(5731), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173016] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4943), 1, sym_comment, - ACTIONS(6516), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [173249] = 6, + ACTIONS(5727), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173033] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4944), 1, sym_comment, - STATE(5933), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173270] = 8, + ACTIONS(5715), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173050] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8795), 1, - sym_identifier, STATE(4945), 1, sym_comment, - STATE(5427), 1, - sym_string, - STATE(6437), 1, - sym__module_export_name, - [173295] = 4, + ACTIONS(5719), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173067] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4946), 1, sym_comment, - ACTIONS(6516), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [173312] = 7, + ACTIONS(5715), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173084] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - ACTIONS(8797), 1, - anon_sym_DOT, STATE(4947), 1, sym_comment, - STATE(6349), 1, - sym_statement_block, - ACTIONS(2071), 2, - anon_sym_else, - anon_sym_while, - [173335] = 4, + ACTIONS(3477), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173101] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4948), 1, sym_comment, - ACTIONS(3486), 5, + ACTIONS(3477), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173352] = 8, + [173118] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4949), 1, sym_comment, - STATE(6415), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [173377] = 4, + ACTIONS(3477), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173135] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4950), 1, sym_comment, - ACTIONS(6516), 5, - anon_sym_EQ, + ACTIONS(3445), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [173394] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173152] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4951), 1, sym_comment, - STATE(5938), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3415), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173415] = 8, + anon_sym_PIPE_RBRACE, + [173169] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, - anon_sym_SEMI, - ACTIONS(8727), 1, - sym__automatic_semicolon, - ACTIONS(8729), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8799), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_statement_block, STATE(4952), 1, sym_comment, - [173440] = 6, + ACTIONS(3415), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173186] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4953), 1, sym_comment, - STATE(5945), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3415), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173461] = 6, + anon_sym_PIPE_RBRACE, + [173203] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4954), 1, sym_comment, - STATE(5752), 1, - sym__initializer, - ACTIONS(8711), 3, + ACTIONS(3415), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173482] = 7, + anon_sym_PIPE_RBRACE, + [173220] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, STATE(4955), 1, sym_comment, - ACTIONS(8801), 2, + ACTIONS(2336), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173505] = 6, + anon_sym_PIPE_RBRACE, + [173237] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4956), 1, sym_comment, - STATE(5947), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3419), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173526] = 8, + anon_sym_PIPE_RBRACE, + [173254] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8739), 1, - anon_sym_SEMI, - ACTIONS(8741), 1, - sym__automatic_semicolon, - ACTIONS(8743), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8805), 1, - anon_sym_LBRACE, - STATE(1020), 1, - sym_statement_block, STATE(4957), 1, sym_comment, - [173551] = 7, + ACTIONS(3417), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173271] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, STATE(4958), 1, sym_comment, - ACTIONS(8807), 2, + ACTIONS(3415), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173574] = 8, + anon_sym_PIPE_RBRACE, + [173288] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8809), 1, - anon_sym_class, - ACTIONS(8811), 1, - anon_sym_abstract, - STATE(4706), 1, - aux_sym_export_statement_repeat1, STATE(4959), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [173599] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(4960), 1, - sym_comment, - STATE(5948), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(3415), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173620] = 8, + anon_sym_PIPE_RBRACE, + [173305] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(4960), 1, + sym_comment, + ACTIONS(5657), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173322] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, + ACTIONS(5), 1, + sym_html_comment, STATE(4961), 1, sym_comment, - STATE(5139), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [173645] = 6, + ACTIONS(5548), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173339] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4962), 1, sym_comment, - STATE(5949), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173666] = 8, + ACTIONS(5544), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173356] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4963), 1, sym_comment, - STATE(6412), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [173691] = 4, + ACTIONS(3403), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173373] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4964), 1, sym_comment, - ACTIONS(3418), 5, + ACTIONS(3401), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173708] = 4, + [173390] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4965), 1, sym_comment, - ACTIONS(6524), 5, - anon_sym_EQ, + ACTIONS(3399), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [173725] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173407] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4966), 1, sym_comment, - STATE(5811), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173746] = 8, + ACTIONS(5450), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173424] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4967), 1, sym_comment, - STATE(6397), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [173771] = 8, + ACTIONS(5454), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173441] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4968), 1, sym_comment, - STATE(6432), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [173796] = 6, + ACTIONS(3425), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173458] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4969), 1, sym_comment, - STATE(6336), 1, - sym__initializer, - ACTIONS(8793), 3, + ACTIONS(3439), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173817] = 6, + anon_sym_PIPE_RBRACE, + [173475] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4970), 1, sym_comment, - STATE(5953), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173838] = 8, + ACTIONS(5604), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173492] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(4971), 1, sym_comment, - STATE(6430), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [173863] = 7, + ACTIONS(3463), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173509] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, STATE(4972), 1, sym_comment, - ACTIONS(8813), 2, + ACTIONS(3465), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173886] = 8, + anon_sym_PIPE_RBRACE, + [173526] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8425), 1, - anon_sym_abstract, - ACTIONS(8815), 1, - anon_sym_class, - STATE(4706), 1, - aux_sym_export_statement_repeat1, STATE(4973), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [173911] = 6, + ACTIONS(2396), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173543] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(4974), 1, sym_comment, - STATE(5954), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(2396), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173932] = 6, + anon_sym_PIPE_RBRACE, + [173560] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8819), 1, - anon_sym_in, - ACTIONS(8821), 1, - anon_sym_of, STATE(4975), 1, sym_comment, - ACTIONS(8817), 3, + ACTIONS(3499), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173953] = 6, + anon_sym_PIPE_RBRACE, + [173577] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8823), 1, - anon_sym_in, - ACTIONS(8825), 1, - anon_sym_of, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4976), 1, sym_comment, - ACTIONS(8817), 3, + STATE(6088), 1, + sym__initializer, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173974] = 4, + [173598] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4977), 1, sym_comment, - ACTIONS(8827), 5, + STATE(6199), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173991] = 4, + [173619] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(4978), 1, sym_comment, - ACTIONS(6307), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [174008] = 4, + ACTIONS(8759), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [173642] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8636), 1, + anon_sym_abstract, + ACTIONS(8763), 1, + anon_sym_class, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(4979), 1, sym_comment, - ACTIONS(8829), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174025] = 4, + STATE(5640), 1, + sym_decorator, + [173667] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(4980), 1, sym_comment, - ACTIONS(6299), 5, + ACTIONS(6214), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [174042] = 6, + [173684] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8461), 1, + anon_sym_class, + ACTIONS(8463), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(4981), 1, sym_comment, - STATE(5955), 1, + STATE(5640), 1, + sym_decorator, + [173709] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(4982), 1, + sym_comment, + STATE(6222), 1, sym__initializer, - ACTIONS(8759), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174063] = 8, + [173730] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(4982), 1, + ACTIONS(8765), 1, + sym_identifier, + ACTIONS(8767), 1, + anon_sym_GT, + ACTIONS(8769), 1, + sym_jsx_identifier, + STATE(4983), 1, sym_comment, - STATE(5154), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [174088] = 6, + STATE(6951), 1, + sym_nested_identifier, + STATE(7473), 1, + sym_jsx_namespace_name, + [173755] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4983), 1, + STATE(4984), 1, sym_comment, - STATE(5968), 1, + STATE(6226), 1, sym__initializer, - ACTIONS(8759), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174109] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(8831), 1, - anon_sym_BQUOTE, - STATE(4984), 1, - sym_comment, - STATE(5087), 1, - aux_sym_template_literal_type_repeat1, - STATE(6024), 1, - sym_template_type, - [174134] = 4, + [173776] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(4985), 1, sym_comment, - ACTIONS(6299), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [174151] = 6, + STATE(5035), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [173801] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(8771), 1, + anon_sym_BQUOTE, STATE(4986), 1, sym_comment, - STATE(6039), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174172] = 4, + STATE(5165), 1, + aux_sym_template_literal_type_repeat1, + STATE(5689), 1, + sym_template_type, + [173826] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8733), 1, + anon_sym_LBRACE, + ACTIONS(8773), 1, + anon_sym_SEMI, + ACTIONS(8775), 1, + sym__automatic_semicolon, + ACTIONS(8777), 1, + sym__function_signature_automatic_semicolon, + STATE(382), 1, + sym_statement_block, STATE(4987), 1, sym_comment, - ACTIONS(6299), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [174189] = 6, + [173851] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(4988), 1, sym_comment, - STATE(5978), 1, + STATE(6087), 1, sym__initializer, - ACTIONS(8759), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174210] = 4, + [173872] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4989), 1, sym_comment, - ACTIONS(8833), 5, + STATE(6188), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174227] = 6, + [173893] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(8128), 1, anon_sym_EQ, + ACTIONS(8779), 1, + anon_sym_COMMA, + ACTIONS(8781), 1, + anon_sym_RBRACE, STATE(4990), 1, sym_comment, - STATE(5979), 1, + STATE(5778), 1, + aux_sym_enum_body_repeat1, + STATE(6740), 1, sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174248] = 8, + [173918] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8737), 1, - anon_sym_LBRACE, - ACTIONS(8835), 1, - anon_sym_SEMI, - ACTIONS(8837), 1, - sym__automatic_semicolon, - ACTIONS(8839), 1, - sym__function_signature_automatic_semicolon, - STATE(409), 1, - sym_statement_block, + ACTIONS(8783), 1, + sym_identifier, + ACTIONS(8785), 1, + anon_sym_GT, + ACTIONS(8787), 1, + sym_jsx_identifier, STATE(4991), 1, sym_comment, - [174273] = 8, + STATE(6722), 1, + sym_nested_identifier, + STATE(7082), 1, + sym_jsx_namespace_name, + [173943] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(8789), 1, + sym_identifier, STATE(4992), 1, sym_comment, - STATE(5162), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [174298] = 4, + STATE(5611), 1, + sym_string, + STATE(7076), 1, + sym__module_export_name, + [173968] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8618), 1, + anon_sym_class, + ACTIONS(8620), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(4993), 1, sym_comment, - ACTIONS(3414), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174315] = 8, + STATE(5640), 1, + sym_decorator, + [173993] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(4711), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(4994), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [174340] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4995), 1, - sym_comment, - ACTIONS(8841), 5, + STATE(6320), 1, + sym__initializer, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174357] = 4, + [174014] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4996), 1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(8789), 1, + sym_identifier, + STATE(4995), 1, sym_comment, - ACTIONS(3410), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174374] = 6, + STATE(5611), 1, + sym_string, + STATE(5788), 1, + sym__module_export_name, + [174039] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4997), 1, + STATE(4996), 1, sym_comment, - STATE(5998), 1, + STATE(6073), 1, sym__initializer, - ACTIONS(8759), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174395] = 8, + [174060] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7287), 1, anon_sym_LPAREN, - STATE(4286), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(4736), 1, - sym__call_signature, - STATE(4998), 1, + STATE(4997), 1, sym_comment, - STATE(6561), 1, + STATE(5073), 1, + sym__call_signature, + STATE(6621), 1, sym_type_parameters, - [174420] = 6, + [174085] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(4999), 1, + STATE(4998), 1, sym_comment, - STATE(6001), 1, + STATE(6064), 1, sym__initializer, - ACTIONS(8759), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174441] = 8, + [174106] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, - STATE(5000), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(4999), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6648), 1, - sym__call_signature, - [174466] = 6, + STATE(6016), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174127] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(8791), 1, anon_sym_EQ, - STATE(5001), 1, + STATE(5000), 1, sym_comment, - STATE(6003), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, + ACTIONS(4307), 4, anon_sym_COMMA, - anon_sym_SEMI, - [174487] = 8, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [174146] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5002), 1, + STATE(5001), 1, sym_comment, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - STATE(6649), 1, + STATE(6941), 1, sym__call_signature, - [174512] = 8, + [174171] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - STATE(4286), 1, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, sym_formal_parameters, - STATE(5003), 1, + STATE(5002), 1, sym_comment, - STATE(5164), 1, - sym__call_signature, - STATE(6561), 1, + STATE(6818), 1, sym_type_parameters, - [174537] = 8, + STATE(6972), 1, + sym__call_signature, + [174196] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8168), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(8843), 1, + STATE(5003), 1, + sym_comment, + STATE(6324), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8845), 1, - anon_sym_RBRACE, + anon_sym_SEMI, + [174217] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8755), 1, + anon_sym_LBRACE, + ACTIONS(8773), 1, + anon_sym_SEMI, + ACTIONS(8775), 1, + sym__automatic_semicolon, + ACTIONS(8777), 1, + sym__function_signature_automatic_semicolon, + STATE(972), 1, + sym_statement_block, STATE(5004), 1, sym_comment, - STATE(5774), 1, - aux_sym_enum_body_repeat1, - STATE(6465), 1, - sym__initializer, - [174562] = 6, + [174242] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5005), 1, sym_comment, - STATE(6285), 1, + STATE(6057), 1, sym__initializer, - ACTIONS(8767), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174583] = 6, + [174263] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5006), 1, sym_comment, - STATE(6008), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(8793), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [174604] = 8, + [174286] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5007), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6871), 1, - sym__call_signature, - [174629] = 6, + STATE(6042), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174307] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(4527), 1, + anon_sym_COLON, + ACTIONS(7212), 1, anon_sym_EQ, + ACTIONS(8795), 1, + anon_sym_COMMA, + ACTIONS(8797), 1, + anon_sym_RBRACE, STATE(5008), 1, sym_comment, - STATE(6009), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174650] = 6, + STATE(5849), 1, + aux_sym_object_pattern_repeat1, + [174332] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5009), 1, sym_comment, - STATE(6300), 1, + STATE(5664), 1, sym__initializer, - ACTIONS(8847), 3, + ACTIONS(8799), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174671] = 6, + [174353] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5010), 1, sym_comment, - STATE(6010), 1, + STATE(6327), 1, sym__initializer, - ACTIONS(8733), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174692] = 6, + [174374] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5011), 1, sym_comment, - STATE(6281), 1, + STATE(6038), 1, sym__initializer, - ACTIONS(8767), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174713] = 4, + [174395] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5012), 1, sym_comment, - ACTIONS(3408), 5, - sym__automatic_semicolon, + ACTIONS(6104), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174730] = 8, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [174412] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8344), 1, - anon_sym_abstract, - ACTIONS(8849), 1, - anon_sym_class, - STATE(4706), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5013), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [174755] = 8, + STATE(6035), 1, + sym__initializer, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174433] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8805), 1, - anon_sym_LBRACE, - ACTIONS(8835), 1, - anon_sym_SEMI, - ACTIONS(8837), 1, - sym__automatic_semicolon, - ACTIONS(8839), 1, - sym__function_signature_automatic_semicolon, - STATE(1101), 1, - sym_statement_block, STATE(5014), 1, sym_comment, - [174780] = 8, + ACTIONS(6337), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [174450] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8612), 1, + anon_sym_abstract, + ACTIONS(8801), 1, + anon_sym_class, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(5015), 1, sym_comment, - STATE(5175), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [174805] = 4, + STATE(5640), 1, + sym_decorator, + [174475] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5016), 1, sym_comment, - ACTIONS(3404), 5, + STATE(6021), 1, + sym__initializer, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174822] = 8, + [174496] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5017), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6666), 1, - sym__call_signature, - [174847] = 6, + STATE(6321), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174517] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5018), 1, sym_comment, - STATE(6288), 1, + STATE(6019), 1, sym__initializer, - ACTIONS(8851), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174868] = 7, + [174538] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7439), 1, + ACTIONS(7452), 1, anon_sym_extends, - ACTIONS(8803), 1, + ACTIONS(8761), 1, anon_sym_PIPE, STATE(5019), 1, sym_comment, - ACTIONS(8853), 2, + ACTIONS(8803), 2, sym__automatic_semicolon, anon_sym_SEMI, - [174891] = 6, + [174561] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5020), 1, sym_comment, - STATE(6278), 1, + STATE(5934), 1, sym__initializer, - ACTIONS(8793), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174912] = 6, + [174582] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5021), 1, sym_comment, - STATE(6013), 1, + STATE(6309), 1, sym__initializer, - ACTIONS(8733), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174933] = 6, + [174603] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5022), 1, sym_comment, - STATE(6269), 1, - sym__initializer, - ACTIONS(8855), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174954] = 8, + STATE(6473), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [174628] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, STATE(5023), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6469), 1, + STATE(6461), 1, sym__call_signature, - [174979] = 4, + STATE(6818), 1, + sym_type_parameters, + [174653] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(8805), 1, + anon_sym_BQUOTE, STATE(5024), 1, sym_comment, - ACTIONS(8609), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [174996] = 6, + STATE(5098), 1, + aux_sym_template_literal_type_repeat1, + STATE(5689), 1, + sym_template_type, + [174678] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5025), 1, sym_comment, - STATE(5808), 1, + STATE(6004), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175017] = 8, + [174699] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8799), 1, - anon_sym_LBRACE, - ACTIONS(8857), 1, - anon_sym_SEMI, - ACTIONS(8859), 1, - sym__automatic_semicolon, - ACTIONS(8861), 1, - sym__function_signature_automatic_semicolon, - STATE(1173), 1, - sym_statement_block, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5026), 1, sym_comment, - [175042] = 8, + STATE(5992), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174720] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, STATE(5027), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6674), 1, + STATE(6454), 1, sym__call_signature, - [175067] = 8, + STATE(6818), 1, + sym_type_parameters, + [174745] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7287), 1, anon_sym_LPAREN, - STATE(4286), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(4952), 1, - sym__call_signature, STATE(5028), 1, sym_comment, - STATE(6561), 1, + STATE(5326), 1, + sym__call_signature, + STATE(6621), 1, sym_type_parameters, - [175092] = 6, + [174770] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5029), 1, sym_comment, - STATE(6020), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175113] = 4, + STATE(6434), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [174795] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5030), 1, sym_comment, - ACTIONS(2283), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175130] = 4, + STATE(5332), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [174820] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5031), 1, sym_comment, - ACTIONS(3394), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175147] = 6, + STATE(5336), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [174845] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5032), 1, sym_comment, - STATE(6283), 1, - sym__initializer, - ACTIONS(8863), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175168] = 6, + STATE(5346), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [174870] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5033), 1, sym_comment, - STATE(6026), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175189] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5115), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [174895] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8795), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5034), 1, sym_comment, - STATE(5427), 1, - sym_string, - STATE(6680), 1, - sym__module_export_name, - [175214] = 6, + STATE(6818), 1, + sym_type_parameters, + STATE(6917), 1, + sym__call_signature, + [174920] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8807), 1, + anon_sym_LBRACE, + ACTIONS(8809), 1, + anon_sym_SEMI, + ACTIONS(8811), 1, + sym__automatic_semicolon, + ACTIONS(8813), 1, + sym__function_signature_automatic_semicolon, + STATE(459), 1, + sym_statement_block, STATE(5035), 1, sym_comment, - STATE(6028), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175235] = 4, + [174945] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5036), 1, sym_comment, - ACTIONS(8505), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8815), 5, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [175252] = 6, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [174962] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5037), 1, sym_comment, - STATE(5807), 1, + STATE(5991), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175273] = 4, + [174983] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5038), 1, sym_comment, - ACTIONS(3392), 5, + STATE(5646), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175290] = 8, + [175004] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(5039), 1, + sym_comment, + ACTIONS(8817), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [175021] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - STATE(4061), 1, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, sym_formal_parameters, - STATE(5039), 1, + STATE(5040), 1, sym_comment, - STATE(6261), 1, + STATE(6362), 1, sym__call_signature, - STATE(6986), 1, + STATE(6818), 1, sym_type_parameters, - [175315] = 6, + [175046] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(5040), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, + STATE(5041), 1, sym_comment, - STATE(5806), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175336] = 6, + STATE(6378), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [175071] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5041), 1, + STATE(5042), 1, sym_comment, - STATE(6253), 1, + STATE(5973), 1, sym__initializer, - ACTIONS(8793), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175357] = 6, + [175092] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5042), 1, + STATE(5043), 1, sym_comment, - STATE(6177), 1, + STATE(5972), 1, sym__initializer, - ACTIONS(8865), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175378] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5043), 1, - sym_comment, - ACTIONS(4985), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175395] = 6, + [175113] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5044), 1, sym_comment, - STATE(6260), 1, + STATE(5968), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175416] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [175134] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5045), 1, sym_comment, - ACTIONS(5349), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175433] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6415), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [175159] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5046), 1, sym_comment, - ACTIONS(5327), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175450] = 6, + STATE(5393), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [175184] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5047), 1, sym_comment, - STATE(6258), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175471] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(5048), 1, - sym_comment, - STATE(6033), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175492] = 8, + STATE(6438), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [175209] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7287), 1, anon_sym_LPAREN, - STATE(4286), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(4875), 1, - sym__call_signature, - STATE(5049), 1, + STATE(5048), 1, sym_comment, - STATE(6561), 1, + STATE(5401), 1, + sym__call_signature, + STATE(6621), 1, sym_type_parameters, - [175517] = 4, + [175234] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5050), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5049), 1, sym_comment, - ACTIONS(8519), 5, + STATE(6308), 1, + sym__initializer, + ACTIONS(8723), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [175534] = 6, + [175255] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5051), 1, + STATE(5050), 1, sym_comment, - STATE(5796), 1, + STATE(5967), 1, sym__initializer, - ACTIONS(8713), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175555] = 6, + [175276] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(5052), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(5051), 1, sym_comment, - STATE(6034), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175576] = 8, + STATE(5404), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [175301] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, + ACTIONS(2705), 1, anon_sym_AT, - ACTIONS(8575), 1, + ACTIONS(8487), 1, anon_sym_class, - ACTIONS(8577), 1, + ACTIONS(8489), 1, anon_sym_abstract, - STATE(4706), 1, + STATE(4667), 1, aux_sym_export_statement_repeat1, - STATE(5053), 1, + STATE(5052), 1, sym_comment, - STATE(5608), 1, + STATE(5640), 1, sym_decorator, - [175601] = 6, + [175326] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5054), 1, + STATE(5053), 1, sym_comment, - STATE(6181), 1, + STATE(6307), 1, sym__initializer, - ACTIONS(8793), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175622] = 4, - ACTIONS(3), 1, + [175347] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8022), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8028), 1, + anon_sym_LBRACE_PIPE, + STATE(1545), 1, + sym_object_type, + STATE(5054), 1, + sym_comment, + STATE(5744), 1, + sym_extends_type_clause, + [175372] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5055), 1, sym_comment, - ACTIONS(8551), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175639] = 5, + STATE(5129), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [175397] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8867), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5056), 1, sym_comment, - ACTIONS(4268), 4, + STATE(5963), 1, + sym__initializer, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [175658] = 6, + anon_sym_SEMI, + [175418] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8378), 1, + anon_sym_COLON, + ACTIONS(8819), 1, + anon_sym_EQ_GT, STATE(5057), 1, sym_comment, - STATE(6035), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175679] = 6, + STATE(6517), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [175439] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5058), 1, sym_comment, - STATE(5793), 1, + STATE(5960), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175700] = 6, + [175460] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5059), 1, sym_comment, - STATE(6036), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175721] = 8, + STATE(6559), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [175485] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - STATE(4286), 1, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, sym_formal_parameters, - STATE(4957), 1, - sym__call_signature, STATE(5060), 1, sym_comment, - STATE(6561), 1, + STATE(6583), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - [175746] = 6, + [175510] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5061), 1, sym_comment, - STATE(5791), 1, + STATE(5958), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175767] = 6, + [175531] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5062), 1, sym_comment, - STATE(6038), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175788] = 4, + STATE(6601), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [175556] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5063), 1, sym_comment, - ACTIONS(8218), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175805] = 6, + STATE(5264), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [175581] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5064), 1, sym_comment, - STATE(6080), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175826] = 7, + STATE(6607), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [175606] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5065), 1, sym_comment, - ACTIONS(8869), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [175849] = 6, + STATE(5251), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [175631] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5066), 1, sym_comment, - STATE(5790), 1, + STATE(5929), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175870] = 4, + [175652] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(8789), 1, + sym_identifier, STATE(5067), 1, sym_comment, - ACTIONS(8871), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175887] = 6, + STATE(5611), 1, + sym_string, + STATE(6870), 1, + sym__module_export_name, + [175677] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5068), 1, sym_comment, - STATE(6040), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175908] = 4, + STATE(5195), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [175702] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8747), 1, + anon_sym_abstract, + ACTIONS(8822), 1, + anon_sym_class, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(5069), 1, sym_comment, - ACTIONS(3374), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175925] = 6, + STATE(5640), 1, + sym_decorator, + [175727] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5070), 1, sym_comment, - STATE(6058), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175946] = 6, + STATE(5132), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [175752] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5071), 1, sym_comment, - STATE(6184), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175967] = 8, + STATE(5176), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [175777] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - STATE(4286), 1, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, sym_formal_parameters, - STATE(4991), 1, - sym__call_signature, STATE(5072), 1, sym_comment, - STATE(6561), 1, + STATE(6818), 1, sym_type_parameters, - [175992] = 6, + STATE(6865), 1, + sym__call_signature, + [175802] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8809), 1, + anon_sym_SEMI, + ACTIONS(8811), 1, + sym__automatic_semicolon, + ACTIONS(8813), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8824), 1, + anon_sym_LBRACE, + STATE(1175), 1, + sym_statement_block, STATE(5073), 1, sym_comment, - STATE(5789), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176013] = 4, + [175827] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5074), 1, sym_comment, - ACTIONS(3376), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176030] = 7, + STATE(6818), 1, + sym_type_parameters, + STATE(6862), 1, + sym__call_signature, + [175852] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5075), 1, sym_comment, - ACTIONS(8873), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [176053] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5076), 1, - sym_comment, - ACTIONS(3378), 5, + STATE(5928), 1, + sym__initializer, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176070] = 6, + [175873] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(5077), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, + STATE(5076), 1, sym_comment, - STATE(5971), 1, - sym__initializer, - ACTIONS(8767), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176091] = 8, + STATE(6817), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [175898] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5078), 1, + STATE(5077), 1, sym_comment, - STATE(6459), 1, + STATE(6818), 1, sym_type_parameters, - STATE(6720), 1, + STATE(6848), 1, sym__call_signature, - [176116] = 6, + [175923] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5079), 1, + STATE(5078), 1, sym_comment, - STATE(6043), 1, + STATE(5927), 1, sym__initializer, - ACTIONS(8759), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176137] = 6, + [175944] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5080), 1, + STATE(5079), 1, sym_comment, - STATE(6247), 1, + STATE(6304), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176158] = 6, + [175965] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5081), 1, + STATE(5080), 1, sym_comment, - STATE(5960), 1, + STATE(5926), 1, sym__initializer, - ACTIONS(8767), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176179] = 8, + [175986] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(5014), 1, - sym__call_signature, - STATE(5082), 1, + STATE(5081), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [176204] = 6, + ACTIONS(8670), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [176003] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7113), 1, - anon_sym_LBRACK, - ACTIONS(8877), 1, - anon_sym_RBRACE, - STATE(5083), 1, + STATE(5082), 1, sym_comment, - ACTIONS(5061), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [176225] = 8, + ACTIONS(8162), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176020] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, sym_formal_parameters, - STATE(5084), 1, + STATE(5083), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6854), 1, + STATE(5358), 1, sym__call_signature, - [176250] = 6, + STATE(6730), 1, + sym_type_parameters, + [176045] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(5085), 1, + STATE(5084), 1, sym_comment, - STATE(6045), 1, - sym__initializer, - ACTIONS(8759), 3, + ACTIONS(8164), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176271] = 6, + anon_sym_PIPE_RBRACE, + [176062] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + STATE(5085), 1, + sym_comment, + ACTIONS(6459), 5, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176079] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5086), 1, sym_comment, - STATE(6246), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8162), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176292] = 7, + anon_sym_PIPE_RBRACE, + [176096] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8879), 1, - anon_sym_BQUOTE, - ACTIONS(8881), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8884), 1, - sym__template_chars, - STATE(6024), 1, - sym_template_type, - STATE(5087), 2, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, + STATE(5087), 1, sym_comment, - aux_sym_template_literal_type_repeat1, - [176315] = 4, + ACTIONS(8826), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [176119] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5088), 1, sym_comment, - ACTIONS(3380), 5, - sym__automatic_semicolon, + ACTIONS(6452), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176332] = 7, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176136] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, STATE(5089), 1, sym_comment, - ACTIONS(8887), 2, - anon_sym_LBRACE, + ACTIONS(6452), 5, + anon_sym_EQ, anon_sym_COMMA, - [176355] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176153] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5090), 1, sym_comment, - ACTIONS(3386), 5, - sym__automatic_semicolon, + ACTIONS(6452), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176372] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176170] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5091), 1, sym_comment, - STATE(5788), 1, + STATE(5808), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176393] = 6, + [176191] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5092), 1, sym_comment, - STATE(5920), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176414] = 8, + ACTIONS(8471), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [176208] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, STATE(5093), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6920), 1, - sym__call_signature, - [176439] = 4, + ACTIONS(8830), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176225] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5094), 1, sym_comment, - ACTIONS(3388), 5, + ACTIONS(8832), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176456] = 6, + [176242] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5095), 1, sym_comment, - STATE(6238), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8164), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176477] = 4, + anon_sym_PIPE_RBRACE, + [176259] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5096), 1, sym_comment, - ACTIONS(3390), 5, + ACTIONS(8834), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176494] = 6, + [176276] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5097), 1, sym_comment, - STATE(5908), 1, + STATE(5924), 1, sym__initializer, - ACTIONS(8793), 3, + ACTIONS(8836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176515] = 6, + [176297] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(8838), 1, + anon_sym_BQUOTE, STATE(5098), 1, sym_comment, - STATE(6236), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176536] = 4, + STATE(5165), 1, + aux_sym_template_literal_type_repeat1, + STATE(5689), 1, + sym_template_type, + [176322] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5099), 1, sym_comment, - ACTIONS(3406), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176553] = 4, + STATE(6818), 1, + sym_type_parameters, + STATE(6837), 1, + sym__call_signature, + [176347] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5100), 1, sym_comment, - ACTIONS(2365), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176570] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5101), 1, - sym_comment, - ACTIONS(8889), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [176587] = 6, + STATE(6818), 1, + sym_type_parameters, + STATE(6869), 1, + sym__call_signature, + [176372] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5102), 1, + STATE(5101), 1, sym_comment, - STATE(5892), 1, + STATE(5919), 1, sym__initializer, - ACTIONS(8767), 3, + ACTIONS(8840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176608] = 6, + [176393] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, + STATE(5102), 1, + sym_comment, + STATE(6818), 1, + sym_type_parameters, + STATE(6886), 1, + sym__call_signature, + [176418] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5103), 1, sym_comment, - STATE(5891), 1, - sym__initializer, - ACTIONS(8767), 3, + ACTIONS(8842), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176629] = 6, + anon_sym_PIPE_RBRACE, + [176435] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(5004), 1, + sym__call_signature, STATE(5104), 1, sym_comment, - STATE(5887), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176650] = 6, + STATE(6621), 1, + sym_type_parameters, + [176460] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5105), 1, sym_comment, - STATE(6046), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176671] = 6, + STATE(6818), 1, + sym_type_parameters, + STATE(6913), 1, + sym__call_signature, + [176485] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5106), 1, sym_comment, - STATE(6233), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8844), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176692] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5107), 1, - sym_comment, - ACTIONS(8891), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [176709] = 6, + anon_sym_PIPE_RBRACE, + [176502] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(5108), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(4659), 1, + sym__call_signature, + STATE(5107), 1, sym_comment, - STATE(5784), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176730] = 8, + STATE(6621), 1, + sym_type_parameters, + [176527] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, sym_formal_parameters, - STATE(5109), 1, + STATE(4987), 1, + sym__call_signature, + STATE(5108), 1, sym_comment, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - STATE(6950), 1, - sym__call_signature, - [176755] = 4, + [176552] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5110), 1, + STATE(5109), 1, sym_comment, - ACTIONS(2277), 5, + ACTIONS(8846), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176772] = 4, + [176569] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5111), 1, + STATE(5110), 1, sym_comment, - ACTIONS(2379), 5, + ACTIONS(8848), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176789] = 6, + [176586] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(4878), 1, + sym__call_signature, + STATE(5111), 1, + sym_comment, + STATE(6621), 1, + sym_type_parameters, + [176611] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8634), 1, + anon_sym_class, + ACTIONS(8636), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(5112), 1, sym_comment, - STATE(5876), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176810] = 4, + STATE(5640), 1, + sym_decorator, + [176636] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5113), 1, sym_comment, - ACTIONS(8893), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [176827] = 4, + STATE(6762), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [176661] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(4855), 1, + sym__call_signature, STATE(5114), 1, sym_comment, - ACTIONS(3564), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176844] = 6, + STATE(6621), 1, + sym_type_parameters, + [176686] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8807), 1, + anon_sym_LBRACE, + ACTIONS(8850), 1, + anon_sym_SEMI, + ACTIONS(8852), 1, + sym__automatic_semicolon, + ACTIONS(8854), 1, + sym__function_signature_automatic_semicolon, + STATE(462), 1, + sym_statement_block, STATE(5115), 1, sym_comment, - STATE(6047), 1, - sym__initializer, - ACTIONS(8759), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176865] = 4, + [176711] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5116), 1, sym_comment, - ACTIONS(3572), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176882] = 4, + STATE(6718), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [176736] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, STATE(5117), 1, sym_comment, - ACTIONS(3426), 5, - sym__automatic_semicolon, + ACTIONS(8856), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176899] = 7, + anon_sym_GT, + [176759] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, + ACTIONS(8858), 1, + sym_identifier, + ACTIONS(8860), 1, + anon_sym_GT, + ACTIONS(8862), 1, + sym_jsx_identifier, STATE(5118), 1, sym_comment, - ACTIONS(8895), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [176922] = 6, + STATE(6647), 1, + sym_nested_identifier, + STATE(7353), 1, + sym_jsx_namespace_name, + [176784] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, - ACTIONS(8897), 1, - anon_sym_EQ_GT, STATE(5119), 1, sym_comment, - STATE(6677), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [176943] = 4, + ACTIONS(8864), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [176801] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5120), 1, sym_comment, - ACTIONS(3482), 5, + STATE(6282), 1, + sym__initializer, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176960] = 6, + [176822] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5121), 1, sym_comment, - STATE(5783), 1, - sym__initializer, - ACTIONS(8711), 3, + ACTIONS(8868), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176981] = 6, + anon_sym_PIPE_RBRACE, + [176839] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5122), 1, sym_comment, - STATE(6222), 1, - sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8870), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177002] = 7, + anon_sym_PIPE_RBRACE, + [176856] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(7619), 1, - anon_sym_DOT, - STATE(4327), 1, - sym_arguments, STATE(5123), 1, sym_comment, - ACTIONS(8900), 2, + ACTIONS(8143), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [177025] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176873] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(8128), 1, anon_sym_EQ, + ACTIONS(8872), 1, + anon_sym_COMMA, + ACTIONS(8874), 1, + anon_sym_RBRACE, STATE(5124), 1, sym_comment, - STATE(5782), 1, + STATE(5894), 1, + aux_sym_enum_body_repeat1, + STATE(6740), 1, sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177046] = 6, + [176898] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(4244), 1, + anon_sym_COLON, STATE(5125), 1, sym_comment, - STATE(6048), 1, - sym__initializer, - ACTIONS(8902), 3, - sym__automatic_semicolon, + STATE(6785), 1, + sym_type_annotation, + ACTIONS(4269), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [177067] = 6, + anon_sym_RBRACK, + [176919] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8378), 1, + anon_sym_COLON, + ACTIONS(8876), 1, + anon_sym_EQ_GT, STATE(5126), 1, sym_comment, - STATE(5869), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177088] = 8, + STATE(6517), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [176940] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(8188), 1, - anon_sym_LBRACE, - ACTIONS(8190), 1, - anon_sym_LBRACE_PIPE, - STATE(1445), 1, - sym_object_type, STATE(5127), 1, sym_comment, - STATE(6086), 1, - sym_extends_type_clause, - [177113] = 4, + ACTIONS(5871), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [176957] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(4631), 1, + sym__call_signature, STATE(5128), 1, sym_comment, - ACTIONS(3480), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177130] = 6, + STATE(6621), 1, + sym_type_parameters, + [176982] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(4850), 1, + anon_sym_LBRACE, + ACTIONS(8879), 1, + anon_sym_SEMI, + ACTIONS(8881), 1, + sym__automatic_semicolon, + ACTIONS(8883), 1, + sym__function_signature_automatic_semicolon, + STATE(2923), 1, + sym_statement_block, STATE(5129), 1, sym_comment, - STATE(6221), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177151] = 6, + [177007] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + anon_sym_SQUOTE, + ACTIONS(8789), 1, + sym_identifier, STATE(5130), 1, sym_comment, - STATE(6218), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177172] = 4, + STATE(5611), 1, + sym_string, + STATE(6723), 1, + sym__module_export_name, + [177032] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5131), 1, sym_comment, - ACTIONS(8904), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [177189] = 7, + STATE(6717), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177057] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, + ACTIONS(8824), 1, + anon_sym_LBRACE, + ACTIONS(8850), 1, + anon_sym_SEMI, + ACTIONS(8852), 1, + sym__automatic_semicolon, + ACTIONS(8854), 1, + sym__function_signature_automatic_semicolon, + STATE(1343), 1, + sym_statement_block, STATE(5132), 1, sym_comment, - ACTIONS(8906), 2, - anon_sym_COMMA, - anon_sym_GT, - [177212] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [177082] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5133), 1, sym_comment, - ACTIONS(5617), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [177229] = 8, + ACTIONS(8885), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [177105] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, STATE(5134), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6771), 1, + STATE(6714), 1, sym__call_signature, - [177254] = 6, + STATE(6818), 1, + sym_type_parameters, + [177130] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5135), 1, sym_comment, - STATE(6052), 1, - sym__initializer, - ACTIONS(8908), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177275] = 7, + STATE(6710), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177155] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, + ACTIONS(8889), 1, + anon_sym_in, + ACTIONS(8891), 1, + anon_sym_of, STATE(5136), 1, sym_comment, - ACTIONS(8910), 2, + ACTIONS(8887), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [177298] = 4, + [177176] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8893), 1, + anon_sym_in, + ACTIONS(8895), 1, + anon_sym_of, STATE(5137), 1, sym_comment, - ACTIONS(8085), 5, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177315] = 4, + [177197] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5138), 1, sym_comment, - ACTIONS(3440), 5, + ACTIONS(8897), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177332] = 8, + [177214] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8912), 1, - anon_sym_LBRACE, - ACTIONS(8914), 1, - anon_sym_SEMI, - ACTIONS(8916), 1, - sym__automatic_semicolon, - ACTIONS(8918), 1, - sym__function_signature_automatic_semicolon, - STATE(932), 1, - sym_statement_block, STATE(5139), 1, sym_comment, - [177357] = 4, + ACTIONS(6436), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [177231] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5140), 1, sym_comment, - ACTIONS(8920), 5, - sym__automatic_semicolon, + ACTIONS(6444), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177374] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [177248] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5141), 1, sym_comment, - ACTIONS(8922), 5, + ACTIONS(8124), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177391] = 6, + [177265] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, - anon_sym_LBRACE, STATE(5142), 1, sym_comment, - ACTIONS(5192), 3, + ACTIONS(6444), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [177412] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [177282] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2087), 1, - anon_sym_DOT, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, - anon_sym_LBRACE, STATE(5143), 1, sym_comment, - ACTIONS(5192), 3, + ACTIONS(6444), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [177433] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [177299] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, - ACTIONS(8924), 1, - anon_sym_EQ_GT, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(4792), 1, + sym__call_signature, STATE(5144), 1, sym_comment, - STATE(6908), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [177454] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6621), 1, + sym_type_parameters, + [177324] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8927), 1, - sym_identifier, - ACTIONS(8929), 1, - anon_sym_GT, - ACTIONS(8931), 1, - sym_jsx_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5145), 1, sym_comment, - STATE(6502), 1, - sym_nested_identifier, - STATE(7343), 1, - sym_jsx_namespace_name, - [177479] = 8, + STATE(5931), 1, + sym__initializer, + ACTIONS(8899), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177345] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5146), 1, sym_comment, - STATE(5234), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [177504] = 4, + STATE(5946), 1, + sym__initializer, + ACTIONS(8901), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177366] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5147), 1, sym_comment, - ACTIONS(8087), 5, + STATE(5983), 1, + sym__initializer, + ACTIONS(8903), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177521] = 8, + [177387] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(8905), 1, + sym_identifier, + ACTIONS(8907), 1, + anon_sym_GT, + ACTIONS(8909), 1, + sym_jsx_identifier, + STATE(5148), 1, + sym_comment, + STATE(6590), 1, + sym_nested_identifier, + STATE(7143), 1, + sym_jsx_namespace_name, + [177412] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - STATE(4286), 1, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, sym_formal_parameters, - STATE(4835), 1, - sym__call_signature, - STATE(5148), 1, + STATE(5149), 1, sym_comment, - STATE(6561), 1, + STATE(6520), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - [177546] = 4, + [177437] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5149), 1, + STATE(5150), 1, sym_comment, - ACTIONS(8085), 5, + ACTIONS(8143), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177563] = 4, + [177454] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5150), 1, + STATE(5151), 1, sym_comment, - ACTIONS(8933), 5, + ACTIONS(8597), 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, - [177580] = 8, + [177471] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8168), 1, - anon_sym_EQ, - ACTIONS(8935), 1, - anon_sym_COMMA, - ACTIONS(8937), 1, - anon_sym_RBRACE, - STATE(5151), 1, + STATE(5152), 1, sym_comment, - STATE(6282), 1, - aux_sym_enum_body_repeat1, - STATE(6465), 1, - sym__initializer, - [177605] = 8, + ACTIONS(8595), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [177488] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, sym_formal_parameters, - STATE(5152), 1, - sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6752), 1, + STATE(5082), 1, sym__call_signature, - [177630] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, STATE(5153), 1, sym_comment, - ACTIONS(4935), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [177647] = 8, + STATE(6730), 1, + sym_type_parameters, + [177513] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8914), 1, - anon_sym_SEMI, - ACTIONS(8916), 1, + STATE(5154), 1, + sym_comment, + ACTIONS(8593), 5, sym__automatic_semicolon, - ACTIONS(8918), 1, sym__function_signature_automatic_semicolon, - ACTIONS(8939), 1, anon_sym_LBRACE, - STATE(298), 1, - sym_statement_block, - STATE(5154), 1, - sym_comment, - [177672] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COMMA, + anon_sym_SEMI, + [177530] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5155), 1, sym_comment, - ACTIONS(4949), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [177689] = 4, + STATE(6508), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177555] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5156), 1, sym_comment, - ACTIONS(8107), 5, + ACTIONS(8010), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177706] = 4, + [177572] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5157), 1, sym_comment, - ACTIONS(8941), 5, + ACTIONS(8911), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177723] = 4, + [177589] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5158), 1, sym_comment, - ACTIONS(8943), 5, + STATE(6315), 1, + sym__initializer, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177740] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [177610] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5159), 1, sym_comment, - ACTIONS(8945), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [177757] = 7, + STATE(6501), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177635] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, + ACTIONS(7088), 1, anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, STATE(5160), 1, sym_comment, - ACTIONS(8947), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [177780] = 4, + ACTIONS(8913), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [177658] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5161), 1, sym_comment, - ACTIONS(8107), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177797] = 8, + STATE(6467), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177683] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8912), 1, - anon_sym_LBRACE, - ACTIONS(8949), 1, - anon_sym_SEMI, - ACTIONS(8951), 1, - sym__automatic_semicolon, - ACTIONS(8953), 1, - sym__function_signature_automatic_semicolon, - STATE(941), 1, - sym_statement_block, + ACTIONS(7080), 1, + anon_sym_LBRACK, + ACTIONS(8915), 1, + anon_sym_RBRACE, STATE(5162), 1, sym_comment, - [177822] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5290), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [177704] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8955), 1, - sym_identifier, - ACTIONS(8957), 1, - anon_sym_GT, - ACTIONS(8959), 1, - sym_jsx_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5163), 1, sym_comment, - STATE(6921), 1, - sym_nested_identifier, - STATE(7066), 1, - sym_jsx_namespace_name, - [177847] = 8, + STATE(6266), 1, + sym__initializer, + ACTIONS(8917), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177725] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_LBRACE, - ACTIONS(8857), 1, - anon_sym_SEMI, - ACTIONS(8859), 1, - sym__automatic_semicolon, - ACTIONS(8861), 1, - sym__function_signature_automatic_semicolon, - STATE(434), 1, - sym_statement_block, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5164), 1, sym_comment, - [177872] = 6, + STATE(6418), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177750] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, - STATE(5165), 1, + ACTIONS(8919), 1, + anon_sym_BQUOTE, + ACTIONS(8921), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8924), 1, + sym__template_chars, + STATE(5689), 1, + sym_template_type, + STATE(5165), 2, sym_comment, - STATE(6198), 1, - sym__initializer, - ACTIONS(8875), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177893] = 6, + aux_sym_template_literal_type_repeat1, + [177773] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5166), 1, sym_comment, - STATE(5781), 1, - sym__initializer, - ACTIONS(8961), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177914] = 8, + STATE(6410), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177798] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, STATE(5167), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6775), 1, + STATE(6380), 1, sym__call_signature, - [177939] = 8, + STATE(6818), 1, + sym_type_parameters, + [177823] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7995), 1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(8041), 1, - anon_sym_LBRACE, - ACTIONS(8043), 1, - anon_sym_LBRACE_PIPE, - STATE(1005), 1, - sym_object_type, STATE(5168), 1, sym_comment, - STATE(6303), 1, - sym_extends_type_clause, - [177964] = 4, + ACTIONS(8927), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + [177846] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5169), 1, sym_comment, - ACTIONS(8963), 5, + STATE(6358), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177871] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(5170), 1, + sym_comment, + ACTIONS(8124), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177981] = 4, + [177888] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5170), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5171), 1, sym_comment, - ACTIONS(8113), 5, + STATE(5895), 1, + sym__initializer, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177998] = 8, + [177909] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + STATE(4786), 1, sym_formal_parameters, - STATE(5171), 1, + STATE(5172), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6766), 1, + STATE(6390), 1, sym__call_signature, - [178023] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6818), 1, + sym_type_parameters, + [177934] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(5172), 1, - sym_comment, - ACTIONS(4949), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [178040] = 4, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5173), 1, sym_comment, - ACTIONS(4969), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [178057] = 6, + STATE(6391), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [177959] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5174), 1, sym_comment, - STATE(6195), 1, + STATE(6257), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178078] = 8, + [177980] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8939), 1, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(8931), 1, + anon_sym_BQUOTE, + STATE(5175), 1, + sym_comment, + STATE(5245), 1, + aux_sym_template_literal_type_repeat1, + STATE(5689), 1, + sym_template_type, + [178005] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8933), 1, anon_sym_LBRACE, - ACTIONS(8949), 1, + ACTIONS(8935), 1, anon_sym_SEMI, - ACTIONS(8951), 1, + ACTIONS(8937), 1, sym__automatic_semicolon, - ACTIONS(8953), 1, + ACTIONS(8939), 1, sym__function_signature_automatic_semicolon, - STATE(312), 1, + STATE(370), 1, sym_statement_block, - STATE(5175), 1, + STATE(5176), 1, sym_comment, - [178103] = 6, + [178030] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5176), 1, + STATE(5177), 1, sym_comment, - STATE(5780), 1, + STATE(5886), 1, sym__initializer, - ACTIONS(8961), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178124] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4520), 1, - anon_sym_COLON, - ACTIONS(7223), 1, - anon_sym_EQ, - ACTIONS(8965), 1, - anon_sym_COMMA, - ACTIONS(8967), 1, - anon_sym_RBRACE, - STATE(5177), 1, - sym_comment, - STATE(5721), 1, - aux_sym_object_pattern_repeat1, - [178149] = 8, + [178051] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - STATE(4286), 1, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, sym_formal_parameters, - STATE(4862), 1, - sym__call_signature, STATE(5178), 1, sym_comment, - STATE(6561), 1, + STATE(6398), 1, + sym__call_signature, + STATE(6818), 1, sym_type_parameters, - [178174] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5179), 1, - sym_comment, - ACTIONS(4969), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [178191] = 6, + [178076] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5180), 1, + STATE(5179), 1, sym_comment, - STATE(6193), 1, + STATE(5882), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178212] = 5, + [178097] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6487), 1, - sym__automatic_semicolon, - STATE(5181), 1, - sym_comment, - ACTIONS(2343), 4, + ACTIONS(4527), 1, + anon_sym_COLON, + ACTIONS(7212), 1, + anon_sym_EQ, + ACTIONS(8795), 1, anon_sym_COMMA, + ACTIONS(8941), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178231] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, - STATE(4888), 1, - sym__call_signature, - STATE(5182), 1, + STATE(5180), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [178256] = 8, + STATE(6198), 1, + aux_sym_object_pattern_repeat1, + [178122] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1355), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(8969), 1, - anon_sym_BQUOTE, - STATE(4854), 1, - aux_sym_template_literal_type_repeat1, - STATE(5183), 1, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_LBRACE_PIPE, + STATE(4938), 1, + sym_object_type, + STATE(5181), 1, sym_comment, - STATE(6024), 1, - sym_template_type, - [178281] = 6, + STATE(6020), 1, + sym_extends_type_clause, + [178147] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5184), 1, + STATE(5182), 1, sym_comment, - STATE(5861), 1, + STATE(5881), 1, sym__initializer, - ACTIONS(8767), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178302] = 4, + [178168] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5185), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5183), 1, sym_comment, - ACTIONS(8113), 5, + STATE(5880), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178319] = 5, + [178189] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6287), 1, - sym__automatic_semicolon, - STATE(5186), 1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, + STATE(5184), 1, sym_comment, - ACTIONS(2387), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178338] = 5, + STATE(6405), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [178214] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6269), 1, - sym__automatic_semicolon, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(5185), 1, + sym_comment, + STATE(5347), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [178239] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5186), 1, + sym_comment, + ACTIONS(8945), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [178256] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, STATE(5187), 1, sym_comment, - ACTIONS(2375), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178357] = 6, + ACTIONS(8947), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [178273] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5188), 1, sym_comment, - STATE(6192), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178378] = 5, + ACTIONS(8949), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [178290] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6417), 1, - sym__automatic_semicolon, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5189), 1, sym_comment, - ACTIONS(2335), 4, + STATE(6243), 1, + sym__initializer, + ACTIONS(8917), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178397] = 4, + [178311] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5190), 1, sym_comment, - ACTIONS(3458), 5, + STATE(5864), 1, + sym__initializer, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178414] = 4, + [178332] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5191), 1, sym_comment, - ACTIONS(6259), 5, - anon_sym_EQ, + STATE(6237), 1, + sym__initializer, + ACTIONS(8917), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [178431] = 4, + anon_sym_SEMI, + [178353] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5192), 1, sym_comment, - ACTIONS(3460), 5, + STATE(5856), 1, + sym__initializer, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178448] = 6, + [178374] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5193), 1, sym_comment, - STATE(6190), 1, - sym__initializer, - ACTIONS(8875), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178469] = 6, + STATE(6487), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [178399] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5194), 1, sym_comment, - STATE(6187), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178490] = 6, + STATE(5309), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [178424] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7964), 1, + anon_sym_LBRACE, + ACTIONS(8879), 1, + anon_sym_SEMI, + ACTIONS(8881), 1, + sym__automatic_semicolon, + ACTIONS(8883), 1, + sym__function_signature_automatic_semicolon, STATE(5195), 1, sym_comment, - STATE(5810), 1, - sym__initializer, - ACTIONS(8711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178511] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5244), 1, + sym_statement_block, + [178449] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4314), 1, + sym_arguments, STATE(5196), 1, sym_comment, - ACTIONS(8667), 5, - anon_sym_LBRACE, + ACTIONS(8951), 2, + anon_sym_COMMA, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [178528] = 6, + [178472] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, STATE(5197), 1, sym_comment, - STATE(6186), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, + ACTIONS(8953), 2, anon_sym_COMMA, - anon_sym_SEMI, - [178549] = 6, + anon_sym_GT, + [178495] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5198), 1, sym_comment, - STATE(6054), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178570] = 6, + STATE(6549), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [178520] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8378), 1, + anon_sym_COLON, + ACTIONS(8955), 1, + anon_sym_EQ_GT, STATE(5199), 1, sym_comment, - STATE(5860), 1, - sym__initializer, - ACTIONS(8767), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178591] = 8, + STATE(6751), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [178541] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(8971), 1, - anon_sym_BQUOTE, STATE(5200), 1, sym_comment, - STATE(5298), 1, - aux_sym_template_literal_type_repeat1, - STATE(6024), 1, - sym_template_type, - [178616] = 6, + ACTIONS(5936), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [178558] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5201), 1, sym_comment, - STATE(5858), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178637] = 4, + ACTIONS(5930), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [178575] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5202), 1, sym_comment, - ACTIONS(3462), 5, + STATE(5854), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178654] = 8, + [178596] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(8973), 1, - anon_sym_as, - ACTIONS(8975), 1, - anon_sym_RBRACK, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(8958), 1, + anon_sym_BQUOTE, STATE(5203), 1, sym_comment, - [178679] = 4, + STATE(5301), 1, + aux_sym_template_literal_type_repeat1, + STATE(5689), 1, + sym_template_type, + [178621] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, STATE(5204), 1, sym_comment, - ACTIONS(3464), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178696] = 6, + STATE(5274), 1, + sym__call_signature, + STATE(6621), 1, + sym_type_parameters, + [178646] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(8610), 1, + anon_sym_class, + ACTIONS(8612), 1, + anon_sym_abstract, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(5205), 1, sym_comment, - STATE(6171), 1, - sym__initializer, - ACTIONS(8875), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178717] = 4, + STATE(5640), 1, + sym_decorator, + [178671] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5206), 1, sym_comment, - ACTIONS(3466), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178734] = 8, + STATE(6576), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [178696] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(8977), 1, - anon_sym_SEMI, - ACTIONS(8979), 1, - sym__automatic_semicolon, - ACTIONS(8981), 1, - sym__function_signature_automatic_semicolon, - STATE(3065), 1, - sym_statement_block, STATE(5207), 1, sym_comment, - [178759] = 4, + ACTIONS(6555), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [178713] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5208), 1, sym_comment, - ACTIONS(8983), 5, + ACTIONS(8960), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178776] = 8, + [178736] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7287), 1, anon_sym_LPAREN, - STATE(4286), 1, + STATE(4127), 1, sym_formal_parameters, - STATE(4656), 1, - sym__call_signature, STATE(5209), 1, sym_comment, - STATE(6561), 1, + STATE(5210), 1, + sym__call_signature, + STATE(6621), 1, sym_type_parameters, - [178801] = 6, + [178761] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(4850), 1, + anon_sym_LBRACE, + ACTIONS(8962), 1, + anon_sym_SEMI, + ACTIONS(8964), 1, + sym__automatic_semicolon, + ACTIONS(8966), 1, + sym__function_signature_automatic_semicolon, + STATE(3068), 1, + sym_statement_block, STATE(5210), 1, sym_comment, - STATE(5773), 1, - sym__initializer, - ACTIONS(8961), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178822] = 6, + [178786] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(8968), 1, + anon_sym_as, + ACTIONS(8970), 1, + anon_sym_RBRACK, STATE(5211), 1, sym_comment, - STATE(6055), 1, + [178811] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5212), 1, + sym_comment, + STATE(6157), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8972), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178843] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [178832] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(5212), 1, - sym_comment, - ACTIONS(5468), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [178860] = 4, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, STATE(5213), 1, sym_comment, - ACTIONS(5464), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [178877] = 6, + ACTIONS(8974), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178849] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(4720), 1, + sym__call_signature, STATE(5214), 1, sym_comment, - STATE(6056), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178898] = 6, + STATE(6621), 1, + sym_type_parameters, + [178874] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5215), 1, sym_comment, - STATE(6151), 1, + STATE(6194), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178919] = 6, + [178895] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5216), 1, sym_comment, - STATE(5772), 1, + STATE(6077), 1, sym__initializer, - ACTIONS(8961), 3, + ACTIONS(8976), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178940] = 7, + [178916] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5217), 1, sym_comment, - ACTIONS(8985), 2, + STATE(6079), 1, + sym__initializer, + ACTIONS(8978), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [178963] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(5218), 1, - sym_comment, - STATE(5369), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [178988] = 6, + [178937] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5219), 1, + STATE(5218), 1, sym_comment, - STATE(6060), 1, + STATE(5826), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179009] = 8, + [178958] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, + STATE(5219), 1, + sym_comment, + STATE(6090), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + [178983] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4520), 1, - anon_sym_COLON, - ACTIONS(7223), 1, - anon_sym_EQ, - ACTIONS(8965), 1, - anon_sym_COMMA, - ACTIONS(8987), 1, - anon_sym_RBRACE, STATE(5220), 1, sym_comment, - STATE(6316), 1, - aux_sym_object_pattern_repeat1, - [179034] = 6, + ACTIONS(8559), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [179000] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5221), 1, sym_comment, - STATE(5964), 1, + STATE(6191), 1, sym__initializer, - ACTIONS(8989), 3, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179055] = 6, + [179021] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5222), 1, sym_comment, - STATE(5961), 1, + STATE(6129), 1, sym__initializer, - ACTIONS(8991), 3, + ACTIONS(8980), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179076] = 8, + [179042] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8811), 1, - anon_sym_abstract, - ACTIONS(8993), 1, - anon_sym_class, - STATE(4706), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5223), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [179101] = 8, + STATE(6159), 1, + sym__initializer, + ACTIONS(8980), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179063] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(210), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(8053), 1, - anon_sym_LBRACE_PIPE, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5224), 1, sym_comment, - STATE(6174), 1, - sym_extends_type_clause, - STATE(6681), 1, - sym_object_type, - [179126] = 6, + STATE(6197), 1, + sym__initializer, + ACTIONS(8980), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179084] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5225), 1, sym_comment, - STATE(6062), 1, + STATE(6216), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8980), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179147] = 4, + [179105] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5226), 1, sym_comment, - ACTIONS(3470), 5, + STATE(6217), 1, + sym__initializer, + ACTIONS(8982), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179164] = 8, + [179126] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8034), 1, + anon_sym_LBRACE_PIPE, STATE(5227), 1, sym_comment, - STATE(5403), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [179189] = 4, + STATE(6207), 1, + sym_extends_type_clause, + STATE(6986), 1, + sym_object_type, + [179151] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5228), 1, sym_comment, - ACTIONS(6317), 5, - anon_sym_EQ, + STATE(6335), 1, + sym__initializer, + ACTIONS(8982), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [179206] = 8, + anon_sym_SEMI, + [179172] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5229), 1, sym_comment, - STATE(5943), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [179231] = 4, + STATE(6284), 1, + sym__initializer, + ACTIONS(8980), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179193] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5230), 1, sym_comment, - ACTIONS(3486), 5, + STATE(6298), 1, + sym__initializer, + ACTIONS(8980), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179248] = 4, + [179214] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, STATE(5231), 1, sym_comment, - ACTIONS(3486), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179265] = 6, + STATE(5353), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + [179239] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5232), 1, sym_comment, - STATE(6146), 1, - sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8086), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179286] = 7, + anon_sym_PIPE_RBRACE, + [179256] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, STATE(5233), 1, sym_comment, - ACTIONS(8995), 2, + ACTIONS(8984), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179309] = 4, + anon_sym_PIPE_RBRACE, + [179273] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6378), 1, + sym__automatic_semicolon, STATE(5234), 1, sym_comment, - ACTIONS(8079), 5, - sym__automatic_semicolon, + ACTIONS(2358), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179326] = 8, + [179292] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, STATE(5235), 1, sym_comment, - STATE(5276), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [179351] = 8, + ACTIONS(8086), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179309] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8997), 1, - anon_sym_LBRACE, - ACTIONS(8999), 1, - anon_sym_SEMI, - ACTIONS(9001), 1, - sym__automatic_semicolon, - ACTIONS(9003), 1, - sym__function_signature_automatic_semicolon, - STATE(1078), 1, - sym_statement_block, STATE(5236), 1, sym_comment, - [179376] = 4, + ACTIONS(8986), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179326] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5237), 1, sym_comment, - ACTIONS(8077), 5, + ACTIONS(8602), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179393] = 8, + [179343] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, STATE(5238), 1, sym_comment, - STATE(5392), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [179418] = 6, + ACTIONS(8090), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179360] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5239), 1, sym_comment, - STATE(6065), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8988), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179439] = 8, + anon_sym_PIPE_RBRACE, + [179377] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8168), 1, - anon_sym_EQ, - ACTIONS(9005), 1, - anon_sym_COMMA, - ACTIONS(9007), 1, - anon_sym_RBRACE, + ACTIONS(6331), 1, + sym__automatic_semicolon, STATE(5240), 1, sym_comment, - STATE(6308), 1, - aux_sym_enum_body_repeat1, - STATE(6465), 1, - sym__initializer, - [179464] = 6, + ACTIONS(2330), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179396] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(6329), 1, + sym__automatic_semicolon, STATE(5241), 1, sym_comment, - STATE(6067), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, + ACTIONS(2340), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179485] = 4, + anon_sym_PIPE_RBRACE, + [179415] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5242), 1, sym_comment, - ACTIONS(3424), 5, + STATE(6190), 1, + sym__initializer, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179502] = 6, + [179436] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5243), 1, sym_comment, - STATE(6068), 1, - sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8188), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179523] = 8, + anon_sym_PIPE_RBRACE, + [179453] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(9009), 1, - anon_sym_SEMI, - ACTIONS(9011), 1, + ACTIONS(6265), 1, sym__automatic_semicolon, - ACTIONS(9013), 1, - sym__function_signature_automatic_semicolon, - STATE(2940), 1, - sym_statement_block, STATE(5244), 1, sym_comment, - [179548] = 4, + ACTIONS(2398), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179472] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(8990), 1, + anon_sym_BQUOTE, + STATE(5165), 1, + aux_sym_template_literal_type_repeat1, STATE(5245), 1, sym_comment, - ACTIONS(2299), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179565] = 4, + STATE(5689), 1, + sym_template_type, + [179497] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5246), 1, sym_comment, - ACTIONS(2299), 5, + STATE(6133), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179582] = 6, + [179518] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5247), 1, sym_comment, - STATE(6072), 1, + STATE(6179), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179603] = 8, + [179539] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(9015), 1, - anon_sym_BQUOTE, - STATE(5087), 1, - aux_sym_template_literal_type_repeat1, STATE(5248), 1, sym_comment, - STATE(6024), 1, - sym_template_type, - [179628] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5249), 1, - sym_comment, - ACTIONS(3442), 5, + ACTIONS(8186), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179645] = 6, + [179556] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, - ACTIONS(9017), 1, - anon_sym_EQ_GT, - STATE(5250), 1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, + STATE(5243), 1, + sym__call_signature, + STATE(5249), 1, sym_comment, - STATE(6677), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [179666] = 4, + STATE(6730), 1, + sym_type_parameters, + [179581] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5251), 1, + STATE(5250), 1, sym_comment, - ACTIONS(3444), 5, + ACTIONS(8184), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179683] = 6, + [179598] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8933), 1, + anon_sym_LBRACE, + ACTIONS(8992), 1, + anon_sym_SEMI, + ACTIONS(8994), 1, + sym__automatic_semicolon, + ACTIONS(8996), 1, + sym__function_signature_automatic_semicolon, + STATE(393), 1, + sym_statement_block, + STATE(5251), 1, + sym_comment, + [179623] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, STATE(5252), 1, sym_comment, - STATE(5835), 1, - sym__initializer, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179704] = 6, + ACTIONS(8998), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [179640] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(8378), 1, + anon_sym_COLON, + ACTIONS(9000), 1, + anon_sym_EQ_GT, STATE(5253), 1, sym_comment, - STATE(6145), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179725] = 6, + STATE(6517), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [179661] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5254), 1, sym_comment, - STATE(6077), 1, + STATE(5770), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179746] = 8, + [179682] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5255), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6802), 1, - sym__call_signature, - [179771] = 4, + STATE(5755), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179703] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5256), 1, - sym_comment, - ACTIONS(3548), 5, - sym__automatic_semicolon, + ACTIONS(8128), 1, + anon_sym_EQ, + ACTIONS(9003), 1, anon_sym_COMMA, + ACTIONS(9005), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179788] = 8, + STATE(5256), 1, + sym_comment, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + STATE(6740), 1, + sym__initializer, + [179728] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5257), 1, sym_comment, - STATE(5382), 1, - sym__call_signature, - STATE(6561), 1, - sym_type_parameters, - [179813] = 4, + STATE(5918), 1, + sym__initializer, + ACTIONS(8917), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179749] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5258), 1, sym_comment, - ACTIONS(3546), 5, + STATE(5754), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179830] = 7, + [179770] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7439), 1, + ACTIONS(7452), 1, anon_sym_extends, - ACTIONS(8803), 1, + ACTIONS(8761), 1, anon_sym_PIPE, STATE(5259), 1, sym_comment, - ACTIONS(9020), 2, + ACTIONS(9007), 2, sym__automatic_semicolon, anon_sym_SEMI, - [179853] = 8, + [179793] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8997), 1, + ACTIONS(8196), 1, + anon_sym_LT, + ACTIONS(9009), 1, anon_sym_LBRACE, - ACTIONS(9022), 1, - anon_sym_SEMI, - ACTIONS(9024), 1, - sym__automatic_semicolon, - ACTIONS(9026), 1, - sym__function_signature_automatic_semicolon, - STATE(1045), 1, - sym_statement_block, STATE(5260), 1, sym_comment, - [179878] = 6, + STATE(5866), 1, + sym_type_arguments, + ACTIONS(9011), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [179816] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5261), 1, sym_comment, - STATE(6078), 1, + STATE(6137), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179899] = 4, + [179837] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5262), 1, sym_comment, - ACTIONS(3450), 5, + STATE(5724), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179916] = 6, + [179858] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5263), 1, sym_comment, - STATE(6079), 1, + STATE(5699), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179937] = 6, + [179879] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7964), 1, + anon_sym_LBRACE, + ACTIONS(9013), 1, + anon_sym_SEMI, + ACTIONS(9015), 1, + sym__automatic_semicolon, + ACTIONS(9017), 1, + sym__function_signature_automatic_semicolon, + STATE(5241), 1, + sym_statement_block, STATE(5264), 1, sym_comment, - STATE(5902), 1, - sym__initializer, - ACTIONS(9028), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179958] = 4, + [179904] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5265), 1, sym_comment, - ACTIONS(3454), 5, + ACTIONS(9019), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179975] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [179927] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5266), 1, sym_comment, - ACTIONS(5703), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [179992] = 6, + STATE(6121), 1, + sym__initializer, + ACTIONS(8917), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179948] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5267), 1, sym_comment, - STATE(5872), 1, + STATE(6007), 1, sym__initializer, - ACTIONS(9028), 3, + ACTIONS(9021), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180013] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [179969] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5268), 1, sym_comment, - ACTIONS(5697), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180030] = 6, + STATE(6355), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [179994] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5269), 1, sym_comment, - STATE(6143), 1, + STATE(5662), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180051] = 4, + [180015] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5270), 1, sym_comment, - ACTIONS(3524), 5, + STATE(6117), 1, + sym__initializer, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180068] = 8, + [180036] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - ACTIONS(8977), 1, - anon_sym_SEMI, - ACTIONS(8979), 1, - sym__automatic_semicolon, - ACTIONS(8981), 1, - sym__function_signature_automatic_semicolon, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5271), 1, sym_comment, - STATE(5706), 1, - sym_statement_block, - [180093] = 4, + STATE(5663), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180057] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, + STATE(4682), 1, + sym__call_signature, STATE(5272), 1, sym_comment, - ACTIONS(3526), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180110] = 7, + STATE(6621), 1, + sym_type_parameters, + [180082] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5273), 1, sym_comment, - ACTIONS(9030), 2, + STATE(6009), 1, + sym__initializer, + ACTIONS(9021), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [180133] = 4, + [180103] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7964), 1, + anon_sym_LBRACE, + ACTIONS(8962), 1, + anon_sym_SEMI, + ACTIONS(8964), 1, + sym__automatic_semicolon, + ACTIONS(8966), 1, + sym__function_signature_automatic_semicolon, STATE(5274), 1, sym_comment, - ACTIONS(3530), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180150] = 6, + STATE(5762), 1, + sym_statement_block, + [180128] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5275), 1, sym_comment, - STATE(5818), 1, + STATE(5668), 1, sym__initializer, - ACTIONS(8767), 3, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180171] = 4, + [180149] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5276), 1, sym_comment, - ACTIONS(8075), 5, + ACTIONS(9023), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180188] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [180172] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5277), 1, sym_comment, - ACTIONS(5687), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180205] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5671), 1, + sym__initializer, + ACTIONS(8943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180193] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5278), 1, sym_comment, - ACTIONS(5545), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180222] = 8, + STATE(6313), 1, + sym__initializer, + ACTIONS(9025), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180214] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(8027), 1, - anon_sym_LBRACE, - ACTIONS(8029), 1, - anon_sym_LBRACE_PIPE, - STATE(1397), 1, - sym_object_type, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5279), 1, sym_comment, - STATE(6263), 1, - sym_extends_type_clause, - [180247] = 6, + STATE(6294), 1, + sym__initializer, + ACTIONS(9027), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180235] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5280), 1, sym_comment, - STATE(6087), 1, + STATE(5686), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180268] = 6, + [180256] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5281), 1, sym_comment, - STATE(5800), 1, - sym__initializer, - ACTIONS(8767), 3, + ACTIONS(9029), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [180289] = 6, + [180279] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5282), 1, sym_comment, - STATE(5839), 1, - sym__initializer, - ACTIONS(9028), 3, + ACTIONS(9031), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180310] = 8, + anon_sym_PIPE_RBRACE, + [180296] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(9032), 1, - anon_sym_SEMI, - ACTIONS(9034), 1, - sym__automatic_semicolon, - ACTIONS(9036), 1, - sym__function_signature_automatic_semicolon, - STATE(3082), 1, - sym_statement_block, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, STATE(5283), 1, sym_comment, - [180335] = 8, + STATE(6288), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + [180321] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(9038), 1, - anon_sym_BQUOTE, - STATE(5248), 1, - aux_sym_template_literal_type_repeat1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5284), 1, sym_comment, - STATE(6024), 1, - sym_template_type, - [180360] = 4, + STATE(5687), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180342] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5285), 1, sym_comment, - ACTIONS(3538), 5, + STATE(5688), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180377] = 4, + [180363] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5286), 1, sym_comment, - ACTIONS(3540), 5, + STATE(6109), 1, + sym__initializer, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180394] = 4, + [180384] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5287), 1, sym_comment, - ACTIONS(3508), 5, + STATE(5709), 1, + sym__initializer, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180411] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [180405] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5288), 1, sym_comment, - ACTIONS(5627), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180428] = 4, + STATE(6084), 1, + sym__initializer, + ACTIONS(8917), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180426] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5289), 1, sym_comment, - ACTIONS(3542), 5, + STATE(6261), 1, + sym__initializer, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180445] = 8, + [180447] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5290), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6754), 1, - sym__call_signature, - [180470] = 4, + STATE(6251), 1, + sym__initializer, + ACTIONS(9033), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180468] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5291), 1, sym_comment, - ACTIONS(3544), 5, + STATE(6249), 1, + sym__initializer, + ACTIONS(9033), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180487] = 8, + [180489] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5292), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6737), 1, - sym__call_signature, - [180512] = 4, + STATE(6229), 1, + sym__initializer, + ACTIONS(8718), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180510] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5293), 1, sym_comment, - ACTIONS(3518), 5, + STATE(6218), 1, + sym__initializer, + ACTIONS(9033), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180529] = 6, + [180531] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5294), 1, sym_comment, - STATE(6139), 1, + STATE(6211), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(9033), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180550] = 4, + [180552] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5295), 1, sym_comment, - ACTIONS(6008), 5, - anon_sym_EQ, + STATE(5710), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [180567] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + [180573] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8795), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5296), 1, sym_comment, - STATE(5427), 1, - sym_string, - STATE(7080), 1, - sym__module_export_name, - [180592] = 4, + STATE(5712), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180594] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5297), 1, sym_comment, - ACTIONS(2301), 5, + STATE(5722), 1, + sym__initializer, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180609] = 8, + [180615] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(9040), 1, - anon_sym_BQUOTE, - STATE(5087), 1, - aux_sym_template_literal_type_repeat1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5298), 1, sym_comment, - STATE(6024), 1, - sym_template_type, - [180634] = 4, + STATE(6187), 1, + sym__initializer, + ACTIONS(8718), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180636] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5299), 1, sym_comment, - ACTIONS(2313), 5, + STATE(6172), 1, + sym__initializer, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180651] = 4, + [180657] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5300), 1, sym_comment, - ACTIONS(2295), 5, + STATE(5698), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180668] = 8, + [180678] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8647), 1, - anon_sym_abstract, - ACTIONS(9042), 1, - anon_sym_class, - STATE(4706), 1, - aux_sym_export_statement_repeat1, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(9035), 1, + anon_sym_BQUOTE, + STATE(5165), 1, + aux_sym_template_literal_type_repeat1, STATE(5301), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [180693] = 4, + STATE(5689), 1, + sym_template_type, + [180703] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5302), 1, sym_comment, - ACTIONS(2339), 5, + STATE(6083), 1, + sym__initializer, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180710] = 6, + [180724] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5303), 1, sym_comment, - STATE(6136), 1, + STATE(6162), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180731] = 6, + [180745] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5304), 1, sym_comment, - STATE(6097), 1, + STATE(5741), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180752] = 6, + [180766] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5305), 1, sym_comment, - STATE(5822), 1, + STATE(6071), 1, sym__initializer, - ACTIONS(9028), 3, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180773] = 8, + [180787] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(9044), 1, - anon_sym_SEMI, - ACTIONS(9046), 1, - sym__automatic_semicolon, - ACTIONS(9048), 1, - sym__function_signature_automatic_semicolon, - STATE(3182), 1, - sym_statement_block, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5306), 1, sym_comment, - [180798] = 6, + STATE(6158), 1, + sym__initializer, + ACTIONS(9033), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180808] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5307), 1, sym_comment, - STATE(5787), 1, + STATE(5863), 1, sym__initializer, - ACTIONS(8793), 3, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180819] = 4, + [180829] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5308), 1, sym_comment, - ACTIONS(3540), 5, + STATE(5759), 1, + sym__initializer, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180836] = 6, + [180850] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(4850), 1, + anon_sym_LBRACE, + ACTIONS(9037), 1, + anon_sym_SEMI, + ACTIONS(9039), 1, + sym__automatic_semicolon, + ACTIONS(9041), 1, + sym__function_signature_automatic_semicolon, + STATE(3185), 1, + sym_statement_block, STATE(5309), 1, sym_comment, - STATE(5821), 1, - sym__initializer, - ACTIONS(9050), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180857] = 4, + [180875] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5310), 1, sym_comment, - ACTIONS(3540), 5, + STATE(6156), 1, + sym__initializer, + ACTIONS(9033), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180874] = 6, + [180896] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5311), 1, sym_comment, - STATE(5820), 1, + STATE(5760), 1, sym__initializer, - ACTIONS(9050), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180895] = 6, + [180917] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5312), 1, sym_comment, - STATE(6105), 1, + STATE(5761), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180916] = 4, + [180938] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5313), 1, sym_comment, - ACTIONS(3540), 5, + STATE(6052), 1, + sym__initializer, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180933] = 6, + [180959] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5314), 1, sym_comment, - STATE(6135), 1, + STATE(6013), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(9021), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180954] = 4, + [180980] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5315), 1, sym_comment, - ACTIONS(3540), 5, + STATE(6085), 1, + sym__initializer, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180971] = 4, + [181001] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5316), 1, sym_comment, - ACTIONS(3574), 5, + STATE(6015), 1, + sym__initializer, + ACTIONS(9021), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180988] = 4, + [181022] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5317), 1, sym_comment, - ACTIONS(3566), 5, + STATE(6059), 1, + sym__initializer, + ACTIONS(8972), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181005] = 8, + [181043] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8168), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(9052), 1, - anon_sym_COMMA, - ACTIONS(9054), 1, - anon_sym_RBRACE, STATE(5318), 1, sym_comment, - STATE(6053), 1, - aux_sym_enum_body_repeat1, - STATE(6465), 1, + STATE(6114), 1, sym__initializer, - [181030] = 6, + ACTIONS(8718), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181064] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5319), 1, sym_comment, - STATE(5731), 1, + STATE(6108), 1, sym__initializer, - ACTIONS(9028), 3, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181051] = 4, + [181085] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5320), 1, sym_comment, - ACTIONS(3566), 5, + ACTIONS(9043), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181068] = 6, + [181108] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(8128), 1, anon_sym_EQ, + ACTIONS(9045), 1, + anon_sym_COMMA, + ACTIONS(9047), 1, + anon_sym_RBRACE, STATE(5321), 1, sym_comment, - STATE(5679), 1, + STATE(6337), 1, + aux_sym_enum_body_repeat1, + STATE(6740), 1, sym__initializer, - ACTIONS(9028), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181089] = 8, + [181133] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, - STATE(4910), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5322), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [181114] = 4, + STATE(6107), 1, + sym__initializer, + ACTIONS(9033), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181154] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5323), 1, sym_comment, - ACTIONS(8176), 5, + STATE(6106), 1, + sym__initializer, + ACTIONS(9033), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181131] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [181175] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9056), 1, - sym_identifier, - ACTIONS(9058), 1, - anon_sym_GT, - ACTIONS(9060), 1, - sym_jsx_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5324), 1, sym_comment, - STATE(6844), 1, - sym_nested_identifier, - STATE(7125), 1, - sym_jsx_namespace_name, - [181156] = 6, + STATE(6069), 1, + sym__initializer, + ACTIONS(8718), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181196] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5325), 1, sym_comment, - STATE(6108), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(9049), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [181177] = 6, + [181219] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, + ACTIONS(9051), 1, + anon_sym_LBRACE, + ACTIONS(9053), 1, + anon_sym_SEMI, + ACTIONS(9055), 1, + sym__automatic_semicolon, + ACTIONS(9057), 1, + sym__function_signature_automatic_semicolon, + STATE(950), 1, + sym_statement_block, STATE(5326), 1, sym_comment, - STATE(6083), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181198] = 4, + [181244] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5327), 1, sym_comment, - ACTIONS(3528), 5, + STATE(6041), 1, + sym__initializer, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181215] = 8, + [181265] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5328), 1, sym_comment, - STATE(6411), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [181240] = 4, + STATE(6012), 1, + sym__initializer, + ACTIONS(8718), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181286] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5329), 1, sym_comment, - ACTIONS(9062), 5, + STATE(5978), 1, + sym__initializer, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181257] = 6, + [181307] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5330), 1, sym_comment, - STATE(6109), 1, + STATE(5977), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(9033), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181278] = 4, + [181328] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5331), 1, - sym_comment, - ACTIONS(3566), 5, - sym__automatic_semicolon, + ACTIONS(8128), 1, + anon_sym_EQ, + ACTIONS(9059), 1, anon_sym_COMMA, + ACTIONS(9061), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181295] = 6, + STATE(5331), 1, + sym_comment, + STATE(6235), 1, + aux_sym_enum_body_repeat1, + STATE(6740), 1, + sym__initializer, + [181353] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, - ACTIONS(9064), 1, - anon_sym_EQ_GT, + ACTIONS(9053), 1, + anon_sym_SEMI, + ACTIONS(9055), 1, + sym__automatic_semicolon, + ACTIONS(9057), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9063), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym_statement_block, STATE(5332), 1, sym_comment, - STATE(6677), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [181316] = 6, + [181378] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, + STATE(5333), 1, + sym_comment, + ACTIONS(9065), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [181401] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5333), 1, + STATE(5334), 1, sym_comment, - STATE(5816), 1, + STATE(5976), 1, sym__initializer, - ACTIONS(8711), 3, + ACTIONS(9033), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181337] = 6, + [181422] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8431), 1, + ACTIONS(8378), 1, anon_sym_COLON, ACTIONS(9067), 1, anon_sym_EQ_GT, - STATE(5334), 1, + STATE(5335), 1, sym_comment, - STATE(6908), 3, + STATE(6517), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [181358] = 4, - ACTIONS(3), 1, + [181443] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9051), 1, + anon_sym_LBRACE, + ACTIONS(9070), 1, + anon_sym_SEMI, + ACTIONS(9072), 1, + sym__automatic_semicolon, + ACTIONS(9074), 1, + sym__function_signature_automatic_semicolon, + STATE(946), 1, + sym_statement_block, + STATE(5336), 1, + sym_comment, + [181468] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(5335), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8378), 1, + anon_sym_COLON, + ACTIONS(9076), 1, + anon_sym_EQ_GT, + STATE(5337), 1, sym_comment, - ACTIONS(5583), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181375] = 6, + STATE(6751), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181489] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5336), 1, + STATE(5338), 1, sym_comment, - STATE(6131), 1, + STATE(5962), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181396] = 4, + [181510] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5337), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5339), 1, sym_comment, - ACTIONS(3532), 5, + STATE(6058), 1, + sym__initializer, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181413] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5338), 1, - sym_comment, - ACTIONS(5613), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181430] = 8, + [181531] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, - STATE(4491), 1, - sym__call_signature, - STATE(5339), 1, - sym_comment, - STATE(6986), 1, - sym_type_parameters, - [181455] = 4, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5340), 1, sym_comment, - ACTIONS(5583), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181472] = 4, + STATE(5950), 1, + sym__initializer, + ACTIONS(8718), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181552] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5341), 1, sym_comment, - ACTIONS(8176), 5, + ACTIONS(9079), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181489] = 6, + [181569] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5342), 1, sym_comment, - STATE(6113), 1, + STATE(5949), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(9033), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181510] = 4, + [181590] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5343), 1, sym_comment, - ACTIONS(9070), 5, + ACTIONS(8172), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181527] = 8, + [181607] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8060), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, - anon_sym_SEMI, - ACTIONS(9046), 1, - sym__automatic_semicolon, - ACTIONS(9048), 1, - sym__function_signature_automatic_semicolon, + ACTIONS(8062), 1, + anon_sym_LBRACE_PIPE, + STATE(1028), 1, + sym_object_type, STATE(5344), 1, sym_comment, - STATE(5678), 1, - sym_statement_block, - [181552] = 8, + STATE(6265), 1, + sym_extends_type_clause, + [181632] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, STATE(5345), 1, sym_comment, - STATE(5910), 1, - sym__call_signature, - STATE(6986), 1, - sym_type_parameters, - [181577] = 8, + ACTIONS(8182), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181649] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(9063), 1, + anon_sym_LBRACE, + ACTIONS(9070), 1, + anon_sym_SEMI, + ACTIONS(9072), 1, + sym__automatic_semicolon, + ACTIONS(9074), 1, + sym__function_signature_automatic_semicolon, + STATE(321), 1, + sym_statement_block, STATE(5346), 1, sym_comment, - STATE(6433), 1, - sym__call_signature, - STATE(6459), 1, - sym_type_parameters, - [181602] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [181674] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7964), 1, + anon_sym_LBRACE, + ACTIONS(9037), 1, + anon_sym_SEMI, + ACTIONS(9039), 1, + sym__automatic_semicolon, + ACTIONS(9041), 1, + sym__function_signature_automatic_semicolon, STATE(5347), 1, sym_comment, - ACTIONS(5601), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181619] = 7, + STATE(6177), 1, + sym_statement_block, + [181699] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5348), 1, sym_comment, - ACTIONS(9072), 2, + STATE(5947), 1, + sym__initializer, + ACTIONS(9033), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [181642] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5349), 1, - sym_comment, - ACTIONS(5587), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181659] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8795), 1, - sym_identifier, - STATE(5350), 1, - sym_comment, - STATE(5427), 1, - sym_string, - STATE(5940), 1, - sym__module_export_name, - [181684] = 4, + [181720] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5351), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5349), 1, sym_comment, - ACTIONS(8351), 5, + STATE(5786), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181701] = 8, + [181741] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4494), 1, + STATE(5250), 1, sym__call_signature, - STATE(5352), 1, + STATE(5350), 1, sym_comment, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - [181726] = 4, + [181766] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5353), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, + STATE(5351), 1, sym_comment, - ACTIONS(8174), 5, + ACTIONS(9081), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181743] = 4, + [181789] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5354), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5352), 1, sym_comment, - ACTIONS(9074), 5, + STATE(6056), 1, + sym__initializer, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181760] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [181810] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(5355), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(5353), 1, sym_comment, - ACTIONS(5583), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181777] = 8, + ACTIONS(8116), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181827] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - STATE(4061), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(4499), 1, + STATE(4526), 1, sym__call_signature, - STATE(5356), 1, + STATE(5354), 1, sym_comment, - STATE(6986), 1, + STATE(6730), 1, sym_type_parameters, - [181802] = 8, + [181852] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, sym_formal_parameters, - STATE(5357), 1, - sym_comment, - STATE(6449), 1, + STATE(5170), 1, sym__call_signature, - STATE(6459), 1, + STATE(5355), 1, + sym_comment, + STATE(6730), 1, sym_type_parameters, - [181827] = 4, - ACTIONS(3), 1, + [181877] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(5356), 1, + sym_comment, + ACTIONS(8118), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181894] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + STATE(5357), 1, + sym_comment, + ACTIONS(9083), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181911] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5358), 1, sym_comment, - ACTIONS(9076), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181844] = 8, + ACTIONS(8172), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181928] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, - STATE(4539), 1, - sym__call_signature, STATE(5359), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [181869] = 4, + ACTIONS(8118), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181945] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5360), 1, sym_comment, - ACTIONS(8589), 5, + ACTIONS(9085), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181886] = 6, + anon_sym_PIPE_RBRACE, + [181962] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5361), 1, sym_comment, - STATE(5981), 1, - sym__initializer, - ACTIONS(9078), 3, + ACTIONS(8116), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181907] = 4, + anon_sym_PIPE_RBRACE, + [181979] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, + STATE(4463), 1, + sym__call_signature, STATE(5362), 1, sym_comment, - ACTIONS(3532), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181924] = 4, + STATE(6730), 1, + sym_type_parameters, + [182004] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5363), 1, sym_comment, - ACTIONS(3534), 5, + ACTIONS(9087), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181941] = 4, + [182021] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5364), 1, sym_comment, - ACTIONS(9080), 5, + ACTIONS(9089), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181958] = 8, + [182038] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(9082), 1, - anon_sym_BQUOTE, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, + STATE(4523), 1, + sym__call_signature, STATE(5365), 1, sym_comment, - STATE(5393), 1, - aux_sym_template_literal_type_repeat1, - STATE(6024), 1, - sym_template_type, - [181983] = 7, + STATE(6730), 1, + sym_type_parameters, + [182063] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5366), 1, sym_comment, - ACTIONS(9084), 2, + STATE(5823), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [182006] = 8, + [182084] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - ACTIONS(7233), 1, + ACTIONS(7214), 1, anon_sym_LPAREN, - STATE(4286), 1, + STATE(4041), 1, sym_formal_parameters, - STATE(5026), 1, + STATE(4516), 1, sym__call_signature, STATE(5367), 1, sym_comment, - STATE(6561), 1, + STATE(6730), 1, sym_type_parameters, - [182031] = 4, + [182109] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5368), 1, sym_comment, - ACTIONS(3554), 5, + STATE(5830), 1, + sym__initializer, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182048] = 8, + [182130] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9022), 1, - anon_sym_SEMI, - ACTIONS(9024), 1, - sym__automatic_semicolon, - ACTIONS(9026), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9086), 1, - anon_sym_LBRACE, - STATE(401), 1, - sym_statement_block, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5369), 1, sym_comment, - [182073] = 4, + STATE(5831), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182151] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5370), 1, sym_comment, - ACTIONS(3552), 5, + STATE(5832), 1, + sym__initializer, + ACTIONS(8943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182090] = 7, + [182172] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8145), 1, - anon_sym_LT, - ACTIONS(9088), 1, - anon_sym_LBRACE, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5371), 1, sym_comment, - STATE(5648), 1, - sym_type_arguments, - ACTIONS(9090), 2, + STATE(5837), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [182113] = 6, + anon_sym_SEMI, + [182193] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5372), 1, sym_comment, - STATE(5766), 1, + STATE(5838), 1, sym__initializer, - ACTIONS(9092), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182134] = 8, + [182214] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(5236), 1, - sym__call_signature, STATE(5373), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [182159] = 8, + ACTIONS(9091), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [182231] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, - STATE(4505), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5374), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [182184] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5839), 1, + sym__initializer, + ACTIONS(8943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182252] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5375), 1, sym_comment, - ACTIONS(5431), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [182201] = 8, + STATE(5845), 1, + sym__initializer, + ACTIONS(8943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182273] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(5283), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5376), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [182226] = 6, + STATE(5861), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182294] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5377), 1, sym_comment, - STATE(6122), 1, + STATE(6045), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182247] = 4, + [182315] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(4786), 1, + sym_formal_parameters, STATE(5378), 1, sym_comment, - ACTIONS(5880), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [182264] = 7, + STATE(6681), 1, + sym__call_signature, + STATE(6818), 1, + sym_type_parameters, + [182340] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7439), 1, + ACTIONS(7452), 1, anon_sym_extends, - ACTIONS(8803), 1, + ACTIONS(8761), 1, anon_sym_PIPE, STATE(5379), 1, sym_comment, - ACTIONS(9094), 2, + ACTIONS(9093), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182287] = 4, + [182363] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5380), 1, sym_comment, - ACTIONS(3440), 5, + STATE(6031), 1, + sym__initializer, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182304] = 6, + [182384] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, - anon_sym_EQ, STATE(5381), 1, sym_comment, - STATE(6123), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(9095), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182325] = 8, + anon_sym_PIPE_RBRACE, + [182401] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - ACTIONS(9009), 1, - anon_sym_SEMI, - ACTIONS(9011), 1, - sym__automatic_semicolon, - ACTIONS(9013), 1, - sym__function_signature_automatic_semicolon, - STATE(5187), 1, - sym_statement_block, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, + STATE(4502), 1, + sym__call_signature, STATE(5382), 1, sym_comment, - [182350] = 6, + STATE(6730), 1, + sym_type_parameters, + [182426] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, STATE(5383), 1, sym_comment, - STATE(6124), 1, + STATE(6034), 1, sym__initializer, - ACTIONS(8875), 3, + ACTIONS(8917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182371] = 6, + [182447] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8431), 1, - anon_sym_COLON, - ACTIONS(9096), 1, - anon_sym_EQ_GT, STATE(5384), 1, sym_comment, - STATE(6908), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [182392] = 4, + ACTIONS(9097), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182464] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5385), 1, sym_comment, - ACTIONS(3540), 5, + STATE(5862), 1, + sym__initializer, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182409] = 8, + [182485] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(4813), 1, - sym_formal_parameters, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(9099), 1, + anon_sym_BQUOTE, STATE(5386), 1, sym_comment, - STATE(6459), 1, - sym_type_parameters, - STATE(6595), 1, - sym__call_signature, - [182434] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5402), 1, + aux_sym_template_literal_type_repeat1, + STATE(5689), 1, + sym_template_type, + [182510] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8378), 1, + anon_sym_COLON, + ACTIONS(9101), 1, + anon_sym_EQ_GT, STATE(5387), 1, sym_comment, - ACTIONS(5033), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [182451] = 8, + STATE(6751), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [182531] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + STATE(5388), 1, + sym_comment, + ACTIONS(9104), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182548] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4127), 1, sym_formal_parameters, - STATE(5388), 1, + STATE(4710), 1, + sym__call_signature, + STATE(5389), 1, sym_comment, - STATE(6459), 1, + STATE(6621), 1, sym_type_parameters, - STATE(6863), 1, - sym__call_signature, - [182476] = 7, + [182573] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, - STATE(5389), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5390), 1, sym_comment, - ACTIONS(9099), 2, + STATE(5911), 1, + sym__initializer, + ACTIONS(9106), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [182499] = 8, + [182594] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8168), 1, + ACTIONS(7176), 1, anon_sym_EQ, - ACTIONS(9101), 1, - anon_sym_COMMA, - ACTIONS(9103), 1, - anon_sym_RBRACE, - STATE(5390), 1, + STATE(5391), 1, sym_comment, - STATE(6057), 1, - aux_sym_enum_body_repeat1, - STATE(6465), 1, + STATE(5904), 1, sym__initializer, - [182524] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9108), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182615] = 7, ACTIONS(5), 1, sym_html_comment, - STATE(5391), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, + STATE(5392), 1, sym_comment, - ACTIONS(5029), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [182541] = 8, + ACTIONS(9110), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182638] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8999), 1, + ACTIONS(8992), 1, anon_sym_SEMI, - ACTIONS(9001), 1, + ACTIONS(8994), 1, sym__automatic_semicolon, - ACTIONS(9003), 1, + ACTIONS(8996), 1, sym__function_signature_automatic_semicolon, - ACTIONS(9086), 1, + ACTIONS(9112), 1, anon_sym_LBRACE, - STATE(399), 1, + STATE(976), 1, sym_statement_block, - STATE(5392), 1, - sym_comment, - [182566] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8719), 1, - sym__template_chars, - ACTIONS(9105), 1, - anon_sym_BQUOTE, - STATE(5087), 1, - aux_sym_template_literal_type_repeat1, STATE(5393), 1, sym_comment, - STATE(6024), 1, - sym_template_type, - [182591] = 8, + [182663] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1352), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7995), 1, - anon_sym_extends, - ACTIONS(8013), 1, - anon_sym_LBRACE_PIPE, - STATE(5256), 1, - sym_object_type, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, STATE(5394), 1, sym_comment, - STATE(6016), 1, - sym_extends_type_clause, - [182616] = 8, + STATE(5897), 1, + sym__call_signature, + STATE(6730), 1, + sym_type_parameters, + [182688] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4061), 1, - sym_formal_parameters, - STATE(4518), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5395), 1, sym_comment, - STATE(6986), 1, - sym_type_parameters, - [182641] = 4, + STATE(5893), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182709] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8128), 1, + anon_sym_EQ, + ACTIONS(9114), 1, + anon_sym_COMMA, + ACTIONS(9116), 1, + anon_sym_RBRACE, STATE(5396), 1, sym_comment, - ACTIONS(5882), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [182658] = 8, + STATE(6312), 1, + aux_sym_enum_body_repeat1, + STATE(6740), 1, + sym__initializer, + [182734] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, + ACTIONS(7186), 1, anon_sym_LT, - STATE(4813), 1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4041), 1, sym_formal_parameters, + STATE(4486), 1, + sym__call_signature, STATE(5397), 1, sym_comment, - STATE(6459), 1, + STATE(6730), 1, sym_type_parameters, - STATE(6475), 1, - sym__call_signature, - [182683] = 8, + [182759] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(5244), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5398), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [182708] = 8, + STATE(6039), 1, + sym__initializer, + ACTIONS(8917), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182780] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8423), 1, - anon_sym_class, - ACTIONS(8425), 1, - anon_sym_abstract, - STATE(4706), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5399), 1, sym_comment, - STATE(5608), 1, - sym_decorator, - [182733] = 8, + STATE(5891), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182801] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(5260), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5400), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [182758] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6043), 1, + sym__initializer, + ACTIONS(8917), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182822] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + ACTIONS(9013), 1, + anon_sym_SEMI, + ACTIONS(9015), 1, + sym__automatic_semicolon, + ACTIONS(9017), 1, + sym__function_signature_automatic_semicolon, + STATE(2997), 1, + sym_statement_block, STATE(5401), 1, sym_comment, - ACTIONS(5427), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [182775] = 7, + [182847] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(8727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8729), 1, + sym__template_chars, + ACTIONS(9118), 1, + anon_sym_BQUOTE, + STATE(5165), 1, + aux_sym_template_literal_type_repeat1, + STATE(5402), 1, + sym_comment, + STATE(5689), 1, + sym_template_type, + [182872] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7439), 1, + ACTIONS(7452), 1, anon_sym_extends, - ACTIONS(8803), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - STATE(5402), 1, + STATE(5403), 1, sym_comment, - ACTIONS(9107), 2, + ACTIONS(9120), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182798] = 8, + [182895] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - ACTIONS(9032), 1, + ACTIONS(8935), 1, anon_sym_SEMI, - ACTIONS(9034), 1, + ACTIONS(8937), 1, sym__automatic_semicolon, - ACTIONS(9036), 1, + ACTIONS(8939), 1, sym__function_signature_automatic_semicolon, - STATE(5189), 1, + ACTIONS(9112), 1, + anon_sym_LBRACE, + STATE(1039), 1, sym_statement_block, - STATE(5403), 1, - sym_comment, - [182823] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, STATE(5404), 1, sym_comment, - ACTIONS(5025), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [182840] = 4, + [182920] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5405), 1, sym_comment, - ACTIONS(2247), 5, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_GT, - anon_sym_DOT, - [182857] = 8, + STATE(5876), 1, + sym__initializer, + ACTIONS(8943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182941] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4286), 1, - sym_formal_parameters, - STATE(4627), 1, - sym__call_signature, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5406), 1, sym_comment, - STATE(6561), 1, - sym_type_parameters, - [182882] = 4, + STATE(5875), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182962] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7176), 1, + anon_sym_EQ, STATE(5407), 1, sym_comment, - ACTIONS(2087), 5, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_GT, - anon_sym_DOT, - [182899] = 7, + STATE(5873), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182983] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, + ACTIONS(7176), 1, + anon_sym_EQ, + STATE(5408), 1, + sym_comment, + STATE(5872), 1, + sym__initializer, + ACTIONS(8929), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183004] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7439), 1, + ACTIONS(7452), 1, anon_sym_extends, - ACTIONS(8803), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - STATE(5408), 1, + STATE(5409), 1, sym_comment, - ACTIONS(9109), 2, + ACTIONS(9122), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182922] = 6, + [183027] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7165), 1, + ACTIONS(7176), 1, anon_sym_EQ, - STATE(5409), 1, + STATE(5410), 1, sym_comment, - STATE(5750), 1, + STATE(5871), 1, sym__initializer, - ACTIONS(9111), 3, + ACTIONS(8929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182943] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [183048] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9113), 1, - sym_html_character_reference, - ACTIONS(9115), 1, - anon_sym_SQUOTE, - ACTIONS(9117), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(5410), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8026), 1, + anon_sym_extends, + ACTIONS(8174), 1, + anon_sym_LBRACE, + ACTIONS(8176), 1, + anon_sym_LBRACE_PIPE, + STATE(1399), 1, + sym_object_type, + STATE(5411), 1, sym_comment, - STATE(5425), 1, - aux_sym__jsx_string_repeat2, - [182965] = 6, + STATE(6267), 1, + sym_extends_type_clause, + [183073] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9119), 1, + ACTIONS(9124), 1, anon_sym_DQUOTE, - STATE(5411), 1, + STATE(5412), 1, sym_comment, - STATE(5479), 1, + STATE(5598), 1, aux_sym_string_repeat1, - ACTIONS(9121), 2, + ACTIONS(9126), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [182985] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - ACTIONS(9125), 1, - anon_sym_SEMI, - ACTIONS(9127), 1, - sym__automatic_semicolon, - STATE(5412), 1, - sym_comment, - STATE(6767), 1, - sym_import_attribute, - [183007] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9129), 1, - anon_sym_STAR, - ACTIONS(9131), 1, - anon_sym_LBRACE, - STATE(5413), 1, - sym_comment, - STATE(7126), 2, - sym_namespace_import, - sym_named_imports, - [183027] = 7, + [183093] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8196), 1, + ACTIONS(8106), 1, anon_sym_DOT, - ACTIONS(9133), 1, + ACTIONS(9128), 1, anon_sym_COMMA, - ACTIONS(9135), 1, + ACTIONS(9130), 1, anon_sym_GT, - STATE(5414), 1, + STATE(5413), 1, sym_comment, - STATE(6023), 1, + STATE(6274), 1, aux_sym_type_arguments_repeat1, - [183049] = 7, + [183115] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, + ACTIONS(7128), 1, anon_sym_LPAREN, - ACTIONS(9137), 1, + ACTIONS(7134), 1, anon_sym_LT, - STATE(2243), 1, - sym_type_arguments, - STATE(2244), 1, + STATE(3980), 1, sym_arguments, + STATE(4221), 1, + sym_type_arguments, + STATE(5414), 1, + sym_comment, + [183137] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, + ACTIONS(9134), 1, + anon_sym_SEMI, + ACTIONS(9136), 1, + sym__automatic_semicolon, STATE(5415), 1, sym_comment, - [183071] = 7, + STATE(6411), 1, + sym_import_attribute, + [183159] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(9139), 1, - anon_sym_RPAREN, + ACTIONS(9138), 1, + anon_sym_RBRACK, STATE(5416), 1, sym_comment, - [183093] = 7, + [183181] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(9141), 1, - anon_sym_RBRACK, + ACTIONS(9140), 1, + anon_sym_RPAREN, STATE(5417), 1, sym_comment, - [183115] = 6, + [183203] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8168), 1, - anon_sym_EQ, + ACTIONS(9142), 1, + anon_sym_SQUOTE, STATE(5418), 1, sym_comment, - STATE(6465), 1, - sym__initializer, - ACTIONS(9143), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [183135] = 6, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183223] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8369), 1, - anon_sym_finally, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9146), 1, + anon_sym_RBRACK, STATE(5419), 1, sym_comment, - STATE(6697), 1, - sym_finally_clause, - ACTIONS(3116), 2, - anon_sym_else, - anon_sym_while, - [183155] = 6, + [183245] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9145), 1, - anon_sym_LBRACE, - ACTIONS(9147), 1, + ACTIONS(9148), 1, anon_sym_COMMA, - ACTIONS(9150), 1, - anon_sym_LBRACE_PIPE, - STATE(5420), 2, + STATE(5420), 1, sym_comment, - aux_sym_extends_type_clause_repeat1, - [183175] = 7, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9150), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183265] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, ACTIONS(9152), 1, anon_sym_RBRACK, STATE(5421), 1, sym_comment, - [183197] = 7, + [183287] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9154), 1, - anon_sym_RBRACK, + ACTIONS(9148), 1, + anon_sym_COMMA, STATE(5422), 1, sym_comment, - [183219] = 7, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9154), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183307] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, ACTIONS(9156), 1, anon_sym_RBRACK, STATE(5423), 1, sym_comment, - [183241] = 5, + [183329] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, + ACTIONS(9158), 1, + anon_sym_SEMI, + ACTIONS(9160), 1, + sym__automatic_semicolon, STATE(5424), 1, sym_comment, - ACTIONS(3138), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(9158), 2, + STATE(6447), 1, + sym_import_attribute, + [183351] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, + STATE(5425), 1, + sym_comment, + STATE(6450), 1, + sym_import_attribute, + ACTIONS(9162), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183371] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, + STATE(5426), 1, + sym_comment, + STATE(6451), 1, + sym_import_attribute, + ACTIONS(9164), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183391] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9166), 1, + anon_sym_COLON, + STATE(5427), 1, + sym_comment, + [183413] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5428), 1, + sym_comment, + STATE(6464), 1, + sym__from_clause, + ACTIONS(5926), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183259] = 7, + [183433] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9113), 1, + ACTIONS(9170), 1, sym_html_character_reference, - ACTIONS(9117), 1, - sym_unescaped_single_jsx_string_fragment, - ACTIONS(9160), 1, + ACTIONS(9173), 1, anon_sym_SQUOTE, - STATE(5425), 1, + ACTIONS(9175), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(5429), 2, + sym_comment, + aux_sym__jsx_string_repeat2, + [183453] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9178), 1, + anon_sym_RBRACK, + STATE(5430), 1, sym_comment, - STATE(5609), 1, - aux_sym__jsx_string_repeat2, - [183281] = 7, + [183475] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9160), 1, - anon_sym_DQUOTE, - ACTIONS(9162), 1, + ACTIONS(9180), 1, sym_html_character_reference, - ACTIONS(9164), 1, + ACTIONS(9183), 1, + anon_sym_DQUOTE, + ACTIONS(9185), 1, sym_unescaped_double_jsx_string_fragment, - STATE(5426), 1, + STATE(5431), 2, sym_comment, - STATE(5612), 1, aux_sym__jsx_string_repeat1, - [183303] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5427), 1, - sym_comment, - ACTIONS(9166), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [183319] = 7, + [183495] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(9168), 1, + ACTIONS(9188), 1, anon_sym_COLON, - STATE(5428), 1, + STATE(5432), 1, sym_comment, - [183341] = 6, + [183517] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9170), 1, + ACTIONS(9190), 1, anon_sym_DQUOTE, - STATE(5429), 1, + STATE(5433), 1, sym_comment, - STATE(5448), 1, + STATE(5441), 1, aux_sym_string_repeat1, - ACTIONS(9121), 2, + ACTIONS(9126), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183361] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5430), 1, - sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9174), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183381] = 7, + [183537] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(9176), 1, + ACTIONS(9192), 1, anon_sym_COLON, - STATE(5431), 1, + STATE(5434), 1, sym_comment, - [183403] = 6, + [183559] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(9190), 1, + anon_sym_SQUOTE, + STATE(5418), 1, + aux_sym_string_repeat2, + STATE(5435), 1, + sym_comment, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183579] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5432), 1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5436), 1, sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9178), 2, + STATE(6394), 1, + sym__from_clause, + ACTIONS(9194), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183423] = 7, + [183599] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - ACTIONS(9180), 1, - anon_sym_SEMI, - ACTIONS(9182), 1, - sym__automatic_semicolon, - STATE(5433), 1, + ACTIONS(9148), 1, + anon_sym_COMMA, + STATE(5437), 1, sym_comment, - STATE(6823), 1, - sym_import_attribute, - [183445] = 6, + STATE(5448), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9196), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183619] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9170), 1, + ACTIONS(9198), 1, anon_sym_SQUOTE, - STATE(5434), 1, + STATE(5438), 1, sym_comment, - STATE(5449), 1, + STATE(5597), 1, aux_sym_string_repeat2, - ACTIONS(9184), 2, + ACTIONS(9144), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183465] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [183639] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(5435), 1, - sym_comment, - STATE(6829), 1, - sym_type_parameters, - STATE(7380), 1, - sym_formal_parameters, - [183487] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - STATE(5436), 1, + ACTIONS(9198), 1, + anon_sym_DQUOTE, + STATE(5439), 1, sym_comment, - STATE(6825), 1, - sym_import_attribute, - ACTIONS(9186), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183507] = 6, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183659] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - STATE(5437), 1, + ACTIONS(9148), 1, + anon_sym_COMMA, + STATE(5440), 1, sym_comment, - STATE(6826), 1, - sym_import_attribute, - ACTIONS(9188), 2, + STATE(5449), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9200), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183527] = 7, + [183679] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9190), 1, - sym__glimmer_template_content, - ACTIONS(9192), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2555), 1, - sym_glimmer_closing_tag, - STATE(5438), 1, + ACTIONS(9142), 1, + anon_sym_DQUOTE, + STATE(5441), 1, sym_comment, - STATE(5906), 1, - aux_sym_glimmer_template_repeat1, - [183549] = 6, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183699] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5439), 1, + ACTIONS(9148), 1, + anon_sym_COMMA, + STATE(5420), 1, + aux_sym_variable_declaration_repeat1, + STATE(5442), 1, sym_comment, - STATE(6893), 1, - sym__from_clause, - ACTIONS(5566), 2, + ACTIONS(9202), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183569] = 6, + [183719] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5440), 1, + ACTIONS(9148), 1, + anon_sym_COMMA, + STATE(5422), 1, + aux_sym_variable_declaration_repeat1, + STATE(5443), 1, sym_comment, - STATE(6572), 1, - sym__from_clause, - ACTIONS(9196), 2, + ACTIONS(9204), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183589] = 6, + [183739] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - STATE(5441), 1, + ACTIONS(8106), 1, + anon_sym_DOT, + ACTIONS(9206), 1, + anon_sym_COMMA, + ACTIONS(9208), 1, + anon_sym_GT, + STATE(5444), 1, sym_comment, - STATE(6558), 1, - sym_import_attribute, - ACTIONS(9198), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183609] = 6, + STATE(6306), 1, + aux_sym_type_arguments_repeat1, + [183761] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, + ACTIONS(9132), 1, anon_sym_with, - STATE(5442), 1, + STATE(5445), 1, sym_comment, - STATE(6556), 1, + STATE(6485), 1, sym_import_attribute, - ACTIONS(9200), 2, + ACTIONS(9210), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183629] = 6, + [183781] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5443), 1, + ACTIONS(9132), 1, + anon_sym_with, + STATE(5446), 1, sym_comment, - STATE(5455), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9202), 2, + STATE(6486), 1, + sym_import_attribute, + ACTIONS(9212), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183649] = 6, + [183801] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, + ACTIONS(9168), 1, anon_sym_from, - STATE(5444), 1, + STATE(5447), 1, sym_comment, - STATE(6836), 1, + STATE(6420), 1, sym__from_clause, - ACTIONS(5591), 2, + ACTIONS(5908), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183669] = 6, + [183821] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_COMMA, - STATE(5445), 1, + STATE(5448), 1, sym_comment, - STATE(5456), 1, + STATE(5561), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9204), 2, + ACTIONS(9214), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183689] = 6, + [183841] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_COMMA, - STATE(5446), 1, + STATE(5449), 1, sym_comment, - STATE(5603), 1, + STATE(5561), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9206), 2, + ACTIONS(9216), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183709] = 6, + [183861] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5447), 1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5450), 1, sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9208), 2, + STATE(6492), 1, + sym__from_clause, + ACTIONS(9218), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183729] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [183881] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9210), 1, - anon_sym_DQUOTE, - STATE(5448), 1, - sym_comment, - STATE(5479), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183749] = 6, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9210), 1, - anon_sym_SQUOTE, - STATE(5449), 1, + ACTIONS(8106), 1, + anon_sym_DOT, + ACTIONS(9220), 1, + anon_sym_COMMA, + ACTIONS(9222), 1, + anon_sym_GT, + STATE(5451), 1, sym_comment, - STATE(5480), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [183769] = 7, + STATE(6250), 1, + aux_sym_type_arguments_repeat1, + [183903] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, + ACTIONS(7936), 1, anon_sym_const, - ACTIONS(9212), 1, + ACTIONS(9224), 1, sym_identifier, - ACTIONS(9214), 1, + ACTIONS(9226), 1, anon_sym_GT, - STATE(5450), 1, + STATE(5452), 1, sym_comment, - STATE(6739), 1, + STATE(6904), 1, sym_type_parameter, - [183791] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5451), 1, - sym_comment, - STATE(6515), 1, - sym__from_clause, - ACTIONS(5945), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183811] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [183925] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - STATE(5452), 1, - sym_comment, - STATE(6505), 1, - sym_import_attribute, - ACTIONS(9216), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183831] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(9228), 1, + anon_sym_DQUOTE, STATE(5453), 1, sym_comment, - STATE(6504), 1, - sym_import_attribute, - ACTIONS(9218), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183851] = 7, + STATE(5457), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183945] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - ACTIONS(9220), 1, - anon_sym_SEMI, - ACTIONS(9222), 1, - sym__automatic_semicolon, + ACTIONS(9228), 1, + anon_sym_SQUOTE, STATE(5454), 1, sym_comment, - STATE(6503), 1, - sym_import_attribute, - [183873] = 6, + STATE(5458), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183965] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_COMMA, STATE(5455), 1, sym_comment, - STATE(5603), 1, + STATE(5459), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9224), 2, + ACTIONS(9230), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183893] = 6, + [183985] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_COMMA, STATE(5456), 1, sym_comment, - STATE(5603), 1, + STATE(5462), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9226), 2, + ACTIONS(9232), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183913] = 7, + [184005] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9228), 1, - anon_sym_RPAREN, + ACTIONS(9234), 1, + anon_sym_DQUOTE, STATE(5457), 1, sym_comment, - [183935] = 7, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184025] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(9230), 1, - anon_sym_LT, - STATE(2817), 1, - sym_type_arguments, - STATE(2818), 1, - sym_arguments, + ACTIONS(9234), 1, + anon_sym_SQUOTE, STATE(5458), 1, sym_comment, - [183957] = 7, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184045] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, + ACTIONS(9148), 1, + anon_sym_COMMA, STATE(5459), 1, sym_comment, - STATE(6919), 1, - sym_type_parameters, - STATE(7174), 1, - sym_formal_parameters, - [183979] = 7, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9236), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184065] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - ACTIONS(9232), 1, - anon_sym_SEMI, - ACTIONS(9234), 1, - sym__automatic_semicolon, + ACTIONS(9238), 1, + anon_sym_SQUOTE, + STATE(5438), 1, + aux_sym_string_repeat2, STATE(5460), 1, sym_comment, - STATE(6644), 1, - sym_import_attribute, - [184001] = 7, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184085] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(9236), 1, - anon_sym_COMMA, ACTIONS(9238), 1, - anon_sym_GT, + anon_sym_DQUOTE, + STATE(5439), 1, + aux_sym_string_repeat1, STATE(5461), 1, sym_comment, - STATE(6270), 1, - aux_sym_type_arguments_repeat1, - [184023] = 4, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184105] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9148), 1, + anon_sym_COMMA, STATE(5462), 1, sym_comment, - ACTIONS(3114), 4, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9240), 2, sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - [184039] = 7, + [184125] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - ACTIONS(9240), 1, - anon_sym_SEMI, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, ACTIONS(9242), 1, - sym__automatic_semicolon, + anon_sym_RPAREN, STATE(5463), 1, sym_comment, - STATE(6452), 1, - sym_import_attribute, - [184061] = 7, + [184147] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7089), 1, + ACTIONS(5380), 1, anon_sym_LPAREN, - ACTIONS(7095), 1, + ACTIONS(9244), 1, anon_sym_LT, - STATE(3994), 1, + STATE(2809), 1, sym_arguments, - STATE(4219), 1, + STATE(2812), 1, sym_type_arguments, STATE(5464), 1, sym_comment, - [184083] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9244), 1, - anon_sym_RPAREN, - STATE(5465), 1, - sym_comment, - [184105] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, - STATE(5466), 1, - sym_comment, - STATE(6929), 1, - sym_type_parameters, - STATE(7147), 1, - sym_formal_parameters, - [184127] = 7, + [184169] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8196), 1, + ACTIONS(8106), 1, anon_sym_DOT, ACTIONS(9246), 1, anon_sym_COMMA, ACTIONS(9248), 1, anon_sym_GT, - STATE(5467), 1, + STATE(5465), 1, sym_comment, - STATE(6156), 1, + STATE(6148), 1, aux_sym_type_arguments_repeat1, - [184149] = 6, + [184191] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8168), 1, - anon_sym_EQ, - STATE(5468), 1, + ACTIONS(9250), 1, + anon_sym_DQUOTE, + STATE(5466), 1, sym_comment, - STATE(6822), 1, - sym__initializer, - ACTIONS(9250), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [184169] = 7, + STATE(5469), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184211] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, ACTIONS(9252), 1, - anon_sym_RBRACK, + anon_sym_COLON, + STATE(5467), 1, + sym_comment, + [184233] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9250), 1, + anon_sym_SQUOTE, + STATE(5468), 1, + sym_comment, + STATE(5470), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184253] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9254), 1, + anon_sym_DQUOTE, STATE(5469), 1, sym_comment, - [184191] = 7, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184273] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, - anon_sym_const, - ACTIONS(9212), 1, - sym_identifier, ACTIONS(9254), 1, - anon_sym_GT, + anon_sym_SQUOTE, STATE(5470), 1, sym_comment, - STATE(6739), 1, - sym_type_parameter, - [184213] = 5, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184293] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, ACTIONS(9256), 1, - anon_sym_COMMA, - ACTIONS(5906), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(5471), 2, + anon_sym_SEMI, + ACTIONS(9258), 1, + sym__automatic_semicolon, + STATE(5471), 1, sym_comment, - aux_sym_array_repeat1, - [184231] = 7, + STATE(6388), 1, + sym_import_attribute, + [184315] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(9259), 1, - anon_sym_COLON, + ACTIONS(9260), 1, + anon_sym_RBRACK, STATE(5472), 1, sym_comment, - [184253] = 7, + [184337] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(9261), 1, + ACTIONS(9262), 1, anon_sym_RBRACK, STATE(5473), 1, sym_comment, - [184275] = 6, + [184359] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9263), 1, + ACTIONS(9264), 1, anon_sym_DQUOTE, STATE(5474), 1, sym_comment, - STATE(5488), 1, + STATE(5477), 1, aux_sym_string_repeat1, - ACTIONS(9121), 2, + ACTIONS(9126), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184295] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [184379] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9265), 1, - anon_sym_SQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9266), 1, + anon_sym_RBRACK, STATE(5475), 1, sym_comment, - STATE(5480), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184315] = 6, + [184401] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9263), 1, + ACTIONS(9264), 1, anon_sym_SQUOTE, STATE(5476), 1, sym_comment, - STATE(5489), 1, + STATE(5478), 1, aux_sym_string_repeat2, - ACTIONS(9184), 2, + ACTIONS(9144), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184335] = 7, + [184421] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9267), 1, - anon_sym_RBRACK, + ACTIONS(9268), 1, + anon_sym_DQUOTE, STATE(5477), 1, sym_comment, - [184357] = 6, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184441] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9265), 1, - anon_sym_DQUOTE, + ACTIONS(9268), 1, + anon_sym_SQUOTE, STATE(5478), 1, sym_comment, - STATE(5479), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [184377] = 5, + [184461] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9270), 1, + sym_html_character_reference, + ACTIONS(9272), 1, + anon_sym_SQUOTE, + ACTIONS(9274), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(5429), 1, + aux_sym__jsx_string_repeat2, + STATE(5479), 1, + sym_comment, + [184483] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9269), 1, + ACTIONS(9276), 1, anon_sym_DQUOTE, - ACTIONS(9271), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - STATE(5479), 2, + STATE(5480), 1, sym_comment, + STATE(5483), 1, aux_sym_string_repeat1, - [184395] = 5, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184503] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9274), 1, + ACTIONS(9276), 1, anon_sym_SQUOTE, - ACTIONS(9276), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - STATE(5480), 2, + STATE(5481), 1, sym_comment, + STATE(5484), 1, aux_sym_string_repeat2, - [184413] = 4, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184523] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5481), 1, + ACTIONS(8128), 1, + anon_sym_EQ, + STATE(5482), 1, sym_comment, - ACTIONS(6769), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(6740), 1, + sym__initializer, + ACTIONS(9278), 2, anon_sym_COMMA, - anon_sym_SEMI, - [184429] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + anon_sym_RBRACE, + [184543] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5430), 1, - aux_sym_variable_declaration_repeat1, - STATE(5482), 1, - sym_comment, - ACTIONS(9279), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184449] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, + ACTIONS(9280), 1, + anon_sym_DQUOTE, STATE(5483), 1, sym_comment, - STATE(6390), 1, - sym__from_clause, - ACTIONS(9281), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184469] = 6, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184563] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5432), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(9280), 1, + anon_sym_SQUOTE, STATE(5484), 1, sym_comment, - ACTIONS(9283), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184489] = 6, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184583] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(9282), 1, + anon_sym_LBRACE, + ACTIONS(9284), 1, anon_sym_COMMA, - STATE(5485), 1, + ACTIONS(9287), 1, + anon_sym_LBRACE_PIPE, + STATE(5485), 2, sym_comment, - STATE(5494), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9285), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184509] = 6, + aux_sym_extends_type_clause_repeat1, + [184603] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(9289), 1, + anon_sym_DQUOTE, STATE(5486), 1, sym_comment, - STATE(6909), 1, - sym_import_attribute, - ACTIONS(9287), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184529] = 6, + STATE(5488), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184623] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(9289), 1, + anon_sym_SQUOTE, STATE(5487), 1, sym_comment, - STATE(5495), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9289), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184549] = 6, + STATE(5489), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184643] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(9291), 1, anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, STATE(5488), 1, sym_comment, - ACTIONS(9121), 2, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184569] = 6, + [184663] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(9291), 1, anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, STATE(5489), 1, sym_comment, - ACTIONS(9184), 2, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184589] = 6, + [184683] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(9272), 1, + anon_sym_DQUOTE, + ACTIONS(9293), 1, + sym_html_character_reference, + ACTIONS(9295), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5431), 1, + aux_sym__jsx_string_repeat1, STATE(5490), 1, sym_comment, - STATE(6915), 1, - sym_import_attribute, - ACTIONS(9293), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184609] = 6, + [184705] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(9297), 1, - anon_sym_COMMA, + anon_sym_DQUOTE, + STATE(5412), 1, + aux_sym_string_repeat1, STATE(5491), 1, sym_comment, - STATE(5618), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(9295), 2, - anon_sym_LBRACE, - anon_sym_implements, - [184629] = 7, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184725] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, + ACTIONS(9297), 1, + anon_sym_SQUOTE, STATE(5492), 1, sym_comment, - STATE(6788), 1, - sym_type_parameters, - STATE(7162), 1, - sym_formal_parameters, - [184651] = 6, + STATE(5493), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184745] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, + ACTIONS(9124), 1, + anon_sym_SQUOTE, STATE(5493), 1, sym_comment, - STATE(6416), 1, - sym__from_clause, - ACTIONS(5937), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184671] = 6, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184765] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(9299), 1, + anon_sym_DQUOTE, STATE(5494), 1, sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9299), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184691] = 6, + STATE(5497), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184785] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9301), 1, + anon_sym_RPAREN, STATE(5495), 1, sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9301), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184711] = 6, + [184807] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(9299), 1, + anon_sym_SQUOTE, STATE(5496), 1, sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9303), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184731] = 6, + STATE(5499), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184827] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(9303), 1, + anon_sym_DQUOTE, STATE(5497), 1, sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9305), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184751] = 7, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184847] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - ACTIONS(9307), 1, - anon_sym_SEMI, - ACTIONS(9309), 1, - sym__automatic_semicolon, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(9305), 1, + anon_sym_LT, + STATE(2344), 1, + sym_type_arguments, + STATE(2362), 1, + sym_arguments, STATE(5498), 1, sym_comment, - STATE(6546), 1, - sym_import_attribute, - [184773] = 6, + [184869] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, + ACTIONS(9303), 1, + anon_sym_SQUOTE, STATE(5499), 1, sym_comment, - STATE(6931), 1, - sym__from_clause, - ACTIONS(9311), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184793] = 6, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184889] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, + ACTIONS(9132), 1, anon_sym_with, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + sym__automatic_semicolon, STATE(5500), 1, sym_comment, - STATE(6535), 1, + STATE(6533), 1, sym_import_attribute, - ACTIONS(9313), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184813] = 6, + [184911] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(9311), 1, + sym__glimmer_template_content, + ACTIONS(9313), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2423), 1, + sym_glimmer_closing_tag, STATE(5501), 1, sym_comment, - STATE(6534), 1, - sym_import_attribute, - ACTIONS(9315), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184833] = 7, + STATE(5908), 1, + aux_sym_glimmer_template_repeat1, + [184933] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(9317), 1, - anon_sym_COMMA, - ACTIONS(9319), 1, + ACTIONS(7936), 1, + anon_sym_const, + ACTIONS(9224), 1, + sym_identifier, + ACTIONS(9315), 1, anon_sym_GT, STATE(5502), 1, sym_comment, - STATE(6294), 1, - aux_sym_type_arguments_repeat1, - [184855] = 6, + STATE(6904), 1, + sym_type_parameter, + [184955] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, + ACTIONS(9132), 1, anon_sym_with, + ACTIONS(9317), 1, + anon_sym_SEMI, + ACTIONS(9319), 1, + sym__automatic_semicolon, STATE(5503), 1, sym_comment, - STATE(6858), 1, + STATE(6598), 1, sym_import_attribute, - ACTIONS(9321), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184875] = 6, + [184977] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(9321), 1, + anon_sym_class, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(5504), 1, sym_comment, - STATE(6518), 1, - sym__from_clause, - ACTIONS(5902), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184895] = 6, + STATE(5640), 1, + sym_decorator, + [184999] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8202), 1, - anon_sym_EQ, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9323), 1, + anon_sym_RBRACK, STATE(5505), 1, sym_comment, - STATE(6745), 1, - sym_default_type, - ACTIONS(9323), 2, - anon_sym_COMMA, - anon_sym_GT, - [184915] = 6, + [185021] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4869), 1, - anon_sym_BQUOTE, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9325), 1, + anon_sym_RBRACK, STATE(5506), 1, sym_comment, - STATE(2441), 2, - sym_template_string, - sym_arguments, - [184935] = 4, + [185043] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9327), 1, + anon_sym_QMARK, STATE(5507), 1, sym_comment, - ACTIONS(9325), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [184951] = 6, + [185065] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5508), 1, sym_comment, - STATE(6859), 1, - sym_import_attribute, - ACTIONS(9327), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184971] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6766), 1, + sym_type_parameters, + STATE(7162), 1, + sym_formal_parameters, + [185087] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, - anon_sym_const, - ACTIONS(9212), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8192), 1, + anon_sym_COMMA, ACTIONS(9329), 1, - anon_sym_GT, + anon_sym_LBRACE, + ACTIONS(9331), 1, + anon_sym_LBRACE_PIPE, + STATE(5485), 1, + aux_sym_extends_type_clause_repeat1, STATE(5509), 1, sym_comment, - STATE(6739), 1, - sym_type_parameter, - [184993] = 7, + [185109] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, + ACTIONS(8192), 1, + anon_sym_COMMA, + ACTIONS(9329), 1, + anon_sym_LBRACE, ACTIONS(9331), 1, - anon_sym_RBRACK, + anon_sym_LBRACE_PIPE, + STATE(5485), 1, + aux_sym_extends_type_clause_repeat1, STATE(5510), 1, sym_comment, - [185015] = 7, + [185131] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(9333), 1, + ACTIONS(8192), 1, anon_sym_COMMA, + ACTIONS(9333), 1, + anon_sym_LBRACE, ACTIONS(9335), 1, - anon_sym_GT, + anon_sym_LBRACE_PIPE, + STATE(5485), 1, + aux_sym_extends_type_clause_repeat1, STATE(5511), 1, sym_comment, - STATE(6091), 1, - aux_sym_type_arguments_repeat1, - [185037] = 7, + [185153] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8141), 1, - anon_sym_COMMA, + ACTIONS(8106), 1, + anon_sym_DOT, ACTIONS(9337), 1, - anon_sym_LBRACE, + anon_sym_COMMA, ACTIONS(9339), 1, - anon_sym_LBRACE_PIPE, - STATE(5420), 1, - aux_sym_extends_type_clause_repeat1, + anon_sym_GT, STATE(5512), 1, sym_comment, - [185059] = 7, + STATE(6027), 1, + aux_sym_type_arguments_repeat1, + [185175] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8141), 1, - anon_sym_COMMA, - ACTIONS(9337), 1, - anon_sym_LBRACE, - ACTIONS(9339), 1, - anon_sym_LBRACE_PIPE, - STATE(5420), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(9341), 1, + sym_identifier, + STATE(5260), 1, + sym_nested_type_identifier, STATE(5513), 1, sym_comment, - [185081] = 7, + STATE(6050), 1, + sym_generic_type, + STATE(7122), 1, + sym_nested_identifier, + [185197] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8141), 1, + ACTIONS(9148), 1, anon_sym_COMMA, - ACTIONS(9341), 1, - anon_sym_LBRACE, - ACTIONS(9343), 1, - anon_sym_LBRACE_PIPE, - STATE(5420), 1, - aux_sym_extends_type_clause_repeat1, STATE(5514), 1, sym_comment, - [185103] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9343), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185217] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9345), 1, - sym_identifier, - STATE(5371), 1, - sym_nested_type_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9148), 1, + anon_sym_COMMA, STATE(5515), 1, sym_comment, - STATE(6061), 1, - sym_generic_type, - STATE(7118), 1, - sym_nested_identifier, - [185125] = 5, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9345), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185237] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9347), 1, - anon_sym_COMMA, - ACTIONS(5136), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(5516), 2, + ACTIONS(8309), 1, + anon_sym_finally, + STATE(5516), 1, sym_comment, - aux_sym_sequence_expression_repeat1, - [185143] = 6, + STATE(6939), 1, + sym_finally_clause, + ACTIONS(3113), 2, + anon_sym_else, + anon_sym_while, + [185257] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9350), 1, - anon_sym_DQUOTE, + ACTIONS(9270), 1, + sym_html_character_reference, + ACTIONS(9274), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(9347), 1, + anon_sym_SQUOTE, + STATE(5479), 1, + aux_sym__jsx_string_repeat2, STATE(5517), 1, sym_comment, - STATE(5568), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185163] = 6, + [185279] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9350), 1, - anon_sym_SQUOTE, + ACTIONS(9349), 1, + anon_sym_DQUOTE, STATE(5518), 1, sym_comment, - STATE(5547), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [185183] = 6, + [185299] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(9132), 1, + anon_sym_with, STATE(5519), 1, sym_comment, - STATE(5532), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9352), 2, + STATE(6540), 1, + sym_import_attribute, + ACTIONS(9351), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185203] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [185319] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9354), 1, - anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5520), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185223] = 6, + STATE(6545), 1, + sym_import_attribute, + ACTIONS(9353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185339] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9356), 1, - anon_sym_SQUOTE, - STATE(5475), 1, - aux_sym_string_repeat2, + ACTIONS(9293), 1, + sym_html_character_reference, + ACTIONS(9295), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(9347), 1, + anon_sym_DQUOTE, + STATE(5490), 1, + aux_sym__jsx_string_repeat1, STATE(5521), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185243] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [185361] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9356), 1, - anon_sym_DQUOTE, - STATE(5478), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9355), 1, + anon_sym_RBRACK, STATE(5522), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185263] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [185383] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9354), 1, - anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5523), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185283] = 6, + STATE(6782), 1, + sym_type_parameters, + STATE(7208), 1, + sym_formal_parameters, + [185405] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_COMMA, STATE(5524), 1, sym_comment, - STATE(5533), 1, + STATE(5561), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9358), 2, + ACTIONS(9357), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185303] = 7, + [185425] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9360), 1, - anon_sym_EQ, - ACTIONS(9362), 1, - anon_sym_COMMA, - ACTIONS(9364), 1, - anon_sym_RBRACK, + ACTIONS(8915), 1, + anon_sym_RBRACE, STATE(5525), 1, sym_comment, - STATE(6329), 1, - aux_sym_array_pattern_repeat1, - [185325] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5290), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185443] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9366), 1, - anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9148), 1, + anon_sym_COMMA, STATE(5526), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185345] = 7, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9359), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185463] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, + ACTIONS(9132), 1, anon_sym_with, - ACTIONS(9368), 1, + ACTIONS(9361), 1, anon_sym_SEMI, - ACTIONS(9370), 1, + ACTIONS(9363), 1, sym__automatic_semicolon, STATE(5527), 1, sym_comment, - STATE(6841), 1, + STATE(6638), 1, sym_import_attribute, - [185367] = 7, + [185485] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, + ACTIONS(9132), 1, + anon_sym_with, STATE(5528), 1, sym_comment, - STATE(6943), 1, - sym_type_parameters, - STATE(7103), 1, - sym_formal_parameters, - [185389] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6639), 1, + sym_import_attribute, + ACTIONS(9365), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185505] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9372), 1, - anon_sym_DQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5529), 1, sym_comment, - STATE(5591), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185409] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6640), 1, + sym_import_attribute, + ACTIONS(9367), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185525] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9372), 1, - anon_sym_SQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, STATE(5530), 1, sym_comment, - STATE(5592), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185429] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6445), 1, + sym__from_clause, + ACTIONS(5835), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185545] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9115), 1, - anon_sym_DQUOTE, - ACTIONS(9162), 1, - sym_html_character_reference, - ACTIONS(9164), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(5426), 1, - aux_sym__jsx_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4542), 1, + sym_formal_parameters, STATE(5531), 1, sym_comment, - [185451] = 6, + STATE(6633), 1, + sym_type_parameters, + [185567] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(9168), 1, + anon_sym_from, STATE(5532), 1, sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9374), 2, + STATE(6644), 1, + sym__from_clause, + ACTIONS(5622), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185471] = 6, + [185587] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(9369), 1, + anon_sym_DQUOTE, STATE(5533), 1, sym_comment, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9376), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185491] = 7, + STATE(5595), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185607] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(9378), 1, - anon_sym_COMMA, - ACTIONS(9380), 1, - anon_sym_GT, + ACTIONS(9369), 1, + anon_sym_SQUOTE, STATE(5534), 1, sym_comment, - STATE(6228), 1, - aux_sym_type_arguments_repeat1, - [185513] = 7, + STATE(5596), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185627] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9382), 1, - anon_sym_QMARK, - STATE(5535), 1, + ACTIONS(9373), 1, + anon_sym_COMMA, + ACTIONS(9371), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(5535), 2, sym_comment, - [185535] = 7, + aux_sym_extends_clause_repeat1, + [185645] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, + ACTIONS(4882), 1, + anon_sym_BQUOTE, STATE(5536), 1, sym_comment, - STATE(6948), 1, - sym_type_parameters, - STATE(7068), 1, - sym_formal_parameters, - [185557] = 5, + STATE(2407), 2, + sym_template_string, + sym_arguments, + [185665] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8877), 1, - anon_sym_RBRACE, + ACTIONS(9376), 1, + anon_sym_EQ, STATE(5537), 1, sym_comment, - ACTIONS(5061), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [185575] = 6, + STATE(6702), 1, + sym__initializer, + ACTIONS(7498), 2, + anon_sym_in, + anon_sym_of, + [185685] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5496), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(9378), 1, + sym_escape_sequence, STATE(5538), 1, sym_comment, - ACTIONS(9384), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185595] = 6, + ACTIONS(9380), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185703] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(8192), 1, anon_sym_COMMA, - STATE(5497), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8650), 1, + anon_sym_LBRACE_PIPE, + STATE(5509), 1, + aux_sym_extends_type_clause_repeat1, STATE(5539), 1, sym_comment, - ACTIONS(9386), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185615] = 6, + [185725] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, STATE(5540), 1, sym_comment, - STATE(6401), 1, - sym_import_attribute, - ACTIONS(9388), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185635] = 6, + ACTIONS(9383), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [185741] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, STATE(5541), 1, sym_comment, - STATE(6404), 1, - sym_import_attribute, - ACTIONS(9390), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185655] = 6, + ACTIONS(9385), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185757] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9392), 1, - anon_sym_DQUOTE, + ACTIONS(7936), 1, + anon_sym_const, + ACTIONS(9224), 1, + sym_identifier, + ACTIONS(9387), 1, + anon_sym_GT, STATE(5542), 1, sym_comment, - STATE(5545), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185675] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6904), 1, + sym_type_parameter, + [185779] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9392), 1, - anon_sym_SQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5543), 1, sym_comment, - STATE(5546), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185695] = 7, + ACTIONS(3351), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(9389), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185797] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9394), 1, - anon_sym_COLON, + ACTIONS(8048), 1, + anon_sym_EQ, STATE(5544), 1, sym_comment, - [185717] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6759), 1, + sym_default_type, + ACTIONS(9391), 2, + anon_sym_COMMA, + anon_sym_GT, + [185817] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9396), 1, - anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5545), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185737] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6770), 1, + sym_type_parameters, + STATE(7078), 1, + sym_formal_parameters, + [185839] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9396), 1, - anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5546), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185757] = 6, + STATE(6947), 1, + sym_type_parameters, + STATE(7469), 1, + sym_formal_parameters, + [185861] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9398), 1, + ACTIONS(9349), 1, anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, STATE(5547), 1, sym_comment, - ACTIONS(9184), 2, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185777] = 7, + [185881] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4414), 1, - sym_formal_parameters, + ACTIONS(9148), 1, + anon_sym_COMMA, STATE(5548), 1, sym_comment, - STATE(6626), 1, - sym_type_parameters, - [185799] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5602), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9393), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185901] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9400), 1, - anon_sym_DQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9395), 1, + anon_sym_EQ, + ACTIONS(9397), 1, + anon_sym_COMMA, + ACTIONS(9399), 1, + anon_sym_RBRACK, STATE(5549), 1, sym_comment, - STATE(5554), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185819] = 6, + STATE(5896), 1, + aux_sym_array_pattern_repeat1, + [185923] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, + STATE(5550), 1, + sym_comment, + STATE(6952), 1, + sym_type_parameters, + STATE(7446), 1, + sym_formal_parameters, + [185945] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9400), 1, + ACTIONS(9401), 1, anon_sym_SQUOTE, - STATE(5550), 1, + STATE(5551), 1, sym_comment, - STATE(5555), 1, + STATE(5597), 1, aux_sym_string_repeat2, - ACTIONS(9184), 2, + ACTIONS(9144), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185839] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [185965] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5551), 1, - sym_comment, - STATE(6426), 1, - sym__from_clause, - ACTIONS(9402), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185859] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, + ACTIONS(9401), 1, + anon_sym_DQUOTE, STATE(5552), 1, sym_comment, - STATE(6348), 1, - sym__from_clause, - ACTIONS(9404), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185879] = 6, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185985] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9403), 1, + anon_sym_RPAREN, STATE(5553), 1, sym_comment, - STATE(6872), 1, - sym_import_attribute, - ACTIONS(9406), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185899] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186007] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9408), 1, - anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(6991), 1, + anon_sym_LT, + STATE(3674), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, STATE(5554), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185919] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186029] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9408), 1, - anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(9405), 1, + anon_sym_export, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(5555), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185939] = 7, + STATE(5640), 1, + sym_decorator, + [186051] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9410), 1, - anon_sym_QMARK, + ACTIONS(9168), 1, + anon_sym_from, STATE(5556), 1, sym_comment, - [185961] = 5, + STATE(6970), 1, + sym__from_clause, + ACTIONS(9407), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186071] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9414), 1, + ACTIONS(9411), 1, anon_sym_COMMA, - ACTIONS(9412), 2, + STATE(5535), 1, + aux_sym_extends_clause_repeat1, + STATE(5557), 1, + sym_comment, + ACTIONS(9409), 2, anon_sym_LBRACE, anon_sym_implements, - STATE(5557), 2, - sym_comment, - aux_sym_extends_clause_repeat1, - [185979] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186091] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9190), 1, - sym__glimmer_template_content, - ACTIONS(9417), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3075), 1, - sym_glimmer_closing_tag, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8128), 1, + anon_sym_EQ, STATE(5558), 1, sym_comment, - STATE(5906), 1, - aux_sym_glimmer_template_repeat1, - [186001] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6825), 1, + sym__initializer, + ACTIONS(9413), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [186111] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9190), 1, - sym__glimmer_template_content, - ACTIONS(9192), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2456), 1, - sym_glimmer_closing_tag, - STATE(5438), 1, - aux_sym_glimmer_template_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9148), 1, + anon_sym_COMMA, + STATE(5514), 1, + aux_sym_variable_declaration_repeat1, STATE(5559), 1, sym_comment, - [186023] = 6, + ACTIONS(9415), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186131] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5408), 1, + ACTIONS(9148), 1, anon_sym_COMMA, - STATE(5516), 1, - aux_sym_sequence_expression_repeat1, + STATE(5515), 1, + aux_sym_variable_declaration_repeat1, STATE(5560), 1, sym_comment, - ACTIONS(8353), 2, + ACTIONS(9417), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186043] = 6, + [186151] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - ACTIONS(5404), 1, - anon_sym_BQUOTE, - STATE(5561), 1, + ACTIONS(9419), 1, + anon_sym_COMMA, + ACTIONS(9422), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(5561), 2, sym_comment, - STATE(3058), 2, - sym_template_string, - sym_arguments, - [186063] = 7, + aux_sym_variable_declaration_repeat1, + [186169] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9419), 1, - anon_sym_RBRACK, + ACTIONS(9148), 1, + anon_sym_COMMA, + STATE(5524), 1, + aux_sym_variable_declaration_repeat1, STATE(5562), 1, sym_comment, - [186085] = 4, + ACTIONS(9424), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186189] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9148), 1, + anon_sym_COMMA, + STATE(5526), 1, + aux_sym_variable_declaration_repeat1, STATE(5563), 1, sym_comment, - ACTIONS(7823), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [186101] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9426), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186209] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9421), 1, - anon_sym_DQUOTE, - STATE(5411), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5564), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186121] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6673), 1, + sym_import_attribute, + ACTIONS(9428), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186229] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9421), 1, - anon_sym_SQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5565), 1, sym_comment, - STATE(5570), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186141] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6676), 1, + sym_import_attribute, + ACTIONS(9430), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186249] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9423), 1, - anon_sym_SQUOTE, - STATE(5520), 1, - aux_sym_string_repeat2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5566), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186161] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6757), 1, + sym_import_attribute, + ACTIONS(9432), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186269] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9423), 1, - anon_sym_DQUOTE, - STATE(5523), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5567), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186181] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6758), 1, + sym_import_attribute, + ACTIONS(9434), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186289] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9398), 1, - anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, STATE(5568), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186201] = 4, + STATE(6677), 1, + sym__from_clause, + ACTIONS(9436), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186309] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, + ACTIONS(9438), 1, + anon_sym_SEMI, + ACTIONS(9440), 1, + sym__automatic_semicolon, STATE(5569), 1, sym_comment, - ACTIONS(3104), 4, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - [186217] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6846), 1, + sym_import_attribute, + [186331] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9119), 1, - anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4527), 1, + anon_sym_COLON, + ACTIONS(7212), 1, + anon_sym_EQ, STATE(5570), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186237] = 4, + ACTIONS(9442), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [186351] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5571), 1, sym_comment, - ACTIONS(9425), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [186253] = 6, + STATE(6834), 1, + sym_type_parameters, + STATE(7350), 1, + sym_formal_parameters, + [186373] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9427), 1, - anon_sym_DQUOTE, - STATE(5526), 1, - aux_sym_string_repeat1, + ACTIONS(9444), 1, + anon_sym_SQUOTE, + STATE(5551), 1, + aux_sym_string_repeat2, STATE(5572), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [186273] = 7, + [186393] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9429), 1, - sym_identifier, - STATE(4816), 1, - sym_nested_type_identifier, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + STATE(5552), 1, + aux_sym_string_repeat1, STATE(5573), 1, sym_comment, - STATE(5617), 1, - sym_generic_type, - STATE(7118), 1, - sym_nested_identifier, - [186295] = 6, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186413] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5574), 1, sym_comment, - STATE(6363), 1, - sym_import_attribute, - ACTIONS(9431), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186315] = 6, + STATE(6780), 1, + sym_type_parameters, + STATE(7342), 1, + sym_formal_parameters, + [186435] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - STATE(5575), 1, - sym_comment, - STATE(6391), 1, - sym_import_attribute, - ACTIONS(9433), 2, + ACTIONS(9446), 1, + anon_sym_COMMA, + ACTIONS(5080), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186335] = 6, + STATE(5575), 2, + sym_comment, + aux_sym_sequence_expression_repeat1, + [186453] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(8106), 1, + anon_sym_DOT, + ACTIONS(9449), 1, anon_sym_COMMA, + ACTIONS(9451), 1, + anon_sym_GT, STATE(5576), 1, sym_comment, - STATE(5630), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9435), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186355] = 6, + STATE(5752), 1, + aux_sym_type_arguments_repeat1, + [186475] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, + ACTIONS(9168), 1, + anon_sym_from, STATE(5577), 1, sym_comment, - STATE(5631), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9437), 2, + STATE(6779), 1, + sym__from_clause, + ACTIONS(9453), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186375] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186495] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9427), 1, - anon_sym_SQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5578), 1, sym_comment, - STATE(5580), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186395] = 7, + STATE(6998), 1, + sym_import_attribute, + ACTIONS(9455), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186515] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, + ACTIONS(9132), 1, + anon_sym_with, STATE(5579), 1, sym_comment, - STATE(6838), 1, - sym_type_parameters, - STATE(7354), 1, - sym_formal_parameters, - [186417] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6997), 1, + sym_import_attribute, + ACTIONS(9457), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186535] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9366), 1, - anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9148), 1, + anon_sym_COMMA, STATE(5580), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186437] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5642), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9459), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186555] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9439), 1, - anon_sym_DQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9148), 1, + anon_sym_COMMA, STATE(5581), 1, sym_comment, - STATE(5584), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186457] = 6, + STATE(5643), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9461), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186575] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9439), 1, - anon_sym_SQUOTE, + ACTIONS(9463), 1, + sym_identifier, + STATE(4807), 1, + sym_nested_type_identifier, + STATE(5539), 1, + sym_generic_type, STATE(5582), 1, sym_comment, - STATE(5585), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186477] = 7, + STATE(7122), 1, + sym_nested_identifier, + [186597] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9441), 1, - anon_sym_QMARK, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5583), 1, sym_comment, - [186499] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6611), 1, + sym_type_parameters, + STATE(7257), 1, + sym_formal_parameters, + [186619] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9443), 1, - anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5584), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186519] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9465), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [186635] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9443), 1, - anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5585), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186539] = 6, + STATE(6599), 1, + sym_type_parameters, + STATE(7242), 1, + sym_formal_parameters, + [186657] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9445), 1, - anon_sym_DQUOTE, + ACTIONS(9311), 1, + sym__glimmer_template_content, + ACTIONS(9313), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2453), 1, + sym_glimmer_closing_tag, + STATE(5501), 1, + aux_sym_glimmer_template_repeat1, STATE(5586), 1, sym_comment, - STATE(5605), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186559] = 6, + [186679] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9445), 1, - anon_sym_SQUOTE, + ACTIONS(7936), 1, + anon_sym_const, + ACTIONS(9224), 1, + sym_identifier, + ACTIONS(9467), 1, + anon_sym_GT, STATE(5587), 1, sym_comment, - STATE(5601), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186579] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6904), 1, + sym_type_parameter, + [186701] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9447), 1, - anon_sym_DQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8048), 1, + anon_sym_EQ, STATE(5588), 1, sym_comment, - STATE(5590), 1, - aux_sym_string_repeat1, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186599] = 6, + STATE(6909), 1, + sym_default_type, + ACTIONS(9469), 2, + anon_sym_COMMA, + anon_sym_GT, + [186721] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9447), 1, + ACTIONS(9471), 1, anon_sym_SQUOTE, + STATE(5547), 1, + aux_sym_string_repeat2, STATE(5589), 1, sym_comment, - STATE(5597), 1, - aux_sym_string_repeat2, - ACTIONS(9184), 2, + ACTIONS(9144), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186619] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186741] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9449), 1, - anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9473), 1, + anon_sym_COLON, STATE(5590), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186639] = 6, + [186763] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9451), 1, + ACTIONS(9471), 1, anon_sym_DQUOTE, - STATE(5479), 1, + STATE(5518), 1, aux_sym_string_repeat1, STATE(5591), 1, sym_comment, - ACTIONS(9121), 2, + ACTIONS(9126), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186659] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186783] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9451), 1, - anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + ACTIONS(7186), 1, + anon_sym_LT, STATE(5592), 1, sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186679] = 7, + STATE(6956), 1, + sym_type_parameters, + STATE(7020), 1, + sym_formal_parameters, + [186805] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9453), 1, - anon_sym_RBRACK, + ACTIONS(9411), 1, + anon_sym_COMMA, + STATE(5557), 1, + aux_sym_extends_clause_repeat1, STATE(5593), 1, sym_comment, - [186701] = 7, + ACTIONS(9475), 2, + anon_sym_LBRACE, + anon_sym_implements, + [186825] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9455), 1, - anon_sym_RBRACK, STATE(5594), 1, sym_comment, - [186723] = 7, + ACTIONS(6725), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186841] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9457), 1, - anon_sym_RPAREN, + ACTIONS(9477), 1, + anon_sym_DQUOTE, STATE(5595), 1, sym_comment, - [186745] = 7, + STATE(5598), 1, + aux_sym_string_repeat1, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186861] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(7057), 1, - anon_sym_LT, - STATE(3867), 1, - sym_arguments, - STATE(4003), 1, - sym_type_arguments, + ACTIONS(9477), 1, + anon_sym_SQUOTE, STATE(5596), 1, sym_comment, - [186767] = 6, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186881] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9449), 1, + ACTIONS(9479), 1, anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, - STATE(5597), 1, - sym_comment, - ACTIONS(9184), 2, + ACTIONS(9481), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186787] = 7, + STATE(5597), 2, + sym_comment, + aux_sym_string_repeat2, + [186899] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, - ACTIONS(9459), 1, - anon_sym_SEMI, - ACTIONS(9461), 1, - sym__automatic_semicolon, - STATE(5598), 1, + ACTIONS(9484), 1, + anon_sym_DQUOTE, + ACTIONS(9486), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + STATE(5598), 2, sym_comment, - STATE(6645), 1, - sym_import_attribute, - [186809] = 7, + aux_sym_string_repeat1, + [186917] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9463), 1, + ACTIONS(9489), 1, + anon_sym_COMMA, + ACTIONS(5873), 2, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(5599), 1, + STATE(5599), 2, sym_comment, - [186831] = 6, + aux_sym_array_repeat1, + [186935] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9465), 1, + ACTIONS(8128), 1, anon_sym_EQ, STATE(5600), 1, sym_comment, - STATE(6375), 1, + STATE(6978), 1, sym__initializer, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - [186851] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9467), 1, - anon_sym_SQUOTE, - STATE(5480), 1, - aux_sym_string_repeat2, - STATE(5601), 1, - sym_comment, - ACTIONS(9184), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186871] = 7, + ACTIONS(9492), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [186955] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7086), 1, anon_sym_AMP, - ACTIONS(7109), 1, + ACTIONS(7088), 1, anon_sym_PIPE, - ACTIONS(7111), 1, + ACTIONS(7090), 1, anon_sym_extends, - ACTIONS(9469), 1, - anon_sym_QMARK, - STATE(5602), 1, + ACTIONS(9494), 1, + anon_sym_RBRACK, + STATE(5601), 1, sym_comment, - [186893] = 5, + [186977] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9471), 1, + ACTIONS(9148), 1, anon_sym_COMMA, - ACTIONS(9474), 2, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + STATE(5602), 1, + sym_comment, + ACTIONS(9496), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(5603), 2, - sym_comment, - aux_sym_variable_declaration_repeat1, - [186911] = 6, + [186997] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8168), 1, - anon_sym_EQ, - STATE(5604), 1, - sym_comment, - STATE(6622), 1, - sym__initializer, - ACTIONS(9476), 2, + ACTIONS(9148), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [186931] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5561), 1, + aux_sym_variable_declaration_repeat1, + STATE(5603), 1, + sym_comment, + ACTIONS(9498), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187017] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9467), 1, - anon_sym_DQUOTE, - STATE(5479), 1, - aux_sym_string_repeat1, - STATE(5605), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9500), 1, + anon_sym_STAR, + ACTIONS(9502), 1, + anon_sym_LBRACE, + STATE(5604), 1, sym_comment, - ACTIONS(9121), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186951] = 7, + STATE(7010), 2, + sym_namespace_import, + sym_named_imports, + [187037] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, + ACTIONS(9132), 1, anon_sym_with, - ACTIONS(9478), 1, + ACTIONS(9504), 1, anon_sym_SEMI, - ACTIONS(9480), 1, + ACTIONS(9506), 1, sym__automatic_semicolon, - STATE(5606), 1, + STATE(5605), 1, sym_comment, - STATE(6937), 1, + STATE(6991), 1, sym_import_attribute, - [186973] = 7, - ACTIONS(3), 1, + [187059] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9508), 1, + anon_sym_QMARK, + STATE(5606), 1, + sym_comment, + [187081] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9190), 1, - sym__glimmer_template_content, - ACTIONS(9417), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3064), 1, - sym_glimmer_closing_tag, - STATE(5558), 1, - aux_sym_glimmer_template_repeat1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5607), 1, sym_comment, - [186995] = 4, + STATE(6999), 1, + sym_import_attribute, + ACTIONS(9510), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187101] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5608), 1, sym_comment, - ACTIONS(9482), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [187011] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9484), 1, - sym_html_character_reference, - ACTIONS(9487), 1, - anon_sym_SQUOTE, - ACTIONS(9489), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(5609), 2, + STATE(6662), 1, + sym_import_attribute, + ACTIONS(9512), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187121] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9514), 1, + anon_sym_EQ_GT, + STATE(5609), 1, sym_comment, - aux_sym__jsx_string_repeat2, - [187031] = 7, + ACTIONS(4527), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [187139] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(9492), 1, - anon_sym_class, - STATE(4706), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, + ACTIONS(9516), 1, + anon_sym_EQ_GT, STATE(5610), 1, sym_comment, - [187053] = 7, + ACTIONS(4527), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [187157] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9494), 1, - anon_sym_QMARK, STATE(5611), 1, sym_comment, - [187075] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9518), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [187173] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9496), 1, - sym_html_character_reference, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(5612), 2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5612), 1, sym_comment, - aux_sym__jsx_string_repeat1, - [187095] = 7, + STATE(6775), 1, + sym__from_clause, + ACTIONS(5772), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187193] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9360), 1, - anon_sym_EQ, - ACTIONS(9362), 1, - anon_sym_COMMA, - ACTIONS(9504), 1, - anon_sym_RBRACK, + ACTIONS(9311), 1, + sym__glimmer_template_content, + ACTIONS(9520), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3142), 1, + sym_glimmer_closing_tag, STATE(5613), 1, sym_comment, - STATE(5803), 1, - aux_sym_array_pattern_repeat1, - [187117] = 5, + STATE(5908), 1, + aux_sym_glimmer_template_repeat1, + [187215] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9425), 1, - sym_escape_sequence, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(5575), 1, + aux_sym_sequence_expression_repeat1, STATE(5614), 1, sym_comment, - ACTIONS(9506), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [187135] = 6, + ACTIONS(8339), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187235] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, + ACTIONS(5380), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, + anon_sym_BQUOTE, STATE(5615), 1, sym_comment, - STATE(6717), 1, - sym__from_clause, - ACTIONS(9509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187155] = 7, + STATE(3055), 2, + sym_template_string, + sym_arguments, + [187255] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9511), 1, - anon_sym_COLON, STATE(5616), 1, sym_comment, - [187177] = 7, + ACTIONS(7696), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [187271] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8141), 1, - anon_sym_COMMA, - ACTIONS(8657), 1, - anon_sym_LBRACE, - ACTIONS(8659), 1, - anon_sym_LBRACE_PIPE, - STATE(5512), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9522), 1, + anon_sym_RPAREN, STATE(5617), 1, sym_comment, - [187199] = 6, + [187293] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9297), 1, - anon_sym_COMMA, - STATE(5557), 1, - aux_sym_extends_clause_repeat1, STATE(5618), 1, sym_comment, - ACTIONS(9513), 2, - anon_sym_LBRACE, - anon_sym_implements, - [187219] = 7, + ACTIONS(9378), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [187309] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(9515), 1, - anon_sym_class, - STATE(4706), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, + ACTIONS(9524), 1, + anon_sym_SQUOTE, + STATE(5597), 1, + aux_sym_string_repeat2, STATE(5619), 1, sym_comment, - [187241] = 7, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [187329] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(9517), 1, - anon_sym_COMMA, - ACTIONS(9519), 1, - anon_sym_GT, + ACTIONS(4196), 1, + anon_sym_LPAREN, + ACTIONS(7064), 1, + anon_sym_LT, + STATE(3904), 1, + sym_arguments, + STATE(3994), 1, + sym_type_arguments, STATE(5620), 1, sym_comment, - STATE(5736), 1, - aux_sym_type_arguments_repeat1, - [187263] = 5, + [187351] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9521), 1, - anon_sym_EQ_GT, + ACTIONS(9524), 1, + anon_sym_DQUOTE, + STATE(5598), 1, + aux_sym_string_repeat1, STATE(5621), 1, sym_comment, - ACTIONS(4520), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [187281] = 6, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [187371] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, + ACTIONS(9132), 1, anon_sym_with, + ACTIONS(9526), 1, + anon_sym_SEMI, + ACTIONS(9528), 1, + sym__automatic_semicolon, STATE(5622), 1, sym_comment, - STATE(6865), 1, + STATE(6878), 1, sym_import_attribute, - ACTIONS(9523), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187301] = 4, + [187393] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9395), 1, + anon_sym_EQ, + ACTIONS(9397), 1, + anon_sym_COMMA, + ACTIONS(9530), 1, + anon_sym_RBRACK, STATE(5623), 1, sym_comment, - ACTIONS(9525), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [187317] = 6, + STATE(6316), 1, + aux_sym_array_pattern_repeat1, + [187415] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, + ACTIONS(9532), 1, + anon_sym_DQUOTE, + STATE(5621), 1, + aux_sym_string_repeat1, STATE(5624), 1, sym_comment, - STATE(6562), 1, - sym__from_clause, - ACTIONS(5878), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187337] = 7, + ACTIONS(9126), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [187435] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, + ACTIONS(9148), 1, + anon_sym_COMMA, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, STATE(5625), 1, sym_comment, - STATE(6762), 1, - sym_type_parameters, - STATE(7312), 1, - sym_formal_parameters, - [187359] = 4, + ACTIONS(9534), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187455] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9132), 1, + anon_sym_with, STATE(5626), 1, sym_comment, - ACTIONS(9527), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [187375] = 6, + STATE(6354), 1, + sym_import_attribute, + ACTIONS(9536), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187475] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(8008), 1, + anon_sym_LBRACE, STATE(5627), 1, sym_comment, - STATE(6597), 1, - sym_import_attribute, - ACTIONS(9529), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187395] = 6, + STATE(6734), 1, + sym_statement_block, + ACTIONS(2074), 2, + anon_sym_else, + anon_sym_while, + [187495] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, - anon_sym_with, + ACTIONS(9168), 1, + anon_sym_from, STATE(5628), 1, sym_comment, - STATE(6606), 1, - sym_import_attribute, - ACTIONS(9531), 2, + STATE(6948), 1, + sym__from_clause, + ACTIONS(5914), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187415] = 7, + [187515] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9123), 1, + ACTIONS(9132), 1, anon_sym_with, - ACTIONS(9533), 1, - anon_sym_SEMI, - ACTIONS(9535), 1, - sym__automatic_semicolon, STATE(5629), 1, sym_comment, - STATE(6628), 1, + STATE(6381), 1, sym_import_attribute, - [187437] = 6, + ACTIONS(9538), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187535] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9540), 1, + anon_sym_QMARK, STATE(5630), 1, sym_comment, - ACTIONS(9537), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187457] = 6, + [187557] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(5603), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(2705), 1, + anon_sym_AT, + ACTIONS(9542), 1, + anon_sym_class, + STATE(4667), 1, + aux_sym_export_statement_repeat1, STATE(5631), 1, sym_comment, - ACTIONS(9539), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187477] = 5, + STATE(5640), 1, + sym_decorator, + [187579] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9541), 1, - anon_sym_EQ_GT, + ACTIONS(8106), 1, + anon_sym_DOT, + ACTIONS(9544), 1, + anon_sym_COMMA, + ACTIONS(9546), 1, + anon_sym_GT, STATE(5632), 1, sym_comment, - ACTIONS(4520), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [187495] = 6, + STATE(5740), 1, + aux_sym_type_arguments_repeat1, + [187601] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, STATE(5633), 1, sym_comment, - STATE(6349), 1, - sym_statement_block, - ACTIONS(2071), 2, + ACTIONS(3125), 4, + sym__automatic_semicolon, anon_sym_else, anon_sym_while, - [187515] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + [187617] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, - anon_sym_const, - ACTIONS(9212), 1, - sym_identifier, - ACTIONS(9543), 1, - anon_sym_GT, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5634), 1, sym_comment, - STATE(6739), 1, - sym_type_parameter, - [187537] = 7, + ACTIONS(3083), 4, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + [187633] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(9545), 1, - anon_sym_export, - STATE(4706), 1, - aux_sym_export_statement_repeat1, - STATE(5608), 1, - sym_decorator, + ACTIONS(9168), 1, + anon_sym_from, STATE(5635), 1, sym_comment, - [187559] = 7, + STATE(6488), 1, + sym__from_clause, + ACTIONS(9548), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187653] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - anon_sym_LT, - STATE(3660), 1, - sym_arguments, - STATE(3731), 1, - sym_type_arguments, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9550), 1, + anon_sym_QMARK, STATE(5636), 1, sym_comment, - [187581] = 6, + [187675] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4520), 1, - anon_sym_COLON, - ACTIONS(7223), 1, - anon_sym_EQ, + ACTIONS(9132), 1, + anon_sym_with, STATE(5637), 1, sym_comment, - ACTIONS(9547), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [187601] = 7, + STATE(6937), 1, + sym_import_attribute, + ACTIONS(9552), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187695] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, - ACTIONS(9549), 1, - anon_sym_RPAREN, + ACTIONS(9132), 1, + anon_sym_with, STATE(5638), 1, sym_comment, - [187623] = 6, + STATE(6933), 1, + sym_import_attribute, + ACTIONS(9554), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187715] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8202), 1, - anon_sym_EQ, + ACTIONS(9132), 1, + anon_sym_with, + ACTIONS(9556), 1, + anon_sym_SEMI, + ACTIONS(9558), 1, + sym__automatic_semicolon, STATE(5639), 1, sym_comment, - STATE(6494), 1, - sym_default_type, - ACTIONS(9551), 2, - anon_sym_COMMA, - anon_sym_GT, - [187643] = 7, + STATE(6931), 1, + sym_import_attribute, + [187737] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, STATE(5640), 1, sym_comment, - STATE(6778), 1, - sym_type_parameters, - STATE(7090), 1, - sym_formal_parameters, - [187665] = 7, + ACTIONS(9560), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [187753] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - anon_sym_LT, + ACTIONS(9311), 1, + sym__glimmer_template_content, + ACTIONS(9520), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3077), 1, + sym_glimmer_closing_tag, + STATE(5613), 1, + aux_sym_glimmer_template_repeat1, STATE(5641), 1, sym_comment, - STATE(6510), 1, - sym_type_parameters, - STATE(7338), 1, - sym_formal_parameters, - [187687] = 6, + [187775] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_COMMA, - STATE(5446), 1, + STATE(5561), 1, aux_sym_variable_declaration_repeat1, STATE(5642), 1, sym_comment, - ACTIONS(9553), 2, + ACTIONS(9562), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187707] = 6, + [187795] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_COMMA, - STATE(5447), 1, + STATE(5561), 1, aux_sym_variable_declaration_repeat1, STATE(5643), 1, sym_comment, - ACTIONS(9555), 2, + ACTIONS(9564), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187727] = 6, + [187815] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9557), 1, - anon_sym_COMMA, - ACTIONS(9559), 1, - anon_sym_GT, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, + ACTIONS(9566), 1, + anon_sym_QMARK, STATE(5644), 1, sym_comment, - STATE(6335), 1, - aux_sym_type_parameters_repeat1, - [187746] = 4, + [187837] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9532), 1, + anon_sym_SQUOTE, + STATE(5619), 1, + aux_sym_string_repeat2, STATE(5645), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187761] = 6, + ACTIONS(9144), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [187857] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9563), 1, - anon_sym_LBRACE, - ACTIONS(9565), 1, - anon_sym_LPAREN, - STATE(975), 1, - sym_statement_block, STATE(5646), 1, sym_comment, - [187780] = 5, + ACTIONS(9568), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187872] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5353), 1, - anon_sym_LBRACE, STATE(5647), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(9570), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [187797] = 5, + anon_sym_SEMI, + [187887] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5308), 1, - anon_sym_LBRACE, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(9572), 1, + anon_sym_RBRACE, STATE(5648), 1, sym_comment, - ACTIONS(5310), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [187814] = 6, + STATE(6241), 1, + aux_sym_object_repeat1, + [187906] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9567), 1, - anon_sym_LPAREN, - ACTIONS(9569), 1, - anon_sym_await, - STATE(110), 1, - sym__for_header, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(9574), 1, + anon_sym_RBRACE, STATE(5649), 1, sym_comment, - [187833] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6241), 1, + aux_sym_object_repeat1, + [187925] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9571), 1, - sym_identifier, - ACTIONS(9573), 1, - anon_sym_SEMI, - ACTIONS(9575), 1, - sym__automatic_semicolon, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9576), 1, + anon_sym_as, STATE(5650), 1, sym_comment, - [187852] = 6, + ACTIONS(9578), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [187942] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9577), 1, + ACTIONS(7222), 1, + anon_sym_type, + ACTIONS(9580), 1, sym_identifier, - ACTIONS(9579), 1, - anon_sym_SEMI, - ACTIONS(9581), 1, - sym__automatic_semicolon, STATE(5651), 1, sym_comment, - [187871] = 6, + STATE(6843), 1, + sym__import_identifier, + [187961] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(9583), 1, - anon_sym_EQ, + ACTIONS(7222), 1, + anon_sym_type, + ACTIONS(9580), 1, + sym_identifier, STATE(5652), 1, sym_comment, - STATE(7453), 1, - sym_type_parameters, - [187890] = 4, + STATE(6841), 1, + sym__import_identifier, + [187980] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5653), 1, sym_comment, - ACTIONS(3322), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [187905] = 5, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187995] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9585), 1, - anon_sym_EQ, + ACTIONS(9584), 1, + anon_sym_COMMA, + ACTIONS(9586), 1, + anon_sym_RBRACE, STATE(5654), 1, sym_comment, - ACTIONS(9587), 2, - anon_sym_COMMA, - anon_sym_from, - [187922] = 6, + STATE(5785), 1, + aux_sym_named_imports_repeat1, + [188014] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(9589), 1, - anon_sym_EQ, + ACTIONS(9588), 1, + anon_sym_COMMA, + ACTIONS(9590), 1, + anon_sym_RPAREN, STATE(5655), 1, sym_comment, - STATE(7431), 1, - sym_type_parameters, - [187941] = 4, + STATE(5673), 1, + aux_sym_formal_parameters_repeat1, + [188033] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7966), 1, + anon_sym_DOT, STATE(5656), 1, sym_comment, - ACTIONS(3352), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [187956] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9592), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [188050] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9591), 1, - sym_identifier, - STATE(4235), 1, - sym_decorator_member_expression, - STATE(5563), 1, - sym_decorator_call_expression, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9594), 1, + anon_sym_LBRACE, + ACTIONS(9596), 1, + anon_sym_LPAREN, + STATE(1129), 1, + sym_statement_block, STATE(5657), 1, sym_comment, - [187975] = 5, + [188069] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6425), 1, - sym__automatic_semicolon, + ACTIONS(7990), 1, + anon_sym_DOT, STATE(5658), 1, sym_comment, - ACTIONS(2283), 2, - anon_sym_else, - anon_sym_while, - [187992] = 5, + ACTIONS(9592), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [188086] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6432), 1, - sym__automatic_semicolon, STATE(5659), 1, sym_comment, - ACTIONS(2343), 2, - anon_sym_else, - anon_sym_while, - [188009] = 6, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188101] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(9593), 1, - anon_sym_RBRACE, STATE(5660), 1, sym_comment, - STATE(5725), 1, - aux_sym_object_repeat1, - [188028] = 5, + ACTIONS(9598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188116] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9595), 1, - anon_sym_EQ, STATE(5661), 1, sym_comment, - ACTIONS(9587), 2, + ACTIONS(9600), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [188045] = 6, + anon_sym_SEMI, + [188131] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(9597), 1, - anon_sym_RBRACE, STATE(5662), 1, sym_comment, - STATE(5725), 1, - aux_sym_object_repeat1, - [188064] = 6, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188146] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(9599), 1, - anon_sym_EQ, STATE(5663), 1, sym_comment, - STATE(7403), 1, - sym_type_parameters, - [188083] = 6, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188161] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - ACTIONS(9601), 1, - anon_sym_as, STATE(5664), 1, sym_comment, - STATE(6689), 1, - sym__from_clause, - [188102] = 6, + ACTIONS(9604), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188176] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9603), 1, - anon_sym_COMMA, - ACTIONS(9605), 1, - anon_sym_RPAREN, STATE(5665), 1, sym_comment, - STATE(5989), 1, - aux_sym_formal_parameters_repeat1, - [188121] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9422), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188191] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9607), 1, - sym_identifier, - ACTIONS(9609), 1, - anon_sym_LBRACE, - STATE(5439), 1, - sym_export_clause, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9606), 1, + anon_sym_LPAREN, + ACTIONS(9608), 1, + anon_sym_await, + STATE(82), 1, + sym__for_header, STATE(5666), 1, sym_comment, - [188140] = 5, + [188210] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9611), 1, - anon_sym_EQ, STATE(5667), 1, sym_comment, - ACTIONS(4257), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [188157] = 5, + ACTIONS(9610), 3, + anon_sym_default, + anon_sym_RBRACE, + anon_sym_case, + [188225] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9614), 1, - anon_sym_EQ, STATE(5668), 1, sym_comment, - ACTIONS(9587), 2, + ACTIONS(9612), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [188174] = 6, + anon_sym_SEMI, + [188240] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(7997), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, - sym_object_type, STATE(5669), 1, sym_comment, - [188193] = 6, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188255] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(9616), 1, - anon_sym_EQ, STATE(5670), 1, sym_comment, - STATE(7369), 1, - sym_type_parameters, - [188212] = 5, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188270] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6500), 1, - sym__automatic_semicolon, STATE(5671), 1, sym_comment, - ACTIONS(2365), 2, - anon_sym_else, - anon_sym_while, - [188229] = 5, + ACTIONS(9612), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188285] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6508), 1, - sym__automatic_semicolon, STATE(5672), 1, sym_comment, - ACTIONS(2277), 2, - anon_sym_else, - anon_sym_while, - [188246] = 6, + ACTIONS(8249), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [188300] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, + ACTIONS(9614), 1, anon_sym_COMMA, - ACTIONS(5904), 1, + ACTIONS(9617), 1, anon_sym_RPAREN, - STATE(5673), 1, + STATE(5673), 2, sym_comment, - STATE(5729), 1, - aux_sym_array_repeat1, - [188265] = 6, + aux_sym_formal_parameters_repeat1, + [188317] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5904), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, + ACTIONS(8082), 1, + anon_sym_LBRACE, + ACTIONS(8084), 1, + anon_sym_LBRACE_PIPE, + STATE(1326), 1, + sym_object_type, STATE(5674), 1, sym_comment, - [188284] = 6, + [188336] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(9618), 1, - anon_sym_DOT, - STATE(4716), 1, - sym_arguments, STATE(5675), 1, sym_comment, - [188303] = 6, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188351] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(9620), 1, - anon_sym_EQ, + ACTIONS(9619), 1, + anon_sym_COMMA, + ACTIONS(9621), 1, + anon_sym_RPAREN, STATE(5676), 1, sym_comment, - STATE(7192), 1, - sym_type_parameters, - [188322] = 5, + STATE(5885), 1, + aux_sym_formal_parameters_repeat1, + [188370] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6530), 1, - sym__automatic_semicolon, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5889), 1, + anon_sym_RPAREN, STATE(5677), 1, sym_comment, - ACTIONS(2387), 2, - anon_sym_else, - anon_sym_while, - [188339] = 5, + STATE(5733), 1, + aux_sym_array_repeat1, + [188389] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6528), 1, - sym__automatic_semicolon, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5889), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(5678), 1, sym_comment, - ACTIONS(2375), 2, - anon_sym_else, - anon_sym_while, - [188356] = 4, + [188408] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7128), 1, + anon_sym_LPAREN, + ACTIONS(9623), 1, + anon_sym_DOT, + STATE(4810), 1, + sym_arguments, STATE(5679), 1, sym_comment, - ACTIONS(9622), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188371] = 6, + [188427] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - ACTIONS(9624), 1, - anon_sym_RBRACE, STATE(5680), 1, sym_comment, - STATE(5722), 1, - aux_sym_object_pattern_repeat1, - [188390] = 4, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188442] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9625), 1, + sym_identifier, + ACTIONS(9627), 1, + anon_sym_SEMI, + ACTIONS(9629), 1, + sym__automatic_semicolon, STATE(5681), 1, sym_comment, - ACTIONS(9626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188405] = 6, + [188461] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(9628), 1, - anon_sym_RBRACE, STATE(5682), 1, sym_comment, - STATE(5724), 1, - aux_sym_object_repeat1, - [188424] = 5, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188476] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6510), 1, - sym__automatic_semicolon, STATE(5683), 1, sym_comment, - ACTIONS(2379), 2, - anon_sym_else, - anon_sym_while, - [188441] = 4, + ACTIONS(9631), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188491] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5684), 1, sym_comment, - ACTIONS(9626), 3, + ACTIONS(9600), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188456] = 6, + [188506] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9633), 1, anon_sym_COMMA, - ACTIONS(9624), 1, - anon_sym_RBRACE, + ACTIONS(9635), 1, + anon_sym_RBRACK, STATE(5685), 1, sym_comment, - STATE(5727), 1, - aux_sym_object_pattern_repeat1, - [188475] = 6, + STATE(5842), 1, + aux_sym_tuple_type_repeat1, + [188525] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8757), 1, - anon_sym_DOT, - ACTIONS(9630), 1, - anon_sym_COLON, - ACTIONS(9632), 1, - anon_sym_GT, STATE(5686), 1, sym_comment, - [188494] = 5, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188540] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9634), 1, - anon_sym_LBRACE, STATE(5687), 1, sym_comment, - ACTIONS(8761), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [188511] = 5, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188555] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9636), 1, - anon_sym_EQ, STATE(5688), 1, sym_comment, - ACTIONS(9587), 2, + ACTIONS(9612), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [188528] = 4, + anon_sym_SEMI, + [188570] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5689), 1, sym_comment, - ACTIONS(8071), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [188543] = 6, + ACTIONS(9637), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [188585] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9638), 1, - anon_sym_COMMA, - ACTIONS(9640), 1, - anon_sym_RPAREN, + ACTIONS(8753), 1, + anon_sym_DOT, + ACTIONS(9639), 1, + anon_sym_COLON, + ACTIONS(9641), 1, + anon_sym_GT, STATE(5690), 1, sym_comment, - STATE(5771), 1, - aux_sym_formal_parameters_repeat1, - [188562] = 5, + [188604] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9642), 1, - anon_sym_LBRACE, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(9643), 1, + anon_sym_RPAREN, STATE(5691), 1, sym_comment, - ACTIONS(8893), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [188579] = 6, + STATE(7021), 1, + sym_type_annotation, + [188623] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9362), 1, - anon_sym_COMMA, - ACTIONS(9504), 1, - anon_sym_RBRACK, + ACTIONS(9645), 1, + sym_identifier, + ACTIONS(9647), 1, + anon_sym_SEMI, + ACTIONS(9649), 1, + sym__automatic_semicolon, STATE(5692), 1, sym_comment, - STATE(5803), 1, - aux_sym_array_pattern_repeat1, - [188598] = 6, + [188642] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, + ACTIONS(9397), 1, anon_sym_COMMA, - ACTIONS(5797), 1, + ACTIONS(9399), 1, anon_sym_RBRACK, STATE(5693), 1, sym_comment, - STATE(5797), 1, - aux_sym_array_repeat1, - [188617] = 6, + STATE(5896), 1, + aux_sym_array_pattern_repeat1, + [188661] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5797), 1, - anon_sym_RBRACK, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(5694), 1, sym_comment, - [188636] = 6, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188676] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9362), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(9504), 1, + ACTIONS(5910), 1, anon_sym_RBRACK, STATE(5695), 1, sym_comment, - STATE(5805), 1, - aux_sym_array_pattern_repeat1, - [188655] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5892), 1, + aux_sym_array_repeat1, + [188695] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9644), 1, - anon_sym_DQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7086), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_PIPE, + ACTIONS(7090), 1, + anon_sym_extends, STATE(5696), 1, sym_comment, - ACTIONS(9646), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [188672] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [188714] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9648), 1, - anon_sym_SQUOTE, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5910), 1, + anon_sym_RBRACK, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(5697), 1, sym_comment, - ACTIONS(9650), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [188689] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [188733] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, - anon_sym_const, - ACTIONS(9212), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5698), 1, sym_comment, - STATE(5711), 1, - sym_type_parameter, - [188708] = 6, + ACTIONS(9612), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188748] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7543), 1, - anon_sym_implements, - ACTIONS(9652), 1, - anon_sym_LBRACE, STATE(5699), 1, sym_comment, - STATE(7024), 1, - sym_implements_clause, - [188727] = 6, + ACTIONS(9612), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188763] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(9628), 1, - anon_sym_RBRACE, STATE(5700), 1, sym_comment, - STATE(5725), 1, - aux_sym_object_repeat1, - [188746] = 5, + ACTIONS(9600), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188778] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, - anon_sym_DOT, STATE(5701), 1, sym_comment, - ACTIONS(9654), 2, + ACTIONS(9600), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [188763] = 5, + [188793] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7947), 1, - anon_sym_DOT, + ACTIONS(9397), 1, + anon_sym_COMMA, + ACTIONS(9399), 1, + anon_sym_RBRACK, STATE(5702), 1, sym_comment, - ACTIONS(9654), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [188780] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6310), 1, + aux_sym_array_pattern_repeat1, + [188812] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8045), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9395), 1, + anon_sym_EQ, STATE(5703), 1, sym_comment, - ACTIONS(8049), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [188797] = 6, + ACTIONS(9651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [188829] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9656), 1, + ACTIONS(9653), 1, sym_identifier, - ACTIONS(9658), 1, - anon_sym_LBRACK, - ACTIONS(9660), 1, - sym_private_property_identifier, + ACTIONS(9655), 1, + anon_sym_require, STATE(5704), 1, sym_comment, - [188816] = 5, + STATE(5706), 1, + sym_nested_identifier, + [188848] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - sym__automatic_semicolon, + ACTIONS(7966), 1, + anon_sym_DOT, STATE(5705), 1, sym_comment, - ACTIONS(2301), 2, - anon_sym_else, - anon_sym_while, - [188833] = 5, + ACTIONS(9657), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [188865] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6409), 1, - sym__automatic_semicolon, + ACTIONS(7990), 1, + anon_sym_DOT, STATE(5706), 1, sym_comment, - ACTIONS(2335), 2, - anon_sym_else, - anon_sym_while, - [188850] = 5, + ACTIONS(9657), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [188882] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6339), 1, - sym__automatic_semicolon, + ACTIONS(8384), 1, + anon_sym_COMMA, + ACTIONS(9659), 1, + anon_sym_LBRACE, STATE(5707), 1, sym_comment, - ACTIONS(2313), 2, - anon_sym_else, - anon_sym_while, - [188867] = 4, + STATE(5883), 1, + aux_sym_implements_clause_repeat1, + [188901] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5708), 1, sym_comment, - ACTIONS(9662), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188882] = 5, + [188916] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6337), 1, - sym__automatic_semicolon, STATE(5709), 1, sym_comment, - ACTIONS(2295), 2, - anon_sym_else, - anon_sym_while, - [188899] = 6, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188931] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9664), 1, - anon_sym_DQUOTE, - ACTIONS(9666), 1, - anon_sym_SQUOTE, STATE(5710), 1, sym_comment, - STATE(5939), 1, - sym_string, - [188918] = 6, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188946] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9668), 1, - anon_sym_COMMA, - ACTIONS(9670), 1, - anon_sym_GT, + ACTIONS(9168), 1, + anon_sym_from, + ACTIONS(9661), 1, + anon_sym_as, STATE(5711), 1, sym_comment, - STATE(5857), 1, - aux_sym_type_parameters_repeat1, - [188937] = 6, + STATE(6679), 1, + sym__from_clause, + [188965] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9672), 1, - anon_sym_COMMA, - ACTIONS(9674), 1, - anon_sym_RBRACK, STATE(5712), 1, sym_comment, - STATE(5767), 1, - aux_sym_tuple_type_repeat1, - [188956] = 4, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188980] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5713), 1, sym_comment, - ACTIONS(9676), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [188971] = 6, + [188995] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9678), 1, - anon_sym_COMMA, - ACTIONS(9680), 1, - anon_sym_RBRACE, + ACTIONS(9663), 1, + sym_identifier, + ACTIONS(9665), 1, + anon_sym_LBRACE, + STATE(5532), 1, + sym_export_clause, STATE(5714), 1, sym_comment, - STATE(5944), 1, - aux_sym_export_clause_repeat1, - [188990] = 5, + [189014] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9682), 1, - anon_sym_as, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5904), 1, + anon_sym_RPAREN, STATE(5715), 1, sym_comment, - ACTIONS(9684), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [189007] = 6, + STATE(5747), 1, + aux_sym_array_repeat1, + [189033] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7439), 1, - anon_sym_extends, - ACTIONS(8803), 1, - anon_sym_PIPE, + ACTIONS(9667), 1, + anon_sym_COMMA, + ACTIONS(9669), 1, + anon_sym_RBRACK, STATE(5716), 1, sym_comment, - [189026] = 5, + STATE(5771), 1, + aux_sym_tuple_type_repeat1, + [189052] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9686), 1, - anon_sym_EQ, + ACTIONS(6348), 1, + sym__automatic_semicolon, STATE(5717), 1, sym_comment, - ACTIONS(9587), 2, - anon_sym_COMMA, - anon_sym_from, - [189043] = 4, + ACTIONS(2426), 2, + anon_sym_else, + anon_sym_while, + [189069] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8795), 1, + anon_sym_COMMA, + ACTIONS(9671), 1, + anon_sym_RBRACE, STATE(5718), 1, sym_comment, - ACTIONS(9662), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189058] = 6, + STATE(6242), 1, + aux_sym_object_pattern_repeat1, + [189088] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7175), 1, - anon_sym_LT, - ACTIONS(9688), 1, - anon_sym_EQ, + ACTIONS(5061), 1, + anon_sym_LBRACE, STATE(5719), 1, sym_comment, - STATE(7229), 1, - sym_type_parameters, - [189077] = 6, + ACTIONS(5063), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [189105] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(9690), 1, - anon_sym_RBRACE, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, + anon_sym_extends, + ACTIONS(8761), 1, + anon_sym_PIPE, STATE(5720), 1, sym_comment, - STATE(5725), 1, - aux_sym_object_repeat1, - [189096] = 6, + [189124] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8100), 1, anon_sym_COMMA, - ACTIONS(9692), 1, + ACTIONS(9673), 1, anon_sym_RBRACE, STATE(5721), 1, sym_comment, - STATE(5727), 1, - aux_sym_object_pattern_repeat1, - [189115] = 6, + STATE(6241), 1, + aux_sym_object_repeat1, + [189143] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - ACTIONS(9694), 1, - anon_sym_RBRACE, STATE(5722), 1, sym_comment, - STATE(5727), 1, - aux_sym_object_pattern_repeat1, - [189134] = 5, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189158] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6393), 1, - sym__automatic_semicolon, + ACTIONS(9675), 1, + sym_identifier, + STATE(4125), 1, + sym_decorator_member_expression, + STATE(5616), 1, + sym_decorator_call_expression, STATE(5723), 1, sym_comment, - ACTIONS(2339), 2, - anon_sym_else, - anon_sym_while, - [189151] = 6, + [189177] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(9696), 1, - anon_sym_RBRACE, STATE(5724), 1, sym_comment, - STATE(5725), 1, - aux_sym_object_repeat1, - [189170] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9698), 1, + ACTIONS(9612), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9701), 1, - anon_sym_RBRACE, - STATE(5725), 2, - sym_comment, - aux_sym_object_repeat1, - [189187] = 6, + anon_sym_SEMI, + [189192] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(7997), 1, - anon_sym_LBRACE_PIPE, - STATE(1297), 1, - sym_object_type, - STATE(5726), 1, + STATE(5725), 1, sym_comment, - [189206] = 5, + ACTIONS(3349), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [189207] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9703), 1, + STATE(5726), 1, + sym_comment, + ACTIONS(9582), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9706), 1, - anon_sym_RBRACE, - STATE(5727), 2, + anon_sym_SEMI, + [189222] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9665), 1, + anon_sym_LBRACE, + ACTIONS(9677), 1, + sym_identifier, + STATE(5628), 1, + sym_export_clause, + STATE(5727), 1, sym_comment, - aux_sym_object_pattern_repeat1, - [189223] = 6, + [189241] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9708), 1, - anon_sym_COMMA, - ACTIONS(9710), 1, - anon_sym_RBRACE, + ACTIONS(9168), 1, + anon_sym_from, + ACTIONS(9661), 1, + anon_sym_as, STATE(5728), 1, sym_comment, - STATE(5776), 1, - aux_sym_enum_body_repeat1, - [189242] = 6, + STATE(6943), 1, + sym__from_clause, + [189260] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(9712), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(5729), 1, sym_comment, - [189261] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189275] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9609), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8082), 1, anon_sym_LBRACE, - ACTIONS(9714), 1, - sym_identifier, - STATE(5493), 1, - sym_export_clause, + ACTIONS(8084), 1, + anon_sym_LBRACE_PIPE, + STATE(1417), 1, + sym_object_type, STATE(5730), 1, sym_comment, - [189280] = 4, + [189294] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5731), 1, sym_comment, - ACTIONS(9622), 3, + ACTIONS(9600), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189295] = 6, + [189309] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - ACTIONS(9601), 1, - anon_sym_as, + ACTIONS(9679), 1, + anon_sym_COMMA, + ACTIONS(9681), 1, + anon_sym_RBRACE, STATE(5732), 1, sym_comment, - STATE(6383), 1, - sym__from_clause, - [189314] = 6, + STATE(5780), 1, + aux_sym_enum_body_repeat1, + [189328] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9716), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(9718), 1, - anon_sym_GT, + ACTIONS(9683), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(5733), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [189333] = 4, + [189347] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6350), 1, + sym__automatic_semicolon, STATE(5734), 1, sym_comment, - ACTIONS(9720), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [189348] = 5, + ACTIONS(2430), 2, + anon_sym_else, + anon_sym_while, + [189364] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9722), 1, - anon_sym_EQ, STATE(5735), 1, sym_comment, - ACTIONS(9587), 2, + ACTIONS(9582), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [189365] = 6, + anon_sym_SEMI, + [189379] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9724), 1, + ACTIONS(8100), 1, anon_sym_COMMA, - ACTIONS(9726), 1, - anon_sym_GT, + ACTIONS(9673), 1, + anon_sym_RBRACE, STATE(5736), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [189384] = 4, + STATE(5874), 1, + aux_sym_object_repeat1, + [189398] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9685), 1, + anon_sym_COMMA, + ACTIONS(9687), 1, + anon_sym_GT, STATE(5737), 1, sym_comment, - ACTIONS(9626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189399] = 6, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, + [189417] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9728), 1, - anon_sym_COMMA, - ACTIONS(9730), 1, - anon_sym_GT, STATE(5738), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [189418] = 5, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189432] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9732), 1, - anon_sym_LBRACE, - STATE(5739), 1, + ACTIONS(9689), 1, + anon_sym_COMMA, + ACTIONS(9692), 1, + anon_sym_GT, + STATE(5739), 2, sym_comment, - ACTIONS(8904), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [189435] = 5, + aux_sym_type_parameters_repeat1, + [189449] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9166), 1, - anon_sym_as, + ACTIONS(9694), 1, + anon_sym_COMMA, + ACTIONS(9696), 1, + anon_sym_GT, STATE(5740), 1, sym_comment, - ACTIONS(9587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [189452] = 6, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, + [189468] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(9734), 1, - anon_sym_RPAREN, STATE(5741), 1, sym_comment, - STATE(7135), 1, - sym_type_annotation, - [189471] = 6, + ACTIONS(9612), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189483] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9736), 1, + ACTIONS(9698), 1, anon_sym_COMMA, - ACTIONS(9738), 1, - anon_sym_RPAREN, - STATE(5665), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(9700), 1, + anon_sym_GT, STATE(5742), 1, sym_comment, - [189490] = 6, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, + [189502] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9740), 1, + ACTIONS(8795), 1, anon_sym_COMMA, - ACTIONS(9742), 1, + ACTIONS(9671), 1, anon_sym_RBRACE, STATE(5743), 1, sym_comment, - STATE(5975), 1, - aux_sym_named_imports_repeat1, - [189509] = 5, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + [189521] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_EQ, + ACTIONS(8022), 1, + anon_sym_LBRACE, + ACTIONS(8028), 1, + anon_sym_LBRACE_PIPE, + STATE(1464), 1, + sym_object_type, STATE(5744), 1, sym_comment, - ACTIONS(4344), 2, - anon_sym_in, - anon_sym_of, - [189526] = 4, + [189540] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9702), 1, + anon_sym_COMMA, + ACTIONS(9704), 1, + anon_sym_RBRACE, STATE(5745), 1, sym_comment, - ACTIONS(9626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189541] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5899), 1, + aux_sym_enum_body_repeat1, + [189559] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9744), 1, - sym_identifier, - ACTIONS(9746), 1, - anon_sym_require, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5746), 1, sym_comment, - STATE(5999), 1, - sym_nested_identifier, - [189560] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189574] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9746), 1, - anon_sym_require, - ACTIONS(9748), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(9706), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(5747), 1, sym_comment, - STATE(6305), 1, - sym_nested_identifier, - [189579] = 6, + [189593] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3188), 1, - anon_sym_while, - ACTIONS(9750), 1, - anon_sym_else, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(9708), 1, + anon_sym_EQ, STATE(5748), 1, sym_comment, - STATE(6719), 1, - sym_else_clause, - [189598] = 4, + STATE(7457), 1, + sym_type_parameters, + [189612] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5749), 1, sym_comment, - ACTIONS(3144), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [189613] = 4, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189627] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9710), 1, + anon_sym_COMMA, + ACTIONS(9712), 1, + anon_sym_GT, STATE(5750), 1, sym_comment, - ACTIONS(9752), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189628] = 4, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, + [189646] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5751), 1, sym_comment, - ACTIONS(9754), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189643] = 4, + [189661] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9714), 1, + anon_sym_COMMA, + ACTIONS(9716), 1, + anon_sym_GT, STATE(5752), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189658] = 6, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, + [189680] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, + ACTIONS(9718), 1, anon_sym_COMMA, - ACTIONS(9758), 1, - anon_sym_RBRACE, - STATE(5725), 1, - aux_sym_object_repeat1, + ACTIONS(9720), 1, + anon_sym_GT, STATE(5753), 1, sym_comment, - [189677] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, + [189699] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9609), 1, - anon_sym_LBRACE, - ACTIONS(9760), 1, - sym_identifier, - STATE(5451), 1, - sym_export_clause, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5754), 1, sym_comment, - [189696] = 6, + ACTIONS(9612), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189714] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(9758), 1, - anon_sym_RBRACE, - STATE(5662), 1, - aux_sym_object_repeat1, STATE(5755), 1, sym_comment, - [189715] = 4, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189729] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9655), 1, + anon_sym_require, + ACTIONS(9722), 1, + sym_identifier, STATE(5756), 1, sym_comment, - ACTIONS(9662), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189730] = 4, + STATE(6246), 1, + sym_nested_identifier, + [189748] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5757), 1, sym_comment, - ACTIONS(9754), 3, + ACTIONS(9600), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189745] = 6, + [189763] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - ACTIONS(9601), 1, - anon_sym_as, + ACTIONS(5049), 1, + anon_sym_LBRACE, STATE(5758), 1, sym_comment, - STATE(6575), 1, - sym__from_clause, - [189764] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [189780] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9762), 1, - sym_identifier, - ACTIONS(9764), 1, - anon_sym_LBRACK, - ACTIONS(9766), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5759), 1, sym_comment, - [189783] = 4, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189795] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5760), 1, sym_comment, - ACTIONS(8817), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189798] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [189810] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9768), 1, - sym_identifier, - ACTIONS(9770), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5761), 1, sym_comment, - [189817] = 4, + ACTIONS(9612), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189825] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6392), 1, + sym__automatic_semicolon, STATE(5762), 1, sym_comment, - ACTIONS(8817), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189832] = 6, + ACTIONS(2398), 2, + anon_sym_else, + anon_sym_while, + [189842] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9774), 1, + ACTIONS(9724), 1, sym_identifier, - ACTIONS(9776), 1, + ACTIONS(9726), 1, anon_sym_LBRACK, - ACTIONS(9778), 1, + ACTIONS(9728), 1, sym_private_property_identifier, STATE(5763), 1, sym_comment, - [189851] = 5, + [189861] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9780), 1, - anon_sym_EQ, + ACTIONS(9730), 1, + anon_sym_COMMA, + ACTIONS(9732), 1, + anon_sym_RBRACE, STATE(5764), 1, sym_comment, - ACTIONS(4344), 2, - anon_sym_in, - anon_sym_of, - [189868] = 6, + STATE(5772), 1, + aux_sym_export_clause_repeat1, + [189880] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9782), 1, + ACTIONS(9734), 1, sym_identifier, - ACTIONS(9784), 1, + ACTIONS(9736), 1, anon_sym_LBRACK, - ACTIONS(9786), 1, + ACTIONS(9738), 1, sym_private_property_identifier, STATE(5765), 1, sym_comment, - [189887] = 4, + [189899] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9740), 1, + anon_sym_COMMA, + ACTIONS(9742), 1, + anon_sym_GT, STATE(5766), 1, sym_comment, - ACTIONS(9788), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189902] = 6, + STATE(5922), 1, + aux_sym_type_parameters_repeat1, + [189918] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9790), 1, - anon_sym_COMMA, - ACTIONS(9792), 1, - anon_sym_RBRACK, + ACTIONS(9744), 1, + sym_identifier, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9748), 1, + sym_private_property_identifier, STATE(5767), 1, sym_comment, - STATE(6104), 1, - aux_sym_tuple_type_repeat1, - [189921] = 4, + [189937] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5768), 1, sym_comment, - ACTIONS(8063), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [189936] = 6, + ACTIONS(9750), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [189952] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(9794), 1, - anon_sym_RPAREN, + ACTIONS(9752), 1, + sym_identifier, + ACTIONS(9754), 1, + anon_sym_LBRACK, + ACTIONS(9756), 1, + sym_private_property_identifier, STATE(5769), 1, sym_comment, - STATE(7069), 1, - sym_type_annotation, - [189955] = 4, + [189971] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5770), 1, sym_comment, - ACTIONS(9796), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189970] = 6, + [189986] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9798), 1, + ACTIONS(9758), 1, anon_sym_COMMA, - ACTIONS(9800), 1, - anon_sym_RPAREN, + ACTIONS(9760), 1, + anon_sym_RBRACK, STATE(5771), 1, sym_comment, - STATE(5989), 1, - aux_sym_formal_parameters_repeat1, - [189989] = 4, + STATE(6011), 1, + aux_sym_tuple_type_repeat1, + [190005] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5772), 1, - sym_comment, - ACTIONS(9802), 3, - sym__automatic_semicolon, + ACTIONS(9762), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190004] = 4, + ACTIONS(9765), 1, + anon_sym_RBRACE, + STATE(5772), 2, + sym_comment, + aux_sym_export_clause_repeat1, + [190022] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5049), 1, + anon_sym_LBRACE, STATE(5773), 1, sym_comment, - ACTIONS(9802), 3, - sym__automatic_semicolon, + ACTIONS(5051), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190019] = 6, + anon_sym_LBRACE_PIPE, + [190039] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9804), 1, - anon_sym_COMMA, - ACTIONS(9806), 1, - anon_sym_RBRACE, STATE(5774), 1, sym_comment, - STATE(6049), 1, - aux_sym_enum_body_repeat1, - [190038] = 4, + ACTIONS(9600), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190054] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6494), 1, + sym__automatic_semicolon, STATE(5775), 1, sym_comment, - ACTIONS(9796), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190053] = 6, + ACTIONS(2352), 2, + anon_sym_else, + anon_sym_while, + [190071] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9808), 1, - anon_sym_COMMA, - ACTIONS(9810), 1, - anon_sym_RBRACE, + ACTIONS(7222), 1, + anon_sym_type, + ACTIONS(9580), 1, + sym_identifier, STATE(5776), 1, sym_comment, - STATE(6049), 1, - aux_sym_enum_body_repeat1, - [190072] = 4, + STATE(6708), 1, + sym__import_identifier, + [190090] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5777), 1, sym_comment, - ACTIONS(9662), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190087] = 4, + [190105] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9767), 1, + anon_sym_COMMA, + ACTIONS(9769), 1, + anon_sym_RBRACE, STATE(5778), 1, sym_comment, - ACTIONS(9812), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190102] = 4, + STATE(6066), 1, + aux_sym_enum_body_repeat1, + [190124] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5053), 1, + anon_sym_LBRACE, STATE(5779), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, + ACTIONS(5055), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190117] = 4, + anon_sym_LBRACE_PIPE, + [190141] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9771), 1, + anon_sym_COMMA, + ACTIONS(9773), 1, + anon_sym_RBRACE, STATE(5780), 1, sym_comment, - ACTIONS(9802), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190132] = 4, + STATE(6066), 1, + aux_sym_enum_body_repeat1, + [190160] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5781), 1, sym_comment, - ACTIONS(9802), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190147] = 4, + [190175] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7222), 1, + anon_sym_type, + ACTIONS(9580), 1, + sym_identifier, STATE(5782), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190162] = 4, + STATE(6707), 1, + sym__import_identifier, + [190194] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5783), 1, sym_comment, - ACTIONS(9756), 3, + ACTIONS(9600), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190177] = 4, + [190209] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5784), 1, sym_comment, - ACTIONS(9756), 3, + ACTIONS(9775), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [190192] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190224] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9746), 1, - anon_sym_require, - ACTIONS(9814), 1, - sym_identifier, - STATE(5785), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9777), 1, + anon_sym_COMMA, + ACTIONS(9780), 1, + anon_sym_RBRACE, + STATE(5785), 2, sym_comment, - STATE(6242), 1, - sym_nested_identifier, - [190211] = 4, + aux_sym_named_imports_repeat1, + [190241] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5786), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190226] = 4, + [190256] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_SQUOTE, STATE(5787), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190241] = 4, + STATE(7112), 1, + sym_string, + [190275] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9782), 1, + anon_sym_as, STATE(5788), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, + ACTIONS(9784), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190256] = 4, + anon_sym_RBRACE, + [190292] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5789), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190271] = 4, + ACTIONS(8072), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [190307] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6276), 1, + sym__automatic_semicolon, STATE(5790), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190286] = 4, + ACTIONS(2336), 2, + anon_sym_else, + anon_sym_while, + [190324] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5791), 1, sym_comment, - ACTIONS(9756), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190301] = 6, + [190339] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9818), 1, - anon_sym_LBRACE, - ACTIONS(9820), 1, - anon_sym_LPAREN, - STATE(1367), 1, - sym_statement_block, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(9786), 1, + anon_sym_RPAREN, STATE(5792), 1, sym_comment, - [190320] = 4, + STATE(7096), 1, + sym_type_annotation, + [190358] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9788), 1, + sym_identifier, + ACTIONS(9790), 1, + anon_sym_LBRACK, + ACTIONS(9792), 1, + sym_private_property_identifier, STATE(5793), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190335] = 4, + [190377] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + ACTIONS(9661), 1, + anon_sym_as, STATE(5794), 1, sym_comment, - ACTIONS(5906), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [190350] = 5, + STATE(6506), 1, + sym__from_clause, + [190396] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9360), 1, + ACTIONS(9794), 1, anon_sym_EQ, STATE(5795), 1, sym_comment, - ACTIONS(9822), 2, + ACTIONS(9796), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [190367] = 4, + anon_sym_from, + [190413] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(9798), 1, + anon_sym_EQ, STATE(5796), 1, sym_comment, - ACTIONS(9824), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190382] = 6, + STATE(7435), 1, + sym_type_parameters, + [190432] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(9826), 1, - anon_sym_RBRACK, - STATE(5471), 1, - aux_sym_array_repeat1, + ACTIONS(5253), 1, + anon_sym_LBRACE, STATE(5797), 1, sym_comment, - [190401] = 4, + ACTIONS(5255), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [190449] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5798), 1, sym_comment, - ACTIONS(9662), 3, + ACTIONS(9800), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190416] = 6, + [190464] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9609), 1, + ACTIONS(9665), 1, anon_sym_LBRACE, - ACTIONS(9828), 1, + ACTIONS(9802), 1, sym_identifier, - STATE(5444), 1, + STATE(5612), 1, sym_export_clause, STATE(5799), 1, sym_comment, - [190435] = 4, + [190483] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5100), 1, + anon_sym_LBRACE, STATE(5800), 1, sym_comment, - ACTIONS(9830), 3, - sym__automatic_semicolon, + ACTIONS(5102), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190450] = 6, + anon_sym_LBRACE_PIPE, + [190500] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - ACTIONS(9601), 1, - anon_sym_as, STATE(5801), 1, sym_comment, - STATE(6935), 1, - sym__from_clause, - [190469] = 4, + ACTIONS(9804), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190515] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5802), 1, sym_comment, - ACTIONS(9832), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190484] = 6, + [190530] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9362), 1, - anon_sym_COMMA, - ACTIONS(9834), 1, - anon_sym_RBRACK, STATE(5803), 1, sym_comment, - STATE(5805), 1, - aux_sym_array_pattern_repeat1, - [190503] = 4, + ACTIONS(9800), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190545] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5804), 1, sym_comment, - ACTIONS(9832), 3, + ACTIONS(9806), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190518] = 5, + [190560] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9822), 1, - anon_sym_RBRACK, - ACTIONS(9836), 1, - anon_sym_COMMA, - STATE(5805), 2, + STATE(5805), 1, sym_comment, - aux_sym_array_pattern_repeat1, - [190535] = 4, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190575] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5806), 1, sym_comment, - ACTIONS(9756), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190550] = 4, + [190590] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5807), 1, sym_comment, - ACTIONS(9756), 3, + ACTIONS(9806), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190565] = 4, + [190605] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5808), 1, sym_comment, - ACTIONS(9756), 3, + ACTIONS(9808), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190580] = 4, + [190620] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5809), 1, sym_comment, - ACTIONS(6769), 3, + ACTIONS(9600), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190595] = 4, + [190635] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5810), 1, sym_comment, - ACTIONS(9756), 3, + ACTIONS(9810), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190610] = 4, + [190650] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5116), 1, + anon_sym_LBRACE, STATE(5811), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, + ACTIONS(5118), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190625] = 4, + anon_sym_LBRACE_PIPE, + [190667] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5124), 1, + anon_sym_LBRACE, STATE(5812), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, + ACTIONS(5126), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190640] = 4, + anon_sym_LBRACE_PIPE, + [190684] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(9812), 1, + anon_sym_EQ, STATE(5813), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190655] = 4, + STATE(7278), 1, + sym_type_parameters, + [190703] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5245), 1, + anon_sym_LBRACE, STATE(5814), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, + ACTIONS(5247), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190670] = 4, + anon_sym_LBRACE_PIPE, + [190720] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8795), 1, + anon_sym_COMMA, + ACTIONS(9814), 1, + anon_sym_RBRACE, STATE(5815), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190685] = 4, + STATE(6227), 1, + aux_sym_object_pattern_repeat1, + [190739] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9816), 1, + anon_sym_EQ, STATE(5816), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, + ACTIONS(9796), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190700] = 4, + anon_sym_from, + [190756] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(9818), 1, + anon_sym_EQ, STATE(5817), 1, sym_comment, - ACTIONS(9662), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190715] = 4, + STATE(7407), 1, + sym_type_parameters, + [190775] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5818), 1, sym_comment, - ACTIONS(9830), 3, - sym__automatic_semicolon, + ACTIONS(9820), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [190730] = 4, + anon_sym_implements, + [190790] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9822), 1, + sym_identifier, + ACTIONS(9824), 1, + anon_sym_LBRACK, + ACTIONS(9826), 1, + sym_private_property_identifier, STATE(5819), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190745] = 4, + [190809] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9828), 1, + anon_sym_LBRACE, STATE(5820), 1, sym_comment, - ACTIONS(9839), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190760] = 4, + ACTIONS(8817), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [190826] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9830), 1, + sym_identifier, + ACTIONS(9832), 1, + anon_sym_LBRACK, + ACTIONS(9834), 1, + sym_private_property_identifier, STATE(5821), 1, sym_comment, - ACTIONS(9839), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190775] = 4, + [190845] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5822), 1, sym_comment, - ACTIONS(9622), 3, + ACTIONS(9600), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190790] = 4, + [190860] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5823), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190805] = 4, + [190875] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9836), 1, + sym_identifier, + ACTIONS(9838), 1, + anon_sym_LBRACK, + ACTIONS(9840), 1, + sym_private_property_identifier, STATE(5824), 1, sym_comment, - ACTIONS(9626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190820] = 4, + [190894] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9844), 1, + anon_sym_LBRACK, + ACTIONS(9846), 1, + sym_private_property_identifier, STATE(5825), 1, sym_comment, - ACTIONS(9841), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190835] = 4, + [190913] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5826), 1, sym_comment, - ACTIONS(9626), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190850] = 4, + [190928] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5827), 1, sym_comment, - ACTIONS(9843), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190865] = 4, + [190943] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(9848), 1, + anon_sym_RBRACE, STATE(5828), 1, sym_comment, - ACTIONS(9662), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190880] = 4, + STATE(6233), 1, + aux_sym_object_repeat1, + [190962] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5829), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9600), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190895] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190977] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9845), 1, - sym_identifier, - STATE(3407), 1, - sym_decorator_member_expression, - STATE(3578), 1, - sym_decorator_call_expression, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5830), 1, sym_comment, - [190914] = 4, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190992] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5831), 1, sym_comment, - ACTIONS(9824), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190929] = 4, + [191007] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5832), 1, sym_comment, - ACTIONS(9662), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190944] = 4, + [191022] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9850), 1, + anon_sym_COMMA, + ACTIONS(9852), 1, + anon_sym_RPAREN, + STATE(5655), 1, + aux_sym_formal_parameters_repeat1, STATE(5833), 1, sym_comment, - ACTIONS(9832), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190959] = 4, + [191041] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5834), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190974] = 4, + [191056] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5835), 1, sym_comment, - ACTIONS(9816), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190989] = 4, + [191071] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5836), 1, sym_comment, - ACTIONS(9662), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191004] = 4, + [191086] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5837), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191019] = 4, + [191101] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5838), 1, sym_comment, - ACTIONS(9832), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191034] = 4, + [191116] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5839), 1, sym_comment, - ACTIONS(9622), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191049] = 4, + [191131] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(9854), 1, + anon_sym_RPAREN, STATE(5840), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191064] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7073), 1, + sym_type_annotation, + [191150] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9847), 1, - sym_identifier, - ACTIONS(9849), 1, - anon_sym_SEMI, - ACTIONS(9851), 1, - sym__automatic_semicolon, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5841), 1, sym_comment, - [191083] = 6, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191165] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9853), 1, - anon_sym_LPAREN, - ACTIONS(9855), 1, - anon_sym_await, - STATE(119), 1, - sym__for_header, + ACTIONS(9856), 1, + anon_sym_COMMA, + ACTIONS(9858), 1, + anon_sym_RBRACK, STATE(5842), 1, sym_comment, - [191102] = 4, + STATE(6011), 1, + aux_sym_tuple_type_repeat1, + [191184] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5843), 1, sym_comment, - ACTIONS(9626), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191117] = 4, + [191199] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(9860), 1, + anon_sym_RPAREN, STATE(5844), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191132] = 4, + STATE(7071), 1, + sym_type_annotation, + [191218] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5845), 1, sym_comment, - ACTIONS(9756), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191147] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [191233] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9857), 1, - sym_identifier, - ACTIONS(9859), 1, - anon_sym_SEMI, - ACTIONS(9861), 1, - sym__automatic_semicolon, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9862), 1, + anon_sym_LPAREN, + ACTIONS(9864), 1, + anon_sym_await, + STATE(114), 1, + sym__for_header, STATE(5846), 1, sym_comment, - [191166] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [191252] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9863), 1, - sym_identifier, - ACTIONS(9865), 1, - anon_sym_SEMI, - ACTIONS(9867), 1, - sym__automatic_semicolon, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5847), 1, sym_comment, - [191185] = 4, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191267] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(9866), 1, + anon_sym_RBRACE, STATE(5848), 1, sym_comment, - ACTIONS(9869), 3, - sym__automatic_semicolon, + STATE(6241), 1, + aux_sym_object_repeat1, + [191286] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8795), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191200] = 6, + ACTIONS(9868), 1, + anon_sym_RBRACE, + STATE(5849), 1, + sym_comment, + STATE(6242), 1, + aux_sym_object_pattern_repeat1, + [191305] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9871), 1, + ACTIONS(9870), 1, sym_identifier, - ACTIONS(9873), 1, + ACTIONS(9872), 1, anon_sym_SEMI, - ACTIONS(9875), 1, + ACTIONS(9874), 1, sym__automatic_semicolon, - STATE(5849), 1, - sym_comment, - [191219] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5850), 1, sym_comment, - ACTIONS(9626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191234] = 4, + [191324] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9876), 1, + sym_identifier, + ACTIONS(9878), 1, + anon_sym_SEMI, + ACTIONS(9880), 1, + sym__automatic_semicolon, STATE(5851), 1, sym_comment, - ACTIONS(9756), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191249] = 4, + [191343] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5852), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9882), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [191264] = 4, + [191358] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5853), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191279] = 4, + [191373] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5854), 1, sym_comment, - ACTIONS(9662), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191294] = 6, + [191388] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9879), 1, - anon_sym_LPAREN, - ACTIONS(9881), 1, - anon_sym_await, - STATE(87), 1, - sym__for_header, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(9884), 1, + anon_sym_RBRACE, STATE(5855), 1, sym_comment, - [191313] = 4, + STATE(6241), 1, + aux_sym_object_repeat1, + [191407] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5856), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191328] = 6, + [191422] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9883), 1, - anon_sym_COMMA, - ACTIONS(9885), 1, - anon_sym_GT, STATE(5857), 1, sym_comment, - STATE(6066), 1, - aux_sym_type_parameters_repeat1, - [191347] = 4, + ACTIONS(9582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191437] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(9884), 1, + anon_sym_RBRACE, + STATE(5649), 1, + aux_sym_object_repeat1, STATE(5858), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191362] = 4, + [191456] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5859), 1, sym_comment, - ACTIONS(9662), 3, + ACTIONS(9600), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191377] = 4, + [191471] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8795), 1, + anon_sym_COMMA, + ACTIONS(9814), 1, + anon_sym_RBRACE, STATE(5860), 1, sym_comment, - ACTIONS(9830), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191392] = 4, + STATE(6242), 1, + aux_sym_object_pattern_repeat1, + [191490] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5861), 1, sym_comment, - ACTIONS(9830), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191407] = 4, + [191505] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5862), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191422] = 4, + [191520] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5863), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191437] = 4, + [191535] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5864), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191452] = 4, + [191550] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5865), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191467] = 4, + [191565] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5057), 1, + anon_sym_LBRACE, STATE(5866), 1, sym_comment, - ACTIONS(9662), 3, - sym__automatic_semicolon, + ACTIONS(5059), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191482] = 4, + anon_sym_LBRACE_PIPE, + [191582] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5867), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191497] = 4, + [191597] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5280), 1, + anon_sym_LBRACE, STATE(5868), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, + ACTIONS(5282), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191512] = 4, + anon_sym_LBRACE_PIPE, + [191614] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8795), 1, + anon_sym_COMMA, + ACTIONS(9886), 1, + anon_sym_RBRACE, STATE(5869), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191527] = 4, + STATE(6242), 1, + aux_sym_object_pattern_repeat1, + [191633] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5870), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191542] = 6, + [191648] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8188), 1, - anon_sym_LBRACE, - ACTIONS(8190), 1, - anon_sym_LBRACE_PIPE, - STATE(1562), 1, - sym_object_type, STATE(5871), 1, sym_comment, - [191561] = 4, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191663] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5872), 1, sym_comment, - ACTIONS(9622), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191576] = 4, + [191678] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5873), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191591] = 4, + [191693] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(9888), 1, + anon_sym_RBRACE, STATE(5874), 1, sym_comment, - ACTIONS(9626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191606] = 4, + STATE(6241), 1, + aux_sym_object_repeat1, + [191712] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5875), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191621] = 4, + [191727] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5876), 1, sym_comment, - ACTIONS(9816), 3, + ACTIONS(9612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191636] = 4, + [191742] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5877), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(9800), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191651] = 4, + [191757] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5878), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191666] = 4, + [191772] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5879), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191681] = 6, + [191787] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5868), 1, - anon_sym_RPAREN, STATE(5880), 1, sym_comment, - STATE(6089), 1, - aux_sym_array_repeat1, - [191700] = 6, + ACTIONS(9612), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191802] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5868), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(5881), 1, sym_comment, - [191719] = 4, + ACTIONS(9602), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191817] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5882), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191734] = 6, + [191832] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - ACTIONS(9889), 1, - anon_sym_DOT, - STATE(4308), 1, - sym_arguments, - STATE(5883), 1, + ACTIONS(8927), 1, + anon_sym_LBRACE, + ACTIONS(9890), 1, + anon_sym_COMMA, + STATE(5883), 2, sym_comment, - [191753] = 4, + aux_sym_implements_clause_repeat1, + [191849] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8170), 1, + anon_sym_EQ, STATE(5884), 1, sym_comment, - ACTIONS(9626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191768] = 4, + ACTIONS(4365), 2, + anon_sym_in, + anon_sym_of, + [191866] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9893), 1, + anon_sym_COMMA, + ACTIONS(9895), 1, + anon_sym_RPAREN, + STATE(5673), 1, + aux_sym_formal_parameters_repeat1, STATE(5885), 1, sym_comment, - ACTIONS(9891), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191783] = 4, + [191885] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5886), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191798] = 4, + [191900] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9897), 1, + anon_sym_EQ, STATE(5887), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, + ACTIONS(9796), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191813] = 4, + anon_sym_from, + [191917] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5888), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191828] = 4, + [191932] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7936), 1, + anon_sym_const, + ACTIONS(9224), 1, + sym_identifier, STATE(5889), 1, sym_comment, - ACTIONS(9662), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191843] = 4, + STATE(6904), 1, + sym_type_parameter, + [191951] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + ACTIONS(9899), 1, + anon_sym_LPAREN, + STATE(5725), 1, + sym_statement_block, STATE(5890), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191858] = 4, + [191970] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5891), 1, sym_comment, - ACTIONS(9830), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191873] = 4, + [191985] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(9901), 1, + anon_sym_RBRACK, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(5892), 1, sym_comment, - ACTIONS(9830), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191888] = 4, + [192004] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5893), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191903] = 4, + [192019] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9903), 1, + anon_sym_COMMA, + ACTIONS(9905), 1, + anon_sym_RBRACE, STATE(5894), 1, sym_comment, - ACTIONS(9841), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191918] = 4, + STATE(6066), 1, + aux_sym_enum_body_repeat1, + [192038] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5895), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191933] = 6, + [192053] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(9893), 1, - anon_sym_RPAREN, + ACTIONS(9397), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, + anon_sym_RBRACK, STATE(5896), 1, sym_comment, - STATE(7054), 1, - sym_type_annotation, - [191952] = 4, + STATE(6310), 1, + aux_sym_array_pattern_repeat1, + [192072] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5897), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9909), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191967] = 4, + [192087] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5898), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(9911), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191982] = 4, + [192102] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9913), 1, + anon_sym_COMMA, + ACTIONS(9915), 1, + anon_sym_RBRACE, STATE(5899), 1, sym_comment, - ACTIONS(9662), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191997] = 4, + STATE(6066), 1, + aux_sym_enum_body_repeat1, + [192121] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(3131), 1, + anon_sym_while, + ACTIONS(9917), 1, + anon_sym_else, STATE(5900), 1, sym_comment, - ACTIONS(9891), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192012] = 4, + STATE(6903), 1, + sym_else_clause, + [192140] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8106), 1, + anon_sym_DOT, STATE(5901), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, + ACTIONS(9919), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192027] = 4, + anon_sym_GT, + [192157] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9655), 1, + anon_sym_require, + ACTIONS(9921), 1, + sym_identifier, STATE(5902), 1, sym_comment, - ACTIONS(9622), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192042] = 4, + STATE(6102), 1, + sym_nested_identifier, + [192176] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5903), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9923), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192057] = 4, + [192191] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5904), 1, sym_comment, - ACTIONS(9626), 3, + ACTIONS(9925), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192072] = 4, + [192206] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5905), 1, - sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, + ACTIONS(8953), 1, + anon_sym_GT, + ACTIONS(9927), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192087] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9895), 1, - sym__glimmer_template_content, - ACTIONS(9898), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(5906), 2, + STATE(5905), 2, sym_comment, - aux_sym_glimmer_template_repeat1, - [192104] = 4, + aux_sym_type_arguments_repeat1, + [192223] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5907), 1, + STATE(5906), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9911), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192119] = 4, + [192238] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(5908), 1, + ACTIONS(8753), 1, + anon_sym_DOT, + ACTIONS(9639), 1, + anon_sym_COLON, + ACTIONS(9930), 1, + anon_sym_GT, + STATE(5907), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192134] = 4, + [192257] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(9932), 1, + sym__glimmer_template_content, + ACTIONS(9935), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(5908), 2, + sym_comment, + aux_sym_glimmer_template_repeat1, + [192274] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5061), 1, + anon_sym_LBRACE, STATE(5909), 1, sym_comment, - ACTIONS(9626), 3, - sym__automatic_semicolon, + ACTIONS(5063), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192149] = 4, + anon_sym_LBRACE_PIPE, + [192291] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5910), 1, sym_comment, - ACTIONS(9900), 3, + ACTIONS(9937), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [192164] = 4, + [192306] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5911), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192179] = 4, + [192321] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9941), 1, + anon_sym_EQ, STATE(5912), 1, sym_comment, - ACTIONS(9841), 3, - sym__automatic_semicolon, + ACTIONS(4269), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192194] = 4, + anon_sym_RBRACK, + [192338] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + ACTIONS(9661), 1, + anon_sym_as, STATE(5913), 1, sym_comment, - ACTIONS(9891), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192209] = 4, + STATE(6494), 1, + sym__from_clause, + [192357] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7936), 1, + anon_sym_const, + ACTIONS(9224), 1, + sym_identifier, + STATE(5766), 1, + sym_type_parameter, STATE(5914), 1, sym_comment, - ACTIONS(9841), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192224] = 4, + [192376] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9665), 1, + anon_sym_LBRACE, + ACTIONS(9944), 1, + sym_identifier, + STATE(5428), 1, + sym_export_clause, STATE(5915), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192239] = 4, + [192395] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9946), 1, + anon_sym_LBRACE, STATE(5916), 1, sym_comment, - ACTIONS(9662), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192254] = 4, + ACTIONS(8864), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [192412] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5917), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9570), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192269] = 4, + [192427] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5918), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192284] = 4, + [192442] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5919), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9950), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192299] = 4, + [192457] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5920), 1, sym_comment, - ACTIONS(9816), 3, + ACTIONS(9952), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192314] = 4, + [192472] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5921), 1, sym_comment, - ACTIONS(9902), 3, + ACTIONS(9954), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192329] = 4, + [192487] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9956), 1, + anon_sym_COMMA, + ACTIONS(9958), 1, + anon_sym_GT, + STATE(5739), 1, + aux_sym_type_parameters_repeat1, STATE(5922), 1, sym_comment, - ACTIONS(9904), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192344] = 4, + [192506] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9960), 1, + sym_identifier, + STATE(3410), 1, + sym_decorator_member_expression, + STATE(3569), 1, + sym_decorator_call_expression, STATE(5923), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192359] = 4, + [192525] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5924), 1, sym_comment, - ACTIONS(9906), 3, + ACTIONS(9962), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192374] = 4, + [192540] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(9848), 1, + anon_sym_RBRACE, STATE(5925), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192389] = 4, + STATE(6241), 1, + aux_sym_object_repeat1, + [192559] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5926), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192404] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [192574] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9746), 1, - anon_sym_require, - ACTIONS(9908), 1, - sym_identifier, - STATE(5702), 1, - sym_nested_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5927), 1, sym_comment, - [192423] = 4, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192589] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5928), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192438] = 4, + [192604] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5929), 1, sym_comment, - ACTIONS(9910), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192453] = 6, + [192619] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8757), 1, - anon_sym_DOT, - ACTIONS(9630), 1, - anon_sym_COLON, - ACTIONS(9912), 1, - anon_sym_GT, STATE(5930), 1, sym_comment, - [192472] = 4, + ACTIONS(9952), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192634] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5931), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9966), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192487] = 4, + [192649] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9968), 1, + anon_sym_EQ, STATE(5932), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, + ACTIONS(9796), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192502] = 4, + anon_sym_from, + [192666] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(9970), 1, + anon_sym_EQ, STATE(5933), 1, sym_comment, - ACTIONS(9887), 3, + STATE(7373), 1, + sym_type_parameters, + [192685] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(5934), 1, + sym_comment, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192517] = 6, + [192700] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9609), 1, - anon_sym_LBRACE, - ACTIONS(9914), 1, + ACTIONS(9972), 1, sym_identifier, - STATE(5624), 1, - sym_export_clause, - STATE(5934), 1, - sym_comment, - [192536] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - ACTIONS(9601), 1, - anon_sym_as, + ACTIONS(9974), 1, + anon_sym_SEMI, + ACTIONS(9976), 1, + sym__automatic_semicolon, STATE(5935), 1, sym_comment, - STATE(6513), 1, - sym__from_clause, - [192555] = 4, + [192719] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9978), 1, + sym_identifier, + ACTIONS(9980), 1, + anon_sym_SEMI, + ACTIONS(9982), 1, + sym__automatic_semicolon, STATE(5936), 1, sym_comment, - ACTIONS(9891), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192570] = 4, + [192738] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5937), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9570), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192585] = 4, + [192753] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5938), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9984), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192600] = 4, + [192768] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(9986), 1, + anon_sym_DOT, + STATE(4318), 1, + sym_arguments, STATE(5939), 1, sym_comment, - ACTIONS(9916), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [192615] = 5, + [192787] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9918), 1, - anon_sym_as, STATE(5940), 1, sym_comment, - ACTIONS(9920), 2, + ACTIONS(9988), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [192632] = 6, + anon_sym_SEMI, + [192802] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9922), 1, - anon_sym_LBRACE, - ACTIONS(9924), 1, - anon_sym_LPAREN, - STATE(1079), 1, - sym_statement_block, STATE(5941), 1, sym_comment, - [192651] = 4, + ACTIONS(9952), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192817] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9990), 1, + anon_sym_LPAREN, + ACTIONS(9992), 1, + anon_sym_await, + STATE(78), 1, + sym__for_header, STATE(5942), 1, sym_comment, - ACTIONS(9926), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [192666] = 4, + [192836] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9665), 1, + anon_sym_LBRACE, + ACTIONS(9994), 1, + sym_identifier, + STATE(5530), 1, + sym_export_clause, STATE(5943), 1, sym_comment, - ACTIONS(9904), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192681] = 6, + [192855] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9928), 1, - anon_sym_COMMA, - ACTIONS(9930), 1, - anon_sym_RBRACE, + ACTIONS(9168), 1, + anon_sym_from, + ACTIONS(9661), 1, + anon_sym_as, STATE(5944), 1, sym_comment, - STATE(6107), 1, - aux_sym_export_clause_repeat1, - [192700] = 4, + STATE(6803), 1, + sym__from_clause, + [192874] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9996), 1, + anon_sym_LBRACE, + ACTIONS(9998), 1, + anon_sym_LPAREN, + STATE(1107), 1, + sym_statement_block, STATE(5945), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192715] = 4, + [192893] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5946), 1, sym_comment, - ACTIONS(9932), 3, + ACTIONS(10000), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [192730] = 4, + [192908] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5947), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192745] = 4, + [192923] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5904), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(5948), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192760] = 4, + [192942] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5949), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192775] = 4, + [192957] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5950), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192790] = 4, + [192972] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5951), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9984), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192805] = 4, + [192987] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5952), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192820] = 4, + [193002] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5953), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10008), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192835] = 4, + [193017] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5954), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192850] = 4, + [193032] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5955), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10008), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192865] = 5, + [193047] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9360), 1, - anon_sym_EQ, STATE(5956), 1, sym_comment, - ACTIONS(9934), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [192882] = 5, + ACTIONS(8202), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [193062] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_LBRACE, + ACTIONS(10012), 1, + anon_sym_COMMA, + ACTIONS(10014), 1, + anon_sym_RPAREN, STATE(5957), 1, sym_comment, - ACTIONS(5035), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [192899] = 4, + STATE(6331), 1, + aux_sym_formal_parameters_repeat1, + [193081] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5958), 1, sym_comment, - ACTIONS(9843), 3, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192914] = 5, + [193096] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, - anon_sym_LBRACE, STATE(5959), 1, sym_comment, - ACTIONS(5031), 2, + ACTIONS(10008), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [192931] = 4, + anon_sym_SEMI, + [193111] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5960), 1, sym_comment, - ACTIONS(9830), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192946] = 4, + [193126] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5961), 1, sym_comment, - ACTIONS(9936), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192961] = 6, + [193141] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1352), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8013), 1, - anon_sym_LBRACE_PIPE, - STATE(5370), 1, - sym_object_type, STATE(5962), 1, sym_comment, - [192980] = 5, + ACTIONS(10004), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193156] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, - anon_sym_LBRACE, STATE(5963), 1, sym_comment, - ACTIONS(5027), 2, + ACTIONS(9964), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [192997] = 4, + anon_sym_SEMI, + [193171] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5964), 1, sym_comment, - ACTIONS(9938), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193012] = 4, + [193186] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5965), 1, sym_comment, - ACTIONS(9902), 3, + ACTIONS(10008), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193027] = 6, + [193201] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1355), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5941), 1, - anon_sym_RPAREN, + ACTIONS(8088), 1, + anon_sym_LBRACE_PIPE, + STATE(4939), 1, + sym_object_type, STATE(5966), 1, sym_comment, - STATE(6019), 1, - aux_sym_array_repeat1, - [193046] = 6, + [193220] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5941), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(5967), 1, sym_comment, - [193065] = 4, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193235] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5968), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193080] = 4, + [193250] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5969), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193095] = 5, + [193265] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9940), 1, - anon_sym_as, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5857), 1, + anon_sym_RPAREN, STATE(5970), 1, sym_comment, - ACTIONS(9720), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [193112] = 4, + STATE(6023), 1, + aux_sym_array_repeat1, + [193284] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5857), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(5971), 1, sym_comment, - ACTIONS(9830), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193127] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [193303] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7187), 1, - anon_sym_type, - ACTIONS(9942), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5972), 1, sym_comment, - STATE(6642), 1, - sym__import_identifier, - [193146] = 4, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193318] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5973), 1, sym_comment, - ACTIONS(9902), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193161] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [193333] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7187), 1, - anon_sym_type, - ACTIONS(9942), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(5974), 1, sym_comment, - STATE(6640), 1, - sym__import_identifier, - [193180] = 6, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193348] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9944), 1, - anon_sym_COMMA, - ACTIONS(9946), 1, - anon_sym_RBRACE, + ACTIONS(8034), 1, + anon_sym_LBRACE_PIPE, STATE(5975), 1, sym_comment, - STATE(6128), 1, - aux_sym_named_imports_repeat1, - [193199] = 5, + STATE(6977), 1, + sym_object_type, + [193367] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, - anon_sym_DOT, STATE(5976), 1, sym_comment, - ACTIONS(9948), 2, + ACTIONS(10002), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [193216] = 6, + [193382] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8757), 1, - anon_sym_DOT, - ACTIONS(9630), 1, - anon_sym_COLON, - ACTIONS(9950), 1, - anon_sym_GT, STATE(5977), 1, sym_comment, - [193235] = 4, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193397] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5978), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193250] = 4, + [193412] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5979), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193265] = 4, + [193427] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5980), 1, sym_comment, - ACTIONS(9952), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193280] = 4, + [193442] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8753), 1, + anon_sym_DOT, + ACTIONS(9639), 1, + anon_sym_COLON, + ACTIONS(10020), 1, + anon_sym_GT, STATE(5981), 1, sym_comment, - ACTIONS(9954), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193295] = 4, + [193461] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5982), 1, sym_comment, - ACTIONS(9474), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193310] = 4, + [193476] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5983), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10022), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193325] = 4, + [193491] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(5984), 1, sym_comment, - ACTIONS(9956), 3, - anon_sym_default, - anon_sym_RBRACE, - anon_sym_case, - [193340] = 5, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193506] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, STATE(5985), 1, sym_comment, - ACTIONS(4971), 2, + ACTIONS(10010), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [193357] = 5, + anon_sym_SEMI, + [193521] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(8022), 1, anon_sym_LBRACE, + ACTIONS(8028), 1, + anon_sym_LBRACE_PIPE, + STATE(1558), 1, + sym_object_type, STATE(5986), 1, sym_comment, - ACTIONS(4971), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [193374] = 5, + [193540] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4949), 1, - anon_sym_LBRACE, STATE(5987), 1, sym_comment, - ACTIONS(4951), 2, + ACTIONS(10008), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [193391] = 4, + anon_sym_SEMI, + [193555] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5932), 1, + anon_sym_RPAREN, STATE(5988), 1, sym_comment, - ACTIONS(8051), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [193406] = 5, + STATE(6213), 1, + aux_sym_array_repeat1, + [193574] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9958), 1, - anon_sym_COMMA, - ACTIONS(9961), 1, - anon_sym_RPAREN, - STATE(5989), 2, + STATE(5989), 1, sym_comment, - aux_sym_formal_parameters_repeat1, - [193423] = 5, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193589] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4949), 1, + ACTIONS(5241), 1, anon_sym_LBRACE, STATE(5990), 1, sym_comment, - ACTIONS(4951), 2, + ACTIONS(5243), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [193440] = 5, + [193606] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4935), 1, - anon_sym_LBRACE, STATE(5991), 1, sym_comment, - ACTIONS(4937), 2, + ACTIONS(9964), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [193457] = 5, + anon_sym_SEMI, + [193621] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, - anon_sym_DOT, STATE(5992), 1, sym_comment, - ACTIONS(9963), 2, + ACTIONS(9964), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [193474] = 5, + [193636] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7947), 1, - anon_sym_DOT, STATE(5993), 1, sym_comment, - ACTIONS(9963), 2, + ACTIONS(10024), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [193491] = 5, + [193651] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5327), 1, - anon_sym_LBRACE, STATE(5994), 1, sym_comment, - ACTIONS(5329), 2, + ACTIONS(10008), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [193508] = 5, + anon_sym_SEMI, + [193666] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5349), 1, - anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5932), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(5995), 1, sym_comment, - ACTIONS(5351), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [193525] = 5, + [193685] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4985), 1, - anon_sym_LBRACE, + ACTIONS(7966), 1, + anon_sym_DOT, STATE(5996), 1, sym_comment, - ACTIONS(4987), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [193542] = 4, + ACTIONS(10026), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [193702] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7990), 1, + anon_sym_DOT, STATE(5997), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10026), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [193557] = 4, + [193719] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4196), 1, + anon_sym_LPAREN, + ACTIONS(10028), 1, + anon_sym_DOT, + STATE(4323), 1, + sym_arguments, STATE(5998), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193572] = 5, + [193738] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7947), 1, - anon_sym_DOT, STATE(5999), 1, sym_comment, - ACTIONS(9948), 2, + ACTIONS(10016), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [193589] = 4, + [193753] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6000), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193604] = 4, + [193768] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9655), 1, + anon_sym_require, + ACTIONS(10030), 1, + sym_identifier, STATE(6001), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193619] = 6, + STATE(6278), 1, + sym_nested_identifier, + [193787] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9965), 1, - anon_sym_COMMA, - ACTIONS(9967), 1, - anon_sym_RBRACK, STATE(6002), 1, sym_comment, - STATE(6050), 1, - aux_sym_tuple_type_repeat1, - [193638] = 4, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193802] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6003), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193653] = 4, + [193817] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6004), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193668] = 4, + [193832] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10032), 1, + anon_sym_LBRACE, STATE(6005), 1, sym_comment, - ACTIONS(9891), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193683] = 6, + ACTIONS(8949), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [193849] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4947), 1, - anon_sym_extends, - ACTIONS(9971), 1, - anon_sym_AMP, - ACTIONS(9973), 1, - anon_sym_PIPE, + ACTIONS(10034), 1, + anon_sym_COMMA, + ACTIONS(10036), 1, + anon_sym_RBRACK, STATE(6006), 1, sym_comment, - [193702] = 4, + STATE(6054), 1, + aux_sym_tuple_type_repeat1, + [193868] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6007), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193717] = 4, + [193883] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6008), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193732] = 4, + [193898] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6009), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193747] = 4, + [193913] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4985), 1, + anon_sym_extends, + ACTIONS(10040), 1, + anon_sym_AMP, + ACTIONS(10042), 1, + anon_sym_PIPE, STATE(6010), 1, sym_comment, - ACTIONS(9887), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193762] = 4, + [193932] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(6011), 1, - sym_comment, - ACTIONS(9891), 3, - sym__automatic_semicolon, + ACTIONS(10044), 1, anon_sym_COMMA, - anon_sym_SEMI, - [193777] = 4, + ACTIONS(10047), 1, + anon_sym_RBRACK, + STATE(6011), 2, + sym_comment, + aux_sym_tuple_type_repeat1, + [193949] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6012), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193792] = 4, + [193964] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6013), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193807] = 4, + [193979] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6014), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193822] = 4, + [193994] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6015), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193837] = 6, + [194009] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1352), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8013), 1, - anon_sym_LBRACE_PIPE, - STATE(5202), 1, - sym_object_type, STATE(6016), 1, sym_comment, - [193856] = 4, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194024] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6017), 1, sym_comment, - ACTIONS(9910), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193871] = 6, + [194039] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9975), 1, - anon_sym_COMMA, - ACTIONS(9977), 1, - anon_sym_RBRACE, STATE(6018), 1, sym_comment, - STATE(6059), 1, - aux_sym_enum_body_repeat1, - [193890] = 6, + ACTIONS(10049), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [194054] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(9979), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(6019), 1, sym_comment, - [193909] = 4, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194069] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1355), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8088), 1, + anon_sym_LBRACE_PIPE, + STATE(4914), 1, + sym_object_type, STATE(6020), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193924] = 6, + [194088] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9981), 1, - anon_sym_COMMA, - ACTIONS(9983), 1, - anon_sym_GT, STATE(6021), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [193943] = 6, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194103] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9985), 1, + ACTIONS(10051), 1, anon_sym_COMMA, - ACTIONS(9987), 1, - anon_sym_RBRACK, + ACTIONS(10053), 1, + anon_sym_RBRACE, STATE(6022), 1, sym_comment, - STATE(6224), 1, - aux_sym_tuple_type_repeat1, - [193962] = 6, + STATE(6063), 1, + aux_sym_enum_body_repeat1, + [194122] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9989), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(9991), 1, - anon_sym_GT, + ACTIONS(10055), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6023), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [193981] = 4, + [194141] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6024), 1, sym_comment, - ACTIONS(9993), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [193996] = 6, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194156] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9995), 1, + ACTIONS(10057), 1, anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(10059), 1, anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6025), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [194015] = 4, + [194175] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6026), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194030] = 6, + [194190] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_AMP, - ACTIONS(7109), 1, - anon_sym_PIPE, - ACTIONS(7111), 1, - anon_sym_extends, + ACTIONS(10061), 1, + anon_sym_COMMA, + ACTIONS(10063), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6027), 1, sym_comment, - [194049] = 4, + [194209] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6028), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194064] = 4, + [194224] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10065), 1, + anon_sym_COMMA, + ACTIONS(10067), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6029), 1, sym_comment, - ACTIONS(9891), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194079] = 6, + [194243] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8441), 1, - anon_sym_COMMA, - ACTIONS(9999), 1, - anon_sym_LBRACE, STATE(6030), 1, sym_comment, - STATE(6243), 1, - aux_sym_implements_clause_repeat1, - [194098] = 4, + ACTIONS(10010), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194258] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6031), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194113] = 6, + [194273] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(10001), 1, - anon_sym_RPAREN, + ACTIONS(9397), 1, + anon_sym_COMMA, + ACTIONS(9530), 1, + anon_sym_RBRACK, STATE(6032), 1, sym_comment, - STATE(7168), 1, - sym_type_annotation, - [194132] = 4, + STATE(6316), 1, + aux_sym_array_pattern_repeat1, + [194292] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6033), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194147] = 4, + [194307] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6034), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194162] = 4, + [194322] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6035), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194177] = 4, + [194337] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6036), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194192] = 4, + [194352] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10071), 1, + sym_unescaped_double_jsx_string_fragment, STATE(6037), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194207] = 4, + ACTIONS(10069), 2, + sym_html_character_reference, + anon_sym_DQUOTE, + [194369] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6038), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194222] = 4, + [194384] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6039), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194237] = 4, + [194399] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4244), 1, + anon_sym_COLON, + ACTIONS(10073), 1, + anon_sym_RPAREN, STATE(6040), 1, sym_comment, - ACTIONS(9887), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194252] = 4, + STATE(7139), 1, + sym_type_annotation, + [194418] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6041), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194267] = 4, + [194433] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6042), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194282] = 4, + [194448] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6043), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194297] = 6, + [194463] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10003), 1, - anon_sym_COMMA, - ACTIONS(10005), 1, - anon_sym_RBRACE, STATE(6044), 1, sym_comment, - STATE(6049), 1, - aux_sym_enum_body_repeat1, - [194316] = 4, + ACTIONS(10010), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194478] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6045), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194331] = 4, + [194493] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6046), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194346] = 4, + [194508] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10077), 1, + sym_unescaped_single_jsx_string_fragment, STATE(6047), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194361] = 4, + ACTIONS(10075), 2, + sym_html_character_reference, + anon_sym_SQUOTE, + [194525] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6048), 1, sym_comment, - ACTIONS(10007), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194376] = 5, + [194540] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10009), 1, - anon_sym_COMMA, - ACTIONS(10012), 1, - anon_sym_RBRACE, - STATE(6049), 2, + ACTIONS(8753), 1, + anon_sym_DOT, + ACTIONS(9639), 1, + anon_sym_COLON, + ACTIONS(10079), 1, + anon_sym_GT, + STATE(6049), 1, sym_comment, - aux_sym_enum_body_repeat1, - [194393] = 6, + [194559] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10014), 1, - anon_sym_COMMA, - ACTIONS(10016), 1, - anon_sym_RBRACK, + ACTIONS(9009), 1, + anon_sym_LBRACE, STATE(6050), 1, sym_comment, - STATE(6104), 1, - aux_sym_tuple_type_repeat1, - [194412] = 4, + ACTIONS(9011), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [194576] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10081), 1, + anon_sym_COMMA, + ACTIONS(10083), 1, + anon_sym_GT, + STATE(5739), 1, + aux_sym_type_parameters_repeat1, STATE(6051), 1, sym_comment, - ACTIONS(10018), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194427] = 4, + [194595] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6052), 1, sym_comment, - ACTIONS(10020), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194442] = 6, + [194610] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10022), 1, - anon_sym_COMMA, - ACTIONS(10024), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, STATE(6053), 1, sym_comment, - [194461] = 4, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194625] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10085), 1, + anon_sym_COMMA, + ACTIONS(10087), 1, + anon_sym_RBRACK, + STATE(6011), 1, + aux_sym_tuple_type_repeat1, STATE(6054), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194476] = 4, + [194644] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5916), 1, + anon_sym_RBRACK, STATE(6055), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194491] = 4, + STATE(6317), 1, + aux_sym_array_repeat1, + [194663] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6056), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194506] = 6, + [194678] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10028), 1, - anon_sym_COMMA, - ACTIONS(10030), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, STATE(6057), 1, sym_comment, - [194525] = 4, + ACTIONS(9568), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194693] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6058), 1, sym_comment, - ACTIONS(9816), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194540] = 6, + [194708] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10032), 1, - anon_sym_COMMA, - ACTIONS(10034), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, STATE(6059), 1, sym_comment, - [194559] = 4, + ACTIONS(10089), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194723] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5916), 1, + anon_sym_RBRACK, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6060), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194574] = 5, + [194742] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9088), 1, - anon_sym_LBRACE, + ACTIONS(10091), 1, + anon_sym_COMMA, + ACTIONS(10093), 1, + anon_sym_RBRACE, STATE(6061), 1, sym_comment, - ACTIONS(9090), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [194591] = 4, + STATE(6066), 1, + aux_sym_enum_body_repeat1, + [194761] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6062), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194606] = 4, + [194776] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10095), 1, + anon_sym_COMMA, + ACTIONS(10097), 1, + anon_sym_RBRACE, STATE(6063), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194621] = 4, + STATE(6066), 1, + aux_sym_enum_body_repeat1, + [194795] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6064), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194636] = 4, + [194810] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6065), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194651] = 5, + [194825] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10040), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10043), 1, - anon_sym_GT, + ACTIONS(10102), 1, + anon_sym_RBRACE, STATE(6066), 2, sym_comment, - aux_sym_type_parameters_repeat1, - [194668] = 4, + aux_sym_enum_body_repeat1, + [194842] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6067), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10104), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194683] = 4, + [194857] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6068), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10104), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194698] = 4, + [194872] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6069), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194713] = 6, + [194887] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10045), 1, - anon_sym_COMMA, - ACTIONS(10047), 1, - anon_sym_RBRACK, STATE(6070), 1, sym_comment, - STATE(6104), 1, - aux_sym_tuple_type_repeat1, - [194732] = 4, + ACTIONS(10106), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194902] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6071), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194747] = 4, + [194917] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6072), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194762] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [194932] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9746), 1, - anon_sym_require, - ACTIONS(10049), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6073), 1, sym_comment, - STATE(6209), 1, - sym_nested_identifier, - [194781] = 4, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194947] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6074), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194796] = 4, + [194962] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9397), 1, + anon_sym_COMMA, + ACTIONS(9530), 1, + anon_sym_RBRACK, STATE(6075), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194811] = 4, + STATE(6310), 1, + aux_sym_array_pattern_repeat1, + [194981] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10108), 1, + anon_sym_DQUOTE, STATE(6076), 1, sym_comment, - ACTIONS(10051), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194826] = 4, + ACTIONS(10110), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [194998] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6077), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10112), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194841] = 4, + [195013] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10114), 1, + anon_sym_SQUOTE, STATE(6078), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194856] = 4, + ACTIONS(10116), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [195030] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6079), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10118), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194871] = 4, + [195045] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7936), 1, + anon_sym_const, + ACTIONS(9224), 1, + sym_identifier, STATE(6080), 1, sym_comment, - ACTIONS(9877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194886] = 4, + STATE(6202), 1, + sym_type_parameter, + [195064] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6081), 1, sym_comment, - ACTIONS(10053), 3, + ACTIONS(10120), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194901] = 4, + [195079] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7574), 1, + anon_sym_implements, + ACTIONS(10122), 1, + anon_sym_LBRACE, STATE(6082), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194916] = 4, + STATE(7157), 1, + sym_implements_clause, + [195098] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6083), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194931] = 4, + [195113] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6084), 1, sym_comment, - ACTIONS(10051), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194946] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195128] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10057), 1, - sym_unescaped_single_jsx_string_fragment, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6085), 1, sym_comment, - ACTIONS(10055), 2, - sym_html_character_reference, - anon_sym_SQUOTE, - [194963] = 6, + ACTIONS(10004), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195143] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8188), 1, - anon_sym_LBRACE, - ACTIONS(8190), 1, - anon_sym_LBRACE_PIPE, - STATE(1456), 1, - sym_object_type, STATE(6086), 1, sym_comment, - [194982] = 4, + ACTIONS(10120), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195158] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6087), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194997] = 6, + [195173] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10059), 1, - anon_sym_COMMA, - ACTIONS(10061), 1, - anon_sym_RBRACE, STATE(6088), 1, sym_comment, - STATE(6275), 1, - aux_sym_enum_body_repeat1, - [195016] = 6, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195188] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(10063), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(6089), 1, sym_comment, - [195035] = 6, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195203] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10065), 1, - anon_sym_COMMA, - ACTIONS(10067), 1, - anon_sym_GT, STATE(6090), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [195054] = 6, + ACTIONS(10124), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195218] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10069), 1, - anon_sym_COMMA, - ACTIONS(10071), 1, - anon_sym_GT, + ACTIONS(10126), 1, + sym_identifier, + STATE(1860), 1, + sym_decorator_member_expression, + STATE(1968), 1, + sym_decorator_call_expression, STATE(6091), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [195073] = 6, + [195237] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10073), 1, - anon_sym_COMMA, - ACTIONS(10075), 1, - anon_sym_GT, STATE(6092), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [195092] = 4, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195252] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6093), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195107] = 4, + ACTIONS(3181), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [195267] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + ACTIONS(9661), 1, + anon_sym_as, STATE(6094), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195122] = 4, + STATE(6387), 1, + sym__from_clause, + [195286] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6095), 1, sym_comment, - ACTIONS(10051), 3, + ACTIONS(10128), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195137] = 4, + [195301] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7966), 1, + anon_sym_DOT, STATE(6096), 1, sym_comment, - ACTIONS(10051), 3, + ACTIONS(10130), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [195152] = 4, + [195318] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6097), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10124), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195167] = 4, + [195333] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(8036), 1, + sym_identifier, STATE(6098), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195182] = 6, + ACTIONS(8040), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [195350] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, - anon_sym_const, - ACTIONS(9212), 1, + ACTIONS(9665), 1, + anon_sym_LBRACE, + ACTIONS(10132), 1, sym_identifier, - STATE(5644), 1, - sym_type_parameter, + STATE(5447), 1, + sym_export_clause, STATE(6099), 1, sym_comment, - [195201] = 4, + [195369] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6100), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195216] = 5, + [195384] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10079), 1, - sym_unescaped_double_jsx_string_fragment, + ACTIONS(10134), 1, + sym_identifier, + ACTIONS(10136), 1, + anon_sym_LBRACK, + ACTIONS(10138), 1, + sym_private_property_identifier, STATE(6101), 1, sym_comment, - ACTIONS(10077), 2, - sym_html_character_reference, - anon_sym_DQUOTE, - [195233] = 4, + [195403] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7990), 1, + anon_sym_DOT, STATE(6102), 1, sym_comment, - ACTIONS(10051), 3, + ACTIONS(10130), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [195248] = 4, + [195420] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6103), 1, sym_comment, - ACTIONS(10081), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [195263] = 5, + ACTIONS(10010), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195435] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10083), 1, - anon_sym_COMMA, - ACTIONS(10086), 1, - anon_sym_RBRACK, - STATE(6104), 2, + STATE(6104), 1, sym_comment, - aux_sym_tuple_type_repeat1, - [195280] = 4, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195450] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6105), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195295] = 4, + [195465] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6106), 1, sym_comment, - ACTIONS(10088), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [195310] = 5, + [195480] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10090), 1, - anon_sym_COMMA, - ACTIONS(10093), 1, - anon_sym_RBRACE, - STATE(6107), 2, + STATE(6107), 1, sym_comment, - aux_sym_export_clause_repeat1, - [195327] = 4, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195495] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6108), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195342] = 4, + [195510] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6109), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195357] = 4, + [195525] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6110), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195372] = 6, + [195540] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10095), 1, - anon_sym_LPAREN, - ACTIONS(10097), 1, - anon_sym_await, - STATE(96), 1, - sym__for_header, STATE(6111), 1, sym_comment, - [195391] = 4, + ACTIONS(10010), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195555] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6112), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195406] = 4, + [195570] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6113), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195421] = 4, + [195585] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6114), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195436] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195600] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10099), 1, - sym_identifier, - ACTIONS(10101), 1, - anon_sym_SEMI, - ACTIONS(10103), 1, - sym__automatic_semicolon, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10144), 1, + anon_sym_LPAREN, + ACTIONS(10146), 1, + anon_sym_await, + STATE(101), 1, + sym__for_header, STATE(6115), 1, sym_comment, - [195455] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195619] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10105), 1, - sym_identifier, - ACTIONS(10107), 1, - anon_sym_SEMI, - ACTIONS(10109), 1, - sym__automatic_semicolon, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6116), 1, sym_comment, - [195474] = 4, + ACTIONS(9568), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195634] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6117), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195489] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195649] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9609), 1, - anon_sym_LBRACE, - ACTIONS(10111), 1, - sym_identifier, - STATE(5504), 1, - sym_export_clause, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6118), 1, sym_comment, - [195508] = 6, + ACTIONS(10142), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195664] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - ACTIONS(9601), 1, - anon_sym_as, + ACTIONS(10148), 1, + sym_identifier, + ACTIONS(10150), 1, + anon_sym_SEMI, + ACTIONS(10152), 1, + sym__automatic_semicolon, STATE(6119), 1, sym_comment, - STATE(6444), 1, - sym__from_clause, - [195527] = 4, + [195683] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10154), 1, + sym_identifier, + ACTIONS(10156), 1, + anon_sym_SEMI, + ACTIONS(10158), 1, + sym__automatic_semicolon, STATE(6120), 1, sym_comment, - ACTIONS(10051), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195542] = 4, + [195702] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6121), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195557] = 4, + [195717] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6122), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195572] = 4, + [195732] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6123), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195587] = 4, + [195747] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6124), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195602] = 4, + [195762] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6125), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195617] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195777] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7187), 1, - anon_sym_type, - ACTIONS(9942), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6126), 1, sym_comment, - STATE(6386), 1, - sym__import_identifier, - [195636] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195792] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7187), 1, - anon_sym_type, - ACTIONS(9942), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6127), 1, sym_comment, - STATE(6385), 1, - sym__import_identifier, - [195655] = 5, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195807] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10113), 1, - anon_sym_COMMA, - ACTIONS(10116), 1, - anon_sym_RBRACE, - STATE(6128), 2, + STATE(6128), 1, sym_comment, - aux_sym_named_imports_repeat1, - [195672] = 6, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195822] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, STATE(6129), 1, sym_comment, - STATE(7422), 1, - sym_string, - [195691] = 4, + ACTIONS(10160), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195837] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6130), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195706] = 4, + [195852] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6131), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195721] = 4, + [195867] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6132), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195736] = 4, + [195882] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6133), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195751] = 4, + [195897] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6134), 1, sym_comment, - ACTIONS(8033), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [195766] = 4, + ACTIONS(10140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195912] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6135), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195781] = 4, + [195927] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10162), 1, + anon_sym_COMMA, + ACTIONS(10164), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6136), 1, sym_comment, - ACTIONS(10036), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195796] = 4, + [195946] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6137), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195811] = 4, + [195961] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6138), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195826] = 4, + [195976] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6139), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195841] = 4, + [195991] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6140), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195856] = 4, + [196006] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6141), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195871] = 4, + [196021] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6142), 1, sym_comment, - ACTIONS(10051), 3, + ACTIONS(10024), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195886] = 4, + [196036] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6143), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195901] = 6, + [196051] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - ACTIONS(10118), 1, - anon_sym_RPAREN, STATE(6144), 1, sym_comment, - STATE(7442), 1, - sym_type_annotation, - [195920] = 4, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196066] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6145), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195935] = 4, + [196081] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6146), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195950] = 4, + [196096] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6147), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195965] = 4, + [196111] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10166), 1, + anon_sym_COMMA, + ACTIONS(10168), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6148), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195980] = 4, + [196130] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6149), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195995] = 4, + [196145] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10170), 1, + anon_sym_COMMA, + ACTIONS(10172), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6150), 1, sym_comment, - ACTIONS(10051), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196010] = 4, + [196164] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6151), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196025] = 6, + [196179] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10120), 1, - anon_sym_COMMA, - ACTIONS(10122), 1, - anon_sym_GT, STATE(6152), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [196044] = 4, + ACTIONS(10142), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196194] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6153), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196059] = 4, + [196209] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(10174), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6154), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196074] = 4, + [196228] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6155), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196089] = 6, + [196243] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10124), 1, - anon_sym_COMMA, - ACTIONS(10126), 1, - anon_sym_GT, STATE(6156), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [196108] = 4, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196258] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6157), 1, sym_comment, - ACTIONS(10128), 3, + ACTIONS(10089), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196123] = 6, + [196273] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10130), 1, - anon_sym_COMMA, - ACTIONS(10132), 1, - anon_sym_GT, STATE(6158), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [196142] = 4, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196288] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6159), 1, sym_comment, - ACTIONS(10051), 3, + ACTIONS(10160), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196157] = 6, + [196303] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10134), 1, - anon_sym_LPAREN, - ACTIONS(10136), 1, - anon_sym_await, - STATE(77), 1, - sym__for_header, STATE(6160), 1, sym_comment, - [196176] = 4, + ACTIONS(10140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196318] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5863), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6161), 1, sym_comment, - ACTIONS(10128), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196191] = 4, + [196337] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6162), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196206] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196352] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10138), 1, - sym_identifier, - ACTIONS(10140), 1, - anon_sym_SEMI, - ACTIONS(10142), 1, - sym__automatic_semicolon, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6163), 1, sym_comment, - [196225] = 4, + ACTIONS(10010), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196367] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5863), 1, + anon_sym_RPAREN, + STATE(6154), 1, + aux_sym_array_repeat1, STATE(6164), 1, sym_comment, - ACTIONS(10053), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196240] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196386] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10144), 1, - sym_identifier, - ACTIONS(10146), 1, - anon_sym_SEMI, - ACTIONS(10148), 1, - sym__automatic_semicolon, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10176), 1, + anon_sym_DQUOTE, + ACTIONS(10178), 1, + anon_sym_SQUOTE, + STATE(5852), 1, + sym_string, STATE(6165), 1, sym_comment, - [196259] = 4, + [196405] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10180), 1, + anon_sym_COMMA, + ACTIONS(10182), 1, + anon_sym_RBRACK, STATE(6166), 1, sym_comment, - ACTIONS(10128), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196274] = 6, + STATE(6322), 1, + aux_sym_tuple_type_repeat1, + [196424] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(10150), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(6167), 1, sym_comment, - [196293] = 4, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196439] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6168), 1, sym_comment, - ACTIONS(10053), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196308] = 4, + [196454] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6169), 1, sym_comment, - ACTIONS(10152), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196323] = 4, + [196469] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6067), 1, + anon_sym_extends, + ACTIONS(10184), 1, + anon_sym_AMP, + ACTIONS(10186), 1, + anon_sym_PIPE, STATE(6170), 1, sym_comment, - ACTIONS(10051), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196338] = 4, + [196488] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6171), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196353] = 6, + [196503] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10154), 1, - anon_sym_COMMA, - ACTIONS(10156), 1, - anon_sym_RBRACE, - STATE(6044), 1, - aux_sym_enum_body_repeat1, STATE(6172), 1, sym_comment, - [196372] = 4, + ACTIONS(10004), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196518] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6526), 1, + sym__automatic_semicolon, STATE(6173), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196387] = 6, + ACTIONS(2348), 2, + anon_sym_else, + anon_sym_while, + [196535] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(210), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8053), 1, - anon_sym_LBRACE_PIPE, STATE(6174), 1, sym_comment, - STATE(6547), 1, - sym_object_type, - [196406] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196550] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10158), 1, - sym_identifier, - STATE(1895), 1, - sym_decorator_member_expression, - STATE(1968), 1, - sym_decorator_call_expression, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6175), 1, sym_comment, - [196425] = 4, + ACTIONS(3177), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [196565] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6176), 1, sym_comment, - ACTIONS(10152), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196440] = 4, + [196580] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6557), 1, + sym__automatic_semicolon, STATE(6177), 1, sym_comment, - ACTIONS(10160), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196455] = 4, + ACTIONS(2340), 2, + anon_sym_else, + anon_sym_while, + [196597] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6178), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10188), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [196470] = 4, + [196612] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6179), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196485] = 4, + [196627] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6180), 1, sym_comment, - ACTIONS(10162), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196500] = 4, + [196642] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6559), 1, + sym__automatic_semicolon, STATE(6181), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196515] = 4, + ACTIONS(2330), 2, + anon_sym_else, + anon_sym_while, + [196659] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6182), 1, sym_comment, - ACTIONS(10164), 3, + ACTIONS(10142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196530] = 4, + [196674] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6183), 1, sym_comment, - ACTIONS(10162), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196545] = 4, + [196689] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10190), 1, + anon_sym_COMMA, + ACTIONS(10192), 1, + anon_sym_RBRACE, + STATE(5764), 1, + aux_sym_export_clause_repeat1, STATE(6184), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196560] = 4, + [196708] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6185), 1, sym_comment, - ACTIONS(10051), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196575] = 4, + [196723] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10194), 1, + anon_sym_as, STATE(6186), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, + ACTIONS(10196), 2, anon_sym_COMMA, - anon_sym_SEMI, - [196590] = 4, + anon_sym_RBRACE, + [196740] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6187), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196605] = 4, + [196755] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6188), 1, sym_comment, - ACTIONS(10166), 3, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196620] = 4, + [196770] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6542), 1, + sym__automatic_semicolon, STATE(6189), 1, sym_comment, - ACTIONS(10168), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [196635] = 4, + ACTIONS(2408), 2, + anon_sym_else, + anon_sym_while, + [196787] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6190), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196650] = 4, + [196802] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6191), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196665] = 4, + [196817] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6461), 1, + sym__automatic_semicolon, STATE(6192), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196680] = 4, + ACTIONS(2376), 2, + anon_sym_else, + anon_sym_while, + [196834] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6193), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196695] = 6, + [196849] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6050), 1, - anon_sym_extends, - ACTIONS(10170), 1, - anon_sym_AMP, - ACTIONS(10172), 1, - anon_sym_PIPE, STATE(6194), 1, sym_comment, - [196714] = 4, + ACTIONS(9948), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196864] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(10198), 1, + anon_sym_RBRACE, STATE(6195), 1, sym_comment, - ACTIONS(10036), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196729] = 4, + STATE(6241), 1, + aux_sym_object_repeat1, + [196883] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6196), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10104), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196744] = 4, + [196898] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6197), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10160), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196759] = 4, + [196913] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8795), 1, + anon_sym_COMMA, + ACTIONS(10200), 1, + anon_sym_RBRACE, STATE(6198), 1, sym_comment, - ACTIONS(10036), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196774] = 4, + STATE(6242), 1, + aux_sym_object_pattern_repeat1, + [196932] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6199), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196789] = 6, + [196947] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10174), 1, - anon_sym_LBRACE, - ACTIONS(10176), 1, - anon_sym_LPAREN, - STATE(927), 1, - sym_statement_block, STATE(6200), 1, sym_comment, - [196808] = 4, + ACTIONS(10140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196962] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6201), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196823] = 6, + [196977] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10178), 1, + ACTIONS(10202), 1, anon_sym_COMMA, - ACTIONS(10180), 1, - anon_sym_RBRACK, - STATE(6070), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(10204), 1, + anon_sym_GT, + STATE(6051), 1, + aux_sym_type_parameters_repeat1, STATE(6202), 1, sym_comment, - [196842] = 6, + [196996] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - ACTIONS(10182), 1, - anon_sym_RBRACE, STATE(6203), 1, sym_comment, - STATE(6317), 1, - aux_sym_object_pattern_repeat1, - [196861] = 6, + ACTIONS(10140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197011] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(10184), 1, - anon_sym_RBRACE, + ACTIONS(10206), 1, + anon_sym_LBRACE, + ACTIONS(10208), 1, + anon_sym_LPAREN, + STATE(908), 1, + sym_statement_block, STATE(6204), 1, sym_comment, - STATE(6318), 1, - aux_sym_object_repeat1, - [196880] = 4, + [197030] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6205), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(10104), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196895] = 4, + [197045] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6206), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(10210), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [196910] = 6, + [197060] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(10184), 1, - anon_sym_RBRACE, - STATE(5725), 1, - aux_sym_object_repeat1, + ACTIONS(8034), 1, + anon_sym_LBRACE_PIPE, STATE(6207), 1, sym_comment, - [196929] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6587), 1, + sym_object_type, + [197079] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10186), 1, - sym_identifier, - ACTIONS(10188), 1, - anon_sym_LBRACK, - ACTIONS(10190), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6208), 1, sym_comment, - [196948] = 5, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197094] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7947), 1, - anon_sym_DOT, + ACTIONS(10212), 1, + anon_sym_COMMA, + ACTIONS(10214), 1, + anon_sym_RBRACE, STATE(6209), 1, sym_comment, - ACTIONS(10192), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [196965] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6338), 1, + aux_sym_enum_body_repeat1, + [197113] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10194), 1, - sym_identifier, - ACTIONS(10196), 1, - anon_sym_LBRACK, - ACTIONS(10198), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6210), 1, sym_comment, - [196984] = 6, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197128] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - ACTIONS(10182), 1, - anon_sym_RBRACE, - STATE(5727), 1, - aux_sym_object_pattern_repeat1, STATE(6211), 1, sym_comment, - [197003] = 4, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197143] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6212), 1, sym_comment, - ACTIONS(10051), 3, + ACTIONS(10142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197018] = 5, + [197158] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, - anon_sym_DOT, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(10216), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6213), 1, sym_comment, - ACTIONS(10192), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [197035] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [197177] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10200), 1, - sym_identifier, - ACTIONS(10202), 1, - anon_sym_LBRACK, - ACTIONS(10204), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6507), 1, + sym__automatic_semicolon, STATE(6214), 1, sym_comment, - [197054] = 6, + ACTIONS(2358), 2, + anon_sym_else, + anon_sym_while, + [197194] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8027), 1, - anon_sym_LBRACE, - ACTIONS(8029), 1, - anon_sym_LBRACE_PIPE, - STATE(1440), 1, - sym_object_type, STATE(6215), 1, sym_comment, - [197073] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10142), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197209] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10206), 1, - sym_identifier, - ACTIONS(10208), 1, - anon_sym_LBRACK, - ACTIONS(10210), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6216), 1, sym_comment, - [197092] = 4, + ACTIONS(10160), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197224] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6217), 1, sym_comment, - ACTIONS(10053), 3, + ACTIONS(10218), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197107] = 4, + [197239] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6218), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197122] = 6, + [197254] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5872), 1, - anon_sym_RPAREN, + ACTIONS(8174), 1, + anon_sym_LBRACE, + ACTIONS(8176), 1, + anon_sym_LBRACE_PIPE, + STATE(1395), 1, + sym_object_type, STATE(6219), 1, sym_comment, - STATE(6266), 1, - aux_sym_array_repeat1, - [197141] = 6, + [197273] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, + ACTIONS(10220), 1, anon_sym_COMMA, - ACTIONS(5872), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, + ACTIONS(10222), 1, + anon_sym_RBRACE, + STATE(6066), 1, + aux_sym_enum_body_repeat1, STATE(6220), 1, sym_comment, - [197160] = 4, + [197292] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6221), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197175] = 4, + [197307] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6222), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197190] = 4, + [197322] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5881), 1, + anon_sym_RPAREN, STATE(6223), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197205] = 6, + STATE(6270), 1, + aux_sym_array_repeat1, + [197341] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10212), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(10214), 1, - anon_sym_RBRACK, - STATE(6104), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5881), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6224), 1, sym_comment, - [197224] = 6, + [197360] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10216), 1, - anon_sym_COMMA, - ACTIONS(10218), 1, - anon_sym_RPAREN, STATE(6225), 1, sym_comment, - STATE(6324), 1, - aux_sym_formal_parameters_repeat1, - [197243] = 4, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197375] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6226), 1, sym_comment, - ACTIONS(10053), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197258] = 6, + [197390] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10220), 1, + ACTIONS(8795), 1, anon_sym_COMMA, - ACTIONS(10222), 1, - anon_sym_GT, + ACTIONS(10224), 1, + anon_sym_RBRACE, STATE(6227), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [197277] = 6, + STATE(6242), 1, + aux_sym_object_pattern_repeat1, + [197409] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10224), 1, - anon_sym_COMMA, - ACTIONS(10226), 1, - anon_sym_GT, STATE(6228), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [197296] = 4, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197424] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6229), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197311] = 4, + [197439] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6230), 1, sym_comment, - ACTIONS(10053), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197326] = 6, + [197454] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10228), 1, - anon_sym_COMMA, - ACTIONS(10230), 1, - anon_sym_GT, STATE(6231), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [197345] = 6, + ACTIONS(10006), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197469] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(10232), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(6232), 1, sym_comment, - [197364] = 4, + ACTIONS(10140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197484] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8100), 1, + anon_sym_COMMA, + ACTIONS(10226), 1, + anon_sym_RBRACE, STATE(6233), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197379] = 4, + STATE(6241), 1, + aux_sym_object_repeat1, + [197503] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6234), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197394] = 4, + [197518] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10228), 1, + anon_sym_COMMA, + ACTIONS(10230), 1, + anon_sym_RBRACE, + STATE(6066), 1, + aux_sym_enum_body_repeat1, STATE(6235), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197409] = 4, + [197537] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6236), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197424] = 4, + [197552] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6237), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197439] = 4, + [197567] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6238), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197454] = 6, + [197582] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, + ACTIONS(10232), 1, anon_sym_COMMA, - ACTIONS(5860), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, + ACTIONS(10234), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6239), 1, sym_comment, - [197473] = 6, + [197601] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5860), 1, - anon_sym_RPAREN, - STATE(6232), 1, - aux_sym_array_repeat1, STATE(6240), 1, sym_comment, - [197492] = 5, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197616] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, - anon_sym_DOT, - STATE(6241), 1, + ACTIONS(10236), 1, + anon_sym_COMMA, + ACTIONS(10239), 1, + anon_sym_RBRACE, + STATE(6241), 2, sym_comment, - ACTIONS(10234), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [197509] = 5, + aux_sym_object_repeat1, + [197633] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7947), 1, - anon_sym_DOT, - STATE(6242), 1, + ACTIONS(10241), 1, + anon_sym_COMMA, + ACTIONS(10244), 1, + anon_sym_RBRACE, + STATE(6242), 2, sym_comment, - ACTIONS(10234), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [197526] = 5, + aux_sym_object_pattern_repeat1, + [197650] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8887), 1, - anon_sym_LBRACE, - ACTIONS(10236), 1, - anon_sym_COMMA, - STATE(6243), 2, + STATE(6243), 1, sym_comment, - aux_sym_implements_clause_repeat1, - [197543] = 4, + ACTIONS(9948), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197665] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6244), 1, sym_comment, - ACTIONS(10239), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197558] = 6, + [197680] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8757), 1, + ACTIONS(7966), 1, anon_sym_DOT, - ACTIONS(9630), 1, - anon_sym_COLON, - ACTIONS(10241), 1, - anon_sym_GT, STATE(6245), 1, sym_comment, - [197577] = 4, + ACTIONS(10246), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [197697] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7990), 1, + anon_sym_DOT, STATE(6246), 1, sym_comment, - ACTIONS(10026), 3, + ACTIONS(10246), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [197592] = 4, + [197714] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6247), 1, sym_comment, - ACTIONS(10036), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197607] = 6, + [197729] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9362), 1, + ACTIONS(10248), 1, anon_sym_COMMA, - ACTIONS(9364), 1, - anon_sym_RBRACK, + ACTIONS(10250), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6248), 1, sym_comment, - STATE(6329), 1, - aux_sym_array_pattern_repeat1, - [197626] = 6, + [197748] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5943), 1, - anon_sym_RBRACK, STATE(6249), 1, sym_comment, - STATE(6328), 1, - aux_sym_array_repeat1, - [197645] = 6, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197763] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, + ACTIONS(10252), 1, anon_sym_COMMA, - ACTIONS(5943), 1, - anon_sym_RBRACK, - STATE(5471), 1, - aux_sym_array_repeat1, + ACTIONS(10254), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6250), 1, sym_comment, - [197664] = 6, + [197782] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10243), 1, - anon_sym_COMMA, - ACTIONS(10245), 1, - anon_sym_RBRACK, STATE(6251), 1, sym_comment, - STATE(6301), 1, - aux_sym_tuple_type_repeat1, - [197683] = 6, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197797] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9362), 1, - anon_sym_COMMA, - ACTIONS(9364), 1, - anon_sym_RBRACK, - STATE(5805), 1, - aux_sym_array_pattern_repeat1, STATE(6252), 1, sym_comment, - [197702] = 4, + ACTIONS(10142), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197812] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6253), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, + ACTIONS(9578), 3, anon_sym_COMMA, - anon_sym_SEMI, - [197717] = 4, + anon_sym_RBRACE, + anon_sym_from, + [197827] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10256), 1, + anon_sym_EQ, STATE(6254), 1, sym_comment, - ACTIONS(10038), 3, - sym__automatic_semicolon, + ACTIONS(9796), 2, anon_sym_COMMA, - anon_sym_SEMI, - [197732] = 6, + anon_sym_from, + [197844] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7549), 1, - anon_sym_AMP, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_extends, + ACTIONS(10258), 1, + anon_sym_COMMA, + ACTIONS(10260), 1, + anon_sym_RBRACK, STATE(6255), 1, sym_comment, - [197751] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6305), 1, + aux_sym_tuple_type_repeat1, + [197863] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, - anon_sym_const, - ACTIONS(9212), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10262), 1, + anon_sym_COMMA, + ACTIONS(10264), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6256), 1, sym_comment, - STATE(6739), 1, - sym_type_parameter, - [197770] = 4, + [197882] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6257), 1, sym_comment, - ACTIONS(10247), 3, + ACTIONS(9948), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197785] = 4, + [197897] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(10266), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6258), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197800] = 4, + [197916] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7580), 1, + anon_sym_AMP, + ACTIONS(7582), 1, + anon_sym_PIPE, + ACTIONS(7584), 1, + anon_sym_extends, STATE(6259), 1, sym_comment, - ACTIONS(9841), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197815] = 4, + [197935] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10268), 1, + anon_sym_COMMA, + ACTIONS(10270), 1, + anon_sym_RBRACE, + STATE(6220), 1, + aux_sym_enum_body_repeat1, STATE(6260), 1, sym_comment, - ACTIONS(10026), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197830] = 4, + [197954] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6261), 1, sym_comment, - ACTIONS(10249), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197845] = 4, + [197969] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9518), 1, + anon_sym_as, STATE(6262), 1, sym_comment, - ACTIONS(10251), 3, - sym__automatic_semicolon, + ACTIONS(9796), 2, anon_sym_COMMA, - anon_sym_SEMI, - [197860] = 6, + anon_sym_RBRACE, + [197986] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8027), 1, - anon_sym_LBRACE, - ACTIONS(8029), 1, - anon_sym_LBRACE_PIPE, - STATE(1273), 1, - sym_object_type, + ACTIONS(10272), 1, + anon_sym_COMMA, + ACTIONS(10274), 1, + anon_sym_RBRACE, + STATE(5654), 1, + aux_sym_named_imports_repeat1, STATE(6263), 1, sym_comment, - [197879] = 4, + [198005] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10276), 1, + anon_sym_COMMA, + ACTIONS(10278), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6264), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197894] = 6, + [198024] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10253), 1, - anon_sym_COMMA, - ACTIONS(10255), 1, - anon_sym_RBRACE, + ACTIONS(8060), 1, + anon_sym_LBRACE, + ACTIONS(8062), 1, + anon_sym_LBRACE_PIPE, + STATE(1017), 1, + sym_object_type, STATE(6265), 1, sym_comment, - STATE(6310), 1, - aux_sym_enum_body_repeat1, - [197913] = 6, + [198043] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(10257), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(6266), 1, sym_comment, - [197932] = 4, + ACTIONS(9948), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198058] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_LBRACE, + ACTIONS(8176), 1, + anon_sym_LBRACE_PIPE, + STATE(1407), 1, + sym_object_type, STATE(6267), 1, sym_comment, - ACTIONS(10259), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197947] = 6, + [198077] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10261), 1, - anon_sym_COMMA, - ACTIONS(10263), 1, - anon_sym_GT, STATE(6268), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [197966] = 4, + ACTIONS(10010), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198092] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10280), 1, + anon_sym_COMMA, + ACTIONS(10282), 1, + anon_sym_RBRACE, STATE(6269), 1, sym_comment, - ACTIONS(10265), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197981] = 6, + STATE(6314), 1, + aux_sym_enum_body_repeat1, + [198111] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10267), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(10269), 1, - anon_sym_GT, + ACTIONS(10284), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6270), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [198000] = 4, + [198130] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6271), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198015] = 6, + [198145] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10271), 1, + ACTIONS(10286), 1, anon_sym_COMMA, - ACTIONS(10273), 1, + ACTIONS(10288), 1, anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6272), 1, sym_comment, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, - [198034] = 4, + [198164] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(6538), 1, + sym__automatic_semicolon, STATE(6273), 1, sym_comment, - ACTIONS(10275), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198049] = 6, + ACTIONS(2412), 2, + anon_sym_else, + anon_sym_while, + [198181] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10277), 1, + ACTIONS(10290), 1, anon_sym_COMMA, - ACTIONS(10279), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, + ACTIONS(10292), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6274), 1, sym_comment, - [198068] = 6, + [198200] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10281), 1, - anon_sym_COMMA, - ACTIONS(10283), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, STATE(6275), 1, sym_comment, - [198087] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6276), 1, - sym_comment, - ACTIONS(10285), 3, + ACTIONS(10142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198102] = 6, + [198215] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10287), 1, + ACTIONS(10294), 1, anon_sym_COMMA, - ACTIONS(10289), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, - STATE(6277), 1, + ACTIONS(10296), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, + STATE(6276), 1, sym_comment, - [198121] = 4, + [198234] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(6278), 1, + STATE(6277), 1, sym_comment, - ACTIONS(9816), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198136] = 4, + [198249] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(6279), 1, + ACTIONS(7990), 1, + anon_sym_DOT, + STATE(6278), 1, sym_comment, - ACTIONS(10259), 3, + ACTIONS(10298), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [198151] = 4, + [198266] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(9655), 1, + anon_sym_require, + ACTIONS(10300), 1, + sym_identifier, + STATE(5658), 1, + sym_nested_identifier, + STATE(6279), 1, + sym_comment, + [198285] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6280), 1, sym_comment, - ACTIONS(10038), 3, + ACTIONS(10302), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198166] = 4, + [198300] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7966), 1, + anon_sym_DOT, STATE(6281), 1, sym_comment, - ACTIONS(9830), 3, + ACTIONS(10298), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [198181] = 6, + [198317] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10291), 1, - anon_sym_COMMA, - ACTIONS(10293), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, STATE(6282), 1, sym_comment, - [198200] = 4, + ACTIONS(10304), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198332] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6283), 1, sym_comment, - ACTIONS(10295), 3, + ACTIONS(10306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198215] = 4, + [198347] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6284), 1, sym_comment, - ACTIONS(10251), 3, + ACTIONS(10160), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198230] = 4, + [198362] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6285), 1, sym_comment, - ACTIONS(9830), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198245] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198377] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10297), 1, - sym_identifier, - ACTIONS(10299), 1, - anon_sym_LBRACK, - ACTIONS(10301), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6286), 1, sym_comment, - [198264] = 5, + ACTIONS(10140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198392] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8906), 1, - anon_sym_GT, - ACTIONS(10303), 1, - anon_sym_COMMA, - STATE(6287), 2, + ACTIONS(10308), 1, + sym_identifier, + ACTIONS(10310), 1, + anon_sym_SEMI, + ACTIONS(10312), 1, + sym__automatic_semicolon, + STATE(6287), 1, sym_comment, - aux_sym_type_arguments_repeat1, - [198281] = 4, + [198411] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6288), 1, sym_comment, - ACTIONS(10306), 3, + ACTIONS(10314), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198296] = 6, + [198426] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(10308), 1, - anon_sym_DOT, - STATE(4339), 1, - sym_arguments, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5879), 1, + anon_sym_RPAREN, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6289), 1, sym_comment, - [198315] = 4, + [198445] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5855), 1, + anon_sym_COMMA, + ACTIONS(5879), 1, + anon_sym_RPAREN, + STATE(6258), 1, + aux_sym_array_repeat1, STATE(6290), 1, sym_comment, - ACTIONS(10247), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198330] = 6, + [198464] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5849), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(6291), 1, sym_comment, - [198349] = 6, + ACTIONS(10142), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198479] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10310), 1, - anon_sym_COMMA, - ACTIONS(10312), 1, - anon_sym_GT, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(8060), 1, + anon_sym_LBRACE, + ACTIONS(8062), 1, + anon_sym_LBRACE_PIPE, + STATE(1154), 1, + sym_object_type, STATE(6292), 1, sym_comment, - [198368] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198498] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10314), 1, - sym_identifier, - ACTIONS(10316), 1, - anon_sym_LBRACK, - ACTIONS(10318), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6293), 1, sym_comment, - [198387] = 6, + ACTIONS(10306), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198513] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10320), 1, - anon_sym_COMMA, - ACTIONS(10322), 1, - anon_sym_GT, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, STATE(6294), 1, sym_comment, - [198406] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10316), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198528] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10324), 1, - sym_identifier, - ACTIONS(10326), 1, - anon_sym_LBRACK, - ACTIONS(10328), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6295), 1, sym_comment, - [198425] = 6, + ACTIONS(10318), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198543] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10330), 1, - anon_sym_COMMA, - ACTIONS(10332), 1, - anon_sym_GT, - STATE(6287), 1, - aux_sym_type_arguments_repeat1, STATE(6296), 1, sym_comment, - [198444] = 6, + ACTIONS(10142), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198558] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10334), 1, + ACTIONS(10320), 1, sym_identifier, - ACTIONS(10336), 1, + ACTIONS(10322), 1, anon_sym_LBRACK, - ACTIONS(10338), 1, + ACTIONS(10324), 1, sym_private_property_identifier, STATE(6297), 1, sym_comment, - [198463] = 6, + [198577] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(10340), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(6298), 1, sym_comment, - [198482] = 6, + ACTIONS(10160), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198592] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10342), 1, + ACTIONS(10326), 1, sym_identifier, - ACTIONS(10344), 1, + ACTIONS(10328), 1, anon_sym_LBRACK, - ACTIONS(10346), 1, + ACTIONS(10330), 1, sym_private_property_identifier, STATE(6299), 1, sym_comment, - [198501] = 4, + [198611] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10332), 1, + sym_identifier, + ACTIONS(10334), 1, + anon_sym_SEMI, + ACTIONS(10336), 1, + sym__automatic_semicolon, STATE(6300), 1, sym_comment, - ACTIONS(10348), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198516] = 6, + [198630] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10350), 1, - anon_sym_COMMA, - ACTIONS(10352), 1, - anon_sym_RBRACK, - STATE(6104), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(10338), 1, + sym_identifier, + ACTIONS(10340), 1, + anon_sym_LBRACK, + ACTIONS(10342), 1, + sym_private_property_identifier, STATE(6301), 1, sym_comment, - [198535] = 6, + [198649] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10354), 1, - anon_sym_COMMA, - ACTIONS(10356), 1, - anon_sym_RBRACE, - STATE(6277), 1, - aux_sym_enum_body_repeat1, STATE(6302), 1, sym_comment, - [198554] = 6, + ACTIONS(6725), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198664] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8041), 1, - anon_sym_LBRACE, - ACTIONS(8043), 1, - anon_sym_LBRACE_PIPE, - STATE(1073), 1, - sym_object_type, + ACTIONS(10344), 1, + sym_identifier, + ACTIONS(10346), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + sym_private_property_identifier, STATE(6303), 1, sym_comment, - [198573] = 6, + [198683] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5849), 1, - anon_sym_RPAREN, - STATE(6167), 1, - aux_sym_array_repeat1, STATE(6304), 1, sym_comment, - [198592] = 5, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198698] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7947), 1, - anon_sym_DOT, + ACTIONS(10350), 1, + anon_sym_COMMA, + ACTIONS(10352), 1, + anon_sym_RBRACK, + STATE(6011), 1, + aux_sym_tuple_type_repeat1, STATE(6305), 1, sym_comment, - ACTIONS(10358), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [198609] = 5, + [198717] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, - anon_sym_DOT, + ACTIONS(10354), 1, + anon_sym_COMMA, + ACTIONS(10356), 1, + anon_sym_GT, + STATE(5905), 1, + aux_sym_type_arguments_repeat1, STATE(6306), 1, sym_comment, - ACTIONS(10358), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [198626] = 4, + [198736] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6307), 1, sym_comment, - ACTIONS(10275), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198641] = 6, + [198751] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10360), 1, - anon_sym_COMMA, - ACTIONS(10362), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, STATE(6308), 1, sym_comment, - [198660] = 4, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198766] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6309), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198675] = 6, + [198781] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10364), 1, + ACTIONS(10358), 1, anon_sym_COMMA, - ACTIONS(10366), 1, - anon_sym_RBRACE, - STATE(6049), 1, - aux_sym_enum_body_repeat1, - STATE(6310), 1, + ACTIONS(10361), 1, + anon_sym_RBRACK, + STATE(6310), 2, sym_comment, - [198694] = 6, + aux_sym_array_pattern_repeat1, + [198798] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(210), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8053), 1, - anon_sym_LBRACE_PIPE, STATE(6311), 1, sym_comment, - STATE(6684), 1, - sym_object_type, - [198713] = 4, + ACTIONS(10318), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198813] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10363), 1, + anon_sym_COMMA, + ACTIONS(10365), 1, + anon_sym_RBRACE, + STATE(6066), 1, + aux_sym_enum_body_repeat1, STATE(6312), 1, sym_comment, - ACTIONS(10275), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198728] = 4, + [198832] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6313), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(10367), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198743] = 4, + [198847] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10369), 1, + anon_sym_COMMA, + ACTIONS(10371), 1, + anon_sym_RBRACE, + STATE(6066), 1, + aux_sym_enum_body_repeat1, STATE(6314), 1, sym_comment, - ACTIONS(10368), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [198758] = 6, + [198866] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(10370), 1, - anon_sym_RBRACE, - STATE(5725), 1, - aux_sym_object_repeat1, STATE(6315), 1, sym_comment, - [198777] = 6, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198881] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9397), 1, anon_sym_COMMA, - ACTIONS(10372), 1, - anon_sym_RBRACE, - STATE(5727), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(10373), 1, + anon_sym_RBRACK, + STATE(6310), 1, + aux_sym_array_pattern_repeat1, STATE(6316), 1, sym_comment, - [198796] = 6, + [198900] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(5855), 1, anon_sym_COMMA, - ACTIONS(10374), 1, - anon_sym_RBRACE, - STATE(5727), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(10375), 1, + anon_sym_RBRACK, + STATE(5599), 1, + aux_sym_array_repeat1, STATE(6317), 1, sym_comment, - [198815] = 6, + [198919] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8103), 1, - anon_sym_COMMA, - ACTIONS(10376), 1, - anon_sym_RBRACE, - STATE(5725), 1, - aux_sym_object_repeat1, + ACTIONS(9395), 1, + anon_sym_EQ, STATE(6318), 1, sym_comment, - [198834] = 6, + ACTIONS(10361), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [198936] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, - anon_sym_RPAREN, - STATE(5471), 1, - aux_sym_array_repeat1, STATE(6319), 1, sym_comment, - [198853] = 4, + ACTIONS(5873), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [198951] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6320), 1, sym_comment, - ACTIONS(10247), 3, + ACTIONS(9964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198868] = 6, + [198966] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, - anon_sym_RPAREN, - STATE(6298), 1, - aux_sym_array_repeat1, STATE(6321), 1, sym_comment, - [198887] = 6, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198981] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8041), 1, - anon_sym_LBRACE, - ACTIONS(8043), 1, - anon_sym_LBRACE_PIPE, - STATE(1006), 1, - sym_object_type, + ACTIONS(10377), 1, + anon_sym_COMMA, + ACTIONS(10379), 1, + anon_sym_RBRACK, + STATE(6011), 1, + aux_sym_tuple_type_repeat1, STATE(6322), 1, sym_comment, - [198906] = 4, + [199000] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10381), 1, + anon_sym_LPAREN, + ACTIONS(10383), 1, + anon_sym_await, + STATE(96), 1, + sym__for_header, STATE(6323), 1, sym_comment, - ACTIONS(9841), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198921] = 6, + [199019] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10378), 1, - anon_sym_COMMA, - ACTIONS(10380), 1, - anon_sym_RPAREN, - STATE(5989), 1, - aux_sym_formal_parameters_repeat1, STATE(6324), 1, sym_comment, - [198940] = 5, + ACTIONS(9964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199034] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8196), 1, - anon_sym_DOT, STATE(6325), 1, sym_comment, - ACTIONS(10382), 2, + ACTIONS(10010), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [198957] = 6, + anon_sym_SEMI, + [199049] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - ACTIONS(10384), 1, - anon_sym_LPAREN, - STATE(5749), 1, - sym_statement_block, + ACTIONS(7186), 1, + anon_sym_LT, + ACTIONS(10385), 1, + anon_sym_EQ, STATE(6326), 1, sym_comment, - [198976] = 4, + STATE(7233), 1, + sym_type_parameters, + [199068] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6327), 1, sym_comment, - ACTIONS(9830), 3, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198991] = 6, + [199083] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5795), 1, - anon_sym_COMMA, - ACTIONS(10386), 1, - anon_sym_RBRACK, - STATE(5471), 1, - aux_sym_array_repeat1, + ACTIONS(10387), 1, + anon_sym_LBRACE, + ACTIONS(10389), 1, + anon_sym_LPAREN, + STATE(1337), 1, + sym_statement_block, STATE(6328), 1, sym_comment, - [199010] = 6, + [199102] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9362), 1, - anon_sym_COMMA, - ACTIONS(10388), 1, - anon_sym_RBRACK, - STATE(5805), 1, - aux_sym_array_pattern_repeat1, STATE(6329), 1, sym_comment, - [199029] = 4, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199117] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10391), 1, + anon_sym_EQ, STATE(6330), 1, sym_comment, - ACTIONS(9830), 3, - sym__automatic_semicolon, + ACTIONS(9796), 2, anon_sym_COMMA, - anon_sym_SEMI, - [199044] = 4, + anon_sym_from, + [199134] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10393), 1, + anon_sym_COMMA, + ACTIONS(10395), 1, + anon_sym_RPAREN, + STATE(5673), 1, + aux_sym_formal_parameters_repeat1, STATE(6331), 1, sym_comment, - ACTIONS(9816), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199059] = 4, + [199153] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6332), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199074] = 4, + ACTIONS(8220), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [199168] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10397), 1, + anon_sym_EQ, STATE(6333), 1, sym_comment, - ACTIONS(10390), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199089] = 4, + ACTIONS(4365), 2, + anon_sym_in, + anon_sym_of, + [199185] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6334), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199104] = 6, + [199200] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10392), 1, - anon_sym_COMMA, - ACTIONS(10394), 1, - anon_sym_GT, - STATE(6066), 1, - aux_sym_type_parameters_repeat1, STATE(6335), 1, sym_comment, - [199123] = 4, + ACTIONS(10218), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199215] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6336), 1, sym_comment, - ACTIONS(9816), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199138] = 4, + [199230] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10399), 1, + anon_sym_COMMA, + ACTIONS(10401), 1, + anon_sym_RBRACE, + STATE(6066), 1, + aux_sym_enum_body_repeat1, STATE(6337), 1, sym_comment, - ACTIONS(10086), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [199152] = 4, + [199249] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10403), 1, + anon_sym_COMMA, + ACTIONS(10405), 1, + anon_sym_RBRACE, + STATE(6066), 1, + aux_sym_enum_body_repeat1, STATE(6338), 1, sym_comment, - ACTIONS(8505), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199166] = 5, + [199268] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(113), 1, - sym_parenthesized_expression, STATE(6339), 1, sym_comment, - [199182] = 5, + ACTIONS(6729), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199282] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7611), 1, + ACTIONS(7618), 1, anon_sym_LBRACE, - STATE(363), 1, + STATE(4916), 1, sym_class_body, STATE(6340), 1, sym_comment, - [199198] = 5, + [199298] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(112), 1, - sym_parenthesized_expression, + ACTIONS(7780), 1, + anon_sym_LBRACE, + STATE(1282), 1, + sym_class_body, STATE(6341), 1, sym_comment, - [199214] = 4, + [199314] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10206), 1, + anon_sym_LBRACE, + STATE(922), 1, + sym_statement_block, STATE(6342), 1, sym_comment, - ACTIONS(5744), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199228] = 5, + [199330] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10398), 1, - anon_sym_LPAREN, STATE(6343), 1, sym_comment, - STATE(6554), 1, - sym_parenthesized_expression, - [199244] = 5, + ACTIONS(6718), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199344] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10400), 1, - anon_sym_SEMI, - ACTIONS(10402), 1, - sym__automatic_semicolon, STATE(6344), 1, sym_comment, - [199260] = 4, + ACTIONS(3543), 2, + anon_sym_else, + anon_sym_while, + [199358] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6345), 1, sym_comment, - ACTIONS(5730), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199274] = 5, + ACTIONS(3545), 2, + anon_sym_else, + anon_sym_while, + [199372] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(91), 1, - sym_parenthesized_expression, STATE(6346), 1, sym_comment, - [199290] = 5, + ACTIONS(3539), 2, + anon_sym_else, + anon_sym_while, + [199386] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10404), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_statement_block, + ACTIONS(10407), 1, + sym_identifier, + ACTIONS(10409), 1, + anon_sym_STAR, STATE(6347), 1, sym_comment, - [199306] = 5, + [199402] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10406), 1, - anon_sym_SEMI, - ACTIONS(10408), 1, - sym__automatic_semicolon, STATE(6348), 1, sym_comment, - [199322] = 4, + ACTIONS(10411), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [199416] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(83), 1, + sym_parenthesized_expression, STATE(6349), 1, sym_comment, - ACTIONS(2229), 2, - anon_sym_else, - anon_sym_while, - [199336] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199432] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10410), 1, - sym_identifier, - ACTIONS(10412), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6350), 1, sym_comment, - [199352] = 5, + ACTIONS(6779), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199446] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10414), 1, - anon_sym_in, - ACTIONS(10416), 1, - anon_sym_COLON, STATE(6351), 1, sym_comment, - [199368] = 4, + ACTIONS(10244), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199460] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7184), 1, + anon_sym_COLON, + STATE(5660), 1, + sym_type_annotation, STATE(6352), 1, sym_comment, - ACTIONS(10418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199382] = 5, + [199476] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(1299), 1, - sym_class_body, STATE(6353), 1, sym_comment, - [199398] = 5, + ACTIONS(3537), 2, + anon_sym_else, + anon_sym_while, + [199490] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3374), 1, - sym_statement_block, STATE(6354), 1, sym_comment, - [199414] = 5, + ACTIONS(9510), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199504] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(3377), 1, - sym_statement_block, STATE(6355), 1, sym_comment, - [199430] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6789), 1, + sym_statement_block, + [199520] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6356), 1, sym_comment, - ACTIONS(10420), 2, - sym_jsx_identifier, - sym_identifier, - [199444] = 5, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199534] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, + ACTIONS(7586), 1, anon_sym_LBRACE, - STATE(2478), 1, - sym_statement_block, STATE(6357), 1, sym_comment, - [199460] = 5, + STATE(6359), 1, + sym_class_body, + [199550] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, + ACTIONS(4850), 1, anon_sym_LBRACE, - STATE(2488), 1, + STATE(3123), 1, sym_statement_block, STATE(6358), 1, sym_comment, - [199476] = 5, + [199566] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2493), 1, - sym_class_body, STATE(6359), 1, sym_comment, - [199492] = 4, + ACTIONS(3535), 2, + anon_sym_else, + anon_sym_while, + [199580] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10206), 1, + anon_sym_LBRACE, + STATE(928), 1, + sym_statement_block, STATE(6360), 1, sym_comment, - ACTIONS(5755), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199506] = 4, + [199596] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_LBRACE, + STATE(1018), 1, + sym_class_body, STATE(6361), 1, sym_comment, - ACTIONS(5672), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199520] = 4, + [199612] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9112), 1, + anon_sym_LBRACE, + STATE(961), 1, + sym_statement_block, STATE(6362), 1, sym_comment, - ACTIONS(6743), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199534] = 4, + [199628] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10415), 1, + sym_identifier, + ACTIONS(10417), 1, + anon_sym_STAR, STATE(6363), 1, sym_comment, - ACTIONS(10422), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199548] = 4, + [199644] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6364), 1, sym_comment, - ACTIONS(6758), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199562] = 4, + ACTIONS(5480), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199658] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10419), 1, + anon_sym_LBRACE, + STATE(1498), 1, + sym_statement_block, STATE(6365), 1, sym_comment, - ACTIONS(5639), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199576] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199674] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10424), 1, - sym_identifier, - ACTIONS(10426), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6366), 1, sym_comment, - [199592] = 5, + ACTIONS(10361), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [199688] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9818), 1, + ACTIONS(7780), 1, anon_sym_LBRACE, - STATE(1180), 1, - sym_statement_block, + STATE(1311), 1, + sym_class_body, STATE(6367), 1, sym_comment, - [199608] = 5, + [199704] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(3023), 1, + STATE(3062), 1, sym_class_body, STATE(6368), 1, sym_comment, - [199624] = 4, + [199720] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10421), 1, + sym_identifier, + ACTIONS(10423), 1, + sym_private_property_identifier, STATE(6369), 1, sym_comment, - ACTIONS(6707), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199638] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199736] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3105), 1, + sym_class_body, STATE(6370), 1, sym_comment, - ACTIONS(10428), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [199652] = 4, + [199752] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_LBRACE, STATE(6371), 1, sym_comment, - ACTIONS(6703), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199666] = 5, + STATE(6468), 1, + sym_class_body, + [199768] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(3304), 1, - sym_class_body, + ACTIONS(10425), 1, + sym_identifier, + ACTIONS(10427), 1, + sym_private_property_identifier, STATE(6372), 1, sym_comment, - [199682] = 4, + [199784] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10429), 1, + sym_identifier, + ACTIONS(10431), 1, + sym_private_property_identifier, STATE(6373), 1, sym_comment, - ACTIONS(3418), 2, - anon_sym_else, - anon_sym_while, - [199696] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199800] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10430), 1, - sym_identifier, - ACTIONS(10432), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6374), 1, sym_comment, - [199712] = 5, + ACTIONS(3547), 2, + anon_sym_else, + anon_sym_while, + [199814] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8819), 1, - anon_sym_in, - ACTIONS(8821), 1, - anon_sym_of, + ACTIONS(7780), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym_class_body, STATE(6375), 1, sym_comment, - [199728] = 4, + [199830] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(95), 1, + sym_parenthesized_expression, STATE(6376), 1, sym_comment, - ACTIONS(3416), 2, - anon_sym_else, - anon_sym_while, - [199742] = 5, + [199846] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, + ACTIONS(10433), 1, + sym_identifier, + ACTIONS(10435), 1, + sym_private_property_identifier, STATE(6377), 1, sym_comment, - STATE(6699), 1, - sym_statement_block, - [199758] = 5, + [199862] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10434), 1, + ACTIONS(4850), 1, anon_sym_LBRACE, - STATE(1012), 1, + STATE(3054), 1, sym_statement_block, STATE(6378), 1, sym_comment, - [199774] = 4, + [199878] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym_parenthesized_expression, STATE(6379), 1, sym_comment, - ACTIONS(3414), 2, - anon_sym_else, - anon_sym_while, - [199788] = 5, + [199894] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10436), 1, + ACTIONS(7964), 1, anon_sym_LBRACE, - STATE(1019), 1, - sym_enum_body, + STATE(6214), 1, + sym_statement_block, STATE(6380), 1, sym_comment, - [199804] = 4, + [199910] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6381), 1, sym_comment, - ACTIONS(3410), 2, - anon_sym_else, - anon_sym_while, - [199818] = 4, + ACTIONS(10437), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199924] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10439), 1, + anon_sym_LBRACE, + STATE(1088), 1, + sym_statement_block, STATE(6382), 1, sym_comment, - ACTIONS(3408), 2, - anon_sym_else, - anon_sym_while, - [199832] = 5, + [199940] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10438), 1, - anon_sym_SEMI, - ACTIONS(10440), 1, - sym__automatic_semicolon, + ACTIONS(10441), 1, + anon_sym_LBRACE, STATE(6383), 1, sym_comment, - [199848] = 4, + STATE(6990), 1, + sym_object, + [199956] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10443), 1, + anon_sym_LBRACE, + STATE(1094), 1, + sym_enum_body, STATE(6384), 1, sym_comment, - ACTIONS(3404), 2, - anon_sym_else, - anon_sym_while, - [199862] = 4, + [199972] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(4644), 1, + sym_statement_block, STATE(6385), 1, sym_comment, - ACTIONS(10442), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199876] = 4, + [199988] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(6192), 1, + sym_class_body, STATE(6386), 1, sym_comment, - ACTIONS(10444), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199890] = 5, + [200004] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10446), 1, - anon_sym_LPAREN, - STATE(5424), 1, - sym_parenthesized_expression, + ACTIONS(10445), 1, + anon_sym_SEMI, + ACTIONS(10447), 1, + sym__automatic_semicolon, STATE(6387), 1, sym_comment, - [199906] = 5, + [200020] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(3040), 1, - sym_class_body, + ACTIONS(10449), 1, + anon_sym_SEMI, + ACTIONS(10451), 1, + sym__automatic_semicolon, STATE(6388), 1, sym_comment, - [199922] = 5, + [200036] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10448), 1, - anon_sym_SEMI, - ACTIONS(10450), 1, - sym__automatic_semicolon, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(2574), 1, + sym_class_body, STATE(6389), 1, sym_comment, - [199938] = 5, + [200052] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10452), 1, - anon_sym_SEMI, - ACTIONS(10454), 1, - sym__automatic_semicolon, + ACTIONS(5257), 1, + anon_sym_LBRACE, + STATE(2575), 1, + sym_statement_block, STATE(6390), 1, sym_comment, - [199954] = 4, + [200068] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5257), 1, + anon_sym_LBRACE, + STATE(2576), 1, + sym_statement_block, STATE(6391), 1, sym_comment, - ACTIONS(9531), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199968] = 4, + [200084] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(2577), 1, + sym_class_body, STATE(6392), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199982] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200100] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10456), 1, - sym_identifier, - ACTIONS(10458), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10453), 1, + anon_sym_SEMI, + ACTIONS(10455), 1, + sym__automatic_semicolon, STATE(6393), 1, sym_comment, - [199998] = 4, + [200116] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10457), 1, + anon_sym_SEMI, + ACTIONS(10459), 1, + sym__automatic_semicolon, STATE(6394), 1, sym_comment, - ACTIONS(6719), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200012] = 5, + [200132] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10436), 1, - anon_sym_LBRACE, - STATE(1148), 1, - sym_enum_body, + ACTIONS(10461), 1, + sym_identifier, + ACTIONS(10463), 1, + sym_private_property_identifier, STATE(6395), 1, sym_comment, - [200028] = 4, + [200148] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10465), 1, + sym_identifier, + ACTIONS(10467), 1, + sym_private_property_identifier, STATE(6396), 1, sym_comment, - ACTIONS(3398), 2, - anon_sym_else, - anon_sym_while, - [200042] = 5, + [200164] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3039), 1, + STATE(3392), 1, sym_statement_block, STATE(6397), 1, sym_comment, - [200058] = 5, + [200180] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7837), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(336), 1, - sym_class_body, + STATE(3391), 1, + sym_statement_block, STATE(6398), 1, sym_comment, - [200074] = 5, + [200196] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10460), 1, + ACTIONS(10443), 1, anon_sym_LBRACE, + STATE(1123), 1, + sym_enum_body, STATE(6399), 1, sym_comment, - STATE(6723), 1, - sym_enum_body, - [200090] = 5, + [200212] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10462), 1, + ACTIONS(7840), 1, anon_sym_LBRACE, - STATE(1423), 1, - sym_enum_body, + STATE(440), 1, + sym_class_body, STATE(6400), 1, sym_comment, - [200106] = 4, + [200228] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10469), 1, + sym_identifier, + ACTIONS(10471), 1, + sym_private_property_identifier, STATE(6401), 1, sym_comment, - ACTIONS(9313), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200120] = 5, + [200244] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, + STATE(332), 1, + sym_class_body, STATE(6402), 1, sym_comment, - STATE(6783), 1, - sym_statement_block, - [200136] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200260] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10464), 1, - sym_identifier, - ACTIONS(10466), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(6189), 1, + sym_class_body, STATE(6403), 1, sym_comment, - [200152] = 4, + [200276] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10320), 1, + sym_identifier, + ACTIONS(10324), 1, + sym_private_property_identifier, STATE(6404), 1, sym_comment, - ACTIONS(10468), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200166] = 5, + [200292] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7964), 1, anon_sym_LBRACE, - STATE(3385), 1, + STATE(6181), 1, sym_statement_block, STATE(6405), 1, sym_comment, - [200182] = 4, + [200308] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3383), 1, + sym_statement_block, STATE(6406), 1, sym_comment, - ACTIONS(6719), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200196] = 4, + [200324] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6407), 1, sym_comment, - ACTIONS(3394), 2, + ACTIONS(3533), 2, anon_sym_else, anon_sym_while, - [200210] = 4, + [200338] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(6173), 1, + sym_class_body, STATE(6408), 1, sym_comment, - ACTIONS(3392), 2, - anon_sym_else, - anon_sym_while, - [200224] = 5, + [200354] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10174), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(937), 1, - sym_statement_block, + STATE(2544), 1, + sym_class_body, STATE(6409), 1, sym_comment, - [200240] = 5, + [200370] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7623), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1036), 1, - sym_class_body, + STATE(3414), 1, + sym_statement_block, STATE(6410), 1, sym_comment, - [200256] = 5, + [200386] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8997), 1, - anon_sym_LBRACE, - STATE(1137), 1, - sym_statement_block, + ACTIONS(10473), 1, + anon_sym_SEMI, + ACTIONS(10475), 1, + sym__automatic_semicolon, STATE(6411), 1, sym_comment, - [200272] = 5, + [200402] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, + STATE(3405), 1, + sym_statement_block, STATE(6412), 1, sym_comment, - STATE(6764), 1, - sym_statement_block, - [200288] = 4, + [200418] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_class_body, STATE(6413), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200302] = 5, + [200434] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7653), 1, + ACTIONS(7766), 1, anon_sym_LBRACE, - STATE(1202), 1, + STATE(984), 1, sym_class_body, STATE(6414), 1, sym_comment, - [200318] = 5, + [200450] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8799), 1, + ACTIONS(9112), 1, anon_sym_LBRACE, - STATE(1203), 1, + STATE(975), 1, sym_statement_block, STATE(6415), 1, sym_comment, - [200334] = 5, + [200466] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10470), 1, - anon_sym_SEMI, - ACTIONS(10472), 1, - sym__automatic_semicolon, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3387), 1, + sym_statement_block, STATE(6416), 1, sym_comment, - [200350] = 4, + [200482] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6417), 1, sym_comment, - ACTIONS(10474), 2, + ACTIONS(10477), 2, sym__automatic_semicolon, anon_sym_SEMI, - [200364] = 5, + [200496] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, + ACTIONS(5257), 1, anon_sym_LBRACE, - STATE(912), 1, - sym_class_body, + STATE(2528), 1, + sym_statement_block, STATE(6418), 1, sym_comment, - [200380] = 5, + [200512] = 5, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10476), 1, - anon_sym_LPAREN, - STATE(1971), 1, - sym_arguments, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3397), 1, + sym_statement_block, STATE(6419), 1, sym_comment, - [200396] = 4, + [200528] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10479), 1, + anon_sym_SEMI, + ACTIONS(10481), 1, + sym__automatic_semicolon, STATE(6420), 1, sym_comment, - ACTIONS(3384), 2, - anon_sym_else, - anon_sym_while, - [200410] = 5, + [200544] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(1244), 1, - sym_class_body, STATE(6421), 1, sym_comment, - [200426] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10483), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200558] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10478), 1, - sym_identifier, - ACTIONS(10480), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7746), 1, + anon_sym_LBRACE, + STATE(924), 1, + sym_class_body, STATE(6422), 1, sym_comment, - [200442] = 5, + [200574] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(7766), 1, anon_sym_LBRACE, - STATE(3180), 1, + STATE(971), 1, sym_class_body, STATE(6423), 1, sym_comment, - [200458] = 5, + [200590] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(1224), 1, - sym_class_body, STATE(6424), 1, sym_comment, - [200474] = 5, + ACTIONS(6737), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200604] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7837), 1, - anon_sym_LBRACE, - STATE(295), 1, - sym_class_body, + ACTIONS(10485), 1, + sym_identifier, + ACTIONS(10487), 1, + sym_private_property_identifier, STATE(6425), 1, sym_comment, - [200490] = 5, + [200620] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10482), 1, - anon_sym_SEMI, - ACTIONS(10484), 1, - sym__automatic_semicolon, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(2527), 1, + sym_class_body, STATE(6426), 1, sym_comment, - [200506] = 4, + [200636] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3031), 1, + sym_class_body, STATE(6427), 1, sym_comment, - ACTIONS(3372), 2, - anon_sym_else, - anon_sym_while, - [200520] = 4, + [200652] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10489), 1, + sym_identifier, + ACTIONS(10491), 1, + sym_private_property_identifier, STATE(6428), 1, sym_comment, - ACTIONS(3374), 2, - anon_sym_else, - anon_sym_while, - [200534] = 5, + [200668] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10486), 1, - anon_sym_SEMI, - ACTIONS(10488), 1, - sym__automatic_semicolon, + ACTIONS(7708), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_class_body, STATE(6429), 1, sym_comment, - [200550] = 5, + [200684] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8939), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(297), 1, + STATE(6175), 1, sym_statement_block, STATE(6430), 1, sym_comment, - [200566] = 5, + [200700] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7843), 1, - anon_sym_LBRACE, - STATE(1061), 1, - sym_class_body, STATE(6431), 1, sym_comment, - [200582] = 5, + ACTIONS(3549), 2, + anon_sym_else, + anon_sym_while, + [200714] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, + STATE(3365), 1, + sym_statement_block, STATE(6432), 1, sym_comment, - STATE(6751), 1, - sym_statement_block, - [200598] = 5, + [200730] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(3136), 1, - sym_statement_block, STATE(6433), 1, sym_comment, - [200614] = 4, + ACTIONS(10493), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200744] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9063), 1, + anon_sym_LBRACE, + STATE(346), 1, + sym_statement_block, STATE(6434), 1, sym_comment, - ACTIONS(6739), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200628] = 4, + [200760] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7758), 1, + anon_sym_LBRACE, + STATE(1020), 1, + sym_class_body, STATE(6435), 1, sym_comment, - ACTIONS(5581), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200642] = 4, + [200776] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3412), 1, + sym_statement_block, STATE(6436), 1, sym_comment, - ACTIONS(3376), 2, - anon_sym_else, - anon_sym_while, - [200656] = 4, + [200792] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7780), 1, + anon_sym_LBRACE, + STATE(1409), 1, + sym_class_body, STATE(6437), 1, sym_comment, - ACTIONS(10490), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200670] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200808] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10492), 1, - sym_identifier, - ACTIONS(10494), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(3000), 1, + sym_statement_block, STATE(6438), 1, sym_comment, - [200686] = 5, + [200824] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, STATE(6439), 1, sym_comment, - STATE(6753), 1, - sym_statement_block, - [200702] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3531), 2, + anon_sym_else, + anon_sym_while, + [200838] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10496), 1, - sym_identifier, - ACTIONS(10498), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6440), 1, sym_comment, - [200718] = 5, + ACTIONS(3529), 2, + anon_sym_else, + anon_sym_while, + [200852] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_LBRACE, - STATE(1487), 1, - sym_class_body, STATE(6441), 1, sym_comment, - [200734] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3525), 2, + anon_sym_else, + anon_sym_while, + [200866] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10500), 1, - sym_identifier, - ACTIONS(10502), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5569), 1, + sym__from_clause, STATE(6442), 1, sym_comment, - [200750] = 5, + [200882] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(445), 1, - sym_class_body, STATE(6443), 1, sym_comment, - [200766] = 5, + ACTIONS(3521), 2, + anon_sym_else, + anon_sym_while, + [200896] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10504), 1, - anon_sym_SEMI, - ACTIONS(10506), 1, - sym__automatic_semicolon, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(2980), 1, + sym_class_body, STATE(6444), 1, sym_comment, - [200782] = 5, + [200912] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7837), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym_class_body, + ACTIONS(10495), 1, + anon_sym_SEMI, + ACTIONS(10497), 1, + sym__automatic_semicolon, STATE(6445), 1, sym_comment, - [200798] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200928] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10314), 1, - sym_identifier, - ACTIONS(10318), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3366), 1, + sym_statement_block, STATE(6446), 1, sym_comment, - [200814] = 4, + [200944] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10499), 1, + anon_sym_SEMI, + ACTIONS(10501), 1, + sym__automatic_semicolon, STATE(6447), 1, sym_comment, - ACTIONS(3378), 2, - anon_sym_else, - anon_sym_while, - [200828] = 5, + [200960] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LBRACE, - STATE(915), 1, - sym_class_body, + ACTIONS(10503), 1, + sym_identifier, + ACTIONS(10505), 1, + sym_private_property_identifier, STATE(6448), 1, sym_comment, - [200844] = 5, + [200976] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8997), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - STATE(1081), 1, - sym_statement_block, + STATE(356), 1, + sym_class_body, STATE(6449), 1, sym_comment, - [200860] = 5, + [200992] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8912), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_statement_block, STATE(6450), 1, sym_comment, - [200876] = 5, + ACTIONS(10507), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201006] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LBRACE, - STATE(917), 1, - sym_class_body, STATE(6451), 1, sym_comment, - [200892] = 5, + ACTIONS(10509), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201020] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10508), 1, - anon_sym_SEMI, - ACTIONS(10510), 1, - sym__automatic_semicolon, + ACTIONS(7746), 1, + anon_sym_LBRACE, + STATE(945), 1, + sym_class_body, STATE(6452), 1, sym_comment, - [200908] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201036] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10297), 1, - sym_identifier, - ACTIONS(10301), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, STATE(6453), 1, sym_comment, - [200924] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6957), 1, + sym_statement_block, + [201052] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10512), 1, - sym_identifier, - ACTIONS(10514), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9051), 1, + anon_sym_LBRACE, + STATE(949), 1, + sym_statement_block, STATE(6454), 1, sym_comment, - [200940] = 5, + [201068] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10460), 1, + ACTIONS(7746), 1, anon_sym_LBRACE, + STATE(947), 1, + sym_class_body, STATE(6455), 1, sym_comment, - STATE(6813), 1, - sym_enum_body, - [200956] = 5, + [201084] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, STATE(6456), 1, sym_comment, - STATE(6819), 1, - sym_statement_block, - [200972] = 5, + ACTIONS(3519), 2, + anon_sym_else, + anon_sym_while, + [201098] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8939), 1, - anon_sym_LBRACE, - STATE(343), 1, - sym_statement_block, + ACTIONS(10511), 1, + sym_identifier, + ACTIONS(10513), 1, + sym_private_property_identifier, STATE(6457), 1, sym_comment, - [200988] = 5, + [201114] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7843), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1135), 1, - sym_class_body, + STATE(3369), 1, + sym_statement_block, STATE(6458), 1, sym_comment, - [201004] = 5, + [201130] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - STATE(4715), 1, - sym_formal_parameters, + ACTIONS(7766), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_class_body, STATE(6459), 1, sym_comment, - [201020] = 5, + [201146] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7623), 1, - anon_sym_LBRACE, - STATE(962), 1, - sym_class_body, STATE(6460), 1, sym_comment, - [201036] = 5, + ACTIONS(10515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201160] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(9063), 1, anon_sym_LBRACE, - STATE(3402), 1, + STATE(314), 1, sym_statement_block, STATE(6461), 1, sym_comment, - [201052] = 5, + [201176] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7623), 1, + ACTIONS(7758), 1, anon_sym_LBRACE, - STATE(1067), 1, + STATE(980), 1, sym_class_body, STATE(6462), 1, sym_comment, - [201068] = 5, + [201192] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3043), 1, - sym_class_body, + STATE(3403), 1, + sym_statement_block, STATE(6463), 1, sym_comment, - [201084] = 4, + [201208] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10517), 1, + anon_sym_SEMI, + ACTIONS(10519), 1, + sym__automatic_semicolon, STATE(6464), 1, sym_comment, - ACTIONS(3380), 2, - anon_sym_else, - anon_sym_while, - [201098] = 4, + [201224] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3413), 1, + sym_statement_block, STATE(6465), 1, sym_comment, - ACTIONS(10516), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201112] = 5, + [201240] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7837), 1, + ACTIONS(7586), 1, anon_sym_LBRACE, - STATE(318), 1, - sym_class_body, STATE(6466), 1, sym_comment, - [201128] = 5, + STATE(6542), 1, + sym_class_body, + [201256] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7843), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1113), 1, - sym_class_body, + STATE(3379), 1, + sym_statement_block, STATE(6467), 1, sym_comment, - [201144] = 4, + [201272] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6468), 1, sym_comment, - ACTIONS(3386), 2, + ACTIONS(3517), 2, anon_sym_else, anon_sym_while, - [201158] = 5, + [201286] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8912), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_statement_block, + ACTIONS(10521), 1, + sym_identifier, + ACTIONS(10523), 1, + sym_private_property_identifier, STATE(6469), 1, sym_comment, - [201174] = 5, + [201302] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(343), 1, sym_class_body, STATE(6470), 1, sym_comment, - [201190] = 4, + [201318] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7758), 1, + anon_sym_LBRACE, + STATE(993), 1, + sym_class_body, STATE(6471), 1, sym_comment, - ACTIONS(3388), 2, - anon_sym_else, - anon_sym_while, - [201204] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201334] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10518), 1, - sym_identifier, - ACTIONS(10520), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6472), 1, sym_comment, - [201220] = 5, + ACTIONS(3515), 2, + anon_sym_else, + anon_sym_while, + [201348] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(9051), 1, anon_sym_LBRACE, - STATE(3367), 1, + STATE(936), 1, sym_statement_block, STATE(6473), 1, sym_comment, - [201236] = 5, + [201364] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7605), 1, + ACTIONS(7746), 1, anon_sym_LBRACE, - STATE(1316), 1, + STATE(957), 1, sym_class_body, STATE(6474), 1, sym_comment, - [201252] = 5, + [201380] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(2957), 1, + STATE(3396), 1, sym_statement_block, STATE(6475), 1, sym_comment, - [201268] = 5, + [201396] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7843), 1, - anon_sym_LBRACE, - STATE(1088), 1, - sym_class_body, STATE(6476), 1, sym_comment, - [201284] = 5, + ACTIONS(10239), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201410] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(83), 1, - sym_parenthesized_expression, + ACTIONS(8008), 1, + anon_sym_LBRACE, STATE(6477), 1, sym_comment, - [201300] = 5, + STATE(6684), 1, + sym_statement_block, + [201426] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(1553), 1, + STATE(2967), 1, sym_class_body, STATE(6478), 1, sym_comment, - [201316] = 4, + [201442] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(6093), 1, + sym_statement_block, STATE(6479), 1, sym_comment, - ACTIONS(3390), 2, - anon_sym_else, - anon_sym_while, - [201330] = 5, + [201458] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7758), 1, anon_sym_LBRACE, - STATE(3394), 1, - sym_statement_block, + STATE(1010), 1, + sym_class_body, STATE(6480), 1, sym_comment, - [201346] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201474] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10522), 1, - sym_identifier, - ACTIONS(10524), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10439), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_statement_block, STATE(6481), 1, sym_comment, - [201362] = 5, + [201490] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_LBRACE, - STATE(2511), 1, - sym_statement_block, + ACTIONS(10525), 1, + anon_sym_LPAREN, + STATE(910), 1, + sym_parenthesized_expression, STATE(6482), 1, sym_comment, - [201378] = 5, + [201506] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10526), 1, - anon_sym_LPAREN, - STATE(3537), 1, - sym_arguments, + ACTIONS(7586), 1, + anon_sym_LBRACE, STATE(6483), 1, sym_comment, - [201394] = 4, + STATE(6610), 1, + sym_class_body, + [201522] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10527), 1, + anon_sym_LBRACE, + STATE(1331), 1, + sym_enum_body, STATE(6484), 1, sym_comment, - ACTIONS(3396), 2, - anon_sym_else, - anon_sym_while, - [201408] = 4, + [201538] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6485), 1, sym_comment, - ACTIONS(6715), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201422] = 5, + ACTIONS(9162), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201552] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2528), 1, - sym_class_body, STATE(6486), 1, sym_comment, - [201438] = 5, + ACTIONS(10529), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201566] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10462), 1, + ACTIONS(4850), 1, anon_sym_LBRACE, - STATE(1350), 1, - sym_enum_body, + STATE(3186), 1, + sym_statement_block, STATE(6487), 1, sym_comment, - [201454] = 5, + [201582] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10528), 1, - anon_sym_LBRACE, - STATE(1437), 1, - sym_statement_block, + ACTIONS(10531), 1, + anon_sym_SEMI, + ACTIONS(10533), 1, + sym__automatic_semicolon, STATE(6488), 1, sym_comment, - [201470] = 4, + [201598] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10535), 1, + anon_sym_SEMI, + ACTIONS(10537), 1, + sym__automatic_semicolon, STATE(6489), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_else, - anon_sym_while, - [201484] = 5, + [201614] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10530), 1, + ACTIONS(10539), 1, sym_identifier, - ACTIONS(10532), 1, + ACTIONS(10541), 1, anon_sym_STAR, STATE(6490), 1, sym_comment, - [201500] = 4, + [201630] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5257), 1, + anon_sym_LBRACE, + STATE(2552), 1, + sym_statement_block, STATE(6491), 1, sym_comment, - ACTIONS(3400), 2, - anon_sym_else, - anon_sym_while, - [201514] = 5, + [201646] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4793), 1, - anon_sym_LPAREN, - STATE(2429), 1, - sym_arguments, + ACTIONS(10543), 1, + anon_sym_SEMI, + ACTIONS(10545), 1, + sym__automatic_semicolon, STATE(6492), 1, sym_comment, - [201530] = 4, + [201662] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10547), 1, + anon_sym_SEMI, + ACTIONS(10549), 1, + sym__automatic_semicolon, STATE(6493), 1, sym_comment, - ACTIONS(3402), 2, - anon_sym_else, - anon_sym_while, - [201544] = 4, + [201678] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10551), 1, + anon_sym_SEMI, + ACTIONS(10553), 1, + sym__automatic_semicolon, STATE(6494), 1, sym_comment, - ACTIONS(10534), 2, - anon_sym_COMMA, - anon_sym_GT, - [201558] = 4, + [201694] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6495), 1, sym_comment, - ACTIONS(3402), 2, + ACTIONS(3513), 2, anon_sym_else, anon_sym_while, - [201572] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201708] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10536), 1, - sym_identifier, - ACTIONS(10538), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10527), 1, + anon_sym_LBRACE, + STATE(1264), 1, + sym_enum_body, STATE(6496), 1, sym_comment, - [201588] = 5, + [201724] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, - anon_sym_COLON, - ACTIONS(10241), 1, - anon_sym_GT, + ACTIONS(10555), 1, + anon_sym_LBRACE, + STATE(1258), 1, + sym_statement_block, STATE(6497), 1, sym_comment, - [201604] = 4, + [201740] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6498), 1, sym_comment, - ACTIONS(5751), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201618] = 4, + ACTIONS(6745), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201754] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10557), 1, + sym_identifier, + STATE(6278), 1, + sym_nested_identifier, STATE(6499), 1, sym_comment, - ACTIONS(3406), 2, - anon_sym_else, - anon_sym_while, - [201632] = 5, + [201770] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_statement_block, STATE(6500), 1, sym_comment, - [201648] = 5, + ACTIONS(6759), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201784] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(2964), 1, - sym_class_body, + STATE(3407), 1, + sym_statement_block, STATE(6501), 1, sym_comment, - [201664] = 5, + [201800] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8797), 1, - anon_sym_DOT, - ACTIONS(10540), 1, - anon_sym_GT, STATE(6502), 1, sym_comment, - [201680] = 5, + ACTIONS(3555), 2, + anon_sym_else, + anon_sym_while, + [201814] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10542), 1, - anon_sym_SEMI, - ACTIONS(10544), 1, - sym__automatic_semicolon, STATE(6503), 1, sym_comment, - [201696] = 4, + ACTIONS(3557), 2, + anon_sym_else, + anon_sym_while, + [201828] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6504), 1, sym_comment, - ACTIONS(10546), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201710] = 4, + STATE(7055), 1, + sym_formal_parameters, + [201844] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3362), 1, + sym_statement_block, STATE(6505), 1, sym_comment, - ACTIONS(10548), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201724] = 4, + [201860] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10559), 1, + anon_sym_SEMI, + ACTIONS(10561), 1, + sym__automatic_semicolon, STATE(6506), 1, sym_comment, - ACTIONS(5412), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201738] = 5, + [201876] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, STATE(6507), 1, sym_comment, - STATE(6715), 1, - sym__from_clause, - [201754] = 4, + ACTIONS(3511), 2, + anon_sym_else, + anon_sym_while, + [201890] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3390), 1, + sym_statement_block, STATE(6508), 1, sym_comment, - ACTIONS(10550), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201768] = 4, + [201906] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3416), 1, + sym_statement_block, STATE(6509), 1, sym_comment, - ACTIONS(10552), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201782] = 5, + [201922] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(9168), 1, + anon_sym_from, + STATE(6393), 1, + sym__from_clause, STATE(6510), 1, sym_comment, - STATE(7232), 1, - sym_formal_parameters, - [201798] = 5, + [201938] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3392), 1, - sym_statement_block, STATE(6511), 1, sym_comment, - [201814] = 5, + ACTIONS(5665), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201952] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7623), 1, - anon_sym_LBRACE, - STATE(996), 1, - sym_class_body, STATE(6512), 1, sym_comment, - [201830] = 5, + ACTIONS(5670), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201966] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10554), 1, - anon_sym_SEMI, - ACTIONS(10556), 1, - sym__automatic_semicolon, STATE(6513), 1, sym_comment, - [201846] = 4, + ACTIONS(10563), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201980] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3385), 1, + sym_statement_block, STATE(6514), 1, sym_comment, - ACTIONS(10558), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201860] = 5, + [201996] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10560), 1, - anon_sym_SEMI, - ACTIONS(10562), 1, - sym__automatic_semicolon, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3155), 1, + sym_class_body, STATE(6515), 1, sym_comment, - [201876] = 5, + [202012] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_class_body, STATE(6516), 1, sym_comment, - [201892] = 5, + ACTIONS(10565), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202026] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3376), 1, - sym_statement_block, STATE(6517), 1, sym_comment, - [201908] = 5, + ACTIONS(8559), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [202040] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10564), 1, - anon_sym_SEMI, - ACTIONS(10566), 1, - sym__automatic_semicolon, + ACTIONS(10567), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__for_header, STATE(6518), 1, sym_comment, - [201924] = 5, + [202056] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(10569), 1, anon_sym_LBRACE, - STATE(3412), 1, - sym_statement_block, + STATE(1066), 1, + sym_switch_body, STATE(6519), 1, sym_comment, - [201940] = 5, + [202072] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10568), 1, - anon_sym_LPAREN, - STATE(82), 1, - sym__for_header, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3367), 1, + sym_statement_block, STATE(6520), 1, sym_comment, - [201956] = 5, + [202088] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10570), 1, - anon_sym_LBRACE, STATE(6521), 1, sym_comment, - STATE(6850), 1, - sym_switch_body, - [201972] = 5, + ACTIONS(5672), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202102] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, - anon_sym_COLON, - ACTIONS(9632), 1, - anon_sym_GT, STATE(6522), 1, sym_comment, - [201988] = 4, + ACTIONS(3509), 2, + anon_sym_else, + anon_sym_while, + [202116] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6523), 1, sym_comment, - ACTIONS(10572), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202002] = 4, + ACTIONS(3507), 2, + anon_sym_else, + anon_sym_while, + [202130] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3395), 1, + sym_statement_block, STATE(6524), 1, sym_comment, - ACTIONS(10574), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [202016] = 4, + [202146] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(6525), 1, sym_comment, - ACTIONS(10576), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [202030] = 5, + ACTIONS(10571), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [202160] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5709), 1, - sym_class_body, STATE(6526), 1, sym_comment, - [202046] = 5, + ACTIONS(10573), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202174] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, + ACTIONS(10575), 1, + anon_sym_LBRACE, + STATE(864), 1, + sym_statement_block, STATE(6527), 1, sym_comment, - STATE(6686), 1, - sym_type_annotation, - [202062] = 5, + [202190] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3393), 1, + STATE(3409), 1, sym_statement_block, STATE(6528), 1, sym_comment, - [202078] = 5, + [202206] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3375), 1, - sym_statement_block, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(103), 1, + sym_parenthesized_expression, STATE(6529), 1, sym_comment, - [202094] = 5, + [202222] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_class_body, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(100), 1, + sym_parenthesized_expression, STATE(6530), 1, sym_comment, - [202110] = 5, + [202238] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(2399), 1, + STATE(3394), 1, sym_statement_block, STATE(6531), 1, sym_comment, - [202126] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202254] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10578), 1, - sym_identifier, - ACTIONS(10580), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3402), 1, + sym_statement_block, STATE(6532), 1, sym_comment, - [202142] = 4, + [202270] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10577), 1, + anon_sym_SEMI, + ACTIONS(10579), 1, + sym__automatic_semicolon, STATE(6533), 1, sym_comment, - ACTIONS(3426), 2, - anon_sym_else, - anon_sym_while, - [202156] = 4, + [202286] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6534), 1, sym_comment, - ACTIONS(10582), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202170] = 4, + ACTIONS(3505), 2, + anon_sym_else, + anon_sym_while, + [202300] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3389), 1, + sym_statement_block, STATE(6535), 1, sym_comment, - ACTIONS(10584), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202184] = 5, + [202316] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8797), 1, - anon_sym_DOT, - ACTIONS(10586), 1, - anon_sym_GT, STATE(6536), 1, sym_comment, - [202200] = 5, + ACTIONS(3503), 2, + anon_sym_else, + anon_sym_while, + [202330] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10588), 1, + ACTIONS(10134), 1, sym_identifier, - ACTIONS(10590), 1, + ACTIONS(10138), 1, sym_private_property_identifier, STATE(6537), 1, sym_comment, - [202216] = 4, + [202346] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10581), 1, + sym_identifier, + ACTIONS(10583), 1, + sym_private_property_identifier, STATE(6538), 1, sym_comment, - ACTIONS(3428), 2, - anon_sym_else, - anon_sym_while, - [202230] = 4, + [202362] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10585), 1, + anon_sym_LBRACE, + STATE(1566), 1, + sym_enum_body, STATE(6539), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_else, - anon_sym_while, - [202244] = 5, + [202378] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5527), 1, - sym__from_clause, STATE(6540), 1, sym_comment, - [202260] = 4, + ACTIONS(10587), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202392] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10419), 1, + anon_sym_LBRACE, + STATE(1559), 1, + sym_statement_block, STATE(6541), 1, sym_comment, - ACTIONS(3458), 2, - anon_sym_else, - anon_sym_while, - [202274] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202408] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10592), 1, - sym_identifier, - ACTIONS(10594), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6542), 1, sym_comment, - [202290] = 5, + ACTIONS(3501), 2, + anon_sym_else, + anon_sym_while, + [202422] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10596), 1, - anon_sym_COMMA, - ACTIONS(10598), 1, - anon_sym_from, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3004), 1, + sym_class_body, STATE(6543), 1, sym_comment, - [202306] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202438] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10186), 1, - sym_identifier, - ACTIONS(10190), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9996), 1, + anon_sym_LBRACE, + STATE(1142), 1, + sym_statement_block, STATE(6544), 1, sym_comment, - [202322] = 4, + [202454] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6545), 1, sym_comment, - ACTIONS(3460), 2, - anon_sym_else, - anon_sym_while, - [202336] = 5, + ACTIONS(10589), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202468] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10600), 1, - anon_sym_SEMI, - ACTIONS(10602), 1, - sym__automatic_semicolon, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4882), 1, + sym_class_body, STATE(6546), 1, sym_comment, - [202352] = 4, + [202484] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10591), 1, + anon_sym_LBRACE, + STATE(1488), 1, + sym_switch_body, STATE(6547), 1, sym_comment, - ACTIONS(3462), 2, - anon_sym_else, - anon_sym_while, - [202366] = 5, + [202500] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(4850), 1, anon_sym_LBRACE, - STATE(3019), 1, - sym_class_body, + STATE(2940), 1, + sym_statement_block, STATE(6548), 1, sym_comment, - [202382] = 5, + [202516] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10434), 1, + ACTIONS(5257), 1, anon_sym_LBRACE, - STATE(1095), 1, + STATE(2548), 1, sym_statement_block, STATE(6549), 1, sym_comment, - [202398] = 5, + [202532] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10604), 1, - anon_sym_LPAREN, - STATE(926), 1, - sym_parenthesized_expression, STATE(6550), 1, sym_comment, - [202414] = 4, + ACTIONS(3563), 2, + anon_sym_else, + anon_sym_while, + [202546] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(2553), 1, + sym_class_body, STATE(6551), 1, sym_comment, - ACTIONS(3464), 2, - anon_sym_else, - anon_sym_while, - [202428] = 4, + [202562] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(2926), 1, + sym_class_body, STATE(6552), 1, sym_comment, - ACTIONS(3466), 2, - anon_sym_else, - anon_sym_while, - [202442] = 5, + [202578] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10606), 1, - anon_sym_LBRACE, - STATE(1433), 1, - sym_enum_body, STATE(6553), 1, sym_comment, - [202458] = 5, + ACTIONS(6733), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202592] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10608), 1, - anon_sym_LBRACE, - STATE(1452), 1, - sym_switch_body, STATE(6554), 1, sym_comment, - [202474] = 5, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202606] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4419), 1, - sym_formal_parameters, + ACTIONS(9996), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_statement_block, STATE(6555), 1, sym_comment, - [202490] = 4, + [202622] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3388), 1, + sym_statement_block, STATE(6556), 1, sym_comment, - ACTIONS(9218), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202504] = 5, + [202638] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10568), 1, - anon_sym_LPAREN, - STATE(121), 1, - sym__for_header, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3384), 1, + sym_statement_block, STATE(6557), 1, sym_comment, - [202520] = 4, + [202654] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4887), 1, + sym_class_body, STATE(6558), 1, sym_comment, - ACTIONS(10610), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202534] = 4, + [202670] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7964), 1, + anon_sym_LBRACE, + STATE(5234), 1, + sym_statement_block, STATE(6559), 1, sym_comment, - ACTIONS(6743), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [202548] = 5, + [202686] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7618), 1, anon_sym_LBRACE, - STATE(3414), 1, - sym_statement_block, + STATE(4889), 1, + sym_class_body, STATE(6560), 1, sym_comment, - [202564] = 5, + [202702] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7233), 1, - anon_sym_LPAREN, - STATE(4216), 1, - sym_formal_parameters, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(3008), 1, + sym_statement_block, STATE(6561), 1, sym_comment, - [202580] = 5, + [202718] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10612), 1, - anon_sym_SEMI, - ACTIONS(10614), 1, - sym__automatic_semicolon, + ACTIONS(10387), 1, + anon_sym_LBRACE, + STATE(1329), 1, + sym_statement_block, STATE(6562), 1, sym_comment, - [202596] = 4, + [202734] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(5717), 1, + sym_class_body, STATE(6563), 1, sym_comment, - ACTIONS(10616), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202610] = 4, + [202750] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6564), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [202624] = 4, + ACTIONS(10593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202764] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6565), 1, sym_comment, - ACTIONS(5460), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202638] = 4, + ACTIONS(3563), 2, + anon_sym_else, + anon_sym_while, + [202778] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(3057), 1, + sym_statement_block, STATE(6566), 1, sym_comment, - ACTIONS(3486), 2, - anon_sym_else, - anon_sym_while, - [202652] = 4, + [202794] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6567), 1, sym_comment, - ACTIONS(10618), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [202666] = 5, + ACTIONS(3587), 2, + anon_sym_else, + anon_sym_while, + [202808] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_statement_block, STATE(6568), 1, sym_comment, - [202682] = 4, + ACTIONS(4025), 2, + sym_jsx_identifier, + sym_identifier, + [202822] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6569), 1, sym_comment, - ACTIONS(3486), 2, + ACTIONS(3567), 2, anon_sym_else, anon_sym_while, - [202696] = 4, + [202836] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6570), 1, sym_comment, - ACTIONS(10620), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202710] = 4, + ACTIONS(10595), 2, + anon_sym_COMMA, + anon_sym_GT, + [202850] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5257), 1, + anon_sym_LBRACE, + STATE(2469), 1, + sym_statement_block, STATE(6571), 1, sym_comment, - ACTIONS(10622), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202724] = 5, + [202866] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10624), 1, - anon_sym_SEMI, - ACTIONS(10626), 1, - sym__automatic_semicolon, STATE(6572), 1, sym_comment, - [202740] = 5, + ACTIONS(3473), 2, + anon_sym_else, + anon_sym_while, + [202880] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10628), 1, - anon_sym_SEMI, - ACTIONS(10630), 1, - sym__automatic_semicolon, + ACTIONS(8008), 1, + anon_sym_LBRACE, STATE(6573), 1, sym_comment, - [202756] = 5, + STATE(6593), 1, + sym_statement_block, + [202896] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, + ACTIONS(7728), 1, anon_sym_LBRACE, - STATE(3183), 1, - sym_statement_block, + STATE(397), 1, + sym_class_body, STATE(6574), 1, sym_comment, - [202772] = 5, + [202912] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10632), 1, - anon_sym_SEMI, - ACTIONS(10634), 1, - sym__automatic_semicolon, STATE(6575), 1, sym_comment, - [202788] = 5, + ACTIONS(6733), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202926] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7775), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(6552), 1, - sym_class_body, + STATE(6356), 1, + sym_statement_block, STATE(6576), 1, sym_comment, - [202804] = 5, + [202942] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10606), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_enum_body, STATE(6577), 1, sym_comment, - [202820] = 4, + ACTIONS(6729), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202956] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7596), 1, + anon_sym_LBRACE, + STATE(1515), 1, + sym_class_body, STATE(6578), 1, sym_comment, - ACTIONS(5782), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202834] = 5, + [202972] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10636), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1250), 1, + STATE(3382), 1, sym_statement_block, STATE(6579), 1, sym_comment, - [202850] = 4, + [202988] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(2554), 1, + sym_class_body, STATE(6580), 1, sym_comment, - ACTIONS(5784), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202864] = 4, + [203004] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4897), 1, + sym_class_body, STATE(6581), 1, sym_comment, - ACTIONS(10638), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202878] = 5, + [203020] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7597), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym_class_body, STATE(6582), 1, sym_comment, - [202894] = 5, + ACTIONS(10597), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203034] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8933), 1, anon_sym_LBRACE, - STATE(3363), 1, + STATE(388), 1, sym_statement_block, STATE(6583), 1, sym_comment, - [202910] = 4, + [203050] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6584), 1, sym_comment, - ACTIONS(3486), 2, - anon_sym_else, - anon_sym_while, - [202924] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3391), 1, - sym_statement_block, - STATE(6585), 1, - sym_comment, - [202940] = 5, + ACTIONS(5589), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203064] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10640), 1, + ACTIONS(10599), 1, sym_identifier, - ACTIONS(10642), 1, + ACTIONS(10601), 1, sym_private_property_identifier, + STATE(6585), 1, + sym_comment, + [203080] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6586), 1, sym_comment, - [202956] = 5, + ACTIONS(3569), 2, + anon_sym_else, + anon_sym_while, + [203094] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3388), 1, - sym_statement_block, STATE(6587), 1, sym_comment, - [202972] = 5, + ACTIONS(3571), 2, + anon_sym_else, + anon_sym_while, + [203108] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(4683), 1, - sym_statement_block, + ACTIONS(10603), 1, + sym_identifier, + ACTIONS(10605), 1, + sym_private_property_identifier, STATE(6588), 1, sym_comment, - [202988] = 5, + [203124] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10644), 1, + ACTIONS(10607), 1, sym_identifier, - ACTIONS(10646), 1, + ACTIONS(10609), 1, sym_private_property_identifier, STATE(6589), 1, sym_comment, - [203004] = 5, + [203140] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10528), 1, - anon_sym_LBRACE, - STATE(1347), 1, - sym_statement_block, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(10611), 1, + anon_sym_GT, STATE(6590), 1, sym_comment, - [203020] = 5, + [203156] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3380), 1, - sym_statement_block, + ACTIONS(10613), 1, + sym_identifier, + ACTIONS(10615), 1, + sym_private_property_identifier, STATE(6591), 1, sym_comment, - [203036] = 4, + [203172] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9639), 1, + anon_sym_COLON, + ACTIONS(10079), 1, + anon_sym_GT, STATE(6592), 1, sym_comment, - ACTIONS(6707), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203050] = 5, + [203188] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(76), 1, - sym_parenthesized_expression, STATE(6593), 1, sym_comment, - [203066] = 4, + ACTIONS(6779), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203202] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3380), 1, + sym_statement_block, STATE(6594), 1, sym_comment, - ACTIONS(3490), 2, - anon_sym_else, - anon_sym_while, - [203080] = 5, + [203218] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(6559), 1, + STATE(3371), 1, sym_statement_block, STATE(6595), 1, sym_comment, - [203096] = 4, + [203234] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6596), 1, sym_comment, - ACTIONS(3494), 2, - anon_sym_else, - anon_sym_while, - [203110] = 4, + ACTIONS(6775), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203248] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + STATE(2535), 1, + sym_arguments, STATE(6597), 1, sym_comment, - ACTIONS(10648), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203124] = 5, + [203264] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(2922), 1, - sym_class_body, - STATE(6598), 1, - sym_comment, - [203140] = 5, - ACTIONS(3), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10617), 1, + anon_sym_SEMI, + ACTIONS(10619), 1, + sym__automatic_semicolon, + STATE(6598), 1, + sym_comment, + [203280] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10650), 1, - sym_identifier, - ACTIONS(10652), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6599), 1, sym_comment, - [203156] = 4, + STATE(7223), 1, + sym_formal_parameters, + [203296] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4902), 1, + sym_class_body, STATE(6600), 1, sym_comment, - ACTIONS(5676), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203170] = 4, + [203312] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7964), 1, + anon_sym_LBRACE, + STATE(5240), 1, + sym_statement_block, STATE(6601), 1, sym_comment, - ACTIONS(5674), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203184] = 4, + [203328] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4903), 1, + sym_class_body, STATE(6602), 1, sym_comment, - ACTIONS(10654), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203198] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6603), 1, - sym_comment, - ACTIONS(10656), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203212] = 5, + [203344] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(7728), 1, anon_sym_LBRACE, - STATE(3022), 1, + STATE(371), 1, sym_class_body, - STATE(6604), 1, + STATE(6603), 1, sym_comment, - [203228] = 5, + [203360] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10658), 1, + ACTIONS(10621), 1, sym_identifier, - ACTIONS(10660), 1, + ACTIONS(10623), 1, sym_private_property_identifier, + STATE(6604), 1, + sym_comment, + [203376] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6605), 1, sym_comment, - [203244] = 4, + ACTIONS(3573), 2, + anon_sym_else, + anon_sym_while, + [203390] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10625), 1, + anon_sym_LBRACE, + STATE(4950), 1, + sym_enum_body, STATE(6606), 1, sym_comment, - ACTIONS(10662), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203258] = 4, + [203406] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8933), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_statement_block, STATE(6607), 1, sym_comment, - ACTIONS(3496), 2, - anon_sym_else, - anon_sym_while, - [203272] = 5, + [203422] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10568), 1, - anon_sym_LPAREN, - STATE(98), 1, - sym__for_header, STATE(6608), 1, sym_comment, - [203288] = 5, + ACTIONS(5651), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203436] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10664), 1, - anon_sym_LBRACE, - STATE(986), 1, - sym_switch_body, STATE(6609), 1, sym_comment, - [203304] = 4, + ACTIONS(5649), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203450] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6610), 1, sym_comment, - ACTIONS(3500), 2, + ACTIONS(3575), 2, anon_sym_else, anon_sym_while, - [203318] = 4, + [203464] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6611), 1, sym_comment, - ACTIONS(3502), 2, - anon_sym_else, - anon_sym_while, - [203332] = 5, + STATE(7234), 1, + sym_formal_parameters, + [203480] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(3147), 1, - sym_class_body, STATE(6612), 1, sym_comment, - [203348] = 5, + ACTIONS(10047), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [203494] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2413), 1, - sym_class_body, STATE(6613), 1, sym_comment, - [203364] = 5, + ACTIONS(10627), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [203508] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5683), 1, - sym_class_body, STATE(6614), 1, sym_comment, - [203380] = 5, + ACTIONS(10629), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203522] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - STATE(5677), 1, - sym_statement_block, STATE(6615), 1, sym_comment, - [203396] = 5, + ACTIONS(10631), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203536] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5672), 1, - sym_class_body, STATE(6616), 1, sym_comment, - [203412] = 4, + ACTIONS(10633), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [203550] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6617), 1, sym_comment, - ACTIONS(3504), 2, - anon_sym_else, - anon_sym_while, - [203426] = 5, + ACTIONS(5786), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203564] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(3027), 1, - sym_statement_block, STATE(6618), 1, sym_comment, - [203442] = 5, + ACTIONS(3527), 2, + anon_sym_else, + anon_sym_while, + [203578] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(3305), 1, - sym_class_body, STATE(6619), 1, sym_comment, - [203458] = 5, + ACTIONS(3523), 2, + anon_sym_else, + anon_sym_while, + [203592] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3372), 1, - sym_statement_block, + ACTIONS(10635), 1, + sym_identifier, + STATE(6246), 1, + sym_nested_identifier, STATE(6620), 1, sym_comment, - [203474] = 5, + [203608] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(3281), 1, - sym_class_body, + ACTIONS(7287), 1, + anon_sym_LPAREN, + STATE(4182), 1, + sym_formal_parameters, STATE(6621), 1, sym_comment, - [203490] = 4, + [203624] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6622), 1, sym_comment, - ACTIONS(10666), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [203504] = 5, + ACTIONS(3577), 2, + anon_sym_else, + anon_sym_while, + [203638] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3371), 1, - sym_statement_block, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6623), 1, sym_comment, - [203520] = 5, + STATE(7252), 1, + sym_formal_parameters, + [203654] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2417), 1, - sym_class_body, STATE(6624), 1, sym_comment, - [203536] = 4, + ACTIONS(3579), 2, + anon_sym_else, + anon_sym_while, + [203668] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + STATE(5540), 1, + sym_arguments, STATE(6625), 1, sym_comment, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - [203550] = 5, + [203684] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4346), 1, - sym_formal_parameters, + ACTIONS(7728), 1, + anon_sym_LBRACE, + STATE(379), 1, + sym_class_body, STATE(6626), 1, sym_comment, - [203566] = 4, + [203700] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5415), 1, + sym__from_clause, STATE(6627), 1, sym_comment, - ACTIONS(3504), 2, - anon_sym_else, - anon_sym_while, - [203580] = 5, + [203716] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10668), 1, - anon_sym_SEMI, - ACTIONS(10670), 1, - sym__automatic_semicolon, STATE(6628), 1, sym_comment, - [203596] = 4, + ACTIONS(3579), 2, + anon_sym_else, + anon_sym_while, + [203730] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6629), 1, sym_comment, - ACTIONS(5658), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203610] = 4, + ACTIONS(3579), 2, + anon_sym_else, + anon_sym_while, + [203744] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6630), 1, sym_comment, - ACTIONS(3508), 2, + ACTIONS(2396), 2, anon_sym_else, anon_sym_while, - [203624] = 4, + [203758] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6631), 1, sym_comment, - ACTIONS(3512), 2, + ACTIONS(3581), 2, anon_sym_else, anon_sym_while, - [203638] = 5, + [203772] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_LBRACE, - STATE(2419), 1, - sym_statement_block, STATE(6632), 1, sym_comment, - [203654] = 4, + ACTIONS(3499), 2, + anon_sym_else, + anon_sym_while, + [203786] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4402), 1, + sym_formal_parameters, STATE(6633), 1, sym_comment, - ACTIONS(3514), 2, - anon_sym_else, - anon_sym_while, - [203668] = 4, + [203802] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6634), 1, sym_comment, - ACTIONS(2065), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203682] = 5, + ACTIONS(2396), 2, + anon_sym_else, + anon_sym_while, + [203816] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3390), 1, - sym_statement_block, STATE(6635), 1, sym_comment, - [203698] = 4, + ACTIONS(3475), 2, + anon_sym_else, + anon_sym_while, + [203830] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5257), 1, + anon_sym_LBRACE, + STATE(2487), 1, + sym_statement_block, STATE(6636), 1, sym_comment, - ACTIONS(3516), 2, - anon_sym_else, - anon_sym_while, - [203712] = 5, + [203846] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_LBRACE, - STATE(2420), 1, - sym_statement_block, STATE(6637), 1, sym_comment, - [203728] = 4, + ACTIONS(3471), 2, + anon_sym_else, + anon_sym_while, + [203860] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10637), 1, + anon_sym_SEMI, + ACTIONS(10639), 1, + sym__automatic_semicolon, STATE(6638), 1, sym_comment, - ACTIONS(10116), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203742] = 5, + [203876] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10672), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_statement_block, STATE(6639), 1, sym_comment, - [203758] = 4, + ACTIONS(10641), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203890] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6640), 1, sym_comment, - ACTIONS(10674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203772] = 5, + ACTIONS(10643), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203904] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(2421), 1, - sym_class_body, + STATE(3363), 1, + sym_statement_block, STATE(6641), 1, sym_comment, - [203788] = 4, + [203920] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7618), 1, + anon_sym_LBRACE, + STATE(4927), 1, + sym_class_body, STATE(6642), 1, sym_comment, - ACTIONS(10676), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203802] = 4, + [203936] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6643), 1, sym_comment, - ACTIONS(9587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203816] = 5, + ACTIONS(10645), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203950] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10678), 1, + ACTIONS(10647), 1, anon_sym_SEMI, - ACTIONS(10680), 1, + ACTIONS(10649), 1, sym__automatic_semicolon, STATE(6644), 1, sym_comment, - [203832] = 5, + [203966] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10682), 1, - anon_sym_SEMI, - ACTIONS(10684), 1, - sym__automatic_semicolon, STATE(6645), 1, sym_comment, - [203848] = 4, + ACTIONS(5559), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203980] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6646), 1, sym_comment, - ACTIONS(3516), 2, + ACTIONS(3469), 2, anon_sym_else, anon_sym_while, - [203862] = 5, + [203994] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(2926), 1, - sym_class_body, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(10651), 1, + anon_sym_GT, STATE(6647), 1, sym_comment, - [203878] = 5, + [204010] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2925), 1, - sym_statement_block, STATE(6648), 1, sym_comment, - [203894] = 5, + ACTIONS(3465), 2, + anon_sym_else, + anon_sym_while, + [204024] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2923), 1, - sym_statement_block, + ACTIONS(9639), 1, + anon_sym_COLON, + ACTIONS(10020), 1, + anon_sym_GT, STATE(6649), 1, sym_comment, - [203910] = 5, + [204040] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10686), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1567), 1, - sym_enum_body, + STATE(3370), 1, + sym_statement_block, STATE(6650), 1, sym_comment, - [203926] = 5, + [204056] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(2936), 1, - sym_class_body, + STATE(3411), 1, + sym_statement_block, STATE(6651), 1, sym_comment, - [203942] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204072] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10688), 1, - sym_identifier, - ACTIONS(10690), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6652), 1, sym_comment, - [203958] = 4, + ACTIONS(3463), 2, + anon_sym_else, + anon_sym_while, + [204086] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3400), 1, + sym_statement_block, STATE(6653), 1, sym_comment, - ACTIONS(6735), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203972] = 5, + [204102] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, + ACTIONS(10653), 1, anon_sym_LPAREN, - STATE(84), 1, - sym_parenthesized_expression, + STATE(1951), 1, + sym_arguments, STATE(6654), 1, sym_comment, - [203988] = 5, + [204118] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10398), 1, + ACTIONS(10567), 1, anon_sym_LPAREN, - STATE(6521), 1, - sym_parenthesized_expression, + STATE(73), 1, + sym__for_header, STATE(6655), 1, sym_comment, - [204004] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204134] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9656), 1, - sym_identifier, - ACTIONS(9660), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3374), 1, + sym_statement_block, STATE(6656), 1, sym_comment, - [204020] = 5, + [204150] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(6406), 1, - sym_statement_block, STATE(6657), 1, sym_comment, - [204036] = 5, + ACTIONS(3583), 2, + anon_sym_else, + anon_sym_while, + [204164] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3386), 1, - sym_statement_block, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(106), 1, + sym_parenthesized_expression, STATE(6658), 1, sym_comment, - [204052] = 4, + [204180] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10655), 1, + anon_sym_LPAREN, STATE(6659), 1, sym_comment, - ACTIONS(6762), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204066] = 4, + STATE(6981), 1, + sym_parenthesized_expression, + [204196] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10657), 1, + sym_identifier, + ACTIONS(10659), 1, + anon_sym_STAR, STATE(6660), 1, sym_comment, - ACTIONS(3518), 2, - anon_sym_else, - anon_sym_while, - [204080] = 4, + [204212] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3372), 1, + sym_statement_block, STATE(6661), 1, sym_comment, - ACTIONS(6758), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204094] = 5, + [204228] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(410), 1, - sym_class_body, STATE(6662), 1, sym_comment, - [204110] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10661), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204242] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym_parenthesized_expression, STATE(6663), 1, sym_comment, - ACTIONS(10692), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [204124] = 4, + [204258] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6664), 1, sym_comment, - ACTIONS(3528), 2, + ACTIONS(3585), 2, anon_sym_else, anon_sym_while, - [204138] = 4, + [204272] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7728), 1, + anon_sym_LBRACE, + STATE(369), 1, + sym_class_body, STATE(6665), 1, sym_comment, - ACTIONS(3532), 2, - anon_sym_else, - anon_sym_while, - [204152] = 5, + [204288] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(6413), 1, - sym_statement_block, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5424), 1, + sym__from_clause, STATE(6666), 1, sym_comment, - [204168] = 4, + [204304] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10555), 1, + anon_sym_LBRACE, + STATE(1239), 1, + sym_statement_block, STATE(6667), 1, sym_comment, - ACTIONS(3532), 2, - anon_sym_else, - anon_sym_while, - [204182] = 4, + [204320] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10663), 1, + anon_sym_LPAREN, + STATE(1108), 1, + sym_parenthesized_expression, STATE(6668), 1, sym_comment, - ACTIONS(3534), 2, - anon_sym_else, - anon_sym_while, - [204196] = 5, + [204336] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3361), 1, - sym_statement_block, + ACTIONS(10665), 1, + anon_sym_LPAREN, + STATE(1335), 1, + sym_parenthesized_expression, STATE(6669), 1, sym_comment, - [204212] = 5, + [204352] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(6429), 1, - sym__from_clause, + ACTIONS(10585), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_enum_body, STATE(6670), 1, sym_comment, - [204228] = 4, + [204368] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9724), 1, + sym_identifier, + ACTIONS(9728), 1, + sym_private_property_identifier, STATE(6671), 1, sym_comment, - ACTIONS(10694), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204242] = 5, + [204384] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10696), 1, + ACTIONS(10667), 1, anon_sym_LBRACE, - STATE(876), 1, + STATE(870), 1, sym_statement_block, STATE(6672), 1, sym_comment, - [204258] = 5, + [204400] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7653), 1, - anon_sym_LBRACE, - STATE(1385), 1, - sym_class_body, STATE(6673), 1, sym_comment, - [204274] = 5, + ACTIONS(9365), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204414] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8799), 1, - anon_sym_LBRACE, - STATE(1386), 1, - sym_statement_block, + ACTIONS(9168), 1, + anon_sym_from, STATE(6674), 1, sym_comment, - [204290] = 5, + STATE(6784), 1, + sym__from_clause, + [204430] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(97), 1, - sym_parenthesized_expression, STATE(6675), 1, sym_comment, - [204306] = 4, + ACTIONS(3461), 2, + anon_sym_else, + anon_sym_while, + [204444] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6676), 1, sym_comment, - ACTIONS(3546), 2, - anon_sym_else, - anon_sym_while, - [204320] = 4, + ACTIONS(10669), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204458] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10671), 1, + anon_sym_SEMI, + ACTIONS(10673), 1, + sym__automatic_semicolon, STATE(6677), 1, sym_comment, - ACTIONS(8589), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [204334] = 5, + [204474] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7653), 1, - anon_sym_LBRACE, - STATE(1388), 1, - sym_class_body, + ACTIONS(10675), 1, + anon_sym_SEMI, + ACTIONS(10677), 1, + sym__automatic_semicolon, STATE(6678), 1, sym_comment, - [204350] = 5, + [204490] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(95), 1, - sym_parenthesized_expression, + ACTIONS(10679), 1, + anon_sym_SEMI, + ACTIONS(10681), 1, + sym__automatic_semicolon, STATE(6679), 1, sym_comment, - [204366] = 4, + [204506] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3401), 1, + sym_statement_block, STATE(6680), 1, sym_comment, - ACTIONS(10698), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204380] = 4, + [204522] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, STATE(6681), 1, sym_comment, - ACTIONS(3548), 2, - anon_sym_else, - anon_sym_while, - [204394] = 5, + STATE(6738), 1, + sym_statement_block, + [204538] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5498), 1, - sym__from_clause, + ACTIONS(10625), 1, + anon_sym_LBRACE, + STATE(4963), 1, + sym_enum_body, STATE(6682), 1, sym_comment, - [204410] = 4, + [204554] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6683), 1, sym_comment, - ACTIONS(10093), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204424] = 4, + ACTIONS(3435), 2, + anon_sym_else, + anon_sym_while, + [204568] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6684), 1, sym_comment, - ACTIONS(3552), 2, - anon_sym_else, - anon_sym_while, - [204438] = 4, + ACTIONS(6714), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204582] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10683), 1, + anon_sym_in, + ACTIONS(10685), 1, + anon_sym_COLON, STATE(6685), 1, sym_comment, - ACTIONS(3554), 2, - anon_sym_else, - anon_sym_while, - [204452] = 4, + [204598] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5500), 1, + sym__from_clause, STATE(6686), 1, sym_comment, - ACTIONS(10700), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [204466] = 4, + [204614] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(6493), 1, + sym__from_clause, STATE(6687), 1, sym_comment, - ACTIONS(3566), 2, - anon_sym_else, - anon_sym_while, - [204480] = 5, + [204630] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10702), 1, - anon_sym_LPAREN, - STATE(974), 1, - sym_parenthesized_expression, STATE(6688), 1, sym_comment, - [204496] = 5, + ACTIONS(3589), 2, + anon_sym_else, + anon_sym_while, + [204644] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10704), 1, - anon_sym_SEMI, - ACTIONS(10706), 1, - sym__automatic_semicolon, STATE(6689), 1, sym_comment, - [204512] = 5, + ACTIONS(3425), 2, + anon_sym_else, + anon_sym_while, + [204658] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3400), 1, - sym_statement_block, STATE(6690), 1, sym_comment, - [204528] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3423), 2, + anon_sym_else, + anon_sym_while, + [204672] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10708), 1, - sym_identifier, - ACTIONS(10710), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7964), 1, + anon_sym_LBRACE, + STATE(4965), 1, + sym_statement_block, STATE(6691), 1, sym_comment, - [204544] = 5, + [204688] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(455), 1, - sym_class_body, STATE(6692), 1, sym_comment, - [204560] = 4, + ACTIONS(3421), 2, + anon_sym_else, + anon_sym_while, + [204702] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6693), 1, sym_comment, - ACTIONS(6762), 2, + ACTIONS(3405), 2, + anon_sym_else, + anon_sym_while, + [204716] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + STATE(6694), 1, + sym_comment, + ACTIONS(6798), 2, anon_sym_COMMA, anon_sym_RBRACE, - [204574] = 5, + [204730] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10712), 1, - sym_identifier, - ACTIONS(10714), 1, - anon_sym_STAR, - STATE(6694), 1, + STATE(6695), 1, sym_comment, - [204590] = 4, + ACTIONS(10687), 2, + sym_jsx_identifier, + sym_identifier, + [204744] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(6695), 1, + ACTIONS(5257), 1, + anon_sym_LBRACE, + STATE(2496), 1, + sym_statement_block, + STATE(6696), 1, sym_comment, - ACTIONS(3566), 2, - anon_sym_else, - anon_sym_while, - [204604] = 4, + [204760] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(6696), 1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(6694), 1, + sym_statement_block, + STATE(6697), 1, sym_comment, - ACTIONS(3586), 2, - anon_sym_else, - anon_sym_while, - [204618] = 4, + [204776] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(6697), 1, + ACTIONS(10387), 1, + anon_sym_LBRACE, + STATE(1392), 1, + sym_statement_block, + STATE(6698), 1, sym_comment, - ACTIONS(3584), 2, - anon_sym_else, - anon_sym_while, - [204632] = 5, + [204792] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10716), 1, + ACTIONS(10689), 1, sym_identifier, - ACTIONS(10718), 1, + ACTIONS(10691), 1, sym_private_property_identifier, - STATE(6698), 1, - sym_comment, - [204648] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(6699), 1, sym_comment, - ACTIONS(3582), 2, - anon_sym_else, - anon_sym_while, - [204662] = 5, + [204808] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, - STATE(5144), 1, + STATE(4849), 1, sym_formal_parameters, STATE(6700), 1, sym_comment, - [204678] = 4, + [204824] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(3292), 1, + sym_class_body, STATE(6701), 1, sym_comment, - ACTIONS(3566), 2, - anon_sym_else, - anon_sym_while, - [204692] = 4, + [204840] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8889), 1, + anon_sym_in, + ACTIONS(8891), 1, + anon_sym_of, STATE(6702), 1, sym_comment, - ACTIONS(2225), 2, - anon_sym_else, - anon_sym_while, - [204706] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204856] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10720), 1, - sym_identifier, - ACTIONS(10722), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6703), 1, sym_comment, - [204722] = 4, + ACTIONS(3547), 2, + anon_sym_else, + anon_sym_while, + [204870] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6704), 1, sym_comment, - ACTIONS(3580), 2, - anon_sym_else, - anon_sym_while, - [204736] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5524), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204884] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10724), 1, - sym_identifier, - ACTIONS(10726), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6705), 1, sym_comment, - [204752] = 4, + ACTIONS(5583), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204898] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(5380), 1, + anon_sym_LPAREN, + STATE(3010), 1, + sym_arguments, STATE(6706), 1, sym_comment, - ACTIONS(5701), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204766] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204914] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10728), 1, - sym_identifier, - ACTIONS(10730), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6707), 1, sym_comment, - [204782] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10693), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204928] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10732), 1, - sym_identifier, - ACTIONS(10734), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6708), 1, sym_comment, - [204798] = 4, + ACTIONS(10695), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204942] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3053), 1, + sym_class_body, STATE(6709), 1, sym_comment, - ACTIONS(3578), 2, - anon_sym_else, - anon_sym_while, - [204812] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204958] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10738), 1, - anon_sym_STAR, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(3089), 1, + sym_statement_block, STATE(6710), 1, sym_comment, - [204828] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204974] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10740), 1, - sym_identifier, - ACTIONS(10742), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(6575), 1, + sym_statement_block, STATE(6711), 1, sym_comment, - [204844] = 5, + [204990] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9922), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(1082), 1, - sym_statement_block, + STATE(2485), 1, + sym_class_body, STATE(6712), 1, sym_comment, - [204860] = 5, + [205006] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(4964), 1, - sym_class_body, STATE(6713), 1, sym_comment, - [204876] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(6745), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205020] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10744), 1, - sym_identifier, - ACTIONS(10746), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(6577), 1, + sym_statement_block, STATE(6714), 1, sym_comment, - [204892] = 5, + [205036] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10748), 1, - anon_sym_SEMI, - ACTIONS(10750), 1, - sym__automatic_semicolon, STATE(6715), 1, sym_comment, - [204908] = 5, + ACTIONS(6759), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205050] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(7784), 1, anon_sym_LBRACE, - STATE(3152), 1, + STATE(1355), 1, sym_class_body, STATE(6716), 1, sym_comment, - [204924] = 5, + [205066] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10752), 1, - anon_sym_SEMI, - ACTIONS(10754), 1, - sym__automatic_semicolon, + ACTIONS(8824), 1, + anon_sym_LBRACE, + STATE(1353), 1, + sym_statement_block, STATE(6717), 1, sym_comment, - [204940] = 5, + [205082] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7775), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(6408), 1, - sym_class_body, + STATE(6424), 1, + sym_statement_block, STATE(6718), 1, sym_comment, - [204956] = 4, + [205098] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + STATE(6519), 1, + sym_parenthesized_expression, STATE(6719), 1, sym_comment, - ACTIONS(3576), 2, - anon_sym_else, - anon_sym_while, - [204970] = 5, + [205114] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8737), 1, - anon_sym_LBRACE, - STATE(416), 1, - sym_statement_block, + ACTIONS(9639), 1, + anon_sym_COLON, + ACTIONS(9930), 1, + anon_sym_GT, STATE(6720), 1, sym_comment, - [204986] = 5, + [205130] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(79), 1, - sym_parenthesized_expression, + ACTIONS(10697), 1, + sym_identifier, + ACTIONS(10699), 1, + anon_sym_STAR, STATE(6721), 1, sym_comment, - [205002] = 5, + [205146] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3411), 1, - sym_statement_block, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(10701), 1, + anon_sym_GT, STATE(6722), 1, sym_comment, - [205018] = 4, + [205162] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6723), 1, sym_comment, - ACTIONS(3574), 2, - anon_sym_else, - anon_sym_while, - [205032] = 4, + ACTIONS(10703), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205176] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7596), 1, + anon_sym_LBRACE, + STATE(1506), 1, + sym_class_body, STATE(6724), 1, sym_comment, - ACTIONS(3572), 2, - anon_sym_else, - anon_sym_while, - [205046] = 5, + [205192] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5460), 1, - sym__from_clause, + ACTIONS(7840), 1, + anon_sym_LBRACE, + STATE(465), 1, + sym_class_body, STATE(6725), 1, sym_comment, - [205062] = 4, + [205208] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6726), 1, sym_comment, - ACTIONS(3564), 2, - anon_sym_else, - anon_sym_while, - [205076] = 5, + ACTIONS(8593), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [205222] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_LBRACE, - STATE(1469), 1, - sym_class_body, STATE(6727), 1, sym_comment, - [205092] = 4, + ACTIONS(5770), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205236] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6728), 1, sym_comment, - ACTIONS(3560), 2, + ACTIONS(3493), 2, anon_sym_else, anon_sym_while, - [205106] = 4, + [205250] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5471), 1, + sym__from_clause, STATE(6729), 1, sym_comment, - ACTIONS(9701), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205120] = 4, + [205266] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4053), 1, + sym_formal_parameters, STATE(6730), 1, sym_comment, - ACTIONS(3558), 2, - anon_sym_else, - anon_sym_while, - [205134] = 4, + [205282] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6731), 1, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3379), 2, anon_sym_else, anon_sym_while, - [205148] = 5, + [205296] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(10705), 1, + anon_sym_COMMA, + ACTIONS(10707), 1, + anon_sym_from, STATE(6732), 1, sym_comment, - STATE(7303), 1, - sym_formal_parameters, - [205164] = 4, + [205312] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(3026), 1, + sym_class_body, STATE(6733), 1, sym_comment, - ACTIONS(3556), 2, - anon_sym_else, - anon_sym_while, - [205178] = 4, + [205328] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6734), 1, sym_comment, - ACTIONS(3550), 2, + ACTIONS(2210), 2, anon_sym_else, anon_sym_while, - [205192] = 5, + [205342] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9922), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_statement_block, STATE(6735), 1, sym_comment, - [205208] = 5, + ACTIONS(8595), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [205356] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5030), 1, - sym_class_body, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6736), 1, sym_comment, - [205224] = 5, + STATE(7179), 1, + sym_formal_parameters, + [205372] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - STATE(5181), 1, - sym_statement_block, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5605), 1, + sym__from_clause, STATE(6737), 1, sym_comment, - [205240] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205388] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10756), 1, - sym_identifier, - ACTIONS(10758), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6738), 1, sym_comment, - [205256] = 4, + ACTIONS(6767), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205402] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6739), 1, sym_comment, - ACTIONS(10043), 2, - anon_sym_COMMA, - anon_sym_GT, - [205270] = 5, + ACTIONS(5593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205416] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3382), 1, - sym_statement_block, STATE(6740), 1, sym_comment, - [205286] = 5, + ACTIONS(10709), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205430] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5038), 1, - sym_class_body, STATE(6741), 1, sym_comment, - [205302] = 5, + ACTIONS(5591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205444] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7725), 1, - anon_sym_LBRACE, - STATE(411), 1, - sym_class_body, STATE(6742), 1, sym_comment, - [205318] = 5, + ACTIONS(3381), 2, + anon_sym_else, + anon_sym_while, + [205458] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(3104), 1, - sym_statement_block, STATE(6743), 1, sym_comment, - [205334] = 5, + STATE(6935), 1, + sym_statement_block, + [205474] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7775), 1, - anon_sym_LBRACE, - STATE(6468), 1, - sym_class_body, STATE(6744), 1, sym_comment, - [205350] = 4, + ACTIONS(10711), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205488] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10713), 1, + anon_sym_LPAREN, + STATE(5543), 1, + sym_parenthesized_expression, STATE(6745), 1, sym_comment, - ACTIONS(10760), 2, - anon_sym_COMMA, - anon_sym_GT, - [205364] = 5, + [205504] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - STATE(5334), 1, - sym_formal_parameters, + ACTIONS(7596), 1, + anon_sym_LBRACE, + STATE(1536), 1, + sym_class_body, STATE(6746), 1, sym_comment, - [205380] = 4, + [205520] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6747), 1, sym_comment, - ACTIONS(10762), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205394] = 4, + ACTIONS(10715), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205534] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10567), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym__for_header, STATE(6748), 1, sym_comment, - ACTIONS(3540), 2, - anon_sym_else, - anon_sym_while, - [205408] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205550] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10764), 1, - sym_identifier, - STATE(6209), 1, - sym_nested_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(1256), 1, + sym_switch_body, STATE(6749), 1, sym_comment, - [205424] = 5, + [205566] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5090), 1, - sym_class_body, + ACTIONS(7182), 1, + anon_sym_LPAREN, + STATE(5337), 1, + sym_formal_parameters, STATE(6750), 1, sym_comment, - [205440] = 4, + [205582] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6751), 1, sym_comment, - ACTIONS(6727), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205454] = 5, + ACTIONS(8597), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [205596] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, + STATE(3180), 1, + sym_class_body, STATE(6752), 1, sym_comment, - STATE(6975), 1, - sym_statement_block, - [205470] = 4, + [205612] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10719), 1, + sym_identifier, + STATE(6102), 1, + sym_nested_identifier, STATE(6753), 1, sym_comment, - ACTIONS(6723), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205484] = 5, + [205628] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9086), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_statement_block, STATE(6754), 1, sym_comment, - [205500] = 4, + ACTIONS(3383), 2, + anon_sym_else, + anon_sym_while, + [205642] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6755), 1, sym_comment, - ACTIONS(5770), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205514] = 4, + ACTIONS(3439), 2, + anon_sym_else, + anon_sym_while, + [205656] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10721), 1, + anon_sym_LBRACE, STATE(6756), 1, sym_comment, - ACTIONS(3540), 2, - anon_sym_else, - anon_sym_while, - [205528] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6899), 1, + sym_enum_body, + [205672] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10766), 1, - sym_identifier, - ACTIONS(10768), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6757), 1, sym_comment, - [205544] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9351), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205686] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10770), 1, - sym_identifier, - ACTIONS(10772), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6758), 1, sym_comment, - [205560] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205700] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10774), 1, - sym_identifier, - ACTIONS(10776), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6759), 1, sym_comment, - [205576] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10725), 2, + anon_sym_COMMA, + anon_sym_GT, + [205714] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10778), 1, - sym_identifier, - ACTIONS(10780), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6760), 1, sym_comment, - [205592] = 5, + ACTIONS(3387), 2, + anon_sym_else, + anon_sym_while, + [205728] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_LBRACE, - STATE(1516), 1, - sym_class_body, STATE(6761), 1, sym_comment, - [205608] = 5, + ACTIONS(3389), 2, + anon_sym_else, + anon_sym_while, + [205742] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(8807), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_statement_block, STATE(6762), 1, sym_comment, - STATE(7176), 1, - sym_formal_parameters, - [205624] = 4, + [205758] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6763), 1, sym_comment, - ACTIONS(3540), 2, + ACTIONS(3391), 2, anon_sym_else, anon_sym_while, - [205638] = 4, + [205772] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3399), 1, + sym_statement_block, STATE(6764), 1, sym_comment, - ACTIONS(6703), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205652] = 4, + [205788] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3408), 1, + sym_statement_block, STATE(6765), 1, sym_comment, - ACTIONS(10782), 2, - anon_sym_COMMA, - anon_sym_GT, - [205666] = 5, + [205804] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_LBRACE, - STATE(437), 1, - sym_statement_block, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6766), 1, sym_comment, - [205682] = 5, + STATE(7207), 1, + sym_formal_parameters, + [205820] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10784), 1, - anon_sym_SEMI, - ACTIONS(10786), 1, - sym__automatic_semicolon, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3393), 1, + sym_statement_block, STATE(6767), 1, sym_comment, - [205698] = 5, + [205836] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - STATE(5384), 1, - sym_formal_parameters, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3368), 1, + sym_statement_block, STATE(6768), 1, sym_comment, - [205714] = 5, + [205852] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3395), 1, - sym_statement_block, STATE(6769), 1, sym_comment, - [205730] = 5, + ACTIONS(5526), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205866] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5110), 1, - sym_class_body, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6770), 1, sym_comment, - [205746] = 5, + STATE(7136), 1, + sym_formal_parameters, + [205882] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - STATE(5186), 1, - sym_statement_block, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6771), 1, sym_comment, - [205762] = 5, + ACTIONS(10727), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205896] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(3092), 1, - sym_class_body, + ACTIONS(7182), 1, + anon_sym_LPAREN, + STATE(5387), 1, + sym_formal_parameters, STATE(6772), 1, sym_comment, - [205778] = 5, + [205912] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, + ACTIONS(10729), 1, anon_sym_LBRACE, - STATE(5111), 1, - sym_class_body, + STATE(876), 1, + sym_statement_block, STATE(6773), 1, sym_comment, - [205794] = 5, + [205928] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2942), 1, - sym_statement_block, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(112), 1, + sym_parenthesized_expression, STATE(6774), 1, sym_comment, - [205810] = 5, + [205944] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(6592), 1, - sym_statement_block, + ACTIONS(10731), 1, + anon_sym_SEMI, + ACTIONS(10733), 1, + sym__automatic_semicolon, STATE(6775), 1, sym_comment, - [205826] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205960] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10788), 1, - sym_identifier, - STATE(6305), 1, - sym_nested_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6776), 1, sym_comment, - [205842] = 5, + ACTIONS(10735), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205974] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, - anon_sym_COLON, - ACTIONS(9950), 1, - anon_sym_GT, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(115), 1, + sym_parenthesized_expression, STATE(6777), 1, sym_comment, - [205858] = 5, + [205990] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, STATE(6778), 1, sym_comment, - STATE(7114), 1, - sym_formal_parameters, - [205874] = 4, + ACTIONS(3393), 2, + anon_sym_else, + anon_sym_while, + [206004] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10737), 1, + anon_sym_SEMI, + ACTIONS(10739), 1, + sym__automatic_semicolon, STATE(6779), 1, sym_comment, - ACTIONS(3540), 2, - anon_sym_else, - anon_sym_while, - [205888] = 5, + [206020] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7725), 1, - anon_sym_LBRACE, - STATE(383), 1, - sym_class_body, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6780), 1, sym_comment, - [205904] = 4, + STATE(7320), 1, + sym_formal_parameters, + [206036] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10741), 1, + anon_sym_LBRACE, + STATE(1162), 1, + sym_switch_body, STATE(6781), 1, sym_comment, - ACTIONS(2185), 2, - anon_sym_else, - anon_sym_while, - [205918] = 5, + [206052] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7601), 1, - anon_sym_LBRACE, - STATE(1300), 1, - sym_class_body, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6782), 1, sym_comment, - [205934] = 4, + STATE(7268), 1, + sym_formal_parameters, + [206068] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6783), 1, sym_comment, - ACTIONS(6715), 2, + ACTIONS(10743), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [205948] = 4, + anon_sym_RBRACK, + [206082] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10745), 1, + anon_sym_SEMI, + ACTIONS(10747), 1, + sym__automatic_semicolon, STATE(6784), 1, sym_comment, - ACTIONS(10790), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205962] = 4, + [206098] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6785), 1, sym_comment, - ACTIONS(3544), 2, - anon_sym_else, - anon_sym_while, - [205976] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10749), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [206112] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10792), 1, - sym_identifier, - ACTIONS(10794), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10567), 1, + anon_sym_LPAREN, + STATE(116), 1, + sym__for_header, STATE(6786), 1, sym_comment, - [205992] = 5, + [206128] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - STATE(5659), 1, - sym_statement_block, + ACTIONS(4244), 1, + anon_sym_COLON, + STATE(6613), 1, + sym_type_annotation, STATE(6787), 1, sym_comment, - [206008] = 5, + [206144] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, STATE(6788), 1, sym_comment, - STATE(7333), 1, - sym_formal_parameters, - [206024] = 4, + ACTIONS(3395), 2, + anon_sym_else, + anon_sym_while, + [206158] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6789), 1, sym_comment, - ACTIONS(3542), 2, - anon_sym_else, - anon_sym_while, - [206038] = 5, + ACTIONS(6775), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206172] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(6661), 1, - sym_statement_block, + ACTIONS(10751), 1, + sym_identifier, + ACTIONS(10753), 1, + sym_private_property_identifier, STATE(6790), 1, sym_comment, - [206054] = 5, + [206188] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5658), 1, - sym_class_body, STATE(6791), 1, sym_comment, - [206070] = 5, + ACTIONS(10755), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206202] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3369), 1, - sym_statement_block, + ACTIONS(10757), 1, + sym_identifier, + ACTIONS(10759), 1, + sym_private_property_identifier, STATE(6792), 1, sym_comment, - [206086] = 4, + [206218] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6793), 1, sym_comment, - ACTIONS(8695), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [206100] = 5, + ACTIONS(10761), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206232] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3368), 1, - sym_statement_block, + ACTIONS(10763), 1, + sym_identifier, + ACTIONS(10765), 1, + sym_private_property_identifier, STATE(6794), 1, sym_comment, - [206116] = 5, + [206248] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4230), 1, - anon_sym_COLON, - STATE(6525), 1, - sym_type_annotation, STATE(6795), 1, sym_comment, - [206132] = 4, + ACTIONS(5725), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206262] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10767), 1, + sym_identifier, + ACTIONS(10769), 1, + anon_sym_STAR, STATE(6796), 1, sym_comment, - ACTIONS(2195), 2, - anon_sym_else, - anon_sym_while, - [206146] = 5, + [206278] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_LBRACE, - STATE(2423), 1, - sym_statement_block, + ACTIONS(9822), 1, + sym_identifier, + ACTIONS(9826), 1, + sym_private_property_identifier, STATE(6797), 1, sym_comment, - [206162] = 5, + [206294] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, STATE(6798), 1, sym_comment, - STATE(6870), 1, - sym_statement_block, - [206178] = 5, + ACTIONS(3399), 2, + anon_sym_else, + anon_sym_while, + [206308] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5206), 1, - sym_class_body, STATE(6799), 1, sym_comment, - [206194] = 4, + ACTIONS(3401), 2, + anon_sym_else, + anon_sym_while, + [206322] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6800), 1, sym_comment, - ACTIONS(10796), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206208] = 4, + ACTIONS(3403), 2, + anon_sym_else, + anon_sym_while, + [206336] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6801), 1, sym_comment, - ACTIONS(3540), 2, + ACTIONS(3385), 2, anon_sym_else, anon_sym_while, - [206222] = 5, + [206350] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9086), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_statement_block, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(4552), 1, + sym_formal_parameters, STATE(6802), 1, sym_comment, - [206238] = 5, + [206366] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(2424), 1, - sym_class_body, + ACTIONS(10771), 1, + anon_sym_SEMI, + ACTIONS(10773), 1, + sym__automatic_semicolon, STATE(6803), 1, sym_comment, - [206254] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206382] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10798), 1, - sym_identifier, - ACTIONS(10800), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6804), 1, sym_comment, - [206270] = 5, + ACTIONS(3413), 2, + anon_sym_else, + anon_sym_while, + [206396] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(6389), 1, - sym__from_clause, STATE(6805), 1, sym_comment, - [206286] = 4, + ACTIONS(2176), 2, + anon_sym_else, + anon_sym_while, + [206410] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6806), 1, sym_comment, - ACTIONS(3540), 2, + ACTIONS(3415), 2, anon_sym_else, anon_sym_while, - [206300] = 5, + [206424] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(441), 1, - sym_class_body, + ACTIONS(10775), 1, + sym_identifier, + ACTIONS(10777), 1, + anon_sym_STAR, STATE(6807), 1, sym_comment, - [206316] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206440] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10802), 1, - sym_identifier, - ACTIONS(10804), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9594), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym_statement_block, STATE(6808), 1, sym_comment, - [206332] = 4, + [206456] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(1345), 1, + sym_class_body, STATE(6809), 1, sym_comment, - ACTIONS(3538), 2, - anon_sym_else, - anon_sym_while, - [206346] = 5, + [206472] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(5656), 1, - sym_statement_block, STATE(6810), 1, sym_comment, - [206362] = 4, + ACTIONS(3415), 2, + anon_sym_else, + anon_sym_while, + [206486] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6811), 1, sym_comment, - ACTIONS(3468), 2, - anon_sym_else, - anon_sym_while, - [206376] = 5, + ACTIONS(10779), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206500] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10806), 1, - anon_sym_LBRACE, - STATE(3424), 1, - sym_statement_block, + ACTIONS(9168), 1, + anon_sym_from, + STATE(6489), 1, + sym__from_clause, STATE(6812), 1, sym_comment, - [206392] = 4, + [206516] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10781), 1, + sym_identifier, + ACTIONS(10783), 1, + anon_sym_STAR, STATE(6813), 1, sym_comment, - ACTIONS(3530), 2, - anon_sym_else, - anon_sym_while, - [206406] = 4, + [206532] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10785), 1, + sym_identifier, + ACTIONS(10787), 1, + anon_sym_STAR, STATE(6814), 1, sym_comment, - ACTIONS(3526), 2, - anon_sym_else, - anon_sym_while, - [206420] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206548] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10808), 1, - sym_identifier, - ACTIONS(10810), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6815), 1, sym_comment, - [206436] = 5, + ACTIONS(3591), 2, + anon_sym_else, + anon_sym_while, + [206562] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3410), 1, - sym_statement_block, STATE(6816), 1, sym_comment, - [206452] = 5, + ACTIONS(3417), 2, + anon_sym_else, + anon_sym_while, + [206576] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5598), 1, - sym__from_clause, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(2986), 1, + sym_statement_block, STATE(6817), 1, sym_comment, - [206468] = 5, + [206592] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7725), 1, - anon_sym_LBRACE, - STATE(356), 1, - sym_class_body, + ACTIONS(7182), 1, + anon_sym_LPAREN, + STATE(4673), 1, + sym_formal_parameters, STATE(6818), 1, sym_comment, - [206484] = 4, + [206608] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6819), 1, sym_comment, - ACTIONS(3524), 2, + ACTIONS(2312), 2, anon_sym_else, anon_sym_while, - [206498] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206622] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10812), 1, - sym_identifier, - ACTIONS(10814), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6820), 1, sym_comment, - [206514] = 5, + ACTIONS(3419), 2, + anon_sym_else, + anon_sym_while, + [206636] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7727), 1, - anon_sym_LBRACE, - STATE(3274), 1, - sym_class_body, STATE(6821), 1, sym_comment, - [206530] = 4, + ACTIONS(5528), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206650] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6822), 1, sym_comment, - ACTIONS(10816), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [206544] = 5, + ACTIONS(3415), 2, + anon_sym_else, + anon_sym_while, + [206664] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10818), 1, - anon_sym_SEMI, - ACTIONS(10820), 1, - sym__automatic_semicolon, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(3303), 1, + sym_class_body, STATE(6823), 1, sym_comment, - [206560] = 4, + [206680] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7652), 1, + anon_sym_LBRACE, + STATE(3271), 1, + sym_class_body, STATE(6824), 1, sym_comment, - ACTIONS(10822), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [206574] = 4, + [206696] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6825), 1, sym_comment, - ACTIONS(10824), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206588] = 4, + ACTIONS(10789), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [206710] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9788), 1, + sym_identifier, + ACTIONS(9792), 1, + sym_private_property_identifier, STATE(6826), 1, sym_comment, - ACTIONS(10826), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206602] = 4, + [206726] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9594), 1, + anon_sym_LBRACE, + STATE(998), 1, + sym_statement_block, STATE(6827), 1, sym_comment, - ACTIONS(9961), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [206616] = 4, + [206742] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6828), 1, sym_comment, - ACTIONS(3522), 2, - anon_sym_else, - anon_sym_while, - [206630] = 5, + ACTIONS(7498), 2, + anon_sym_in, + anon_sym_of, + [206756] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, STATE(6829), 1, sym_comment, - STATE(7451), 1, - sym_formal_parameters, - [206646] = 5, + ACTIONS(3467), 2, + anon_sym_else, + anon_sym_while, + [206770] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9818), 1, - anon_sym_LBRACE, - STATE(1368), 1, - sym_statement_block, STATE(6830), 1, sym_comment, - [206662] = 5, + ACTIONS(3593), 2, + anon_sym_else, + anon_sym_while, + [206784] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_class_body, STATE(6831), 1, sym_comment, - [206678] = 4, + ACTIONS(3481), 2, + anon_sym_else, + anon_sym_while, + [206798] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6832), 1, sym_comment, - ACTIONS(3520), 2, + ACTIONS(3415), 2, anon_sym_else, anon_sym_while, - [206692] = 4, + [206812] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10721), 1, + anon_sym_LBRACE, + STATE(6800), 1, + sym_enum_body, STATE(6833), 1, sym_comment, - ACTIONS(3510), 2, - anon_sym_else, - anon_sym_while, - [206706] = 5, + [206828] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7539), 1, - anon_sym_LBRACE, - STATE(5300), 1, - sym_class_body, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6834), 1, sym_comment, - [206722] = 4, + STATE(7343), 1, + sym_formal_parameters, + [206844] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7570), 1, + anon_sym_LBRACE, + STATE(997), 1, + sym_class_body, STATE(6835), 1, sym_comment, - ACTIONS(10828), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206736] = 5, + [206860] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10830), 1, - anon_sym_SEMI, - ACTIONS(10832), 1, - sym__automatic_semicolon, STATE(6836), 1, sym_comment, - [206752] = 4, + ACTIONS(2098), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206874] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8755), 1, + anon_sym_LBRACE, + STATE(996), 1, + sym_statement_block, STATE(6837), 1, sym_comment, - ACTIONS(3506), 2, - anon_sym_else, - anon_sym_while, - [206766] = 5, + [206890] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(1358), 1, + sym_class_body, STATE(6838), 1, sym_comment, - STATE(7379), 1, - sym_formal_parameters, - [206782] = 5, + [206906] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10568), 1, - anon_sym_LPAREN, - STATE(75), 1, - sym__for_header, STATE(6839), 1, sym_comment, - [206798] = 4, + ACTIONS(9780), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206920] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7588), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_class_body, STATE(6840), 1, sym_comment, - ACTIONS(10834), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206812] = 5, + [206936] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10836), 1, - anon_sym_SEMI, - ACTIONS(10838), 1, - sym__automatic_semicolon, STATE(6841), 1, sym_comment, - [206828] = 4, + ACTIONS(10791), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206950] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10793), 1, + sym_identifier, + ACTIONS(10795), 1, + anon_sym_STAR, STATE(6842), 1, sym_comment, - ACTIONS(3498), 2, - anon_sym_else, - anon_sym_while, - [206842] = 4, + [206966] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6843), 1, sym_comment, - ACTIONS(3492), 2, - anon_sym_else, - anon_sym_while, - [206856] = 5, + ACTIONS(10797), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206980] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8797), 1, - anon_sym_DOT, - ACTIONS(10840), 1, - anon_sym_GT, STATE(6844), 1, sym_comment, - [206872] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9796), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206994] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10842), 1, - sym_identifier, - STATE(6242), 1, - sym_nested_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(1371), 1, + sym_class_body, STATE(6845), 1, sym_comment, - [206888] = 4, + [207010] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10799), 1, + anon_sym_SEMI, + ACTIONS(10801), 1, + sym__automatic_semicolon, STATE(6846), 1, sym_comment, - ACTIONS(3488), 2, - anon_sym_else, - anon_sym_while, - [206902] = 5, + [207026] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7597), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(1100), 1, + STATE(2988), 1, sym_class_body, STATE(6847), 1, sym_comment, - [206918] = 4, + [207042] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(2987), 1, + sym_statement_block, STATE(6848), 1, sym_comment, - ACTIONS(10844), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206932] = 5, + [207058] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(2949), 1, + sym_class_body, STATE(6849), 1, sym_comment, - STATE(7371), 1, - sym_formal_parameters, - [206948] = 4, + [207074] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6850), 1, sym_comment, - ACTIONS(3484), 2, + ACTIONS(3415), 2, anon_sym_else, anon_sym_while, - [206962] = 4, + [207088] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(2979), 1, + sym_class_body, STATE(6851), 1, sym_comment, - ACTIONS(10846), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206976] = 5, + [207104] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3383), 1, - sym_statement_block, STATE(6852), 1, sym_comment, - [206992] = 5, + ACTIONS(6763), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207118] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10848), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(1310), 1, - sym_switch_body, + STATE(6713), 1, + sym_statement_block, STATE(6853), 1, sym_comment, - [207008] = 5, + [207134] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8805), 1, - anon_sym_LBRACE, - STATE(1104), 1, - sym_statement_block, STATE(6854), 1, sym_comment, - [207024] = 5, + ACTIONS(3565), 2, + anon_sym_else, + anon_sym_while, + [207148] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5463), 1, - sym__from_clause, STATE(6855), 1, sym_comment, - [207040] = 5, + ACTIONS(3561), 2, + anon_sym_else, + anon_sym_while, + [207162] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7597), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(1111), 1, - sym_class_body, + STATE(6798), 1, + sym_statement_block, STATE(6856), 1, sym_comment, - [207056] = 4, + [207178] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10803), 1, + sym_identifier, + STATE(5997), 1, + sym_nested_identifier, STATE(6857), 1, sym_comment, - ACTIONS(3482), 2, - anon_sym_else, - anon_sym_while, - [207070] = 4, + [207194] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6858), 1, sym_comment, - ACTIONS(10850), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207084] = 4, + ACTIONS(6718), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207208] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6859), 1, sym_comment, - ACTIONS(10852), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207098] = 5, + ACTIONS(3561), 2, + anon_sym_else, + anon_sym_while, + [207222] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7775), 1, - anon_sym_LBRACE, - STATE(6373), 1, - sym_class_body, STATE(6860), 1, sym_comment, - [207114] = 4, + ACTIONS(3559), 2, + anon_sym_else, + anon_sym_while, + [207236] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6861), 1, sym_comment, - ACTIONS(3480), 2, - anon_sym_else, - anon_sym_while, - [207128] = 5, + STATE(7346), 1, + sym_formal_parameters, + [207252] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10854), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(6840), 1, - sym_object, + STATE(6715), 1, + sym_statement_block, STATE(6862), 1, sym_comment, - [207144] = 5, + [207268] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2979), 1, - sym_statement_block, STATE(6863), 1, sym_comment, - [207160] = 5, + ACTIONS(3415), 2, + anon_sym_else, + anon_sym_while, + [207282] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7784), 1, anon_sym_LBRACE, - STATE(3406), 1, - sym_statement_block, + STATE(1341), 1, + sym_class_body, STATE(6864), 1, sym_comment, - [207176] = 4, + [207298] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8824), 1, + anon_sym_LBRACE, + STATE(1342), 1, + sym_statement_block, STATE(6865), 1, sym_comment, - ACTIONS(10856), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207190] = 5, + [207314] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3403), 1, - sym_statement_block, STATE(6866), 1, sym_comment, - [207206] = 5, + ACTIONS(3427), 2, + anon_sym_else, + anon_sym_while, + [207328] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(5653), 1, - sym_statement_block, STATE(6867), 1, sym_comment, - [207222] = 4, + ACTIONS(3429), 2, + anon_sym_else, + anon_sym_while, + [207342] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7784), 1, + anon_sym_LBRACE, + STATE(1344), 1, + sym_class_body, STATE(6868), 1, sym_comment, - ACTIONS(3474), 2, - anon_sym_else, - anon_sym_while, - [207236] = 5, + [207358] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, + ACTIONS(8733), 1, anon_sym_LBRACE, - STATE(2983), 1, - sym_class_body, + STATE(387), 1, + sym_statement_block, STATE(6869), 1, sym_comment, - [207252] = 4, + [207374] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6870), 1, sym_comment, - ACTIONS(6754), 2, + ACTIONS(10805), 2, anon_sym_COMMA, anon_sym_RBRACE, - [207266] = 5, + [207388] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(6653), 1, - sym_statement_block, + ACTIONS(10807), 1, + sym_identifier, + ACTIONS(10809), 1, + anon_sym_STAR, STATE(6871), 1, sym_comment, - [207282] = 4, + [207404] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6872), 1, sym_comment, - ACTIONS(9321), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207296] = 4, + ACTIONS(9765), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207418] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10811), 1, + sym_identifier, + ACTIONS(10813), 1, + sym_private_property_identifier, STATE(6873), 1, sym_comment, - ACTIONS(9934), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207310] = 5, + [207434] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5454), 1, - sym__from_clause, + ACTIONS(10815), 1, + sym_identifier, + ACTIONS(10817), 1, + sym_private_property_identifier, STATE(6874), 1, sym_comment, - [207326] = 4, + [207450] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10819), 1, + sym_identifier, + ACTIONS(10821), 1, + sym_private_property_identifier, STATE(6875), 1, sym_comment, - ACTIONS(9706), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207340] = 4, + [207466] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7840), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_class_body, STATE(6876), 1, sym_comment, - ACTIONS(3454), 2, - anon_sym_else, - anon_sym_while, - [207354] = 5, + [207482] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(6573), 1, - sym__from_clause, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(80), 1, + sym_parenthesized_expression, STATE(6877), 1, sym_comment, - [207370] = 5, + [207498] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(6659), 1, - sym_statement_block, + ACTIONS(10823), 1, + anon_sym_SEMI, + ACTIONS(10825), 1, + sym__automatic_semicolon, STATE(6878), 1, sym_comment, - [207386] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9762), 1, - sym_identifier, - ACTIONS(9766), 1, - sym_private_property_identifier, - STATE(6879), 1, - sym_comment, - [207402] = 5, + [207514] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3384), 1, - sym_statement_block, - STATE(6880), 1, + STATE(6879), 1, sym_comment, - [207418] = 5, + ACTIONS(3431), 2, + anon_sym_else, + anon_sym_while, + [207528] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10858), 1, + ACTIONS(10827), 1, sym_identifier, - ACTIONS(10860), 1, + ACTIONS(10829), 1, sym_private_property_identifier, - STATE(6881), 1, + STATE(6880), 1, sym_comment, - [207434] = 4, + [207544] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - STATE(6882), 1, + STATE(6881), 1, sym_comment, - ACTIONS(3452), 2, + ACTIONS(3431), 2, anon_sym_else, anon_sym_while, - [207448] = 4, + [207558] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, + STATE(5199), 1, + sym_formal_parameters, + STATE(6882), 1, + sym_comment, + [207574] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6883), 1, sym_comment, - ACTIONS(3450), 2, + ACTIONS(3433), 2, anon_sym_else, anon_sym_while, - [207462] = 5, + [207588] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_COLON, - STATE(5980), 1, - sym_type_annotation, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5503), 1, + sym__from_clause, STATE(6884), 1, sym_comment, - [207478] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [207604] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10862), 1, - sym_identifier, - ACTIONS(10864), 1, - sym_private_property_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7570), 1, + anon_sym_LBRACE, + STATE(983), 1, + sym_class_body, STATE(6885), 1, sym_comment, - [207494] = 5, + [207620] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7653), 1, + ACTIONS(8755), 1, anon_sym_LBRACE, - STATE(1167), 1, - sym_class_body, + STATE(979), 1, + sym_statement_block, STATE(6886), 1, sym_comment, - [207510] = 5, + [207636] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10866), 1, + ACTIONS(10831), 1, sym_identifier, - STATE(5999), 1, - sym_nested_identifier, + ACTIONS(10833), 1, + sym_private_property_identifier, STATE(6887), 1, sym_comment, - [207526] = 5, + [207652] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10398), 1, - anon_sym_LPAREN, - STATE(6609), 1, - sym_parenthesized_expression, + ACTIONS(7570), 1, + anon_sym_LBRACE, + STATE(969), 1, + sym_class_body, STATE(6888), 1, sym_comment, - [207542] = 4, + [207668] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10835), 1, + sym_identifier, + ACTIONS(10837), 1, + sym_private_property_identifier, STATE(6889), 1, sym_comment, - ACTIONS(3446), 2, - anon_sym_else, - anon_sym_while, - [207556] = 5, + [207684] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7725), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_class_body, + ACTIONS(10839), 1, + sym_identifier, + ACTIONS(10841), 1, + sym_private_property_identifier, STATE(6890), 1, sym_comment, - [207572] = 5, + [207700] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10636), 1, + ACTIONS(7588), 1, anon_sym_LBRACE, - STATE(1187), 1, - sym_statement_block, + STATE(412), 1, + sym_class_body, STATE(6891), 1, sym_comment, - [207588] = 4, + [207716] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(3094), 1, + sym_statement_block, STATE(6892), 1, sym_comment, - ACTIONS(10868), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207602] = 5, + [207732] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10870), 1, - anon_sym_SEMI, - ACTIONS(10872), 1, - sym__automatic_semicolon, + ACTIONS(10843), 1, + sym_identifier, + STATE(5658), 1, + sym_nested_identifier, STATE(6893), 1, sym_comment, - [207618] = 5, + [207748] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10874), 1, - anon_sym_LPAREN, - STATE(1080), 1, - sym_parenthesized_expression, + ACTIONS(10845), 1, + sym_identifier, + ACTIONS(10847), 1, + sym_private_property_identifier, STATE(6894), 1, sym_comment, - [207634] = 4, + [207764] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6895), 1, sym_comment, - ACTIONS(3444), 2, + ACTIONS(3437), 2, anon_sym_else, anon_sym_while, - [207648] = 4, + [207778] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7596), 1, + anon_sym_LBRACE, + STATE(1456), 1, + sym_class_body, STATE(6896), 1, sym_comment, - ACTIONS(3442), 2, - anon_sym_else, - anon_sym_while, - [207662] = 5, + [207794] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(117), 1, - sym_parenthesized_expression, + ACTIONS(10849), 1, + sym_identifier, + ACTIONS(10851), 1, + anon_sym_STAR, STATE(6897), 1, sym_comment, - [207678] = 5, + [207810] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10398), 1, - anon_sym_LPAREN, - STATE(6853), 1, - sym_parenthesized_expression, STATE(6898), 1, sym_comment, - [207694] = 4, + ACTIONS(3441), 2, + anon_sym_else, + anon_sym_while, + [207824] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6899), 1, sym_comment, - ACTIONS(3436), 2, + ACTIONS(3445), 2, anon_sym_else, anon_sym_while, - [207708] = 5, + [207838] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10876), 1, + ACTIONS(10853), 1, sym_identifier, - ACTIONS(10878), 1, + ACTIONS(10855), 1, sym_private_property_identifier, STATE(6900), 1, sym_comment, - [207724] = 5, + [207854] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(2996), 1, - sym_class_body, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(90), 1, + sym_parenthesized_expression, STATE(6901), 1, sym_comment, - [207740] = 4, + [207870] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + STATE(6781), 1, + sym_parenthesized_expression, STATE(6902), 1, sym_comment, - ACTIONS(3434), 2, - anon_sym_else, - anon_sym_while, - [207754] = 5, + [207886] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10686), 1, - anon_sym_LBRACE, - STATE(1506), 1, - sym_enum_body, STATE(6903), 1, sym_comment, - [207770] = 4, + ACTIONS(3447), 2, + anon_sym_else, + anon_sym_while, + [207900] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6904), 1, sym_comment, - ACTIONS(3432), 2, - anon_sym_else, - anon_sym_while, - [207784] = 5, + ACTIONS(9692), 2, + anon_sym_COMMA, + anon_sym_GT, + [207914] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10880), 1, - anon_sym_LBRACE, - STATE(5316), 1, - sym_enum_body, STATE(6905), 1, sym_comment, - [207800] = 5, + ACTIONS(3451), 2, + anon_sym_else, + anon_sym_while, + [207928] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3379), 1, - sym_statement_block, + ACTIONS(10857), 1, + sym_identifier, + ACTIONS(10859), 1, + sym_private_property_identifier, STATE(6906), 1, sym_comment, - [207816] = 5, + [207944] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7784), 1, anon_sym_LBRACE, - STATE(3378), 1, - sym_statement_block, + STATE(1169), 1, + sym_class_body, STATE(6907), 1, sym_comment, - [207832] = 4, + [207960] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10861), 1, + sym_identifier, + ACTIONS(10863), 1, + sym_private_property_identifier, STATE(6908), 1, sym_comment, - ACTIONS(8609), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [207846] = 4, + [207976] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6909), 1, sym_comment, - ACTIONS(9186), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207860] = 4, + ACTIONS(10865), 2, + anon_sym_COMMA, + anon_sym_GT, + [207990] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(1421), 1, + sym_class_body, STATE(6910), 1, sym_comment, - ACTIONS(3430), 2, - anon_sym_else, - anon_sym_while, - [207874] = 5, + [208006] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(6344), 1, - sym__from_clause, + ACTIONS(10867), 1, + anon_sym_LBRACE, + STATE(1191), 1, + sym_statement_block, STATE(6911), 1, sym_comment, - [207890] = 5, + [208022] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10174), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_statement_block, STATE(6912), 1, sym_comment, - [207906] = 4, + ACTIONS(3453), 2, + anon_sym_else, + anon_sym_while, + [208036] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8733), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_statement_block, STATE(6913), 1, sym_comment, - ACTIONS(8519), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [207920] = 5, + [208052] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5629), 1, - sym__from_clause, STATE(6914), 1, sym_comment, - [207936] = 4, + ACTIONS(2298), 2, + anon_sym_else, + anon_sym_while, + [208066] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, STATE(6915), 1, sym_comment, - ACTIONS(10882), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207950] = 4, + STATE(6949), 1, + sym__from_clause, + [208082] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6916), 1, sym_comment, - ACTIONS(2299), 2, - anon_sym_else, - anon_sym_while, - [207964] = 4, + ACTIONS(10869), 2, + anon_sym_COMMA, + anon_sym_GT, + [208096] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8807), 1, + anon_sym_LBRACE, + STATE(439), 1, + sym_statement_block, STATE(6917), 1, sym_comment, - ACTIONS(3424), 2, - anon_sym_else, - anon_sym_while, - [207978] = 5, + [208112] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3370), 1, - sym_statement_block, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5639), 1, + sym__from_clause, STATE(6918), 1, sym_comment, - [207994] = 5, + [208128] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(10871), 1, + anon_sym_LBRACE, + STATE(1195), 1, + sym_enum_body, STATE(6919), 1, sym_comment, - STATE(7286), 1, - sym_formal_parameters, - [208010] = 5, + [208144] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8737), 1, - anon_sym_LBRACE, - STATE(392), 1, - sym_statement_block, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5527), 1, + sym__from_clause, STATE(6920), 1, sym_comment, - [208026] = 5, + [208160] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8797), 1, - anon_sym_DOT, - ACTIONS(10884), 1, - anon_sym_GT, STATE(6921), 1, sym_comment, - [208042] = 5, + ACTIONS(10873), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [208174] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(5257), 1, anon_sym_LBRACE, - STATE(3366), 1, + STATE(2400), 1, sym_statement_block, STATE(6922), 1, sym_comment, - [208058] = 5, + [208190] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3362), 1, - sym_statement_block, STATE(6923), 1, sym_comment, - [208074] = 4, + ACTIONS(10875), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208204] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(3011), 1, + sym_statement_block, STATE(6924), 1, sym_comment, - ACTIONS(2299), 2, - anon_sym_else, - anon_sym_while, - [208088] = 4, + [208220] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9168), 1, + anon_sym_from, + STATE(6678), 1, + sym__from_clause, STATE(6925), 1, sym_comment, - ACTIONS(3422), 2, - anon_sym_else, - anon_sym_while, - [208102] = 4, + [208236] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6926), 1, sym_comment, - ACTIONS(3412), 2, + ACTIONS(3553), 2, anon_sym_else, anon_sym_while, - [208116] = 5, + [208250] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, - anon_sym_COLON, - ACTIONS(9912), 1, - anon_sym_GT, + ACTIONS(8008), 1, + anon_sym_LBRACE, + STATE(6858), 1, + sym_statement_block, STATE(6927), 1, sym_comment, - [208132] = 5, + [208266] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5606), 1, - sym__from_clause, STATE(6928), 1, sym_comment, - [208148] = 5, + ACTIONS(5723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208280] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(7588), 1, + anon_sym_LBRACE, + STATE(384), 1, + sym_class_body, STATE(6929), 1, sym_comment, - STATE(7173), 1, - sym_formal_parameters, - [208164] = 5, + [208296] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7601), 1, - anon_sym_LBRACE, - STATE(1181), 1, - sym_class_body, STATE(6930), 1, sym_comment, - [208180] = 5, + ACTIONS(3551), 2, + anon_sym_else, + anon_sym_while, + [208310] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10886), 1, + ACTIONS(10877), 1, anon_sym_SEMI, - ACTIONS(10888), 1, + ACTIONS(10879), 1, sym__automatic_semicolon, STATE(6931), 1, sym_comment, - [208196] = 5, + [208326] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10890), 1, - anon_sym_SEMI, - ACTIONS(10892), 1, - sym__automatic_semicolon, + ACTIONS(9168), 1, + anon_sym_from, + STATE(5622), 1, + sym__from_clause, STATE(6932), 1, sym_comment, - [208212] = 5, + [208342] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8073), 1, - anon_sym_LBRACE, - STATE(6434), 1, - sym_statement_block, STATE(6933), 1, sym_comment, - [208228] = 5, + ACTIONS(10881), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208356] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, STATE(6934), 1, sym_comment, - STATE(7206), 1, - sym_formal_parameters, - [208244] = 5, + ACTIONS(9651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208370] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10894), 1, - anon_sym_SEMI, - ACTIONS(10896), 1, - sym__automatic_semicolon, STATE(6935), 1, sym_comment, - [208260] = 5, + ACTIONS(3455), 2, + anon_sym_else, + anon_sym_while, + [208384] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(3364), 1, - sym_statement_block, + STATE(2403), 1, + sym_class_body, STATE(6936), 1, sym_comment, - [208276] = 5, + [208400] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10898), 1, - anon_sym_SEMI, - ACTIONS(10900), 1, - sym__automatic_semicolon, STATE(6937), 1, sym_comment, - [208292] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10883), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208414] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10902), 1, - sym_identifier, - STATE(5702), 1, - sym_nested_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6938), 1, sym_comment, - [208308] = 5, + STATE(7463), 1, + sym_formal_parameters, + [208430] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10880), 1, - anon_sym_LBRACE, - STATE(5274), 1, - sym_enum_body, STATE(6939), 1, sym_comment, - [208324] = 5, + ACTIONS(3457), 2, + anon_sym_else, + anon_sym_while, + [208444] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7945), 1, - anon_sym_LBRACE, - STATE(5270), 1, - sym_statement_block, STATE(6940), 1, sym_comment, - [208340] = 5, + ACTIONS(5703), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208458] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8008), 1, anon_sym_LBRACE, - STATE(3416), 1, + STATE(6852), 1, sym_statement_block, STATE(6941), 1, sym_comment, - [208356] = 5, + [208474] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5370), 1, - anon_sym_LPAREN, - STATE(3005), 1, - sym_arguments, + ACTIONS(10885), 1, + sym_identifier, + STATE(5706), 1, + sym_nested_identifier, STATE(6942), 1, sym_comment, - [208372] = 5, + [208490] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(10887), 1, + anon_sym_SEMI, + ACTIONS(10889), 1, + sym__automatic_semicolon, STATE(6943), 1, sym_comment, - STATE(7072), 1, - sym_formal_parameters, - [208388] = 5, + [208506] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7601), 1, + ACTIONS(7570), 1, anon_sym_LBRACE, - STATE(1185), 1, + STATE(1025), 1, sym_class_body, STATE(6944), 1, sym_comment, - [208404] = 5, + [208522] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(85), 1, - sym_parenthesized_expression, STATE(6945), 1, sym_comment, - [208420] = 5, + ACTIONS(10891), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208536] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3387), 1, - sym_statement_block, + ACTIONS(10655), 1, + anon_sym_LPAREN, + STATE(6749), 1, + sym_parenthesized_expression, STATE(6946), 1, sym_comment, - [208436] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208552] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10904), 1, - sym_identifier, - STATE(5993), 1, - sym_nested_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6947), 1, sym_comment, - [208452] = 5, + STATE(7447), 1, + sym_formal_parameters, + [208568] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(10893), 1, + anon_sym_SEMI, + ACTIONS(10895), 1, + sym__automatic_semicolon, STATE(6948), 1, sym_comment, - STATE(7027), 1, - sym_formal_parameters, - [208468] = 5, + [208584] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3360), 1, - sym_statement_block, + ACTIONS(10897), 1, + anon_sym_SEMI, + ACTIONS(10899), 1, + sym__automatic_semicolon, STATE(6949), 1, sym_comment, - [208484] = 5, + [208600] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8805), 1, - anon_sym_LBRACE, - STATE(1145), 1, - sym_statement_block, STATE(6950), 1, sym_comment, - [208500] = 5, + ACTIONS(3477), 2, + anon_sym_else, + anon_sym_while, + [208614] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, - STATE(4932), 1, - sym_formal_parameters, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(10901), 1, + anon_sym_GT, STATE(6951), 1, sym_comment, - [208516] = 5, + [208630] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7182), 1, anon_sym_LPAREN, STATE(6952), 1, sym_comment, - STATE(7156), 1, + STATE(7411), 1, sym_formal_parameters, - [208532] = 5, + [208646] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7597), 1, - anon_sym_LBRACE, - STATE(1143), 1, - sym_class_body, STATE(6953), 1, sym_comment, - [208548] = 4, + ACTIONS(3477), 2, + anon_sym_else, + anon_sym_while, + [208660] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_parenthesized_expression, STATE(6954), 1, sym_comment, - ACTIONS(5474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208562] = 4, + [208676] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(9639), 1, + anon_sym_COLON, + ACTIONS(9641), 1, + anon_sym_GT, STATE(6955), 1, sym_comment, - ACTIONS(5472), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208576] = 4, + [208692] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(7182), 1, + anon_sym_LPAREN, STATE(6956), 1, sym_comment, - ACTIONS(10906), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208590] = 4, + STATE(7072), 1, + sym_formal_parameters, + [208708] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6957), 1, sym_comment, - ACTIONS(10908), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208604] = 4, + ACTIONS(6771), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208722] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3398), 1, + sym_statement_block, STATE(6958), 1, sym_comment, - ACTIONS(10910), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [208618] = 5, + [208738] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10568), 1, - anon_sym_LPAREN, - STATE(102), 1, - sym__for_header, STATE(6959), 1, sym_comment, - [208634] = 5, + ACTIONS(8573), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [208752] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10912), 1, - anon_sym_LBRACE, - STATE(1426), 1, - sym_switch_body, + ACTIONS(4244), 1, + anon_sym_COLON, + STATE(6785), 1, + sym_type_annotation, STATE(6960), 1, sym_comment, - [208650] = 5, + [208768] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7612), 1, anon_sym_LBRACE, - STATE(3397), 1, - sym_statement_block, + STATE(3016), 1, + sym_class_body, STATE(6961), 1, sym_comment, - [208666] = 5, + [208784] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9563), 1, - anon_sym_LBRACE, - STATE(1140), 1, - sym_statement_block, STATE(6962), 1, sym_comment, - [208682] = 5, + ACTIONS(3591), 2, + anon_sym_else, + anon_sym_while, + [208798] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5412), 1, - sym__from_clause, STATE(6963), 1, sym_comment, - [208698] = 5, + ACTIONS(3477), 2, + anon_sym_else, + anon_sym_while, + [208812] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4175), 1, - anon_sym_LPAREN, - STATE(5623), 1, - sym_arguments, STATE(6964), 1, sym_comment, - [208714] = 4, + ACTIONS(5705), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208826] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6965), 1, sym_comment, - ACTIONS(5462), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208728] = 5, + ACTIONS(3551), 2, + anon_sym_else, + anon_sym_while, + [208840] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10672), 1, - anon_sym_LBRACE, - STATE(1483), 1, - sym_statement_block, STATE(6966), 1, sym_comment, - [208744] = 4, + ACTIONS(3541), 2, + anon_sym_else, + anon_sym_while, + [208854] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6967), 1, sym_comment, - ACTIONS(9822), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208758] = 5, + ACTIONS(10903), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208868] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(5433), 1, - sym__from_clause, + ACTIONS(7840), 1, + anon_sym_LBRACE, + STATE(455), 1, + sym_class_body, STATE(6968), 1, sym_comment, - [208774] = 5, + [208884] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9194), 1, - anon_sym_from, - STATE(6932), 1, - sym__from_clause, STATE(6969), 1, sym_comment, - [208790] = 5, + ACTIONS(10905), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208898] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10914), 1, - anon_sym_LPAREN, - STATE(1307), 1, - sym_parenthesized_expression, + ACTIONS(10907), 1, + anon_sym_SEMI, + ACTIONS(10909), 1, + sym__automatic_semicolon, STATE(6970), 1, sym_comment, - [208806] = 5, + [208914] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(90), 1, - sym_parenthesized_expression, + ACTIONS(10911), 1, + anon_sym_LBRACE, + STATE(3435), 1, + sym_statement_block, STATE(6971), 1, sym_comment, - [208822] = 5, + [208930] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(4850), 1, anon_sym_LBRACE, - STATE(3409), 1, + STATE(3033), 1, sym_statement_block, STATE(6972), 1, sym_comment, - [208838] = 5, + [208946] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7611), 1, + ACTIONS(7652), 1, anon_sym_LBRACE, - STATE(358), 1, + STATE(3304), 1, sym_class_body, STATE(6973), 1, sym_comment, - [208854] = 4, + [208962] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6974), 1, sym_comment, - ACTIONS(10916), 2, - anon_sym_COMMA, - anon_sym_GT, - [208868] = 4, + ACTIONS(3485), 2, + anon_sym_else, + anon_sym_while, + [208976] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6975), 1, sym_comment, - ACTIONS(6711), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [208882] = 5, + ACTIONS(3491), 2, + anon_sym_else, + anon_sym_while, + [208990] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10918), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(888), 1, + STATE(3373), 1, sym_statement_block, STATE(6976), 1, sym_comment, - [208898] = 4, + [209006] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6977), 1, sym_comment, - ACTIONS(10920), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208912] = 4, + ACTIONS(3487), 2, + anon_sym_else, + anon_sym_while, + [209020] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, STATE(6978), 1, sym_comment, - ACTIONS(3472), 2, - anon_sym_else, - anon_sym_while, - [208926] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10913), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209034] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10567), 1, + anon_sym_LPAREN, + STATE(89), 1, + sym__for_header, STATE(6979), 1, sym_comment, - ACTIONS(4040), 2, - sym_jsx_identifier, - sym_identifier, - [208940] = 5, + [209050] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(884), 1, - sym_statement_block, STATE(6980), 1, sym_comment, - [208956] = 5, + ACTIONS(10915), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209064] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(120), 1, - sym_parenthesized_expression, + ACTIONS(10917), 1, + anon_sym_LBRACE, + STATE(6742), 1, + sym_switch_body, STATE(6981), 1, sym_comment, - [208972] = 5, + [209080] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(3052), 1, - sym_statement_block, + ACTIONS(10919), 1, + anon_sym_LPAREN, + STATE(3584), 1, + sym_arguments, STATE(6982), 1, sym_comment, - [208988] = 5, + [209096] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_parenthesized_expression, STATE(6983), 1, sym_comment, - [209004] = 5, + ACTIONS(9617), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209110] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, + ACTIONS(10921), 1, anon_sym_LBRACE, - STATE(3057), 1, + STATE(896), 1, sym_statement_block, STATE(6984), 1, sym_comment, - [209020] = 4, + [209126] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(108), 1, + sym_parenthesized_expression, STATE(6985), 1, sym_comment, - ACTIONS(10924), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209034] = 5, + [209142] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - STATE(4044), 1, - sym_formal_parameters, STATE(6986), 1, sym_comment, - [209050] = 5, + ACTIONS(3489), 2, + anon_sym_else, + anon_sym_while, + [209156] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7711), 1, - anon_sym_LBRACE, - STATE(3061), 1, - sym_class_body, + ACTIONS(10655), 1, + anon_sym_LPAREN, + STATE(6547), 1, + sym_parenthesized_expression, STATE(6987), 1, sym_comment, - [209066] = 5, + [209172] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7601), 1, - anon_sym_LBRACE, - STATE(1211), 1, - sym_class_body, + ACTIONS(10413), 1, + anon_sym_LPAREN, + STATE(88), 1, + sym_parenthesized_expression, STATE(6988), 1, sym_comment, - [209082] = 5, + [209188] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_LPAREN, + ACTIONS(7588), 1, + anon_sym_LBRACE, + STATE(426), 1, + sym_class_body, STATE(6989), 1, sym_comment, - STATE(7171), 1, - sym_formal_parameters, - [209098] = 5, + [209204] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3373), 1, - sym_statement_block, STATE(6990), 1, sym_comment, - [209114] = 5, + ACTIONS(10923), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209218] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9563), 1, - anon_sym_LBRACE, - STATE(1114), 1, - sym_statement_block, + ACTIONS(10925), 1, + anon_sym_SEMI, + ACTIONS(10927), 1, + sym__automatic_semicolon, STATE(6991), 1, sym_comment, - [209130] = 4, + [209234] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, + ACTIONS(10867), 1, + anon_sym_LBRACE, + STATE(1259), 1, + sym_statement_block, STATE(6992), 1, sym_comment, - ACTIONS(5736), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209144] = 5, + [209250] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10398), 1, + ACTIONS(10929), 1, anon_sym_LPAREN, - STATE(6960), 1, + STATE(1130), 1, sym_parenthesized_expression, STATE(6993), 1, sym_comment, - [209160] = 5, + [209266] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, + ACTIONS(10413), 1, anon_sym_LPAREN, - STATE(109), 1, + STATE(77), 1, sym_parenthesized_expression, STATE(6994), 1, sym_comment, - [209176] = 5, + [209282] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7625), 1, + ACTIONS(10871), 1, anon_sym_LBRACE, - STATE(454), 1, - sym_class_body, + STATE(1252), 1, + sym_enum_body, STATE(6995), 1, sym_comment, - [209192] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209298] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10926), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, STATE(6996), 1, sym_comment, - [209205] = 4, + ACTIONS(10931), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [209312] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10928), 1, - anon_sym_EQ_GT, STATE(6997), 1, sym_comment, - [209218] = 4, + ACTIONS(9554), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209326] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10930), 1, - anon_sym_EQ_GT, STATE(6998), 1, sym_comment, - [209231] = 4, + ACTIONS(10933), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209340] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10932), 1, - sym_number, STATE(6999), 1, sym_comment, - [209244] = 4, + ACTIONS(10935), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209354] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10934), 1, - anon_sym_EQ_GT, + ACTIONS(10937), 1, + sym_identifier, STATE(7000), 1, sym_comment, - [209257] = 4, + [209367] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10936), 1, - anon_sym_EQ_GT, + ACTIONS(5853), 1, + anon_sym_RPAREN, STATE(7001), 1, sym_comment, - [209270] = 4, + [209380] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10938), 1, + ACTIONS(10939), 1, anon_sym_EQ_GT, STATE(7002), 1, sym_comment, - [209283] = 4, + [209393] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10940), 1, - anon_sym_EQ, + ACTIONS(10941), 1, + anon_sym_as, STATE(7003), 1, sym_comment, - [209296] = 4, + [209406] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10942), 1, - anon_sym_RBRACK, + ACTIONS(10943), 1, + anon_sym_EQ_GT, STATE(7004), 1, sym_comment, - [209309] = 4, + [209419] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10944), 1, - anon_sym_RBRACK, + ACTIONS(10945), 1, + anon_sym_EQ_GT, STATE(7005), 1, sym_comment, - [209322] = 4, + [209432] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10946), 1, - anon_sym_RBRACK, + ACTIONS(10947), 1, + anon_sym_EQ_GT, STATE(7006), 1, sym_comment, - [209335] = 4, + [209445] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10948), 1, - anon_sym_new, + ACTIONS(10949), 1, + anon_sym_COLON, STATE(7007), 1, sym_comment, - [209348] = 4, + [209458] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10950), 1, - anon_sym_RBRACK, + ACTIONS(10951), 1, + anon_sym_LPAREN, STATE(7008), 1, sym_comment, - [209361] = 4, + [209471] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10952), 1, - anon_sym_RBRACK, + ACTIONS(10953), 1, + anon_sym_from, STATE(7009), 1, sym_comment, - [209374] = 4, + [209484] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10954), 1, - anon_sym_EQ, + ACTIONS(10955), 1, + anon_sym_from, STATE(7010), 1, sym_comment, - [209387] = 4, + [209497] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10956), 1, - anon_sym_RBRACK, + ACTIONS(10957), 1, + sym_identifier, STATE(7011), 1, sym_comment, - [209400] = 4, + [209510] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10958), 1, - anon_sym_readonly, + ACTIONS(10959), 1, + anon_sym_require, STATE(7012), 1, sym_comment, - [209413] = 4, + [209523] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10960), 1, - anon_sym_RBRACK, + ACTIONS(10961), 1, + anon_sym_from, STATE(7013), 1, sym_comment, - [209426] = 4, + [209536] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10962), 1, - anon_sym_RBRACK, + ACTIONS(10963), 1, + anon_sym_EQ, STATE(7014), 1, sym_comment, - [209439] = 4, + [209549] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10964), 1, - anon_sym_RBRACK, + ACTIONS(5018), 1, + anon_sym_RPAREN, STATE(7015), 1, sym_comment, - [209452] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209562] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10966), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10965), 1, + anon_sym_LBRACK, STATE(7016), 1, sym_comment, - [209465] = 4, + [209575] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10968), 1, - anon_sym_symbol, + ACTIONS(10967), 1, + anon_sym_new, STATE(7017), 1, sym_comment, - [209478] = 4, + [209588] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10970), 1, - anon_sym_RBRACK, + ACTIONS(10969), 1, + anon_sym_GT, STATE(7018), 1, sym_comment, - [209491] = 4, + [209601] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10972), 1, - anon_sym_DOT, + ACTIONS(9635), 1, + anon_sym_RBRACK, STATE(7019), 1, sym_comment, - [209504] = 4, + [209614] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10974), 1, + ACTIONS(10971), 1, anon_sym_EQ_GT, STATE(7020), 1, sym_comment, - [209517] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209627] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10976), 1, - sym_regex_pattern, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10973), 1, + anon_sym_RPAREN, STATE(7021), 1, sym_comment, - [209530] = 4, + [209640] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10978), 1, + ACTIONS(10975), 1, sym_identifier, STATE(7022), 1, sym_comment, - [209543] = 4, + [209653] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10980), 1, + ACTIONS(10977), 1, sym_identifier, STATE(7023), 1, sym_comment, - [209556] = 4, + [209666] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10982), 1, - anon_sym_LBRACE, + ACTIONS(10979), 1, + anon_sym_DOT, STATE(7024), 1, sym_comment, - [209569] = 4, + [209679] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5835), 1, - anon_sym_in, + ACTIONS(10981), 1, + sym_regex_pattern, STATE(7025), 1, sym_comment, - [209582] = 4, + [209692] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5512), 1, - anon_sym_in, + ACTIONS(10983), 1, + sym_identifier, STATE(7026), 1, sym_comment, - [209595] = 4, + [209705] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10984), 1, - anon_sym_EQ_GT, + ACTIONS(10985), 1, + sym_identifier, STATE(7027), 1, sym_comment, - [209608] = 4, + [209718] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10986), 1, + ACTIONS(10987), 1, anon_sym_RBRACK, STATE(7028), 1, sym_comment, - [209621] = 4, + [209731] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10988), 1, + ACTIONS(10989), 1, sym_identifier, STATE(7029), 1, sym_comment, - [209634] = 4, + [209744] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10990), 1, + ACTIONS(10991), 1, anon_sym_EQ_GT, STATE(7030), 1, sym_comment, - [209647] = 4, + [209757] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10992), 1, - anon_sym_RBRACK, + ACTIONS(10993), 1, + sym_identifier, STATE(7031), 1, sym_comment, - [209660] = 4, + [209770] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10994), 1, - anon_sym_RBRACK, + ACTIONS(10995), 1, + anon_sym_EQ_GT, STATE(7032), 1, sym_comment, - [209673] = 4, + [209783] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5914), 1, - anon_sym_RBRACE, + ACTIONS(10997), 1, + sym_identifier, STATE(7033), 1, sym_comment, - [209686] = 4, + [209796] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10996), 1, - anon_sym_EQ, + ACTIONS(10999), 1, + anon_sym_RBRACK, STATE(7034), 1, sym_comment, - [209699] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209809] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10998), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11001), 1, + anon_sym_EQ_GT, STATE(7035), 1, sym_comment, - [209712] = 4, + [209822] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11000), 1, - anon_sym_while, + ACTIONS(11003), 1, + sym_identifier, STATE(7036), 1, sym_comment, - [209725] = 4, + [209835] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11002), 1, - anon_sym_RBRACK, + ACTIONS(11005), 1, + anon_sym_while, STATE(7037), 1, sym_comment, - [209738] = 4, + [209848] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11004), 1, + ACTIONS(11007), 1, sym_identifier, STATE(7038), 1, sym_comment, - [209751] = 4, + [209861] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11006), 1, + ACTIONS(11009), 1, sym_identifier, STATE(7039), 1, sym_comment, - [209764] = 4, + [209874] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11008), 1, - anon_sym_RBRACK, + ACTIONS(11011), 1, + anon_sym_while, STATE(7040), 1, sym_comment, - [209777] = 4, + [209887] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11010), 1, - anon_sym_RBRACK, + ACTIONS(11013), 1, + anon_sym_target, STATE(7041), 1, sym_comment, - [209790] = 4, + [209900] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11012), 1, - anon_sym_RBRACK, + ACTIONS(11015), 1, + sym_identifier, STATE(7042), 1, sym_comment, - [209803] = 4, + [209913] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11014), 1, + ACTIONS(11017), 1, sym_identifier, STATE(7043), 1, sym_comment, - [209816] = 4, + [209926] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11016), 1, - anon_sym_RBRACK, + ACTIONS(11019), 1, + sym_identifier, STATE(7044), 1, sym_comment, - [209829] = 4, + [209939] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11018), 1, + ACTIONS(11021), 1, sym_identifier, STATE(7045), 1, sym_comment, - [209842] = 4, + [209952] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11020), 1, - anon_sym_RBRACK, + ACTIONS(11023), 1, + sym_identifier, STATE(7046), 1, sym_comment, - [209855] = 4, + [209965] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11022), 1, + ACTIONS(11025), 1, sym_identifier, STATE(7047), 1, sym_comment, - [209868] = 4, + [209978] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11024), 1, - anon_sym_RBRACK, + ACTIONS(11027), 1, + sym_regex_pattern, STATE(7048), 1, sym_comment, - [209881] = 4, + [209991] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11026), 1, - anon_sym_RBRACK, + ACTIONS(11029), 1, + sym_identifier, STATE(7049), 1, sym_comment, - [209894] = 4, + [210004] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5306), 1, - anon_sym_RPAREN, + ACTIONS(11031), 1, + anon_sym_COLON, STATE(7050), 1, sym_comment, - [209907] = 4, + [210017] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5864), 1, - anon_sym_RBRACK, + ACTIONS(11033), 1, + anon_sym_EQ, STATE(7051), 1, sym_comment, - [209920] = 4, + [210030] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11028), 1, - anon_sym_DOT, + ACTIONS(11035), 1, + anon_sym_SLASH2, STATE(7052), 1, sym_comment, - [209933] = 4, + [210043] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11030), 1, - anon_sym_EQ_GT, + ACTIONS(5875), 1, + anon_sym_RBRACK, STATE(7053), 1, sym_comment, - [209946] = 4, + [210056] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11032), 1, - anon_sym_RPAREN, + ACTIONS(7078), 1, + anon_sym_is, STATE(7054), 1, sym_comment, - [209959] = 4, + [210069] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11034), 1, + ACTIONS(11037), 1, anon_sym_EQ_GT, STATE(7055), 1, sym_comment, - [209972] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210082] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11036), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11039), 1, + anon_sym_DOT, STATE(7056), 1, sym_comment, - [209985] = 4, + [210095] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11038), 1, - anon_sym_EQ_GT, + ACTIONS(11041), 1, + anon_sym_EQ, STATE(7057), 1, sym_comment, - [209998] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210108] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11040), 1, - anon_sym_SLASH2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11043), 1, + anon_sym_EQ_GT, STATE(7058), 1, sym_comment, - [210011] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210121] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11042), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11045), 1, + anon_sym_EQ_GT, STATE(7059), 1, sym_comment, - [210024] = 4, + [210134] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11044), 1, - anon_sym_DOT, + ACTIONS(11047), 1, + sym_identifier, STATE(7060), 1, sym_comment, - [210037] = 4, + [210147] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5851), 1, - anon_sym_RBRACE, + ACTIONS(11049), 1, + anon_sym_EQ_GT, STATE(7061), 1, sym_comment, - [210050] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210160] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11046), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(8791), 1, + anon_sym_EQ, STATE(7062), 1, sym_comment, - [210063] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210173] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11048), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11051), 1, + anon_sym_EQ_GT, STATE(7063), 1, sym_comment, - [210076] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210186] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11050), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6590), 1, + anon_sym_in, STATE(7064), 1, sym_comment, - [210089] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210199] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11052), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11053), 1, + anon_sym_from, STATE(7065), 1, sym_comment, - [210102] = 4, + [210212] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9912), 1, - anon_sym_GT, + ACTIONS(5938), 1, + anon_sym_COLON, STATE(7066), 1, sym_comment, - [210115] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210225] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11054), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5948), 1, + anon_sym_RPAREN, STATE(7067), 1, sym_comment, - [210128] = 4, + [210238] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11056), 1, - anon_sym_EQ_GT, + ACTIONS(5950), 1, + anon_sym_RPAREN, STATE(7068), 1, sym_comment, - [210141] = 4, + [210251] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11058), 1, + ACTIONS(5952), 1, anon_sym_RPAREN, STATE(7069), 1, sym_comment, - [210154] = 4, + [210264] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11060), 1, - anon_sym_RPAREN, + ACTIONS(11055), 1, + anon_sym_RBRACK, STATE(7070), 1, sym_comment, - [210167] = 4, + [210277] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11062), 1, - anon_sym_while, + ACTIONS(11057), 1, + anon_sym_RPAREN, STATE(7071), 1, sym_comment, - [210180] = 4, + [210290] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11064), 1, + ACTIONS(11059), 1, anon_sym_EQ_GT, STATE(7072), 1, sym_comment, - [210193] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210303] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11066), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11061), 1, + anon_sym_RPAREN, STATE(7073), 1, sym_comment, - [210206] = 4, + [210316] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11068), 1, + ACTIONS(11063), 1, sym_identifier, STATE(7074), 1, sym_comment, - [210219] = 4, + [210329] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11070), 1, + ACTIONS(11065), 1, sym_identifier, STATE(7075), 1, sym_comment, - [210232] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210342] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11072), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11067), 1, + anon_sym_from, STATE(7076), 1, sym_comment, - [210245] = 4, + [210355] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11074), 1, - sym_regex_pattern, + ACTIONS(11069), 1, + sym_identifier, STATE(7077), 1, sym_comment, - [210258] = 4, + [210368] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11076), 1, - anon_sym_RBRACK, + ACTIONS(11071), 1, + anon_sym_EQ_GT, STATE(7078), 1, sym_comment, - [210271] = 4, + [210381] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11078), 1, + ACTIONS(11073), 1, sym_identifier, STATE(7079), 1, sym_comment, - [210284] = 4, + [210394] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11080), 1, - anon_sym_from, + ACTIONS(11075), 1, + anon_sym_RPAREN, STATE(7080), 1, sym_comment, - [210297] = 4, + [210407] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11082), 1, - anon_sym_RPAREN, + ACTIONS(11077), 1, + anon_sym_DOT, STATE(7081), 1, sym_comment, - [210310] = 4, + [210420] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11084), 1, - anon_sym_RBRACK, + ACTIONS(9930), 1, + anon_sym_GT, STATE(7082), 1, sym_comment, - [210323] = 4, + [210433] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11086), 1, - anon_sym_RBRACK, + ACTIONS(11079), 1, + sym_number, STATE(7083), 1, sym_comment, - [210336] = 4, + [210446] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11088), 1, - anon_sym_RBRACK, + ACTIONS(11081), 1, + sym_identifier, STATE(7084), 1, sym_comment, - [210349] = 4, + [210459] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11090), 1, + ACTIONS(11083), 1, sym_identifier, STATE(7085), 1, sym_comment, - [210362] = 4, + [210472] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11092), 1, - sym_number, + ACTIONS(5891), 1, + anon_sym_RBRACE, STATE(7086), 1, sym_comment, - [210375] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210485] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11094), 1, - sym_regex_pattern, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11085), 1, + anon_sym_symbol, STATE(7087), 1, sym_comment, - [210388] = 4, + [210498] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11096), 1, + ACTIONS(11087), 1, sym_identifier, STATE(7088), 1, sym_comment, - [210401] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210511] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11098), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11089), 1, + anon_sym_EQ_GT, STATE(7089), 1, sym_comment, - [210414] = 4, + [210524] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11100), 1, - anon_sym_EQ_GT, + ACTIONS(11091), 1, + anon_sym_from, STATE(7090), 1, sym_comment, - [210427] = 4, + [210537] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11102), 1, - sym_identifier, + ACTIONS(11093), 1, + sym_regex_pattern, STATE(7091), 1, sym_comment, - [210440] = 4, + [210550] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11104), 1, - anon_sym_symbol, + ACTIONS(11095), 1, + sym_identifier, STATE(7092), 1, sym_comment, - [210453] = 4, + [210563] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11106), 1, - anon_sym_COLON, + ACTIONS(11097), 1, + sym_identifier, STATE(7093), 1, sym_comment, - [210466] = 4, + [210576] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5920), 1, + ACTIONS(5902), 1, anon_sym_RPAREN, STATE(7094), 1, sym_comment, - [210479] = 4, + [210589] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11108), 1, + ACTIONS(11099), 1, sym_identifier, STATE(7095), 1, sym_comment, - [210492] = 4, + [210602] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11110), 1, - anon_sym_EQ_GT, + ACTIONS(11101), 1, + anon_sym_RPAREN, STATE(7096), 1, sym_comment, - [210505] = 4, + [210615] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11112), 1, - anon_sym_RBRACK, + ACTIONS(11103), 1, + anon_sym_while, STATE(7097), 1, sym_comment, - [210518] = 4, + [210628] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11114), 1, + ACTIONS(5942), 1, anon_sym_RBRACK, STATE(7098), 1, sym_comment, - [210531] = 4, + [210641] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11116), 1, - anon_sym_RBRACK, + ACTIONS(11105), 1, + sym_identifier, STATE(7099), 1, sym_comment, - [210544] = 4, + [210654] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11118), 1, - anon_sym_RBRACK, + ACTIONS(11107), 1, + sym_identifier, STATE(7100), 1, sym_comment, - [210557] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210667] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11120), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11109), 1, + anon_sym_COLON, STATE(7101), 1, sym_comment, - [210570] = 4, + [210680] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11122), 1, - anon_sym_while, + ACTIONS(11111), 1, + sym_identifier, STATE(7102), 1, sym_comment, - [210583] = 4, + [210693] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11124), 1, - anon_sym_EQ_GT, + ACTIONS(11113), 1, + sym_identifier, STATE(7103), 1, sym_comment, - [210596] = 4, + [210706] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11126), 1, + ACTIONS(11115), 1, sym_identifier, STATE(7104), 1, sym_comment, - [210609] = 4, + [210719] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11128), 1, - anon_sym_RBRACK, + ACTIONS(11117), 1, + sym_identifier, STATE(7105), 1, sym_comment, - [210622] = 4, + [210732] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11130), 1, - anon_sym_EQ, + ACTIONS(11119), 1, + anon_sym_while, STATE(7106), 1, sym_comment, - [210635] = 4, + [210745] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11132), 1, - anon_sym_from, + ACTIONS(5192), 1, + anon_sym_RPAREN, STATE(7107), 1, sym_comment, - [210648] = 4, + [210758] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11134), 1, - anon_sym_require, + ACTIONS(11121), 1, + sym_identifier, STATE(7108), 1, sym_comment, - [210661] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210771] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11136), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5906), 1, + anon_sym_RBRACE, STATE(7109), 1, sym_comment, - [210674] = 4, + [210784] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11138), 1, - anon_sym_EQ_GT, + ACTIONS(11123), 1, + sym_regex_pattern, STATE(7110), 1, sym_comment, - [210687] = 4, + [210797] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11140), 1, + ACTIONS(11125), 1, sym_identifier, STATE(7111), 1, sym_comment, - [210700] = 4, + [210810] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11142), 1, - anon_sym_EQ_GT, + ACTIONS(11127), 1, + anon_sym_RPAREN, STATE(7112), 1, sym_comment, - [210713] = 4, + [210823] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11144), 1, - anon_sym_EQ_GT, + ACTIONS(11129), 1, + sym_identifier, STATE(7113), 1, sym_comment, - [210726] = 4, + [210836] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11146), 1, - anon_sym_EQ_GT, + ACTIONS(5944), 1, + anon_sym_RBRACK, STATE(7114), 1, sym_comment, - [210739] = 4, + [210849] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8867), 1, - anon_sym_EQ, + ACTIONS(11131), 1, + sym_identifier, STATE(7115), 1, sym_comment, - [210752] = 4, + [210862] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11148), 1, - anon_sym_EQ_GT, + ACTIONS(11133), 1, + anon_sym_RBRACK, STATE(7116), 1, sym_comment, - [210765] = 4, + [210875] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6566), 1, - anon_sym_in, + ACTIONS(11135), 1, + anon_sym_RBRACK, STATE(7117), 1, sym_comment, - [210778] = 4, + [210888] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11150), 1, - anon_sym_DOT, + ACTIONS(11137), 1, + anon_sym_RBRACK, STATE(7118), 1, sym_comment, - [210791] = 4, + [210901] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11152), 1, - anon_sym_as, + ACTIONS(11139), 1, + sym_identifier, STATE(7119), 1, sym_comment, - [210804] = 4, + [210914] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11154), 1, - anon_sym_from, + ACTIONS(11141), 1, + anon_sym_RBRACK, STATE(7120), 1, sym_comment, - [210817] = 4, + [210927] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11156), 1, + ACTIONS(11143), 1, anon_sym_RBRACK, STATE(7121), 1, sym_comment, - [210830] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210940] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11158), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11145), 1, + anon_sym_DOT, STATE(7122), 1, sym_comment, - [210843] = 4, + [210953] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11160), 1, - anon_sym_EQ, + ACTIONS(11147), 1, + anon_sym_RBRACK, STATE(7123), 1, sym_comment, - [210856] = 4, + [210966] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11162), 1, - anon_sym_LPAREN, + ACTIONS(11149), 1, + anon_sym_RBRACK, STATE(7124), 1, sym_comment, - [210869] = 4, + [210979] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9950), 1, - anon_sym_GT, + ACTIONS(11151), 1, + sym_identifier, STATE(7125), 1, sym_comment, - [210882] = 4, + [210992] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11164), 1, - anon_sym_from, + ACTIONS(11153), 1, + sym_identifier, STATE(7126), 1, sym_comment, - [210895] = 4, + [211005] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11166), 1, - anon_sym_as, + ACTIONS(11155), 1, + sym_identifier, STATE(7127), 1, sym_comment, - [210908] = 4, + [211018] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11168), 1, + ACTIONS(11157), 1, anon_sym_RBRACK, STATE(7128), 1, sym_comment, - [210921] = 4, + [211031] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11170), 1, - anon_sym_RBRACK, + ACTIONS(8170), 1, + anon_sym_EQ, STATE(7129), 1, sym_comment, - [210934] = 4, + [211044] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11172), 1, - anon_sym_COLON, + ACTIONS(11159), 1, + anon_sym_RBRACK, STATE(7130), 1, sym_comment, - [210947] = 4, + [211057] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11174), 1, - anon_sym_RBRACK, + ACTIONS(11161), 1, + sym_identifier, STATE(7131), 1, sym_comment, - [210960] = 4, + [211070] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11176), 1, + ACTIONS(11163), 1, anon_sym_RBRACK, STATE(7132), 1, sym_comment, - [210973] = 4, + [211083] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11178), 1, - anon_sym_RBRACK, + ACTIONS(11165), 1, + anon_sym_EQ_GT, STATE(7133), 1, sym_comment, - [210986] = 4, + [211096] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5807), 1, - anon_sym_is, + ACTIONS(11167), 1, + sym_identifier, STATE(7134), 1, sym_comment, - [210999] = 4, + [211109] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11180), 1, - anon_sym_RPAREN, + ACTIONS(11169), 1, + sym_identifier, STATE(7135), 1, sym_comment, - [211012] = 4, + [211122] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11182), 1, - anon_sym_RBRACK, + ACTIONS(11171), 1, + anon_sym_EQ_GT, STATE(7136), 1, sym_comment, - [211025] = 4, + [211135] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11184), 1, - anon_sym_from, + ACTIONS(11173), 1, + sym_identifier, STATE(7137), 1, sym_comment, - [211038] = 4, + [211148] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9742), 1, - anon_sym_RBRACE, + ACTIONS(11175), 1, + sym_identifier, STATE(7138), 1, sym_comment, - [211051] = 4, + [211161] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11186), 1, - anon_sym_RBRACK, + ACTIONS(11177), 1, + anon_sym_RPAREN, STATE(7139), 1, sym_comment, - [211064] = 4, + [211174] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11188), 1, - anon_sym_RPAREN, + ACTIONS(5954), 1, + anon_sym_RBRACE, STATE(7140), 1, sym_comment, - [211077] = 4, + [211187] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11190), 1, - anon_sym_RBRACK, + ACTIONS(11179), 1, + sym_identifier, STATE(7141), 1, sym_comment, - [211090] = 4, + [211200] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11192), 1, - anon_sym_RBRACK, + ACTIONS(11181), 1, + sym_identifier, STATE(7142), 1, sym_comment, - [211103] = 4, + [211213] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9967), 1, - anon_sym_RBRACK, + ACTIONS(10079), 1, + anon_sym_GT, STATE(7143), 1, sym_comment, - [211116] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211226] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11194), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11183), 1, + anon_sym_RPAREN, STATE(7144), 1, sym_comment, - [211129] = 4, + [211239] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11196), 1, - anon_sym_RBRACK, + ACTIONS(11185), 1, + anon_sym_RPAREN, STATE(7145), 1, sym_comment, - [211142] = 4, + [211252] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11198), 1, - anon_sym_LBRACK, + ACTIONS(11187), 1, + anon_sym_RPAREN, STATE(7146), 1, sym_comment, - [211155] = 4, + [211265] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11200), 1, - anon_sym_EQ_GT, + ACTIONS(11189), 1, + anon_sym_RPAREN, STATE(7147), 1, sym_comment, - [211168] = 4, + [211278] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11202), 1, + ACTIONS(11191), 1, sym_identifier, STATE(7148), 1, sym_comment, - [211181] = 4, + [211291] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11204), 1, + ACTIONS(11193), 1, sym_identifier, STATE(7149), 1, sym_comment, - [211194] = 4, + [211304] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11195), 1, + anon_sym_RPAREN, + STATE(7150), 1, + sym_comment, + [211317] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11206), 1, + ACTIONS(11197), 1, sym_identifier, - STATE(7150), 1, + STATE(7151), 1, sym_comment, - [211207] = 4, + [211330] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11208), 1, - anon_sym_RBRACK, - STATE(7151), 1, + ACTIONS(11199), 1, + anon_sym_RPAREN, + STATE(7152), 1, sym_comment, - [211220] = 4, + [211343] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11210), 1, + ACTIONS(11201), 1, sym_identifier, - STATE(7152), 1, - sym_comment, - [211233] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11212), 1, - anon_sym_RPAREN, STATE(7153), 1, sym_comment, - [211246] = 4, + [211356] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11214), 1, + ACTIONS(11203), 1, sym_identifier, STATE(7154), 1, sym_comment, - [211259] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [211369] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(11216), 1, - anon_sym_new, - STATE(7155), 1, - sym_comment, - [211272] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11218), 1, - anon_sym_EQ_GT, - STATE(7156), 1, + ACTIONS(11205), 1, + sym_identifier, + STATE(7155), 1, sym_comment, - [211285] = 4, + [211382] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11220), 1, + ACTIONS(11207), 1, sym_identifier, - STATE(7157), 1, + STATE(7156), 1, sym_comment, - [211298] = 4, + [211395] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11222), 1, - anon_sym_RPAREN, - STATE(7158), 1, + ACTIONS(11209), 1, + anon_sym_LBRACE, + STATE(7157), 1, sym_comment, - [211311] = 4, + [211408] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11224), 1, + ACTIONS(11211), 1, sym_identifier, - STATE(7159), 1, + STATE(7158), 1, sym_comment, - [211324] = 4, + [211421] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11226), 1, + ACTIONS(5155), 1, anon_sym_RPAREN, - STATE(7160), 1, + STATE(7159), 1, sym_comment, - [211337] = 4, + [211434] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9987), 1, + ACTIONS(10182), 1, anon_sym_RBRACK, + STATE(7160), 1, + sym_comment, + [211447] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11213), 1, + sym_identifier, STATE(7161), 1, sym_comment, - [211350] = 4, + [211460] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11228), 1, + ACTIONS(11215), 1, anon_sym_EQ_GT, STATE(7162), 1, sym_comment, - [211363] = 4, + [211473] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11230), 1, + ACTIONS(11217), 1, sym_identifier, STATE(7163), 1, sym_comment, - [211376] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211486] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11232), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11219), 1, + anon_sym_EQ_GT, STATE(7164), 1, sym_comment, - [211389] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211499] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11234), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11221), 1, + anon_sym_DOT, STATE(7165), 1, sym_comment, - [211402] = 4, + [211512] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_is, + ACTIONS(11223), 1, + anon_sym_symbol, STATE(7166), 1, sym_comment, - [211415] = 4, + [211525] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11236), 1, - anon_sym_DOT, + ACTIONS(11225), 1, + sym_identifier, STATE(7167), 1, sym_comment, - [211428] = 4, + [211538] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11238), 1, - anon_sym_RPAREN, + ACTIONS(4920), 1, + anon_sym_in, STATE(7168), 1, sym_comment, - [211441] = 4, + [211551] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11240), 1, + ACTIONS(11227), 1, sym_identifier, STATE(7169), 1, sym_comment, - [211454] = 4, + [211564] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11242), 1, + ACTIONS(11229), 1, sym_identifier, STATE(7170), 1, sym_comment, - [211467] = 4, + [211577] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11244), 1, - anon_sym_EQ_GT, + ACTIONS(11231), 1, + anon_sym_DOT, STATE(7171), 1, sym_comment, - [211480] = 4, + [211590] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5910), 1, + ACTIONS(11233), 1, anon_sym_RPAREN, STATE(7172), 1, sym_comment, - [211493] = 4, + [211603] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11246), 1, - anon_sym_EQ_GT, + ACTIONS(11235), 1, + sym_identifier, STATE(7173), 1, sym_comment, - [211506] = 4, + [211616] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11248), 1, - anon_sym_EQ_GT, + ACTIONS(11237), 1, + sym_identifier, STATE(7174), 1, sym_comment, - [211519] = 4, + [211629] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11250), 1, + ACTIONS(11239), 1, sym_identifier, STATE(7175), 1, sym_comment, - [211532] = 4, + [211642] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11252), 1, - anon_sym_EQ_GT, + ACTIONS(11241), 1, + sym_identifier, STATE(7176), 1, sym_comment, - [211545] = 4, + [211655] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11254), 1, - anon_sym_RBRACK, + ACTIONS(11243), 1, + sym_identifier, STATE(7177), 1, sym_comment, - [211558] = 4, + [211668] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11256), 1, - anon_sym_DOT, + ACTIONS(11245), 1, + anon_sym_new, STATE(7178), 1, sym_comment, - [211571] = 4, + [211681] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11258), 1, - anon_sym_RBRACK, + ACTIONS(11247), 1, + anon_sym_EQ_GT, STATE(7179), 1, sym_comment, - [211584] = 4, + [211694] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11260), 1, - anon_sym_RBRACK, + ACTIONS(5072), 1, + anon_sym_RPAREN, STATE(7180), 1, sym_comment, - [211597] = 4, + [211707] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11262), 1, - anon_sym_EQ, + ACTIONS(11249), 1, + sym_identifier, STATE(7181), 1, sym_comment, - [211610] = 4, + [211720] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11264), 1, - anon_sym_COLON, + ACTIONS(11251), 1, + sym_number, STATE(7182), 1, sym_comment, - [211623] = 4, + [211733] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11266), 1, + ACTIONS(11253), 1, anon_sym_RBRACK, STATE(7183), 1, sym_comment, - [211636] = 4, + [211746] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11268), 1, + ACTIONS(5940), 1, anon_sym_RBRACK, STATE(7184), 1, sym_comment, - [211649] = 4, + [211759] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11270), 1, - anon_sym_RBRACK, + ACTIONS(7540), 1, + anon_sym_is, STATE(7185), 1, sym_comment, - [211662] = 4, + [211772] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11272), 1, - anon_sym_RBRACK, + ACTIONS(11255), 1, + anon_sym_RPAREN, STATE(7186), 1, sym_comment, - [211675] = 4, + [211785] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11274), 1, - anon_sym_RBRACK, + ACTIONS(11257), 1, + sym_identifier, STATE(7187), 1, sym_comment, - [211688] = 4, + [211798] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11276), 1, - anon_sym_RBRACK, + ACTIONS(11259), 1, + anon_sym_readonly, STATE(7188), 1, sym_comment, - [211701] = 4, + [211811] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11278), 1, + ACTIONS(11261), 1, sym_identifier, STATE(7189), 1, sym_comment, - [211714] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211824] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11280), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5934), 1, + anon_sym_RPAREN, STATE(7190), 1, sym_comment, - [211727] = 4, + [211837] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11282), 1, + ACTIONS(11263), 1, anon_sym_RBRACK, STATE(7191), 1, sym_comment, - [211740] = 4, + [211850] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11284), 1, - anon_sym_EQ, + ACTIONS(11265), 1, + anon_sym_RBRACK, STATE(7192), 1, sym_comment, - [211753] = 4, + [211863] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5975), 1, - anon_sym_in, + ACTIONS(4953), 1, + anon_sym_RPAREN, STATE(7193), 1, sym_comment, - [211766] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211876] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11286), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11267), 1, + anon_sym_RBRACK, STATE(7194), 1, sym_comment, - [211779] = 4, + [211889] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11288), 1, - anon_sym_class, + ACTIONS(11269), 1, + anon_sym_RBRACK, STATE(7195), 1, sym_comment, - [211792] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211902] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11290), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11271), 1, + anon_sym_RBRACK, STATE(7196), 1, sym_comment, - [211805] = 4, + [211915] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11292), 1, - anon_sym_EQ_GT, + ACTIONS(5986), 1, + anon_sym_in, STATE(7197), 1, sym_comment, - [211818] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211928] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11294), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11273), 1, + anon_sym_RBRACK, STATE(7198), 1, sym_comment, - [211831] = 4, + [211941] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11296), 1, - anon_sym_EQ, + ACTIONS(11275), 1, + anon_sym_class, STATE(7199), 1, sym_comment, - [211844] = 4, + [211954] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11298), 1, - anon_sym_namespace, + ACTIONS(11277), 1, + anon_sym_RBRACK, STATE(7200), 1, sym_comment, - [211857] = 4, + [211967] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11300), 1, - anon_sym_RBRACK, + ACTIONS(11279), 1, + anon_sym_EQ_GT, STATE(7201), 1, sym_comment, - [211870] = 4, + [211980] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11302), 1, + ACTIONS(11281), 1, anon_sym_RBRACK, STATE(7202), 1, sym_comment, - [211883] = 4, + [211993] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11304), 1, - anon_sym_RBRACK, + ACTIONS(11283), 1, + anon_sym_EQ, STATE(7203), 1, sym_comment, - [211896] = 4, + [212006] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11306), 1, - anon_sym_RBRACK, + ACTIONS(11285), 1, + anon_sym_namespace, STATE(7204), 1, sym_comment, - [211909] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212019] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11308), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11287), 1, + anon_sym_RBRACK, STATE(7205), 1, sym_comment, - [211922] = 4, + [212032] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11310), 1, - anon_sym_EQ_GT, + ACTIONS(11289), 1, + anon_sym_RBRACK, STATE(7206), 1, sym_comment, - [211935] = 4, + [212045] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11312), 1, - anon_sym_RBRACK, + ACTIONS(11291), 1, + anon_sym_EQ_GT, STATE(7207), 1, sym_comment, - [211948] = 4, + [212058] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11314), 1, - anon_sym_RBRACK, + ACTIONS(11293), 1, + anon_sym_EQ_GT, STATE(7208), 1, sym_comment, - [211961] = 4, + [212071] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11316), 1, - anon_sym_EQ_GT, + ACTIONS(11295), 1, + anon_sym_RBRACK, STATE(7209), 1, sym_comment, - [211974] = 4, + [212084] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11318), 1, + ACTIONS(11297), 1, anon_sym_RBRACK, STATE(7210), 1, sym_comment, - [211987] = 4, + [212097] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11320), 1, - anon_sym_EQ_GT, + ACTIONS(11299), 1, + anon_sym_RBRACK, STATE(7211), 1, sym_comment, - [212000] = 4, + [212110] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11322), 1, - anon_sym_EQ_GT, + ACTIONS(11301), 1, + anon_sym_RBRACK, STATE(7212), 1, sym_comment, - [212013] = 4, + [212123] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11324), 1, - anon_sym_RBRACK, + ACTIONS(11303), 1, + anon_sym_EQ_GT, STATE(7213), 1, sym_comment, - [212026] = 4, + [212136] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11326), 1, - anon_sym_EQ, + ACTIONS(11305), 1, + anon_sym_RBRACK, STATE(7214), 1, sym_comment, - [212039] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212149] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11328), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11307), 1, + anon_sym_EQ_GT, STATE(7215), 1, sym_comment, - [212052] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212162] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11330), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11309), 1, + anon_sym_EQ_GT, STATE(7216), 1, sym_comment, - [212065] = 4, + [212175] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11332), 1, + ACTIONS(11311), 1, anon_sym_RBRACK, STATE(7217), 1, sym_comment, - [212078] = 4, + [212188] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11334), 1, - anon_sym_EQ_GT, + ACTIONS(11313), 1, + anon_sym_RBRACK, STATE(7218), 1, sym_comment, - [212091] = 4, + [212201] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9680), 1, - anon_sym_RBRACE, + ACTIONS(11315), 1, + anon_sym_RPAREN, STATE(7219), 1, sym_comment, - [212104] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212214] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11336), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11317), 1, + anon_sym_RBRACK, STATE(7220), 1, sym_comment, - [212117] = 4, + [212227] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11338), 1, - anon_sym_EQ, + ACTIONS(11319), 1, + anon_sym_RBRACK, STATE(7221), 1, sym_comment, - [212130] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212240] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10111), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11321), 1, + anon_sym_RBRACK, STATE(7222), 1, sym_comment, - [212143] = 4, + [212253] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11340), 1, - anon_sym_class, + ACTIONS(11323), 1, + anon_sym_EQ_GT, STATE(7223), 1, sym_comment, - [212156] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212266] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11342), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11325), 1, + anon_sym_RBRACK, STATE(7224), 1, sym_comment, - [212169] = 4, + [212279] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5947), 1, - anon_sym_RBRACK, + ACTIONS(11327), 1, + anon_sym_EQ, STATE(7225), 1, sym_comment, - [212182] = 4, + [212292] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11344), 1, - anon_sym_EQ, + ACTIONS(9994), 1, + sym_identifier, STATE(7226), 1, sym_comment, - [212195] = 4, + [212305] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11346), 1, - anon_sym_RBRACK, + ACTIONS(11329), 1, + anon_sym_class, STATE(7227), 1, sym_comment, - [212208] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212318] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11348), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11331), 1, + anon_sym_RBRACK, STATE(7228), 1, sym_comment, - [212221] = 4, + [212331] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11350), 1, - anon_sym_EQ, + ACTIONS(11333), 1, + anon_sym_RBRACK, STATE(7229), 1, sym_comment, - [212234] = 4, + [212344] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11352), 1, - anon_sym_RBRACK, + ACTIONS(11335), 1, + anon_sym_EQ, STATE(7230), 1, sym_comment, - [212247] = 4, + [212357] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(7067), 1, - anon_sym_is, + ACTIONS(11337), 1, + anon_sym_RBRACK, STATE(7231), 1, sym_comment, - [212260] = 4, + [212370] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11354), 1, - anon_sym_EQ_GT, + ACTIONS(11339), 1, + sym_identifier, STATE(7232), 1, sym_comment, - [212273] = 4, + [212383] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9674), 1, - anon_sym_RBRACK, + ACTIONS(11341), 1, + anon_sym_EQ, STATE(7233), 1, sym_comment, - [212286] = 4, + [212396] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11356), 1, - anon_sym_while, + ACTIONS(11343), 1, + anon_sym_EQ_GT, STATE(7234), 1, sym_comment, - [212299] = 4, + [212409] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11358), 1, - anon_sym_GT, + ACTIONS(11345), 1, + anon_sym_RBRACK, STATE(7235), 1, sym_comment, - [212312] = 4, + [212422] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11360), 1, - anon_sym_RBRACK, + ACTIONS(11347), 1, + anon_sym_COLON, STATE(7236), 1, sym_comment, - [212325] = 4, + [212435] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11362), 1, - anon_sym_new, + ACTIONS(11349), 1, + anon_sym_RBRACK, STATE(7237), 1, sym_comment, - [212338] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212448] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11364), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11351), 1, + anon_sym_RBRACK, STATE(7238), 1, sym_comment, - [212351] = 4, + [212461] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11366), 1, - anon_sym_class, + ACTIONS(11353), 1, + anon_sym_RBRACK, STATE(7239), 1, sym_comment, - [212364] = 4, + [212474] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11368), 1, + ACTIONS(11355), 1, anon_sym_RBRACK, STATE(7240), 1, sym_comment, - [212377] = 4, + [212487] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6154), 1, - anon_sym_in, + ACTIONS(11357), 1, + anon_sym_new, STATE(7241), 1, sym_comment, - [212390] = 4, + [212500] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5047), 1, - anon_sym_RPAREN, + ACTIONS(11359), 1, + anon_sym_EQ_GT, STATE(7242), 1, sym_comment, - [212403] = 4, + [212513] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11370), 1, - anon_sym_RBRACK, + ACTIONS(11361), 1, + anon_sym_EQ_GT, STATE(7243), 1, sym_comment, - [212416] = 4, + [212526] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11372), 1, - anon_sym_COLON, + ACTIONS(11363), 1, + sym_identifier, STATE(7244), 1, sym_comment, - [212429] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212539] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11374), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(6028), 1, + anon_sym_in, STATE(7245), 1, sym_comment, - [212442] = 4, + [212552] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11376), 1, - anon_sym_RBRACK, + ACTIONS(4866), 1, + anon_sym_is, STATE(7246), 1, sym_comment, - [212455] = 4, + [212565] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11378), 1, + ACTIONS(11365), 1, anon_sym_RBRACK, STATE(7247), 1, sym_comment, - [212468] = 4, + [212578] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5900), 1, - anon_sym_RPAREN, + ACTIONS(11367), 1, + anon_sym_COLON, STATE(7248), 1, sym_comment, - [212481] = 4, + [212591] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11380), 1, - anon_sym_EQ_GT, + ACTIONS(11369), 1, + anon_sym_as, STATE(7249), 1, sym_comment, - [212494] = 4, + [212604] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11382), 1, - anon_sym_EQ_GT, + ACTIONS(11371), 1, + anon_sym_RBRACK, STATE(7250), 1, sym_comment, - [212507] = 4, + [212617] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11384), 1, - anon_sym_RBRACK, + ACTIONS(11373), 1, + anon_sym_from, STATE(7251), 1, sym_comment, - [212520] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212630] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11386), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11375), 1, + anon_sym_EQ_GT, STATE(7252), 1, sym_comment, - [212533] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212643] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11388), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(10274), 1, + anon_sym_RBRACE, STATE(7253), 1, sym_comment, - [212546] = 4, + [212656] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11390), 1, - anon_sym_EQ, + ACTIONS(11377), 1, + sym_identifier, STATE(7254), 1, sym_comment, - [212559] = 4, + [212669] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11392), 1, - sym_regex_pattern, + ACTIONS(11379), 1, + sym_identifier, STATE(7255), 1, sym_comment, - [212572] = 4, + [212682] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11394), 1, + ACTIONS(11381), 1, anon_sym_RBRACK, STATE(7256), 1, sym_comment, - [212585] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212695] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11396), 1, - anon_sym_SLASH2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11383), 1, + anon_sym_EQ_GT, STATE(7257), 1, sym_comment, - [212598] = 4, + [212708] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11398), 1, + ACTIONS(10260), 1, anon_sym_RBRACK, STATE(7258), 1, sym_comment, - [212611] = 4, + [212721] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6244), 1, - anon_sym_in, + ACTIONS(11385), 1, + sym_identifier, STATE(7259), 1, sym_comment, - [212624] = 4, + [212734] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11400), 1, + ACTIONS(11387), 1, anon_sym_RBRACK, STATE(7260), 1, sym_comment, - [212637] = 4, + [212747] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11402), 1, - anon_sym_EQ, + ACTIONS(11389), 1, + anon_sym_RBRACK, STATE(7261), 1, sym_comment, - [212650] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212760] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11404), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11391), 1, + anon_sym_RBRACK, STATE(7262), 1, sym_comment, - [212663] = 4, + [212773] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11406), 1, - anon_sym_from, + ACTIONS(11393), 1, + anon_sym_RBRACK, STATE(7263), 1, sym_comment, - [212676] = 4, + [212786] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11408), 1, - anon_sym_EQ_GT, + ACTIONS(11395), 1, + anon_sym_RBRACK, STATE(7264), 1, sym_comment, - [212689] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212799] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9607), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11397), 1, + anon_sym_EQ, STATE(7265), 1, sym_comment, - [212702] = 4, + [212812] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5793), 1, - anon_sym_COLON, + ACTIONS(11399), 1, + anon_sym_RBRACK, STATE(7266), 1, sym_comment, - [212715] = 4, + [212825] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5935), 1, - anon_sym_RPAREN, + ACTIONS(11401), 1, + anon_sym_RBRACK, STATE(7267), 1, sym_comment, - [212728] = 4, + [212838] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11410), 1, - anon_sym_EQ, + ACTIONS(11403), 1, + anon_sym_EQ_GT, STATE(7268), 1, sym_comment, - [212741] = 4, + [212851] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5933), 1, - anon_sym_RPAREN, + ACTIONS(11405), 1, + anon_sym_EQ_GT, STATE(7269), 1, sym_comment, - [212754] = 4, + [212864] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5928), 1, - anon_sym_RPAREN, + ACTIONS(11407), 1, + anon_sym_symbol, STATE(7270), 1, sym_comment, - [212767] = 4, + [212877] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11412), 1, + ACTIONS(11409), 1, sym_identifier, STATE(7271), 1, sym_comment, - [212780] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212890] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11414), 1, - anon_sym_SLASH2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11411), 1, + anon_sym_EQ, STATE(7272), 1, sym_comment, - [212793] = 4, + [212903] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11416), 1, - anon_sym_EQ, + ACTIONS(11413), 1, + sym_number, STATE(7273), 1, sym_comment, - [212806] = 4, + [212916] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11418), 1, - anon_sym_target, + ACTIONS(11415), 1, + anon_sym_RPAREN, STATE(7274), 1, sym_comment, - [212819] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212929] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11420), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11417), 1, + anon_sym_RBRACK, STATE(7275), 1, sym_comment, - [212832] = 4, + [212942] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11422), 1, + ACTIONS(11419), 1, sym_identifier, STATE(7276), 1, sym_comment, - [212845] = 4, + [212955] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7507), 1, - anon_sym_is, + ACTIONS(11421), 1, + sym_identifier, STATE(7277), 1, sym_comment, - [212858] = 4, + [212968] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11424), 1, - anon_sym_EQ_GT, + ACTIONS(11423), 1, + anon_sym_EQ, STATE(7278), 1, sym_comment, - [212871] = 4, + [212981] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9521), 1, - anon_sym_EQ_GT, + ACTIONS(11425), 1, + sym_identifier, STATE(7279), 1, sym_comment, - [212884] = 4, + [212994] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5898), 1, + ACTIONS(11427), 1, anon_sym_RBRACK, STATE(7280), 1, sym_comment, - [212897] = 4, + [213007] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9541), 1, - anon_sym_EQ_GT, + ACTIONS(11429), 1, + anon_sym_RBRACK, STATE(7281), 1, sym_comment, - [212910] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213020] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11426), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11431), 1, + anon_sym_RBRACK, STATE(7282), 1, sym_comment, - [212923] = 4, + [213033] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9652), 1, - anon_sym_LBRACE, + ACTIONS(11433), 1, + sym_identifier, STATE(7283), 1, sym_comment, - [212936] = 4, + [213046] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11428), 1, + ACTIONS(11435), 1, sym_identifier, STATE(7284), 1, sym_comment, - [212949] = 4, + [213059] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5117), 1, - anon_sym_RPAREN, + ACTIONS(11437), 1, + anon_sym_EQ, STATE(7285), 1, sym_comment, - [212962] = 4, + [213072] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11430), 1, - anon_sym_EQ_GT, + ACTIONS(11439), 1, + sym_identifier, STATE(7286), 1, sym_comment, - [212975] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213085] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11432), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11441), 1, + anon_sym_RBRACK, STATE(7287), 1, sym_comment, - [212988] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213098] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11434), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11443), 1, + anon_sym_RBRACK, STATE(7288), 1, sym_comment, - [213001] = 4, + [213111] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11436), 1, - anon_sym_EQ_GT, + ACTIONS(11445), 1, + anon_sym_RBRACK, STATE(7289), 1, sym_comment, - [213014] = 4, + [213124] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11438), 1, - anon_sym_EQ_GT, + ACTIONS(10192), 1, + anon_sym_RBRACE, STATE(7290), 1, sym_comment, - [213027] = 4, + [213137] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11440), 1, + ACTIONS(11447), 1, anon_sym_RBRACK, STATE(7291), 1, sym_comment, - [213040] = 4, + [213150] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11442), 1, - anon_sym_EQ_GT, + ACTIONS(11449), 1, + sym_identifier, STATE(7292), 1, sym_comment, - [213053] = 4, + [213163] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11444), 1, - sym_identifier, + ACTIONS(11451), 1, + anon_sym_SLASH2, STATE(7293), 1, sym_comment, - [213066] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213176] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11446), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11453), 1, + anon_sym_EQ, STATE(7294), 1, sym_comment, - [213079] = 4, + [213189] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11448), 1, - anon_sym_EQ, + ACTIONS(11455), 1, + anon_sym_RBRACK, STATE(7295), 1, sym_comment, - [213092] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213202] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11450), 1, - anon_sym_SLASH2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5958), 1, + anon_sym_RPAREN, STATE(7296), 1, sym_comment, - [213105] = 4, + [213215] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_in, + ACTIONS(11457), 1, + anon_sym_EQ_GT, STATE(7297), 1, sym_comment, - [213118] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213228] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11452), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11459), 1, + anon_sym_class, STATE(7298), 1, sym_comment, - [213131] = 4, + [213241] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11454), 1, + ACTIONS(11461), 1, anon_sym_EQ_GT, STATE(7299), 1, sym_comment, - [213144] = 4, + [213254] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11456), 1, - anon_sym_while, + ACTIONS(5324), 1, + anon_sym_RPAREN, STATE(7300), 1, sym_comment, - [213157] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213267] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11458), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11463), 1, + anon_sym_EQ, STATE(7301), 1, sym_comment, - [213170] = 4, + [213280] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_EQ, + ACTIONS(11465), 1, + anon_sym_EQ_GT, STATE(7302), 1, sym_comment, - [213183] = 4, + [213293] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11460), 1, - anon_sym_EQ_GT, + ACTIONS(6255), 1, + anon_sym_in, STATE(7303), 1, sym_comment, - [213196] = 4, + [213306] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11462), 1, - anon_sym_RPAREN, + ACTIONS(11467), 1, + anon_sym_RBRACK, STATE(7304), 1, sym_comment, - [213209] = 4, + [213319] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, - anon_sym_RPAREN, + ACTIONS(11469), 1, + anon_sym_RBRACK, STATE(7305), 1, sym_comment, - [213222] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213332] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11464), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11471), 1, + anon_sym_RBRACK, STATE(7306), 1, sym_comment, - [213235] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213345] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11466), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11473), 1, + anon_sym_RBRACK, STATE(7307), 1, sym_comment, - [213248] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213358] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11468), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11475), 1, + anon_sym_RBRACK, STATE(7308), 1, sym_comment, - [213261] = 4, + [213371] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5003), 1, - anon_sym_RPAREN, + ACTIONS(11477), 1, + anon_sym_RBRACK, STATE(7309), 1, sym_comment, - [213274] = 4, + [213384] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11470), 1, + ACTIONS(11479), 1, sym_identifier, STATE(7310), 1, sym_comment, - [213287] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213397] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11472), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11481), 1, + anon_sym_RBRACK, STATE(7311), 1, sym_comment, - [213300] = 4, + [213410] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11474), 1, - anon_sym_EQ_GT, + ACTIONS(9802), 1, + sym_identifier, STATE(7312), 1, sym_comment, - [213313] = 4, + [213423] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_RPAREN, + ACTIONS(11483), 1, + anon_sym_RBRACK, STATE(7313), 1, sym_comment, - [213326] = 4, + [213436] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10180), 1, + ACTIONS(11485), 1, anon_sym_RBRACK, STATE(7314), 1, sym_comment, - [213339] = 4, + [213449] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11478), 1, - sym_number, + ACTIONS(11487), 1, + anon_sym_RBRACK, STATE(7315), 1, sym_comment, - [213352] = 4, + [213462] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11480), 1, + ACTIONS(11489), 1, sym_identifier, STATE(7316), 1, sym_comment, - [213365] = 4, + [213475] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11482), 1, - anon_sym_symbol, + ACTIONS(11491), 1, + anon_sym_SLASH2, STATE(7317), 1, sym_comment, - [213378] = 4, + [213488] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10598), 1, - anon_sym_from, + ACTIONS(11493), 1, + anon_sym_EQ, STATE(7318), 1, sym_comment, - [213391] = 4, + [213501] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11484), 1, - anon_sym_RPAREN, + ACTIONS(11495), 1, + anon_sym_target, STATE(7319), 1, sym_comment, - [213404] = 4, + [213514] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11486), 1, - anon_sym_RBRACK, + ACTIONS(11497), 1, + anon_sym_EQ_GT, STATE(7320), 1, sym_comment, - [213417] = 4, + [213527] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11488), 1, - anon_sym_as, + ACTIONS(11499), 1, + anon_sym_RBRACK, STATE(7321), 1, sym_comment, - [213430] = 4, + [213540] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9632), 1, - anon_sym_GT, + ACTIONS(11501), 1, + anon_sym_EQ_GT, STATE(7322), 1, sym_comment, - [213443] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213553] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11490), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9514), 1, + anon_sym_EQ_GT, STATE(7323), 1, sym_comment, - [213456] = 4, + [213566] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(6383), 1, - anon_sym_in, + ACTIONS(9516), 1, + anon_sym_EQ_GT, STATE(7324), 1, sym_comment, - [213469] = 4, + [213579] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11492), 1, - anon_sym_EQ_GT, + ACTIONS(10122), 1, + anon_sym_LBRACE, STATE(7325), 1, sym_comment, - [213482] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213592] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11494), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11503), 1, + anon_sym_RBRACK, STATE(7326), 1, sym_comment, - [213495] = 4, + [213605] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11496), 1, - anon_sym_EQ_GT, + ACTIONS(11505), 1, + anon_sym_RBRACK, STATE(7327), 1, sym_comment, - [213508] = 4, + [213618] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11498), 1, - anon_sym_EQ_GT, + ACTIONS(6422), 1, + anon_sym_in, STATE(7328), 1, sym_comment, - [213521] = 4, + [213631] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11500), 1, + ACTIONS(11507), 1, anon_sym_EQ_GT, STATE(7329), 1, sym_comment, - [213534] = 4, + [213644] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11502), 1, - anon_sym_EQ_GT, + ACTIONS(11509), 1, + anon_sym_RBRACK, STATE(7330), 1, sym_comment, - [213547] = 4, + [213657] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11504), 1, - anon_sym_namespace, + ACTIONS(11511), 1, + anon_sym_EQ_GT, STATE(7331), 1, sym_comment, - [213560] = 4, + [213670] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5005), 1, - anon_sym_RPAREN, + ACTIONS(11513), 1, + anon_sym_EQ_GT, STATE(7332), 1, sym_comment, - [213573] = 4, + [213683] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11506), 1, + ACTIONS(11515), 1, anon_sym_EQ_GT, STATE(7333), 1, sym_comment, - [213586] = 4, + [213696] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11508), 1, + ACTIONS(11517), 1, anon_sym_RBRACK, STATE(7334), 1, sym_comment, - [213599] = 4, + [213709] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11510), 1, - anon_sym_EQ, + ACTIONS(11519), 1, + anon_sym_RBRACK, STATE(7335), 1, sym_comment, - [213612] = 4, + [213722] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5260), 1, - anon_sym_RPAREN, + ACTIONS(11521), 1, + anon_sym_RBRACK, STATE(7336), 1, sym_comment, - [213625] = 4, + [213735] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11512), 1, - anon_sym_EQ, + ACTIONS(11523), 1, + anon_sym_RBRACK, STATE(7337), 1, sym_comment, - [213638] = 4, + [213748] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11514), 1, - anon_sym_EQ_GT, + ACTIONS(11525), 1, + anon_sym_RBRACK, STATE(7338), 1, sym_comment, - [213651] = 4, + [213761] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11516), 1, + ACTIONS(11527), 1, anon_sym_RBRACK, STATE(7339), 1, sym_comment, - [213664] = 4, + [213774] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11518), 1, + ACTIONS(11529), 1, anon_sym_RBRACK, STATE(7340), 1, sym_comment, - [213677] = 4, + [213787] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11520), 1, - anon_sym_RBRACK, + ACTIONS(11531), 1, + anon_sym_EQ, STATE(7341), 1, sym_comment, - [213690] = 4, + [213800] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11522), 1, - anon_sym_RBRACK, + ACTIONS(11533), 1, + anon_sym_EQ_GT, STATE(7342), 1, sym_comment, - [213703] = 4, + [213813] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10241), 1, - anon_sym_GT, + ACTIONS(11535), 1, + anon_sym_EQ_GT, STATE(7343), 1, sym_comment, - [213716] = 4, + [213826] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11524), 1, - anon_sym_RPAREN, + ACTIONS(11537), 1, + sym_identifier, STATE(7344), 1, sym_comment, - [213729] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213839] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11526), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(7391), 1, + anon_sym_is, STATE(7345), 1, sym_comment, - [213742] = 4, + [213852] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11528), 1, - anon_sym_function, + ACTIONS(11539), 1, + anon_sym_EQ_GT, STATE(7346), 1, sym_comment, - [213755] = 4, + [213865] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11530), 1, + ACTIONS(11541), 1, sym_identifier, STATE(7347), 1, sym_comment, - [213768] = 4, + [213878] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11532), 1, + ACTIONS(11543), 1, sym_identifier, STATE(7348), 1, sym_comment, - [213781] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213891] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8365), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11545), 1, + anon_sym_while, STATE(7349), 1, sym_comment, - [213794] = 4, + [213904] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5858), 1, - anon_sym_RBRACE, + ACTIONS(11547), 1, + anon_sym_EQ_GT, STATE(7350), 1, sym_comment, - [213807] = 4, + [213917] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(10245), 1, + ACTIONS(10036), 1, anon_sym_RBRACK, STATE(7351), 1, sym_comment, - [213820] = 4, + [213930] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11534), 1, - anon_sym_class, + ACTIONS(5003), 1, + anon_sym_RPAREN, STATE(7352), 1, sym_comment, - [213833] = 4, + [213943] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11536), 1, - anon_sym_namespace, + ACTIONS(10020), 1, + anon_sym_GT, STATE(7353), 1, sym_comment, - [213846] = 4, + [213956] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11538), 1, + ACTIONS(11549), 1, anon_sym_EQ_GT, STATE(7354), 1, sym_comment, - [213859] = 4, + [213969] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5039), 1, - anon_sym_RPAREN, + ACTIONS(11551), 1, + anon_sym_symbol, STATE(7355), 1, sym_comment, - [213872] = 4, + [213982] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11540), 1, - anon_sym_RBRACK, + ACTIONS(11553), 1, + anon_sym_class, STATE(7356), 1, sym_comment, - [213885] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213995] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11542), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11555), 1, + anon_sym_namespace, STATE(7357), 1, sym_comment, - [213898] = 4, + [214008] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11544), 1, + ACTIONS(11557), 1, sym_identifier, STATE(7358), 1, sym_comment, - [213911] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214021] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11546), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11559), 1, + sym_number, STATE(7359), 1, sym_comment, - [213924] = 4, + [214034] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11548), 1, - anon_sym_EQ_GT, + ACTIONS(11561), 1, + anon_sym_RPAREN, STATE(7360), 1, sym_comment, - [213937] = 4, + [214047] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11550), 1, - anon_sym_EQ_GT, + ACTIONS(11563), 1, + anon_sym_SLASH2, STATE(7361), 1, sym_comment, - [213950] = 4, + [214060] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9914), 1, + ACTIONS(11565), 1, sym_identifier, STATE(7362), 1, sym_comment, - [213963] = 4, + [214073] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11552), 1, - anon_sym_class, + ACTIONS(5829), 1, + anon_sym_in, STATE(7363), 1, sym_comment, - [213976] = 4, + [214086] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11554), 1, - anon_sym_EQ_GT, + ACTIONS(11567), 1, + sym_identifier, STATE(7364), 1, sym_comment, - [213989] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214099] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11556), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11569), 1, + anon_sym_EQ_GT, STATE(7365), 1, sym_comment, - [214002] = 4, + [214112] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11558), 1, - anon_sym_EQ, + ACTIONS(9677), 1, + sym_identifier, STATE(7366), 1, sym_comment, - [214015] = 4, + [214125] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11560), 1, - anon_sym_target, + ACTIONS(11571), 1, + anon_sym_class, STATE(7367), 1, sym_comment, - [214028] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214138] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11562), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11573), 1, + anon_sym_EQ_GT, STATE(7368), 1, sym_comment, - [214041] = 4, + [214151] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11564), 1, - anon_sym_EQ, + ACTIONS(3125), 1, + anon_sym_LBRACE, STATE(7369), 1, sym_comment, - [214054] = 4, + [214164] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11566), 1, - anon_sym_new, + ACTIONS(11575), 1, + anon_sym_EQ, STATE(7370), 1, sym_comment, - [214067] = 4, + [214177] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11568), 1, - anon_sym_EQ_GT, + ACTIONS(11577), 1, + anon_sym_EQ, STATE(7371), 1, sym_comment, - [214080] = 4, + [214190] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11570), 1, + ACTIONS(11579), 1, sym_identifier, STATE(7372), 1, sym_comment, - [214093] = 4, + [214203] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11572), 1, + ACTIONS(11581), 1, anon_sym_EQ, STATE(7373), 1, sym_comment, - [214106] = 4, + [214216] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11574), 1, - anon_sym_COLON, + ACTIONS(11583), 1, + anon_sym_new, STATE(7374), 1, sym_comment, - [214119] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214229] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11576), 1, - anon_sym_SLASH2, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11585), 1, + anon_sym_EQ, STATE(7375), 1, sym_comment, - [214132] = 4, + [214242] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4859), 1, - anon_sym_is, + ACTIONS(11587), 1, + sym_identifier, STATE(7376), 1, sym_comment, - [214145] = 4, + [214255] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5847), 1, - anon_sym_RBRACK, + ACTIONS(3083), 1, + anon_sym_LBRACE, STATE(7377), 1, sym_comment, - [214158] = 4, + [214268] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5866), 1, - anon_sym_RPAREN, + ACTIONS(11589), 1, + anon_sym_COLON, STATE(7378), 1, sym_comment, - [214171] = 4, + [214281] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11578), 1, + ACTIONS(11591), 1, anon_sym_EQ_GT, STATE(7379), 1, sym_comment, - [214184] = 4, + [214294] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11580), 1, - anon_sym_EQ_GT, + ACTIONS(10707), 1, + anon_sym_from, STATE(7380), 1, sym_comment, - [214197] = 4, + [214307] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(9780), 1, - anon_sym_EQ, + ACTIONS(11593), 1, + anon_sym_EQ_GT, STATE(7381), 1, sym_comment, - [214210] = 4, + [214320] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11582), 1, + ACTIONS(11595), 1, anon_sym_EQ_GT, STATE(7382), 1, sym_comment, - [214223] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214333] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11584), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11597), 1, + anon_sym_as, STATE(7383), 1, sym_comment, - [214236] = 4, + [214346] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11586), 1, - anon_sym_EQ, + ACTIONS(5271), 1, + anon_sym_RPAREN, STATE(7384), 1, sym_comment, - [214249] = 4, + [214359] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11588), 1, - ts_builtin_sym_end, + ACTIONS(11599), 1, + anon_sym_EQ, STATE(7385), 1, sym_comment, - [214262] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214372] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11590), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11601), 1, + anon_sym_EQ_GT, STATE(7386), 1, sym_comment, - [214275] = 4, + [214385] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11592), 1, - anon_sym_class, + ACTIONS(11603), 1, + anon_sym_EQ, STATE(7387), 1, sym_comment, - [214288] = 4, + [214398] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11594), 1, - anon_sym_namespace, + ACTIONS(5498), 1, + anon_sym_in, STATE(7388), 1, sym_comment, - [214301] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214411] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11596), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11605), 1, + anon_sym_EQ, STATE(7389), 1, sym_comment, - [214314] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214424] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11598), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11607), 1, + anon_sym_class, STATE(7390), 1, sym_comment, - [214327] = 4, + [214437] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11600), 1, - anon_sym_RBRACK, + ACTIONS(11609), 1, + anon_sym_namespace, STATE(7391), 1, sym_comment, - [214340] = 4, + [214450] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11602), 1, - anon_sym_RPAREN, + ACTIONS(11611), 1, + sym_identifier, STATE(7392), 1, sym_comment, - [214353] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214463] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11604), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(5178), 1, + anon_sym_RPAREN, STATE(7393), 1, sym_comment, - [214366] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214476] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11606), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11613), 1, + anon_sym_RBRACK, STATE(7394), 1, sym_comment, - [214379] = 4, + [214489] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11608), 1, + ACTIONS(11615), 1, anon_sym_RBRACK, STATE(7395), 1, sym_comment, - [214392] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214502] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9828), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11617), 1, + anon_sym_RBRACK, STATE(7396), 1, sym_comment, - [214405] = 4, + [214515] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11610), 1, - anon_sym_class, + ACTIONS(11619), 1, + anon_sym_RBRACK, STATE(7397), 1, sym_comment, - [214418] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214528] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11612), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11621), 1, + anon_sym_RBRACK, STATE(7398), 1, sym_comment, - [214431] = 4, + [214541] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11614), 1, - anon_sym_class, + ACTIONS(11623), 1, + anon_sym_RBRACK, STATE(7399), 1, sym_comment, - [214444] = 4, + [214554] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11616), 1, - anon_sym_EQ, + ACTIONS(9663), 1, + sym_identifier, STATE(7400), 1, sym_comment, - [214457] = 4, + [214567] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11618), 1, - anon_sym_RBRACK, + ACTIONS(11625), 1, + anon_sym_class, STATE(7401), 1, sym_comment, - [214470] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214580] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11620), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11627), 1, + anon_sym_RBRACK, STATE(7402), 1, sym_comment, - [214483] = 4, + [214593] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11622), 1, - anon_sym_EQ, + ACTIONS(11629), 1, + anon_sym_RBRACK, STATE(7403), 1, sym_comment, - [214496] = 4, + [214606] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11624), 1, - anon_sym_new, + ACTIONS(11631), 1, + anon_sym_EQ, STATE(7404), 1, sym_comment, - [214509] = 4, + [214619] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11626), 1, + ACTIONS(11633), 1, anon_sym_RBRACK, STATE(7405), 1, sym_comment, - [214522] = 4, + [214632] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11628), 1, + ACTIONS(11635), 1, sym_identifier, STATE(7406), 1, sym_comment, - [214535] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214645] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11630), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11637), 1, + anon_sym_EQ, STATE(7407), 1, sym_comment, - [214548] = 4, + [214658] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11632), 1, - anon_sym_COLON, + ACTIONS(11639), 1, + anon_sym_new, STATE(7408), 1, sym_comment, - [214561] = 4, + [214671] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11634), 1, - anon_sym_RPAREN, + ACTIONS(11641), 1, + anon_sym_RBRACK, STATE(7409), 1, sym_comment, - [214574] = 4, + [214684] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11636), 1, - anon_sym_RBRACK, + ACTIONS(11643), 1, + sym_identifier, STATE(7410), 1, sym_comment, - [214587] = 4, + [214697] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5396), 1, - anon_sym_in, + ACTIONS(11645), 1, + anon_sym_EQ_GT, STATE(7411), 1, sym_comment, - [214600] = 4, + [214710] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11638), 1, - anon_sym_symbol, + ACTIONS(11647), 1, + anon_sym_COLON, STATE(7412), 1, sym_comment, - [214613] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214723] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11640), 1, - sym_regex_pattern, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11649), 1, + anon_sym_RBRACK, STATE(7413), 1, sym_comment, - [214626] = 4, + [214736] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11642), 1, - anon_sym_RPAREN, + ACTIONS(11651), 1, + anon_sym_function, STATE(7414), 1, sym_comment, - [214639] = 4, + [214749] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11644), 1, - anon_sym_class, + ACTIONS(11653), 1, + sym_identifier, STATE(7415), 1, sym_comment, - [214652] = 4, + [214762] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11646), 1, - anon_sym_namespace, + ACTIONS(8359), 1, + sym_identifier, STATE(7416), 1, sym_comment, - [214665] = 4, + [214775] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11648), 1, - anon_sym_RBRACK, + ACTIONS(11655), 1, + anon_sym_namespace, STATE(7417), 1, sym_comment, - [214678] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214788] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11650), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11657), 1, + anon_sym_RBRACK, STATE(7418), 1, sym_comment, - [214691] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214801] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11652), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11659), 1, + anon_sym_class, STATE(7419), 1, sym_comment, - [214704] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214814] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11654), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11661), 1, + anon_sym_namespace, STATE(7420), 1, sym_comment, - [214717] = 4, + [214827] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11656), 1, - anon_sym_from, + ACTIONS(11663), 1, + anon_sym_RBRACK, STATE(7421), 1, sym_comment, - [214730] = 4, + [214840] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11658), 1, - anon_sym_RPAREN, + ACTIONS(11665), 1, + anon_sym_RBRACK, STATE(7422), 1, sym_comment, - [214743] = 4, + [214853] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11660), 1, - anon_sym_EQ_GT, + ACTIONS(11667), 1, + anon_sym_RBRACK, STATE(7423), 1, sym_comment, - [214756] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214866] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9760), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11669), 1, + anon_sym_RBRACK, STATE(7424), 1, sym_comment, - [214769] = 4, + [214879] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11662), 1, - anon_sym_class, + ACTIONS(11671), 1, + anon_sym_RBRACK, STATE(7425), 1, sym_comment, - [214782] = 4, + [214892] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11664), 1, + ACTIONS(11673), 1, anon_sym_RBRACK, STATE(7426), 1, sym_comment, - [214795] = 4, + [214905] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5845), 1, - anon_sym_RPAREN, + ACTIONS(11675), 1, + anon_sym_RBRACK, STATE(7427), 1, sym_comment, - [214808] = 4, + [214918] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11666), 1, - anon_sym_EQ, + ACTIONS(9944), 1, + sym_identifier, STATE(7428), 1, sym_comment, - [214821] = 4, + [214931] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11668), 1, - anon_sym_RBRACK, + ACTIONS(11677), 1, + anon_sym_class, STATE(7429), 1, sym_comment, - [214834] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214944] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11670), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11679), 1, + anon_sym_RBRACK, STATE(7430), 1, sym_comment, - [214847] = 4, + [214957] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11672), 1, + ACTIONS(10397), 1, anon_sym_EQ, STATE(7431), 1, sym_comment, - [214860] = 4, + [214970] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11674), 1, - anon_sym_new, + ACTIONS(11681), 1, + anon_sym_EQ, STATE(7432), 1, sym_comment, - [214873] = 4, + [214983] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11676), 1, - anon_sym_RBRACK, + ACTIONS(11683), 1, + anon_sym_EQ_GT, STATE(7433), 1, sym_comment, - [214886] = 4, + [214996] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11678), 1, + ACTIONS(11685), 1, sym_identifier, STATE(7434), 1, sym_comment, - [214899] = 4, + [215009] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11680), 1, - sym_number, + ACTIONS(11687), 1, + anon_sym_EQ, STATE(7435), 1, sym_comment, - [214912] = 4, + [215022] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11682), 1, - anon_sym_COLON, + ACTIONS(11689), 1, + anon_sym_new, STATE(7436), 1, sym_comment, - [214925] = 4, + [215035] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_RPAREN, + ACTIONS(11691), 1, + anon_sym_EQ_GT, STATE(7437), 1, sym_comment, - [214938] = 4, + [215048] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11684), 1, - anon_sym_RBRACK, + ACTIONS(11693), 1, + sym_identifier, STATE(7438), 1, sym_comment, - [214951] = 4, + [215061] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11686), 1, - anon_sym_RBRACK, + ACTIONS(11695), 1, + anon_sym_RPAREN, STATE(7439), 1, sym_comment, - [214964] = 4, + [215074] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11688), 1, - anon_sym_class, + ACTIONS(11697), 1, + anon_sym_COLON, STATE(7440), 1, sym_comment, - [214977] = 4, + [215087] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11690), 1, - anon_sym_namespace, + ACTIONS(11699), 1, + anon_sym_EQ_GT, STATE(7441), 1, sym_comment, - [214990] = 4, + [215100] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11692), 1, - anon_sym_RPAREN, + ACTIONS(11701), 1, + ts_builtin_sym_end, STATE(7442), 1, sym_comment, - [215003] = 4, + [215113] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11694), 1, - sym_number, + ACTIONS(11703), 1, + sym_identifier, STATE(7443), 1, sym_comment, - [215016] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215126] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11696), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11705), 1, + anon_sym_class, STATE(7444), 1, sym_comment, - [215029] = 4, + [215139] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11698), 1, - anon_sym_symbol, + ACTIONS(11707), 1, + anon_sym_namespace, STATE(7445), 1, sym_comment, - [215042] = 4, + [215152] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11700), 1, + ACTIONS(11709), 1, anon_sym_EQ_GT, STATE(7446), 1, sym_comment, - [215055] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215165] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9714), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11711), 1, + anon_sym_EQ_GT, STATE(7447), 1, sym_comment, - [215068] = 4, + [215178] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11702), 1, - anon_sym_class, + ACTIONS(5861), 1, + anon_sym_RPAREN, STATE(7448), 1, sym_comment, - [215081] = 4, + [215191] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11704), 1, - anon_sym_COLON, + ACTIONS(11713), 1, + sym_identifier, STATE(7449), 1, sym_comment, - [215094] = 4, + [215204] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11706), 1, + ACTIONS(11715), 1, anon_sym_EQ, STATE(7450), 1, sym_comment, - [215107] = 4, + [215217] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11708), 1, - anon_sym_EQ_GT, + ACTIONS(10132), 1, + sym_identifier, STATE(7451), 1, sym_comment, - [215120] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215230] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11710), 1, - sym_identifier, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11717), 1, + anon_sym_class, STATE(7452), 1, sym_comment, - [215133] = 4, + [215243] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11712), 1, - anon_sym_EQ, + ACTIONS(11719), 1, + anon_sym_class, STATE(7453), 1, sym_comment, - [215146] = 4, + [215256] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11714), 1, - anon_sym_RBRACK, + ACTIONS(11721), 1, + anon_sym_EQ, STATE(7454), 1, sym_comment, - [215159] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11716), 1, - sym_identifier, - STATE(7455), 1, - sym_comment, - [215172] = 4, + [215269] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11718), 1, - anon_sym_COLON, - STATE(7456), 1, + ACTIONS(5877), 1, + anon_sym_is, + STATE(7455), 1, sym_comment, - [215185] = 4, + [215282] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11720), 1, + ACTIONS(11723), 1, sym_identifier, - STATE(7457), 1, + STATE(7456), 1, sym_comment, - [215198] = 4, + [215295] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11722), 1, - anon_sym_RBRACK, - STATE(7458), 1, + ACTIONS(11725), 1, + anon_sym_EQ, + STATE(7457), 1, sym_comment, - [215211] = 4, + [215308] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11724), 1, - anon_sym_RBRACK, - STATE(7459), 1, + ACTIONS(11727), 1, + anon_sym_SLASH2, + STATE(7458), 1, sym_comment, - [215224] = 4, + [215321] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8497), 1, + ACTIONS(11729), 1, sym_identifier, + STATE(7459), 1, + sym_comment, + [215334] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(11731), 1, + anon_sym_COLON, STATE(7460), 1, sym_comment, - [215237] = 4, + [215347] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11726), 1, - anon_sym_function, + ACTIONS(5410), 1, + anon_sym_in, STATE(7461), 1, sym_comment, - [215250] = 4, + [215360] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11728), 1, - anon_sym_RBRACK, + ACTIONS(11733), 1, + sym_regex_pattern, STATE(7462), 1, sym_comment, - [215263] = 4, + [215373] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11730), 1, - anon_sym_RBRACK, + ACTIONS(11735), 1, + anon_sym_EQ_GT, STATE(7463), 1, sym_comment, - [215276] = 4, + [215386] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11732), 1, + ACTIONS(8698), 1, sym_identifier, STATE(7464), 1, sym_comment, - [215289] = 4, + [215399] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11734), 1, - anon_sym_RBRACK, + ACTIONS(11737), 1, + anon_sym_function, STATE(7465), 1, sym_comment, - [215302] = 4, + [215412] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11736), 1, - anon_sym_RBRACK, + ACTIONS(11739), 1, + sym_identifier, STATE(7466), 1, sym_comment, - [215315] = 4, + [215425] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8483), 1, + ACTIONS(11741), 1, sym_identifier, STATE(7467), 1, sym_comment, - [215328] = 4, + [215438] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11738), 1, - anon_sym_function, + ACTIONS(11743), 1, + sym_identifier, STATE(7468), 1, sym_comment, - [215341] = 4, + [215451] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, - anon_sym_RBRACK, + ACTIONS(11745), 1, + anon_sym_EQ_GT, STATE(7469), 1, sym_comment, - [215354] = 4, + [215464] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9669), 1, + anon_sym_RBRACK, + STATE(7470), 1, + sym_comment, + [215477] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11742), 1, + ACTIONS(8700), 1, sym_identifier, - STATE(7470), 1, + STATE(7471), 1, sym_comment, - [215367] = 4, + [215490] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11744), 1, - anon_sym_RBRACK, - STATE(7471), 1, + ACTIONS(11747), 1, + anon_sym_function, + STATE(7472), 1, + sym_comment, + [215503] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, + aux_sym_comment_token1, + ACTIONS(9641), 1, + anon_sym_GT, + STATE(7473), 1, sym_comment, - [215380] = 4, + [215516] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8473), 1, + ACTIONS(11749), 1, sym_identifier, - STATE(7472), 1, + STATE(7474), 1, sym_comment, - [215393] = 4, + [215529] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(11751), 1, + sym_identifier, + STATE(7475), 1, + sym_comment, + [215542] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(11746), 1, - anon_sym_function, - STATE(7473), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8712), 1, + sym_identifier, + STATE(7476), 1, sym_comment, - [215406] = 4, + [215555] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3114), 1, - anon_sym_LBRACE, - STATE(7474), 1, + ACTIONS(11753), 1, + anon_sym_function, + STATE(7477), 1, sym_comment, - [215419] = 4, + [215568] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11748), 1, + ACTIONS(11755), 1, sym_identifier, - STATE(7475), 1, + STATE(7478), 1, sym_comment, - [215432] = 4, + [215581] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(11757), 1, + sym_identifier, + STATE(7479), 1, + sym_comment, + [215594] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(3104), 1, - anon_sym_LBRACE, - STATE(7476), 1, + ACTIONS(11759), 1, + anon_sym_EQ_GT, + STATE(7480), 1, sym_comment, - [215445] = 4, + [215607] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8286), 1, + ACTIONS(8714), 1, sym_identifier, - STATE(7477), 1, + STATE(7481), 1, sym_comment, - [215458] = 4, + [215620] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11750), 1, + ACTIONS(11761), 1, anon_sym_function, - STATE(7478), 1, + STATE(7482), 1, sym_comment, - [215471] = 4, + [215633] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11752), 1, - anon_sym_RBRACK, - STATE(7479), 1, + ACTIONS(11763), 1, + anon_sym_symbol, + STATE(7483), 1, sym_comment, - [215484] = 4, + [215646] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11754), 1, + ACTIONS(11765), 1, sym_identifier, - STATE(7480), 1, + STATE(7484), 1, sym_comment, - [215497] = 4, + [215659] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11756), 1, - anon_sym_RBRACK, - STATE(7481), 1, + ACTIONS(11767), 1, + sym_identifier, + STATE(7485), 1, sym_comment, - [215510] = 4, + [215672] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8246), 1, + ACTIONS(8563), 1, sym_identifier, - STATE(7482), 1, + STATE(7486), 1, sym_comment, - [215523] = 4, + [215685] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11758), 1, + ACTIONS(11769), 1, anon_sym_function, - STATE(7483), 1, + STATE(7487), 1, sym_comment, - [215536] = 4, + [215698] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(2703), 1, aux_sym_comment_token1, - ACTIONS(11760), 1, - anon_sym_RBRACK, - STATE(7484), 1, + ACTIONS(11771), 1, + sym_number, + STATE(7488), 1, sym_comment, - [215549] = 1, - ACTIONS(11762), 1, + [215711] = 1, + ACTIONS(11773), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1852)] = 0, - [SMALL_STATE(1853)] = 75, - [SMALL_STATE(1854)] = 168, - [SMALL_STATE(1855)] = 261, - [SMALL_STATE(1856)] = 354, - [SMALL_STATE(1857)] = 447, - [SMALL_STATE(1858)] = 522, - [SMALL_STATE(1859)] = 615, - [SMALL_STATE(1860)] = 710, - [SMALL_STATE(1861)] = 785, - [SMALL_STATE(1862)] = 882, - [SMALL_STATE(1863)] = 957, - [SMALL_STATE(1864)] = 1052, - [SMALL_STATE(1865)] = 1149, - [SMALL_STATE(1866)] = 1224, - [SMALL_STATE(1867)] = 1299, - [SMALL_STATE(1868)] = 1392, - [SMALL_STATE(1869)] = 1489, - [SMALL_STATE(1870)] = 1584, - [SMALL_STATE(1871)] = 1677, - [SMALL_STATE(1872)] = 1752, - [SMALL_STATE(1873)] = 1845, - [SMALL_STATE(1874)] = 1938, - [SMALL_STATE(1875)] = 2033, - [SMALL_STATE(1876)] = 2126, - [SMALL_STATE(1877)] = 2221, - [SMALL_STATE(1878)] = 2314, - [SMALL_STATE(1879)] = 2407, - [SMALL_STATE(1880)] = 2500, - [SMALL_STATE(1881)] = 2595, - [SMALL_STATE(1882)] = 2688, - [SMALL_STATE(1883)] = 2781, - [SMALL_STATE(1884)] = 2874, - [SMALL_STATE(1885)] = 2967, - [SMALL_STATE(1886)] = 3060, - [SMALL_STATE(1887)] = 3153, - [SMALL_STATE(1888)] = 3248, - [SMALL_STATE(1889)] = 3343, - [SMALL_STATE(1890)] = 3436, - [SMALL_STATE(1891)] = 3528, - [SMALL_STATE(1892)] = 3620, - [SMALL_STATE(1893)] = 3714, - [SMALL_STATE(1894)] = 3810, - [SMALL_STATE(1895)] = 3902, - [SMALL_STATE(1896)] = 3984, - [SMALL_STATE(1897)] = 4080, - [SMALL_STATE(1898)] = 4158, - [SMALL_STATE(1899)] = 4232, - [SMALL_STATE(1900)] = 4332, - [SMALL_STATE(1901)] = 4424, - [SMALL_STATE(1902)] = 4498, - [SMALL_STATE(1903)] = 4592, - [SMALL_STATE(1904)] = 4688, - [SMALL_STATE(1905)] = 4780, - [SMALL_STATE(1906)] = 4876, - [SMALL_STATE(1907)] = 4973, - [SMALL_STATE(1908)] = 5046, - [SMALL_STATE(1909)] = 5131, - [SMALL_STATE(1910)] = 5228, - [SMALL_STATE(1911)] = 5323, - [SMALL_STATE(1912)] = 5406, - [SMALL_STATE(1913)] = 5485, - [SMALL_STATE(1914)] = 5576, - [SMALL_STATE(1915)] = 5671, - [SMALL_STATE(1916)] = 5762, - [SMALL_STATE(1917)] = 5835, - [SMALL_STATE(1918)] = 5920, - [SMALL_STATE(1919)] = 6003, - [SMALL_STATE(1920)] = 6096, - [SMALL_STATE(1921)] = 6187, - [SMALL_STATE(1922)] = 6278, - [SMALL_STATE(1923)] = 6373, - [SMALL_STATE(1924)] = 6464, - [SMALL_STATE(1925)] = 6547, - [SMALL_STATE(1926)] = 6638, - [SMALL_STATE(1927)] = 6729, - [SMALL_STATE(1928)] = 6812, - [SMALL_STATE(1929)] = 6903, - [SMALL_STATE(1930)] = 6978, - [SMALL_STATE(1931)] = 7061, - [SMALL_STATE(1932)] = 7144, - [SMALL_STATE(1933)] = 7235, - [SMALL_STATE(1934)] = 7326, - [SMALL_STATE(1935)] = 7417, - [SMALL_STATE(1936)] = 7508, - [SMALL_STATE(1937)] = 7603, - [SMALL_STATE(1938)] = 7673, - [SMALL_STATE(1939)] = 7753, - [SMALL_STATE(1940)] = 7837, - [SMALL_STATE(1941)] = 7917, - [SMALL_STATE(1942)] = 7987, - [SMALL_STATE(1943)] = 8067, - [SMALL_STATE(1944)] = 8161, - [SMALL_STATE(1945)] = 8243, - [SMALL_STATE(1946)] = 8327, - [SMALL_STATE(1947)] = 8409, - [SMALL_STATE(1948)] = 8499, - [SMALL_STATE(1949)] = 8593, - [SMALL_STATE(1950)] = 8681, - [SMALL_STATE(1951)] = 8759, - [SMALL_STATE(1952)] = 8849, - [SMALL_STATE(1953)] = 8939, - [SMALL_STATE(1954)] = 9021, - [SMALL_STATE(1955)] = 9099, - [SMALL_STATE(1956)] = 9193, - [SMALL_STATE(1957)] = 9285, - [SMALL_STATE(1958)] = 9363, - [SMALL_STATE(1959)] = 9457, - [SMALL_STATE(1960)] = 9545, - [SMALL_STATE(1961)] = 9615, - [SMALL_STATE(1962)] = 9693, - [SMALL_STATE(1963)] = 9775, - [SMALL_STATE(1964)] = 9857, - [SMALL_STATE(1965)] = 9940, - [SMALL_STATE(1966)] = 10029, - [SMALL_STATE(1967)] = 10106, - [SMALL_STATE(1968)] = 10187, - [SMALL_STATE(1969)] = 10256, - [SMALL_STATE(1970)] = 10325, - [SMALL_STATE(1971)] = 10396, - [SMALL_STATE(1972)] = 10465, - [SMALL_STATE(1973)] = 10542, - [SMALL_STATE(1974)] = 10613, - [SMALL_STATE(1975)] = 10686, - [SMALL_STATE(1976)] = 10765, - [SMALL_STATE(1977)] = 10842, - [SMALL_STATE(1978)] = 10921, - [SMALL_STATE(1979)] = 11004, - [SMALL_STATE(1980)] = 11077, - [SMALL_STATE(1981)] = 11160, - [SMALL_STATE(1982)] = 11229, - [SMALL_STATE(1983)] = 11298, - [SMALL_STATE(1984)] = 11387, - [SMALL_STATE(1985)] = 11460, - [SMALL_STATE(1986)] = 11541, - [SMALL_STATE(1987)] = 11626, - [SMALL_STATE(1988)] = 11697, - [SMALL_STATE(1989)] = 11774, - [SMALL_STATE(1990)] = 11845, - [SMALL_STATE(1991)] = 11926, - [SMALL_STATE(1992)] = 11997, - [SMALL_STATE(1993)] = 12068, - [SMALL_STATE(1994)] = 12139, - [SMALL_STATE(1995)] = 12216, - [SMALL_STATE(1996)] = 12289, - [SMALL_STATE(1997)] = 12360, - [SMALL_STATE(1998)] = 12431, - [SMALL_STATE(1999)] = 12500, - [SMALL_STATE(2000)] = 12593, - [SMALL_STATE(2001)] = 12680, - [SMALL_STATE(2002)] = 12749, - [SMALL_STATE(2003)] = 12818, - [SMALL_STATE(2004)] = 12893, - [SMALL_STATE(2005)] = 12962, - [SMALL_STATE(2006)] = 13033, - [SMALL_STATE(2007)] = 13122, - [SMALL_STATE(2008)] = 13201, - [SMALL_STATE(2009)] = 13270, - [SMALL_STATE(2010)] = 13339, - [SMALL_STATE(2011)] = 13418, - [SMALL_STATE(2012)] = 13497, - [SMALL_STATE(2013)] = 13574, - [SMALL_STATE(2014)] = 13653, - [SMALL_STATE(2015)] = 13728, - [SMALL_STATE(2016)] = 13821, - [SMALL_STATE(2017)] = 13892, - [SMALL_STATE(2018)] = 13971, - [SMALL_STATE(2019)] = 14050, - [SMALL_STATE(2020)] = 14135, - [SMALL_STATE(2021)] = 14212, - [SMALL_STATE(2022)] = 14291, - [SMALL_STATE(2023)] = 14370, - [SMALL_STATE(2024)] = 14447, - [SMALL_STATE(2025)] = 14525, - [SMALL_STATE(2026)] = 14603, - [SMALL_STATE(2027)] = 14681, - [SMALL_STATE(2028)] = 14763, - [SMALL_STATE(2029)] = 14837, - [SMALL_STATE(2030)] = 14919, - [SMALL_STATE(2031)] = 15001, - [SMALL_STATE(2032)] = 15085, - [SMALL_STATE(2033)] = 15163, - [SMALL_STATE(2034)] = 15241, - [SMALL_STATE(2035)] = 15317, - [SMALL_STATE(2036)] = 15395, - [SMALL_STATE(2037)] = 15471, - [SMALL_STATE(2038)] = 15547, - [SMALL_STATE(2039)] = 15625, - [SMALL_STATE(2040)] = 15707, - [SMALL_STATE(2041)] = 15781, - [SMALL_STATE(2042)] = 15869, - [SMALL_STATE(2043)] = 15947, - [SMALL_STATE(2044)] = 16023, - [SMALL_STATE(2045)] = 16101, - [SMALL_STATE(2046)] = 16228, - [SMALL_STATE(2047)] = 16303, - [SMALL_STATE(2048)] = 16430, - [SMALL_STATE(2049)] = 16505, - [SMALL_STATE(2050)] = 16580, - [SMALL_STATE(2051)] = 16707, - [SMALL_STATE(2052)] = 16780, - [SMALL_STATE(2053)] = 16907, - [SMALL_STATE(2054)] = 17034, - [SMALL_STATE(2055)] = 17113, - [SMALL_STATE(2056)] = 17194, - [SMALL_STATE(2057)] = 17273, - [SMALL_STATE(2058)] = 17348, - [SMALL_STATE(2059)] = 17427, - [SMALL_STATE(2060)] = 17502, - [SMALL_STATE(2061)] = 17581, - [SMALL_STATE(2062)] = 17708, - [SMALL_STATE(2063)] = 17785, - [SMALL_STATE(2064)] = 17860, - [SMALL_STATE(2065)] = 17987, - [SMALL_STATE(2066)] = 18062, - [SMALL_STATE(2067)] = 18139, - [SMALL_STATE(2068)] = 18210, - [SMALL_STATE(2069)] = 18285, - [SMALL_STATE(2070)] = 18412, - [SMALL_STATE(2071)] = 18483, - [SMALL_STATE(2072)] = 18610, - [SMALL_STATE(2073)] = 18686, - [SMALL_STATE(2074)] = 18762, - [SMALL_STATE(2075)] = 18840, - [SMALL_STATE(2076)] = 18912, - [SMALL_STATE(2077)] = 18984, - [SMALL_STATE(2078)] = 19058, - [SMALL_STATE(2079)] = 19132, - [SMALL_STATE(2080)] = 19206, - [SMALL_STATE(2081)] = 19284, - [SMALL_STATE(2082)] = 19358, - [SMALL_STATE(2083)] = 19432, - [SMALL_STATE(2084)] = 19506, - [SMALL_STATE(2085)] = 19580, - [SMALL_STATE(2086)] = 19654, - [SMALL_STATE(2087)] = 19777, - [SMALL_STATE(2088)] = 19900, - [SMALL_STATE(2089)] = 20023, - [SMALL_STATE(2090)] = 20146, - [SMALL_STATE(2091)] = 20219, - [SMALL_STATE(2092)] = 20292, - [SMALL_STATE(2093)] = 20415, - [SMALL_STATE(2094)] = 20488, - [SMALL_STATE(2095)] = 20611, - [SMALL_STATE(2096)] = 20734, - [SMALL_STATE(2097)] = 20857, - [SMALL_STATE(2098)] = 20930, - [SMALL_STATE(2099)] = 21053, - [SMALL_STATE(2100)] = 21176, - [SMALL_STATE(2101)] = 21299, - [SMALL_STATE(2102)] = 21372, - [SMALL_STATE(2103)] = 21495, - [SMALL_STATE(2104)] = 21568, - [SMALL_STATE(2105)] = 21641, - [SMALL_STATE(2106)] = 21764, - [SMALL_STATE(2107)] = 21887, - [SMALL_STATE(2108)] = 22010, - [SMALL_STATE(2109)] = 22133, - [SMALL_STATE(2110)] = 22208, - [SMALL_STATE(2111)] = 22281, - [SMALL_STATE(2112)] = 22404, - [SMALL_STATE(2113)] = 22527, - [SMALL_STATE(2114)] = 22600, - [SMALL_STATE(2115)] = 22671, - [SMALL_STATE(2116)] = 22794, - [SMALL_STATE(2117)] = 22917, - [SMALL_STATE(2118)] = 22990, - [SMALL_STATE(2119)] = 23113, - [SMALL_STATE(2120)] = 23236, - [SMALL_STATE(2121)] = 23359, - [SMALL_STATE(2122)] = 23432, - [SMALL_STATE(2123)] = 23555, - [SMALL_STATE(2124)] = 23628, - [SMALL_STATE(2125)] = 23701, - [SMALL_STATE(2126)] = 23774, - [SMALL_STATE(2127)] = 23847, - [SMALL_STATE(2128)] = 23970, - [SMALL_STATE(2129)] = 24041, - [SMALL_STATE(2130)] = 24114, - [SMALL_STATE(2131)] = 24187, - [SMALL_STATE(2132)] = 24310, - [SMALL_STATE(2133)] = 24383, - [SMALL_STATE(2134)] = 24456, - [SMALL_STATE(2135)] = 24529, - [SMALL_STATE(2136)] = 24652, - [SMALL_STATE(2137)] = 24725, - [SMALL_STATE(2138)] = 24795, - [SMALL_STATE(2139)] = 24865, - [SMALL_STATE(2140)] = 24935, - [SMALL_STATE(2141)] = 25005, - [SMALL_STATE(2142)] = 25075, - [SMALL_STATE(2143)] = 25145, - [SMALL_STATE(2144)] = 25215, - [SMALL_STATE(2145)] = 25285, - [SMALL_STATE(2146)] = 25355, - [SMALL_STATE(2147)] = 25474, - [SMALL_STATE(2148)] = 25593, - [SMALL_STATE(2149)] = 25712, - [SMALL_STATE(2150)] = 25831, - [SMALL_STATE(2151)] = 25950, - [SMALL_STATE(2152)] = 26069, - [SMALL_STATE(2153)] = 26188, - [SMALL_STATE(2154)] = 26307, - [SMALL_STATE(2155)] = 26426, - [SMALL_STATE(2156)] = 26545, - [SMALL_STATE(2157)] = 26669, - [SMALL_STATE(2158)] = 26793, - [SMALL_STATE(2159)] = 26917, - [SMALL_STATE(2160)] = 27041, - [SMALL_STATE(2161)] = 27165, - [SMALL_STATE(2162)] = 27282, - [SMALL_STATE(2163)] = 27399, - [SMALL_STATE(2164)] = 27510, - [SMALL_STATE(2165)] = 27621, - [SMALL_STATE(2166)] = 27738, - [SMALL_STATE(2167)] = 27855, - [SMALL_STATE(2168)] = 27972, - [SMALL_STATE(2169)] = 28083, - [SMALL_STATE(2170)] = 28200, - [SMALL_STATE(2171)] = 28317, - [SMALL_STATE(2172)] = 28434, - [SMALL_STATE(2173)] = 28551, - [SMALL_STATE(2174)] = 28668, - [SMALL_STATE(2175)] = 28785, - [SMALL_STATE(2176)] = 28902, - [SMALL_STATE(2177)] = 29013, - [SMALL_STATE(2178)] = 29130, - [SMALL_STATE(2179)] = 29247, - [SMALL_STATE(2180)] = 29358, - [SMALL_STATE(2181)] = 29475, - [SMALL_STATE(2182)] = 29586, - [SMALL_STATE(2183)] = 29703, - [SMALL_STATE(2184)] = 29820, - [SMALL_STATE(2185)] = 29935, - [SMALL_STATE(2186)] = 30046, - [SMALL_STATE(2187)] = 30163, - [SMALL_STATE(2188)] = 30280, - [SMALL_STATE(2189)] = 30397, - [SMALL_STATE(2190)] = 30514, - [SMALL_STATE(2191)] = 30631, - [SMALL_STATE(2192)] = 30748, - [SMALL_STATE(2193)] = 30865, - [SMALL_STATE(2194)] = 30982, - [SMALL_STATE(2195)] = 31099, - [SMALL_STATE(2196)] = 31216, - [SMALL_STATE(2197)] = 31333, - [SMALL_STATE(2198)] = 31450, - [SMALL_STATE(2199)] = 31567, - [SMALL_STATE(2200)] = 31684, - [SMALL_STATE(2201)] = 31801, - [SMALL_STATE(2202)] = 31915, - [SMALL_STATE(2203)] = 32031, - [SMALL_STATE(2204)] = 32093, - [SMALL_STATE(2205)] = 32155, - [SMALL_STATE(2206)] = 32226, - [SMALL_STATE(2207)] = 32297, - [SMALL_STATE(2208)] = 32368, - [SMALL_STATE(2209)] = 32445, - [SMALL_STATE(2210)] = 32514, - [SMALL_STATE(2211)] = 32617, - [SMALL_STATE(2212)] = 32677, - [SMALL_STATE(2213)] = 32743, - [SMALL_STATE(2214)] = 32805, - [SMALL_STATE(2215)] = 32869, - [SMALL_STATE(2216)] = 32929, - [SMALL_STATE(2217)] = 32991, - [SMALL_STATE(2218)] = 33053, - [SMALL_STATE(2219)] = 33113, - [SMALL_STATE(2220)] = 33173, - [SMALL_STATE(2221)] = 33239, - [SMALL_STATE(2222)] = 33305, - [SMALL_STATE(2223)] = 33371, - [SMALL_STATE(2224)] = 33431, - [SMALL_STATE(2225)] = 33491, - [SMALL_STATE(2226)] = 33551, - [SMALL_STATE(2227)] = 33615, - [SMALL_STATE(2228)] = 33679, - [SMALL_STATE(2229)] = 33796, - [SMALL_STATE(2230)] = 33913, - [SMALL_STATE(2231)] = 34030, - [SMALL_STATE(2232)] = 34089, - [SMALL_STATE(2233)] = 34148, - [SMALL_STATE(2234)] = 34213, - [SMALL_STATE(2235)] = 34272, - [SMALL_STATE(2236)] = 34363, - [SMALL_STATE(2237)] = 34422, - [SMALL_STATE(2238)] = 34539, - [SMALL_STATE(2239)] = 34600, - [SMALL_STATE(2240)] = 34659, - [SMALL_STATE(2241)] = 34718, - [SMALL_STATE(2242)] = 34777, - [SMALL_STATE(2243)] = 34836, - [SMALL_STATE(2244)] = 34895, - [SMALL_STATE(2245)] = 34954, - [SMALL_STATE(2246)] = 35013, - [SMALL_STATE(2247)] = 35072, - [SMALL_STATE(2248)] = 35133, - [SMALL_STATE(2249)] = 35192, - [SMALL_STATE(2250)] = 35255, - [SMALL_STATE(2251)] = 35380, - [SMALL_STATE(2252)] = 35439, - [SMALL_STATE(2253)] = 35498, - [SMALL_STATE(2254)] = 35559, - [SMALL_STATE(2255)] = 35684, - [SMALL_STATE(2256)] = 35779, - [SMALL_STATE(2257)] = 35838, - [SMALL_STATE(2258)] = 35897, - [SMALL_STATE(2259)] = 35956, - [SMALL_STATE(2260)] = 36081, - [SMALL_STATE(2261)] = 36206, - [SMALL_STATE(2262)] = 36273, - [SMALL_STATE(2263)] = 36390, - [SMALL_STATE(2264)] = 36449, - [SMALL_STATE(2265)] = 36508, - [SMALL_STATE(2266)] = 36633, - [SMALL_STATE(2267)] = 36692, - [SMALL_STATE(2268)] = 36751, - [SMALL_STATE(2269)] = 36876, - [SMALL_STATE(2270)] = 36935, - [SMALL_STATE(2271)] = 36994, - [SMALL_STATE(2272)] = 37055, - [SMALL_STATE(2273)] = 37134, - [SMALL_STATE(2274)] = 37193, - [SMALL_STATE(2275)] = 37252, - [SMALL_STATE(2276)] = 37313, - [SMALL_STATE(2277)] = 37378, - [SMALL_STATE(2278)] = 37495, - [SMALL_STATE(2279)] = 37554, - [SMALL_STATE(2280)] = 37639, - [SMALL_STATE(2281)] = 37698, - [SMALL_STATE(2282)] = 37757, - [SMALL_STATE(2283)] = 37816, - [SMALL_STATE(2284)] = 37875, - [SMALL_STATE(2285)] = 37938, - [SMALL_STATE(2286)] = 38003, - [SMALL_STATE(2287)] = 38062, - [SMALL_STATE(2288)] = 38121, - [SMALL_STATE(2289)] = 38238, - [SMALL_STATE(2290)] = 38303, - [SMALL_STATE(2291)] = 38362, - [SMALL_STATE(2292)] = 38421, - [SMALL_STATE(2293)] = 38546, - [SMALL_STATE(2294)] = 38663, - [SMALL_STATE(2295)] = 38744, - [SMALL_STATE(2296)] = 38803, - [SMALL_STATE(2297)] = 38862, - [SMALL_STATE(2298)] = 38979, - [SMALL_STATE(2299)] = 39040, - [SMALL_STATE(2300)] = 39099, - [SMALL_STATE(2301)] = 39164, - [SMALL_STATE(2302)] = 39281, - [SMALL_STATE(2303)] = 39340, - [SMALL_STATE(2304)] = 39457, - [SMALL_STATE(2305)] = 39562, - [SMALL_STATE(2306)] = 39679, - [SMALL_STATE(2307)] = 39796, - [SMALL_STATE(2308)] = 39903, - [SMALL_STATE(2309)] = 40020, - [SMALL_STATE(2310)] = 40115, - [SMALL_STATE(2311)] = 40174, - [SMALL_STATE(2312)] = 40233, - [SMALL_STATE(2313)] = 40292, - [SMALL_STATE(2314)] = 40379, - [SMALL_STATE(2315)] = 40456, - [SMALL_STATE(2316)] = 40515, - [SMALL_STATE(2317)] = 40614, - [SMALL_STATE(2318)] = 40715, - [SMALL_STATE(2319)] = 40774, - [SMALL_STATE(2320)] = 40833, - [SMALL_STATE(2321)] = 40892, - [SMALL_STATE(2322)] = 40995, - [SMALL_STATE(2323)] = 41054, - [SMALL_STATE(2324)] = 41119, - [SMALL_STATE(2325)] = 41178, - [SMALL_STATE(2326)] = 41263, - [SMALL_STATE(2327)] = 41328, - [SMALL_STATE(2328)] = 41387, - [SMALL_STATE(2329)] = 41474, - [SMALL_STATE(2330)] = 41535, - [SMALL_STATE(2331)] = 41594, - [SMALL_STATE(2332)] = 41655, - [SMALL_STATE(2333)] = 41750, - [SMALL_STATE(2334)] = 41817, - [SMALL_STATE(2335)] = 41876, - [SMALL_STATE(2336)] = 41935, - [SMALL_STATE(2337)] = 41994, - [SMALL_STATE(2338)] = 42089, - [SMALL_STATE(2339)] = 42148, - [SMALL_STATE(2340)] = 42207, - [SMALL_STATE(2341)] = 42266, - [SMALL_STATE(2342)] = 42325, - [SMALL_STATE(2343)] = 42392, - [SMALL_STATE(2344)] = 42455, - [SMALL_STATE(2345)] = 42514, - [SMALL_STATE(2346)] = 42573, - [SMALL_STATE(2347)] = 42632, - [SMALL_STATE(2348)] = 42727, - [SMALL_STATE(2349)] = 42786, - [SMALL_STATE(2350)] = 42895, - [SMALL_STATE(2351)] = 43012, - [SMALL_STATE(2352)] = 43071, - [SMALL_STATE(2353)] = 43136, - [SMALL_STATE(2354)] = 43195, - [SMALL_STATE(2355)] = 43254, - [SMALL_STATE(2356)] = 43379, - [SMALL_STATE(2357)] = 43438, - [SMALL_STATE(2358)] = 43497, - [SMALL_STATE(2359)] = 43556, - [SMALL_STATE(2360)] = 43615, - [SMALL_STATE(2361)] = 43676, - [SMALL_STATE(2362)] = 43735, - [SMALL_STATE(2363)] = 43800, - [SMALL_STATE(2364)] = 43859, - [SMALL_STATE(2365)] = 43918, - [SMALL_STATE(2366)] = 43979, - [SMALL_STATE(2367)] = 44038, - [SMALL_STATE(2368)] = 44097, - [SMALL_STATE(2369)] = 44156, - [SMALL_STATE(2370)] = 44215, - [SMALL_STATE(2371)] = 44340, - [SMALL_STATE(2372)] = 44399, - [SMALL_STATE(2373)] = 44458, - [SMALL_STATE(2374)] = 44553, - [SMALL_STATE(2375)] = 44618, - [SMALL_STATE(2376)] = 44681, - [SMALL_STATE(2377)] = 44740, - [SMALL_STATE(2378)] = 44799, - [SMALL_STATE(2379)] = 44860, - [SMALL_STATE(2380)] = 44921, - [SMALL_STATE(2381)] = 44986, - [SMALL_STATE(2382)] = 45051, - [SMALL_STATE(2383)] = 45110, - [SMALL_STATE(2384)] = 45169, - [SMALL_STATE(2385)] = 45228, - [SMALL_STATE(2386)] = 45287, - [SMALL_STATE(2387)] = 45346, - [SMALL_STATE(2388)] = 45405, - [SMALL_STATE(2389)] = 45464, - [SMALL_STATE(2390)] = 45526, - [SMALL_STATE(2391)] = 45630, - [SMALL_STATE(2392)] = 45750, - [SMALL_STATE(2393)] = 45834, - [SMALL_STATE(2394)] = 45892, - [SMALL_STATE(2395)] = 45950, - [SMALL_STATE(2396)] = 46028, - [SMALL_STATE(2397)] = 46086, - [SMALL_STATE(2398)] = 46144, - [SMALL_STATE(2399)] = 46202, - [SMALL_STATE(2400)] = 46260, - [SMALL_STATE(2401)] = 46318, - [SMALL_STATE(2402)] = 46404, - [SMALL_STATE(2403)] = 46492, - [SMALL_STATE(2404)] = 46550, - [SMALL_STATE(2405)] = 46608, - [SMALL_STATE(2406)] = 46728, - [SMALL_STATE(2407)] = 46848, - [SMALL_STATE(2408)] = 46906, - [SMALL_STATE(2409)] = 46964, - [SMALL_STATE(2410)] = 47022, - [SMALL_STATE(2411)] = 47138, - [SMALL_STATE(2412)] = 47258, - [SMALL_STATE(2413)] = 47378, - [SMALL_STATE(2414)] = 47436, - [SMALL_STATE(2415)] = 47524, - [SMALL_STATE(2416)] = 47582, - [SMALL_STATE(2417)] = 47640, - [SMALL_STATE(2418)] = 47698, - [SMALL_STATE(2419)] = 47762, - [SMALL_STATE(2420)] = 47820, - [SMALL_STATE(2421)] = 47878, - [SMALL_STATE(2422)] = 47936, - [SMALL_STATE(2423)] = 47994, - [SMALL_STATE(2424)] = 48052, - [SMALL_STATE(2425)] = 48110, - [SMALL_STATE(2426)] = 48196, - [SMALL_STATE(2427)] = 48312, - [SMALL_STATE(2428)] = 48400, - [SMALL_STATE(2429)] = 48464, - [SMALL_STATE(2430)] = 48522, - [SMALL_STATE(2431)] = 48580, - [SMALL_STATE(2432)] = 48644, - [SMALL_STATE(2433)] = 48702, - [SMALL_STATE(2434)] = 48790, - [SMALL_STATE(2435)] = 48876, - [SMALL_STATE(2436)] = 48996, - [SMALL_STATE(2437)] = 49082, - [SMALL_STATE(2438)] = 49198, - [SMALL_STATE(2439)] = 49274, - [SMALL_STATE(2440)] = 49390, - [SMALL_STATE(2441)] = 49510, - [SMALL_STATE(2442)] = 49568, - [SMALL_STATE(2443)] = 49656, - [SMALL_STATE(2444)] = 49714, - [SMALL_STATE(2445)] = 49772, - [SMALL_STATE(2446)] = 49892, - [SMALL_STATE(2447)] = 50008, - [SMALL_STATE(2448)] = 50066, - [SMALL_STATE(2449)] = 50124, - [SMALL_STATE(2450)] = 50240, - [SMALL_STATE(2451)] = 50356, - [SMALL_STATE(2452)] = 50474, - [SMALL_STATE(2453)] = 50594, - [SMALL_STATE(2454)] = 50670, - [SMALL_STATE(2455)] = 50728, - [SMALL_STATE(2456)] = 50786, - [SMALL_STATE(2457)] = 50844, - [SMALL_STATE(2458)] = 50902, - [SMALL_STATE(2459)] = 50960, - [SMALL_STATE(2460)] = 51076, - [SMALL_STATE(2461)] = 51134, - [SMALL_STATE(2462)] = 51192, - [SMALL_STATE(2463)] = 51250, - [SMALL_STATE(2464)] = 51308, - [SMALL_STATE(2465)] = 51366, - [SMALL_STATE(2466)] = 51482, - [SMALL_STATE(2467)] = 51540, - [SMALL_STATE(2468)] = 51630, - [SMALL_STATE(2469)] = 51746, - [SMALL_STATE(2470)] = 51862, - [SMALL_STATE(2471)] = 51978, - [SMALL_STATE(2472)] = 52094, - [SMALL_STATE(2473)] = 52210, - [SMALL_STATE(2474)] = 52268, - [SMALL_STATE(2475)] = 52326, - [SMALL_STATE(2476)] = 52384, - [SMALL_STATE(2477)] = 52446, - [SMALL_STATE(2478)] = 52504, - [SMALL_STATE(2479)] = 52562, - [SMALL_STATE(2480)] = 52620, - [SMALL_STATE(2481)] = 52678, - [SMALL_STATE(2482)] = 52786, - [SMALL_STATE(2483)] = 52880, - [SMALL_STATE(2484)] = 52940, - [SMALL_STATE(2485)] = 52998, - [SMALL_STATE(2486)] = 53118, - [SMALL_STATE(2487)] = 53176, - [SMALL_STATE(2488)] = 53234, - [SMALL_STATE(2489)] = 53292, - [SMALL_STATE(2490)] = 53350, - [SMALL_STATE(2491)] = 53470, - [SMALL_STATE(2492)] = 53590, - [SMALL_STATE(2493)] = 53648, - [SMALL_STATE(2494)] = 53706, - [SMALL_STATE(2495)] = 53768, - [SMALL_STATE(2496)] = 53826, - [SMALL_STATE(2497)] = 53884, - [SMALL_STATE(2498)] = 53970, - [SMALL_STATE(2499)] = 54054, - [SMALL_STATE(2500)] = 54174, - [SMALL_STATE(2501)] = 54232, - [SMALL_STATE(2502)] = 54348, - [SMALL_STATE(2503)] = 54406, - [SMALL_STATE(2504)] = 54526, - [SMALL_STATE(2505)] = 54584, - [SMALL_STATE(2506)] = 54642, - [SMALL_STATE(2507)] = 54702, - [SMALL_STATE(2508)] = 54760, - [SMALL_STATE(2509)] = 54876, - [SMALL_STATE(2510)] = 54992, - [SMALL_STATE(2511)] = 55092, - [SMALL_STATE(2512)] = 55150, - [SMALL_STATE(2513)] = 55248, - [SMALL_STATE(2514)] = 55334, - [SMALL_STATE(2515)] = 55450, - [SMALL_STATE(2516)] = 55530, - [SMALL_STATE(2517)] = 55598, - [SMALL_STATE(2518)] = 55704, - [SMALL_STATE(2519)] = 55772, - [SMALL_STATE(2520)] = 55888, - [SMALL_STATE(2521)] = 55948, - [SMALL_STATE(2522)] = 56050, - [SMALL_STATE(2523)] = 56108, - [SMALL_STATE(2524)] = 56212, - [SMALL_STATE(2525)] = 56270, - [SMALL_STATE(2526)] = 56350, - [SMALL_STATE(2527)] = 56466, - [SMALL_STATE(2528)] = 56586, - [SMALL_STATE(2529)] = 56644, - [SMALL_STATE(2530)] = 56732, - [SMALL_STATE(2531)] = 56790, - [SMALL_STATE(2532)] = 56876, - [SMALL_STATE(2533)] = 56992, - [SMALL_STATE(2534)] = 57050, - [SMALL_STATE(2535)] = 57118, - [SMALL_STATE(2536)] = 57176, - [SMALL_STATE(2537)] = 57254, - [SMALL_STATE(2538)] = 57312, - [SMALL_STATE(2539)] = 57432, - [SMALL_STATE(2540)] = 57492, - [SMALL_STATE(2541)] = 57598, - [SMALL_STATE(2542)] = 57656, - [SMALL_STATE(2543)] = 57714, - [SMALL_STATE(2544)] = 57804, - [SMALL_STATE(2545)] = 57920, - [SMALL_STATE(2546)] = 58036, - [SMALL_STATE(2547)] = 58152, - [SMALL_STATE(2548)] = 58268, - [SMALL_STATE(2549)] = 58326, - [SMALL_STATE(2550)] = 58446, - [SMALL_STATE(2551)] = 58504, - [SMALL_STATE(2552)] = 58620, - [SMALL_STATE(2553)] = 58704, - [SMALL_STATE(2554)] = 58790, - [SMALL_STATE(2555)] = 58848, - [SMALL_STATE(2556)] = 58906, - [SMALL_STATE(2557)] = 59026, - [SMALL_STATE(2558)] = 59084, - [SMALL_STATE(2559)] = 59192, - [SMALL_STATE(2560)] = 59290, - [SMALL_STATE(2561)] = 59384, - [SMALL_STATE(2562)] = 59442, - [SMALL_STATE(2563)] = 59502, - [SMALL_STATE(2564)] = 59560, - [SMALL_STATE(2565)] = 59660, - [SMALL_STATE(2566)] = 59776, - [SMALL_STATE(2567)] = 59842, - [SMALL_STATE(2568)] = 59962, - [SMALL_STATE(2569)] = 60082, - [SMALL_STATE(2570)] = 60184, - [SMALL_STATE(2571)] = 60258, - [SMALL_STATE(2572)] = 60374, - [SMALL_STATE(2573)] = 60490, - [SMALL_STATE(2574)] = 60574, - [SMALL_STATE(2575)] = 60692, - [SMALL_STATE(2576)] = 60750, - [SMALL_STATE(2577)] = 60836, - [SMALL_STATE(2578)] = 60894, - [SMALL_STATE(2579)] = 60953, - [SMALL_STATE(2580)] = 61072, - [SMALL_STATE(2581)] = 61191, - [SMALL_STATE(2582)] = 61276, - [SMALL_STATE(2583)] = 61395, - [SMALL_STATE(2584)] = 61510, - [SMALL_STATE(2585)] = 61569, - [SMALL_STATE(2586)] = 61628, - [SMALL_STATE(2587)] = 61743, - [SMALL_STATE(2588)] = 61858, - [SMALL_STATE(2589)] = 61965, - [SMALL_STATE(2590)] = 62058, - [SMALL_STATE(2591)] = 62123, - [SMALL_STATE(2592)] = 62242, - [SMALL_STATE(2593)] = 62299, - [SMALL_STATE(2594)] = 62414, - [SMALL_STATE(2595)] = 62529, - [SMALL_STATE(2596)] = 62644, - [SMALL_STATE(2597)] = 62763, - [SMALL_STATE(2598)] = 62882, - [SMALL_STATE(2599)] = 63001, - [SMALL_STATE(2600)] = 63116, - [SMALL_STATE(2601)] = 63201, - [SMALL_STATE(2602)] = 63284, - [SMALL_STATE(2603)] = 63403, - [SMALL_STATE(2604)] = 63466, - [SMALL_STATE(2605)] = 63567, - [SMALL_STATE(2606)] = 63686, - [SMALL_STATE(2607)] = 63801, - [SMALL_STATE(2608)] = 63916, - [SMALL_STATE(2609)] = 64015, - [SMALL_STATE(2610)] = 64112, - [SMALL_STATE(2611)] = 64197, - [SMALL_STATE(2612)] = 64302, - [SMALL_STATE(2613)] = 64359, - [SMALL_STATE(2614)] = 64422, - [SMALL_STATE(2615)] = 64483, - [SMALL_STATE(2616)] = 64586, - [SMALL_STATE(2617)] = 64705, - [SMALL_STATE(2618)] = 64784, - [SMALL_STATE(2619)] = 64903, - [SMALL_STATE(2620)] = 65022, - [SMALL_STATE(2621)] = 65137, - [SMALL_STATE(2622)] = 65198, - [SMALL_STATE(2623)] = 65313, - [SMALL_STATE(2624)] = 65376, - [SMALL_STATE(2625)] = 65457, - [SMALL_STATE(2626)] = 65572, - [SMALL_STATE(2627)] = 65687, - [SMALL_STATE(2628)] = 65750, - [SMALL_STATE(2629)] = 65865, - [SMALL_STATE(2630)] = 65984, - [SMALL_STATE(2631)] = 66049, - [SMALL_STATE(2632)] = 66136, - [SMALL_STATE(2633)] = 66225, - [SMALL_STATE(2634)] = 66342, - [SMALL_STATE(2635)] = 66403, - [SMALL_STATE(2636)] = 66464, - [SMALL_STATE(2637)] = 66521, - [SMALL_STATE(2638)] = 66606, - [SMALL_STATE(2639)] = 66673, - [SMALL_STATE(2640)] = 66740, - [SMALL_STATE(2641)] = 66855, - [SMALL_STATE(2642)] = 66970, - [SMALL_STATE(2643)] = 67087, - [SMALL_STATE(2644)] = 67144, - [SMALL_STATE(2645)] = 67263, - [SMALL_STATE(2646)] = 67326, - [SMALL_STATE(2647)] = 67445, - [SMALL_STATE(2648)] = 67562, - [SMALL_STATE(2649)] = 67681, - [SMALL_STATE(2650)] = 67796, - [SMALL_STATE(2651)] = 67915, - [SMALL_STATE(2652)] = 68034, - [SMALL_STATE(2653)] = 68149, - [SMALL_STATE(2654)] = 68268, - [SMALL_STATE(2655)] = 68327, - [SMALL_STATE(2656)] = 68446, - [SMALL_STATE(2657)] = 68527, - [SMALL_STATE(2658)] = 68646, - [SMALL_STATE(2659)] = 68765, - [SMALL_STATE(2660)] = 68880, - [SMALL_STATE(2661)] = 68999, - [SMALL_STATE(2662)] = 69076, - [SMALL_STATE(2663)] = 69159, - [SMALL_STATE(2664)] = 69274, - [SMALL_STATE(2665)] = 69393, - [SMALL_STATE(2666)] = 69468, - [SMALL_STATE(2667)] = 69587, - [SMALL_STATE(2668)] = 69644, - [SMALL_STATE(2669)] = 69725, - [SMALL_STATE(2670)] = 69844, - [SMALL_STATE(2671)] = 69901, - [SMALL_STATE(2672)] = 70018, - [SMALL_STATE(2673)] = 70137, - [SMALL_STATE(2674)] = 70202, - [SMALL_STATE(2675)] = 70321, - [SMALL_STATE(2676)] = 70440, - [SMALL_STATE(2677)] = 70557, - [SMALL_STATE(2678)] = 70638, - [SMALL_STATE(2679)] = 70703, - [SMALL_STATE(2680)] = 70822, - [SMALL_STATE(2681)] = 70887, - [SMALL_STATE(2682)] = 70952, - [SMALL_STATE(2683)] = 71033, - [SMALL_STATE(2684)] = 71089, - [SMALL_STATE(2685)] = 71203, - [SMALL_STATE(2686)] = 71319, - [SMALL_STATE(2687)] = 71397, - [SMALL_STATE(2688)] = 71479, - [SMALL_STATE(2689)] = 71593, - [SMALL_STATE(2690)] = 71651, - [SMALL_STATE(2691)] = 71713, - [SMALL_STATE(2692)] = 71793, - [SMALL_STATE(2693)] = 71849, - [SMALL_STATE(2694)] = 71965, - [SMALL_STATE(2695)] = 72033, - [SMALL_STATE(2696)] = 72101, - [SMALL_STATE(2697)] = 72169, - [SMALL_STATE(2698)] = 72251, - [SMALL_STATE(2699)] = 72307, - [SMALL_STATE(2700)] = 72387, - [SMALL_STATE(2701)] = 72465, - [SMALL_STATE(2702)] = 72555, - [SMALL_STATE(2703)] = 72637, - [SMALL_STATE(2704)] = 72693, - [SMALL_STATE(2705)] = 72783, - [SMALL_STATE(2706)] = 72897, - [SMALL_STATE(2707)] = 72959, - [SMALL_STATE(2708)] = 73021, - [SMALL_STATE(2709)] = 73135, - [SMALL_STATE(2710)] = 73191, - [SMALL_STATE(2711)] = 73253, - [SMALL_STATE(2712)] = 73367, - [SMALL_STATE(2713)] = 73431, - [SMALL_STATE(2714)] = 73545, - [SMALL_STATE(2715)] = 73621, - [SMALL_STATE(2716)] = 73685, - [SMALL_STATE(2717)] = 73767, - [SMALL_STATE(2718)] = 73881, - [SMALL_STATE(2719)] = 73943, - [SMALL_STATE(2720)] = 74059, - [SMALL_STATE(2721)] = 74133, - [SMALL_STATE(2722)] = 74191, - [SMALL_STATE(2723)] = 74251, - [SMALL_STATE(2724)] = 74307, - [SMALL_STATE(2725)] = 74369, - [SMALL_STATE(2726)] = 74429, - [SMALL_STATE(2727)] = 74485, - [SMALL_STATE(2728)] = 74547, - [SMALL_STATE(2729)] = 74605, - [SMALL_STATE(2730)] = 74721, - [SMALL_STATE(2731)] = 74777, - [SMALL_STATE(2732)] = 74833, - [SMALL_STATE(2733)] = 74889, - [SMALL_STATE(2734)] = 74945, - [SMALL_STATE(2735)] = 75001, - [SMALL_STATE(2736)] = 75071, - [SMALL_STATE(2737)] = 75133, - [SMALL_STATE(2738)] = 75189, - [SMALL_STATE(2739)] = 75245, - [SMALL_STATE(2740)] = 75301, - [SMALL_STATE(2741)] = 75357, - [SMALL_STATE(2742)] = 75419, - [SMALL_STATE(2743)] = 75475, - [SMALL_STATE(2744)] = 75531, - [SMALL_STATE(2745)] = 75587, - [SMALL_STATE(2746)] = 75643, - [SMALL_STATE(2747)] = 75699, - [SMALL_STATE(2748)] = 75755, - [SMALL_STATE(2749)] = 75811, - [SMALL_STATE(2750)] = 75867, - [SMALL_STATE(2751)] = 75923, - [SMALL_STATE(2752)] = 75979, - [SMALL_STATE(2753)] = 76035, - [SMALL_STATE(2754)] = 76117, - [SMALL_STATE(2755)] = 76173, - [SMALL_STATE(2756)] = 76229, - [SMALL_STATE(2757)] = 76285, - [SMALL_STATE(2758)] = 76341, - [SMALL_STATE(2759)] = 76409, - [SMALL_STATE(2760)] = 76477, - [SMALL_STATE(2761)] = 76567, - [SMALL_STATE(2762)] = 76623, - [SMALL_STATE(2763)] = 76679, - [SMALL_STATE(2764)] = 76737, - [SMALL_STATE(2765)] = 76793, - [SMALL_STATE(2766)] = 76863, - [SMALL_STATE(2767)] = 76945, - [SMALL_STATE(2768)] = 77007, - [SMALL_STATE(2769)] = 77063, - [SMALL_STATE(2770)] = 77119, - [SMALL_STATE(2771)] = 77181, - [SMALL_STATE(2772)] = 77237, - [SMALL_STATE(2773)] = 77293, - [SMALL_STATE(2774)] = 77349, - [SMALL_STATE(2775)] = 77405, - [SMALL_STATE(2776)] = 77461, - [SMALL_STATE(2777)] = 77517, - [SMALL_STATE(2778)] = 77573, - [SMALL_STATE(2779)] = 77629, - [SMALL_STATE(2780)] = 77685, - [SMALL_STATE(2781)] = 77741, - [SMALL_STATE(2782)] = 77797, - [SMALL_STATE(2783)] = 77853, - [SMALL_STATE(2784)] = 77943, - [SMALL_STATE(2785)] = 77999, - [SMALL_STATE(2786)] = 78055, - [SMALL_STATE(2787)] = 78111, - [SMALL_STATE(2788)] = 78189, - [SMALL_STATE(2789)] = 78247, - [SMALL_STATE(2790)] = 78329, - [SMALL_STATE(2791)] = 78409, - [SMALL_STATE(2792)] = 78487, - [SMALL_STATE(2793)] = 78569, - [SMALL_STATE(2794)] = 78683, - [SMALL_STATE(2795)] = 78765, - [SMALL_STATE(2796)] = 78821, - [SMALL_STATE(2797)] = 78877, - [SMALL_STATE(2798)] = 78933, - [SMALL_STATE(2799)] = 78989, - [SMALL_STATE(2800)] = 79045, - [SMALL_STATE(2801)] = 79107, - [SMALL_STATE(2802)] = 79221, - [SMALL_STATE(2803)] = 79277, - [SMALL_STATE(2804)] = 79335, - [SMALL_STATE(2805)] = 79391, - [SMALL_STATE(2806)] = 79453, - [SMALL_STATE(2807)] = 79509, - [SMALL_STATE(2808)] = 79567, - [SMALL_STATE(2809)] = 79625, - [SMALL_STATE(2810)] = 79739, - [SMALL_STATE(2811)] = 79795, - [SMALL_STATE(2812)] = 79851, - [SMALL_STATE(2813)] = 79907, - [SMALL_STATE(2814)] = 79963, - [SMALL_STATE(2815)] = 80019, - [SMALL_STATE(2816)] = 80075, - [SMALL_STATE(2817)] = 80131, - [SMALL_STATE(2818)] = 80187, - [SMALL_STATE(2819)] = 80243, - [SMALL_STATE(2820)] = 80311, - [SMALL_STATE(2821)] = 80425, - [SMALL_STATE(2822)] = 80493, - [SMALL_STATE(2823)] = 80607, - [SMALL_STATE(2824)] = 80721, - [SMALL_STATE(2825)] = 80835, - [SMALL_STATE(2826)] = 80949, - [SMALL_STATE(2827)] = 81037, - [SMALL_STATE(2828)] = 81115, - [SMALL_STATE(2829)] = 81217, - [SMALL_STATE(2830)] = 81321, - [SMALL_STATE(2831)] = 81405, - [SMALL_STATE(2832)] = 81501, - [SMALL_STATE(2833)] = 81575, - [SMALL_STATE(2834)] = 81689, - [SMALL_STATE(2835)] = 81787, - [SMALL_STATE(2836)] = 81887, - [SMALL_STATE(2837)] = 81969, - [SMALL_STATE(2838)] = 82053, - [SMALL_STATE(2839)] = 82145, - [SMALL_STATE(2840)] = 82251, - [SMALL_STATE(2841)] = 82365, - [SMALL_STATE(2842)] = 82479, - [SMALL_STATE(2843)] = 82593, - [SMALL_STATE(2844)] = 82709, - [SMALL_STATE(2845)] = 82823, - [SMALL_STATE(2846)] = 82913, - [SMALL_STATE(2847)] = 83027, - [SMALL_STATE(2848)] = 83141, - [SMALL_STATE(2849)] = 83255, - [SMALL_STATE(2850)] = 83369, - [SMALL_STATE(2851)] = 83425, - [SMALL_STATE(2852)] = 83481, - [SMALL_STATE(2853)] = 83595, - [SMALL_STATE(2854)] = 83709, - [SMALL_STATE(2855)] = 83765, - [SMALL_STATE(2856)] = 83827, - [SMALL_STATE(2857)] = 83887, - [SMALL_STATE(2858)] = 83949, - [SMALL_STATE(2859)] = 84013, - [SMALL_STATE(2860)] = 84075, - [SMALL_STATE(2861)] = 84137, - [SMALL_STATE(2862)] = 84251, - [SMALL_STATE(2863)] = 84365, - [SMALL_STATE(2864)] = 84453, - [SMALL_STATE(2865)] = 84515, - [SMALL_STATE(2866)] = 84573, - [SMALL_STATE(2867)] = 84649, - [SMALL_STATE(2868)] = 84731, - [SMALL_STATE(2869)] = 84845, - [SMALL_STATE(2870)] = 84923, - [SMALL_STATE(2871)] = 84979, - [SMALL_STATE(2872)] = 85081, - [SMALL_STATE(2873)] = 85185, - [SMALL_STATE(2874)] = 85269, - [SMALL_STATE(2875)] = 85365, - [SMALL_STATE(2876)] = 85463, - [SMALL_STATE(2877)] = 85563, - [SMALL_STATE(2878)] = 85645, - [SMALL_STATE(2879)] = 85729, - [SMALL_STATE(2880)] = 85787, - [SMALL_STATE(2881)] = 85845, - [SMALL_STATE(2882)] = 85907, - [SMALL_STATE(2883)] = 85969, - [SMALL_STATE(2884)] = 86025, - [SMALL_STATE(2885)] = 86117, - [SMALL_STATE(2886)] = 86173, - [SMALL_STATE(2887)] = 86229, - [SMALL_STATE(2888)] = 86285, - [SMALL_STATE(2889)] = 86341, - [SMALL_STATE(2890)] = 86447, - [SMALL_STATE(2891)] = 86505, - [SMALL_STATE(2892)] = 86619, - [SMALL_STATE(2893)] = 86675, - [SMALL_STATE(2894)] = 86789, - [SMALL_STATE(2895)] = 86845, - [SMALL_STATE(2896)] = 86901, - [SMALL_STATE(2897)] = 87015, - [SMALL_STATE(2898)] = 87071, - [SMALL_STATE(2899)] = 87185, - [SMALL_STATE(2900)] = 87241, - [SMALL_STATE(2901)] = 87299, - [SMALL_STATE(2902)] = 87355, - [SMALL_STATE(2903)] = 87423, - [SMALL_STATE(2904)] = 87491, - [SMALL_STATE(2905)] = 87551, - [SMALL_STATE(2906)] = 87607, - [SMALL_STATE(2907)] = 87665, - [SMALL_STATE(2908)] = 87779, - [SMALL_STATE(2909)] = 87893, - [SMALL_STATE(2910)] = 88007, - [SMALL_STATE(2911)] = 88065, - [SMALL_STATE(2912)] = 88179, - [SMALL_STATE(2913)] = 88257, - [SMALL_STATE(2914)] = 88315, - [SMALL_STATE(2915)] = 88429, - [SMALL_STATE(2916)] = 88519, - [SMALL_STATE(2917)] = 88609, - [SMALL_STATE(2918)] = 88667, - [SMALL_STATE(2919)] = 88783, - [SMALL_STATE(2920)] = 88838, - [SMALL_STATE(2921)] = 88951, - [SMALL_STATE(2922)] = 89012, - [SMALL_STATE(2923)] = 89067, - [SMALL_STATE(2924)] = 89122, - [SMALL_STATE(2925)] = 89177, - [SMALL_STATE(2926)] = 89232, - [SMALL_STATE(2927)] = 89287, - [SMALL_STATE(2928)] = 89342, - [SMALL_STATE(2929)] = 89425, - [SMALL_STATE(2930)] = 89480, - [SMALL_STATE(2931)] = 89561, - [SMALL_STATE(2932)] = 89620, - [SMALL_STATE(2933)] = 89683, - [SMALL_STATE(2934)] = 89782, - [SMALL_STATE(2935)] = 89855, - [SMALL_STATE(2936)] = 89928, - [SMALL_STATE(2937)] = 89983, - [SMALL_STATE(2938)] = 90080, - [SMALL_STATE(2939)] = 90145, - [SMALL_STATE(2940)] = 90220, - [SMALL_STATE(2941)] = 90279, - [SMALL_STATE(2942)] = 90334, - [SMALL_STATE(2943)] = 90389, - [SMALL_STATE(2944)] = 90454, - [SMALL_STATE(2945)] = 90549, - [SMALL_STATE(2946)] = 90608, - [SMALL_STATE(2947)] = 90671, - [SMALL_STATE(2948)] = 90728, - [SMALL_STATE(2949)] = 90811, - [SMALL_STATE(2950)] = 90886, - [SMALL_STATE(2951)] = 90961, - [SMALL_STATE(2952)] = 91034, - [SMALL_STATE(2953)] = 91109, - [SMALL_STATE(2954)] = 91190, - [SMALL_STATE(2955)] = 91273, - [SMALL_STATE(2956)] = 91386, - [SMALL_STATE(2957)] = 91463, - [SMALL_STATE(2958)] = 91522, - [SMALL_STATE(2959)] = 91597, - [SMALL_STATE(2960)] = 91680, - [SMALL_STATE(2961)] = 91783, - [SMALL_STATE(2962)] = 91864, - [SMALL_STATE(2963)] = 91965, - [SMALL_STATE(2964)] = 92040, - [SMALL_STATE(2965)] = 92097, - [SMALL_STATE(2966)] = 92152, - [SMALL_STATE(2967)] = 92227, - [SMALL_STATE(2968)] = 92300, - [SMALL_STATE(2969)] = 92381, - [SMALL_STATE(2970)] = 92440, - [SMALL_STATE(2971)] = 92515, - [SMALL_STATE(2972)] = 92598, - [SMALL_STATE(2973)] = 92657, - [SMALL_STATE(2974)] = 92716, - [SMALL_STATE(2975)] = 92793, - [SMALL_STATE(2976)] = 92866, - [SMALL_STATE(2977)] = 92925, - [SMALL_STATE(2978)] = 93000, - [SMALL_STATE(2979)] = 93055, - [SMALL_STATE(2980)] = 93110, - [SMALL_STATE(2981)] = 93165, - [SMALL_STATE(2982)] = 93232, - [SMALL_STATE(2983)] = 93299, - [SMALL_STATE(2984)] = 93354, - [SMALL_STATE(2985)] = 93437, - [SMALL_STATE(2986)] = 93494, - [SMALL_STATE(2987)] = 93575, - [SMALL_STATE(2988)] = 93638, - [SMALL_STATE(2989)] = 93699, - [SMALL_STATE(2990)] = 93754, - [SMALL_STATE(2991)] = 93811, - [SMALL_STATE(2992)] = 93866, - [SMALL_STATE(2993)] = 93939, - [SMALL_STATE(2994)] = 93998, - [SMALL_STATE(2995)] = 94057, - [SMALL_STATE(2996)] = 94120, - [SMALL_STATE(2997)] = 94175, - [SMALL_STATE(2998)] = 94230, - [SMALL_STATE(2999)] = 94317, - [SMALL_STATE(3000)] = 94430, - [SMALL_STATE(3001)] = 94485, - [SMALL_STATE(3002)] = 94558, - [SMALL_STATE(3003)] = 94671, - [SMALL_STATE(3004)] = 94726, - [SMALL_STATE(3005)] = 94781, - [SMALL_STATE(3006)] = 94836, - [SMALL_STATE(3007)] = 94891, - [SMALL_STATE(3008)] = 95004, - [SMALL_STATE(3009)] = 95079, - [SMALL_STATE(3010)] = 95134, - [SMALL_STATE(3011)] = 95189, - [SMALL_STATE(3012)] = 95244, - [SMALL_STATE(3013)] = 95319, - [SMALL_STATE(3014)] = 95374, - [SMALL_STATE(3015)] = 95429, - [SMALL_STATE(3016)] = 95542, - [SMALL_STATE(3017)] = 95597, - [SMALL_STATE(3018)] = 95710, - [SMALL_STATE(3019)] = 95767, - [SMALL_STATE(3020)] = 95824, - [SMALL_STATE(3021)] = 95889, - [SMALL_STATE(3022)] = 95946, - [SMALL_STATE(3023)] = 96001, - [SMALL_STATE(3024)] = 96060, - [SMALL_STATE(3025)] = 96125, - [SMALL_STATE(3026)] = 96184, - [SMALL_STATE(3027)] = 96239, - [SMALL_STATE(3028)] = 96294, - [SMALL_STATE(3029)] = 96349, - [SMALL_STATE(3030)] = 96404, - [SMALL_STATE(3031)] = 96461, - [SMALL_STATE(3032)] = 96524, - [SMALL_STATE(3033)] = 96597, - [SMALL_STATE(3034)] = 96654, - [SMALL_STATE(3035)] = 96767, - [SMALL_STATE(3036)] = 96880, - [SMALL_STATE(3037)] = 96993, - [SMALL_STATE(3038)] = 97048, - [SMALL_STATE(3039)] = 97123, - [SMALL_STATE(3040)] = 97178, - [SMALL_STATE(3041)] = 97233, - [SMALL_STATE(3042)] = 97288, - [SMALL_STATE(3043)] = 97347, - [SMALL_STATE(3044)] = 97404, - [SMALL_STATE(3045)] = 97517, - [SMALL_STATE(3046)] = 97572, - [SMALL_STATE(3047)] = 97685, - [SMALL_STATE(3048)] = 97740, - [SMALL_STATE(3049)] = 97795, - [SMALL_STATE(3050)] = 97850, - [SMALL_STATE(3051)] = 97907, - [SMALL_STATE(3052)] = 97962, - [SMALL_STATE(3053)] = 98017, - [SMALL_STATE(3054)] = 98092, - [SMALL_STATE(3055)] = 98205, - [SMALL_STATE(3056)] = 98278, - [SMALL_STATE(3057)] = 98333, - [SMALL_STATE(3058)] = 98388, - [SMALL_STATE(3059)] = 98443, - [SMALL_STATE(3060)] = 98556, - [SMALL_STATE(3061)] = 98611, - [SMALL_STATE(3062)] = 98666, - [SMALL_STATE(3063)] = 98733, - [SMALL_STATE(3064)] = 98800, - [SMALL_STATE(3065)] = 98855, - [SMALL_STATE(3066)] = 98914, - [SMALL_STATE(3067)] = 98971, - [SMALL_STATE(3068)] = 99084, - [SMALL_STATE(3069)] = 99143, - [SMALL_STATE(3070)] = 99202, - [SMALL_STATE(3071)] = 99257, - [SMALL_STATE(3072)] = 99330, - [SMALL_STATE(3073)] = 99443, - [SMALL_STATE(3074)] = 99516, - [SMALL_STATE(3075)] = 99571, - [SMALL_STATE(3076)] = 99626, - [SMALL_STATE(3077)] = 99681, - [SMALL_STATE(3078)] = 99794, - [SMALL_STATE(3079)] = 99907, - [SMALL_STATE(3080)] = 100020, - [SMALL_STATE(3081)] = 100075, - [SMALL_STATE(3082)] = 100130, - [SMALL_STATE(3083)] = 100189, - [SMALL_STATE(3084)] = 100302, - [SMALL_STATE(3085)] = 100415, - [SMALL_STATE(3086)] = 100470, - [SMALL_STATE(3087)] = 100583, - [SMALL_STATE(3088)] = 100688, - [SMALL_STATE(3089)] = 100761, - [SMALL_STATE(3090)] = 100842, - [SMALL_STATE(3091)] = 100933, - [SMALL_STATE(3092)] = 101016, - [SMALL_STATE(3093)] = 101075, - [SMALL_STATE(3094)] = 101142, - [SMALL_STATE(3095)] = 101215, - [SMALL_STATE(3096)] = 101298, - [SMALL_STATE(3097)] = 101379, - [SMALL_STATE(3098)] = 101434, - [SMALL_STATE(3099)] = 101489, - [SMALL_STATE(3100)] = 101552, - [SMALL_STATE(3101)] = 101627, - [SMALL_STATE(3102)] = 101740, - [SMALL_STATE(3103)] = 101813, - [SMALL_STATE(3104)] = 101926, - [SMALL_STATE(3105)] = 101985, - [SMALL_STATE(3106)] = 102066, - [SMALL_STATE(3107)] = 102133, - [SMALL_STATE(3108)] = 102206, - [SMALL_STATE(3109)] = 102269, - [SMALL_STATE(3110)] = 102382, - [SMALL_STATE(3111)] = 102495, - [SMALL_STATE(3112)] = 102608, - [SMALL_STATE(3113)] = 102675, - [SMALL_STATE(3114)] = 102748, - [SMALL_STATE(3115)] = 102807, - [SMALL_STATE(3116)] = 102870, - [SMALL_STATE(3117)] = 102937, - [SMALL_STATE(3118)] = 102992, - [SMALL_STATE(3119)] = 103075, - [SMALL_STATE(3120)] = 103142, - [SMALL_STATE(3121)] = 103209, - [SMALL_STATE(3122)] = 103322, - [SMALL_STATE(3123)] = 103397, - [SMALL_STATE(3124)] = 103460, - [SMALL_STATE(3125)] = 103541, - [SMALL_STATE(3126)] = 103628, - [SMALL_STATE(3127)] = 103689, - [SMALL_STATE(3128)] = 103764, - [SMALL_STATE(3129)] = 103837, - [SMALL_STATE(3130)] = 103950, - [SMALL_STATE(3131)] = 104011, - [SMALL_STATE(3132)] = 104084, - [SMALL_STATE(3133)] = 104159, - [SMALL_STATE(3134)] = 104240, - [SMALL_STATE(3135)] = 104353, - [SMALL_STATE(3136)] = 104426, - [SMALL_STATE(3137)] = 104485, - [SMALL_STATE(3138)] = 104600, - [SMALL_STATE(3139)] = 104713, - [SMALL_STATE(3140)] = 104826, - [SMALL_STATE(3141)] = 104899, - [SMALL_STATE(3142)] = 104972, - [SMALL_STATE(3143)] = 105027, - [SMALL_STATE(3144)] = 105086, - [SMALL_STATE(3145)] = 105147, - [SMALL_STATE(3146)] = 105202, - [SMALL_STATE(3147)] = 105279, - [SMALL_STATE(3148)] = 105338, - [SMALL_STATE(3149)] = 105439, - [SMALL_STATE(3150)] = 105496, - [SMALL_STATE(3151)] = 105599, - [SMALL_STATE(3152)] = 105682, - [SMALL_STATE(3153)] = 105741, - [SMALL_STATE(3154)] = 105816, - [SMALL_STATE(3155)] = 105889, - [SMALL_STATE(3156)] = 105946, - [SMALL_STATE(3157)] = 106029, - [SMALL_STATE(3158)] = 106142, - [SMALL_STATE(3159)] = 106237, - [SMALL_STATE(3160)] = 106334, - [SMALL_STATE(3161)] = 106433, - [SMALL_STATE(3162)] = 106514, - [SMALL_STATE(3163)] = 106569, - [SMALL_STATE(3164)] = 106628, - [SMALL_STATE(3165)] = 106689, - [SMALL_STATE(3166)] = 106756, - [SMALL_STATE(3167)] = 106815, - [SMALL_STATE(3168)] = 106872, - [SMALL_STATE(3169)] = 106963, - [SMALL_STATE(3170)] = 107068, - [SMALL_STATE(3171)] = 107181, - [SMALL_STATE(3172)] = 107240, - [SMALL_STATE(3173)] = 107353, - [SMALL_STATE(3174)] = 107466, - [SMALL_STATE(3175)] = 107579, - [SMALL_STATE(3176)] = 107638, - [SMALL_STATE(3177)] = 107751, - [SMALL_STATE(3178)] = 107806, - [SMALL_STATE(3179)] = 107861, - [SMALL_STATE(3180)] = 107974, - [SMALL_STATE(3181)] = 108031, - [SMALL_STATE(3182)] = 108144, - [SMALL_STATE(3183)] = 108203, - [SMALL_STATE(3184)] = 108262, - [SMALL_STATE(3185)] = 108317, - [SMALL_STATE(3186)] = 108380, - [SMALL_STATE(3187)] = 108473, - [SMALL_STATE(3188)] = 108563, - [SMALL_STATE(3189)] = 108631, - [SMALL_STATE(3190)] = 108691, - [SMALL_STATE(3191)] = 108749, - [SMALL_STATE(3192)] = 108811, - [SMALL_STATE(3193)] = 108873, - [SMALL_STATE(3194)] = 108941, - [SMALL_STATE(3195)] = 109003, - [SMALL_STATE(3196)] = 109059, - [SMALL_STATE(3197)] = 109169, - [SMALL_STATE(3198)] = 109279, - [SMALL_STATE(3199)] = 109389, - [SMALL_STATE(3200)] = 109499, - [SMALL_STATE(3201)] = 109609, - [SMALL_STATE(3202)] = 109695, - [SMALL_STATE(3203)] = 109771, - [SMALL_STATE(3204)] = 109851, - [SMALL_STATE(3205)] = 109961, - [SMALL_STATE(3206)] = 110017, - [SMALL_STATE(3207)] = 110127, - [SMALL_STATE(3208)] = 110195, - [SMALL_STATE(3209)] = 110295, - [SMALL_STATE(3210)] = 110353, - [SMALL_STATE(3211)] = 110421, - [SMALL_STATE(3212)] = 110497, - [SMALL_STATE(3213)] = 110565, - [SMALL_STATE(3214)] = 110633, - [SMALL_STATE(3215)] = 110701, - [SMALL_STATE(3216)] = 110769, - [SMALL_STATE(3217)] = 110831, - [SMALL_STATE(3218)] = 110891, - [SMALL_STATE(3219)] = 110973, - [SMALL_STATE(3220)] = 111041, - [SMALL_STATE(3221)] = 111109, - [SMALL_STATE(3222)] = 111203, - [SMALL_STATE(3223)] = 111299, - [SMALL_STATE(3224)] = 111355, - [SMALL_STATE(3225)] = 111453, - [SMALL_STATE(3226)] = 111563, - [SMALL_STATE(3227)] = 111635, - [SMALL_STATE(3228)] = 111737, - [SMALL_STATE(3229)] = 111819, - [SMALL_STATE(3230)] = 111923, - [SMALL_STATE(3231)] = 112033, - [SMALL_STATE(3232)] = 112113, - [SMALL_STATE(3233)] = 112187, - [SMALL_STATE(3234)] = 112297, - [SMALL_STATE(3235)] = 112373, - [SMALL_STATE(3236)] = 112433, - [SMALL_STATE(3237)] = 112495, - [SMALL_STATE(3238)] = 112563, - [SMALL_STATE(3239)] = 112639, - [SMALL_STATE(3240)] = 112707, - [SMALL_STATE(3241)] = 112775, - [SMALL_STATE(3242)] = 112843, - [SMALL_STATE(3243)] = 112911, - [SMALL_STATE(3244)] = 112993, - [SMALL_STATE(3245)] = 113069, - [SMALL_STATE(3246)] = 113179, - [SMALL_STATE(3247)] = 113267, - [SMALL_STATE(3248)] = 113335, - [SMALL_STATE(3249)] = 113403, - [SMALL_STATE(3250)] = 113513, - [SMALL_STATE(3251)] = 113623, - [SMALL_STATE(3252)] = 113733, - [SMALL_STATE(3253)] = 113843, - [SMALL_STATE(3254)] = 113911, - [SMALL_STATE(3255)] = 113979, - [SMALL_STATE(3256)] = 114089, - [SMALL_STATE(3257)] = 114165, - [SMALL_STATE(3258)] = 114241, - [SMALL_STATE(3259)] = 114309, - [SMALL_STATE(3260)] = 114369, - [SMALL_STATE(3261)] = 114437, - [SMALL_STATE(3262)] = 114505, - [SMALL_STATE(3263)] = 114561, - [SMALL_STATE(3264)] = 114645, - [SMALL_STATE(3265)] = 114707, - [SMALL_STATE(3266)] = 114775, + [SMALL_STATE(1853)] = 93, + [SMALL_STATE(1854)] = 186, + [SMALL_STATE(1855)] = 279, + [SMALL_STATE(1856)] = 372, + [SMALL_STATE(1857)] = 467, + [SMALL_STATE(1858)] = 560, + [SMALL_STATE(1859)] = 653, + [SMALL_STATE(1860)] = 746, + [SMALL_STATE(1861)] = 829, + [SMALL_STATE(1862)] = 922, + [SMALL_STATE(1863)] = 1017, + [SMALL_STATE(1864)] = 1110, + [SMALL_STATE(1865)] = 1203, + [SMALL_STATE(1866)] = 1278, + [SMALL_STATE(1867)] = 1371, + [SMALL_STATE(1868)] = 1464, + [SMALL_STATE(1869)] = 1559, + [SMALL_STATE(1870)] = 1654, + [SMALL_STATE(1871)] = 1749, + [SMALL_STATE(1872)] = 1844, + [SMALL_STATE(1873)] = 1937, + [SMALL_STATE(1874)] = 2034, + [SMALL_STATE(1875)] = 2127, + [SMALL_STATE(1876)] = 2220, + [SMALL_STATE(1877)] = 2313, + [SMALL_STATE(1878)] = 2406, + [SMALL_STATE(1879)] = 2481, + [SMALL_STATE(1880)] = 2574, + [SMALL_STATE(1881)] = 2667, + [SMALL_STATE(1882)] = 2760, + [SMALL_STATE(1883)] = 2835, + [SMALL_STATE(1884)] = 2910, + [SMALL_STATE(1885)] = 3007, + [SMALL_STATE(1886)] = 3082, + [SMALL_STATE(1887)] = 3157, + [SMALL_STATE(1888)] = 3252, + [SMALL_STATE(1889)] = 3349, + [SMALL_STATE(1890)] = 3444, + [SMALL_STATE(1891)] = 3519, + [SMALL_STATE(1892)] = 3597, + [SMALL_STATE(1893)] = 3693, + [SMALL_STATE(1894)] = 3789, + [SMALL_STATE(1895)] = 3865, + [SMALL_STATE(1896)] = 3939, + [SMALL_STATE(1897)] = 4031, + [SMALL_STATE(1898)] = 4123, + [SMALL_STATE(1899)] = 4217, + [SMALL_STATE(1900)] = 4291, + [SMALL_STATE(1901)] = 4383, + [SMALL_STATE(1902)] = 4475, + [SMALL_STATE(1903)] = 4569, + [SMALL_STATE(1904)] = 4669, + [SMALL_STATE(1905)] = 4765, + [SMALL_STATE(1906)] = 4857, + [SMALL_STATE(1907)] = 4937, + [SMALL_STATE(1908)] = 5033, + [SMALL_STATE(1909)] = 5116, + [SMALL_STATE(1910)] = 5207, + [SMALL_STATE(1911)] = 5298, + [SMALL_STATE(1912)] = 5381, + [SMALL_STATE(1913)] = 5472, + [SMALL_STATE(1914)] = 5563, + [SMALL_STATE(1915)] = 5654, + [SMALL_STATE(1916)] = 5745, + [SMALL_STATE(1917)] = 5840, + [SMALL_STATE(1918)] = 5937, + [SMALL_STATE(1919)] = 6032, + [SMALL_STATE(1920)] = 6123, + [SMALL_STATE(1921)] = 6220, + [SMALL_STATE(1922)] = 6315, + [SMALL_STATE(1923)] = 6386, + [SMALL_STATE(1924)] = 6471, + [SMALL_STATE(1925)] = 6562, + [SMALL_STATE(1926)] = 6653, + [SMALL_STATE(1927)] = 6748, + [SMALL_STATE(1928)] = 6839, + [SMALL_STATE(1929)] = 6922, + [SMALL_STATE(1930)] = 7013, + [SMALL_STATE(1931)] = 7084, + [SMALL_STATE(1932)] = 7177, + [SMALL_STATE(1933)] = 7268, + [SMALL_STATE(1934)] = 7339, + [SMALL_STATE(1935)] = 7412, + [SMALL_STATE(1936)] = 7495, + [SMALL_STATE(1937)] = 7580, + [SMALL_STATE(1938)] = 7663, + [SMALL_STATE(1939)] = 7746, + [SMALL_STATE(1940)] = 7819, + [SMALL_STATE(1941)] = 7889, + [SMALL_STATE(1942)] = 7971, + [SMALL_STATE(1943)] = 8041, + [SMALL_STATE(1944)] = 8131, + [SMALL_STATE(1945)] = 8211, + [SMALL_STATE(1946)] = 8281, + [SMALL_STATE(1947)] = 8363, + [SMALL_STATE(1948)] = 8457, + [SMALL_STATE(1949)] = 8547, + [SMALL_STATE(1950)] = 8629, + [SMALL_STATE(1951)] = 8711, + [SMALL_STATE(1952)] = 8781, + [SMALL_STATE(1953)] = 8859, + [SMALL_STATE(1954)] = 8939, + [SMALL_STATE(1955)] = 9023, + [SMALL_STATE(1956)] = 9105, + [SMALL_STATE(1957)] = 9175, + [SMALL_STATE(1958)] = 9253, + [SMALL_STATE(1959)] = 9333, + [SMALL_STATE(1960)] = 9423, + [SMALL_STATE(1961)] = 9493, + [SMALL_STATE(1962)] = 9577, + [SMALL_STATE(1963)] = 9647, + [SMALL_STATE(1964)] = 9717, + [SMALL_STATE(1965)] = 9795, + [SMALL_STATE(1966)] = 9883, + [SMALL_STATE(1967)] = 9953, + [SMALL_STATE(1968)] = 10023, + [SMALL_STATE(1969)] = 10093, + [SMALL_STATE(1970)] = 10187, + [SMALL_STATE(1971)] = 10281, + [SMALL_STATE(1972)] = 10369, + [SMALL_STATE(1973)] = 10461, + [SMALL_STATE(1974)] = 10555, + [SMALL_STATE(1975)] = 10633, + [SMALL_STATE(1976)] = 10726, + [SMALL_STATE(1977)] = 10805, + [SMALL_STATE(1978)] = 10886, + [SMALL_STATE(1979)] = 10975, + [SMALL_STATE(1980)] = 11052, + [SMALL_STATE(1981)] = 11129, + [SMALL_STATE(1982)] = 11212, + [SMALL_STATE(1983)] = 11291, + [SMALL_STATE(1984)] = 11370, + [SMALL_STATE(1985)] = 11449, + [SMALL_STATE(1986)] = 11520, + [SMALL_STATE(1987)] = 11599, + [SMALL_STATE(1988)] = 11674, + [SMALL_STATE(1989)] = 11761, + [SMALL_STATE(1990)] = 11838, + [SMALL_STATE(1991)] = 11909, + [SMALL_STATE(1992)] = 11980, + [SMALL_STATE(1993)] = 12065, + [SMALL_STATE(1994)] = 12136, + [SMALL_STATE(1995)] = 12207, + [SMALL_STATE(1996)] = 12286, + [SMALL_STATE(1997)] = 12357, + [SMALL_STATE(1998)] = 12428, + [SMALL_STATE(1999)] = 12499, + [SMALL_STATE(2000)] = 12578, + [SMALL_STATE(2001)] = 12651, + [SMALL_STATE(2002)] = 12734, + [SMALL_STATE(2003)] = 12805, + [SMALL_STATE(2004)] = 12886, + [SMALL_STATE(2005)] = 12969, + [SMALL_STATE(2006)] = 13062, + [SMALL_STATE(2007)] = 13139, + [SMALL_STATE(2008)] = 13218, + [SMALL_STATE(2009)] = 13291, + [SMALL_STATE(2010)] = 13380, + [SMALL_STATE(2011)] = 13453, + [SMALL_STATE(2012)] = 13534, + [SMALL_STATE(2013)] = 13619, + [SMALL_STATE(2014)] = 13698, + [SMALL_STATE(2015)] = 13777, + [SMALL_STATE(2016)] = 13848, + [SMALL_STATE(2017)] = 13921, + [SMALL_STATE(2018)] = 13992, + [SMALL_STATE(2019)] = 14069, + [SMALL_STATE(2020)] = 14144, + [SMALL_STATE(2021)] = 14221, + [SMALL_STATE(2022)] = 14298, + [SMALL_STATE(2023)] = 14375, + [SMALL_STATE(2024)] = 14464, + [SMALL_STATE(2025)] = 14542, + [SMALL_STATE(2026)] = 14630, + [SMALL_STATE(2027)] = 14706, + [SMALL_STATE(2028)] = 14784, + [SMALL_STATE(2029)] = 14862, + [SMALL_STATE(2030)] = 14940, + [SMALL_STATE(2031)] = 15022, + [SMALL_STATE(2032)] = 15104, + [SMALL_STATE(2033)] = 15188, + [SMALL_STATE(2034)] = 15262, + [SMALL_STATE(2035)] = 15336, + [SMALL_STATE(2036)] = 15412, + [SMALL_STATE(2037)] = 15490, + [SMALL_STATE(2038)] = 15572, + [SMALL_STATE(2039)] = 15650, + [SMALL_STATE(2040)] = 15732, + [SMALL_STATE(2041)] = 15808, + [SMALL_STATE(2042)] = 15886, + [SMALL_STATE(2043)] = 15962, + [SMALL_STATE(2044)] = 16040, + [SMALL_STATE(2045)] = 16118, + [SMALL_STATE(2046)] = 16245, + [SMALL_STATE(2047)] = 16316, + [SMALL_STATE(2048)] = 16395, + [SMALL_STATE(2049)] = 16522, + [SMALL_STATE(2050)] = 16649, + [SMALL_STATE(2051)] = 16776, + [SMALL_STATE(2052)] = 16903, + [SMALL_STATE(2053)] = 16984, + [SMALL_STATE(2054)] = 17111, + [SMALL_STATE(2055)] = 17190, + [SMALL_STATE(2056)] = 17265, + [SMALL_STATE(2057)] = 17340, + [SMALL_STATE(2058)] = 17411, + [SMALL_STATE(2059)] = 17486, + [SMALL_STATE(2060)] = 17563, + [SMALL_STATE(2061)] = 17638, + [SMALL_STATE(2062)] = 17717, + [SMALL_STATE(2063)] = 17792, + [SMALL_STATE(2064)] = 17869, + [SMALL_STATE(2065)] = 17944, + [SMALL_STATE(2066)] = 18023, + [SMALL_STATE(2067)] = 18096, + [SMALL_STATE(2068)] = 18171, + [SMALL_STATE(2069)] = 18298, + [SMALL_STATE(2070)] = 18373, + [SMALL_STATE(2071)] = 18500, + [SMALL_STATE(2072)] = 18627, + [SMALL_STATE(2073)] = 18703, + [SMALL_STATE(2074)] = 18777, + [SMALL_STATE(2075)] = 18851, + [SMALL_STATE(2076)] = 18925, + [SMALL_STATE(2077)] = 18999, + [SMALL_STATE(2078)] = 19073, + [SMALL_STATE(2079)] = 19145, + [SMALL_STATE(2080)] = 19223, + [SMALL_STATE(2081)] = 19297, + [SMALL_STATE(2082)] = 19369, + [SMALL_STATE(2083)] = 19443, + [SMALL_STATE(2084)] = 19519, + [SMALL_STATE(2085)] = 19597, + [SMALL_STATE(2086)] = 19671, + [SMALL_STATE(2087)] = 19794, + [SMALL_STATE(2088)] = 19917, + [SMALL_STATE(2089)] = 20040, + [SMALL_STATE(2090)] = 20163, + [SMALL_STATE(2091)] = 20286, + [SMALL_STATE(2092)] = 20359, + [SMALL_STATE(2093)] = 20482, + [SMALL_STATE(2094)] = 20557, + [SMALL_STATE(2095)] = 20680, + [SMALL_STATE(2096)] = 20803, + [SMALL_STATE(2097)] = 20876, + [SMALL_STATE(2098)] = 20999, + [SMALL_STATE(2099)] = 21072, + [SMALL_STATE(2100)] = 21195, + [SMALL_STATE(2101)] = 21268, + [SMALL_STATE(2102)] = 21391, + [SMALL_STATE(2103)] = 21514, + [SMALL_STATE(2104)] = 21587, + [SMALL_STATE(2105)] = 21710, + [SMALL_STATE(2106)] = 21833, + [SMALL_STATE(2107)] = 21906, + [SMALL_STATE(2108)] = 22029, + [SMALL_STATE(2109)] = 22102, + [SMALL_STATE(2110)] = 22175, + [SMALL_STATE(2111)] = 22298, + [SMALL_STATE(2112)] = 22371, + [SMALL_STATE(2113)] = 22494, + [SMALL_STATE(2114)] = 22567, + [SMALL_STATE(2115)] = 22640, + [SMALL_STATE(2116)] = 22713, + [SMALL_STATE(2117)] = 22786, + [SMALL_STATE(2118)] = 22909, + [SMALL_STATE(2119)] = 22982, + [SMALL_STATE(2120)] = 23055, + [SMALL_STATE(2121)] = 23128, + [SMALL_STATE(2122)] = 23251, + [SMALL_STATE(2123)] = 23374, + [SMALL_STATE(2124)] = 23445, + [SMALL_STATE(2125)] = 23568, + [SMALL_STATE(2126)] = 23691, + [SMALL_STATE(2127)] = 23814, + [SMALL_STATE(2128)] = 23937, + [SMALL_STATE(2129)] = 24010, + [SMALL_STATE(2130)] = 24083, + [SMALL_STATE(2131)] = 24156, + [SMALL_STATE(2132)] = 24279, + [SMALL_STATE(2133)] = 24350, + [SMALL_STATE(2134)] = 24423, + [SMALL_STATE(2135)] = 24496, + [SMALL_STATE(2136)] = 24619, + [SMALL_STATE(2137)] = 24742, + [SMALL_STATE(2138)] = 24812, + [SMALL_STATE(2139)] = 24882, + [SMALL_STATE(2140)] = 24952, + [SMALL_STATE(2141)] = 25022, + [SMALL_STATE(2142)] = 25092, + [SMALL_STATE(2143)] = 25162, + [SMALL_STATE(2144)] = 25232, + [SMALL_STATE(2145)] = 25302, + [SMALL_STATE(2146)] = 25372, + [SMALL_STATE(2147)] = 25491, + [SMALL_STATE(2148)] = 25610, + [SMALL_STATE(2149)] = 25729, + [SMALL_STATE(2150)] = 25848, + [SMALL_STATE(2151)] = 25967, + [SMALL_STATE(2152)] = 26086, + [SMALL_STATE(2153)] = 26205, + [SMALL_STATE(2154)] = 26324, + [SMALL_STATE(2155)] = 26443, + [SMALL_STATE(2156)] = 26562, + [SMALL_STATE(2157)] = 26686, + [SMALL_STATE(2158)] = 26810, + [SMALL_STATE(2159)] = 26934, + [SMALL_STATE(2160)] = 27058, + [SMALL_STATE(2161)] = 27182, + [SMALL_STATE(2162)] = 27299, + [SMALL_STATE(2163)] = 27416, + [SMALL_STATE(2164)] = 27533, + [SMALL_STATE(2165)] = 27644, + [SMALL_STATE(2166)] = 27761, + [SMALL_STATE(2167)] = 27872, + [SMALL_STATE(2168)] = 27983, + [SMALL_STATE(2169)] = 28100, + [SMALL_STATE(2170)] = 28211, + [SMALL_STATE(2171)] = 28328, + [SMALL_STATE(2172)] = 28445, + [SMALL_STATE(2173)] = 28562, + [SMALL_STATE(2174)] = 28679, + [SMALL_STATE(2175)] = 28790, + [SMALL_STATE(2176)] = 28907, + [SMALL_STATE(2177)] = 29024, + [SMALL_STATE(2178)] = 29141, + [SMALL_STATE(2179)] = 29258, + [SMALL_STATE(2180)] = 29375, + [SMALL_STATE(2181)] = 29492, + [SMALL_STATE(2182)] = 29609, + [SMALL_STATE(2183)] = 29726, + [SMALL_STATE(2184)] = 29843, + [SMALL_STATE(2185)] = 29960, + [SMALL_STATE(2186)] = 30077, + [SMALL_STATE(2187)] = 30194, + [SMALL_STATE(2188)] = 30305, + [SMALL_STATE(2189)] = 30422, + [SMALL_STATE(2190)] = 30533, + [SMALL_STATE(2191)] = 30650, + [SMALL_STATE(2192)] = 30767, + [SMALL_STATE(2193)] = 30884, + [SMALL_STATE(2194)] = 31001, + [SMALL_STATE(2195)] = 31118, + [SMALL_STATE(2196)] = 31233, + [SMALL_STATE(2197)] = 31350, + [SMALL_STATE(2198)] = 31467, + [SMALL_STATE(2199)] = 31584, + [SMALL_STATE(2200)] = 31701, + [SMALL_STATE(2201)] = 31818, + [SMALL_STATE(2202)] = 31880, + [SMALL_STATE(2203)] = 31942, + [SMALL_STATE(2204)] = 32058, + [SMALL_STATE(2205)] = 32172, + [SMALL_STATE(2206)] = 32243, + [SMALL_STATE(2207)] = 32312, + [SMALL_STATE(2208)] = 32389, + [SMALL_STATE(2209)] = 32492, + [SMALL_STATE(2210)] = 32563, + [SMALL_STATE(2211)] = 32634, + [SMALL_STATE(2212)] = 32694, + [SMALL_STATE(2213)] = 32754, + [SMALL_STATE(2214)] = 32820, + [SMALL_STATE(2215)] = 32886, + [SMALL_STATE(2216)] = 32946, + [SMALL_STATE(2217)] = 33010, + [SMALL_STATE(2218)] = 33074, + [SMALL_STATE(2219)] = 33134, + [SMALL_STATE(2220)] = 33200, + [SMALL_STATE(2221)] = 33260, + [SMALL_STATE(2222)] = 33322, + [SMALL_STATE(2223)] = 33384, + [SMALL_STATE(2224)] = 33446, + [SMALL_STATE(2225)] = 33506, + [SMALL_STATE(2226)] = 33566, + [SMALL_STATE(2227)] = 33632, + [SMALL_STATE(2228)] = 33696, + [SMALL_STATE(2229)] = 33755, + [SMALL_STATE(2230)] = 33872, + [SMALL_STATE(2231)] = 33979, + [SMALL_STATE(2232)] = 34066, + [SMALL_STATE(2233)] = 34125, + [SMALL_STATE(2234)] = 34186, + [SMALL_STATE(2235)] = 34285, + [SMALL_STATE(2236)] = 34410, + [SMALL_STATE(2237)] = 34511, + [SMALL_STATE(2238)] = 34614, + [SMALL_STATE(2239)] = 34699, + [SMALL_STATE(2240)] = 34786, + [SMALL_STATE(2241)] = 34845, + [SMALL_STATE(2242)] = 34940, + [SMALL_STATE(2243)] = 34999, + [SMALL_STATE(2244)] = 35094, + [SMALL_STATE(2245)] = 35203, + [SMALL_STATE(2246)] = 35268, + [SMALL_STATE(2247)] = 35385, + [SMALL_STATE(2248)] = 35502, + [SMALL_STATE(2249)] = 35563, + [SMALL_STATE(2250)] = 35622, + [SMALL_STATE(2251)] = 35683, + [SMALL_STATE(2252)] = 35800, + [SMALL_STATE(2253)] = 35917, + [SMALL_STATE(2254)] = 36042, + [SMALL_STATE(2255)] = 36159, + [SMALL_STATE(2256)] = 36276, + [SMALL_STATE(2257)] = 36393, + [SMALL_STATE(2258)] = 36488, + [SMALL_STATE(2259)] = 36553, + [SMALL_STATE(2260)] = 36678, + [SMALL_STATE(2261)] = 36743, + [SMALL_STATE(2262)] = 36810, + [SMALL_STATE(2263)] = 36905, + [SMALL_STATE(2264)] = 36972, + [SMALL_STATE(2265)] = 37033, + [SMALL_STATE(2266)] = 37092, + [SMALL_STATE(2267)] = 37151, + [SMALL_STATE(2268)] = 37210, + [SMALL_STATE(2269)] = 37269, + [SMALL_STATE(2270)] = 37328, + [SMALL_STATE(2271)] = 37387, + [SMALL_STATE(2272)] = 37464, + [SMALL_STATE(2273)] = 37589, + [SMALL_STATE(2274)] = 37648, + [SMALL_STATE(2275)] = 37713, + [SMALL_STATE(2276)] = 37780, + [SMALL_STATE(2277)] = 37897, + [SMALL_STATE(2278)] = 37962, + [SMALL_STATE(2279)] = 38023, + [SMALL_STATE(2280)] = 38140, + [SMALL_STATE(2281)] = 38203, + [SMALL_STATE(2282)] = 38262, + [SMALL_STATE(2283)] = 38343, + [SMALL_STATE(2284)] = 38402, + [SMALL_STATE(2285)] = 38461, + [SMALL_STATE(2286)] = 38520, + [SMALL_STATE(2287)] = 38579, + [SMALL_STATE(2288)] = 38638, + [SMALL_STATE(2289)] = 38697, + [SMALL_STATE(2290)] = 38756, + [SMALL_STATE(2291)] = 38815, + [SMALL_STATE(2292)] = 38874, + [SMALL_STATE(2293)] = 38933, + [SMALL_STATE(2294)] = 38998, + [SMALL_STATE(2295)] = 39057, + [SMALL_STATE(2296)] = 39116, + [SMALL_STATE(2297)] = 39175, + [SMALL_STATE(2298)] = 39234, + [SMALL_STATE(2299)] = 39297, + [SMALL_STATE(2300)] = 39356, + [SMALL_STATE(2301)] = 39417, + [SMALL_STATE(2302)] = 39542, + [SMALL_STATE(2303)] = 39601, + [SMALL_STATE(2304)] = 39692, + [SMALL_STATE(2305)] = 39753, + [SMALL_STATE(2306)] = 39870, + [SMALL_STATE(2307)] = 39929, + [SMALL_STATE(2308)] = 39988, + [SMALL_STATE(2309)] = 40047, + [SMALL_STATE(2310)] = 40152, + [SMALL_STATE(2311)] = 40211, + [SMALL_STATE(2312)] = 40270, + [SMALL_STATE(2313)] = 40329, + [SMALL_STATE(2314)] = 40388, + [SMALL_STATE(2315)] = 40513, + [SMALL_STATE(2316)] = 40572, + [SMALL_STATE(2317)] = 40631, + [SMALL_STATE(2318)] = 40690, + [SMALL_STATE(2319)] = 40815, + [SMALL_STATE(2320)] = 40874, + [SMALL_STATE(2321)] = 40939, + [SMALL_STATE(2322)] = 40998, + [SMALL_STATE(2323)] = 41057, + [SMALL_STATE(2324)] = 41118, + [SMALL_STATE(2325)] = 41177, + [SMALL_STATE(2326)] = 41236, + [SMALL_STATE(2327)] = 41331, + [SMALL_STATE(2328)] = 41390, + [SMALL_STATE(2329)] = 41449, + [SMALL_STATE(2330)] = 41508, + [SMALL_STATE(2331)] = 41567, + [SMALL_STATE(2332)] = 41626, + [SMALL_STATE(2333)] = 41689, + [SMALL_STATE(2334)] = 41748, + [SMALL_STATE(2335)] = 41807, + [SMALL_STATE(2336)] = 41866, + [SMALL_STATE(2337)] = 41925, + [SMALL_STATE(2338)] = 41984, + [SMALL_STATE(2339)] = 42043, + [SMALL_STATE(2340)] = 42108, + [SMALL_STATE(2341)] = 42167, + [SMALL_STATE(2342)] = 42232, + [SMALL_STATE(2343)] = 42291, + [SMALL_STATE(2344)] = 42354, + [SMALL_STATE(2345)] = 42413, + [SMALL_STATE(2346)] = 42472, + [SMALL_STATE(2347)] = 42597, + [SMALL_STATE(2348)] = 42656, + [SMALL_STATE(2349)] = 42717, + [SMALL_STATE(2350)] = 42796, + [SMALL_STATE(2351)] = 42855, + [SMALL_STATE(2352)] = 42914, + [SMALL_STATE(2353)] = 42973, + [SMALL_STATE(2354)] = 43032, + [SMALL_STATE(2355)] = 43091, + [SMALL_STATE(2356)] = 43152, + [SMALL_STATE(2357)] = 43217, + [SMALL_STATE(2358)] = 43276, + [SMALL_STATE(2359)] = 43335, + [SMALL_STATE(2360)] = 43394, + [SMALL_STATE(2361)] = 43453, + [SMALL_STATE(2362)] = 43570, + [SMALL_STATE(2363)] = 43629, + [SMALL_STATE(2364)] = 43688, + [SMALL_STATE(2365)] = 43747, + [SMALL_STATE(2366)] = 43806, + [SMALL_STATE(2367)] = 43865, + [SMALL_STATE(2368)] = 43982, + [SMALL_STATE(2369)] = 44099, + [SMALL_STATE(2370)] = 44224, + [SMALL_STATE(2371)] = 44283, + [SMALL_STATE(2372)] = 44368, + [SMALL_STATE(2373)] = 44433, + [SMALL_STATE(2374)] = 44494, + [SMALL_STATE(2375)] = 44611, + [SMALL_STATE(2376)] = 44670, + [SMALL_STATE(2377)] = 44729, + [SMALL_STATE(2378)] = 44788, + [SMALL_STATE(2379)] = 44847, + [SMALL_STATE(2380)] = 44906, + [SMALL_STATE(2381)] = 44965, + [SMALL_STATE(2382)] = 45060, + [SMALL_STATE(2383)] = 45119, + [SMALL_STATE(2384)] = 45178, + [SMALL_STATE(2385)] = 45239, + [SMALL_STATE(2386)] = 45298, + [SMALL_STATE(2387)] = 45357, + [SMALL_STATE(2388)] = 45416, + [SMALL_STATE(2389)] = 45481, + [SMALL_STATE(2390)] = 45569, + [SMALL_STATE(2391)] = 45685, + [SMALL_STATE(2392)] = 45743, + [SMALL_STATE(2393)] = 45801, + [SMALL_STATE(2394)] = 45889, + [SMALL_STATE(2395)] = 45979, + [SMALL_STATE(2396)] = 46065, + [SMALL_STATE(2397)] = 46123, + [SMALL_STATE(2398)] = 46181, + [SMALL_STATE(2399)] = 46239, + [SMALL_STATE(2400)] = 46297, + [SMALL_STATE(2401)] = 46355, + [SMALL_STATE(2402)] = 46471, + [SMALL_STATE(2403)] = 46529, + [SMALL_STATE(2404)] = 46587, + [SMALL_STATE(2405)] = 46673, + [SMALL_STATE(2406)] = 46761, + [SMALL_STATE(2407)] = 46881, + [SMALL_STATE(2408)] = 46939, + [SMALL_STATE(2409)] = 47055, + [SMALL_STATE(2410)] = 47171, + [SMALL_STATE(2411)] = 47229, + [SMALL_STATE(2412)] = 47287, + [SMALL_STATE(2413)] = 47347, + [SMALL_STATE(2414)] = 47463, + [SMALL_STATE(2415)] = 47521, + [SMALL_STATE(2416)] = 47585, + [SMALL_STATE(2417)] = 47645, + [SMALL_STATE(2418)] = 47705, + [SMALL_STATE(2419)] = 47825, + [SMALL_STATE(2420)] = 47945, + [SMALL_STATE(2421)] = 48009, + [SMALL_STATE(2422)] = 48067, + [SMALL_STATE(2423)] = 48125, + [SMALL_STATE(2424)] = 48183, + [SMALL_STATE(2425)] = 48241, + [SMALL_STATE(2426)] = 48299, + [SMALL_STATE(2427)] = 48361, + [SMALL_STATE(2428)] = 48419, + [SMALL_STATE(2429)] = 48477, + [SMALL_STATE(2430)] = 48563, + [SMALL_STATE(2431)] = 48621, + [SMALL_STATE(2432)] = 48679, + [SMALL_STATE(2433)] = 48767, + [SMALL_STATE(2434)] = 48825, + [SMALL_STATE(2435)] = 48883, + [SMALL_STATE(2436)] = 48941, + [SMALL_STATE(2437)] = 48999, + [SMALL_STATE(2438)] = 49115, + [SMALL_STATE(2439)] = 49177, + [SMALL_STATE(2440)] = 49235, + [SMALL_STATE(2441)] = 49351, + [SMALL_STATE(2442)] = 49467, + [SMALL_STATE(2443)] = 49527, + [SMALL_STATE(2444)] = 49585, + [SMALL_STATE(2445)] = 49675, + [SMALL_STATE(2446)] = 49733, + [SMALL_STATE(2447)] = 49853, + [SMALL_STATE(2448)] = 49911, + [SMALL_STATE(2449)] = 50031, + [SMALL_STATE(2450)] = 50089, + [SMALL_STATE(2451)] = 50155, + [SMALL_STATE(2452)] = 50231, + [SMALL_STATE(2453)] = 50289, + [SMALL_STATE(2454)] = 50347, + [SMALL_STATE(2455)] = 50405, + [SMALL_STATE(2456)] = 50463, + [SMALL_STATE(2457)] = 50579, + [SMALL_STATE(2458)] = 50695, + [SMALL_STATE(2459)] = 50811, + [SMALL_STATE(2460)] = 50869, + [SMALL_STATE(2461)] = 50987, + [SMALL_STATE(2462)] = 51103, + [SMALL_STATE(2463)] = 51221, + [SMALL_STATE(2464)] = 51279, + [SMALL_STATE(2465)] = 51357, + [SMALL_STATE(2466)] = 51415, + [SMALL_STATE(2467)] = 51483, + [SMALL_STATE(2468)] = 51551, + [SMALL_STATE(2469)] = 51609, + [SMALL_STATE(2470)] = 51667, + [SMALL_STATE(2471)] = 51735, + [SMALL_STATE(2472)] = 51819, + [SMALL_STATE(2473)] = 51939, + [SMALL_STATE(2474)] = 52059, + [SMALL_STATE(2475)] = 52175, + [SMALL_STATE(2476)] = 52283, + [SMALL_STATE(2477)] = 52341, + [SMALL_STATE(2478)] = 52399, + [SMALL_STATE(2479)] = 52457, + [SMALL_STATE(2480)] = 52577, + [SMALL_STATE(2481)] = 52639, + [SMALL_STATE(2482)] = 52759, + [SMALL_STATE(2483)] = 52875, + [SMALL_STATE(2484)] = 52969, + [SMALL_STATE(2485)] = 53089, + [SMALL_STATE(2486)] = 53147, + [SMALL_STATE(2487)] = 53205, + [SMALL_STATE(2488)] = 53263, + [SMALL_STATE(2489)] = 53379, + [SMALL_STATE(2490)] = 53453, + [SMALL_STATE(2491)] = 53569, + [SMALL_STATE(2492)] = 53655, + [SMALL_STATE(2493)] = 53713, + [SMALL_STATE(2494)] = 53789, + [SMALL_STATE(2495)] = 53869, + [SMALL_STATE(2496)] = 53927, + [SMALL_STATE(2497)] = 53985, + [SMALL_STATE(2498)] = 54101, + [SMALL_STATE(2499)] = 54217, + [SMALL_STATE(2500)] = 54337, + [SMALL_STATE(2501)] = 54457, + [SMALL_STATE(2502)] = 54515, + [SMALL_STATE(2503)] = 54573, + [SMALL_STATE(2504)] = 54631, + [SMALL_STATE(2505)] = 54689, + [SMALL_STATE(2506)] = 54747, + [SMALL_STATE(2507)] = 54805, + [SMALL_STATE(2508)] = 54889, + [SMALL_STATE(2509)] = 55009, + [SMALL_STATE(2510)] = 55129, + [SMALL_STATE(2511)] = 55231, + [SMALL_STATE(2512)] = 55331, + [SMALL_STATE(2513)] = 55429, + [SMALL_STATE(2514)] = 55515, + [SMALL_STATE(2515)] = 55573, + [SMALL_STATE(2516)] = 55679, + [SMALL_STATE(2517)] = 55783, + [SMALL_STATE(2518)] = 55841, + [SMALL_STATE(2519)] = 55921, + [SMALL_STATE(2520)] = 55979, + [SMALL_STATE(2521)] = 56037, + [SMALL_STATE(2522)] = 56121, + [SMALL_STATE(2523)] = 56179, + [SMALL_STATE(2524)] = 56283, + [SMALL_STATE(2525)] = 56389, + [SMALL_STATE(2526)] = 56475, + [SMALL_STATE(2527)] = 56561, + [SMALL_STATE(2528)] = 56619, + [SMALL_STATE(2529)] = 56677, + [SMALL_STATE(2530)] = 56765, + [SMALL_STATE(2531)] = 56863, + [SMALL_STATE(2532)] = 56979, + [SMALL_STATE(2533)] = 57079, + [SMALL_STATE(2534)] = 57181, + [SMALL_STATE(2535)] = 57245, + [SMALL_STATE(2536)] = 57303, + [SMALL_STATE(2537)] = 57381, + [SMALL_STATE(2538)] = 57441, + [SMALL_STATE(2539)] = 57499, + [SMALL_STATE(2540)] = 57557, + [SMALL_STATE(2541)] = 57615, + [SMALL_STATE(2542)] = 57699, + [SMALL_STATE(2543)] = 57785, + [SMALL_STATE(2544)] = 57905, + [SMALL_STATE(2545)] = 57963, + [SMALL_STATE(2546)] = 58021, + [SMALL_STATE(2547)] = 58137, + [SMALL_STATE(2548)] = 58257, + [SMALL_STATE(2549)] = 58315, + [SMALL_STATE(2550)] = 58435, + [SMALL_STATE(2551)] = 58493, + [SMALL_STATE(2552)] = 58609, + [SMALL_STATE(2553)] = 58667, + [SMALL_STATE(2554)] = 58725, + [SMALL_STATE(2555)] = 58783, + [SMALL_STATE(2556)] = 58891, + [SMALL_STATE(2557)] = 59007, + [SMALL_STATE(2558)] = 59123, + [SMALL_STATE(2559)] = 59181, + [SMALL_STATE(2560)] = 59269, + [SMALL_STATE(2561)] = 59363, + [SMALL_STATE(2562)] = 59421, + [SMALL_STATE(2563)] = 59507, + [SMALL_STATE(2564)] = 59623, + [SMALL_STATE(2565)] = 59739, + [SMALL_STATE(2566)] = 59855, + [SMALL_STATE(2567)] = 59971, + [SMALL_STATE(2568)] = 60087, + [SMALL_STATE(2569)] = 60207, + [SMALL_STATE(2570)] = 60323, + [SMALL_STATE(2571)] = 60381, + [SMALL_STATE(2572)] = 60439, + [SMALL_STATE(2573)] = 60559, + [SMALL_STATE(2574)] = 60617, + [SMALL_STATE(2575)] = 60675, + [SMALL_STATE(2576)] = 60733, + [SMALL_STATE(2577)] = 60791, + [SMALL_STATE(2578)] = 60849, + [SMALL_STATE(2579)] = 60969, + [SMALL_STATE(2580)] = 61026, + [SMALL_STATE(2581)] = 61111, + [SMALL_STATE(2582)] = 61192, + [SMALL_STATE(2583)] = 61295, + [SMALL_STATE(2584)] = 61412, + [SMALL_STATE(2585)] = 61477, + [SMALL_STATE(2586)] = 61556, + [SMALL_STATE(2587)] = 61645, + [SMALL_STATE(2588)] = 61760, + [SMALL_STATE(2589)] = 61875, + [SMALL_STATE(2590)] = 61936, + [SMALL_STATE(2591)] = 62001, + [SMALL_STATE(2592)] = 62068, + [SMALL_STATE(2593)] = 62131, + [SMALL_STATE(2594)] = 62188, + [SMALL_STATE(2595)] = 62255, + [SMALL_STATE(2596)] = 62370, + [SMALL_STATE(2597)] = 62451, + [SMALL_STATE(2598)] = 62516, + [SMALL_STATE(2599)] = 62635, + [SMALL_STATE(2600)] = 62754, + [SMALL_STATE(2601)] = 62813, + [SMALL_STATE(2602)] = 62928, + [SMALL_STATE(2603)] = 63047, + [SMALL_STATE(2604)] = 63112, + [SMALL_STATE(2605)] = 63193, + [SMALL_STATE(2606)] = 63308, + [SMALL_STATE(2607)] = 63427, + [SMALL_STATE(2608)] = 63492, + [SMALL_STATE(2609)] = 63607, + [SMALL_STATE(2610)] = 63692, + [SMALL_STATE(2611)] = 63755, + [SMALL_STATE(2612)] = 63836, + [SMALL_STATE(2613)] = 63897, + [SMALL_STATE(2614)] = 64002, + [SMALL_STATE(2615)] = 64059, + [SMALL_STATE(2616)] = 64156, + [SMALL_STATE(2617)] = 64255, + [SMALL_STATE(2618)] = 64356, + [SMALL_STATE(2619)] = 64439, + [SMALL_STATE(2620)] = 64524, + [SMALL_STATE(2621)] = 64639, + [SMALL_STATE(2622)] = 64732, + [SMALL_STATE(2623)] = 64839, + [SMALL_STATE(2624)] = 64954, + [SMALL_STATE(2625)] = 65069, + [SMALL_STATE(2626)] = 65184, + [SMALL_STATE(2627)] = 65299, + [SMALL_STATE(2628)] = 65358, + [SMALL_STATE(2629)] = 65477, + [SMALL_STATE(2630)] = 65536, + [SMALL_STATE(2631)] = 65655, + [SMALL_STATE(2632)] = 65774, + [SMALL_STATE(2633)] = 65859, + [SMALL_STATE(2634)] = 65978, + [SMALL_STATE(2635)] = 66097, + [SMALL_STATE(2636)] = 66212, + [SMALL_STATE(2637)] = 66327, + [SMALL_STATE(2638)] = 66384, + [SMALL_STATE(2639)] = 66459, + [SMALL_STATE(2640)] = 66574, + [SMALL_STATE(2641)] = 66657, + [SMALL_STATE(2642)] = 66734, + [SMALL_STATE(2643)] = 66853, + [SMALL_STATE(2644)] = 66910, + [SMALL_STATE(2645)] = 67029, + [SMALL_STATE(2646)] = 67148, + [SMALL_STATE(2647)] = 67265, + [SMALL_STATE(2648)] = 67384, + [SMALL_STATE(2649)] = 67501, + [SMALL_STATE(2650)] = 67620, + [SMALL_STATE(2651)] = 67683, + [SMALL_STATE(2652)] = 67800, + [SMALL_STATE(2653)] = 67915, + [SMALL_STATE(2654)] = 68034, + [SMALL_STATE(2655)] = 68093, + [SMALL_STATE(2656)] = 68180, + [SMALL_STATE(2657)] = 68299, + [SMALL_STATE(2658)] = 68418, + [SMALL_STATE(2659)] = 68533, + [SMALL_STATE(2660)] = 68650, + [SMALL_STATE(2661)] = 68769, + [SMALL_STATE(2662)] = 68830, + [SMALL_STATE(2663)] = 68949, + [SMALL_STATE(2664)] = 69030, + [SMALL_STATE(2665)] = 69093, + [SMALL_STATE(2666)] = 69212, + [SMALL_STATE(2667)] = 69327, + [SMALL_STATE(2668)] = 69442, + [SMALL_STATE(2669)] = 69499, + [SMALL_STATE(2670)] = 69564, + [SMALL_STATE(2671)] = 69625, + [SMALL_STATE(2672)] = 69688, + [SMALL_STATE(2673)] = 69807, + [SMALL_STATE(2674)] = 69926, + [SMALL_STATE(2675)] = 70045, + [SMALL_STATE(2676)] = 70164, + [SMALL_STATE(2677)] = 70279, + [SMALL_STATE(2678)] = 70398, + [SMALL_STATE(2679)] = 70513, + [SMALL_STATE(2680)] = 70632, + [SMALL_STATE(2681)] = 70751, + [SMALL_STATE(2682)] = 70870, + [SMALL_STATE(2683)] = 70989, + [SMALL_STATE(2684)] = 71108, + [SMALL_STATE(2685)] = 71188, + [SMALL_STATE(2686)] = 71288, + [SMALL_STATE(2687)] = 71402, + [SMALL_STATE(2688)] = 71516, + [SMALL_STATE(2689)] = 71630, + [SMALL_STATE(2690)] = 71712, + [SMALL_STATE(2691)] = 71826, + [SMALL_STATE(2692)] = 71940, + [SMALL_STATE(2693)] = 71998, + [SMALL_STATE(2694)] = 72054, + [SMALL_STATE(2695)] = 72112, + [SMALL_STATE(2696)] = 72192, + [SMALL_STATE(2697)] = 72248, + [SMALL_STATE(2698)] = 72304, + [SMALL_STATE(2699)] = 72418, + [SMALL_STATE(2700)] = 72496, + [SMALL_STATE(2701)] = 72552, + [SMALL_STATE(2702)] = 72608, + [SMALL_STATE(2703)] = 72722, + [SMALL_STATE(2704)] = 72836, + [SMALL_STATE(2705)] = 72892, + [SMALL_STATE(2706)] = 72974, + [SMALL_STATE(2707)] = 73080, + [SMALL_STATE(2708)] = 73172, + [SMALL_STATE(2709)] = 73228, + [SMALL_STATE(2710)] = 73284, + [SMALL_STATE(2711)] = 73340, + [SMALL_STATE(2712)] = 73396, + [SMALL_STATE(2713)] = 73452, + [SMALL_STATE(2714)] = 73536, + [SMALL_STATE(2715)] = 73618, + [SMALL_STATE(2716)] = 73680, + [SMALL_STATE(2717)] = 73778, + [SMALL_STATE(2718)] = 73874, + [SMALL_STATE(2719)] = 73958, + [SMALL_STATE(2720)] = 74062, + [SMALL_STATE(2721)] = 74124, + [SMALL_STATE(2722)] = 74180, + [SMALL_STATE(2723)] = 74236, + [SMALL_STATE(2724)] = 74294, + [SMALL_STATE(2725)] = 74396, + [SMALL_STATE(2726)] = 74452, + [SMALL_STATE(2727)] = 74508, + [SMALL_STATE(2728)] = 74622, + [SMALL_STATE(2729)] = 74678, + [SMALL_STATE(2730)] = 74754, + [SMALL_STATE(2731)] = 74870, + [SMALL_STATE(2732)] = 74940, + [SMALL_STATE(2733)] = 75056, + [SMALL_STATE(2734)] = 75116, + [SMALL_STATE(2735)] = 75186, + [SMALL_STATE(2736)] = 75248, + [SMALL_STATE(2737)] = 75326, + [SMALL_STATE(2738)] = 75382, + [SMALL_STATE(2739)] = 75438, + [SMALL_STATE(2740)] = 75494, + [SMALL_STATE(2741)] = 75550, + [SMALL_STATE(2742)] = 75606, + [SMALL_STATE(2743)] = 75662, + [SMALL_STATE(2744)] = 75724, + [SMALL_STATE(2745)] = 75780, + [SMALL_STATE(2746)] = 75836, + [SMALL_STATE(2747)] = 75892, + [SMALL_STATE(2748)] = 75948, + [SMALL_STATE(2749)] = 76030, + [SMALL_STATE(2750)] = 76086, + [SMALL_STATE(2751)] = 76200, + [SMALL_STATE(2752)] = 76314, + [SMALL_STATE(2753)] = 76430, + [SMALL_STATE(2754)] = 76486, + [SMALL_STATE(2755)] = 76548, + [SMALL_STATE(2756)] = 76662, + [SMALL_STATE(2757)] = 76752, + [SMALL_STATE(2758)] = 76810, + [SMALL_STATE(2759)] = 76866, + [SMALL_STATE(2760)] = 76924, + [SMALL_STATE(2761)] = 76980, + [SMALL_STATE(2762)] = 77042, + [SMALL_STATE(2763)] = 77104, + [SMALL_STATE(2764)] = 77172, + [SMALL_STATE(2765)] = 77228, + [SMALL_STATE(2766)] = 77284, + [SMALL_STATE(2767)] = 77340, + [SMALL_STATE(2768)] = 77398, + [SMALL_STATE(2769)] = 77454, + [SMALL_STATE(2770)] = 77516, + [SMALL_STATE(2771)] = 77572, + [SMALL_STATE(2772)] = 77628, + [SMALL_STATE(2773)] = 77690, + [SMALL_STATE(2774)] = 77804, + [SMALL_STATE(2775)] = 77920, + [SMALL_STATE(2776)] = 77976, + [SMALL_STATE(2777)] = 78038, + [SMALL_STATE(2778)] = 78152, + [SMALL_STATE(2779)] = 78208, + [SMALL_STATE(2780)] = 78290, + [SMALL_STATE(2781)] = 78346, + [SMALL_STATE(2782)] = 78460, + [SMALL_STATE(2783)] = 78528, + [SMALL_STATE(2784)] = 78596, + [SMALL_STATE(2785)] = 78652, + [SMALL_STATE(2786)] = 78710, + [SMALL_STATE(2787)] = 78772, + [SMALL_STATE(2788)] = 78830, + [SMALL_STATE(2789)] = 78918, + [SMALL_STATE(2790)] = 79032, + [SMALL_STATE(2791)] = 79146, + [SMALL_STATE(2792)] = 79260, + [SMALL_STATE(2793)] = 79342, + [SMALL_STATE(2794)] = 79456, + [SMALL_STATE(2795)] = 79512, + [SMALL_STATE(2796)] = 79594, + [SMALL_STATE(2797)] = 79708, + [SMALL_STATE(2798)] = 79770, + [SMALL_STATE(2799)] = 79828, + [SMALL_STATE(2800)] = 79906, + [SMALL_STATE(2801)] = 79996, + [SMALL_STATE(2802)] = 80110, + [SMALL_STATE(2803)] = 80224, + [SMALL_STATE(2804)] = 80306, + [SMALL_STATE(2805)] = 80420, + [SMALL_STATE(2806)] = 80484, + [SMALL_STATE(2807)] = 80544, + [SMALL_STATE(2808)] = 80606, + [SMALL_STATE(2809)] = 80696, + [SMALL_STATE(2810)] = 80752, + [SMALL_STATE(2811)] = 80830, + [SMALL_STATE(2812)] = 80944, + [SMALL_STATE(2813)] = 81000, + [SMALL_STATE(2814)] = 81056, + [SMALL_STATE(2815)] = 81144, + [SMALL_STATE(2816)] = 81200, + [SMALL_STATE(2817)] = 81256, + [SMALL_STATE(2818)] = 81312, + [SMALL_STATE(2819)] = 81368, + [SMALL_STATE(2820)] = 81424, + [SMALL_STATE(2821)] = 81480, + [SMALL_STATE(2822)] = 81538, + [SMALL_STATE(2823)] = 81596, + [SMALL_STATE(2824)] = 81686, + [SMALL_STATE(2825)] = 81742, + [SMALL_STATE(2826)] = 81804, + [SMALL_STATE(2827)] = 81866, + [SMALL_STATE(2828)] = 81922, + [SMALL_STATE(2829)] = 82000, + [SMALL_STATE(2830)] = 82114, + [SMALL_STATE(2831)] = 82172, + [SMALL_STATE(2832)] = 82228, + [SMALL_STATE(2833)] = 82290, + [SMALL_STATE(2834)] = 82380, + [SMALL_STATE(2835)] = 82494, + [SMALL_STATE(2836)] = 82568, + [SMALL_STATE(2837)] = 82624, + [SMALL_STATE(2838)] = 82680, + [SMALL_STATE(2839)] = 82758, + [SMALL_STATE(2840)] = 82872, + [SMALL_STATE(2841)] = 82932, + [SMALL_STATE(2842)] = 83000, + [SMALL_STATE(2843)] = 83064, + [SMALL_STATE(2844)] = 83178, + [SMALL_STATE(2845)] = 83234, + [SMALL_STATE(2846)] = 83348, + [SMALL_STATE(2847)] = 83422, + [SMALL_STATE(2848)] = 83538, + [SMALL_STATE(2849)] = 83628, + [SMALL_STATE(2850)] = 83684, + [SMALL_STATE(2851)] = 83740, + [SMALL_STATE(2852)] = 83798, + [SMALL_STATE(2853)] = 83860, + [SMALL_STATE(2854)] = 83974, + [SMALL_STATE(2855)] = 84032, + [SMALL_STATE(2856)] = 84146, + [SMALL_STATE(2857)] = 84210, + [SMALL_STATE(2858)] = 84266, + [SMALL_STATE(2859)] = 84334, + [SMALL_STATE(2860)] = 84390, + [SMALL_STATE(2861)] = 84492, + [SMALL_STATE(2862)] = 84606, + [SMALL_STATE(2863)] = 84722, + [SMALL_STATE(2864)] = 84784, + [SMALL_STATE(2865)] = 84888, + [SMALL_STATE(2866)] = 84994, + [SMALL_STATE(2867)] = 85086, + [SMALL_STATE(2868)] = 85176, + [SMALL_STATE(2869)] = 85232, + [SMALL_STATE(2870)] = 85292, + [SMALL_STATE(2871)] = 85376, + [SMALL_STATE(2872)] = 85472, + [SMALL_STATE(2873)] = 85528, + [SMALL_STATE(2874)] = 85584, + [SMALL_STATE(2875)] = 85668, + [SMALL_STATE(2876)] = 85726, + [SMALL_STATE(2877)] = 85840, + [SMALL_STATE(2878)] = 85908, + [SMALL_STATE(2879)] = 85976, + [SMALL_STATE(2880)] = 86074, + [SMALL_STATE(2881)] = 86188, + [SMALL_STATE(2882)] = 86302, + [SMALL_STATE(2883)] = 86358, + [SMALL_STATE(2884)] = 86440, + [SMALL_STATE(2885)] = 86522, + [SMALL_STATE(2886)] = 86578, + [SMALL_STATE(2887)] = 86634, + [SMALL_STATE(2888)] = 86748, + [SMALL_STATE(2889)] = 86804, + [SMALL_STATE(2890)] = 86860, + [SMALL_STATE(2891)] = 86916, + [SMALL_STATE(2892)] = 86972, + [SMALL_STATE(2893)] = 87054, + [SMALL_STATE(2894)] = 87116, + [SMALL_STATE(2895)] = 87172, + [SMALL_STATE(2896)] = 87228, + [SMALL_STATE(2897)] = 87284, + [SMALL_STATE(2898)] = 87340, + [SMALL_STATE(2899)] = 87396, + [SMALL_STATE(2900)] = 87452, + [SMALL_STATE(2901)] = 87532, + [SMALL_STATE(2902)] = 87588, + [SMALL_STATE(2903)] = 87644, + [SMALL_STATE(2904)] = 87702, + [SMALL_STATE(2905)] = 87758, + [SMALL_STATE(2906)] = 87840, + [SMALL_STATE(2907)] = 87916, + [SMALL_STATE(2908)] = 88016, + [SMALL_STATE(2909)] = 88084, + [SMALL_STATE(2910)] = 88152, + [SMALL_STATE(2911)] = 88208, + [SMALL_STATE(2912)] = 88264, + [SMALL_STATE(2913)] = 88322, + [SMALL_STATE(2914)] = 88378, + [SMALL_STATE(2915)] = 88492, + [SMALL_STATE(2916)] = 88554, + [SMALL_STATE(2917)] = 88610, + [SMALL_STATE(2918)] = 88666, + [SMALL_STATE(2919)] = 88744, + [SMALL_STATE(2920)] = 88858, + [SMALL_STATE(2921)] = 88913, + [SMALL_STATE(2922)] = 88968, + [SMALL_STATE(2923)] = 89081, + [SMALL_STATE(2924)] = 89140, + [SMALL_STATE(2925)] = 89253, + [SMALL_STATE(2926)] = 89328, + [SMALL_STATE(2927)] = 89383, + [SMALL_STATE(2928)] = 89496, + [SMALL_STATE(2929)] = 89609, + [SMALL_STATE(2930)] = 89674, + [SMALL_STATE(2931)] = 89747, + [SMALL_STATE(2932)] = 89822, + [SMALL_STATE(2933)] = 89895, + [SMALL_STATE(2934)] = 90008, + [SMALL_STATE(2935)] = 90067, + [SMALL_STATE(2936)] = 90148, + [SMALL_STATE(2937)] = 90263, + [SMALL_STATE(2938)] = 90338, + [SMALL_STATE(2939)] = 90393, + [SMALL_STATE(2940)] = 90506, + [SMALL_STATE(2941)] = 90561, + [SMALL_STATE(2942)] = 90622, + [SMALL_STATE(2943)] = 90679, + [SMALL_STATE(2944)] = 90744, + [SMALL_STATE(2945)] = 90799, + [SMALL_STATE(2946)] = 90856, + [SMALL_STATE(2947)] = 90919, + [SMALL_STATE(2948)] = 90978, + [SMALL_STATE(2949)] = 91053, + [SMALL_STATE(2950)] = 91108, + [SMALL_STATE(2951)] = 91165, + [SMALL_STATE(2952)] = 91222, + [SMALL_STATE(2953)] = 91295, + [SMALL_STATE(2954)] = 91370, + [SMALL_STATE(2955)] = 91445, + [SMALL_STATE(2956)] = 91518, + [SMALL_STATE(2957)] = 91575, + [SMALL_STATE(2958)] = 91630, + [SMALL_STATE(2959)] = 91687, + [SMALL_STATE(2960)] = 91762, + [SMALL_STATE(2961)] = 91817, + [SMALL_STATE(2962)] = 91872, + [SMALL_STATE(2963)] = 91955, + [SMALL_STATE(2964)] = 92068, + [SMALL_STATE(2965)] = 92149, + [SMALL_STATE(2966)] = 92232, + [SMALL_STATE(2967)] = 92313, + [SMALL_STATE(2968)] = 92370, + [SMALL_STATE(2969)] = 92443, + [SMALL_STATE(2970)] = 92510, + [SMALL_STATE(2971)] = 92565, + [SMALL_STATE(2972)] = 92622, + [SMALL_STATE(2973)] = 92677, + [SMALL_STATE(2974)] = 92740, + [SMALL_STATE(2975)] = 92803, + [SMALL_STATE(2976)] = 92870, + [SMALL_STATE(2977)] = 92933, + [SMALL_STATE(2978)] = 93006, + [SMALL_STATE(2979)] = 93079, + [SMALL_STATE(2980)] = 93134, + [SMALL_STATE(2981)] = 93191, + [SMALL_STATE(2982)] = 93246, + [SMALL_STATE(2983)] = 93319, + [SMALL_STATE(2984)] = 93394, + [SMALL_STATE(2985)] = 93449, + [SMALL_STATE(2986)] = 93532, + [SMALL_STATE(2987)] = 93587, + [SMALL_STATE(2988)] = 93642, + [SMALL_STATE(2989)] = 93697, + [SMALL_STATE(2990)] = 93752, + [SMALL_STATE(2991)] = 93815, + [SMALL_STATE(2992)] = 93870, + [SMALL_STATE(2993)] = 93925, + [SMALL_STATE(2994)] = 94006, + [SMALL_STATE(2995)] = 94119, + [SMALL_STATE(2996)] = 94192, + [SMALL_STATE(2997)] = 94267, + [SMALL_STATE(2998)] = 94326, + [SMALL_STATE(2999)] = 94381, + [SMALL_STATE(3000)] = 94436, + [SMALL_STATE(3001)] = 94495, + [SMALL_STATE(3002)] = 94608, + [SMALL_STATE(3003)] = 94721, + [SMALL_STATE(3004)] = 94834, + [SMALL_STATE(3005)] = 94889, + [SMALL_STATE(3006)] = 94994, + [SMALL_STATE(3007)] = 95049, + [SMALL_STATE(3008)] = 95108, + [SMALL_STATE(3009)] = 95163, + [SMALL_STATE(3010)] = 95254, + [SMALL_STATE(3011)] = 95309, + [SMALL_STATE(3012)] = 95364, + [SMALL_STATE(3013)] = 95427, + [SMALL_STATE(3014)] = 95482, + [SMALL_STATE(3015)] = 95543, + [SMALL_STATE(3016)] = 95618, + [SMALL_STATE(3017)] = 95673, + [SMALL_STATE(3018)] = 95728, + [SMALL_STATE(3019)] = 95811, + [SMALL_STATE(3020)] = 95892, + [SMALL_STATE(3021)] = 95947, + [SMALL_STATE(3022)] = 96002, + [SMALL_STATE(3023)] = 96101, + [SMALL_STATE(3024)] = 96156, + [SMALL_STATE(3025)] = 96253, + [SMALL_STATE(3026)] = 96366, + [SMALL_STATE(3027)] = 96425, + [SMALL_STATE(3028)] = 96484, + [SMALL_STATE(3029)] = 96543, + [SMALL_STATE(3030)] = 96638, + [SMALL_STATE(3031)] = 96699, + [SMALL_STATE(3032)] = 96756, + [SMALL_STATE(3033)] = 96813, + [SMALL_STATE(3034)] = 96868, + [SMALL_STATE(3035)] = 96931, + [SMALL_STATE(3036)] = 96986, + [SMALL_STATE(3037)] = 97069, + [SMALL_STATE(3038)] = 97136, + [SMALL_STATE(3039)] = 97249, + [SMALL_STATE(3040)] = 97352, + [SMALL_STATE(3041)] = 97453, + [SMALL_STATE(3042)] = 97528, + [SMALL_STATE(3043)] = 97601, + [SMALL_STATE(3044)] = 97656, + [SMALL_STATE(3045)] = 97729, + [SMALL_STATE(3046)] = 97802, + [SMALL_STATE(3047)] = 97867, + [SMALL_STATE(3048)] = 97934, + [SMALL_STATE(3049)] = 97993, + [SMALL_STATE(3050)] = 98066, + [SMALL_STATE(3051)] = 98125, + [SMALL_STATE(3052)] = 98188, + [SMALL_STATE(3053)] = 98265, + [SMALL_STATE(3054)] = 98320, + [SMALL_STATE(3055)] = 98379, + [SMALL_STATE(3056)] = 98434, + [SMALL_STATE(3057)] = 98547, + [SMALL_STATE(3058)] = 98602, + [SMALL_STATE(3059)] = 98715, + [SMALL_STATE(3060)] = 98770, + [SMALL_STATE(3061)] = 98825, + [SMALL_STATE(3062)] = 98898, + [SMALL_STATE(3063)] = 98955, + [SMALL_STATE(3064)] = 99010, + [SMALL_STATE(3065)] = 99085, + [SMALL_STATE(3066)] = 99158, + [SMALL_STATE(3067)] = 99271, + [SMALL_STATE(3068)] = 99326, + [SMALL_STATE(3069)] = 99385, + [SMALL_STATE(3070)] = 99440, + [SMALL_STATE(3071)] = 99527, + [SMALL_STATE(3072)] = 99584, + [SMALL_STATE(3073)] = 99639, + [SMALL_STATE(3074)] = 99752, + [SMALL_STATE(3075)] = 99865, + [SMALL_STATE(3076)] = 99948, + [SMALL_STATE(3077)] = 100029, + [SMALL_STATE(3078)] = 100084, + [SMALL_STATE(3079)] = 100159, + [SMALL_STATE(3080)] = 100234, + [SMALL_STATE(3081)] = 100347, + [SMALL_STATE(3082)] = 100460, + [SMALL_STATE(3083)] = 100533, + [SMALL_STATE(3084)] = 100588, + [SMALL_STATE(3085)] = 100701, + [SMALL_STATE(3086)] = 100764, + [SMALL_STATE(3087)] = 100819, + [SMALL_STATE(3088)] = 100878, + [SMALL_STATE(3089)] = 100955, + [SMALL_STATE(3090)] = 101010, + [SMALL_STATE(3091)] = 101069, + [SMALL_STATE(3092)] = 101128, + [SMALL_STATE(3093)] = 101187, + [SMALL_STATE(3094)] = 101260, + [SMALL_STATE(3095)] = 101315, + [SMALL_STATE(3096)] = 101398, + [SMALL_STATE(3097)] = 101473, + [SMALL_STATE(3098)] = 101528, + [SMALL_STATE(3099)] = 101583, + [SMALL_STATE(3100)] = 101642, + [SMALL_STATE(3101)] = 101701, + [SMALL_STATE(3102)] = 101774, + [SMALL_STATE(3103)] = 101833, + [SMALL_STATE(3104)] = 101946, + [SMALL_STATE(3105)] = 102005, + [SMALL_STATE(3106)] = 102064, + [SMALL_STATE(3107)] = 102157, + [SMALL_STATE(3108)] = 102238, + [SMALL_STATE(3109)] = 102351, + [SMALL_STATE(3110)] = 102432, + [SMALL_STATE(3111)] = 102487, + [SMALL_STATE(3112)] = 102560, + [SMALL_STATE(3113)] = 102635, + [SMALL_STATE(3114)] = 102692, + [SMALL_STATE(3115)] = 102805, + [SMALL_STATE(3116)] = 102918, + [SMALL_STATE(3117)] = 103031, + [SMALL_STATE(3118)] = 103090, + [SMALL_STATE(3119)] = 103203, + [SMALL_STATE(3120)] = 103278, + [SMALL_STATE(3121)] = 103391, + [SMALL_STATE(3122)] = 103478, + [SMALL_STATE(3123)] = 103553, + [SMALL_STATE(3124)] = 103612, + [SMALL_STATE(3125)] = 103725, + [SMALL_STATE(3126)] = 103838, + [SMALL_STATE(3127)] = 103951, + [SMALL_STATE(3128)] = 104064, + [SMALL_STATE(3129)] = 104119, + [SMALL_STATE(3130)] = 104232, + [SMALL_STATE(3131)] = 104289, + [SMALL_STATE(3132)] = 104362, + [SMALL_STATE(3133)] = 104475, + [SMALL_STATE(3134)] = 104588, + [SMALL_STATE(3135)] = 104701, + [SMALL_STATE(3136)] = 104806, + [SMALL_STATE(3137)] = 104897, + [SMALL_STATE(3138)] = 104980, + [SMALL_STATE(3139)] = 105035, + [SMALL_STATE(3140)] = 105102, + [SMALL_STATE(3141)] = 105157, + [SMALL_STATE(3142)] = 105224, + [SMALL_STATE(3143)] = 105279, + [SMALL_STATE(3144)] = 105360, + [SMALL_STATE(3145)] = 105415, + [SMALL_STATE(3146)] = 105514, + [SMALL_STATE(3147)] = 105571, + [SMALL_STATE(3148)] = 105654, + [SMALL_STATE(3149)] = 105767, + [SMALL_STATE(3150)] = 105848, + [SMALL_STATE(3151)] = 105945, + [SMALL_STATE(3152)] = 106006, + [SMALL_STATE(3153)] = 106079, + [SMALL_STATE(3154)] = 106144, + [SMALL_STATE(3155)] = 106205, + [SMALL_STATE(3156)] = 106264, + [SMALL_STATE(3157)] = 106319, + [SMALL_STATE(3158)] = 106414, + [SMALL_STATE(3159)] = 106477, + [SMALL_STATE(3160)] = 106560, + [SMALL_STATE(3161)] = 106663, + [SMALL_STATE(3162)] = 106722, + [SMALL_STATE(3163)] = 106835, + [SMALL_STATE(3164)] = 106894, + [SMALL_STATE(3165)] = 106967, + [SMALL_STATE(3166)] = 107022, + [SMALL_STATE(3167)] = 107123, + [SMALL_STATE(3168)] = 107236, + [SMALL_STATE(3169)] = 107303, + [SMALL_STATE(3170)] = 107358, + [SMALL_STATE(3171)] = 107419, + [SMALL_STATE(3172)] = 107474, + [SMALL_STATE(3173)] = 107541, + [SMALL_STATE(3174)] = 107608, + [SMALL_STATE(3175)] = 107663, + [SMALL_STATE(3176)] = 107718, + [SMALL_STATE(3177)] = 107795, + [SMALL_STATE(3178)] = 107862, + [SMALL_STATE(3179)] = 107943, + [SMALL_STATE(3180)] = 108010, + [SMALL_STATE(3181)] = 108065, + [SMALL_STATE(3182)] = 108120, + [SMALL_STATE(3183)] = 108179, + [SMALL_STATE(3184)] = 108292, + [SMALL_STATE(3185)] = 108347, + [SMALL_STATE(3186)] = 108406, + [SMALL_STATE(3187)] = 108465, + [SMALL_STATE(3188)] = 108520, + [SMALL_STATE(3189)] = 108603, + [SMALL_STATE(3190)] = 108671, + [SMALL_STATE(3191)] = 108743, + [SMALL_STATE(3192)] = 108853, + [SMALL_STATE(3193)] = 108963, + [SMALL_STATE(3194)] = 109073, + [SMALL_STATE(3195)] = 109183, + [SMALL_STATE(3196)] = 109293, + [SMALL_STATE(3197)] = 109403, + [SMALL_STATE(3198)] = 109479, + [SMALL_STATE(3199)] = 109583, + [SMALL_STATE(3200)] = 109641, + [SMALL_STATE(3201)] = 109731, + [SMALL_STATE(3202)] = 109799, + [SMALL_STATE(3203)] = 109859, + [SMALL_STATE(3204)] = 109927, + [SMALL_STATE(3205)] = 109983, + [SMALL_STATE(3206)] = 110063, + [SMALL_STATE(3207)] = 110173, + [SMALL_STATE(3208)] = 110241, + [SMALL_STATE(3209)] = 110303, + [SMALL_STATE(3210)] = 110401, + [SMALL_STATE(3211)] = 110497, + [SMALL_STATE(3212)] = 110565, + [SMALL_STATE(3213)] = 110627, + [SMALL_STATE(3214)] = 110721, + [SMALL_STATE(3215)] = 110803, + [SMALL_STATE(3216)] = 110905, + [SMALL_STATE(3217)] = 111005, + [SMALL_STATE(3218)] = 111081, + [SMALL_STATE(3219)] = 111143, + [SMALL_STATE(3220)] = 111229, + [SMALL_STATE(3221)] = 111339, + [SMALL_STATE(3222)] = 111449, + [SMALL_STATE(3223)] = 111559, + [SMALL_STATE(3224)] = 111647, + [SMALL_STATE(3225)] = 111715, + [SMALL_STATE(3226)] = 111791, + [SMALL_STATE(3227)] = 111851, + [SMALL_STATE(3228)] = 111919, + [SMALL_STATE(3229)] = 111987, + [SMALL_STATE(3230)] = 112097, + [SMALL_STATE(3231)] = 112153, + [SMALL_STATE(3232)] = 112221, + [SMALL_STATE(3233)] = 112289, + [SMALL_STATE(3234)] = 112365, + [SMALL_STATE(3235)] = 112433, + [SMALL_STATE(3236)] = 112509, + [SMALL_STATE(3237)] = 112569, + [SMALL_STATE(3238)] = 112627, + [SMALL_STATE(3239)] = 112695, + [SMALL_STATE(3240)] = 112771, + [SMALL_STATE(3241)] = 112839, + [SMALL_STATE(3242)] = 112895, + [SMALL_STATE(3243)] = 112969, + [SMALL_STATE(3244)] = 113037, + [SMALL_STATE(3245)] = 113105, + [SMALL_STATE(3246)] = 113173, + [SMALL_STATE(3247)] = 113249, + [SMALL_STATE(3248)] = 113317, + [SMALL_STATE(3249)] = 113399, + [SMALL_STATE(3250)] = 113509, + [SMALL_STATE(3251)] = 113585, + [SMALL_STATE(3252)] = 113647, + [SMALL_STATE(3253)] = 113715, + [SMALL_STATE(3254)] = 113783, + [SMALL_STATE(3255)] = 113867, + [SMALL_STATE(3256)] = 113929, + [SMALL_STATE(3257)] = 114039, + [SMALL_STATE(3258)] = 114119, + [SMALL_STATE(3259)] = 114187, + [SMALL_STATE(3260)] = 114297, + [SMALL_STATE(3261)] = 114407, + [SMALL_STATE(3262)] = 114489, + [SMALL_STATE(3263)] = 114549, + [SMALL_STATE(3264)] = 114605, + [SMALL_STATE(3265)] = 114673, + [SMALL_STATE(3266)] = 114783, [SMALL_STATE(3267)] = 114851, - [SMALL_STATE(3268)] = 114910, - [SMALL_STATE(3269)] = 114965, - [SMALL_STATE(3270)] = 115038, - [SMALL_STATE(3271)] = 115115, - [SMALL_STATE(3272)] = 115184, - [SMALL_STATE(3273)] = 115259, - [SMALL_STATE(3274)] = 115314, - [SMALL_STATE(3275)] = 115369, - [SMALL_STATE(3276)] = 115438, - [SMALL_STATE(3277)] = 115497, - [SMALL_STATE(3278)] = 115556, - [SMALL_STATE(3279)] = 115631, - [SMALL_STATE(3280)] = 115686, - [SMALL_STATE(3281)] = 115745, - [SMALL_STATE(3282)] = 115800, - [SMALL_STATE(3283)] = 115859, - [SMALL_STATE(3284)] = 115932, - [SMALL_STATE(3285)] = 116005, - [SMALL_STATE(3286)] = 116084, - [SMALL_STATE(3287)] = 116139, - [SMALL_STATE(3288)] = 116198, - [SMALL_STATE(3289)] = 116267, - [SMALL_STATE(3290)] = 116322, - [SMALL_STATE(3291)] = 116395, - [SMALL_STATE(3292)] = 116464, - [SMALL_STATE(3293)] = 116557, - [SMALL_STATE(3294)] = 116616, - [SMALL_STATE(3295)] = 116675, - [SMALL_STATE(3296)] = 116734, - [SMALL_STATE(3297)] = 116789, - [SMALL_STATE(3298)] = 116858, - [SMALL_STATE(3299)] = 116913, - [SMALL_STATE(3300)] = 116986, - [SMALL_STATE(3301)] = 117045, - [SMALL_STATE(3302)] = 117118, - [SMALL_STATE(3303)] = 117173, - [SMALL_STATE(3304)] = 117234, - [SMALL_STATE(3305)] = 117289, - [SMALL_STATE(3306)] = 117344, - [SMALL_STATE(3307)] = 117399, - [SMALL_STATE(3308)] = 117465, - [SMALL_STATE(3309)] = 117527, - [SMALL_STATE(3310)] = 117589, - [SMALL_STATE(3311)] = 117655, - [SMALL_STATE(3312)] = 117721, - [SMALL_STATE(3313)] = 117779, - [SMALL_STATE(3314)] = 117841, + [SMALL_STATE(3268)] = 114919, + [SMALL_STATE(3269)] = 114981, + [SMALL_STATE(3270)] = 115050, + [SMALL_STATE(3271)] = 115105, + [SMALL_STATE(3272)] = 115160, + [SMALL_STATE(3273)] = 115235, + [SMALL_STATE(3274)] = 115294, + [SMALL_STATE(3275)] = 115353, + [SMALL_STATE(3276)] = 115408, + [SMALL_STATE(3277)] = 115467, + [SMALL_STATE(3278)] = 115522, + [SMALL_STATE(3279)] = 115583, + [SMALL_STATE(3280)] = 115642, + [SMALL_STATE(3281)] = 115701, + [SMALL_STATE(3282)] = 115780, + [SMALL_STATE(3283)] = 115835, + [SMALL_STATE(3284)] = 115910, + [SMALL_STATE(3285)] = 115983, + [SMALL_STATE(3286)] = 116052, + [SMALL_STATE(3287)] = 116129, + [SMALL_STATE(3288)] = 116184, + [SMALL_STATE(3289)] = 116257, + [SMALL_STATE(3290)] = 116350, + [SMALL_STATE(3291)] = 116405, + [SMALL_STATE(3292)] = 116478, + [SMALL_STATE(3293)] = 116533, + [SMALL_STATE(3294)] = 116592, + [SMALL_STATE(3295)] = 116651, + [SMALL_STATE(3296)] = 116720, + [SMALL_STATE(3297)] = 116793, + [SMALL_STATE(3298)] = 116848, + [SMALL_STATE(3299)] = 116907, + [SMALL_STATE(3300)] = 116962, + [SMALL_STATE(3301)] = 117031, + [SMALL_STATE(3302)] = 117090, + [SMALL_STATE(3303)] = 117163, + [SMALL_STATE(3304)] = 117218, + [SMALL_STATE(3305)] = 117273, + [SMALL_STATE(3306)] = 117332, + [SMALL_STATE(3307)] = 117405, + [SMALL_STATE(3308)] = 117460, + [SMALL_STATE(3309)] = 117529, + [SMALL_STATE(3310)] = 117583, + [SMALL_STATE(3311)] = 117649, + [SMALL_STATE(3312)] = 117717, + [SMALL_STATE(3313)] = 117771, + [SMALL_STATE(3314)] = 117829, [SMALL_STATE(3315)] = 117895, - [SMALL_STATE(3316)] = 117961, - [SMALL_STATE(3317)] = 118023, - [SMALL_STATE(3318)] = 118089, - [SMALL_STATE(3319)] = 118155, - [SMALL_STATE(3320)] = 118221, - [SMALL_STATE(3321)] = 118287, + [SMALL_STATE(3316)] = 117957, + [SMALL_STATE(3317)] = 118019, + [SMALL_STATE(3318)] = 118085, + [SMALL_STATE(3319)] = 118151, + [SMALL_STATE(3320)] = 118217, + [SMALL_STATE(3321)] = 118283, [SMALL_STATE(3322)] = 118349, - [SMALL_STATE(3323)] = 118411, - [SMALL_STATE(3324)] = 118481, - [SMALL_STATE(3325)] = 118535, - [SMALL_STATE(3326)] = 118597, - [SMALL_STATE(3327)] = 118655, - [SMALL_STATE(3328)] = 118709, - [SMALL_STATE(3329)] = 118771, + [SMALL_STATE(3323)] = 118403, + [SMALL_STATE(3324)] = 118457, + [SMALL_STATE(3325)] = 118523, + [SMALL_STATE(3326)] = 118585, + [SMALL_STATE(3327)] = 118647, + [SMALL_STATE(3328)] = 118713, + [SMALL_STATE(3329)] = 118775, [SMALL_STATE(3330)] = 118837, - [SMALL_STATE(3331)] = 118903, + [SMALL_STATE(3331)] = 118899, [SMALL_STATE(3332)] = 118961, - [SMALL_STATE(3333)] = 119023, - [SMALL_STATE(3334)] = 119085, - [SMALL_STATE(3335)] = 119151, - [SMALL_STATE(3336)] = 119217, - [SMALL_STATE(3337)] = 119283, - [SMALL_STATE(3338)] = 119351, - [SMALL_STATE(3339)] = 119417, - [SMALL_STATE(3340)] = 119483, + [SMALL_STATE(3333)] = 119027, + [SMALL_STATE(3334)] = 119093, + [SMALL_STATE(3335)] = 119163, + [SMALL_STATE(3336)] = 119235, + [SMALL_STATE(3337)] = 119301, + [SMALL_STATE(3338)] = 119367, + [SMALL_STATE(3339)] = 119429, + [SMALL_STATE(3340)] = 119491, [SMALL_STATE(3341)] = 119549, - [SMALL_STATE(3342)] = 119611, - [SMALL_STATE(3343)] = 119669, - [SMALL_STATE(3344)] = 119731, - [SMALL_STATE(3345)] = 119793, - [SMALL_STATE(3346)] = 119851, - [SMALL_STATE(3347)] = 119905, - [SMALL_STATE(3348)] = 119967, - [SMALL_STATE(3349)] = 120037, - [SMALL_STATE(3350)] = 120109, - [SMALL_STATE(3351)] = 120162, - [SMALL_STATE(3352)] = 120215, - [SMALL_STATE(3353)] = 120268, - [SMALL_STATE(3354)] = 120321, - [SMALL_STATE(3355)] = 120374, - [SMALL_STATE(3356)] = 120439, - [SMALL_STATE(3357)] = 120492, - [SMALL_STATE(3358)] = 120545, - [SMALL_STATE(3359)] = 120598, - [SMALL_STATE(3360)] = 120651, - [SMALL_STATE(3361)] = 120701, - [SMALL_STATE(3362)] = 120751, - [SMALL_STATE(3363)] = 120801, - [SMALL_STATE(3364)] = 120851, - [SMALL_STATE(3365)] = 120901, - [SMALL_STATE(3366)] = 120955, - [SMALL_STATE(3367)] = 121005, - [SMALL_STATE(3368)] = 121055, - [SMALL_STATE(3369)] = 121105, - [SMALL_STATE(3370)] = 121155, - [SMALL_STATE(3371)] = 121205, - [SMALL_STATE(3372)] = 121255, - [SMALL_STATE(3373)] = 121305, - [SMALL_STATE(3374)] = 121355, - [SMALL_STATE(3375)] = 121405, - [SMALL_STATE(3376)] = 121455, - [SMALL_STATE(3377)] = 121505, - [SMALL_STATE(3378)] = 121555, - [SMALL_STATE(3379)] = 121605, - [SMALL_STATE(3380)] = 121655, - [SMALL_STATE(3381)] = 121705, - [SMALL_STATE(3382)] = 121757, - [SMALL_STATE(3383)] = 121807, - [SMALL_STATE(3384)] = 121857, - [SMALL_STATE(3385)] = 121907, - [SMALL_STATE(3386)] = 121957, - [SMALL_STATE(3387)] = 122007, - [SMALL_STATE(3388)] = 122057, - [SMALL_STATE(3389)] = 122107, - [SMALL_STATE(3390)] = 122159, - [SMALL_STATE(3391)] = 122209, - [SMALL_STATE(3392)] = 122259, - [SMALL_STATE(3393)] = 122309, - [SMALL_STATE(3394)] = 122359, - [SMALL_STATE(3395)] = 122409, - [SMALL_STATE(3396)] = 122459, - [SMALL_STATE(3397)] = 122509, - [SMALL_STATE(3398)] = 122559, - [SMALL_STATE(3399)] = 122609, - [SMALL_STATE(3400)] = 122659, - [SMALL_STATE(3401)] = 122709, - [SMALL_STATE(3402)] = 122759, - [SMALL_STATE(3403)] = 122809, - [SMALL_STATE(3404)] = 122859, - [SMALL_STATE(3405)] = 122933, - [SMALL_STATE(3406)] = 122989, - [SMALL_STATE(3407)] = 123039, - [SMALL_STATE(3408)] = 123097, - [SMALL_STATE(3409)] = 123153, - [SMALL_STATE(3410)] = 123203, - [SMALL_STATE(3411)] = 123253, - [SMALL_STATE(3412)] = 123303, - [SMALL_STATE(3413)] = 123353, - [SMALL_STATE(3414)] = 123403, - [SMALL_STATE(3415)] = 123453, - [SMALL_STATE(3416)] = 123503, - [SMALL_STATE(3417)] = 123553, - [SMALL_STATE(3418)] = 123607, - [SMALL_STATE(3419)] = 123654, - [SMALL_STATE(3420)] = 123701, - [SMALL_STATE(3421)] = 123764, - [SMALL_STATE(3422)] = 123829, - [SMALL_STATE(3423)] = 123896, - [SMALL_STATE(3424)] = 123961, - [SMALL_STATE(3425)] = 124008, - [SMALL_STATE(3426)] = 124055, - [SMALL_STATE(3427)] = 124120, - [SMALL_STATE(3428)] = 124167, - [SMALL_STATE(3429)] = 124214, - [SMALL_STATE(3430)] = 124261, - [SMALL_STATE(3431)] = 124328, - [SMALL_STATE(3432)] = 124375, - [SMALL_STATE(3433)] = 124440, - [SMALL_STATE(3434)] = 124491, - [SMALL_STATE(3435)] = 124542, - [SMALL_STATE(3436)] = 124609, - [SMALL_STATE(3437)] = 124669, - [SMALL_STATE(3438)] = 124729, - [SMALL_STATE(3439)] = 124789, - [SMALL_STATE(3440)] = 124849, - [SMALL_STATE(3441)] = 124909, - [SMALL_STATE(3442)] = 124969, - [SMALL_STATE(3443)] = 125029, - [SMALL_STATE(3444)] = 125089, - [SMALL_STATE(3445)] = 125149, - [SMALL_STATE(3446)] = 125209, - [SMALL_STATE(3447)] = 125269, - [SMALL_STATE(3448)] = 125329, - [SMALL_STATE(3449)] = 125389, - [SMALL_STATE(3450)] = 125449, - [SMALL_STATE(3451)] = 125509, - [SMALL_STATE(3452)] = 125585, - [SMALL_STATE(3453)] = 125645, - [SMALL_STATE(3454)] = 125705, - [SMALL_STATE(3455)] = 125765, - [SMALL_STATE(3456)] = 125825, - [SMALL_STATE(3457)] = 125885, - [SMALL_STATE(3458)] = 125945, - [SMALL_STATE(3459)] = 126005, - [SMALL_STATE(3460)] = 126065, - [SMALL_STATE(3461)] = 126125, - [SMALL_STATE(3462)] = 126185, - [SMALL_STATE(3463)] = 126245, - [SMALL_STATE(3464)] = 126321, - [SMALL_STATE(3465)] = 126381, - [SMALL_STATE(3466)] = 126427, - [SMALL_STATE(3467)] = 126488, - [SMALL_STATE(3468)] = 126549, - [SMALL_STATE(3469)] = 126610, - [SMALL_STATE(3470)] = 126671, - [SMALL_STATE(3471)] = 126732, - [SMALL_STATE(3472)] = 126803, - [SMALL_STATE(3473)] = 126874, - [SMALL_STATE(3474)] = 126935, - [SMALL_STATE(3475)] = 127020, - [SMALL_STATE(3476)] = 127105, - [SMALL_STATE(3477)] = 127166, - [SMALL_STATE(3478)] = 127227, - [SMALL_STATE(3479)] = 127294, - [SMALL_STATE(3480)] = 127355, - [SMALL_STATE(3481)] = 127440, - [SMALL_STATE(3482)] = 127501, - [SMALL_STATE(3483)] = 127562, - [SMALL_STATE(3484)] = 127647, - [SMALL_STATE(3485)] = 127732, - [SMALL_STATE(3486)] = 127799, - [SMALL_STATE(3487)] = 127860, - [SMALL_STATE(3488)] = 127921, - [SMALL_STATE(3489)] = 127982, - [SMALL_STATE(3490)] = 128031, - [SMALL_STATE(3491)] = 128092, - [SMALL_STATE(3492)] = 128153, - [SMALL_STATE(3493)] = 128214, - [SMALL_STATE(3494)] = 128275, - [SMALL_STATE(3495)] = 128342, - [SMALL_STATE(3496)] = 128403, - [SMALL_STATE(3497)] = 128464, - [SMALL_STATE(3498)] = 128525, - [SMALL_STATE(3499)] = 128586, - [SMALL_STATE(3500)] = 128671, - [SMALL_STATE(3501)] = 128732, - [SMALL_STATE(3502)] = 128799, - [SMALL_STATE(3503)] = 128884, - [SMALL_STATE(3504)] = 128945, - [SMALL_STATE(3505)] = 129030, - [SMALL_STATE(3506)] = 129101, - [SMALL_STATE(3507)] = 129186, - [SMALL_STATE(3508)] = 129247, - [SMALL_STATE(3509)] = 129308, - [SMALL_STATE(3510)] = 129369, - [SMALL_STATE(3511)] = 129430, - [SMALL_STATE(3512)] = 129515, - [SMALL_STATE(3513)] = 129600, - [SMALL_STATE(3514)] = 129661, - [SMALL_STATE(3515)] = 129722, - [SMALL_STATE(3516)] = 129807, - [SMALL_STATE(3517)] = 129871, - [SMALL_STATE(3518)] = 129935, - [SMALL_STATE(3519)] = 129999, - [SMALL_STATE(3520)] = 130059, - [SMALL_STATE(3521)] = 130123, - [SMALL_STATE(3522)] = 130187, - [SMALL_STATE(3523)] = 130251, - [SMALL_STATE(3524)] = 130315, - [SMALL_STATE(3525)] = 130379, - [SMALL_STATE(3526)] = 130443, - [SMALL_STATE(3527)] = 130503, - [SMALL_STATE(3528)] = 130561, - [SMALL_STATE(3529)] = 130625, - [SMALL_STATE(3530)] = 130689, - [SMALL_STATE(3531)] = 130735, - [SMALL_STATE(3532)] = 130799, - [SMALL_STATE(3533)] = 130863, - [SMALL_STATE(3534)] = 130927, - [SMALL_STATE(3535)] = 130991, - [SMALL_STATE(3536)] = 131055, - [SMALL_STATE(3537)] = 131112, - [SMALL_STATE(3538)] = 131155, - [SMALL_STATE(3539)] = 131198, - [SMALL_STATE(3540)] = 131253, - [SMALL_STATE(3541)] = 131308, - [SMALL_STATE(3542)] = 131363, - [SMALL_STATE(3543)] = 131418, - [SMALL_STATE(3544)] = 131461, - [SMALL_STATE(3545)] = 131516, - [SMALL_STATE(3546)] = 131573, - [SMALL_STATE(3547)] = 131628, - [SMALL_STATE(3548)] = 131683, - [SMALL_STATE(3549)] = 131726, - [SMALL_STATE(3550)] = 131781, - [SMALL_STATE(3551)] = 131836, - [SMALL_STATE(3552)] = 131891, - [SMALL_STATE(3553)] = 131946, - [SMALL_STATE(3554)] = 132001, - [SMALL_STATE(3555)] = 132056, - [SMALL_STATE(3556)] = 132111, - [SMALL_STATE(3557)] = 132166, - [SMALL_STATE(3558)] = 132221, - [SMALL_STATE(3559)] = 132276, - [SMALL_STATE(3560)] = 132331, - [SMALL_STATE(3561)] = 132386, - [SMALL_STATE(3562)] = 132441, - [SMALL_STATE(3563)] = 132496, - [SMALL_STATE(3564)] = 132551, - [SMALL_STATE(3565)] = 132594, - [SMALL_STATE(3566)] = 132649, - [SMALL_STATE(3567)] = 132704, - [SMALL_STATE(3568)] = 132761, - [SMALL_STATE(3569)] = 132816, - [SMALL_STATE(3570)] = 132873, - [SMALL_STATE(3571)] = 132928, - [SMALL_STATE(3572)] = 132983, - [SMALL_STATE(3573)] = 133040, - [SMALL_STATE(3574)] = 133097, - [SMALL_STATE(3575)] = 133152, - [SMALL_STATE(3576)] = 133209, - [SMALL_STATE(3577)] = 133264, - [SMALL_STATE(3578)] = 133319, - [SMALL_STATE(3579)] = 133362, - [SMALL_STATE(3580)] = 133417, - [SMALL_STATE(3581)] = 133474, - [SMALL_STATE(3582)] = 133529, - [SMALL_STATE(3583)] = 133586, - [SMALL_STATE(3584)] = 133643, - [SMALL_STATE(3585)] = 133698, - [SMALL_STATE(3586)] = 133753, - [SMALL_STATE(3587)] = 133810, - [SMALL_STATE(3588)] = 133867, - [SMALL_STATE(3589)] = 133922, - [SMALL_STATE(3590)] = 133977, - [SMALL_STATE(3591)] = 134034, - [SMALL_STATE(3592)] = 134089, - [SMALL_STATE(3593)] = 134144, - [SMALL_STATE(3594)] = 134201, - [SMALL_STATE(3595)] = 134244, - [SMALL_STATE(3596)] = 134299, - [SMALL_STATE(3597)] = 134354, - [SMALL_STATE(3598)] = 134409, - [SMALL_STATE(3599)] = 134449, - [SMALL_STATE(3600)] = 134484, - [SMALL_STATE(3601)] = 134519, - [SMALL_STATE(3602)] = 134566, - [SMALL_STATE(3603)] = 134613, - [SMALL_STATE(3604)] = 134660, - [SMALL_STATE(3605)] = 134695, - [SMALL_STATE(3606)] = 134729, - [SMALL_STATE(3607)] = 134763, - [SMALL_STATE(3608)] = 134796, - [SMALL_STATE(3609)] = 134829, - [SMALL_STATE(3610)] = 134862, - [SMALL_STATE(3611)] = 134895, - [SMALL_STATE(3612)] = 134928, - [SMALL_STATE(3613)] = 134961, - [SMALL_STATE(3614)] = 134994, - [SMALL_STATE(3615)] = 135027, - [SMALL_STATE(3616)] = 135060, - [SMALL_STATE(3617)] = 135093, - [SMALL_STATE(3618)] = 135126, - [SMALL_STATE(3619)] = 135159, - [SMALL_STATE(3620)] = 135192, - [SMALL_STATE(3621)] = 135225, - [SMALL_STATE(3622)] = 135266, - [SMALL_STATE(3623)] = 135299, - [SMALL_STATE(3624)] = 135332, - [SMALL_STATE(3625)] = 135365, - [SMALL_STATE(3626)] = 135398, - [SMALL_STATE(3627)] = 135431, - [SMALL_STATE(3628)] = 135464, - [SMALL_STATE(3629)] = 135497, - [SMALL_STATE(3630)] = 135530, - [SMALL_STATE(3631)] = 135563, - [SMALL_STATE(3632)] = 135596, - [SMALL_STATE(3633)] = 135629, - [SMALL_STATE(3634)] = 135662, - [SMALL_STATE(3635)] = 135695, - [SMALL_STATE(3636)] = 135728, - [SMALL_STATE(3637)] = 135761, - [SMALL_STATE(3638)] = 135794, - [SMALL_STATE(3639)] = 135827, - [SMALL_STATE(3640)] = 135860, - [SMALL_STATE(3641)] = 135893, - [SMALL_STATE(3642)] = 135926, - [SMALL_STATE(3643)] = 135980, - [SMALL_STATE(3644)] = 136034, - [SMALL_STATE(3645)] = 136094, - [SMALL_STATE(3646)] = 136154, - [SMALL_STATE(3647)] = 136208, - [SMALL_STATE(3648)] = 136246, - [SMALL_STATE(3649)] = 136300, - [SMALL_STATE(3650)] = 136354, - [SMALL_STATE(3651)] = 136397, - [SMALL_STATE(3652)] = 136428, - [SMALL_STATE(3653)] = 136461, - [SMALL_STATE(3654)] = 136492, - [SMALL_STATE(3655)] = 136523, - [SMALL_STATE(3656)] = 136554, - [SMALL_STATE(3657)] = 136585, - [SMALL_STATE(3658)] = 136616, - [SMALL_STATE(3659)] = 136647, - [SMALL_STATE(3660)] = 136682, - [SMALL_STATE(3661)] = 136713, - [SMALL_STATE(3662)] = 136744, - [SMALL_STATE(3663)] = 136775, - [SMALL_STATE(3664)] = 136806, - [SMALL_STATE(3665)] = 136837, - [SMALL_STATE(3666)] = 136868, - [SMALL_STATE(3667)] = 136899, - [SMALL_STATE(3668)] = 136934, - [SMALL_STATE(3669)] = 136965, - [SMALL_STATE(3670)] = 136996, - [SMALL_STATE(3671)] = 137027, - [SMALL_STATE(3672)] = 137070, - [SMALL_STATE(3673)] = 137101, - [SMALL_STATE(3674)] = 137132, - [SMALL_STATE(3675)] = 137175, - [SMALL_STATE(3676)] = 137206, - [SMALL_STATE(3677)] = 137237, - [SMALL_STATE(3678)] = 137270, - [SMALL_STATE(3679)] = 137300, - [SMALL_STATE(3680)] = 137332, - [SMALL_STATE(3681)] = 137364, - [SMALL_STATE(3682)] = 137396, - [SMALL_STATE(3683)] = 137426, - [SMALL_STATE(3684)] = 137453, - [SMALL_STATE(3685)] = 137490, - [SMALL_STATE(3686)] = 137521, - [SMALL_STATE(3687)] = 137560, - [SMALL_STATE(3688)] = 137599, - [SMALL_STATE(3689)] = 137638, - [SMALL_STATE(3690)] = 137677, - [SMALL_STATE(3691)] = 137716, - [SMALL_STATE(3692)] = 137753, - [SMALL_STATE(3693)] = 137782, - [SMALL_STATE(3694)] = 137819, - [SMALL_STATE(3695)] = 137848, - [SMALL_STATE(3696)] = 137877, - [SMALL_STATE(3697)] = 137916, - [SMALL_STATE(3698)] = 137945, - [SMALL_STATE(3699)] = 137980, - [SMALL_STATE(3700)] = 138013, - [SMALL_STATE(3701)] = 138044, - [SMALL_STATE(3702)] = 138075, - [SMALL_STATE(3703)] = 138106, - [SMALL_STATE(3704)] = 138135, - [SMALL_STATE(3705)] = 138164, - [SMALL_STATE(3706)] = 138193, - [SMALL_STATE(3707)] = 138222, + [SMALL_STATE(3342)] = 119615, + [SMALL_STATE(3343)] = 119673, + [SMALL_STATE(3344)] = 119735, + [SMALL_STATE(3345)] = 119801, + [SMALL_STATE(3346)] = 119863, + [SMALL_STATE(3347)] = 119933, + [SMALL_STATE(3348)] = 119995, + [SMALL_STATE(3349)] = 120061, + [SMALL_STATE(3350)] = 120123, + [SMALL_STATE(3351)] = 120181, + [SMALL_STATE(3352)] = 120239, + [SMALL_STATE(3353)] = 120292, + [SMALL_STATE(3354)] = 120345, + [SMALL_STATE(3355)] = 120410, + [SMALL_STATE(3356)] = 120463, + [SMALL_STATE(3357)] = 120516, + [SMALL_STATE(3358)] = 120569, + [SMALL_STATE(3359)] = 120622, + [SMALL_STATE(3360)] = 120675, + [SMALL_STATE(3361)] = 120728, + [SMALL_STATE(3362)] = 120781, + [SMALL_STATE(3363)] = 120831, + [SMALL_STATE(3364)] = 120881, + [SMALL_STATE(3365)] = 120933, + [SMALL_STATE(3366)] = 120983, + [SMALL_STATE(3367)] = 121033, + [SMALL_STATE(3368)] = 121083, + [SMALL_STATE(3369)] = 121133, + [SMALL_STATE(3370)] = 121183, + [SMALL_STATE(3371)] = 121233, + [SMALL_STATE(3372)] = 121283, + [SMALL_STATE(3373)] = 121333, + [SMALL_STATE(3374)] = 121383, + [SMALL_STATE(3375)] = 121433, + [SMALL_STATE(3376)] = 121483, + [SMALL_STATE(3377)] = 121537, + [SMALL_STATE(3378)] = 121611, + [SMALL_STATE(3379)] = 121665, + [SMALL_STATE(3380)] = 121715, + [SMALL_STATE(3381)] = 121765, + [SMALL_STATE(3382)] = 121815, + [SMALL_STATE(3383)] = 121865, + [SMALL_STATE(3384)] = 121915, + [SMALL_STATE(3385)] = 121965, + [SMALL_STATE(3386)] = 122015, + [SMALL_STATE(3387)] = 122065, + [SMALL_STATE(3388)] = 122115, + [SMALL_STATE(3389)] = 122165, + [SMALL_STATE(3390)] = 122215, + [SMALL_STATE(3391)] = 122265, + [SMALL_STATE(3392)] = 122315, + [SMALL_STATE(3393)] = 122365, + [SMALL_STATE(3394)] = 122415, + [SMALL_STATE(3395)] = 122465, + [SMALL_STATE(3396)] = 122515, + [SMALL_STATE(3397)] = 122565, + [SMALL_STATE(3398)] = 122615, + [SMALL_STATE(3399)] = 122665, + [SMALL_STATE(3400)] = 122715, + [SMALL_STATE(3401)] = 122765, + [SMALL_STATE(3402)] = 122815, + [SMALL_STATE(3403)] = 122865, + [SMALL_STATE(3404)] = 122915, + [SMALL_STATE(3405)] = 122965, + [SMALL_STATE(3406)] = 123015, + [SMALL_STATE(3407)] = 123065, + [SMALL_STATE(3408)] = 123115, + [SMALL_STATE(3409)] = 123165, + [SMALL_STATE(3410)] = 123215, + [SMALL_STATE(3411)] = 123273, + [SMALL_STATE(3412)] = 123323, + [SMALL_STATE(3413)] = 123373, + [SMALL_STATE(3414)] = 123423, + [SMALL_STATE(3415)] = 123473, + [SMALL_STATE(3416)] = 123525, + [SMALL_STATE(3417)] = 123575, + [SMALL_STATE(3418)] = 123631, + [SMALL_STATE(3419)] = 123687, + [SMALL_STATE(3420)] = 123737, + [SMALL_STATE(3421)] = 123800, + [SMALL_STATE(3422)] = 123851, + [SMALL_STATE(3423)] = 123898, + [SMALL_STATE(3424)] = 123963, + [SMALL_STATE(3425)] = 124010, + [SMALL_STATE(3426)] = 124057, + [SMALL_STATE(3427)] = 124104, + [SMALL_STATE(3428)] = 124151, + [SMALL_STATE(3429)] = 124216, + [SMALL_STATE(3430)] = 124263, + [SMALL_STATE(3431)] = 124330, + [SMALL_STATE(3432)] = 124397, + [SMALL_STATE(3433)] = 124462, + [SMALL_STATE(3434)] = 124509, + [SMALL_STATE(3435)] = 124560, + [SMALL_STATE(3436)] = 124607, + [SMALL_STATE(3437)] = 124672, + [SMALL_STATE(3438)] = 124739, + [SMALL_STATE(3439)] = 124785, + [SMALL_STATE(3440)] = 124845, + [SMALL_STATE(3441)] = 124905, + [SMALL_STATE(3442)] = 124965, + [SMALL_STATE(3443)] = 125025, + [SMALL_STATE(3444)] = 125085, + [SMALL_STATE(3445)] = 125145, + [SMALL_STATE(3446)] = 125221, + [SMALL_STATE(3447)] = 125281, + [SMALL_STATE(3448)] = 125341, + [SMALL_STATE(3449)] = 125401, + [SMALL_STATE(3450)] = 125461, + [SMALL_STATE(3451)] = 125521, + [SMALL_STATE(3452)] = 125581, + [SMALL_STATE(3453)] = 125641, + [SMALL_STATE(3454)] = 125701, + [SMALL_STATE(3455)] = 125761, + [SMALL_STATE(3456)] = 125821, + [SMALL_STATE(3457)] = 125881, + [SMALL_STATE(3458)] = 125941, + [SMALL_STATE(3459)] = 126001, + [SMALL_STATE(3460)] = 126061, + [SMALL_STATE(3461)] = 126137, + [SMALL_STATE(3462)] = 126197, + [SMALL_STATE(3463)] = 126257, + [SMALL_STATE(3464)] = 126317, + [SMALL_STATE(3465)] = 126377, + [SMALL_STATE(3466)] = 126437, + [SMALL_STATE(3467)] = 126497, + [SMALL_STATE(3468)] = 126557, + [SMALL_STATE(3469)] = 126618, + [SMALL_STATE(3470)] = 126703, + [SMALL_STATE(3471)] = 126764, + [SMALL_STATE(3472)] = 126849, + [SMALL_STATE(3473)] = 126916, + [SMALL_STATE(3474)] = 126977, + [SMALL_STATE(3475)] = 127038, + [SMALL_STATE(3476)] = 127099, + [SMALL_STATE(3477)] = 127160, + [SMALL_STATE(3478)] = 127221, + [SMALL_STATE(3479)] = 127282, + [SMALL_STATE(3480)] = 127353, + [SMALL_STATE(3481)] = 127420, + [SMALL_STATE(3482)] = 127481, + [SMALL_STATE(3483)] = 127548, + [SMALL_STATE(3484)] = 127619, + [SMALL_STATE(3485)] = 127680, + [SMALL_STATE(3486)] = 127741, + [SMALL_STATE(3487)] = 127802, + [SMALL_STATE(3488)] = 127863, + [SMALL_STATE(3489)] = 127924, + [SMALL_STATE(3490)] = 127985, + [SMALL_STATE(3491)] = 128046, + [SMALL_STATE(3492)] = 128131, + [SMALL_STATE(3493)] = 128192, + [SMALL_STATE(3494)] = 128277, + [SMALL_STATE(3495)] = 128362, + [SMALL_STATE(3496)] = 128423, + [SMALL_STATE(3497)] = 128472, + [SMALL_STATE(3498)] = 128557, + [SMALL_STATE(3499)] = 128642, + [SMALL_STATE(3500)] = 128727, + [SMALL_STATE(3501)] = 128788, + [SMALL_STATE(3502)] = 128849, + [SMALL_STATE(3503)] = 128920, + [SMALL_STATE(3504)] = 129005, + [SMALL_STATE(3505)] = 129066, + [SMALL_STATE(3506)] = 129127, + [SMALL_STATE(3507)] = 129188, + [SMALL_STATE(3508)] = 129249, + [SMALL_STATE(3509)] = 129334, + [SMALL_STATE(3510)] = 129419, + [SMALL_STATE(3511)] = 129480, + [SMALL_STATE(3512)] = 129541, + [SMALL_STATE(3513)] = 129602, + [SMALL_STATE(3514)] = 129663, + [SMALL_STATE(3515)] = 129724, + [SMALL_STATE(3516)] = 129791, + [SMALL_STATE(3517)] = 129876, + [SMALL_STATE(3518)] = 129937, + [SMALL_STATE(3519)] = 130001, + [SMALL_STATE(3520)] = 130065, + [SMALL_STATE(3521)] = 130129, + [SMALL_STATE(3522)] = 130193, + [SMALL_STATE(3523)] = 130257, + [SMALL_STATE(3524)] = 130317, + [SMALL_STATE(3525)] = 130381, + [SMALL_STATE(3526)] = 130445, + [SMALL_STATE(3527)] = 130509, + [SMALL_STATE(3528)] = 130573, + [SMALL_STATE(3529)] = 130619, + [SMALL_STATE(3530)] = 130683, + [SMALL_STATE(3531)] = 130747, + [SMALL_STATE(3532)] = 130805, + [SMALL_STATE(3533)] = 130869, + [SMALL_STATE(3534)] = 130933, + [SMALL_STATE(3535)] = 130993, + [SMALL_STATE(3536)] = 131057, + [SMALL_STATE(3537)] = 131121, + [SMALL_STATE(3538)] = 131185, + [SMALL_STATE(3539)] = 131240, + [SMALL_STATE(3540)] = 131295, + [SMALL_STATE(3541)] = 131350, + [SMALL_STATE(3542)] = 131405, + [SMALL_STATE(3543)] = 131462, + [SMALL_STATE(3544)] = 131517, + [SMALL_STATE(3545)] = 131572, + [SMALL_STATE(3546)] = 131627, + [SMALL_STATE(3547)] = 131682, + [SMALL_STATE(3548)] = 131739, + [SMALL_STATE(3549)] = 131796, + [SMALL_STATE(3550)] = 131851, + [SMALL_STATE(3551)] = 131906, + [SMALL_STATE(3552)] = 131961, + [SMALL_STATE(3553)] = 132018, + [SMALL_STATE(3554)] = 132073, + [SMALL_STATE(3555)] = 132116, + [SMALL_STATE(3556)] = 132171, + [SMALL_STATE(3557)] = 132226, + [SMALL_STATE(3558)] = 132281, + [SMALL_STATE(3559)] = 132338, + [SMALL_STATE(3560)] = 132393, + [SMALL_STATE(3561)] = 132450, + [SMALL_STATE(3562)] = 132505, + [SMALL_STATE(3563)] = 132562, + [SMALL_STATE(3564)] = 132617, + [SMALL_STATE(3565)] = 132672, + [SMALL_STATE(3566)] = 132727, + [SMALL_STATE(3567)] = 132782, + [SMALL_STATE(3568)] = 132839, + [SMALL_STATE(3569)] = 132882, + [SMALL_STATE(3570)] = 132925, + [SMALL_STATE(3571)] = 132980, + [SMALL_STATE(3572)] = 133035, + [SMALL_STATE(3573)] = 133092, + [SMALL_STATE(3574)] = 133147, + [SMALL_STATE(3575)] = 133202, + [SMALL_STATE(3576)] = 133257, + [SMALL_STATE(3577)] = 133312, + [SMALL_STATE(3578)] = 133367, + [SMALL_STATE(3579)] = 133422, + [SMALL_STATE(3580)] = 133477, + [SMALL_STATE(3581)] = 133532, + [SMALL_STATE(3582)] = 133575, + [SMALL_STATE(3583)] = 133630, + [SMALL_STATE(3584)] = 133685, + [SMALL_STATE(3585)] = 133728, + [SMALL_STATE(3586)] = 133785, + [SMALL_STATE(3587)] = 133840, + [SMALL_STATE(3588)] = 133895, + [SMALL_STATE(3589)] = 133952, + [SMALL_STATE(3590)] = 134009, + [SMALL_STATE(3591)] = 134066, + [SMALL_STATE(3592)] = 134121, + [SMALL_STATE(3593)] = 134176, + [SMALL_STATE(3594)] = 134231, + [SMALL_STATE(3595)] = 134286, + [SMALL_STATE(3596)] = 134329, + [SMALL_STATE(3597)] = 134386, + [SMALL_STATE(3598)] = 134441, + [SMALL_STATE(3599)] = 134496, + [SMALL_STATE(3600)] = 134539, + [SMALL_STATE(3601)] = 134579, + [SMALL_STATE(3602)] = 134614, + [SMALL_STATE(3603)] = 134661, + [SMALL_STATE(3604)] = 134708, + [SMALL_STATE(3605)] = 134755, + [SMALL_STATE(3606)] = 134790, + [SMALL_STATE(3607)] = 134825, + [SMALL_STATE(3608)] = 134859, + [SMALL_STATE(3609)] = 134893, + [SMALL_STATE(3610)] = 134926, + [SMALL_STATE(3611)] = 134959, + [SMALL_STATE(3612)] = 134992, + [SMALL_STATE(3613)] = 135025, + [SMALL_STATE(3614)] = 135058, + [SMALL_STATE(3615)] = 135099, + [SMALL_STATE(3616)] = 135132, + [SMALL_STATE(3617)] = 135165, + [SMALL_STATE(3618)] = 135198, + [SMALL_STATE(3619)] = 135231, + [SMALL_STATE(3620)] = 135264, + [SMALL_STATE(3621)] = 135297, + [SMALL_STATE(3622)] = 135330, + [SMALL_STATE(3623)] = 135363, + [SMALL_STATE(3624)] = 135396, + [SMALL_STATE(3625)] = 135429, + [SMALL_STATE(3626)] = 135462, + [SMALL_STATE(3627)] = 135495, + [SMALL_STATE(3628)] = 135528, + [SMALL_STATE(3629)] = 135561, + [SMALL_STATE(3630)] = 135594, + [SMALL_STATE(3631)] = 135627, + [SMALL_STATE(3632)] = 135660, + [SMALL_STATE(3633)] = 135693, + [SMALL_STATE(3634)] = 135726, + [SMALL_STATE(3635)] = 135759, + [SMALL_STATE(3636)] = 135792, + [SMALL_STATE(3637)] = 135825, + [SMALL_STATE(3638)] = 135858, + [SMALL_STATE(3639)] = 135891, + [SMALL_STATE(3640)] = 135924, + [SMALL_STATE(3641)] = 135957, + [SMALL_STATE(3642)] = 135990, + [SMALL_STATE(3643)] = 136023, + [SMALL_STATE(3644)] = 136056, + [SMALL_STATE(3645)] = 136110, + [SMALL_STATE(3646)] = 136164, + [SMALL_STATE(3647)] = 136218, + [SMALL_STATE(3648)] = 136272, + [SMALL_STATE(3649)] = 136326, + [SMALL_STATE(3650)] = 136386, + [SMALL_STATE(3651)] = 136446, + [SMALL_STATE(3652)] = 136484, + [SMALL_STATE(3653)] = 136515, + [SMALL_STATE(3654)] = 136546, + [SMALL_STATE(3655)] = 136589, + [SMALL_STATE(3656)] = 136624, + [SMALL_STATE(3657)] = 136667, + [SMALL_STATE(3658)] = 136698, + [SMALL_STATE(3659)] = 136741, + [SMALL_STATE(3660)] = 136772, + [SMALL_STATE(3661)] = 136803, + [SMALL_STATE(3662)] = 136834, + [SMALL_STATE(3663)] = 136865, + [SMALL_STATE(3664)] = 136896, + [SMALL_STATE(3665)] = 136927, + [SMALL_STATE(3666)] = 136958, + [SMALL_STATE(3667)] = 136989, + [SMALL_STATE(3668)] = 137020, + [SMALL_STATE(3669)] = 137055, + [SMALL_STATE(3670)] = 137086, + [SMALL_STATE(3671)] = 137119, + [SMALL_STATE(3672)] = 137152, + [SMALL_STATE(3673)] = 137183, + [SMALL_STATE(3674)] = 137214, + [SMALL_STATE(3675)] = 137245, + [SMALL_STATE(3676)] = 137276, + [SMALL_STATE(3677)] = 137307, + [SMALL_STATE(3678)] = 137338, + [SMALL_STATE(3679)] = 137369, + [SMALL_STATE(3680)] = 137400, + [SMALL_STATE(3681)] = 137430, + [SMALL_STATE(3682)] = 137462, + [SMALL_STATE(3683)] = 137494, + [SMALL_STATE(3684)] = 137526, + [SMALL_STATE(3685)] = 137556, + [SMALL_STATE(3686)] = 137585, + [SMALL_STATE(3687)] = 137614, + [SMALL_STATE(3688)] = 137643, + [SMALL_STATE(3689)] = 137672, + [SMALL_STATE(3690)] = 137701, + [SMALL_STATE(3691)] = 137730, + [SMALL_STATE(3692)] = 137759, + [SMALL_STATE(3693)] = 137790, + [SMALL_STATE(3694)] = 137821, + [SMALL_STATE(3695)] = 137850, + [SMALL_STATE(3696)] = 137879, + [SMALL_STATE(3697)] = 137908, + [SMALL_STATE(3698)] = 137935, + [SMALL_STATE(3699)] = 137962, + [SMALL_STATE(3700)] = 137991, + [SMALL_STATE(3701)] = 138026, + [SMALL_STATE(3702)] = 138063, + [SMALL_STATE(3703)] = 138090, + [SMALL_STATE(3704)] = 138119, + [SMALL_STATE(3705)] = 138146, + [SMALL_STATE(3706)] = 138183, + [SMALL_STATE(3707)] = 138212, [SMALL_STATE(3708)] = 138251, - [SMALL_STATE(3709)] = 138286, - [SMALL_STATE(3710)] = 138315, - [SMALL_STATE(3711)] = 138344, - [SMALL_STATE(3712)] = 138371, - [SMALL_STATE(3713)] = 138400, - [SMALL_STATE(3714)] = 138429, - [SMALL_STATE(3715)] = 138458, - [SMALL_STATE(3716)] = 138487, - [SMALL_STATE(3717)] = 138516, - [SMALL_STATE(3718)] = 138547, - [SMALL_STATE(3719)] = 138576, - [SMALL_STATE(3720)] = 138605, - [SMALL_STATE(3721)] = 138634, - [SMALL_STATE(3722)] = 138661, - [SMALL_STATE(3723)] = 138688, - [SMALL_STATE(3724)] = 138717, - [SMALL_STATE(3725)] = 138746, - [SMALL_STATE(3726)] = 138775, - [SMALL_STATE(3727)] = 138802, - [SMALL_STATE(3728)] = 138839, - [SMALL_STATE(3729)] = 138866, - [SMALL_STATE(3730)] = 138903, - [SMALL_STATE(3731)] = 138942, - [SMALL_STATE(3732)] = 138971, - [SMALL_STATE(3733)] = 139010, - [SMALL_STATE(3734)] = 139047, - [SMALL_STATE(3735)] = 139074, - [SMALL_STATE(3736)] = 139113, - [SMALL_STATE(3737)] = 139152, - [SMALL_STATE(3738)] = 139181, - [SMALL_STATE(3739)] = 139210, - [SMALL_STATE(3740)] = 139249, - [SMALL_STATE(3741)] = 139278, - [SMALL_STATE(3742)] = 139307, - [SMALL_STATE(3743)] = 139336, - [SMALL_STATE(3744)] = 139365, - [SMALL_STATE(3745)] = 139394, - [SMALL_STATE(3746)] = 139423, - [SMALL_STATE(3747)] = 139452, - [SMALL_STATE(3748)] = 139481, - [SMALL_STATE(3749)] = 139510, - [SMALL_STATE(3750)] = 139539, - [SMALL_STATE(3751)] = 139568, - [SMALL_STATE(3752)] = 139597, - [SMALL_STATE(3753)] = 139626, - [SMALL_STATE(3754)] = 139655, - [SMALL_STATE(3755)] = 139694, - [SMALL_STATE(3756)] = 139733, - [SMALL_STATE(3757)] = 139762, - [SMALL_STATE(3758)] = 139791, - [SMALL_STATE(3759)] = 139820, - [SMALL_STATE(3760)] = 139849, - [SMALL_STATE(3761)] = 139888, - [SMALL_STATE(3762)] = 139915, - [SMALL_STATE(3763)] = 139950, - [SMALL_STATE(3764)] = 139985, - [SMALL_STATE(3765)] = 140014, - [SMALL_STATE(3766)] = 140041, - [SMALL_STATE(3767)] = 140080, - [SMALL_STATE(3768)] = 140109, - [SMALL_STATE(3769)] = 140138, - [SMALL_STATE(3770)] = 140167, - [SMALL_STATE(3771)] = 140202, - [SMALL_STATE(3772)] = 140231, - [SMALL_STATE(3773)] = 140266, - [SMALL_STATE(3774)] = 140295, - [SMALL_STATE(3775)] = 140324, - [SMALL_STATE(3776)] = 140353, - [SMALL_STATE(3777)] = 140382, - [SMALL_STATE(3778)] = 140411, - [SMALL_STATE(3779)] = 140440, - [SMALL_STATE(3780)] = 140469, - [SMALL_STATE(3781)] = 140498, - [SMALL_STATE(3782)] = 140527, - [SMALL_STATE(3783)] = 140556, - [SMALL_STATE(3784)] = 140585, - [SMALL_STATE(3785)] = 140614, - [SMALL_STATE(3786)] = 140643, - [SMALL_STATE(3787)] = 140672, - [SMALL_STATE(3788)] = 140707, - [SMALL_STATE(3789)] = 140736, - [SMALL_STATE(3790)] = 140765, - [SMALL_STATE(3791)] = 140804, - [SMALL_STATE(3792)] = 140843, - [SMALL_STATE(3793)] = 140882, - [SMALL_STATE(3794)] = 140911, - [SMALL_STATE(3795)] = 140959, - [SMALL_STATE(3796)] = 141007, - [SMALL_STATE(3797)] = 141055, - [SMALL_STATE(3798)] = 141103, - [SMALL_STATE(3799)] = 141135, - [SMALL_STATE(3800)] = 141183, - [SMALL_STATE(3801)] = 141231, - [SMALL_STATE(3802)] = 141279, - [SMALL_STATE(3803)] = 141313, - [SMALL_STATE(3804)] = 141361, - [SMALL_STATE(3805)] = 141409, - [SMALL_STATE(3806)] = 141443, - [SMALL_STATE(3807)] = 141487, - [SMALL_STATE(3808)] = 141535, - [SMALL_STATE(3809)] = 141583, - [SMALL_STATE(3810)] = 141631, - [SMALL_STATE(3811)] = 141679, - [SMALL_STATE(3812)] = 141727, - [SMALL_STATE(3813)] = 141775, - [SMALL_STATE(3814)] = 141823, - [SMALL_STATE(3815)] = 141867, - [SMALL_STATE(3816)] = 141911, - [SMALL_STATE(3817)] = 141945, - [SMALL_STATE(3818)] = 141993, - [SMALL_STATE(3819)] = 142029, - [SMALL_STATE(3820)] = 142077, - [SMALL_STATE(3821)] = 142125, - [SMALL_STATE(3822)] = 142169, - [SMALL_STATE(3823)] = 142217, - [SMALL_STATE(3824)] = 142265, - [SMALL_STATE(3825)] = 142309, - [SMALL_STATE(3826)] = 142357, - [SMALL_STATE(3827)] = 142405, - [SMALL_STATE(3828)] = 142439, - [SMALL_STATE(3829)] = 142487, - [SMALL_STATE(3830)] = 142535, - [SMALL_STATE(3831)] = 142569, - [SMALL_STATE(3832)] = 142617, - [SMALL_STATE(3833)] = 142665, - [SMALL_STATE(3834)] = 142713, - [SMALL_STATE(3835)] = 142747, - [SMALL_STATE(3836)] = 142772, - [SMALL_STATE(3837)] = 142805, - [SMALL_STATE(3838)] = 142846, - [SMALL_STATE(3839)] = 142871, - [SMALL_STATE(3840)] = 142912, - [SMALL_STATE(3841)] = 142957, - [SMALL_STATE(3842)] = 142982, - [SMALL_STATE(3843)] = 143023, - [SMALL_STATE(3844)] = 143048, - [SMALL_STATE(3845)] = 143073, - [SMALL_STATE(3846)] = 143098, - [SMALL_STATE(3847)] = 143139, - [SMALL_STATE(3848)] = 143166, - [SMALL_STATE(3849)] = 143195, - [SMALL_STATE(3850)] = 143222, - [SMALL_STATE(3851)] = 143249, - [SMALL_STATE(3852)] = 143290, - [SMALL_STATE(3853)] = 143317, - [SMALL_STATE(3854)] = 143358, - [SMALL_STATE(3855)] = 143399, - [SMALL_STATE(3856)] = 143424, - [SMALL_STATE(3857)] = 143451, - [SMALL_STATE(3858)] = 143482, - [SMALL_STATE(3859)] = 143507, - [SMALL_STATE(3860)] = 143534, - [SMALL_STATE(3861)] = 143561, - [SMALL_STATE(3862)] = 143586, - [SMALL_STATE(3863)] = 143627, - [SMALL_STATE(3864)] = 143652, - [SMALL_STATE(3865)] = 143693, - [SMALL_STATE(3866)] = 143718, - [SMALL_STATE(3867)] = 143745, + [SMALL_STATE(3709)] = 138290, + [SMALL_STATE(3710)] = 138329, + [SMALL_STATE(3711)] = 138366, + [SMALL_STATE(3712)] = 138405, + [SMALL_STATE(3713)] = 138444, + [SMALL_STATE(3714)] = 138483, + [SMALL_STATE(3715)] = 138510, + [SMALL_STATE(3716)] = 138539, + [SMALL_STATE(3717)] = 138578, + [SMALL_STATE(3718)] = 138613, + [SMALL_STATE(3719)] = 138648, + [SMALL_STATE(3720)] = 138687, + [SMALL_STATE(3721)] = 138724, + [SMALL_STATE(3722)] = 138763, + [SMALL_STATE(3723)] = 138794, + [SMALL_STATE(3724)] = 138823, + [SMALL_STATE(3725)] = 138852, + [SMALL_STATE(3726)] = 138881, + [SMALL_STATE(3727)] = 138916, + [SMALL_STATE(3728)] = 138945, + [SMALL_STATE(3729)] = 138984, + [SMALL_STATE(3730)] = 139013, + [SMALL_STATE(3731)] = 139042, + [SMALL_STATE(3732)] = 139081, + [SMALL_STATE(3733)] = 139110, + [SMALL_STATE(3734)] = 139139, + [SMALL_STATE(3735)] = 139170, + [SMALL_STATE(3736)] = 139209, + [SMALL_STATE(3737)] = 139238, + [SMALL_STATE(3738)] = 139267, + [SMALL_STATE(3739)] = 139296, + [SMALL_STATE(3740)] = 139335, + [SMALL_STATE(3741)] = 139364, + [SMALL_STATE(3742)] = 139393, + [SMALL_STATE(3743)] = 139428, + [SMALL_STATE(3744)] = 139457, + [SMALL_STATE(3745)] = 139486, + [SMALL_STATE(3746)] = 139515, + [SMALL_STATE(3747)] = 139544, + [SMALL_STATE(3748)] = 139573, + [SMALL_STATE(3749)] = 139602, + [SMALL_STATE(3750)] = 139631, + [SMALL_STATE(3751)] = 139660, + [SMALL_STATE(3752)] = 139689, + [SMALL_STATE(3753)] = 139718, + [SMALL_STATE(3754)] = 139747, + [SMALL_STATE(3755)] = 139776, + [SMALL_STATE(3756)] = 139805, + [SMALL_STATE(3757)] = 139834, + [SMALL_STATE(3758)] = 139863, + [SMALL_STATE(3759)] = 139896, + [SMALL_STATE(3760)] = 139933, + [SMALL_STATE(3761)] = 139962, + [SMALL_STATE(3762)] = 139989, + [SMALL_STATE(3763)] = 140018, + [SMALL_STATE(3764)] = 140047, + [SMALL_STATE(3765)] = 140086, + [SMALL_STATE(3766)] = 140123, + [SMALL_STATE(3767)] = 140162, + [SMALL_STATE(3768)] = 140191, + [SMALL_STATE(3769)] = 140230, + [SMALL_STATE(3770)] = 140269, + [SMALL_STATE(3771)] = 140308, + [SMALL_STATE(3772)] = 140337, + [SMALL_STATE(3773)] = 140366, + [SMALL_STATE(3774)] = 140395, + [SMALL_STATE(3775)] = 140422, + [SMALL_STATE(3776)] = 140451, + [SMALL_STATE(3777)] = 140480, + [SMALL_STATE(3778)] = 140509, + [SMALL_STATE(3779)] = 140540, + [SMALL_STATE(3780)] = 140569, + [SMALL_STATE(3781)] = 140604, + [SMALL_STATE(3782)] = 140633, + [SMALL_STATE(3783)] = 140660, + [SMALL_STATE(3784)] = 140689, + [SMALL_STATE(3785)] = 140724, + [SMALL_STATE(3786)] = 140751, + [SMALL_STATE(3787)] = 140780, + [SMALL_STATE(3788)] = 140809, + [SMALL_STATE(3789)] = 140838, + [SMALL_STATE(3790)] = 140867, + [SMALL_STATE(3791)] = 140896, + [SMALL_STATE(3792)] = 140925, + [SMALL_STATE(3793)] = 140954, + [SMALL_STATE(3794)] = 140983, + [SMALL_STATE(3795)] = 141012, + [SMALL_STATE(3796)] = 141041, + [SMALL_STATE(3797)] = 141089, + [SMALL_STATE(3798)] = 141137, + [SMALL_STATE(3799)] = 141185, + [SMALL_STATE(3800)] = 141219, + [SMALL_STATE(3801)] = 141267, + [SMALL_STATE(3802)] = 141301, + [SMALL_STATE(3803)] = 141349, + [SMALL_STATE(3804)] = 141393, + [SMALL_STATE(3805)] = 141441, + [SMALL_STATE(3806)] = 141489, + [SMALL_STATE(3807)] = 141523, + [SMALL_STATE(3808)] = 141567, + [SMALL_STATE(3809)] = 141601, + [SMALL_STATE(3810)] = 141649, + [SMALL_STATE(3811)] = 141693, + [SMALL_STATE(3812)] = 141741, + [SMALL_STATE(3813)] = 141789, + [SMALL_STATE(3814)] = 141837, + [SMALL_STATE(3815)] = 141885, + [SMALL_STATE(3816)] = 141933, + [SMALL_STATE(3817)] = 141967, + [SMALL_STATE(3818)] = 142015, + [SMALL_STATE(3819)] = 142063, + [SMALL_STATE(3820)] = 142111, + [SMALL_STATE(3821)] = 142147, + [SMALL_STATE(3822)] = 142195, + [SMALL_STATE(3823)] = 142243, + [SMALL_STATE(3824)] = 142291, + [SMALL_STATE(3825)] = 142339, + [SMALL_STATE(3826)] = 142373, + [SMALL_STATE(3827)] = 142421, + [SMALL_STATE(3828)] = 142469, + [SMALL_STATE(3829)] = 142517, + [SMALL_STATE(3830)] = 142549, + [SMALL_STATE(3831)] = 142597, + [SMALL_STATE(3832)] = 142645, + [SMALL_STATE(3833)] = 142693, + [SMALL_STATE(3834)] = 142741, + [SMALL_STATE(3835)] = 142785, + [SMALL_STATE(3836)] = 142833, + [SMALL_STATE(3837)] = 142877, + [SMALL_STATE(3838)] = 142902, + [SMALL_STATE(3839)] = 142927, + [SMALL_STATE(3840)] = 142952, + [SMALL_STATE(3841)] = 142977, + [SMALL_STATE(3842)] = 143002, + [SMALL_STATE(3843)] = 143027, + [SMALL_STATE(3844)] = 143058, + [SMALL_STATE(3845)] = 143083, + [SMALL_STATE(3846)] = 143108, + [SMALL_STATE(3847)] = 143133, + [SMALL_STATE(3848)] = 143158, + [SMALL_STATE(3849)] = 143183, + [SMALL_STATE(3850)] = 143208, + [SMALL_STATE(3851)] = 143233, + [SMALL_STATE(3852)] = 143258, + [SMALL_STATE(3853)] = 143283, + [SMALL_STATE(3854)] = 143324, + [SMALL_STATE(3855)] = 143349, + [SMALL_STATE(3856)] = 143374, + [SMALL_STATE(3857)] = 143399, + [SMALL_STATE(3858)] = 143432, + [SMALL_STATE(3859)] = 143457, + [SMALL_STATE(3860)] = 143482, + [SMALL_STATE(3861)] = 143507, + [SMALL_STATE(3862)] = 143552, + [SMALL_STATE(3863)] = 143579, + [SMALL_STATE(3864)] = 143620, + [SMALL_STATE(3865)] = 143665, + [SMALL_STATE(3866)] = 143704, + [SMALL_STATE(3867)] = 143731, [SMALL_STATE(3868)] = 143772, [SMALL_STATE(3869)] = 143799, - [SMALL_STATE(3870)] = 143840, - [SMALL_STATE(3871)] = 143881, - [SMALL_STATE(3872)] = 143912, - [SMALL_STATE(3873)] = 143937, - [SMALL_STATE(3874)] = 143962, - [SMALL_STATE(3875)] = 143987, - [SMALL_STATE(3876)] = 144012, - [SMALL_STATE(3877)] = 144037, - [SMALL_STATE(3878)] = 144062, - [SMALL_STATE(3879)] = 144089, - [SMALL_STATE(3880)] = 144116, - [SMALL_STATE(3881)] = 144143, - [SMALL_STATE(3882)] = 144168, - [SMALL_STATE(3883)] = 144193, - [SMALL_STATE(3884)] = 144218, - [SMALL_STATE(3885)] = 144243, - [SMALL_STATE(3886)] = 144268, - [SMALL_STATE(3887)] = 144293, - [SMALL_STATE(3888)] = 144318, - [SMALL_STATE(3889)] = 144343, - [SMALL_STATE(3890)] = 144368, - [SMALL_STATE(3891)] = 144393, - [SMALL_STATE(3892)] = 144418, - [SMALL_STATE(3893)] = 144443, - [SMALL_STATE(3894)] = 144484, - [SMALL_STATE(3895)] = 144509, - [SMALL_STATE(3896)] = 144534, - [SMALL_STATE(3897)] = 144559, - [SMALL_STATE(3898)] = 144584, - [SMALL_STATE(3899)] = 144609, - [SMALL_STATE(3900)] = 144648, - [SMALL_STATE(3901)] = 144689, - [SMALL_STATE(3902)] = 144734, - [SMALL_STATE(3903)] = 144775, - [SMALL_STATE(3904)] = 144816, - [SMALL_STATE(3905)] = 144843, - [SMALL_STATE(3906)] = 144884, - [SMALL_STATE(3907)] = 144911, - [SMALL_STATE(3908)] = 144952, - [SMALL_STATE(3909)] = 144979, - [SMALL_STATE(3910)] = 145008, - [SMALL_STATE(3911)] = 145035, - [SMALL_STATE(3912)] = 145068, - [SMALL_STATE(3913)] = 145110, - [SMALL_STATE(3914)] = 145148, - [SMALL_STATE(3915)] = 145186, - [SMALL_STATE(3916)] = 145224, - [SMALL_STATE(3917)] = 145266, - [SMALL_STATE(3918)] = 145308, - [SMALL_STATE(3919)] = 145350, - [SMALL_STATE(3920)] = 145388, - [SMALL_STATE(3921)] = 145424, - [SMALL_STATE(3922)] = 145468, - [SMALL_STATE(3923)] = 145510, - [SMALL_STATE(3924)] = 145552, - [SMALL_STATE(3925)] = 145578, - [SMALL_STATE(3926)] = 145616, - [SMALL_STATE(3927)] = 145644, - [SMALL_STATE(3928)] = 145688, - [SMALL_STATE(3929)] = 145730, - [SMALL_STATE(3930)] = 145772, - [SMALL_STATE(3931)] = 145810, - [SMALL_STATE(3932)] = 145846, - [SMALL_STATE(3933)] = 145888, - [SMALL_STATE(3934)] = 145930, - [SMALL_STATE(3935)] = 145972, - [SMALL_STATE(3936)] = 146006, - [SMALL_STATE(3937)] = 146048, - [SMALL_STATE(3938)] = 146092, - [SMALL_STATE(3939)] = 146134, - [SMALL_STATE(3940)] = 146176, - [SMALL_STATE(3941)] = 146210, - [SMALL_STATE(3942)] = 146244, - [SMALL_STATE(3943)] = 146288, - [SMALL_STATE(3944)] = 146330, - [SMALL_STATE(3945)] = 146364, - [SMALL_STATE(3946)] = 146402, - [SMALL_STATE(3947)] = 146444, - [SMALL_STATE(3948)] = 146486, - [SMALL_STATE(3949)] = 146528, - [SMALL_STATE(3950)] = 146572, - [SMALL_STATE(3951)] = 146614, - [SMALL_STATE(3952)] = 146656, - [SMALL_STATE(3953)] = 146698, - [SMALL_STATE(3954)] = 146736, - [SMALL_STATE(3955)] = 146778, - [SMALL_STATE(3956)] = 146820, - [SMALL_STATE(3957)] = 146854, - [SMALL_STATE(3958)] = 146892, - [SMALL_STATE(3959)] = 146934, - [SMALL_STATE(3960)] = 146976, - [SMALL_STATE(3961)] = 147012, - [SMALL_STATE(3962)] = 147038, - [SMALL_STATE(3963)] = 147080, - [SMALL_STATE(3964)] = 147110, - [SMALL_STATE(3965)] = 147148, - [SMALL_STATE(3966)] = 147190, - [SMALL_STATE(3967)] = 147218, - [SMALL_STATE(3968)] = 147246, - [SMALL_STATE(3969)] = 147271, - [SMALL_STATE(3970)] = 147296, - [SMALL_STATE(3971)] = 147321, - [SMALL_STATE(3972)] = 147346, - [SMALL_STATE(3973)] = 147369, - [SMALL_STATE(3974)] = 147394, - [SMALL_STATE(3975)] = 147423, - [SMALL_STATE(3976)] = 147448, - [SMALL_STATE(3977)] = 147475, - [SMALL_STATE(3978)] = 147500, - [SMALL_STATE(3979)] = 147531, - [SMALL_STATE(3980)] = 147556, - [SMALL_STATE(3981)] = 147583, - [SMALL_STATE(3982)] = 147608, - [SMALL_STATE(3983)] = 147633, - [SMALL_STATE(3984)] = 147658, - [SMALL_STATE(3985)] = 147683, - [SMALL_STATE(3986)] = 147726, - [SMALL_STATE(3987)] = 147751, - [SMALL_STATE(3988)] = 147780, - [SMALL_STATE(3989)] = 147805, - [SMALL_STATE(3990)] = 147832, - [SMALL_STATE(3991)] = 147857, - [SMALL_STATE(3992)] = 147884, - [SMALL_STATE(3993)] = 147909, - [SMALL_STATE(3994)] = 147932, - [SMALL_STATE(3995)] = 147955, - [SMALL_STATE(3996)] = 147980, - [SMALL_STATE(3997)] = 148005, - [SMALL_STATE(3998)] = 148030, - [SMALL_STATE(3999)] = 148055, - [SMALL_STATE(4000)] = 148084, - [SMALL_STATE(4001)] = 148113, - [SMALL_STATE(4002)] = 148142, - [SMALL_STATE(4003)] = 148167, - [SMALL_STATE(4004)] = 148192, - [SMALL_STATE(4005)] = 148215, - [SMALL_STATE(4006)] = 148242, - [SMALL_STATE(4007)] = 148271, - [SMALL_STATE(4008)] = 148300, - [SMALL_STATE(4009)] = 148327, - [SMALL_STATE(4010)] = 148352, - [SMALL_STATE(4011)] = 148377, - [SMALL_STATE(4012)] = 148402, - [SMALL_STATE(4013)] = 148427, - [SMALL_STATE(4014)] = 148450, - [SMALL_STATE(4015)] = 148475, - [SMALL_STATE(4016)] = 148500, - [SMALL_STATE(4017)] = 148525, - [SMALL_STATE(4018)] = 148548, - [SMALL_STATE(4019)] = 148573, - [SMALL_STATE(4020)] = 148598, - [SMALL_STATE(4021)] = 148623, - [SMALL_STATE(4022)] = 148650, - [SMALL_STATE(4023)] = 148675, - [SMALL_STATE(4024)] = 148698, - [SMALL_STATE(4025)] = 148723, - [SMALL_STATE(4026)] = 148746, - [SMALL_STATE(4027)] = 148771, - [SMALL_STATE(4028)] = 148796, - [SMALL_STATE(4029)] = 148821, - [SMALL_STATE(4030)] = 148844, - [SMALL_STATE(4031)] = 148873, - [SMALL_STATE(4032)] = 148898, - [SMALL_STATE(4033)] = 148938, - [SMALL_STATE(4034)] = 148972, - [SMALL_STATE(4035)] = 149012, - [SMALL_STATE(4036)] = 149052, - [SMALL_STATE(4037)] = 149080, - [SMALL_STATE(4038)] = 149106, - [SMALL_STATE(4039)] = 149142, - [SMALL_STATE(4040)] = 149170, - [SMALL_STATE(4041)] = 149210, - [SMALL_STATE(4042)] = 149250, - [SMALL_STATE(4043)] = 149290, - [SMALL_STATE(4044)] = 149330, - [SMALL_STATE(4045)] = 149356, - [SMALL_STATE(4046)] = 149396, - [SMALL_STATE(4047)] = 149436, - [SMALL_STATE(4048)] = 149474, - [SMALL_STATE(4049)] = 149514, - [SMALL_STATE(4050)] = 149548, - [SMALL_STATE(4051)] = 149572, - [SMALL_STATE(4052)] = 149608, - [SMALL_STATE(4053)] = 149632, - [SMALL_STATE(4054)] = 149656, - [SMALL_STATE(4055)] = 149696, - [SMALL_STATE(4056)] = 149718, - [SMALL_STATE(4057)] = 149754, - [SMALL_STATE(4058)] = 149794, - [SMALL_STATE(4059)] = 149830, - [SMALL_STATE(4060)] = 149870, - [SMALL_STATE(4061)] = 149910, - [SMALL_STATE(4062)] = 149936, - [SMALL_STATE(4063)] = 149976, - [SMALL_STATE(4064)] = 150016, - [SMALL_STATE(4065)] = 150044, - [SMALL_STATE(4066)] = 150084, - [SMALL_STATE(4067)] = 150124, - [SMALL_STATE(4068)] = 150162, - [SMALL_STATE(4069)] = 150202, - [SMALL_STATE(4070)] = 150224, - [SMALL_STATE(4071)] = 150261, - [SMALL_STATE(4072)] = 150294, - [SMALL_STATE(4073)] = 150315, - [SMALL_STATE(4074)] = 150342, - [SMALL_STATE(4075)] = 150363, - [SMALL_STATE(4076)] = 150386, - [SMALL_STATE(4077)] = 150407, - [SMALL_STATE(4078)] = 150428, - [SMALL_STATE(4079)] = 150449, - [SMALL_STATE(4080)] = 150482, - [SMALL_STATE(4081)] = 150515, - [SMALL_STATE(4082)] = 150548, - [SMALL_STATE(4083)] = 150581, - [SMALL_STATE(4084)] = 150604, - [SMALL_STATE(4085)] = 150641, - [SMALL_STATE(4086)] = 150662, - [SMALL_STATE(4087)] = 150683, - [SMALL_STATE(4088)] = 150716, - [SMALL_STATE(4089)] = 150749, - [SMALL_STATE(4090)] = 150782, - [SMALL_STATE(4091)] = 150815, - [SMALL_STATE(4092)] = 150838, - [SMALL_STATE(4093)] = 150871, - [SMALL_STATE(4094)] = 150904, - [SMALL_STATE(4095)] = 150937, - [SMALL_STATE(4096)] = 150964, - [SMALL_STATE(4097)] = 151001, - [SMALL_STATE(4098)] = 151026, - [SMALL_STATE(4099)] = 151063, - [SMALL_STATE(4100)] = 151086, - [SMALL_STATE(4101)] = 151109, - [SMALL_STATE(4102)] = 151146, - [SMALL_STATE(4103)] = 151183, - [SMALL_STATE(4104)] = 151204, - [SMALL_STATE(4105)] = 151241, - [SMALL_STATE(4106)] = 151278, - [SMALL_STATE(4107)] = 151315, - [SMALL_STATE(4108)] = 151352, - [SMALL_STATE(4109)] = 151385, - [SMALL_STATE(4110)] = 151414, - [SMALL_STATE(4111)] = 151443, - [SMALL_STATE(4112)] = 151480, - [SMALL_STATE(4113)] = 151517, - [SMALL_STATE(4114)] = 151538, - [SMALL_STATE(4115)] = 151559, - [SMALL_STATE(4116)] = 151592, - [SMALL_STATE(4117)] = 151625, - [SMALL_STATE(4118)] = 151662, - [SMALL_STATE(4119)] = 151697, - [SMALL_STATE(4120)] = 151734, - [SMALL_STATE(4121)] = 151767, - [SMALL_STATE(4122)] = 151800, - [SMALL_STATE(4123)] = 151833, - [SMALL_STATE(4124)] = 151866, - [SMALL_STATE(4125)] = 151899, - [SMALL_STATE(4126)] = 151936, - [SMALL_STATE(4127)] = 151969, - [SMALL_STATE(4128)] = 151990, - [SMALL_STATE(4129)] = 152011, - [SMALL_STATE(4130)] = 152032, - [SMALL_STATE(4131)] = 152065, - [SMALL_STATE(4132)] = 152098, - [SMALL_STATE(4133)] = 152119, - [SMALL_STATE(4134)] = 152140, - [SMALL_STATE(4135)] = 152171, - [SMALL_STATE(4136)] = 152192, - [SMALL_STATE(4137)] = 152225, - [SMALL_STATE(4138)] = 152248, - [SMALL_STATE(4139)] = 152285, - [SMALL_STATE(4140)] = 152318, - [SMALL_STATE(4141)] = 152339, - [SMALL_STATE(4142)] = 152360, - [SMALL_STATE(4143)] = 152381, - [SMALL_STATE(4144)] = 152402, - [SMALL_STATE(4145)] = 152425, - [SMALL_STATE(4146)] = 152458, - [SMALL_STATE(4147)] = 152491, - [SMALL_STATE(4148)] = 152524, - [SMALL_STATE(4149)] = 152545, - [SMALL_STATE(4150)] = 152578, - [SMALL_STATE(4151)] = 152611, - [SMALL_STATE(4152)] = 152632, - [SMALL_STATE(4153)] = 152669, - [SMALL_STATE(4154)] = 152702, - [SMALL_STATE(4155)] = 152725, - [SMALL_STATE(4156)] = 152746, - [SMALL_STATE(4157)] = 152777, - [SMALL_STATE(4158)] = 152814, - [SMALL_STATE(4159)] = 152845, - [SMALL_STATE(4160)] = 152876, - [SMALL_STATE(4161)] = 152897, - [SMALL_STATE(4162)] = 152934, - [SMALL_STATE(4163)] = 152955, - [SMALL_STATE(4164)] = 152988, - [SMALL_STATE(4165)] = 153009, - [SMALL_STATE(4166)] = 153030, - [SMALL_STATE(4167)] = 153061, - [SMALL_STATE(4168)] = 153082, - [SMALL_STATE(4169)] = 153119, - [SMALL_STATE(4170)] = 153140, - [SMALL_STATE(4171)] = 153173, - [SMALL_STATE(4172)] = 153196, - [SMALL_STATE(4173)] = 153227, - [SMALL_STATE(4174)] = 153254, - [SMALL_STATE(4175)] = 153287, - [SMALL_STATE(4176)] = 153314, - [SMALL_STATE(4177)] = 153345, - [SMALL_STATE(4178)] = 153378, - [SMALL_STATE(4179)] = 153399, - [SMALL_STATE(4180)] = 153430, - [SMALL_STATE(4181)] = 153467, - [SMALL_STATE(4182)] = 153488, - [SMALL_STATE(4183)] = 153519, - [SMALL_STATE(4184)] = 153552, - [SMALL_STATE(4185)] = 153585, - [SMALL_STATE(4186)] = 153618, - [SMALL_STATE(4187)] = 153651, - [SMALL_STATE(4188)] = 153688, - [SMALL_STATE(4189)] = 153725, - [SMALL_STATE(4190)] = 153758, - [SMALL_STATE(4191)] = 153791, - [SMALL_STATE(4192)] = 153812, - [SMALL_STATE(4193)] = 153845, - [SMALL_STATE(4194)] = 153878, - [SMALL_STATE(4195)] = 153905, - [SMALL_STATE(4196)] = 153942, - [SMALL_STATE(4197)] = 153979, - [SMALL_STATE(4198)] = 154012, - [SMALL_STATE(4199)] = 154045, - [SMALL_STATE(4200)] = 154078, - [SMALL_STATE(4201)] = 154111, - [SMALL_STATE(4202)] = 154144, - [SMALL_STATE(4203)] = 154181, - [SMALL_STATE(4204)] = 154202, - [SMALL_STATE(4205)] = 154223, - [SMALL_STATE(4206)] = 154250, - [SMALL_STATE(4207)] = 154287, - [SMALL_STATE(4208)] = 154320, - [SMALL_STATE(4209)] = 154357, - [SMALL_STATE(4210)] = 154388, - [SMALL_STATE(4211)] = 154425, - [SMALL_STATE(4212)] = 154458, - [SMALL_STATE(4213)] = 154479, - [SMALL_STATE(4214)] = 154512, - [SMALL_STATE(4215)] = 154545, - [SMALL_STATE(4216)] = 154566, - [SMALL_STATE(4217)] = 154591, - [SMALL_STATE(4218)] = 154624, - [SMALL_STATE(4219)] = 154659, - [SMALL_STATE(4220)] = 154680, - [SMALL_STATE(4221)] = 154717, - [SMALL_STATE(4222)] = 154754, - [SMALL_STATE(4223)] = 154787, - [SMALL_STATE(4224)] = 154820, - [SMALL_STATE(4225)] = 154853, - [SMALL_STATE(4226)] = 154890, - [SMALL_STATE(4227)] = 154923, - [SMALL_STATE(4228)] = 154956, - [SMALL_STATE(4229)] = 154989, - [SMALL_STATE(4230)] = 155010, - [SMALL_STATE(4231)] = 155041, - [SMALL_STATE(4232)] = 155072, - [SMALL_STATE(4233)] = 155109, - [SMALL_STATE(4234)] = 155136, - [SMALL_STATE(4235)] = 155157, - [SMALL_STATE(4236)] = 155188, - [SMALL_STATE(4237)] = 155225, - [SMALL_STATE(4238)] = 155262, - [SMALL_STATE(4239)] = 155295, - [SMALL_STATE(4240)] = 155316, - [SMALL_STATE(4241)] = 155349, - [SMALL_STATE(4242)] = 155370, - [SMALL_STATE(4243)] = 155391, - [SMALL_STATE(4244)] = 155428, - [SMALL_STATE(4245)] = 155449, - [SMALL_STATE(4246)] = 155470, - [SMALL_STATE(4247)] = 155507, - [SMALL_STATE(4248)] = 155544, - [SMALL_STATE(4249)] = 155577, - [SMALL_STATE(4250)] = 155614, - [SMALL_STATE(4251)] = 155635, - [SMALL_STATE(4252)] = 155672, - [SMALL_STATE(4253)] = 155693, - [SMALL_STATE(4254)] = 155730, - [SMALL_STATE(4255)] = 155753, - [SMALL_STATE(4256)] = 155774, - [SMALL_STATE(4257)] = 155795, - [SMALL_STATE(4258)] = 155816, - [SMALL_STATE(4259)] = 155853, - [SMALL_STATE(4260)] = 155874, - [SMALL_STATE(4261)] = 155897, - [SMALL_STATE(4262)] = 155930, - [SMALL_STATE(4263)] = 155967, - [SMALL_STATE(4264)] = 156000, - [SMALL_STATE(4265)] = 156037, - [SMALL_STATE(4266)] = 156074, - [SMALL_STATE(4267)] = 156095, - [SMALL_STATE(4268)] = 156126, - [SMALL_STATE(4269)] = 156163, - [SMALL_STATE(4270)] = 156194, - [SMALL_STATE(4271)] = 156223, - [SMALL_STATE(4272)] = 156256, - [SMALL_STATE(4273)] = 156291, - [SMALL_STATE(4274)] = 156322, - [SMALL_STATE(4275)] = 156355, - [SMALL_STATE(4276)] = 156388, - [SMALL_STATE(4277)] = 156419, - [SMALL_STATE(4278)] = 156452, - [SMALL_STATE(4279)] = 156485, - [SMALL_STATE(4280)] = 156518, - [SMALL_STATE(4281)] = 156539, - [SMALL_STATE(4282)] = 156576, - [SMALL_STATE(4283)] = 156597, - [SMALL_STATE(4284)] = 156618, - [SMALL_STATE(4285)] = 156639, - [SMALL_STATE(4286)] = 156672, - [SMALL_STATE(4287)] = 156697, - [SMALL_STATE(4288)] = 156734, - [SMALL_STATE(4289)] = 156771, - [SMALL_STATE(4290)] = 156804, - [SMALL_STATE(4291)] = 156841, - [SMALL_STATE(4292)] = 156878, - [SMALL_STATE(4293)] = 156899, - [SMALL_STATE(4294)] = 156936, - [SMALL_STATE(4295)] = 156973, - [SMALL_STATE(4296)] = 157008, - [SMALL_STATE(4297)] = 157029, - [SMALL_STATE(4298)] = 157062, - [SMALL_STATE(4299)] = 157083, - [SMALL_STATE(4300)] = 157104, - [SMALL_STATE(4301)] = 157125, - [SMALL_STATE(4302)] = 157158, - [SMALL_STATE(4303)] = 157179, - [SMALL_STATE(4304)] = 157212, - [SMALL_STATE(4305)] = 157246, - [SMALL_STATE(4306)] = 157278, - [SMALL_STATE(4307)] = 157312, - [SMALL_STATE(4308)] = 157342, - [SMALL_STATE(4309)] = 157364, - [SMALL_STATE(4310)] = 157392, - [SMALL_STATE(4311)] = 157426, - [SMALL_STATE(4312)] = 157452, - [SMALL_STATE(4313)] = 157480, - [SMALL_STATE(4314)] = 157506, - [SMALL_STATE(4315)] = 157540, - [SMALL_STATE(4316)] = 157572, - [SMALL_STATE(4317)] = 157598, - [SMALL_STATE(4318)] = 157626, - [SMALL_STATE(4319)] = 157652, - [SMALL_STATE(4320)] = 157678, - [SMALL_STATE(4321)] = 157704, - [SMALL_STATE(4322)] = 157730, - [SMALL_STATE(4323)] = 157758, - [SMALL_STATE(4324)] = 157792, - [SMALL_STATE(4325)] = 157826, - [SMALL_STATE(4326)] = 157854, - [SMALL_STATE(4327)] = 157888, - [SMALL_STATE(4328)] = 157910, - [SMALL_STATE(4329)] = 157938, - [SMALL_STATE(4330)] = 157960, - [SMALL_STATE(4331)] = 157992, - [SMALL_STATE(4332)] = 158020, - [SMALL_STATE(4333)] = 158052, - [SMALL_STATE(4334)] = 158084, - [SMALL_STATE(4335)] = 158112, - [SMALL_STATE(4336)] = 158140, - [SMALL_STATE(4337)] = 158172, - [SMALL_STATE(4338)] = 158192, - [SMALL_STATE(4339)] = 158226, - [SMALL_STATE(4340)] = 158246, - [SMALL_STATE(4341)] = 158280, - [SMALL_STATE(4342)] = 158312, - [SMALL_STATE(4343)] = 158346, - [SMALL_STATE(4344)] = 158377, - [SMALL_STATE(4345)] = 158406, - [SMALL_STATE(4346)] = 158437, - [SMALL_STATE(4347)] = 158460, - [SMALL_STATE(4348)] = 158491, - [SMALL_STATE(4349)] = 158522, - [SMALL_STATE(4350)] = 158553, - [SMALL_STATE(4351)] = 158580, - [SMALL_STATE(4352)] = 158607, - [SMALL_STATE(4353)] = 158638, - [SMALL_STATE(4354)] = 158669, - [SMALL_STATE(4355)] = 158700, - [SMALL_STATE(4356)] = 158727, - [SMALL_STATE(4357)] = 158754, - [SMALL_STATE(4358)] = 158781, - [SMALL_STATE(4359)] = 158808, - [SMALL_STATE(4360)] = 158835, - [SMALL_STATE(4361)] = 158866, + [SMALL_STATE(3870)] = 143826, + [SMALL_STATE(3871)] = 143851, + [SMALL_STATE(3872)] = 143876, + [SMALL_STATE(3873)] = 143901, + [SMALL_STATE(3874)] = 143942, + [SMALL_STATE(3875)] = 143983, + [SMALL_STATE(3876)] = 144024, + [SMALL_STATE(3877)] = 144049, + [SMALL_STATE(3878)] = 144074, + [SMALL_STATE(3879)] = 144099, + [SMALL_STATE(3880)] = 144124, + [SMALL_STATE(3881)] = 144151, + [SMALL_STATE(3882)] = 144176, + [SMALL_STATE(3883)] = 144201, + [SMALL_STATE(3884)] = 144226, + [SMALL_STATE(3885)] = 144259, + [SMALL_STATE(3886)] = 144284, + [SMALL_STATE(3887)] = 144325, + [SMALL_STATE(3888)] = 144366, + [SMALL_STATE(3889)] = 144391, + [SMALL_STATE(3890)] = 144432, + [SMALL_STATE(3891)] = 144459, + [SMALL_STATE(3892)] = 144500, + [SMALL_STATE(3893)] = 144541, + [SMALL_STATE(3894)] = 144568, + [SMALL_STATE(3895)] = 144595, + [SMALL_STATE(3896)] = 144636, + [SMALL_STATE(3897)] = 144663, + [SMALL_STATE(3898)] = 144690, + [SMALL_STATE(3899)] = 144715, + [SMALL_STATE(3900)] = 144742, + [SMALL_STATE(3901)] = 144769, + [SMALL_STATE(3902)] = 144796, + [SMALL_STATE(3903)] = 144823, + [SMALL_STATE(3904)] = 144864, + [SMALL_STATE(3905)] = 144891, + [SMALL_STATE(3906)] = 144918, + [SMALL_STATE(3907)] = 144959, + [SMALL_STATE(3908)] = 145000, + [SMALL_STATE(3909)] = 145041, + [SMALL_STATE(3910)] = 145072, + [SMALL_STATE(3911)] = 145101, + [SMALL_STATE(3912)] = 145130, + [SMALL_STATE(3913)] = 145171, + [SMALL_STATE(3914)] = 145198, + [SMALL_STATE(3915)] = 145240, + [SMALL_STATE(3916)] = 145268, + [SMALL_STATE(3917)] = 145302, + [SMALL_STATE(3918)] = 145340, + [SMALL_STATE(3919)] = 145382, + [SMALL_STATE(3920)] = 145424, + [SMALL_STATE(3921)] = 145466, + [SMALL_STATE(3922)] = 145508, + [SMALL_STATE(3923)] = 145552, + [SMALL_STATE(3924)] = 145594, + [SMALL_STATE(3925)] = 145636, + [SMALL_STATE(3926)] = 145678, + [SMALL_STATE(3927)] = 145720, + [SMALL_STATE(3928)] = 145754, + [SMALL_STATE(3929)] = 145790, + [SMALL_STATE(3930)] = 145818, + [SMALL_STATE(3931)] = 145862, + [SMALL_STATE(3932)] = 145904, + [SMALL_STATE(3933)] = 145946, + [SMALL_STATE(3934)] = 145984, + [SMALL_STATE(3935)] = 146026, + [SMALL_STATE(3936)] = 146064, + [SMALL_STATE(3937)] = 146090, + [SMALL_STATE(3938)] = 146124, + [SMALL_STATE(3939)] = 146166, + [SMALL_STATE(3940)] = 146208, + [SMALL_STATE(3941)] = 146250, + [SMALL_STATE(3942)] = 146288, + [SMALL_STATE(3943)] = 146322, + [SMALL_STATE(3944)] = 146364, + [SMALL_STATE(3945)] = 146390, + [SMALL_STATE(3946)] = 146428, + [SMALL_STATE(3947)] = 146466, + [SMALL_STATE(3948)] = 146504, + [SMALL_STATE(3949)] = 146542, + [SMALL_STATE(3950)] = 146586, + [SMALL_STATE(3951)] = 146628, + [SMALL_STATE(3952)] = 146670, + [SMALL_STATE(3953)] = 146712, + [SMALL_STATE(3954)] = 146754, + [SMALL_STATE(3955)] = 146792, + [SMALL_STATE(3956)] = 146836, + [SMALL_STATE(3957)] = 146874, + [SMALL_STATE(3958)] = 146910, + [SMALL_STATE(3959)] = 146946, + [SMALL_STATE(3960)] = 146988, + [SMALL_STATE(3961)] = 147030, + [SMALL_STATE(3962)] = 147074, + [SMALL_STATE(3963)] = 147116, + [SMALL_STATE(3964)] = 147158, + [SMALL_STATE(3965)] = 147192, + [SMALL_STATE(3966)] = 147234, + [SMALL_STATE(3967)] = 147276, + [SMALL_STATE(3968)] = 147306, + [SMALL_STATE(3969)] = 147348, + [SMALL_STATE(3970)] = 147376, + [SMALL_STATE(3971)] = 147403, + [SMALL_STATE(3972)] = 147428, + [SMALL_STATE(3973)] = 147453, + [SMALL_STATE(3974)] = 147478, + [SMALL_STATE(3975)] = 147501, + [SMALL_STATE(3976)] = 147524, + [SMALL_STATE(3977)] = 147549, + [SMALL_STATE(3978)] = 147572, + [SMALL_STATE(3979)] = 147599, + [SMALL_STATE(3980)] = 147624, + [SMALL_STATE(3981)] = 147647, + [SMALL_STATE(3982)] = 147672, + [SMALL_STATE(3983)] = 147697, + [SMALL_STATE(3984)] = 147722, + [SMALL_STATE(3985)] = 147749, + [SMALL_STATE(3986)] = 147774, + [SMALL_STATE(3987)] = 147803, + [SMALL_STATE(3988)] = 147828, + [SMALL_STATE(3989)] = 147853, + [SMALL_STATE(3990)] = 147878, + [SMALL_STATE(3991)] = 147903, + [SMALL_STATE(3992)] = 147928, + [SMALL_STATE(3993)] = 147953, + [SMALL_STATE(3994)] = 147978, + [SMALL_STATE(3995)] = 148003, + [SMALL_STATE(3996)] = 148030, + [SMALL_STATE(3997)] = 148055, + [SMALL_STATE(3998)] = 148078, + [SMALL_STATE(3999)] = 148103, + [SMALL_STATE(4000)] = 148126, + [SMALL_STATE(4001)] = 148149, + [SMALL_STATE(4002)] = 148174, + [SMALL_STATE(4003)] = 148199, + [SMALL_STATE(4004)] = 148224, + [SMALL_STATE(4005)] = 148249, + [SMALL_STATE(4006)] = 148274, + [SMALL_STATE(4007)] = 148303, + [SMALL_STATE(4008)] = 148328, + [SMALL_STATE(4009)] = 148353, + [SMALL_STATE(4010)] = 148378, + [SMALL_STATE(4011)] = 148403, + [SMALL_STATE(4012)] = 148434, + [SMALL_STATE(4013)] = 148463, + [SMALL_STATE(4014)] = 148492, + [SMALL_STATE(4015)] = 148521, + [SMALL_STATE(4016)] = 148548, + [SMALL_STATE(4017)] = 148571, + [SMALL_STATE(4018)] = 148596, + [SMALL_STATE(4019)] = 148621, + [SMALL_STATE(4020)] = 148646, + [SMALL_STATE(4021)] = 148671, + [SMALL_STATE(4022)] = 148696, + [SMALL_STATE(4023)] = 148721, + [SMALL_STATE(4024)] = 148764, + [SMALL_STATE(4025)] = 148789, + [SMALL_STATE(4026)] = 148816, + [SMALL_STATE(4027)] = 148841, + [SMALL_STATE(4028)] = 148870, + [SMALL_STATE(4029)] = 148893, + [SMALL_STATE(4030)] = 148918, + [SMALL_STATE(4031)] = 148947, + [SMALL_STATE(4032)] = 148974, + [SMALL_STATE(4033)] = 149003, + [SMALL_STATE(4034)] = 149028, + [SMALL_STATE(4035)] = 149068, + [SMALL_STATE(4036)] = 149096, + [SMALL_STATE(4037)] = 149136, + [SMALL_STATE(4038)] = 149176, + [SMALL_STATE(4039)] = 149216, + [SMALL_STATE(4040)] = 149256, + [SMALL_STATE(4041)] = 149296, + [SMALL_STATE(4042)] = 149322, + [SMALL_STATE(4043)] = 149362, + [SMALL_STATE(4044)] = 149398, + [SMALL_STATE(4045)] = 149432, + [SMALL_STATE(4046)] = 149466, + [SMALL_STATE(4047)] = 149506, + [SMALL_STATE(4048)] = 149546, + [SMALL_STATE(4049)] = 149586, + [SMALL_STATE(4050)] = 149614, + [SMALL_STATE(4051)] = 149642, + [SMALL_STATE(4052)] = 149682, + [SMALL_STATE(4053)] = 149704, + [SMALL_STATE(4054)] = 149730, + [SMALL_STATE(4055)] = 149754, + [SMALL_STATE(4056)] = 149794, + [SMALL_STATE(4057)] = 149834, + [SMALL_STATE(4058)] = 149874, + [SMALL_STATE(4059)] = 149910, + [SMALL_STATE(4060)] = 149950, + [SMALL_STATE(4061)] = 149974, + [SMALL_STATE(4062)] = 149996, + [SMALL_STATE(4063)] = 150032, + [SMALL_STATE(4064)] = 150070, + [SMALL_STATE(4065)] = 150110, + [SMALL_STATE(4066)] = 150150, + [SMALL_STATE(4067)] = 150186, + [SMALL_STATE(4068)] = 150212, + [SMALL_STATE(4069)] = 150236, + [SMALL_STATE(4070)] = 150276, + [SMALL_STATE(4071)] = 150314, + [SMALL_STATE(4072)] = 150354, + [SMALL_STATE(4073)] = 150387, + [SMALL_STATE(4074)] = 150420, + [SMALL_STATE(4075)] = 150453, + [SMALL_STATE(4076)] = 150486, + [SMALL_STATE(4077)] = 150523, + [SMALL_STATE(4078)] = 150556, + [SMALL_STATE(4079)] = 150593, + [SMALL_STATE(4080)] = 150626, + [SMALL_STATE(4081)] = 150653, + [SMALL_STATE(4082)] = 150686, + [SMALL_STATE(4083)] = 150717, + [SMALL_STATE(4084)] = 150754, + [SMALL_STATE(4085)] = 150791, + [SMALL_STATE(4086)] = 150828, + [SMALL_STATE(4087)] = 150849, + [SMALL_STATE(4088)] = 150882, + [SMALL_STATE(4089)] = 150915, + [SMALL_STATE(4090)] = 150952, + [SMALL_STATE(4091)] = 150985, + [SMALL_STATE(4092)] = 151016, + [SMALL_STATE(4093)] = 151049, + [SMALL_STATE(4094)] = 151082, + [SMALL_STATE(4095)] = 151119, + [SMALL_STATE(4096)] = 151156, + [SMALL_STATE(4097)] = 151189, + [SMALL_STATE(4098)] = 151226, + [SMALL_STATE(4099)] = 151259, + [SMALL_STATE(4100)] = 151292, + [SMALL_STATE(4101)] = 151325, + [SMALL_STATE(4102)] = 151358, + [SMALL_STATE(4103)] = 151391, + [SMALL_STATE(4104)] = 151424, + [SMALL_STATE(4105)] = 151457, + [SMALL_STATE(4106)] = 151490, + [SMALL_STATE(4107)] = 151511, + [SMALL_STATE(4108)] = 151548, + [SMALL_STATE(4109)] = 151581, + [SMALL_STATE(4110)] = 151612, + [SMALL_STATE(4111)] = 151643, + [SMALL_STATE(4112)] = 151676, + [SMALL_STATE(4113)] = 151713, + [SMALL_STATE(4114)] = 151734, + [SMALL_STATE(4115)] = 151755, + [SMALL_STATE(4116)] = 151784, + [SMALL_STATE(4117)] = 151817, + [SMALL_STATE(4118)] = 151838, + [SMALL_STATE(4119)] = 151871, + [SMALL_STATE(4120)] = 151904, + [SMALL_STATE(4121)] = 151941, + [SMALL_STATE(4122)] = 151978, + [SMALL_STATE(4123)] = 152015, + [SMALL_STATE(4124)] = 152048, + [SMALL_STATE(4125)] = 152081, + [SMALL_STATE(4126)] = 152112, + [SMALL_STATE(4127)] = 152149, + [SMALL_STATE(4128)] = 152174, + [SMALL_STATE(4129)] = 152207, + [SMALL_STATE(4130)] = 152238, + [SMALL_STATE(4131)] = 152271, + [SMALL_STATE(4132)] = 152308, + [SMALL_STATE(4133)] = 152345, + [SMALL_STATE(4134)] = 152378, + [SMALL_STATE(4135)] = 152411, + [SMALL_STATE(4136)] = 152444, + [SMALL_STATE(4137)] = 152475, + [SMALL_STATE(4138)] = 152508, + [SMALL_STATE(4139)] = 152535, + [SMALL_STATE(4140)] = 152556, + [SMALL_STATE(4141)] = 152587, + [SMALL_STATE(4142)] = 152608, + [SMALL_STATE(4143)] = 152629, + [SMALL_STATE(4144)] = 152656, + [SMALL_STATE(4145)] = 152693, + [SMALL_STATE(4146)] = 152714, + [SMALL_STATE(4147)] = 152751, + [SMALL_STATE(4148)] = 152772, + [SMALL_STATE(4149)] = 152793, + [SMALL_STATE(4150)] = 152826, + [SMALL_STATE(4151)] = 152847, + [SMALL_STATE(4152)] = 152868, + [SMALL_STATE(4153)] = 152905, + [SMALL_STATE(4154)] = 152926, + [SMALL_STATE(4155)] = 152959, + [SMALL_STATE(4156)] = 152992, + [SMALL_STATE(4157)] = 153029, + [SMALL_STATE(4158)] = 153062, + [SMALL_STATE(4159)] = 153095, + [SMALL_STATE(4160)] = 153132, + [SMALL_STATE(4161)] = 153169, + [SMALL_STATE(4162)] = 153202, + [SMALL_STATE(4163)] = 153239, + [SMALL_STATE(4164)] = 153270, + [SMALL_STATE(4165)] = 153303, + [SMALL_STATE(4166)] = 153340, + [SMALL_STATE(4167)] = 153373, + [SMALL_STATE(4168)] = 153406, + [SMALL_STATE(4169)] = 153443, + [SMALL_STATE(4170)] = 153476, + [SMALL_STATE(4171)] = 153509, + [SMALL_STATE(4172)] = 153542, + [SMALL_STATE(4173)] = 153579, + [SMALL_STATE(4174)] = 153612, + [SMALL_STATE(4175)] = 153649, + [SMALL_STATE(4176)] = 153682, + [SMALL_STATE(4177)] = 153719, + [SMALL_STATE(4178)] = 153740, + [SMALL_STATE(4179)] = 153777, + [SMALL_STATE(4180)] = 153810, + [SMALL_STATE(4181)] = 153843, + [SMALL_STATE(4182)] = 153876, + [SMALL_STATE(4183)] = 153901, + [SMALL_STATE(4184)] = 153934, + [SMALL_STATE(4185)] = 153967, + [SMALL_STATE(4186)] = 154004, + [SMALL_STATE(4187)] = 154037, + [SMALL_STATE(4188)] = 154070, + [SMALL_STATE(4189)] = 154107, + [SMALL_STATE(4190)] = 154128, + [SMALL_STATE(4191)] = 154165, + [SMALL_STATE(4192)] = 154186, + [SMALL_STATE(4193)] = 154217, + [SMALL_STATE(4194)] = 154238, + [SMALL_STATE(4195)] = 154269, + [SMALL_STATE(4196)] = 154290, + [SMALL_STATE(4197)] = 154313, + [SMALL_STATE(4198)] = 154350, + [SMALL_STATE(4199)] = 154371, + [SMALL_STATE(4200)] = 154398, + [SMALL_STATE(4201)] = 154419, + [SMALL_STATE(4202)] = 154456, + [SMALL_STATE(4203)] = 154489, + [SMALL_STATE(4204)] = 154526, + [SMALL_STATE(4205)] = 154557, + [SMALL_STATE(4206)] = 154590, + [SMALL_STATE(4207)] = 154623, + [SMALL_STATE(4208)] = 154644, + [SMALL_STATE(4209)] = 154681, + [SMALL_STATE(4210)] = 154712, + [SMALL_STATE(4211)] = 154745, + [SMALL_STATE(4212)] = 154766, + [SMALL_STATE(4213)] = 154803, + [SMALL_STATE(4214)] = 154824, + [SMALL_STATE(4215)] = 154845, + [SMALL_STATE(4216)] = 154866, + [SMALL_STATE(4217)] = 154903, + [SMALL_STATE(4218)] = 154924, + [SMALL_STATE(4219)] = 154945, + [SMALL_STATE(4220)] = 154966, + [SMALL_STATE(4221)] = 154987, + [SMALL_STATE(4222)] = 155008, + [SMALL_STATE(4223)] = 155045, + [SMALL_STATE(4224)] = 155082, + [SMALL_STATE(4225)] = 155105, + [SMALL_STATE(4226)] = 155136, + [SMALL_STATE(4227)] = 155157, + [SMALL_STATE(4228)] = 155188, + [SMALL_STATE(4229)] = 155221, + [SMALL_STATE(4230)] = 155254, + [SMALL_STATE(4231)] = 155275, + [SMALL_STATE(4232)] = 155296, + [SMALL_STATE(4233)] = 155317, + [SMALL_STATE(4234)] = 155338, + [SMALL_STATE(4235)] = 155359, + [SMALL_STATE(4236)] = 155394, + [SMALL_STATE(4237)] = 155415, + [SMALL_STATE(4238)] = 155436, + [SMALL_STATE(4239)] = 155457, + [SMALL_STATE(4240)] = 155490, + [SMALL_STATE(4241)] = 155527, + [SMALL_STATE(4242)] = 155562, + [SMALL_STATE(4243)] = 155599, + [SMALL_STATE(4244)] = 155626, + [SMALL_STATE(4245)] = 155663, + [SMALL_STATE(4246)] = 155690, + [SMALL_STATE(4247)] = 155727, + [SMALL_STATE(4248)] = 155760, + [SMALL_STATE(4249)] = 155795, + [SMALL_STATE(4250)] = 155826, + [SMALL_STATE(4251)] = 155859, + [SMALL_STATE(4252)] = 155892, + [SMALL_STATE(4253)] = 155925, + [SMALL_STATE(4254)] = 155946, + [SMALL_STATE(4255)] = 155967, + [SMALL_STATE(4256)] = 156004, + [SMALL_STATE(4257)] = 156025, + [SMALL_STATE(4258)] = 156054, + [SMALL_STATE(4259)] = 156087, + [SMALL_STATE(4260)] = 156116, + [SMALL_STATE(4261)] = 156137, + [SMALL_STATE(4262)] = 156158, + [SMALL_STATE(4263)] = 156179, + [SMALL_STATE(4264)] = 156216, + [SMALL_STATE(4265)] = 156253, + [SMALL_STATE(4266)] = 156286, + [SMALL_STATE(4267)] = 156307, + [SMALL_STATE(4268)] = 156342, + [SMALL_STATE(4269)] = 156379, + [SMALL_STATE(4270)] = 156402, + [SMALL_STATE(4271)] = 156425, + [SMALL_STATE(4272)] = 156458, + [SMALL_STATE(4273)] = 156479, + [SMALL_STATE(4274)] = 156500, + [SMALL_STATE(4275)] = 156537, + [SMALL_STATE(4276)] = 156570, + [SMALL_STATE(4277)] = 156601, + [SMALL_STATE(4278)] = 156622, + [SMALL_STATE(4279)] = 156643, + [SMALL_STATE(4280)] = 156664, + [SMALL_STATE(4281)] = 156697, + [SMALL_STATE(4282)] = 156718, + [SMALL_STATE(4283)] = 156751, + [SMALL_STATE(4284)] = 156784, + [SMALL_STATE(4285)] = 156807, + [SMALL_STATE(4286)] = 156840, + [SMALL_STATE(4287)] = 156873, + [SMALL_STATE(4288)] = 156896, + [SMALL_STATE(4289)] = 156921, + [SMALL_STATE(4290)] = 156948, + [SMALL_STATE(4291)] = 156971, + [SMALL_STATE(4292)] = 156992, + [SMALL_STATE(4293)] = 157013, + [SMALL_STATE(4294)] = 157036, + [SMALL_STATE(4295)] = 157057, + [SMALL_STATE(4296)] = 157094, + [SMALL_STATE(4297)] = 157115, + [SMALL_STATE(4298)] = 157136, + [SMALL_STATE(4299)] = 157159, + [SMALL_STATE(4300)] = 157182, + [SMALL_STATE(4301)] = 157219, + [SMALL_STATE(4302)] = 157256, + [SMALL_STATE(4303)] = 157279, + [SMALL_STATE(4304)] = 157300, + [SMALL_STATE(4305)] = 157321, + [SMALL_STATE(4306)] = 157342, + [SMALL_STATE(4307)] = 157376, + [SMALL_STATE(4308)] = 157396, + [SMALL_STATE(4309)] = 157428, + [SMALL_STATE(4310)] = 157462, + [SMALL_STATE(4311)] = 157490, + [SMALL_STATE(4312)] = 157518, + [SMALL_STATE(4313)] = 157540, + [SMALL_STATE(4314)] = 157568, + [SMALL_STATE(4315)] = 157590, + [SMALL_STATE(4316)] = 157624, + [SMALL_STATE(4317)] = 157658, + [SMALL_STATE(4318)] = 157684, + [SMALL_STATE(4319)] = 157706, + [SMALL_STATE(4320)] = 157738, + [SMALL_STATE(4321)] = 157766, + [SMALL_STATE(4322)] = 157798, + [SMALL_STATE(4323)] = 157832, + [SMALL_STATE(4324)] = 157852, + [SMALL_STATE(4325)] = 157884, + [SMALL_STATE(4326)] = 157918, + [SMALL_STATE(4327)] = 157944, + [SMALL_STATE(4328)] = 157974, + [SMALL_STATE(4329)] = 158000, + [SMALL_STATE(4330)] = 158028, + [SMALL_STATE(4331)] = 158056, + [SMALL_STATE(4332)] = 158082, + [SMALL_STATE(4333)] = 158110, + [SMALL_STATE(4334)] = 158138, + [SMALL_STATE(4335)] = 158170, + [SMALL_STATE(4336)] = 158204, + [SMALL_STATE(4337)] = 158236, + [SMALL_STATE(4338)] = 158262, + [SMALL_STATE(4339)] = 158296, + [SMALL_STATE(4340)] = 158330, + [SMALL_STATE(4341)] = 158356, + [SMALL_STATE(4342)] = 158382, + [SMALL_STATE(4343)] = 158414, + [SMALL_STATE(4344)] = 158448, + [SMALL_STATE(4345)] = 158476, + [SMALL_STATE(4346)] = 158503, + [SMALL_STATE(4347)] = 158534, + [SMALL_STATE(4348)] = 158557, + [SMALL_STATE(4349)] = 158576, + [SMALL_STATE(4350)] = 158607, + [SMALL_STATE(4351)] = 158636, + [SMALL_STATE(4352)] = 158667, + [SMALL_STATE(4353)] = 158686, + [SMALL_STATE(4354)] = 158713, + [SMALL_STATE(4355)] = 158732, + [SMALL_STATE(4356)] = 158759, + [SMALL_STATE(4357)] = 158786, + [SMALL_STATE(4358)] = 158805, + [SMALL_STATE(4359)] = 158836, + [SMALL_STATE(4360)] = 158855, + [SMALL_STATE(4361)] = 158874, [SMALL_STATE(4362)] = 158893, [SMALL_STATE(4363)] = 158920, - [SMALL_STATE(4364)] = 158947, - [SMALL_STATE(4365)] = 158974, + [SMALL_STATE(4364)] = 158939, + [SMALL_STATE(4365)] = 158970, [SMALL_STATE(4366)] = 159001, - [SMALL_STATE(4367)] = 159028, - [SMALL_STATE(4368)] = 159055, - [SMALL_STATE(4369)] = 159082, - [SMALL_STATE(4370)] = 159109, - [SMALL_STATE(4371)] = 159136, - [SMALL_STATE(4372)] = 159163, - [SMALL_STATE(4373)] = 159190, - [SMALL_STATE(4374)] = 159217, - [SMALL_STATE(4375)] = 159244, - [SMALL_STATE(4376)] = 159271, - [SMALL_STATE(4377)] = 159298, - [SMALL_STATE(4378)] = 159325, - [SMALL_STATE(4379)] = 159352, - [SMALL_STATE(4380)] = 159379, - [SMALL_STATE(4381)] = 159406, - [SMALL_STATE(4382)] = 159433, - [SMALL_STATE(4383)] = 159460, - [SMALL_STATE(4384)] = 159487, - [SMALL_STATE(4385)] = 159514, - [SMALL_STATE(4386)] = 159541, - [SMALL_STATE(4387)] = 159568, - [SMALL_STATE(4388)] = 159595, - [SMALL_STATE(4389)] = 159622, - [SMALL_STATE(4390)] = 159649, - [SMALL_STATE(4391)] = 159676, - [SMALL_STATE(4392)] = 159703, - [SMALL_STATE(4393)] = 159730, - [SMALL_STATE(4394)] = 159757, - [SMALL_STATE(4395)] = 159788, - [SMALL_STATE(4396)] = 159815, - [SMALL_STATE(4397)] = 159842, - [SMALL_STATE(4398)] = 159873, - [SMALL_STATE(4399)] = 159894, - [SMALL_STATE(4400)] = 159921, - [SMALL_STATE(4401)] = 159948, - [SMALL_STATE(4402)] = 159979, - [SMALL_STATE(4403)] = 160010, - [SMALL_STATE(4404)] = 160037, - [SMALL_STATE(4405)] = 160064, - [SMALL_STATE(4406)] = 160095, - [SMALL_STATE(4407)] = 160124, - [SMALL_STATE(4408)] = 160155, - [SMALL_STATE(4409)] = 160186, - [SMALL_STATE(4410)] = 160217, - [SMALL_STATE(4411)] = 160248, - [SMALL_STATE(4412)] = 160279, - [SMALL_STATE(4413)] = 160306, - [SMALL_STATE(4414)] = 160337, - [SMALL_STATE(4415)] = 160360, - [SMALL_STATE(4416)] = 160391, - [SMALL_STATE(4417)] = 160422, - [SMALL_STATE(4418)] = 160449, - [SMALL_STATE(4419)] = 160476, - [SMALL_STATE(4420)] = 160499, - [SMALL_STATE(4421)] = 160526, - [SMALL_STATE(4422)] = 160557, - [SMALL_STATE(4423)] = 160588, - [SMALL_STATE(4424)] = 160619, - [SMALL_STATE(4425)] = 160646, - [SMALL_STATE(4426)] = 160673, - [SMALL_STATE(4427)] = 160700, - [SMALL_STATE(4428)] = 160727, - [SMALL_STATE(4429)] = 160758, - [SMALL_STATE(4430)] = 160785, - [SMALL_STATE(4431)] = 160812, - [SMALL_STATE(4432)] = 160843, - [SMALL_STATE(4433)] = 160870, - [SMALL_STATE(4434)] = 160901, - [SMALL_STATE(4435)] = 160928, - [SMALL_STATE(4436)] = 160955, - [SMALL_STATE(4437)] = 160982, - [SMALL_STATE(4438)] = 161013, - [SMALL_STATE(4439)] = 161040, - [SMALL_STATE(4440)] = 161071, - [SMALL_STATE(4441)] = 161098, - [SMALL_STATE(4442)] = 161129, - [SMALL_STATE(4443)] = 161156, - [SMALL_STATE(4444)] = 161183, - [SMALL_STATE(4445)] = 161210, - [SMALL_STATE(4446)] = 161237, - [SMALL_STATE(4447)] = 161264, - [SMALL_STATE(4448)] = 161295, - [SMALL_STATE(4449)] = 161326, - [SMALL_STATE(4450)] = 161357, - [SMALL_STATE(4451)] = 161376, - [SMALL_STATE(4452)] = 161395, - [SMALL_STATE(4453)] = 161414, - [SMALL_STATE(4454)] = 161433, - [SMALL_STATE(4455)] = 161452, - [SMALL_STATE(4456)] = 161471, - [SMALL_STATE(4457)] = 161498, - [SMALL_STATE(4458)] = 161529, - [SMALL_STATE(4459)] = 161548, - [SMALL_STATE(4460)] = 161575, - [SMALL_STATE(4461)] = 161606, - [SMALL_STATE(4462)] = 161637, - [SMALL_STATE(4463)] = 161668, - [SMALL_STATE(4464)] = 161699, - [SMALL_STATE(4465)] = 161730, - [SMALL_STATE(4466)] = 161761, - [SMALL_STATE(4467)] = 161792, - [SMALL_STATE(4468)] = 161823, - [SMALL_STATE(4469)] = 161852, - [SMALL_STATE(4470)] = 161883, - [SMALL_STATE(4471)] = 161902, - [SMALL_STATE(4472)] = 161933, - [SMALL_STATE(4473)] = 161964, - [SMALL_STATE(4474)] = 161995, - [SMALL_STATE(4475)] = 162022, - [SMALL_STATE(4476)] = 162053, - [SMALL_STATE(4477)] = 162084, - [SMALL_STATE(4478)] = 162111, - [SMALL_STATE(4479)] = 162138, - [SMALL_STATE(4480)] = 162161, - [SMALL_STATE(4481)] = 162188, - [SMALL_STATE(4482)] = 162215, - [SMALL_STATE(4483)] = 162242, - [SMALL_STATE(4484)] = 162263, - [SMALL_STATE(4485)] = 162282, - [SMALL_STATE(4486)] = 162309, - [SMALL_STATE(4487)] = 162340, - [SMALL_STATE(4488)] = 162367, - [SMALL_STATE(4489)] = 162394, - [SMALL_STATE(4490)] = 162421, - [SMALL_STATE(4491)] = 162440, - [SMALL_STATE(4492)] = 162463, - [SMALL_STATE(4493)] = 162490, - [SMALL_STATE(4494)] = 162513, - [SMALL_STATE(4495)] = 162536, - [SMALL_STATE(4496)] = 162567, - [SMALL_STATE(4497)] = 162590, - [SMALL_STATE(4498)] = 162617, - [SMALL_STATE(4499)] = 162640, - [SMALL_STATE(4500)] = 162663, - [SMALL_STATE(4501)] = 162686, - [SMALL_STATE(4502)] = 162709, - [SMALL_STATE(4503)] = 162732, - [SMALL_STATE(4504)] = 162759, - [SMALL_STATE(4505)] = 162782, - [SMALL_STATE(4506)] = 162805, - [SMALL_STATE(4507)] = 162832, - [SMALL_STATE(4508)] = 162859, - [SMALL_STATE(4509)] = 162890, - [SMALL_STATE(4510)] = 162909, - [SMALL_STATE(4511)] = 162940, - [SMALL_STATE(4512)] = 162971, - [SMALL_STATE(4513)] = 162996, - [SMALL_STATE(4514)] = 163019, - [SMALL_STATE(4515)] = 163050, - [SMALL_STATE(4516)] = 163069, - [SMALL_STATE(4517)] = 163092, - [SMALL_STATE(4518)] = 163115, - [SMALL_STATE(4519)] = 163138, - [SMALL_STATE(4520)] = 163169, - [SMALL_STATE(4521)] = 163198, - [SMALL_STATE(4522)] = 163225, - [SMALL_STATE(4523)] = 163246, - [SMALL_STATE(4524)] = 163277, - [SMALL_STATE(4525)] = 163306, - [SMALL_STATE(4526)] = 163337, - [SMALL_STATE(4527)] = 163356, - [SMALL_STATE(4528)] = 163387, - [SMALL_STATE(4529)] = 163418, - [SMALL_STATE(4530)] = 163445, - [SMALL_STATE(4531)] = 163472, - [SMALL_STATE(4532)] = 163503, - [SMALL_STATE(4533)] = 163530, - [SMALL_STATE(4534)] = 163557, - [SMALL_STATE(4535)] = 163588, - [SMALL_STATE(4536)] = 163615, - [SMALL_STATE(4537)] = 163638, - [SMALL_STATE(4538)] = 163661, - [SMALL_STATE(4539)] = 163692, - [SMALL_STATE(4540)] = 163715, - [SMALL_STATE(4541)] = 163742, - [SMALL_STATE(4542)] = 163771, - [SMALL_STATE(4543)] = 163798, - [SMALL_STATE(4544)] = 163825, - [SMALL_STATE(4545)] = 163856, - [SMALL_STATE(4546)] = 163883, - [SMALL_STATE(4547)] = 163910, - [SMALL_STATE(4548)] = 163941, - [SMALL_STATE(4549)] = 163960, - [SMALL_STATE(4550)] = 163991, - [SMALL_STATE(4551)] = 164022, - [SMALL_STATE(4552)] = 164053, - [SMALL_STATE(4553)] = 164072, - [SMALL_STATE(4554)] = 164099, - [SMALL_STATE(4555)] = 164126, - [SMALL_STATE(4556)] = 164153, - [SMALL_STATE(4557)] = 164176, - [SMALL_STATE(4558)] = 164197, - [SMALL_STATE(4559)] = 164224, - [SMALL_STATE(4560)] = 164243, - [SMALL_STATE(4561)] = 164272, - [SMALL_STATE(4562)] = 164303, - [SMALL_STATE(4563)] = 164322, - [SMALL_STATE(4564)] = 164353, - [SMALL_STATE(4565)] = 164384, - [SMALL_STATE(4566)] = 164407, - [SMALL_STATE(4567)] = 164430, - [SMALL_STATE(4568)] = 164453, - [SMALL_STATE(4569)] = 164484, - [SMALL_STATE(4570)] = 164515, - [SMALL_STATE(4571)] = 164534, - [SMALL_STATE(4572)] = 164553, - [SMALL_STATE(4573)] = 164572, - [SMALL_STATE(4574)] = 164603, - [SMALL_STATE(4575)] = 164622, - [SMALL_STATE(4576)] = 164651, - [SMALL_STATE(4577)] = 164682, - [SMALL_STATE(4578)] = 164713, - [SMALL_STATE(4579)] = 164744, - [SMALL_STATE(4580)] = 164773, - [SMALL_STATE(4581)] = 164802, - [SMALL_STATE(4582)] = 164825, - [SMALL_STATE(4583)] = 164852, - [SMALL_STATE(4584)] = 164879, - [SMALL_STATE(4585)] = 164902, - [SMALL_STATE(4586)] = 164929, - [SMALL_STATE(4587)] = 164960, - [SMALL_STATE(4588)] = 164991, - [SMALL_STATE(4589)] = 165018, - [SMALL_STATE(4590)] = 165047, - [SMALL_STATE(4591)] = 165076, - [SMALL_STATE(4592)] = 165095, + [SMALL_STATE(4367)] = 159032, + [SMALL_STATE(4368)] = 159059, + [SMALL_STATE(4369)] = 159086, + [SMALL_STATE(4370)] = 159117, + [SMALL_STATE(4371)] = 159148, + [SMALL_STATE(4372)] = 159175, + [SMALL_STATE(4373)] = 159204, + [SMALL_STATE(4374)] = 159231, + [SMALL_STATE(4375)] = 159262, + [SMALL_STATE(4376)] = 159289, + [SMALL_STATE(4377)] = 159308, + [SMALL_STATE(4378)] = 159335, + [SMALL_STATE(4379)] = 159354, + [SMALL_STATE(4380)] = 159385, + [SMALL_STATE(4381)] = 159416, + [SMALL_STATE(4382)] = 159443, + [SMALL_STATE(4383)] = 159474, + [SMALL_STATE(4384)] = 159497, + [SMALL_STATE(4385)] = 159526, + [SMALL_STATE(4386)] = 159553, + [SMALL_STATE(4387)] = 159574, + [SMALL_STATE(4388)] = 159601, + [SMALL_STATE(4389)] = 159628, + [SMALL_STATE(4390)] = 159655, + [SMALL_STATE(4391)] = 159686, + [SMALL_STATE(4392)] = 159717, + [SMALL_STATE(4393)] = 159748, + [SMALL_STATE(4394)] = 159779, + [SMALL_STATE(4395)] = 159806, + [SMALL_STATE(4396)] = 159833, + [SMALL_STATE(4397)] = 159864, + [SMALL_STATE(4398)] = 159891, + [SMALL_STATE(4399)] = 159922, + [SMALL_STATE(4400)] = 159949, + [SMALL_STATE(4401)] = 159980, + [SMALL_STATE(4402)] = 159999, + [SMALL_STATE(4403)] = 160022, + [SMALL_STATE(4404)] = 160049, + [SMALL_STATE(4405)] = 160076, + [SMALL_STATE(4406)] = 160103, + [SMALL_STATE(4407)] = 160130, + [SMALL_STATE(4408)] = 160153, + [SMALL_STATE(4409)] = 160182, + [SMALL_STATE(4410)] = 160213, + [SMALL_STATE(4411)] = 160240, + [SMALL_STATE(4412)] = 160267, + [SMALL_STATE(4413)] = 160294, + [SMALL_STATE(4414)] = 160325, + [SMALL_STATE(4415)] = 160352, + [SMALL_STATE(4416)] = 160379, + [SMALL_STATE(4417)] = 160402, + [SMALL_STATE(4418)] = 160431, + [SMALL_STATE(4419)] = 160454, + [SMALL_STATE(4420)] = 160485, + [SMALL_STATE(4421)] = 160516, + [SMALL_STATE(4422)] = 160539, + [SMALL_STATE(4423)] = 160570, + [SMALL_STATE(4424)] = 160597, + [SMALL_STATE(4425)] = 160626, + [SMALL_STATE(4426)] = 160657, + [SMALL_STATE(4427)] = 160682, + [SMALL_STATE(4428)] = 160701, + [SMALL_STATE(4429)] = 160732, + [SMALL_STATE(4430)] = 160763, + [SMALL_STATE(4431)] = 160790, + [SMALL_STATE(4432)] = 160813, + [SMALL_STATE(4433)] = 160840, + [SMALL_STATE(4434)] = 160867, + [SMALL_STATE(4435)] = 160894, + [SMALL_STATE(4436)] = 160917, + [SMALL_STATE(4437)] = 160948, + [SMALL_STATE(4438)] = 160979, + [SMALL_STATE(4439)] = 161006, + [SMALL_STATE(4440)] = 161037, + [SMALL_STATE(4441)] = 161064, + [SMALL_STATE(4442)] = 161083, + [SMALL_STATE(4443)] = 161114, + [SMALL_STATE(4444)] = 161145, + [SMALL_STATE(4445)] = 161174, + [SMALL_STATE(4446)] = 161205, + [SMALL_STATE(4447)] = 161232, + [SMALL_STATE(4448)] = 161263, + [SMALL_STATE(4449)] = 161294, + [SMALL_STATE(4450)] = 161321, + [SMALL_STATE(4451)] = 161352, + [SMALL_STATE(4452)] = 161383, + [SMALL_STATE(4453)] = 161410, + [SMALL_STATE(4454)] = 161437, + [SMALL_STATE(4455)] = 161464, + [SMALL_STATE(4456)] = 161485, + [SMALL_STATE(4457)] = 161504, + [SMALL_STATE(4458)] = 161531, + [SMALL_STATE(4459)] = 161558, + [SMALL_STATE(4460)] = 161577, + [SMALL_STATE(4461)] = 161608, + [SMALL_STATE(4462)] = 161635, + [SMALL_STATE(4463)] = 161654, + [SMALL_STATE(4464)] = 161677, + [SMALL_STATE(4465)] = 161708, + [SMALL_STATE(4466)] = 161731, + [SMALL_STATE(4467)] = 161750, + [SMALL_STATE(4468)] = 161773, + [SMALL_STATE(4469)] = 161796, + [SMALL_STATE(4470)] = 161823, + [SMALL_STATE(4471)] = 161850, + [SMALL_STATE(4472)] = 161881, + [SMALL_STATE(4473)] = 161908, + [SMALL_STATE(4474)] = 161939, + [SMALL_STATE(4475)] = 161968, + [SMALL_STATE(4476)] = 161995, + [SMALL_STATE(4477)] = 162018, + [SMALL_STATE(4478)] = 162045, + [SMALL_STATE(4479)] = 162064, + [SMALL_STATE(4480)] = 162093, + [SMALL_STATE(4481)] = 162124, + [SMALL_STATE(4482)] = 162151, + [SMALL_STATE(4483)] = 162170, + [SMALL_STATE(4484)] = 162191, + [SMALL_STATE(4485)] = 162218, + [SMALL_STATE(4486)] = 162249, + [SMALL_STATE(4487)] = 162272, + [SMALL_STATE(4488)] = 162303, + [SMALL_STATE(4489)] = 162326, + [SMALL_STATE(4490)] = 162357, + [SMALL_STATE(4491)] = 162378, + [SMALL_STATE(4492)] = 162407, + [SMALL_STATE(4493)] = 162438, + [SMALL_STATE(4494)] = 162461, + [SMALL_STATE(4495)] = 162488, + [SMALL_STATE(4496)] = 162519, + [SMALL_STATE(4497)] = 162550, + [SMALL_STATE(4498)] = 162577, + [SMALL_STATE(4499)] = 162604, + [SMALL_STATE(4500)] = 162635, + [SMALL_STATE(4501)] = 162666, + [SMALL_STATE(4502)] = 162693, + [SMALL_STATE(4503)] = 162716, + [SMALL_STATE(4504)] = 162739, + [SMALL_STATE(4505)] = 162768, + [SMALL_STATE(4506)] = 162797, + [SMALL_STATE(4507)] = 162824, + [SMALL_STATE(4508)] = 162847, + [SMALL_STATE(4509)] = 162874, + [SMALL_STATE(4510)] = 162901, + [SMALL_STATE(4511)] = 162930, + [SMALL_STATE(4512)] = 162953, + [SMALL_STATE(4513)] = 162972, + [SMALL_STATE(4514)] = 162991, + [SMALL_STATE(4515)] = 163012, + [SMALL_STATE(4516)] = 163039, + [SMALL_STATE(4517)] = 163062, + [SMALL_STATE(4518)] = 163093, + [SMALL_STATE(4519)] = 163124, + [SMALL_STATE(4520)] = 163151, + [SMALL_STATE(4521)] = 163174, + [SMALL_STATE(4522)] = 163201, + [SMALL_STATE(4523)] = 163224, + [SMALL_STATE(4524)] = 163247, + [SMALL_STATE(4525)] = 163270, + [SMALL_STATE(4526)] = 163297, + [SMALL_STATE(4527)] = 163320, + [SMALL_STATE(4528)] = 163347, + [SMALL_STATE(4529)] = 163374, + [SMALL_STATE(4530)] = 163401, + [SMALL_STATE(4531)] = 163428, + [SMALL_STATE(4532)] = 163455, + [SMALL_STATE(4533)] = 163482, + [SMALL_STATE(4534)] = 163513, + [SMALL_STATE(4535)] = 163544, + [SMALL_STATE(4536)] = 163575, + [SMALL_STATE(4537)] = 163594, + [SMALL_STATE(4538)] = 163613, + [SMALL_STATE(4539)] = 163644, + [SMALL_STATE(4540)] = 163673, + [SMALL_STATE(4541)] = 163704, + [SMALL_STATE(4542)] = 163735, + [SMALL_STATE(4543)] = 163758, + [SMALL_STATE(4544)] = 163785, + [SMALL_STATE(4545)] = 163812, + [SMALL_STATE(4546)] = 163833, + [SMALL_STATE(4547)] = 163860, + [SMALL_STATE(4548)] = 163891, + [SMALL_STATE(4549)] = 163918, + [SMALL_STATE(4550)] = 163945, + [SMALL_STATE(4551)] = 163972, + [SMALL_STATE(4552)] = 163999, + [SMALL_STATE(4553)] = 164022, + [SMALL_STATE(4554)] = 164049, + [SMALL_STATE(4555)] = 164076, + [SMALL_STATE(4556)] = 164103, + [SMALL_STATE(4557)] = 164134, + [SMALL_STATE(4558)] = 164153, + [SMALL_STATE(4559)] = 164184, + [SMALL_STATE(4560)] = 164215, + [SMALL_STATE(4561)] = 164246, + [SMALL_STATE(4562)] = 164273, + [SMALL_STATE(4563)] = 164292, + [SMALL_STATE(4564)] = 164319, + [SMALL_STATE(4565)] = 164350, + [SMALL_STATE(4566)] = 164377, + [SMALL_STATE(4567)] = 164404, + [SMALL_STATE(4568)] = 164423, + [SMALL_STATE(4569)] = 164450, + [SMALL_STATE(4570)] = 164469, + [SMALL_STATE(4571)] = 164488, + [SMALL_STATE(4572)] = 164519, + [SMALL_STATE(4573)] = 164550, + [SMALL_STATE(4574)] = 164577, + [SMALL_STATE(4575)] = 164604, + [SMALL_STATE(4576)] = 164635, + [SMALL_STATE(4577)] = 164666, + [SMALL_STATE(4578)] = 164697, + [SMALL_STATE(4579)] = 164716, + [SMALL_STATE(4580)] = 164747, + [SMALL_STATE(4581)] = 164774, + [SMALL_STATE(4582)] = 164801, + [SMALL_STATE(4583)] = 164828, + [SMALL_STATE(4584)] = 164855, + [SMALL_STATE(4585)] = 164882, + [SMALL_STATE(4586)] = 164913, + [SMALL_STATE(4587)] = 164940, + [SMALL_STATE(4588)] = 164971, + [SMALL_STATE(4589)] = 165002, + [SMALL_STATE(4590)] = 165029, + [SMALL_STATE(4591)] = 165060, + [SMALL_STATE(4592)] = 165089, [SMALL_STATE(4593)] = 165116, [SMALL_STATE(4594)] = 165145, - [SMALL_STATE(4595)] = 165174, + [SMALL_STATE(4595)] = 165176, [SMALL_STATE(4596)] = 165203, - [SMALL_STATE(4597)] = 165232, - [SMALL_STATE(4598)] = 165251, - [SMALL_STATE(4599)] = 165270, - [SMALL_STATE(4600)] = 165293, - [SMALL_STATE(4601)] = 165312, - [SMALL_STATE(4602)] = 165333, - [SMALL_STATE(4603)] = 165364, - [SMALL_STATE(4604)] = 165385, - [SMALL_STATE(4605)] = 165414, - [SMALL_STATE(4606)] = 165433, - [SMALL_STATE(4607)] = 165452, - [SMALL_STATE(4608)] = 165483, - [SMALL_STATE(4609)] = 165514, - [SMALL_STATE(4610)] = 165543, - [SMALL_STATE(4611)] = 165574, - [SMALL_STATE(4612)] = 165597, - [SMALL_STATE(4613)] = 165616, - [SMALL_STATE(4614)] = 165635, - [SMALL_STATE(4615)] = 165654, - [SMALL_STATE(4616)] = 165673, - [SMALL_STATE(4617)] = 165695, - [SMALL_STATE(4618)] = 165723, - [SMALL_STATE(4619)] = 165751, - [SMALL_STATE(4620)] = 165769, - [SMALL_STATE(4621)] = 165789, - [SMALL_STATE(4622)] = 165815, - [SMALL_STATE(4623)] = 165843, - [SMALL_STATE(4624)] = 165871, - [SMALL_STATE(4625)] = 165897, - [SMALL_STATE(4626)] = 165925, - [SMALL_STATE(4627)] = 165947, - [SMALL_STATE(4628)] = 165969, - [SMALL_STATE(4629)] = 165991, - [SMALL_STATE(4630)] = 166019, - [SMALL_STATE(4631)] = 166041, - [SMALL_STATE(4632)] = 166063, - [SMALL_STATE(4633)] = 166085, - [SMALL_STATE(4634)] = 166113, - [SMALL_STATE(4635)] = 166141, - [SMALL_STATE(4636)] = 166163, - [SMALL_STATE(4637)] = 166191, - [SMALL_STATE(4638)] = 166219, - [SMALL_STATE(4639)] = 166241, - [SMALL_STATE(4640)] = 166269, - [SMALL_STATE(4641)] = 166297, - [SMALL_STATE(4642)] = 166325, - [SMALL_STATE(4643)] = 166345, - [SMALL_STATE(4644)] = 166363, - [SMALL_STATE(4645)] = 166391, - [SMALL_STATE(4646)] = 166419, - [SMALL_STATE(4647)] = 166447, - [SMALL_STATE(4648)] = 166473, - [SMALL_STATE(4649)] = 166495, - [SMALL_STATE(4650)] = 166523, - [SMALL_STATE(4651)] = 166551, - [SMALL_STATE(4652)] = 166579, - [SMALL_STATE(4653)] = 166597, - [SMALL_STATE(4654)] = 166619, - [SMALL_STATE(4655)] = 166647, - [SMALL_STATE(4656)] = 166669, - [SMALL_STATE(4657)] = 166691, - [SMALL_STATE(4658)] = 166717, - [SMALL_STATE(4659)] = 166739, - [SMALL_STATE(4660)] = 166761, - [SMALL_STATE(4661)] = 166789, - [SMALL_STATE(4662)] = 166817, - [SMALL_STATE(4663)] = 166839, - [SMALL_STATE(4664)] = 166861, - [SMALL_STATE(4665)] = 166887, - [SMALL_STATE(4666)] = 166905, - [SMALL_STATE(4667)] = 166927, - [SMALL_STATE(4668)] = 166949, - [SMALL_STATE(4669)] = 166967, - [SMALL_STATE(4670)] = 166985, - [SMALL_STATE(4671)] = 167013, - [SMALL_STATE(4672)] = 167035, - [SMALL_STATE(4673)] = 167063, - [SMALL_STATE(4674)] = 167083, - [SMALL_STATE(4675)] = 167111, - [SMALL_STATE(4676)] = 167133, - [SMALL_STATE(4677)] = 167161, - [SMALL_STATE(4678)] = 167189, - [SMALL_STATE(4679)] = 167211, - [SMALL_STATE(4680)] = 167237, - [SMALL_STATE(4681)] = 167263, - [SMALL_STATE(4682)] = 167283, - [SMALL_STATE(4683)] = 167305, - [SMALL_STATE(4684)] = 167331, - [SMALL_STATE(4685)] = 167349, - [SMALL_STATE(4686)] = 167371, - [SMALL_STATE(4687)] = 167399, - [SMALL_STATE(4688)] = 167419, - [SMALL_STATE(4689)] = 167445, - [SMALL_STATE(4690)] = 167473, - [SMALL_STATE(4691)] = 167499, - [SMALL_STATE(4692)] = 167527, - [SMALL_STATE(4693)] = 167553, - [SMALL_STATE(4694)] = 167575, - [SMALL_STATE(4695)] = 167603, - [SMALL_STATE(4696)] = 167621, - [SMALL_STATE(4697)] = 167639, - [SMALL_STATE(4698)] = 167657, - [SMALL_STATE(4699)] = 167685, - [SMALL_STATE(4700)] = 167713, - [SMALL_STATE(4701)] = 167735, - [SMALL_STATE(4702)] = 167757, - [SMALL_STATE(4703)] = 167779, - [SMALL_STATE(4704)] = 167797, - [SMALL_STATE(4705)] = 167819, - [SMALL_STATE(4706)] = 167837, - [SMALL_STATE(4707)] = 167859, - [SMALL_STATE(4708)] = 167887, - [SMALL_STATE(4709)] = 167915, - [SMALL_STATE(4710)] = 167937, - [SMALL_STATE(4711)] = 167965, - [SMALL_STATE(4712)] = 167987, - [SMALL_STATE(4713)] = 168015, - [SMALL_STATE(4714)] = 168033, - [SMALL_STATE(4715)] = 168061, - [SMALL_STATE(4716)] = 168083, - [SMALL_STATE(4717)] = 168101, - [SMALL_STATE(4718)] = 168119, - [SMALL_STATE(4719)] = 168137, - [SMALL_STATE(4720)] = 168163, - [SMALL_STATE(4721)] = 168189, - [SMALL_STATE(4722)] = 168207, - [SMALL_STATE(4723)] = 168235, - [SMALL_STATE(4724)] = 168263, - [SMALL_STATE(4725)] = 168291, - [SMALL_STATE(4726)] = 168319, - [SMALL_STATE(4727)] = 168347, - [SMALL_STATE(4728)] = 168375, - [SMALL_STATE(4729)] = 168393, - [SMALL_STATE(4730)] = 168421, - [SMALL_STATE(4731)] = 168439, - [SMALL_STATE(4732)] = 168461, - [SMALL_STATE(4733)] = 168479, - [SMALL_STATE(4734)] = 168501, - [SMALL_STATE(4735)] = 168521, - [SMALL_STATE(4736)] = 168541, - [SMALL_STATE(4737)] = 168563, - [SMALL_STATE(4738)] = 168585, - [SMALL_STATE(4739)] = 168613, - [SMALL_STATE(4740)] = 168641, - [SMALL_STATE(4741)] = 168661, - [SMALL_STATE(4742)] = 168683, - [SMALL_STATE(4743)] = 168701, - [SMALL_STATE(4744)] = 168729, - [SMALL_STATE(4745)] = 168755, - [SMALL_STATE(4746)] = 168777, - [SMALL_STATE(4747)] = 168797, - [SMALL_STATE(4748)] = 168825, - [SMALL_STATE(4749)] = 168853, - [SMALL_STATE(4750)] = 168871, - [SMALL_STATE(4751)] = 168893, - [SMALL_STATE(4752)] = 168915, - [SMALL_STATE(4753)] = 168943, - [SMALL_STATE(4754)] = 168961, - [SMALL_STATE(4755)] = 168979, - [SMALL_STATE(4756)] = 168997, - [SMALL_STATE(4757)] = 169025, - [SMALL_STATE(4758)] = 169053, - [SMALL_STATE(4759)] = 169075, - [SMALL_STATE(4760)] = 169097, - [SMALL_STATE(4761)] = 169119, - [SMALL_STATE(4762)] = 169141, - [SMALL_STATE(4763)] = 169161, - [SMALL_STATE(4764)] = 169179, - [SMALL_STATE(4765)] = 169201, - [SMALL_STATE(4766)] = 169223, - [SMALL_STATE(4767)] = 169245, - [SMALL_STATE(4768)] = 169263, - [SMALL_STATE(4769)] = 169285, - [SMALL_STATE(4770)] = 169307, - [SMALL_STATE(4771)] = 169325, - [SMALL_STATE(4772)] = 169347, - [SMALL_STATE(4773)] = 169375, - [SMALL_STATE(4774)] = 169403, - [SMALL_STATE(4775)] = 169431, - [SMALL_STATE(4776)] = 169453, - [SMALL_STATE(4777)] = 169471, - [SMALL_STATE(4778)] = 169493, - [SMALL_STATE(4779)] = 169521, - [SMALL_STATE(4780)] = 169539, - [SMALL_STATE(4781)] = 169557, - [SMALL_STATE(4782)] = 169585, - [SMALL_STATE(4783)] = 169607, - [SMALL_STATE(4784)] = 169629, - [SMALL_STATE(4785)] = 169655, - [SMALL_STATE(4786)] = 169681, - [SMALL_STATE(4787)] = 169703, - [SMALL_STATE(4788)] = 169721, - [SMALL_STATE(4789)] = 169739, - [SMALL_STATE(4790)] = 169761, - [SMALL_STATE(4791)] = 169785, - [SMALL_STATE(4792)] = 169813, - [SMALL_STATE(4793)] = 169831, - [SMALL_STATE(4794)] = 169849, - [SMALL_STATE(4795)] = 169877, - [SMALL_STATE(4796)] = 169903, - [SMALL_STATE(4797)] = 169923, - [SMALL_STATE(4798)] = 169941, - [SMALL_STATE(4799)] = 169969, - [SMALL_STATE(4800)] = 169987, - [SMALL_STATE(4801)] = 170015, - [SMALL_STATE(4802)] = 170043, - [SMALL_STATE(4803)] = 170071, - [SMALL_STATE(4804)] = 170095, - [SMALL_STATE(4805)] = 170121, - [SMALL_STATE(4806)] = 170147, - [SMALL_STATE(4807)] = 170175, - [SMALL_STATE(4808)] = 170203, - [SMALL_STATE(4809)] = 170229, - [SMALL_STATE(4810)] = 170255, - [SMALL_STATE(4811)] = 170281, - [SMALL_STATE(4812)] = 170309, - [SMALL_STATE(4813)] = 170337, - [SMALL_STATE(4814)] = 170359, - [SMALL_STATE(4815)] = 170387, - [SMALL_STATE(4816)] = 170413, - [SMALL_STATE(4817)] = 170441, - [SMALL_STATE(4818)] = 170469, - [SMALL_STATE(4819)] = 170495, - [SMALL_STATE(4820)] = 170523, - [SMALL_STATE(4821)] = 170545, - [SMALL_STATE(4822)] = 170563, - [SMALL_STATE(4823)] = 170591, - [SMALL_STATE(4824)] = 170619, - [SMALL_STATE(4825)] = 170647, - [SMALL_STATE(4826)] = 170675, - [SMALL_STATE(4827)] = 170703, - [SMALL_STATE(4828)] = 170725, - [SMALL_STATE(4829)] = 170743, - [SMALL_STATE(4830)] = 170761, - [SMALL_STATE(4831)] = 170779, - [SMALL_STATE(4832)] = 170797, - [SMALL_STATE(4833)] = 170815, - [SMALL_STATE(4834)] = 170843, - [SMALL_STATE(4835)] = 170867, - [SMALL_STATE(4836)] = 170889, - [SMALL_STATE(4837)] = 170917, - [SMALL_STATE(4838)] = 170935, - [SMALL_STATE(4839)] = 170963, - [SMALL_STATE(4840)] = 170989, - [SMALL_STATE(4841)] = 171011, - [SMALL_STATE(4842)] = 171039, - [SMALL_STATE(4843)] = 171067, - [SMALL_STATE(4844)] = 171095, - [SMALL_STATE(4845)] = 171123, - [SMALL_STATE(4846)] = 171141, - [SMALL_STATE(4847)] = 171162, - [SMALL_STATE(4848)] = 171183, - [SMALL_STATE(4849)] = 171208, - [SMALL_STATE(4850)] = 171229, - [SMALL_STATE(4851)] = 171250, - [SMALL_STATE(4852)] = 171275, - [SMALL_STATE(4853)] = 171300, - [SMALL_STATE(4854)] = 171317, - [SMALL_STATE(4855)] = 171342, - [SMALL_STATE(4856)] = 171359, - [SMALL_STATE(4857)] = 171384, - [SMALL_STATE(4858)] = 171405, - [SMALL_STATE(4859)] = 171426, - [SMALL_STATE(4860)] = 171451, - [SMALL_STATE(4861)] = 171476, - [SMALL_STATE(4862)] = 171501, - [SMALL_STATE(4863)] = 171526, - [SMALL_STATE(4864)] = 171551, - [SMALL_STATE(4865)] = 171568, - [SMALL_STATE(4866)] = 171585, - [SMALL_STATE(4867)] = 171606, - [SMALL_STATE(4868)] = 171627, - [SMALL_STATE(4869)] = 171648, - [SMALL_STATE(4870)] = 171671, - [SMALL_STATE(4871)] = 171696, - [SMALL_STATE(4872)] = 171721, - [SMALL_STATE(4873)] = 171746, - [SMALL_STATE(4874)] = 171771, - [SMALL_STATE(4875)] = 171796, - [SMALL_STATE(4876)] = 171821, - [SMALL_STATE(4877)] = 171838, - [SMALL_STATE(4878)] = 171855, - [SMALL_STATE(4879)] = 171880, - [SMALL_STATE(4880)] = 171905, - [SMALL_STATE(4881)] = 171930, - [SMALL_STATE(4882)] = 171947, - [SMALL_STATE(4883)] = 171964, - [SMALL_STATE(4884)] = 171981, - [SMALL_STATE(4885)] = 171998, - [SMALL_STATE(4886)] = 172019, - [SMALL_STATE(4887)] = 172036, - [SMALL_STATE(4888)] = 172061, - [SMALL_STATE(4889)] = 172078, - [SMALL_STATE(4890)] = 172103, - [SMALL_STATE(4891)] = 172124, - [SMALL_STATE(4892)] = 172141, - [SMALL_STATE(4893)] = 172164, - [SMALL_STATE(4894)] = 172181, - [SMALL_STATE(4895)] = 172202, - [SMALL_STATE(4896)] = 172219, - [SMALL_STATE(4897)] = 172236, - [SMALL_STATE(4898)] = 172257, - [SMALL_STATE(4899)] = 172282, - [SMALL_STATE(4900)] = 172299, - [SMALL_STATE(4901)] = 172324, - [SMALL_STATE(4902)] = 172341, - [SMALL_STATE(4903)] = 172362, - [SMALL_STATE(4904)] = 172387, - [SMALL_STATE(4905)] = 172408, - [SMALL_STATE(4906)] = 172433, - [SMALL_STATE(4907)] = 172458, - [SMALL_STATE(4908)] = 172479, - [SMALL_STATE(4909)] = 172500, - [SMALL_STATE(4910)] = 172521, - [SMALL_STATE(4911)] = 172538, - [SMALL_STATE(4912)] = 172559, - [SMALL_STATE(4913)] = 172584, - [SMALL_STATE(4914)] = 172601, - [SMALL_STATE(4915)] = 172620, - [SMALL_STATE(4916)] = 172641, - [SMALL_STATE(4917)] = 172666, - [SMALL_STATE(4918)] = 172691, - [SMALL_STATE(4919)] = 172712, - [SMALL_STATE(4920)] = 172737, - [SMALL_STATE(4921)] = 172758, - [SMALL_STATE(4922)] = 172783, - [SMALL_STATE(4923)] = 172804, - [SMALL_STATE(4924)] = 172829, - [SMALL_STATE(4925)] = 172854, - [SMALL_STATE(4926)] = 172879, - [SMALL_STATE(4927)] = 172900, - [SMALL_STATE(4928)] = 172921, - [SMALL_STATE(4929)] = 172942, - [SMALL_STATE(4930)] = 172963, - [SMALL_STATE(4931)] = 172980, - [SMALL_STATE(4932)] = 173001, - [SMALL_STATE(4933)] = 173022, - [SMALL_STATE(4934)] = 173043, - [SMALL_STATE(4935)] = 173060, - [SMALL_STATE(4936)] = 173081, - [SMALL_STATE(4937)] = 173098, - [SMALL_STATE(4938)] = 173123, - [SMALL_STATE(4939)] = 173144, - [SMALL_STATE(4940)] = 173169, - [SMALL_STATE(4941)] = 173190, - [SMALL_STATE(4942)] = 173211, - [SMALL_STATE(4943)] = 173232, - [SMALL_STATE(4944)] = 173249, - [SMALL_STATE(4945)] = 173270, - [SMALL_STATE(4946)] = 173295, - [SMALL_STATE(4947)] = 173312, - [SMALL_STATE(4948)] = 173335, - [SMALL_STATE(4949)] = 173352, - [SMALL_STATE(4950)] = 173377, - [SMALL_STATE(4951)] = 173394, - [SMALL_STATE(4952)] = 173415, - [SMALL_STATE(4953)] = 173440, - [SMALL_STATE(4954)] = 173461, - [SMALL_STATE(4955)] = 173482, - [SMALL_STATE(4956)] = 173505, - [SMALL_STATE(4957)] = 173526, - [SMALL_STATE(4958)] = 173551, - [SMALL_STATE(4959)] = 173574, - [SMALL_STATE(4960)] = 173599, - [SMALL_STATE(4961)] = 173620, - [SMALL_STATE(4962)] = 173645, - [SMALL_STATE(4963)] = 173666, - [SMALL_STATE(4964)] = 173691, - [SMALL_STATE(4965)] = 173708, - [SMALL_STATE(4966)] = 173725, - [SMALL_STATE(4967)] = 173746, - [SMALL_STATE(4968)] = 173771, - [SMALL_STATE(4969)] = 173796, - [SMALL_STATE(4970)] = 173817, - [SMALL_STATE(4971)] = 173838, - [SMALL_STATE(4972)] = 173863, - [SMALL_STATE(4973)] = 173886, - [SMALL_STATE(4974)] = 173911, - [SMALL_STATE(4975)] = 173932, - [SMALL_STATE(4976)] = 173953, - [SMALL_STATE(4977)] = 173974, - [SMALL_STATE(4978)] = 173991, - [SMALL_STATE(4979)] = 174008, - [SMALL_STATE(4980)] = 174025, - [SMALL_STATE(4981)] = 174042, - [SMALL_STATE(4982)] = 174063, - [SMALL_STATE(4983)] = 174088, - [SMALL_STATE(4984)] = 174109, - [SMALL_STATE(4985)] = 174134, - [SMALL_STATE(4986)] = 174151, - [SMALL_STATE(4987)] = 174172, - [SMALL_STATE(4988)] = 174189, - [SMALL_STATE(4989)] = 174210, - [SMALL_STATE(4990)] = 174227, - [SMALL_STATE(4991)] = 174248, - [SMALL_STATE(4992)] = 174273, - [SMALL_STATE(4993)] = 174298, - [SMALL_STATE(4994)] = 174315, - [SMALL_STATE(4995)] = 174340, - [SMALL_STATE(4996)] = 174357, - [SMALL_STATE(4997)] = 174374, - [SMALL_STATE(4998)] = 174395, - [SMALL_STATE(4999)] = 174420, - [SMALL_STATE(5000)] = 174441, - [SMALL_STATE(5001)] = 174466, - [SMALL_STATE(5002)] = 174487, - [SMALL_STATE(5003)] = 174512, - [SMALL_STATE(5004)] = 174537, - [SMALL_STATE(5005)] = 174562, - [SMALL_STATE(5006)] = 174583, - [SMALL_STATE(5007)] = 174604, - [SMALL_STATE(5008)] = 174629, - [SMALL_STATE(5009)] = 174650, - [SMALL_STATE(5010)] = 174671, - [SMALL_STATE(5011)] = 174692, - [SMALL_STATE(5012)] = 174713, - [SMALL_STATE(5013)] = 174730, - [SMALL_STATE(5014)] = 174755, - [SMALL_STATE(5015)] = 174780, - [SMALL_STATE(5016)] = 174805, - [SMALL_STATE(5017)] = 174822, - [SMALL_STATE(5018)] = 174847, - [SMALL_STATE(5019)] = 174868, - [SMALL_STATE(5020)] = 174891, - [SMALL_STATE(5021)] = 174912, - [SMALL_STATE(5022)] = 174933, - [SMALL_STATE(5023)] = 174954, - [SMALL_STATE(5024)] = 174979, - [SMALL_STATE(5025)] = 174996, - [SMALL_STATE(5026)] = 175017, - [SMALL_STATE(5027)] = 175042, - [SMALL_STATE(5028)] = 175067, - [SMALL_STATE(5029)] = 175092, - [SMALL_STATE(5030)] = 175113, - [SMALL_STATE(5031)] = 175130, - [SMALL_STATE(5032)] = 175147, - [SMALL_STATE(5033)] = 175168, - [SMALL_STATE(5034)] = 175189, - [SMALL_STATE(5035)] = 175214, - [SMALL_STATE(5036)] = 175235, - [SMALL_STATE(5037)] = 175252, - [SMALL_STATE(5038)] = 175273, - [SMALL_STATE(5039)] = 175290, - [SMALL_STATE(5040)] = 175315, - [SMALL_STATE(5041)] = 175336, - [SMALL_STATE(5042)] = 175357, - [SMALL_STATE(5043)] = 175378, - [SMALL_STATE(5044)] = 175395, - [SMALL_STATE(5045)] = 175416, - [SMALL_STATE(5046)] = 175433, - [SMALL_STATE(5047)] = 175450, - [SMALL_STATE(5048)] = 175471, - [SMALL_STATE(5049)] = 175492, - [SMALL_STATE(5050)] = 175517, - [SMALL_STATE(5051)] = 175534, - [SMALL_STATE(5052)] = 175555, - [SMALL_STATE(5053)] = 175576, - [SMALL_STATE(5054)] = 175601, - [SMALL_STATE(5055)] = 175622, - [SMALL_STATE(5056)] = 175639, - [SMALL_STATE(5057)] = 175658, - [SMALL_STATE(5058)] = 175679, - [SMALL_STATE(5059)] = 175700, - [SMALL_STATE(5060)] = 175721, - [SMALL_STATE(5061)] = 175746, - [SMALL_STATE(5062)] = 175767, - [SMALL_STATE(5063)] = 175788, - [SMALL_STATE(5064)] = 175805, - [SMALL_STATE(5065)] = 175826, - [SMALL_STATE(5066)] = 175849, - [SMALL_STATE(5067)] = 175870, - [SMALL_STATE(5068)] = 175887, - [SMALL_STATE(5069)] = 175908, - [SMALL_STATE(5070)] = 175925, - [SMALL_STATE(5071)] = 175946, - [SMALL_STATE(5072)] = 175967, - [SMALL_STATE(5073)] = 175992, - [SMALL_STATE(5074)] = 176013, - [SMALL_STATE(5075)] = 176030, - [SMALL_STATE(5076)] = 176053, - [SMALL_STATE(5077)] = 176070, - [SMALL_STATE(5078)] = 176091, - [SMALL_STATE(5079)] = 176116, - [SMALL_STATE(5080)] = 176137, - [SMALL_STATE(5081)] = 176158, - [SMALL_STATE(5082)] = 176179, - [SMALL_STATE(5083)] = 176204, - [SMALL_STATE(5084)] = 176225, - [SMALL_STATE(5085)] = 176250, - [SMALL_STATE(5086)] = 176271, - [SMALL_STATE(5087)] = 176292, - [SMALL_STATE(5088)] = 176315, - [SMALL_STATE(5089)] = 176332, - [SMALL_STATE(5090)] = 176355, - [SMALL_STATE(5091)] = 176372, - [SMALL_STATE(5092)] = 176393, - [SMALL_STATE(5093)] = 176414, - [SMALL_STATE(5094)] = 176439, - [SMALL_STATE(5095)] = 176456, - [SMALL_STATE(5096)] = 176477, - [SMALL_STATE(5097)] = 176494, - [SMALL_STATE(5098)] = 176515, - [SMALL_STATE(5099)] = 176536, - [SMALL_STATE(5100)] = 176553, - [SMALL_STATE(5101)] = 176570, - [SMALL_STATE(5102)] = 176587, - [SMALL_STATE(5103)] = 176608, - [SMALL_STATE(5104)] = 176629, - [SMALL_STATE(5105)] = 176650, - [SMALL_STATE(5106)] = 176671, - [SMALL_STATE(5107)] = 176692, - [SMALL_STATE(5108)] = 176709, - [SMALL_STATE(5109)] = 176730, - [SMALL_STATE(5110)] = 176755, - [SMALL_STATE(5111)] = 176772, - [SMALL_STATE(5112)] = 176789, - [SMALL_STATE(5113)] = 176810, - [SMALL_STATE(5114)] = 176827, - [SMALL_STATE(5115)] = 176844, - [SMALL_STATE(5116)] = 176865, - [SMALL_STATE(5117)] = 176882, - [SMALL_STATE(5118)] = 176899, - [SMALL_STATE(5119)] = 176922, - [SMALL_STATE(5120)] = 176943, - [SMALL_STATE(5121)] = 176960, - [SMALL_STATE(5122)] = 176981, - [SMALL_STATE(5123)] = 177002, - [SMALL_STATE(5124)] = 177025, - [SMALL_STATE(5125)] = 177046, - [SMALL_STATE(5126)] = 177067, - [SMALL_STATE(5127)] = 177088, - [SMALL_STATE(5128)] = 177113, - [SMALL_STATE(5129)] = 177130, - [SMALL_STATE(5130)] = 177151, - [SMALL_STATE(5131)] = 177172, - [SMALL_STATE(5132)] = 177189, - [SMALL_STATE(5133)] = 177212, - [SMALL_STATE(5134)] = 177229, - [SMALL_STATE(5135)] = 177254, - [SMALL_STATE(5136)] = 177275, - [SMALL_STATE(5137)] = 177298, - [SMALL_STATE(5138)] = 177315, - [SMALL_STATE(5139)] = 177332, - [SMALL_STATE(5140)] = 177357, - [SMALL_STATE(5141)] = 177374, - [SMALL_STATE(5142)] = 177391, - [SMALL_STATE(5143)] = 177412, - [SMALL_STATE(5144)] = 177433, - [SMALL_STATE(5145)] = 177454, - [SMALL_STATE(5146)] = 177479, - [SMALL_STATE(5147)] = 177504, - [SMALL_STATE(5148)] = 177521, - [SMALL_STATE(5149)] = 177546, - [SMALL_STATE(5150)] = 177563, - [SMALL_STATE(5151)] = 177580, - [SMALL_STATE(5152)] = 177605, - [SMALL_STATE(5153)] = 177630, - [SMALL_STATE(5154)] = 177647, - [SMALL_STATE(5155)] = 177672, - [SMALL_STATE(5156)] = 177689, - [SMALL_STATE(5157)] = 177706, - [SMALL_STATE(5158)] = 177723, - [SMALL_STATE(5159)] = 177740, - [SMALL_STATE(5160)] = 177757, - [SMALL_STATE(5161)] = 177780, - [SMALL_STATE(5162)] = 177797, - [SMALL_STATE(5163)] = 177822, - [SMALL_STATE(5164)] = 177847, - [SMALL_STATE(5165)] = 177872, - [SMALL_STATE(5166)] = 177893, - [SMALL_STATE(5167)] = 177914, - [SMALL_STATE(5168)] = 177939, - [SMALL_STATE(5169)] = 177964, - [SMALL_STATE(5170)] = 177981, - [SMALL_STATE(5171)] = 177998, - [SMALL_STATE(5172)] = 178023, - [SMALL_STATE(5173)] = 178040, - [SMALL_STATE(5174)] = 178057, - [SMALL_STATE(5175)] = 178078, - [SMALL_STATE(5176)] = 178103, - [SMALL_STATE(5177)] = 178124, - [SMALL_STATE(5178)] = 178149, - [SMALL_STATE(5179)] = 178174, - [SMALL_STATE(5180)] = 178191, - [SMALL_STATE(5181)] = 178212, - [SMALL_STATE(5182)] = 178231, - [SMALL_STATE(5183)] = 178256, - [SMALL_STATE(5184)] = 178281, - [SMALL_STATE(5185)] = 178302, - [SMALL_STATE(5186)] = 178319, - [SMALL_STATE(5187)] = 178338, - [SMALL_STATE(5188)] = 178357, - [SMALL_STATE(5189)] = 178378, - [SMALL_STATE(5190)] = 178397, - [SMALL_STATE(5191)] = 178414, - [SMALL_STATE(5192)] = 178431, - [SMALL_STATE(5193)] = 178448, - [SMALL_STATE(5194)] = 178469, - [SMALL_STATE(5195)] = 178490, - [SMALL_STATE(5196)] = 178511, - [SMALL_STATE(5197)] = 178528, - [SMALL_STATE(5198)] = 178549, - [SMALL_STATE(5199)] = 178570, - [SMALL_STATE(5200)] = 178591, - [SMALL_STATE(5201)] = 178616, - [SMALL_STATE(5202)] = 178637, - [SMALL_STATE(5203)] = 178654, - [SMALL_STATE(5204)] = 178679, - [SMALL_STATE(5205)] = 178696, - [SMALL_STATE(5206)] = 178717, - [SMALL_STATE(5207)] = 178734, - [SMALL_STATE(5208)] = 178759, - [SMALL_STATE(5209)] = 178776, - [SMALL_STATE(5210)] = 178801, - [SMALL_STATE(5211)] = 178822, - [SMALL_STATE(5212)] = 178843, - [SMALL_STATE(5213)] = 178860, - [SMALL_STATE(5214)] = 178877, - [SMALL_STATE(5215)] = 178898, - [SMALL_STATE(5216)] = 178919, - [SMALL_STATE(5217)] = 178940, - [SMALL_STATE(5218)] = 178963, - [SMALL_STATE(5219)] = 178988, - [SMALL_STATE(5220)] = 179009, - [SMALL_STATE(5221)] = 179034, - [SMALL_STATE(5222)] = 179055, - [SMALL_STATE(5223)] = 179076, - [SMALL_STATE(5224)] = 179101, - [SMALL_STATE(5225)] = 179126, - [SMALL_STATE(5226)] = 179147, - [SMALL_STATE(5227)] = 179164, - [SMALL_STATE(5228)] = 179189, - [SMALL_STATE(5229)] = 179206, - [SMALL_STATE(5230)] = 179231, - [SMALL_STATE(5231)] = 179248, - [SMALL_STATE(5232)] = 179265, - [SMALL_STATE(5233)] = 179286, - [SMALL_STATE(5234)] = 179309, - [SMALL_STATE(5235)] = 179326, - [SMALL_STATE(5236)] = 179351, - [SMALL_STATE(5237)] = 179376, - [SMALL_STATE(5238)] = 179393, - [SMALL_STATE(5239)] = 179418, - [SMALL_STATE(5240)] = 179439, - [SMALL_STATE(5241)] = 179464, - [SMALL_STATE(5242)] = 179485, - [SMALL_STATE(5243)] = 179502, - [SMALL_STATE(5244)] = 179523, - [SMALL_STATE(5245)] = 179548, - [SMALL_STATE(5246)] = 179565, - [SMALL_STATE(5247)] = 179582, - [SMALL_STATE(5248)] = 179603, - [SMALL_STATE(5249)] = 179628, - [SMALL_STATE(5250)] = 179645, - [SMALL_STATE(5251)] = 179666, - [SMALL_STATE(5252)] = 179683, - [SMALL_STATE(5253)] = 179704, - [SMALL_STATE(5254)] = 179725, - [SMALL_STATE(5255)] = 179746, - [SMALL_STATE(5256)] = 179771, - [SMALL_STATE(5257)] = 179788, - [SMALL_STATE(5258)] = 179813, - [SMALL_STATE(5259)] = 179830, - [SMALL_STATE(5260)] = 179853, - [SMALL_STATE(5261)] = 179878, - [SMALL_STATE(5262)] = 179899, - [SMALL_STATE(5263)] = 179916, - [SMALL_STATE(5264)] = 179937, - [SMALL_STATE(5265)] = 179958, - [SMALL_STATE(5266)] = 179975, - [SMALL_STATE(5267)] = 179992, - [SMALL_STATE(5268)] = 180013, - [SMALL_STATE(5269)] = 180030, - [SMALL_STATE(5270)] = 180051, - [SMALL_STATE(5271)] = 180068, - [SMALL_STATE(5272)] = 180093, - [SMALL_STATE(5273)] = 180110, - [SMALL_STATE(5274)] = 180133, - [SMALL_STATE(5275)] = 180150, - [SMALL_STATE(5276)] = 180171, - [SMALL_STATE(5277)] = 180188, - [SMALL_STATE(5278)] = 180205, - [SMALL_STATE(5279)] = 180222, - [SMALL_STATE(5280)] = 180247, - [SMALL_STATE(5281)] = 180268, - [SMALL_STATE(5282)] = 180289, - [SMALL_STATE(5283)] = 180310, - [SMALL_STATE(5284)] = 180335, - [SMALL_STATE(5285)] = 180360, - [SMALL_STATE(5286)] = 180377, - [SMALL_STATE(5287)] = 180394, - [SMALL_STATE(5288)] = 180411, - [SMALL_STATE(5289)] = 180428, - [SMALL_STATE(5290)] = 180445, - [SMALL_STATE(5291)] = 180470, - [SMALL_STATE(5292)] = 180487, - [SMALL_STATE(5293)] = 180512, - [SMALL_STATE(5294)] = 180529, - [SMALL_STATE(5295)] = 180550, - [SMALL_STATE(5296)] = 180567, - [SMALL_STATE(5297)] = 180592, - [SMALL_STATE(5298)] = 180609, - [SMALL_STATE(5299)] = 180634, - [SMALL_STATE(5300)] = 180651, - [SMALL_STATE(5301)] = 180668, - [SMALL_STATE(5302)] = 180693, - [SMALL_STATE(5303)] = 180710, - [SMALL_STATE(5304)] = 180731, - [SMALL_STATE(5305)] = 180752, - [SMALL_STATE(5306)] = 180773, - [SMALL_STATE(5307)] = 180798, - [SMALL_STATE(5308)] = 180819, - [SMALL_STATE(5309)] = 180836, - [SMALL_STATE(5310)] = 180857, - [SMALL_STATE(5311)] = 180874, - [SMALL_STATE(5312)] = 180895, - [SMALL_STATE(5313)] = 180916, - [SMALL_STATE(5314)] = 180933, - [SMALL_STATE(5315)] = 180954, - [SMALL_STATE(5316)] = 180971, - [SMALL_STATE(5317)] = 180988, - [SMALL_STATE(5318)] = 181005, - [SMALL_STATE(5319)] = 181030, - [SMALL_STATE(5320)] = 181051, - [SMALL_STATE(5321)] = 181068, - [SMALL_STATE(5322)] = 181089, - [SMALL_STATE(5323)] = 181114, - [SMALL_STATE(5324)] = 181131, - [SMALL_STATE(5325)] = 181156, - [SMALL_STATE(5326)] = 181177, - [SMALL_STATE(5327)] = 181198, - [SMALL_STATE(5328)] = 181215, - [SMALL_STATE(5329)] = 181240, - [SMALL_STATE(5330)] = 181257, - [SMALL_STATE(5331)] = 181278, - [SMALL_STATE(5332)] = 181295, - [SMALL_STATE(5333)] = 181316, - [SMALL_STATE(5334)] = 181337, - [SMALL_STATE(5335)] = 181358, - [SMALL_STATE(5336)] = 181375, - [SMALL_STATE(5337)] = 181396, - [SMALL_STATE(5338)] = 181413, - [SMALL_STATE(5339)] = 181430, - [SMALL_STATE(5340)] = 181455, - [SMALL_STATE(5341)] = 181472, - [SMALL_STATE(5342)] = 181489, - [SMALL_STATE(5343)] = 181510, - [SMALL_STATE(5344)] = 181527, - [SMALL_STATE(5345)] = 181552, - [SMALL_STATE(5346)] = 181577, - [SMALL_STATE(5347)] = 181602, - [SMALL_STATE(5348)] = 181619, - [SMALL_STATE(5349)] = 181642, - [SMALL_STATE(5350)] = 181659, - [SMALL_STATE(5351)] = 181684, - [SMALL_STATE(5352)] = 181701, - [SMALL_STATE(5353)] = 181726, - [SMALL_STATE(5354)] = 181743, - [SMALL_STATE(5355)] = 181760, - [SMALL_STATE(5356)] = 181777, - [SMALL_STATE(5357)] = 181802, - [SMALL_STATE(5358)] = 181827, - [SMALL_STATE(5359)] = 181844, - [SMALL_STATE(5360)] = 181869, - [SMALL_STATE(5361)] = 181886, - [SMALL_STATE(5362)] = 181907, - [SMALL_STATE(5363)] = 181924, - [SMALL_STATE(5364)] = 181941, - [SMALL_STATE(5365)] = 181958, - [SMALL_STATE(5366)] = 181983, - [SMALL_STATE(5367)] = 182006, - [SMALL_STATE(5368)] = 182031, - [SMALL_STATE(5369)] = 182048, - [SMALL_STATE(5370)] = 182073, - [SMALL_STATE(5371)] = 182090, - [SMALL_STATE(5372)] = 182113, - [SMALL_STATE(5373)] = 182134, - [SMALL_STATE(5374)] = 182159, - [SMALL_STATE(5375)] = 182184, - [SMALL_STATE(5376)] = 182201, - [SMALL_STATE(5377)] = 182226, - [SMALL_STATE(5378)] = 182247, - [SMALL_STATE(5379)] = 182264, - [SMALL_STATE(5380)] = 182287, - [SMALL_STATE(5381)] = 182304, - [SMALL_STATE(5382)] = 182325, - [SMALL_STATE(5383)] = 182350, - [SMALL_STATE(5384)] = 182371, - [SMALL_STATE(5385)] = 182392, - [SMALL_STATE(5386)] = 182409, - [SMALL_STATE(5387)] = 182434, - [SMALL_STATE(5388)] = 182451, - [SMALL_STATE(5389)] = 182476, - [SMALL_STATE(5390)] = 182499, - [SMALL_STATE(5391)] = 182524, - [SMALL_STATE(5392)] = 182541, - [SMALL_STATE(5393)] = 182566, - [SMALL_STATE(5394)] = 182591, - [SMALL_STATE(5395)] = 182616, - [SMALL_STATE(5396)] = 182641, - [SMALL_STATE(5397)] = 182658, - [SMALL_STATE(5398)] = 182683, - [SMALL_STATE(5399)] = 182708, - [SMALL_STATE(5400)] = 182733, - [SMALL_STATE(5401)] = 182758, - [SMALL_STATE(5402)] = 182775, - [SMALL_STATE(5403)] = 182798, - [SMALL_STATE(5404)] = 182823, - [SMALL_STATE(5405)] = 182840, - [SMALL_STATE(5406)] = 182857, - [SMALL_STATE(5407)] = 182882, - [SMALL_STATE(5408)] = 182899, - [SMALL_STATE(5409)] = 182922, - [SMALL_STATE(5410)] = 182943, - [SMALL_STATE(5411)] = 182965, - [SMALL_STATE(5412)] = 182985, - [SMALL_STATE(5413)] = 183007, - [SMALL_STATE(5414)] = 183027, - [SMALL_STATE(5415)] = 183049, - [SMALL_STATE(5416)] = 183071, - [SMALL_STATE(5417)] = 183093, - [SMALL_STATE(5418)] = 183115, - [SMALL_STATE(5419)] = 183135, - [SMALL_STATE(5420)] = 183155, - [SMALL_STATE(5421)] = 183175, - [SMALL_STATE(5422)] = 183197, - [SMALL_STATE(5423)] = 183219, - [SMALL_STATE(5424)] = 183241, - [SMALL_STATE(5425)] = 183259, - [SMALL_STATE(5426)] = 183281, - [SMALL_STATE(5427)] = 183303, - [SMALL_STATE(5428)] = 183319, - [SMALL_STATE(5429)] = 183341, - [SMALL_STATE(5430)] = 183361, - [SMALL_STATE(5431)] = 183381, - [SMALL_STATE(5432)] = 183403, - [SMALL_STATE(5433)] = 183423, - [SMALL_STATE(5434)] = 183445, - [SMALL_STATE(5435)] = 183465, - [SMALL_STATE(5436)] = 183487, - [SMALL_STATE(5437)] = 183507, - [SMALL_STATE(5438)] = 183527, - [SMALL_STATE(5439)] = 183549, - [SMALL_STATE(5440)] = 183569, - [SMALL_STATE(5441)] = 183589, - [SMALL_STATE(5442)] = 183609, - [SMALL_STATE(5443)] = 183629, - [SMALL_STATE(5444)] = 183649, - [SMALL_STATE(5445)] = 183669, - [SMALL_STATE(5446)] = 183689, - [SMALL_STATE(5447)] = 183709, - [SMALL_STATE(5448)] = 183729, - [SMALL_STATE(5449)] = 183749, - [SMALL_STATE(5450)] = 183769, - [SMALL_STATE(5451)] = 183791, - [SMALL_STATE(5452)] = 183811, - [SMALL_STATE(5453)] = 183831, - [SMALL_STATE(5454)] = 183851, - [SMALL_STATE(5455)] = 183873, - [SMALL_STATE(5456)] = 183893, - [SMALL_STATE(5457)] = 183913, - [SMALL_STATE(5458)] = 183935, - [SMALL_STATE(5459)] = 183957, - [SMALL_STATE(5460)] = 183979, - [SMALL_STATE(5461)] = 184001, - [SMALL_STATE(5462)] = 184023, - [SMALL_STATE(5463)] = 184039, - [SMALL_STATE(5464)] = 184061, - [SMALL_STATE(5465)] = 184083, - [SMALL_STATE(5466)] = 184105, - [SMALL_STATE(5467)] = 184127, - [SMALL_STATE(5468)] = 184149, - [SMALL_STATE(5469)] = 184169, - [SMALL_STATE(5470)] = 184191, - [SMALL_STATE(5471)] = 184213, - [SMALL_STATE(5472)] = 184231, - [SMALL_STATE(5473)] = 184253, - [SMALL_STATE(5474)] = 184275, - [SMALL_STATE(5475)] = 184295, - [SMALL_STATE(5476)] = 184315, - [SMALL_STATE(5477)] = 184335, - [SMALL_STATE(5478)] = 184357, - [SMALL_STATE(5479)] = 184377, - [SMALL_STATE(5480)] = 184395, - [SMALL_STATE(5481)] = 184413, - [SMALL_STATE(5482)] = 184429, - [SMALL_STATE(5483)] = 184449, - [SMALL_STATE(5484)] = 184469, - [SMALL_STATE(5485)] = 184489, - [SMALL_STATE(5486)] = 184509, - [SMALL_STATE(5487)] = 184529, - [SMALL_STATE(5488)] = 184549, - [SMALL_STATE(5489)] = 184569, - [SMALL_STATE(5490)] = 184589, - [SMALL_STATE(5491)] = 184609, - [SMALL_STATE(5492)] = 184629, - [SMALL_STATE(5493)] = 184651, - [SMALL_STATE(5494)] = 184671, - [SMALL_STATE(5495)] = 184691, - [SMALL_STATE(5496)] = 184711, - [SMALL_STATE(5497)] = 184731, - [SMALL_STATE(5498)] = 184751, - [SMALL_STATE(5499)] = 184773, - [SMALL_STATE(5500)] = 184793, - [SMALL_STATE(5501)] = 184813, - [SMALL_STATE(5502)] = 184833, - [SMALL_STATE(5503)] = 184855, - [SMALL_STATE(5504)] = 184875, - [SMALL_STATE(5505)] = 184895, - [SMALL_STATE(5506)] = 184915, - [SMALL_STATE(5507)] = 184935, - [SMALL_STATE(5508)] = 184951, - [SMALL_STATE(5509)] = 184971, - [SMALL_STATE(5510)] = 184993, - [SMALL_STATE(5511)] = 185015, - [SMALL_STATE(5512)] = 185037, - [SMALL_STATE(5513)] = 185059, - [SMALL_STATE(5514)] = 185081, - [SMALL_STATE(5515)] = 185103, - [SMALL_STATE(5516)] = 185125, - [SMALL_STATE(5517)] = 185143, - [SMALL_STATE(5518)] = 185163, - [SMALL_STATE(5519)] = 185183, - [SMALL_STATE(5520)] = 185203, - [SMALL_STATE(5521)] = 185223, - [SMALL_STATE(5522)] = 185243, - [SMALL_STATE(5523)] = 185263, - [SMALL_STATE(5524)] = 185283, - [SMALL_STATE(5525)] = 185303, - [SMALL_STATE(5526)] = 185325, - [SMALL_STATE(5527)] = 185345, - [SMALL_STATE(5528)] = 185367, - [SMALL_STATE(5529)] = 185389, - [SMALL_STATE(5530)] = 185409, - [SMALL_STATE(5531)] = 185429, - [SMALL_STATE(5532)] = 185451, - [SMALL_STATE(5533)] = 185471, - [SMALL_STATE(5534)] = 185491, - [SMALL_STATE(5535)] = 185513, - [SMALL_STATE(5536)] = 185535, - [SMALL_STATE(5537)] = 185557, - [SMALL_STATE(5538)] = 185575, - [SMALL_STATE(5539)] = 185595, - [SMALL_STATE(5540)] = 185615, - [SMALL_STATE(5541)] = 185635, - [SMALL_STATE(5542)] = 185655, - [SMALL_STATE(5543)] = 185675, - [SMALL_STATE(5544)] = 185695, - [SMALL_STATE(5545)] = 185717, - [SMALL_STATE(5546)] = 185737, - [SMALL_STATE(5547)] = 185757, - [SMALL_STATE(5548)] = 185777, - [SMALL_STATE(5549)] = 185799, - [SMALL_STATE(5550)] = 185819, - [SMALL_STATE(5551)] = 185839, - [SMALL_STATE(5552)] = 185859, - [SMALL_STATE(5553)] = 185879, - [SMALL_STATE(5554)] = 185899, - [SMALL_STATE(5555)] = 185919, - [SMALL_STATE(5556)] = 185939, - [SMALL_STATE(5557)] = 185961, - [SMALL_STATE(5558)] = 185979, - [SMALL_STATE(5559)] = 186001, - [SMALL_STATE(5560)] = 186023, - [SMALL_STATE(5561)] = 186043, - [SMALL_STATE(5562)] = 186063, - [SMALL_STATE(5563)] = 186085, - [SMALL_STATE(5564)] = 186101, - [SMALL_STATE(5565)] = 186121, - [SMALL_STATE(5566)] = 186141, - [SMALL_STATE(5567)] = 186161, - [SMALL_STATE(5568)] = 186181, - [SMALL_STATE(5569)] = 186201, - [SMALL_STATE(5570)] = 186217, - [SMALL_STATE(5571)] = 186237, - [SMALL_STATE(5572)] = 186253, - [SMALL_STATE(5573)] = 186273, - [SMALL_STATE(5574)] = 186295, - [SMALL_STATE(5575)] = 186315, - [SMALL_STATE(5576)] = 186335, - [SMALL_STATE(5577)] = 186355, - [SMALL_STATE(5578)] = 186375, - [SMALL_STATE(5579)] = 186395, - [SMALL_STATE(5580)] = 186417, - [SMALL_STATE(5581)] = 186437, - [SMALL_STATE(5582)] = 186457, - [SMALL_STATE(5583)] = 186477, - [SMALL_STATE(5584)] = 186499, - [SMALL_STATE(5585)] = 186519, - [SMALL_STATE(5586)] = 186539, - [SMALL_STATE(5587)] = 186559, - [SMALL_STATE(5588)] = 186579, - [SMALL_STATE(5589)] = 186599, - [SMALL_STATE(5590)] = 186619, - [SMALL_STATE(5591)] = 186639, - [SMALL_STATE(5592)] = 186659, - [SMALL_STATE(5593)] = 186679, - [SMALL_STATE(5594)] = 186701, - [SMALL_STATE(5595)] = 186723, - [SMALL_STATE(5596)] = 186745, - [SMALL_STATE(5597)] = 186767, - [SMALL_STATE(5598)] = 186787, - [SMALL_STATE(5599)] = 186809, - [SMALL_STATE(5600)] = 186831, - [SMALL_STATE(5601)] = 186851, - [SMALL_STATE(5602)] = 186871, - [SMALL_STATE(5603)] = 186893, - [SMALL_STATE(5604)] = 186911, - [SMALL_STATE(5605)] = 186931, - [SMALL_STATE(5606)] = 186951, - [SMALL_STATE(5607)] = 186973, - [SMALL_STATE(5608)] = 186995, - [SMALL_STATE(5609)] = 187011, - [SMALL_STATE(5610)] = 187031, - [SMALL_STATE(5611)] = 187053, - [SMALL_STATE(5612)] = 187075, - [SMALL_STATE(5613)] = 187095, - [SMALL_STATE(5614)] = 187117, - [SMALL_STATE(5615)] = 187135, - [SMALL_STATE(5616)] = 187155, - [SMALL_STATE(5617)] = 187177, - [SMALL_STATE(5618)] = 187199, - [SMALL_STATE(5619)] = 187219, - [SMALL_STATE(5620)] = 187241, - [SMALL_STATE(5621)] = 187263, - [SMALL_STATE(5622)] = 187281, - [SMALL_STATE(5623)] = 187301, - [SMALL_STATE(5624)] = 187317, - [SMALL_STATE(5625)] = 187337, - [SMALL_STATE(5626)] = 187359, - [SMALL_STATE(5627)] = 187375, - [SMALL_STATE(5628)] = 187395, - [SMALL_STATE(5629)] = 187415, - [SMALL_STATE(5630)] = 187437, - [SMALL_STATE(5631)] = 187457, - [SMALL_STATE(5632)] = 187477, - [SMALL_STATE(5633)] = 187495, - [SMALL_STATE(5634)] = 187515, - [SMALL_STATE(5635)] = 187537, - [SMALL_STATE(5636)] = 187559, - [SMALL_STATE(5637)] = 187581, - [SMALL_STATE(5638)] = 187601, - [SMALL_STATE(5639)] = 187623, - [SMALL_STATE(5640)] = 187643, - [SMALL_STATE(5641)] = 187665, - [SMALL_STATE(5642)] = 187687, - [SMALL_STATE(5643)] = 187707, - [SMALL_STATE(5644)] = 187727, - [SMALL_STATE(5645)] = 187746, - [SMALL_STATE(5646)] = 187761, - [SMALL_STATE(5647)] = 187780, - [SMALL_STATE(5648)] = 187797, - [SMALL_STATE(5649)] = 187814, - [SMALL_STATE(5650)] = 187833, - [SMALL_STATE(5651)] = 187852, - [SMALL_STATE(5652)] = 187871, - [SMALL_STATE(5653)] = 187890, - [SMALL_STATE(5654)] = 187905, - [SMALL_STATE(5655)] = 187922, - [SMALL_STATE(5656)] = 187941, - [SMALL_STATE(5657)] = 187956, - [SMALL_STATE(5658)] = 187975, - [SMALL_STATE(5659)] = 187992, - [SMALL_STATE(5660)] = 188009, - [SMALL_STATE(5661)] = 188028, - [SMALL_STATE(5662)] = 188045, - [SMALL_STATE(5663)] = 188064, - [SMALL_STATE(5664)] = 188083, - [SMALL_STATE(5665)] = 188102, - [SMALL_STATE(5666)] = 188121, - [SMALL_STATE(5667)] = 188140, - [SMALL_STATE(5668)] = 188157, - [SMALL_STATE(5669)] = 188174, - [SMALL_STATE(5670)] = 188193, - [SMALL_STATE(5671)] = 188212, - [SMALL_STATE(5672)] = 188229, - [SMALL_STATE(5673)] = 188246, - [SMALL_STATE(5674)] = 188265, - [SMALL_STATE(5675)] = 188284, - [SMALL_STATE(5676)] = 188303, - [SMALL_STATE(5677)] = 188322, - [SMALL_STATE(5678)] = 188339, - [SMALL_STATE(5679)] = 188356, - [SMALL_STATE(5680)] = 188371, - [SMALL_STATE(5681)] = 188390, - [SMALL_STATE(5682)] = 188405, - [SMALL_STATE(5683)] = 188424, - [SMALL_STATE(5684)] = 188441, - [SMALL_STATE(5685)] = 188456, - [SMALL_STATE(5686)] = 188475, - [SMALL_STATE(5687)] = 188494, - [SMALL_STATE(5688)] = 188511, - [SMALL_STATE(5689)] = 188528, - [SMALL_STATE(5690)] = 188543, - [SMALL_STATE(5691)] = 188562, - [SMALL_STATE(5692)] = 188579, - [SMALL_STATE(5693)] = 188598, - [SMALL_STATE(5694)] = 188617, - [SMALL_STATE(5695)] = 188636, - [SMALL_STATE(5696)] = 188655, - [SMALL_STATE(5697)] = 188672, - [SMALL_STATE(5698)] = 188689, - [SMALL_STATE(5699)] = 188708, - [SMALL_STATE(5700)] = 188727, - [SMALL_STATE(5701)] = 188746, - [SMALL_STATE(5702)] = 188763, - [SMALL_STATE(5703)] = 188780, - [SMALL_STATE(5704)] = 188797, - [SMALL_STATE(5705)] = 188816, - [SMALL_STATE(5706)] = 188833, - [SMALL_STATE(5707)] = 188850, - [SMALL_STATE(5708)] = 188867, - [SMALL_STATE(5709)] = 188882, - [SMALL_STATE(5710)] = 188899, - [SMALL_STATE(5711)] = 188918, - [SMALL_STATE(5712)] = 188937, - [SMALL_STATE(5713)] = 188956, - [SMALL_STATE(5714)] = 188971, - [SMALL_STATE(5715)] = 188990, - [SMALL_STATE(5716)] = 189007, - [SMALL_STATE(5717)] = 189026, - [SMALL_STATE(5718)] = 189043, - [SMALL_STATE(5719)] = 189058, - [SMALL_STATE(5720)] = 189077, - [SMALL_STATE(5721)] = 189096, - [SMALL_STATE(5722)] = 189115, - [SMALL_STATE(5723)] = 189134, - [SMALL_STATE(5724)] = 189151, - [SMALL_STATE(5725)] = 189170, - [SMALL_STATE(5726)] = 189187, - [SMALL_STATE(5727)] = 189206, - [SMALL_STATE(5728)] = 189223, - [SMALL_STATE(5729)] = 189242, - [SMALL_STATE(5730)] = 189261, - [SMALL_STATE(5731)] = 189280, - [SMALL_STATE(5732)] = 189295, - [SMALL_STATE(5733)] = 189314, - [SMALL_STATE(5734)] = 189333, - [SMALL_STATE(5735)] = 189348, - [SMALL_STATE(5736)] = 189365, - [SMALL_STATE(5737)] = 189384, - [SMALL_STATE(5738)] = 189399, - [SMALL_STATE(5739)] = 189418, - [SMALL_STATE(5740)] = 189435, - [SMALL_STATE(5741)] = 189452, - [SMALL_STATE(5742)] = 189471, - [SMALL_STATE(5743)] = 189490, - [SMALL_STATE(5744)] = 189509, - [SMALL_STATE(5745)] = 189526, - [SMALL_STATE(5746)] = 189541, - [SMALL_STATE(5747)] = 189560, - [SMALL_STATE(5748)] = 189579, - [SMALL_STATE(5749)] = 189598, - [SMALL_STATE(5750)] = 189613, - [SMALL_STATE(5751)] = 189628, - [SMALL_STATE(5752)] = 189643, - [SMALL_STATE(5753)] = 189658, - [SMALL_STATE(5754)] = 189677, - [SMALL_STATE(5755)] = 189696, - [SMALL_STATE(5756)] = 189715, - [SMALL_STATE(5757)] = 189730, - [SMALL_STATE(5758)] = 189745, - [SMALL_STATE(5759)] = 189764, - [SMALL_STATE(5760)] = 189783, - [SMALL_STATE(5761)] = 189798, - [SMALL_STATE(5762)] = 189817, - [SMALL_STATE(5763)] = 189832, - [SMALL_STATE(5764)] = 189851, - [SMALL_STATE(5765)] = 189868, - [SMALL_STATE(5766)] = 189887, - [SMALL_STATE(5767)] = 189902, - [SMALL_STATE(5768)] = 189921, - [SMALL_STATE(5769)] = 189936, - [SMALL_STATE(5770)] = 189955, - [SMALL_STATE(5771)] = 189970, - [SMALL_STATE(5772)] = 189989, - [SMALL_STATE(5773)] = 190004, - [SMALL_STATE(5774)] = 190019, - [SMALL_STATE(5775)] = 190038, - [SMALL_STATE(5776)] = 190053, - [SMALL_STATE(5777)] = 190072, - [SMALL_STATE(5778)] = 190087, - [SMALL_STATE(5779)] = 190102, - [SMALL_STATE(5780)] = 190117, - [SMALL_STATE(5781)] = 190132, - [SMALL_STATE(5782)] = 190147, - [SMALL_STATE(5783)] = 190162, - [SMALL_STATE(5784)] = 190177, - [SMALL_STATE(5785)] = 190192, - [SMALL_STATE(5786)] = 190211, - [SMALL_STATE(5787)] = 190226, - [SMALL_STATE(5788)] = 190241, - [SMALL_STATE(5789)] = 190256, - [SMALL_STATE(5790)] = 190271, - [SMALL_STATE(5791)] = 190286, - [SMALL_STATE(5792)] = 190301, - [SMALL_STATE(5793)] = 190320, - [SMALL_STATE(5794)] = 190335, - [SMALL_STATE(5795)] = 190350, - [SMALL_STATE(5796)] = 190367, - [SMALL_STATE(5797)] = 190382, - [SMALL_STATE(5798)] = 190401, - [SMALL_STATE(5799)] = 190416, - [SMALL_STATE(5800)] = 190435, - [SMALL_STATE(5801)] = 190450, - [SMALL_STATE(5802)] = 190469, - [SMALL_STATE(5803)] = 190484, - [SMALL_STATE(5804)] = 190503, - [SMALL_STATE(5805)] = 190518, - [SMALL_STATE(5806)] = 190535, - [SMALL_STATE(5807)] = 190550, - [SMALL_STATE(5808)] = 190565, - [SMALL_STATE(5809)] = 190580, - [SMALL_STATE(5810)] = 190595, - [SMALL_STATE(5811)] = 190610, - [SMALL_STATE(5812)] = 190625, - [SMALL_STATE(5813)] = 190640, - [SMALL_STATE(5814)] = 190655, - [SMALL_STATE(5815)] = 190670, - [SMALL_STATE(5816)] = 190685, - [SMALL_STATE(5817)] = 190700, - [SMALL_STATE(5818)] = 190715, - [SMALL_STATE(5819)] = 190730, - [SMALL_STATE(5820)] = 190745, - [SMALL_STATE(5821)] = 190760, - [SMALL_STATE(5822)] = 190775, - [SMALL_STATE(5823)] = 190790, - [SMALL_STATE(5824)] = 190805, - [SMALL_STATE(5825)] = 190820, - [SMALL_STATE(5826)] = 190835, - [SMALL_STATE(5827)] = 190850, - [SMALL_STATE(5828)] = 190865, - [SMALL_STATE(5829)] = 190880, - [SMALL_STATE(5830)] = 190895, - [SMALL_STATE(5831)] = 190914, - [SMALL_STATE(5832)] = 190929, - [SMALL_STATE(5833)] = 190944, - [SMALL_STATE(5834)] = 190959, - [SMALL_STATE(5835)] = 190974, - [SMALL_STATE(5836)] = 190989, - [SMALL_STATE(5837)] = 191004, - [SMALL_STATE(5838)] = 191019, - [SMALL_STATE(5839)] = 191034, - [SMALL_STATE(5840)] = 191049, - [SMALL_STATE(5841)] = 191064, - [SMALL_STATE(5842)] = 191083, - [SMALL_STATE(5843)] = 191102, - [SMALL_STATE(5844)] = 191117, - [SMALL_STATE(5845)] = 191132, - [SMALL_STATE(5846)] = 191147, - [SMALL_STATE(5847)] = 191166, - [SMALL_STATE(5848)] = 191185, - [SMALL_STATE(5849)] = 191200, - [SMALL_STATE(5850)] = 191219, - [SMALL_STATE(5851)] = 191234, - [SMALL_STATE(5852)] = 191249, - [SMALL_STATE(5853)] = 191264, - [SMALL_STATE(5854)] = 191279, - [SMALL_STATE(5855)] = 191294, - [SMALL_STATE(5856)] = 191313, - [SMALL_STATE(5857)] = 191328, - [SMALL_STATE(5858)] = 191347, - [SMALL_STATE(5859)] = 191362, - [SMALL_STATE(5860)] = 191377, - [SMALL_STATE(5861)] = 191392, - [SMALL_STATE(5862)] = 191407, - [SMALL_STATE(5863)] = 191422, - [SMALL_STATE(5864)] = 191437, - [SMALL_STATE(5865)] = 191452, - [SMALL_STATE(5866)] = 191467, - [SMALL_STATE(5867)] = 191482, - [SMALL_STATE(5868)] = 191497, - [SMALL_STATE(5869)] = 191512, - [SMALL_STATE(5870)] = 191527, - [SMALL_STATE(5871)] = 191542, - [SMALL_STATE(5872)] = 191561, - [SMALL_STATE(5873)] = 191576, - [SMALL_STATE(5874)] = 191591, - [SMALL_STATE(5875)] = 191606, - [SMALL_STATE(5876)] = 191621, - [SMALL_STATE(5877)] = 191636, - [SMALL_STATE(5878)] = 191651, - [SMALL_STATE(5879)] = 191666, - [SMALL_STATE(5880)] = 191681, - [SMALL_STATE(5881)] = 191700, - [SMALL_STATE(5882)] = 191719, - [SMALL_STATE(5883)] = 191734, - [SMALL_STATE(5884)] = 191753, - [SMALL_STATE(5885)] = 191768, - [SMALL_STATE(5886)] = 191783, - [SMALL_STATE(5887)] = 191798, - [SMALL_STATE(5888)] = 191813, - [SMALL_STATE(5889)] = 191828, - [SMALL_STATE(5890)] = 191843, - [SMALL_STATE(5891)] = 191858, - [SMALL_STATE(5892)] = 191873, - [SMALL_STATE(5893)] = 191888, - [SMALL_STATE(5894)] = 191903, - [SMALL_STATE(5895)] = 191918, - [SMALL_STATE(5896)] = 191933, - [SMALL_STATE(5897)] = 191952, - [SMALL_STATE(5898)] = 191967, - [SMALL_STATE(5899)] = 191982, - [SMALL_STATE(5900)] = 191997, - [SMALL_STATE(5901)] = 192012, - [SMALL_STATE(5902)] = 192027, - [SMALL_STATE(5903)] = 192042, - [SMALL_STATE(5904)] = 192057, - [SMALL_STATE(5905)] = 192072, - [SMALL_STATE(5906)] = 192087, - [SMALL_STATE(5907)] = 192104, - [SMALL_STATE(5908)] = 192119, - [SMALL_STATE(5909)] = 192134, - [SMALL_STATE(5910)] = 192149, - [SMALL_STATE(5911)] = 192164, - [SMALL_STATE(5912)] = 192179, - [SMALL_STATE(5913)] = 192194, - [SMALL_STATE(5914)] = 192209, - [SMALL_STATE(5915)] = 192224, - [SMALL_STATE(5916)] = 192239, - [SMALL_STATE(5917)] = 192254, - [SMALL_STATE(5918)] = 192269, - [SMALL_STATE(5919)] = 192284, - [SMALL_STATE(5920)] = 192299, - [SMALL_STATE(5921)] = 192314, - [SMALL_STATE(5922)] = 192329, - [SMALL_STATE(5923)] = 192344, - [SMALL_STATE(5924)] = 192359, - [SMALL_STATE(5925)] = 192374, - [SMALL_STATE(5926)] = 192389, - [SMALL_STATE(5927)] = 192404, - [SMALL_STATE(5928)] = 192423, - [SMALL_STATE(5929)] = 192438, - [SMALL_STATE(5930)] = 192453, - [SMALL_STATE(5931)] = 192472, - [SMALL_STATE(5932)] = 192487, - [SMALL_STATE(5933)] = 192502, - [SMALL_STATE(5934)] = 192517, - [SMALL_STATE(5935)] = 192536, - [SMALL_STATE(5936)] = 192555, - [SMALL_STATE(5937)] = 192570, - [SMALL_STATE(5938)] = 192585, - [SMALL_STATE(5939)] = 192600, - [SMALL_STATE(5940)] = 192615, - [SMALL_STATE(5941)] = 192632, - [SMALL_STATE(5942)] = 192651, - [SMALL_STATE(5943)] = 192666, - [SMALL_STATE(5944)] = 192681, - [SMALL_STATE(5945)] = 192700, - [SMALL_STATE(5946)] = 192715, - [SMALL_STATE(5947)] = 192730, - [SMALL_STATE(5948)] = 192745, - [SMALL_STATE(5949)] = 192760, - [SMALL_STATE(5950)] = 192775, - [SMALL_STATE(5951)] = 192790, - [SMALL_STATE(5952)] = 192805, - [SMALL_STATE(5953)] = 192820, - [SMALL_STATE(5954)] = 192835, - [SMALL_STATE(5955)] = 192850, - [SMALL_STATE(5956)] = 192865, - [SMALL_STATE(5957)] = 192882, - [SMALL_STATE(5958)] = 192899, - [SMALL_STATE(5959)] = 192914, - [SMALL_STATE(5960)] = 192931, - [SMALL_STATE(5961)] = 192946, - [SMALL_STATE(5962)] = 192961, - [SMALL_STATE(5963)] = 192980, - [SMALL_STATE(5964)] = 192997, - [SMALL_STATE(5965)] = 193012, - [SMALL_STATE(5966)] = 193027, - [SMALL_STATE(5967)] = 193046, - [SMALL_STATE(5968)] = 193065, - [SMALL_STATE(5969)] = 193080, - [SMALL_STATE(5970)] = 193095, - [SMALL_STATE(5971)] = 193112, - [SMALL_STATE(5972)] = 193127, - [SMALL_STATE(5973)] = 193146, - [SMALL_STATE(5974)] = 193161, - [SMALL_STATE(5975)] = 193180, - [SMALL_STATE(5976)] = 193199, - [SMALL_STATE(5977)] = 193216, - [SMALL_STATE(5978)] = 193235, - [SMALL_STATE(5979)] = 193250, - [SMALL_STATE(5980)] = 193265, - [SMALL_STATE(5981)] = 193280, - [SMALL_STATE(5982)] = 193295, - [SMALL_STATE(5983)] = 193310, - [SMALL_STATE(5984)] = 193325, - [SMALL_STATE(5985)] = 193340, - [SMALL_STATE(5986)] = 193357, - [SMALL_STATE(5987)] = 193374, - [SMALL_STATE(5988)] = 193391, - [SMALL_STATE(5989)] = 193406, - [SMALL_STATE(5990)] = 193423, - [SMALL_STATE(5991)] = 193440, - [SMALL_STATE(5992)] = 193457, - [SMALL_STATE(5993)] = 193474, - [SMALL_STATE(5994)] = 193491, - [SMALL_STATE(5995)] = 193508, - [SMALL_STATE(5996)] = 193525, - [SMALL_STATE(5997)] = 193542, - [SMALL_STATE(5998)] = 193557, - [SMALL_STATE(5999)] = 193572, - [SMALL_STATE(6000)] = 193589, - [SMALL_STATE(6001)] = 193604, - [SMALL_STATE(6002)] = 193619, - [SMALL_STATE(6003)] = 193638, - [SMALL_STATE(6004)] = 193653, - [SMALL_STATE(6005)] = 193668, - [SMALL_STATE(6006)] = 193683, - [SMALL_STATE(6007)] = 193702, - [SMALL_STATE(6008)] = 193717, - [SMALL_STATE(6009)] = 193732, - [SMALL_STATE(6010)] = 193747, - [SMALL_STATE(6011)] = 193762, - [SMALL_STATE(6012)] = 193777, - [SMALL_STATE(6013)] = 193792, - [SMALL_STATE(6014)] = 193807, - [SMALL_STATE(6015)] = 193822, - [SMALL_STATE(6016)] = 193837, - [SMALL_STATE(6017)] = 193856, - [SMALL_STATE(6018)] = 193871, - [SMALL_STATE(6019)] = 193890, - [SMALL_STATE(6020)] = 193909, - [SMALL_STATE(6021)] = 193924, - [SMALL_STATE(6022)] = 193943, - [SMALL_STATE(6023)] = 193962, - [SMALL_STATE(6024)] = 193981, - [SMALL_STATE(6025)] = 193996, - [SMALL_STATE(6026)] = 194015, - [SMALL_STATE(6027)] = 194030, - [SMALL_STATE(6028)] = 194049, - [SMALL_STATE(6029)] = 194064, - [SMALL_STATE(6030)] = 194079, - [SMALL_STATE(6031)] = 194098, - [SMALL_STATE(6032)] = 194113, - [SMALL_STATE(6033)] = 194132, - [SMALL_STATE(6034)] = 194147, - [SMALL_STATE(6035)] = 194162, - [SMALL_STATE(6036)] = 194177, - [SMALL_STATE(6037)] = 194192, - [SMALL_STATE(6038)] = 194207, - [SMALL_STATE(6039)] = 194222, - [SMALL_STATE(6040)] = 194237, - [SMALL_STATE(6041)] = 194252, - [SMALL_STATE(6042)] = 194267, - [SMALL_STATE(6043)] = 194282, - [SMALL_STATE(6044)] = 194297, - [SMALL_STATE(6045)] = 194316, - [SMALL_STATE(6046)] = 194331, - [SMALL_STATE(6047)] = 194346, - [SMALL_STATE(6048)] = 194361, - [SMALL_STATE(6049)] = 194376, - [SMALL_STATE(6050)] = 194393, - [SMALL_STATE(6051)] = 194412, - [SMALL_STATE(6052)] = 194427, - [SMALL_STATE(6053)] = 194442, - [SMALL_STATE(6054)] = 194461, - [SMALL_STATE(6055)] = 194476, - [SMALL_STATE(6056)] = 194491, - [SMALL_STATE(6057)] = 194506, - [SMALL_STATE(6058)] = 194525, - [SMALL_STATE(6059)] = 194540, - [SMALL_STATE(6060)] = 194559, - [SMALL_STATE(6061)] = 194574, - [SMALL_STATE(6062)] = 194591, - [SMALL_STATE(6063)] = 194606, - [SMALL_STATE(6064)] = 194621, - [SMALL_STATE(6065)] = 194636, - [SMALL_STATE(6066)] = 194651, - [SMALL_STATE(6067)] = 194668, - [SMALL_STATE(6068)] = 194683, - [SMALL_STATE(6069)] = 194698, - [SMALL_STATE(6070)] = 194713, - [SMALL_STATE(6071)] = 194732, - [SMALL_STATE(6072)] = 194747, - [SMALL_STATE(6073)] = 194762, - [SMALL_STATE(6074)] = 194781, - [SMALL_STATE(6075)] = 194796, - [SMALL_STATE(6076)] = 194811, - [SMALL_STATE(6077)] = 194826, - [SMALL_STATE(6078)] = 194841, - [SMALL_STATE(6079)] = 194856, - [SMALL_STATE(6080)] = 194871, - [SMALL_STATE(6081)] = 194886, - [SMALL_STATE(6082)] = 194901, - [SMALL_STATE(6083)] = 194916, - [SMALL_STATE(6084)] = 194931, - [SMALL_STATE(6085)] = 194946, - [SMALL_STATE(6086)] = 194963, - [SMALL_STATE(6087)] = 194982, - [SMALL_STATE(6088)] = 194997, - [SMALL_STATE(6089)] = 195016, - [SMALL_STATE(6090)] = 195035, - [SMALL_STATE(6091)] = 195054, - [SMALL_STATE(6092)] = 195073, - [SMALL_STATE(6093)] = 195092, - [SMALL_STATE(6094)] = 195107, - [SMALL_STATE(6095)] = 195122, - [SMALL_STATE(6096)] = 195137, - [SMALL_STATE(6097)] = 195152, - [SMALL_STATE(6098)] = 195167, - [SMALL_STATE(6099)] = 195182, - [SMALL_STATE(6100)] = 195201, - [SMALL_STATE(6101)] = 195216, - [SMALL_STATE(6102)] = 195233, - [SMALL_STATE(6103)] = 195248, - [SMALL_STATE(6104)] = 195263, - [SMALL_STATE(6105)] = 195280, - [SMALL_STATE(6106)] = 195295, - [SMALL_STATE(6107)] = 195310, - [SMALL_STATE(6108)] = 195327, - [SMALL_STATE(6109)] = 195342, - [SMALL_STATE(6110)] = 195357, - [SMALL_STATE(6111)] = 195372, - [SMALL_STATE(6112)] = 195391, - [SMALL_STATE(6113)] = 195406, - [SMALL_STATE(6114)] = 195421, - [SMALL_STATE(6115)] = 195436, - [SMALL_STATE(6116)] = 195455, - [SMALL_STATE(6117)] = 195474, - [SMALL_STATE(6118)] = 195489, - [SMALL_STATE(6119)] = 195508, - [SMALL_STATE(6120)] = 195527, - [SMALL_STATE(6121)] = 195542, - [SMALL_STATE(6122)] = 195557, - [SMALL_STATE(6123)] = 195572, - [SMALL_STATE(6124)] = 195587, - [SMALL_STATE(6125)] = 195602, - [SMALL_STATE(6126)] = 195617, - [SMALL_STATE(6127)] = 195636, - [SMALL_STATE(6128)] = 195655, - [SMALL_STATE(6129)] = 195672, - [SMALL_STATE(6130)] = 195691, - [SMALL_STATE(6131)] = 195706, - [SMALL_STATE(6132)] = 195721, - [SMALL_STATE(6133)] = 195736, - [SMALL_STATE(6134)] = 195751, - [SMALL_STATE(6135)] = 195766, - [SMALL_STATE(6136)] = 195781, - [SMALL_STATE(6137)] = 195796, - [SMALL_STATE(6138)] = 195811, - [SMALL_STATE(6139)] = 195826, - [SMALL_STATE(6140)] = 195841, - [SMALL_STATE(6141)] = 195856, - [SMALL_STATE(6142)] = 195871, - [SMALL_STATE(6143)] = 195886, - [SMALL_STATE(6144)] = 195901, - [SMALL_STATE(6145)] = 195920, - [SMALL_STATE(6146)] = 195935, - [SMALL_STATE(6147)] = 195950, - [SMALL_STATE(6148)] = 195965, - [SMALL_STATE(6149)] = 195980, - [SMALL_STATE(6150)] = 195995, - [SMALL_STATE(6151)] = 196010, - [SMALL_STATE(6152)] = 196025, - [SMALL_STATE(6153)] = 196044, - [SMALL_STATE(6154)] = 196059, - [SMALL_STATE(6155)] = 196074, - [SMALL_STATE(6156)] = 196089, - [SMALL_STATE(6157)] = 196108, - [SMALL_STATE(6158)] = 196123, - [SMALL_STATE(6159)] = 196142, - [SMALL_STATE(6160)] = 196157, - [SMALL_STATE(6161)] = 196176, - [SMALL_STATE(6162)] = 196191, - [SMALL_STATE(6163)] = 196206, - [SMALL_STATE(6164)] = 196225, - [SMALL_STATE(6165)] = 196240, - [SMALL_STATE(6166)] = 196259, - [SMALL_STATE(6167)] = 196274, - [SMALL_STATE(6168)] = 196293, - [SMALL_STATE(6169)] = 196308, - [SMALL_STATE(6170)] = 196323, - [SMALL_STATE(6171)] = 196338, - [SMALL_STATE(6172)] = 196353, - [SMALL_STATE(6173)] = 196372, - [SMALL_STATE(6174)] = 196387, - [SMALL_STATE(6175)] = 196406, - [SMALL_STATE(6176)] = 196425, - [SMALL_STATE(6177)] = 196440, - [SMALL_STATE(6178)] = 196455, - [SMALL_STATE(6179)] = 196470, - [SMALL_STATE(6180)] = 196485, - [SMALL_STATE(6181)] = 196500, - [SMALL_STATE(6182)] = 196515, - [SMALL_STATE(6183)] = 196530, - [SMALL_STATE(6184)] = 196545, - [SMALL_STATE(6185)] = 196560, - [SMALL_STATE(6186)] = 196575, - [SMALL_STATE(6187)] = 196590, - [SMALL_STATE(6188)] = 196605, - [SMALL_STATE(6189)] = 196620, - [SMALL_STATE(6190)] = 196635, - [SMALL_STATE(6191)] = 196650, - [SMALL_STATE(6192)] = 196665, - [SMALL_STATE(6193)] = 196680, - [SMALL_STATE(6194)] = 196695, - [SMALL_STATE(6195)] = 196714, - [SMALL_STATE(6196)] = 196729, - [SMALL_STATE(6197)] = 196744, - [SMALL_STATE(6198)] = 196759, - [SMALL_STATE(6199)] = 196774, - [SMALL_STATE(6200)] = 196789, - [SMALL_STATE(6201)] = 196808, - [SMALL_STATE(6202)] = 196823, - [SMALL_STATE(6203)] = 196842, - [SMALL_STATE(6204)] = 196861, - [SMALL_STATE(6205)] = 196880, - [SMALL_STATE(6206)] = 196895, - [SMALL_STATE(6207)] = 196910, - [SMALL_STATE(6208)] = 196929, - [SMALL_STATE(6209)] = 196948, - [SMALL_STATE(6210)] = 196965, - [SMALL_STATE(6211)] = 196984, - [SMALL_STATE(6212)] = 197003, - [SMALL_STATE(6213)] = 197018, - [SMALL_STATE(6214)] = 197035, - [SMALL_STATE(6215)] = 197054, - [SMALL_STATE(6216)] = 197073, - [SMALL_STATE(6217)] = 197092, - [SMALL_STATE(6218)] = 197107, - [SMALL_STATE(6219)] = 197122, - [SMALL_STATE(6220)] = 197141, - [SMALL_STATE(6221)] = 197160, - [SMALL_STATE(6222)] = 197175, - [SMALL_STATE(6223)] = 197190, - [SMALL_STATE(6224)] = 197205, - [SMALL_STATE(6225)] = 197224, - [SMALL_STATE(6226)] = 197243, - [SMALL_STATE(6227)] = 197258, - [SMALL_STATE(6228)] = 197277, - [SMALL_STATE(6229)] = 197296, - [SMALL_STATE(6230)] = 197311, - [SMALL_STATE(6231)] = 197326, - [SMALL_STATE(6232)] = 197345, - [SMALL_STATE(6233)] = 197364, - [SMALL_STATE(6234)] = 197379, - [SMALL_STATE(6235)] = 197394, - [SMALL_STATE(6236)] = 197409, - [SMALL_STATE(6237)] = 197424, - [SMALL_STATE(6238)] = 197439, - [SMALL_STATE(6239)] = 197454, - [SMALL_STATE(6240)] = 197473, - [SMALL_STATE(6241)] = 197492, - [SMALL_STATE(6242)] = 197509, - [SMALL_STATE(6243)] = 197526, - [SMALL_STATE(6244)] = 197543, - [SMALL_STATE(6245)] = 197558, - [SMALL_STATE(6246)] = 197577, - [SMALL_STATE(6247)] = 197592, - [SMALL_STATE(6248)] = 197607, - [SMALL_STATE(6249)] = 197626, - [SMALL_STATE(6250)] = 197645, - [SMALL_STATE(6251)] = 197664, - [SMALL_STATE(6252)] = 197683, - [SMALL_STATE(6253)] = 197702, - [SMALL_STATE(6254)] = 197717, - [SMALL_STATE(6255)] = 197732, - [SMALL_STATE(6256)] = 197751, - [SMALL_STATE(6257)] = 197770, - [SMALL_STATE(6258)] = 197785, - [SMALL_STATE(6259)] = 197800, - [SMALL_STATE(6260)] = 197815, - [SMALL_STATE(6261)] = 197830, - [SMALL_STATE(6262)] = 197845, - [SMALL_STATE(6263)] = 197860, - [SMALL_STATE(6264)] = 197879, - [SMALL_STATE(6265)] = 197894, - [SMALL_STATE(6266)] = 197913, - [SMALL_STATE(6267)] = 197932, - [SMALL_STATE(6268)] = 197947, - [SMALL_STATE(6269)] = 197966, - [SMALL_STATE(6270)] = 197981, - [SMALL_STATE(6271)] = 198000, - [SMALL_STATE(6272)] = 198015, - [SMALL_STATE(6273)] = 198034, - [SMALL_STATE(6274)] = 198049, - [SMALL_STATE(6275)] = 198068, - [SMALL_STATE(6276)] = 198087, - [SMALL_STATE(6277)] = 198102, - [SMALL_STATE(6278)] = 198121, - [SMALL_STATE(6279)] = 198136, - [SMALL_STATE(6280)] = 198151, - [SMALL_STATE(6281)] = 198166, - [SMALL_STATE(6282)] = 198181, - [SMALL_STATE(6283)] = 198200, - [SMALL_STATE(6284)] = 198215, - [SMALL_STATE(6285)] = 198230, - [SMALL_STATE(6286)] = 198245, - [SMALL_STATE(6287)] = 198264, - [SMALL_STATE(6288)] = 198281, - [SMALL_STATE(6289)] = 198296, - [SMALL_STATE(6290)] = 198315, - [SMALL_STATE(6291)] = 198330, - [SMALL_STATE(6292)] = 198349, - [SMALL_STATE(6293)] = 198368, - [SMALL_STATE(6294)] = 198387, - [SMALL_STATE(6295)] = 198406, - [SMALL_STATE(6296)] = 198425, - [SMALL_STATE(6297)] = 198444, - [SMALL_STATE(6298)] = 198463, - [SMALL_STATE(6299)] = 198482, - [SMALL_STATE(6300)] = 198501, - [SMALL_STATE(6301)] = 198516, - [SMALL_STATE(6302)] = 198535, - [SMALL_STATE(6303)] = 198554, - [SMALL_STATE(6304)] = 198573, - [SMALL_STATE(6305)] = 198592, - [SMALL_STATE(6306)] = 198609, - [SMALL_STATE(6307)] = 198626, - [SMALL_STATE(6308)] = 198641, - [SMALL_STATE(6309)] = 198660, - [SMALL_STATE(6310)] = 198675, - [SMALL_STATE(6311)] = 198694, - [SMALL_STATE(6312)] = 198713, - [SMALL_STATE(6313)] = 198728, - [SMALL_STATE(6314)] = 198743, - [SMALL_STATE(6315)] = 198758, - [SMALL_STATE(6316)] = 198777, - [SMALL_STATE(6317)] = 198796, - [SMALL_STATE(6318)] = 198815, - [SMALL_STATE(6319)] = 198834, - [SMALL_STATE(6320)] = 198853, - [SMALL_STATE(6321)] = 198868, - [SMALL_STATE(6322)] = 198887, - [SMALL_STATE(6323)] = 198906, - [SMALL_STATE(6324)] = 198921, - [SMALL_STATE(6325)] = 198940, - [SMALL_STATE(6326)] = 198957, - [SMALL_STATE(6327)] = 198976, - [SMALL_STATE(6328)] = 198991, - [SMALL_STATE(6329)] = 199010, - [SMALL_STATE(6330)] = 199029, - [SMALL_STATE(6331)] = 199044, - [SMALL_STATE(6332)] = 199059, - [SMALL_STATE(6333)] = 199074, - [SMALL_STATE(6334)] = 199089, - [SMALL_STATE(6335)] = 199104, - [SMALL_STATE(6336)] = 199123, - [SMALL_STATE(6337)] = 199138, - [SMALL_STATE(6338)] = 199152, - [SMALL_STATE(6339)] = 199166, - [SMALL_STATE(6340)] = 199182, - [SMALL_STATE(6341)] = 199198, - [SMALL_STATE(6342)] = 199214, - [SMALL_STATE(6343)] = 199228, - [SMALL_STATE(6344)] = 199244, - [SMALL_STATE(6345)] = 199260, - [SMALL_STATE(6346)] = 199274, - [SMALL_STATE(6347)] = 199290, - [SMALL_STATE(6348)] = 199306, - [SMALL_STATE(6349)] = 199322, - [SMALL_STATE(6350)] = 199336, - [SMALL_STATE(6351)] = 199352, - [SMALL_STATE(6352)] = 199368, - [SMALL_STATE(6353)] = 199382, - [SMALL_STATE(6354)] = 199398, - [SMALL_STATE(6355)] = 199414, - [SMALL_STATE(6356)] = 199430, - [SMALL_STATE(6357)] = 199444, - [SMALL_STATE(6358)] = 199460, - [SMALL_STATE(6359)] = 199476, - [SMALL_STATE(6360)] = 199492, - [SMALL_STATE(6361)] = 199506, - [SMALL_STATE(6362)] = 199520, - [SMALL_STATE(6363)] = 199534, - [SMALL_STATE(6364)] = 199548, - [SMALL_STATE(6365)] = 199562, - [SMALL_STATE(6366)] = 199576, - [SMALL_STATE(6367)] = 199592, - [SMALL_STATE(6368)] = 199608, - [SMALL_STATE(6369)] = 199624, - [SMALL_STATE(6370)] = 199638, - [SMALL_STATE(6371)] = 199652, - [SMALL_STATE(6372)] = 199666, - [SMALL_STATE(6373)] = 199682, - [SMALL_STATE(6374)] = 199696, - [SMALL_STATE(6375)] = 199712, - [SMALL_STATE(6376)] = 199728, - [SMALL_STATE(6377)] = 199742, - [SMALL_STATE(6378)] = 199758, - [SMALL_STATE(6379)] = 199774, - [SMALL_STATE(6380)] = 199788, - [SMALL_STATE(6381)] = 199804, - [SMALL_STATE(6382)] = 199818, - [SMALL_STATE(6383)] = 199832, - [SMALL_STATE(6384)] = 199848, - [SMALL_STATE(6385)] = 199862, - [SMALL_STATE(6386)] = 199876, - [SMALL_STATE(6387)] = 199890, - [SMALL_STATE(6388)] = 199906, - [SMALL_STATE(6389)] = 199922, - [SMALL_STATE(6390)] = 199938, - [SMALL_STATE(6391)] = 199954, - [SMALL_STATE(6392)] = 199968, - [SMALL_STATE(6393)] = 199982, - [SMALL_STATE(6394)] = 199998, - [SMALL_STATE(6395)] = 200012, - [SMALL_STATE(6396)] = 200028, - [SMALL_STATE(6397)] = 200042, - [SMALL_STATE(6398)] = 200058, - [SMALL_STATE(6399)] = 200074, - [SMALL_STATE(6400)] = 200090, - [SMALL_STATE(6401)] = 200106, - [SMALL_STATE(6402)] = 200120, - [SMALL_STATE(6403)] = 200136, - [SMALL_STATE(6404)] = 200152, - [SMALL_STATE(6405)] = 200166, - [SMALL_STATE(6406)] = 200182, - [SMALL_STATE(6407)] = 200196, - [SMALL_STATE(6408)] = 200210, - [SMALL_STATE(6409)] = 200224, - [SMALL_STATE(6410)] = 200240, - [SMALL_STATE(6411)] = 200256, - [SMALL_STATE(6412)] = 200272, - [SMALL_STATE(6413)] = 200288, - [SMALL_STATE(6414)] = 200302, - [SMALL_STATE(6415)] = 200318, - [SMALL_STATE(6416)] = 200334, - [SMALL_STATE(6417)] = 200350, - [SMALL_STATE(6418)] = 200364, - [SMALL_STATE(6419)] = 200380, - [SMALL_STATE(6420)] = 200396, - [SMALL_STATE(6421)] = 200410, - [SMALL_STATE(6422)] = 200426, - [SMALL_STATE(6423)] = 200442, - [SMALL_STATE(6424)] = 200458, - [SMALL_STATE(6425)] = 200474, - [SMALL_STATE(6426)] = 200490, - [SMALL_STATE(6427)] = 200506, - [SMALL_STATE(6428)] = 200520, - [SMALL_STATE(6429)] = 200534, - [SMALL_STATE(6430)] = 200550, - [SMALL_STATE(6431)] = 200566, - [SMALL_STATE(6432)] = 200582, - [SMALL_STATE(6433)] = 200598, - [SMALL_STATE(6434)] = 200614, - [SMALL_STATE(6435)] = 200628, - [SMALL_STATE(6436)] = 200642, - [SMALL_STATE(6437)] = 200656, - [SMALL_STATE(6438)] = 200670, - [SMALL_STATE(6439)] = 200686, - [SMALL_STATE(6440)] = 200702, - [SMALL_STATE(6441)] = 200718, - [SMALL_STATE(6442)] = 200734, - [SMALL_STATE(6443)] = 200750, - [SMALL_STATE(6444)] = 200766, - [SMALL_STATE(6445)] = 200782, - [SMALL_STATE(6446)] = 200798, - [SMALL_STATE(6447)] = 200814, - [SMALL_STATE(6448)] = 200828, - [SMALL_STATE(6449)] = 200844, - [SMALL_STATE(6450)] = 200860, - [SMALL_STATE(6451)] = 200876, - [SMALL_STATE(6452)] = 200892, - [SMALL_STATE(6453)] = 200908, - [SMALL_STATE(6454)] = 200924, - [SMALL_STATE(6455)] = 200940, - [SMALL_STATE(6456)] = 200956, - [SMALL_STATE(6457)] = 200972, - [SMALL_STATE(6458)] = 200988, - [SMALL_STATE(6459)] = 201004, - [SMALL_STATE(6460)] = 201020, - [SMALL_STATE(6461)] = 201036, - [SMALL_STATE(6462)] = 201052, - [SMALL_STATE(6463)] = 201068, - [SMALL_STATE(6464)] = 201084, - [SMALL_STATE(6465)] = 201098, - [SMALL_STATE(6466)] = 201112, - [SMALL_STATE(6467)] = 201128, - [SMALL_STATE(6468)] = 201144, - [SMALL_STATE(6469)] = 201158, - [SMALL_STATE(6470)] = 201174, - [SMALL_STATE(6471)] = 201190, - [SMALL_STATE(6472)] = 201204, - [SMALL_STATE(6473)] = 201220, - [SMALL_STATE(6474)] = 201236, - [SMALL_STATE(6475)] = 201252, - [SMALL_STATE(6476)] = 201268, - [SMALL_STATE(6477)] = 201284, - [SMALL_STATE(6478)] = 201300, - [SMALL_STATE(6479)] = 201316, - [SMALL_STATE(6480)] = 201330, - [SMALL_STATE(6481)] = 201346, - [SMALL_STATE(6482)] = 201362, - [SMALL_STATE(6483)] = 201378, - [SMALL_STATE(6484)] = 201394, - [SMALL_STATE(6485)] = 201408, - [SMALL_STATE(6486)] = 201422, - [SMALL_STATE(6487)] = 201438, - [SMALL_STATE(6488)] = 201454, - [SMALL_STATE(6489)] = 201470, - [SMALL_STATE(6490)] = 201484, - [SMALL_STATE(6491)] = 201500, - [SMALL_STATE(6492)] = 201514, - [SMALL_STATE(6493)] = 201530, - [SMALL_STATE(6494)] = 201544, - [SMALL_STATE(6495)] = 201558, - [SMALL_STATE(6496)] = 201572, - [SMALL_STATE(6497)] = 201588, - [SMALL_STATE(6498)] = 201604, - [SMALL_STATE(6499)] = 201618, - [SMALL_STATE(6500)] = 201632, - [SMALL_STATE(6501)] = 201648, - [SMALL_STATE(6502)] = 201664, - [SMALL_STATE(6503)] = 201680, - [SMALL_STATE(6504)] = 201696, - [SMALL_STATE(6505)] = 201710, - [SMALL_STATE(6506)] = 201724, - [SMALL_STATE(6507)] = 201738, - [SMALL_STATE(6508)] = 201754, - [SMALL_STATE(6509)] = 201768, - [SMALL_STATE(6510)] = 201782, - [SMALL_STATE(6511)] = 201798, - [SMALL_STATE(6512)] = 201814, - [SMALL_STATE(6513)] = 201830, - [SMALL_STATE(6514)] = 201846, - [SMALL_STATE(6515)] = 201860, - [SMALL_STATE(6516)] = 201876, - [SMALL_STATE(6517)] = 201892, - [SMALL_STATE(6518)] = 201908, - [SMALL_STATE(6519)] = 201924, - [SMALL_STATE(6520)] = 201940, - [SMALL_STATE(6521)] = 201956, - [SMALL_STATE(6522)] = 201972, - [SMALL_STATE(6523)] = 201988, - [SMALL_STATE(6524)] = 202002, - [SMALL_STATE(6525)] = 202016, - [SMALL_STATE(6526)] = 202030, - [SMALL_STATE(6527)] = 202046, - [SMALL_STATE(6528)] = 202062, - [SMALL_STATE(6529)] = 202078, - [SMALL_STATE(6530)] = 202094, - [SMALL_STATE(6531)] = 202110, - [SMALL_STATE(6532)] = 202126, - [SMALL_STATE(6533)] = 202142, - [SMALL_STATE(6534)] = 202156, - [SMALL_STATE(6535)] = 202170, - [SMALL_STATE(6536)] = 202184, - [SMALL_STATE(6537)] = 202200, - [SMALL_STATE(6538)] = 202216, - [SMALL_STATE(6539)] = 202230, - [SMALL_STATE(6540)] = 202244, - [SMALL_STATE(6541)] = 202260, - [SMALL_STATE(6542)] = 202274, - [SMALL_STATE(6543)] = 202290, - [SMALL_STATE(6544)] = 202306, - [SMALL_STATE(6545)] = 202322, - [SMALL_STATE(6546)] = 202336, - [SMALL_STATE(6547)] = 202352, - [SMALL_STATE(6548)] = 202366, - [SMALL_STATE(6549)] = 202382, - [SMALL_STATE(6550)] = 202398, - [SMALL_STATE(6551)] = 202414, - [SMALL_STATE(6552)] = 202428, - [SMALL_STATE(6553)] = 202442, - [SMALL_STATE(6554)] = 202458, - [SMALL_STATE(6555)] = 202474, - [SMALL_STATE(6556)] = 202490, - [SMALL_STATE(6557)] = 202504, - [SMALL_STATE(6558)] = 202520, - [SMALL_STATE(6559)] = 202534, - [SMALL_STATE(6560)] = 202548, - [SMALL_STATE(6561)] = 202564, - [SMALL_STATE(6562)] = 202580, - [SMALL_STATE(6563)] = 202596, - [SMALL_STATE(6564)] = 202610, - [SMALL_STATE(6565)] = 202624, - [SMALL_STATE(6566)] = 202638, - [SMALL_STATE(6567)] = 202652, - [SMALL_STATE(6568)] = 202666, - [SMALL_STATE(6569)] = 202682, - [SMALL_STATE(6570)] = 202696, - [SMALL_STATE(6571)] = 202710, - [SMALL_STATE(6572)] = 202724, - [SMALL_STATE(6573)] = 202740, - [SMALL_STATE(6574)] = 202756, - [SMALL_STATE(6575)] = 202772, - [SMALL_STATE(6576)] = 202788, - [SMALL_STATE(6577)] = 202804, - [SMALL_STATE(6578)] = 202820, - [SMALL_STATE(6579)] = 202834, - [SMALL_STATE(6580)] = 202850, - [SMALL_STATE(6581)] = 202864, - [SMALL_STATE(6582)] = 202878, - [SMALL_STATE(6583)] = 202894, - [SMALL_STATE(6584)] = 202910, - [SMALL_STATE(6585)] = 202924, - [SMALL_STATE(6586)] = 202940, - [SMALL_STATE(6587)] = 202956, - [SMALL_STATE(6588)] = 202972, - [SMALL_STATE(6589)] = 202988, - [SMALL_STATE(6590)] = 203004, - [SMALL_STATE(6591)] = 203020, - [SMALL_STATE(6592)] = 203036, - [SMALL_STATE(6593)] = 203050, - [SMALL_STATE(6594)] = 203066, - [SMALL_STATE(6595)] = 203080, - [SMALL_STATE(6596)] = 203096, - [SMALL_STATE(6597)] = 203110, - [SMALL_STATE(6598)] = 203124, - [SMALL_STATE(6599)] = 203140, - [SMALL_STATE(6600)] = 203156, - [SMALL_STATE(6601)] = 203170, - [SMALL_STATE(6602)] = 203184, - [SMALL_STATE(6603)] = 203198, - [SMALL_STATE(6604)] = 203212, - [SMALL_STATE(6605)] = 203228, - [SMALL_STATE(6606)] = 203244, - [SMALL_STATE(6607)] = 203258, - [SMALL_STATE(6608)] = 203272, - [SMALL_STATE(6609)] = 203288, - [SMALL_STATE(6610)] = 203304, - [SMALL_STATE(6611)] = 203318, - [SMALL_STATE(6612)] = 203332, - [SMALL_STATE(6613)] = 203348, - [SMALL_STATE(6614)] = 203364, - [SMALL_STATE(6615)] = 203380, - [SMALL_STATE(6616)] = 203396, - [SMALL_STATE(6617)] = 203412, - [SMALL_STATE(6618)] = 203426, - [SMALL_STATE(6619)] = 203442, - [SMALL_STATE(6620)] = 203458, - [SMALL_STATE(6621)] = 203474, - [SMALL_STATE(6622)] = 203490, - [SMALL_STATE(6623)] = 203504, - [SMALL_STATE(6624)] = 203520, - [SMALL_STATE(6625)] = 203536, - [SMALL_STATE(6626)] = 203550, - [SMALL_STATE(6627)] = 203566, - [SMALL_STATE(6628)] = 203580, - [SMALL_STATE(6629)] = 203596, - [SMALL_STATE(6630)] = 203610, - [SMALL_STATE(6631)] = 203624, - [SMALL_STATE(6632)] = 203638, - [SMALL_STATE(6633)] = 203654, - [SMALL_STATE(6634)] = 203668, - [SMALL_STATE(6635)] = 203682, - [SMALL_STATE(6636)] = 203698, - [SMALL_STATE(6637)] = 203712, - [SMALL_STATE(6638)] = 203728, - [SMALL_STATE(6639)] = 203742, - [SMALL_STATE(6640)] = 203758, - [SMALL_STATE(6641)] = 203772, - [SMALL_STATE(6642)] = 203788, - [SMALL_STATE(6643)] = 203802, - [SMALL_STATE(6644)] = 203816, - [SMALL_STATE(6645)] = 203832, - [SMALL_STATE(6646)] = 203848, - [SMALL_STATE(6647)] = 203862, - [SMALL_STATE(6648)] = 203878, - [SMALL_STATE(6649)] = 203894, - [SMALL_STATE(6650)] = 203910, - [SMALL_STATE(6651)] = 203926, - [SMALL_STATE(6652)] = 203942, - [SMALL_STATE(6653)] = 203958, - [SMALL_STATE(6654)] = 203972, - [SMALL_STATE(6655)] = 203988, - [SMALL_STATE(6656)] = 204004, - [SMALL_STATE(6657)] = 204020, - [SMALL_STATE(6658)] = 204036, - [SMALL_STATE(6659)] = 204052, - [SMALL_STATE(6660)] = 204066, - [SMALL_STATE(6661)] = 204080, - [SMALL_STATE(6662)] = 204094, - [SMALL_STATE(6663)] = 204110, - [SMALL_STATE(6664)] = 204124, - [SMALL_STATE(6665)] = 204138, - [SMALL_STATE(6666)] = 204152, - [SMALL_STATE(6667)] = 204168, - [SMALL_STATE(6668)] = 204182, - [SMALL_STATE(6669)] = 204196, - [SMALL_STATE(6670)] = 204212, - [SMALL_STATE(6671)] = 204228, - [SMALL_STATE(6672)] = 204242, - [SMALL_STATE(6673)] = 204258, - [SMALL_STATE(6674)] = 204274, - [SMALL_STATE(6675)] = 204290, - [SMALL_STATE(6676)] = 204306, - [SMALL_STATE(6677)] = 204320, - [SMALL_STATE(6678)] = 204334, - [SMALL_STATE(6679)] = 204350, - [SMALL_STATE(6680)] = 204366, - [SMALL_STATE(6681)] = 204380, - [SMALL_STATE(6682)] = 204394, - [SMALL_STATE(6683)] = 204410, - [SMALL_STATE(6684)] = 204424, - [SMALL_STATE(6685)] = 204438, - [SMALL_STATE(6686)] = 204452, - [SMALL_STATE(6687)] = 204466, - [SMALL_STATE(6688)] = 204480, - [SMALL_STATE(6689)] = 204496, - [SMALL_STATE(6690)] = 204512, - [SMALL_STATE(6691)] = 204528, - [SMALL_STATE(6692)] = 204544, - [SMALL_STATE(6693)] = 204560, - [SMALL_STATE(6694)] = 204574, - [SMALL_STATE(6695)] = 204590, - [SMALL_STATE(6696)] = 204604, - [SMALL_STATE(6697)] = 204618, - [SMALL_STATE(6698)] = 204632, - [SMALL_STATE(6699)] = 204648, - [SMALL_STATE(6700)] = 204662, - [SMALL_STATE(6701)] = 204678, - [SMALL_STATE(6702)] = 204692, - [SMALL_STATE(6703)] = 204706, - [SMALL_STATE(6704)] = 204722, - [SMALL_STATE(6705)] = 204736, - [SMALL_STATE(6706)] = 204752, - [SMALL_STATE(6707)] = 204766, - [SMALL_STATE(6708)] = 204782, - [SMALL_STATE(6709)] = 204798, - [SMALL_STATE(6710)] = 204812, - [SMALL_STATE(6711)] = 204828, - [SMALL_STATE(6712)] = 204844, - [SMALL_STATE(6713)] = 204860, - [SMALL_STATE(6714)] = 204876, - [SMALL_STATE(6715)] = 204892, - [SMALL_STATE(6716)] = 204908, - [SMALL_STATE(6717)] = 204924, - [SMALL_STATE(6718)] = 204940, - [SMALL_STATE(6719)] = 204956, - [SMALL_STATE(6720)] = 204970, - [SMALL_STATE(6721)] = 204986, - [SMALL_STATE(6722)] = 205002, - [SMALL_STATE(6723)] = 205018, - [SMALL_STATE(6724)] = 205032, - [SMALL_STATE(6725)] = 205046, - [SMALL_STATE(6726)] = 205062, - [SMALL_STATE(6727)] = 205076, - [SMALL_STATE(6728)] = 205092, - [SMALL_STATE(6729)] = 205106, - [SMALL_STATE(6730)] = 205120, - [SMALL_STATE(6731)] = 205134, - [SMALL_STATE(6732)] = 205148, - [SMALL_STATE(6733)] = 205164, - [SMALL_STATE(6734)] = 205178, - [SMALL_STATE(6735)] = 205192, - [SMALL_STATE(6736)] = 205208, - [SMALL_STATE(6737)] = 205224, - [SMALL_STATE(6738)] = 205240, - [SMALL_STATE(6739)] = 205256, - [SMALL_STATE(6740)] = 205270, - [SMALL_STATE(6741)] = 205286, - [SMALL_STATE(6742)] = 205302, - [SMALL_STATE(6743)] = 205318, - [SMALL_STATE(6744)] = 205334, - [SMALL_STATE(6745)] = 205350, - [SMALL_STATE(6746)] = 205364, - [SMALL_STATE(6747)] = 205380, - [SMALL_STATE(6748)] = 205394, - [SMALL_STATE(6749)] = 205408, - [SMALL_STATE(6750)] = 205424, - [SMALL_STATE(6751)] = 205440, - [SMALL_STATE(6752)] = 205454, - [SMALL_STATE(6753)] = 205470, - [SMALL_STATE(6754)] = 205484, - [SMALL_STATE(6755)] = 205500, - [SMALL_STATE(6756)] = 205514, - [SMALL_STATE(6757)] = 205528, - [SMALL_STATE(6758)] = 205544, - [SMALL_STATE(6759)] = 205560, - [SMALL_STATE(6760)] = 205576, - [SMALL_STATE(6761)] = 205592, - [SMALL_STATE(6762)] = 205608, - [SMALL_STATE(6763)] = 205624, - [SMALL_STATE(6764)] = 205638, - [SMALL_STATE(6765)] = 205652, - [SMALL_STATE(6766)] = 205666, - [SMALL_STATE(6767)] = 205682, - [SMALL_STATE(6768)] = 205698, - [SMALL_STATE(6769)] = 205714, - [SMALL_STATE(6770)] = 205730, - [SMALL_STATE(6771)] = 205746, - [SMALL_STATE(6772)] = 205762, - [SMALL_STATE(6773)] = 205778, - [SMALL_STATE(6774)] = 205794, - [SMALL_STATE(6775)] = 205810, - [SMALL_STATE(6776)] = 205826, - [SMALL_STATE(6777)] = 205842, - [SMALL_STATE(6778)] = 205858, - [SMALL_STATE(6779)] = 205874, - [SMALL_STATE(6780)] = 205888, - [SMALL_STATE(6781)] = 205904, - [SMALL_STATE(6782)] = 205918, - [SMALL_STATE(6783)] = 205934, - [SMALL_STATE(6784)] = 205948, - [SMALL_STATE(6785)] = 205962, - [SMALL_STATE(6786)] = 205976, - [SMALL_STATE(6787)] = 205992, - [SMALL_STATE(6788)] = 206008, - [SMALL_STATE(6789)] = 206024, - [SMALL_STATE(6790)] = 206038, - [SMALL_STATE(6791)] = 206054, - [SMALL_STATE(6792)] = 206070, - [SMALL_STATE(6793)] = 206086, - [SMALL_STATE(6794)] = 206100, - [SMALL_STATE(6795)] = 206116, - [SMALL_STATE(6796)] = 206132, - [SMALL_STATE(6797)] = 206146, - [SMALL_STATE(6798)] = 206162, - [SMALL_STATE(6799)] = 206178, - [SMALL_STATE(6800)] = 206194, - [SMALL_STATE(6801)] = 206208, - [SMALL_STATE(6802)] = 206222, - [SMALL_STATE(6803)] = 206238, - [SMALL_STATE(6804)] = 206254, - [SMALL_STATE(6805)] = 206270, - [SMALL_STATE(6806)] = 206286, - [SMALL_STATE(6807)] = 206300, - [SMALL_STATE(6808)] = 206316, - [SMALL_STATE(6809)] = 206332, - [SMALL_STATE(6810)] = 206346, - [SMALL_STATE(6811)] = 206362, - [SMALL_STATE(6812)] = 206376, - [SMALL_STATE(6813)] = 206392, - [SMALL_STATE(6814)] = 206406, - [SMALL_STATE(6815)] = 206420, - [SMALL_STATE(6816)] = 206436, - [SMALL_STATE(6817)] = 206452, - [SMALL_STATE(6818)] = 206468, - [SMALL_STATE(6819)] = 206484, - [SMALL_STATE(6820)] = 206498, - [SMALL_STATE(6821)] = 206514, - [SMALL_STATE(6822)] = 206530, - [SMALL_STATE(6823)] = 206544, - [SMALL_STATE(6824)] = 206560, - [SMALL_STATE(6825)] = 206574, - [SMALL_STATE(6826)] = 206588, - [SMALL_STATE(6827)] = 206602, - [SMALL_STATE(6828)] = 206616, - [SMALL_STATE(6829)] = 206630, - [SMALL_STATE(6830)] = 206646, - [SMALL_STATE(6831)] = 206662, - [SMALL_STATE(6832)] = 206678, - [SMALL_STATE(6833)] = 206692, - [SMALL_STATE(6834)] = 206706, - [SMALL_STATE(6835)] = 206722, - [SMALL_STATE(6836)] = 206736, - [SMALL_STATE(6837)] = 206752, - [SMALL_STATE(6838)] = 206766, - [SMALL_STATE(6839)] = 206782, - [SMALL_STATE(6840)] = 206798, - [SMALL_STATE(6841)] = 206812, - [SMALL_STATE(6842)] = 206828, - [SMALL_STATE(6843)] = 206842, - [SMALL_STATE(6844)] = 206856, - [SMALL_STATE(6845)] = 206872, - [SMALL_STATE(6846)] = 206888, - [SMALL_STATE(6847)] = 206902, - [SMALL_STATE(6848)] = 206918, - [SMALL_STATE(6849)] = 206932, - [SMALL_STATE(6850)] = 206948, - [SMALL_STATE(6851)] = 206962, - [SMALL_STATE(6852)] = 206976, - [SMALL_STATE(6853)] = 206992, - [SMALL_STATE(6854)] = 207008, - [SMALL_STATE(6855)] = 207024, - [SMALL_STATE(6856)] = 207040, - [SMALL_STATE(6857)] = 207056, - [SMALL_STATE(6858)] = 207070, - [SMALL_STATE(6859)] = 207084, - [SMALL_STATE(6860)] = 207098, - [SMALL_STATE(6861)] = 207114, - [SMALL_STATE(6862)] = 207128, - [SMALL_STATE(6863)] = 207144, - [SMALL_STATE(6864)] = 207160, - [SMALL_STATE(6865)] = 207176, - [SMALL_STATE(6866)] = 207190, - [SMALL_STATE(6867)] = 207206, - [SMALL_STATE(6868)] = 207222, - [SMALL_STATE(6869)] = 207236, - [SMALL_STATE(6870)] = 207252, - [SMALL_STATE(6871)] = 207266, - [SMALL_STATE(6872)] = 207282, - [SMALL_STATE(6873)] = 207296, - [SMALL_STATE(6874)] = 207310, - [SMALL_STATE(6875)] = 207326, - [SMALL_STATE(6876)] = 207340, - [SMALL_STATE(6877)] = 207354, - [SMALL_STATE(6878)] = 207370, - [SMALL_STATE(6879)] = 207386, - [SMALL_STATE(6880)] = 207402, - [SMALL_STATE(6881)] = 207418, - [SMALL_STATE(6882)] = 207434, - [SMALL_STATE(6883)] = 207448, - [SMALL_STATE(6884)] = 207462, - [SMALL_STATE(6885)] = 207478, - [SMALL_STATE(6886)] = 207494, - [SMALL_STATE(6887)] = 207510, - [SMALL_STATE(6888)] = 207526, - [SMALL_STATE(6889)] = 207542, - [SMALL_STATE(6890)] = 207556, - [SMALL_STATE(6891)] = 207572, - [SMALL_STATE(6892)] = 207588, - [SMALL_STATE(6893)] = 207602, - [SMALL_STATE(6894)] = 207618, - [SMALL_STATE(6895)] = 207634, - [SMALL_STATE(6896)] = 207648, - [SMALL_STATE(6897)] = 207662, - [SMALL_STATE(6898)] = 207678, - [SMALL_STATE(6899)] = 207694, - [SMALL_STATE(6900)] = 207708, - [SMALL_STATE(6901)] = 207724, - [SMALL_STATE(6902)] = 207740, - [SMALL_STATE(6903)] = 207754, - [SMALL_STATE(6904)] = 207770, - [SMALL_STATE(6905)] = 207784, - [SMALL_STATE(6906)] = 207800, - [SMALL_STATE(6907)] = 207816, - [SMALL_STATE(6908)] = 207832, - [SMALL_STATE(6909)] = 207846, - [SMALL_STATE(6910)] = 207860, - [SMALL_STATE(6911)] = 207874, - [SMALL_STATE(6912)] = 207890, - [SMALL_STATE(6913)] = 207906, - [SMALL_STATE(6914)] = 207920, - [SMALL_STATE(6915)] = 207936, - [SMALL_STATE(6916)] = 207950, - [SMALL_STATE(6917)] = 207964, - [SMALL_STATE(6918)] = 207978, - [SMALL_STATE(6919)] = 207994, - [SMALL_STATE(6920)] = 208010, - [SMALL_STATE(6921)] = 208026, - [SMALL_STATE(6922)] = 208042, - [SMALL_STATE(6923)] = 208058, - [SMALL_STATE(6924)] = 208074, - [SMALL_STATE(6925)] = 208088, - [SMALL_STATE(6926)] = 208102, - [SMALL_STATE(6927)] = 208116, - [SMALL_STATE(6928)] = 208132, - [SMALL_STATE(6929)] = 208148, - [SMALL_STATE(6930)] = 208164, - [SMALL_STATE(6931)] = 208180, - [SMALL_STATE(6932)] = 208196, - [SMALL_STATE(6933)] = 208212, - [SMALL_STATE(6934)] = 208228, - [SMALL_STATE(6935)] = 208244, - [SMALL_STATE(6936)] = 208260, - [SMALL_STATE(6937)] = 208276, - [SMALL_STATE(6938)] = 208292, - [SMALL_STATE(6939)] = 208308, - [SMALL_STATE(6940)] = 208324, - [SMALL_STATE(6941)] = 208340, - [SMALL_STATE(6942)] = 208356, - [SMALL_STATE(6943)] = 208372, - [SMALL_STATE(6944)] = 208388, - [SMALL_STATE(6945)] = 208404, - [SMALL_STATE(6946)] = 208420, - [SMALL_STATE(6947)] = 208436, - [SMALL_STATE(6948)] = 208452, - [SMALL_STATE(6949)] = 208468, - [SMALL_STATE(6950)] = 208484, - [SMALL_STATE(6951)] = 208500, - [SMALL_STATE(6952)] = 208516, - [SMALL_STATE(6953)] = 208532, - [SMALL_STATE(6954)] = 208548, - [SMALL_STATE(6955)] = 208562, - [SMALL_STATE(6956)] = 208576, - [SMALL_STATE(6957)] = 208590, - [SMALL_STATE(6958)] = 208604, - [SMALL_STATE(6959)] = 208618, - [SMALL_STATE(6960)] = 208634, - [SMALL_STATE(6961)] = 208650, - [SMALL_STATE(6962)] = 208666, - [SMALL_STATE(6963)] = 208682, - [SMALL_STATE(6964)] = 208698, - [SMALL_STATE(6965)] = 208714, - [SMALL_STATE(6966)] = 208728, - [SMALL_STATE(6967)] = 208744, - [SMALL_STATE(6968)] = 208758, - [SMALL_STATE(6969)] = 208774, - [SMALL_STATE(6970)] = 208790, - [SMALL_STATE(6971)] = 208806, - [SMALL_STATE(6972)] = 208822, - [SMALL_STATE(6973)] = 208838, - [SMALL_STATE(6974)] = 208854, - [SMALL_STATE(6975)] = 208868, - [SMALL_STATE(6976)] = 208882, - [SMALL_STATE(6977)] = 208898, - [SMALL_STATE(6978)] = 208912, - [SMALL_STATE(6979)] = 208926, - [SMALL_STATE(6980)] = 208940, - [SMALL_STATE(6981)] = 208956, - [SMALL_STATE(6982)] = 208972, - [SMALL_STATE(6983)] = 208988, - [SMALL_STATE(6984)] = 209004, - [SMALL_STATE(6985)] = 209020, - [SMALL_STATE(6986)] = 209034, - [SMALL_STATE(6987)] = 209050, - [SMALL_STATE(6988)] = 209066, - [SMALL_STATE(6989)] = 209082, - [SMALL_STATE(6990)] = 209098, - [SMALL_STATE(6991)] = 209114, - [SMALL_STATE(6992)] = 209130, - [SMALL_STATE(6993)] = 209144, - [SMALL_STATE(6994)] = 209160, - [SMALL_STATE(6995)] = 209176, - [SMALL_STATE(6996)] = 209192, - [SMALL_STATE(6997)] = 209205, - [SMALL_STATE(6998)] = 209218, - [SMALL_STATE(6999)] = 209231, - [SMALL_STATE(7000)] = 209244, - [SMALL_STATE(7001)] = 209257, - [SMALL_STATE(7002)] = 209270, - [SMALL_STATE(7003)] = 209283, - [SMALL_STATE(7004)] = 209296, - [SMALL_STATE(7005)] = 209309, - [SMALL_STATE(7006)] = 209322, - [SMALL_STATE(7007)] = 209335, - [SMALL_STATE(7008)] = 209348, - [SMALL_STATE(7009)] = 209361, - [SMALL_STATE(7010)] = 209374, - [SMALL_STATE(7011)] = 209387, - [SMALL_STATE(7012)] = 209400, - [SMALL_STATE(7013)] = 209413, - [SMALL_STATE(7014)] = 209426, - [SMALL_STATE(7015)] = 209439, - [SMALL_STATE(7016)] = 209452, - [SMALL_STATE(7017)] = 209465, - [SMALL_STATE(7018)] = 209478, - [SMALL_STATE(7019)] = 209491, - [SMALL_STATE(7020)] = 209504, - [SMALL_STATE(7021)] = 209517, - [SMALL_STATE(7022)] = 209530, - [SMALL_STATE(7023)] = 209543, - [SMALL_STATE(7024)] = 209556, - [SMALL_STATE(7025)] = 209569, - [SMALL_STATE(7026)] = 209582, - [SMALL_STATE(7027)] = 209595, - [SMALL_STATE(7028)] = 209608, - [SMALL_STATE(7029)] = 209621, - [SMALL_STATE(7030)] = 209634, - [SMALL_STATE(7031)] = 209647, - [SMALL_STATE(7032)] = 209660, - [SMALL_STATE(7033)] = 209673, - [SMALL_STATE(7034)] = 209686, - [SMALL_STATE(7035)] = 209699, - [SMALL_STATE(7036)] = 209712, - [SMALL_STATE(7037)] = 209725, - [SMALL_STATE(7038)] = 209738, - [SMALL_STATE(7039)] = 209751, - [SMALL_STATE(7040)] = 209764, - [SMALL_STATE(7041)] = 209777, - [SMALL_STATE(7042)] = 209790, - [SMALL_STATE(7043)] = 209803, - [SMALL_STATE(7044)] = 209816, - [SMALL_STATE(7045)] = 209829, - [SMALL_STATE(7046)] = 209842, - [SMALL_STATE(7047)] = 209855, - [SMALL_STATE(7048)] = 209868, - [SMALL_STATE(7049)] = 209881, - [SMALL_STATE(7050)] = 209894, - [SMALL_STATE(7051)] = 209907, - [SMALL_STATE(7052)] = 209920, - [SMALL_STATE(7053)] = 209933, - [SMALL_STATE(7054)] = 209946, - [SMALL_STATE(7055)] = 209959, - [SMALL_STATE(7056)] = 209972, - [SMALL_STATE(7057)] = 209985, - [SMALL_STATE(7058)] = 209998, - [SMALL_STATE(7059)] = 210011, - [SMALL_STATE(7060)] = 210024, - [SMALL_STATE(7061)] = 210037, - [SMALL_STATE(7062)] = 210050, - [SMALL_STATE(7063)] = 210063, - [SMALL_STATE(7064)] = 210076, - [SMALL_STATE(7065)] = 210089, - [SMALL_STATE(7066)] = 210102, - [SMALL_STATE(7067)] = 210115, - [SMALL_STATE(7068)] = 210128, - [SMALL_STATE(7069)] = 210141, - [SMALL_STATE(7070)] = 210154, - [SMALL_STATE(7071)] = 210167, - [SMALL_STATE(7072)] = 210180, - [SMALL_STATE(7073)] = 210193, - [SMALL_STATE(7074)] = 210206, - [SMALL_STATE(7075)] = 210219, - [SMALL_STATE(7076)] = 210232, - [SMALL_STATE(7077)] = 210245, - [SMALL_STATE(7078)] = 210258, - [SMALL_STATE(7079)] = 210271, - [SMALL_STATE(7080)] = 210284, - [SMALL_STATE(7081)] = 210297, - [SMALL_STATE(7082)] = 210310, - [SMALL_STATE(7083)] = 210323, - [SMALL_STATE(7084)] = 210336, - [SMALL_STATE(7085)] = 210349, - [SMALL_STATE(7086)] = 210362, - [SMALL_STATE(7087)] = 210375, - [SMALL_STATE(7088)] = 210388, - [SMALL_STATE(7089)] = 210401, - [SMALL_STATE(7090)] = 210414, - [SMALL_STATE(7091)] = 210427, - [SMALL_STATE(7092)] = 210440, - [SMALL_STATE(7093)] = 210453, - [SMALL_STATE(7094)] = 210466, - [SMALL_STATE(7095)] = 210479, - [SMALL_STATE(7096)] = 210492, - [SMALL_STATE(7097)] = 210505, - [SMALL_STATE(7098)] = 210518, - [SMALL_STATE(7099)] = 210531, - [SMALL_STATE(7100)] = 210544, - [SMALL_STATE(7101)] = 210557, - [SMALL_STATE(7102)] = 210570, - [SMALL_STATE(7103)] = 210583, - [SMALL_STATE(7104)] = 210596, - [SMALL_STATE(7105)] = 210609, - [SMALL_STATE(7106)] = 210622, - [SMALL_STATE(7107)] = 210635, - [SMALL_STATE(7108)] = 210648, - [SMALL_STATE(7109)] = 210661, - [SMALL_STATE(7110)] = 210674, - [SMALL_STATE(7111)] = 210687, - [SMALL_STATE(7112)] = 210700, - [SMALL_STATE(7113)] = 210713, - [SMALL_STATE(7114)] = 210726, - [SMALL_STATE(7115)] = 210739, - [SMALL_STATE(7116)] = 210752, - [SMALL_STATE(7117)] = 210765, - [SMALL_STATE(7118)] = 210778, - [SMALL_STATE(7119)] = 210791, - [SMALL_STATE(7120)] = 210804, - [SMALL_STATE(7121)] = 210817, - [SMALL_STATE(7122)] = 210830, - [SMALL_STATE(7123)] = 210843, - [SMALL_STATE(7124)] = 210856, - [SMALL_STATE(7125)] = 210869, - [SMALL_STATE(7126)] = 210882, - [SMALL_STATE(7127)] = 210895, - [SMALL_STATE(7128)] = 210908, - [SMALL_STATE(7129)] = 210921, - [SMALL_STATE(7130)] = 210934, - [SMALL_STATE(7131)] = 210947, - [SMALL_STATE(7132)] = 210960, - [SMALL_STATE(7133)] = 210973, - [SMALL_STATE(7134)] = 210986, - [SMALL_STATE(7135)] = 210999, - [SMALL_STATE(7136)] = 211012, - [SMALL_STATE(7137)] = 211025, - [SMALL_STATE(7138)] = 211038, - [SMALL_STATE(7139)] = 211051, - [SMALL_STATE(7140)] = 211064, - [SMALL_STATE(7141)] = 211077, - [SMALL_STATE(7142)] = 211090, - [SMALL_STATE(7143)] = 211103, - [SMALL_STATE(7144)] = 211116, - [SMALL_STATE(7145)] = 211129, - [SMALL_STATE(7146)] = 211142, - [SMALL_STATE(7147)] = 211155, - [SMALL_STATE(7148)] = 211168, - [SMALL_STATE(7149)] = 211181, - [SMALL_STATE(7150)] = 211194, - [SMALL_STATE(7151)] = 211207, - [SMALL_STATE(7152)] = 211220, - [SMALL_STATE(7153)] = 211233, - [SMALL_STATE(7154)] = 211246, - [SMALL_STATE(7155)] = 211259, - [SMALL_STATE(7156)] = 211272, - [SMALL_STATE(7157)] = 211285, - [SMALL_STATE(7158)] = 211298, - [SMALL_STATE(7159)] = 211311, - [SMALL_STATE(7160)] = 211324, - [SMALL_STATE(7161)] = 211337, - [SMALL_STATE(7162)] = 211350, - [SMALL_STATE(7163)] = 211363, - [SMALL_STATE(7164)] = 211376, - [SMALL_STATE(7165)] = 211389, - [SMALL_STATE(7166)] = 211402, - [SMALL_STATE(7167)] = 211415, - [SMALL_STATE(7168)] = 211428, - [SMALL_STATE(7169)] = 211441, - [SMALL_STATE(7170)] = 211454, - [SMALL_STATE(7171)] = 211467, - [SMALL_STATE(7172)] = 211480, - [SMALL_STATE(7173)] = 211493, - [SMALL_STATE(7174)] = 211506, - [SMALL_STATE(7175)] = 211519, - [SMALL_STATE(7176)] = 211532, - [SMALL_STATE(7177)] = 211545, - [SMALL_STATE(7178)] = 211558, - [SMALL_STATE(7179)] = 211571, - [SMALL_STATE(7180)] = 211584, - [SMALL_STATE(7181)] = 211597, - [SMALL_STATE(7182)] = 211610, - [SMALL_STATE(7183)] = 211623, - [SMALL_STATE(7184)] = 211636, - [SMALL_STATE(7185)] = 211649, - [SMALL_STATE(7186)] = 211662, - [SMALL_STATE(7187)] = 211675, - [SMALL_STATE(7188)] = 211688, - [SMALL_STATE(7189)] = 211701, - [SMALL_STATE(7190)] = 211714, - [SMALL_STATE(7191)] = 211727, - [SMALL_STATE(7192)] = 211740, - [SMALL_STATE(7193)] = 211753, - [SMALL_STATE(7194)] = 211766, - [SMALL_STATE(7195)] = 211779, - [SMALL_STATE(7196)] = 211792, - [SMALL_STATE(7197)] = 211805, - [SMALL_STATE(7198)] = 211818, - [SMALL_STATE(7199)] = 211831, - [SMALL_STATE(7200)] = 211844, - [SMALL_STATE(7201)] = 211857, - [SMALL_STATE(7202)] = 211870, - [SMALL_STATE(7203)] = 211883, - [SMALL_STATE(7204)] = 211896, - [SMALL_STATE(7205)] = 211909, - [SMALL_STATE(7206)] = 211922, - [SMALL_STATE(7207)] = 211935, - [SMALL_STATE(7208)] = 211948, - [SMALL_STATE(7209)] = 211961, - [SMALL_STATE(7210)] = 211974, - [SMALL_STATE(7211)] = 211987, - [SMALL_STATE(7212)] = 212000, - [SMALL_STATE(7213)] = 212013, - [SMALL_STATE(7214)] = 212026, - [SMALL_STATE(7215)] = 212039, - [SMALL_STATE(7216)] = 212052, - [SMALL_STATE(7217)] = 212065, - [SMALL_STATE(7218)] = 212078, - [SMALL_STATE(7219)] = 212091, - [SMALL_STATE(7220)] = 212104, - [SMALL_STATE(7221)] = 212117, - [SMALL_STATE(7222)] = 212130, - [SMALL_STATE(7223)] = 212143, - [SMALL_STATE(7224)] = 212156, - [SMALL_STATE(7225)] = 212169, - [SMALL_STATE(7226)] = 212182, - [SMALL_STATE(7227)] = 212195, - [SMALL_STATE(7228)] = 212208, - [SMALL_STATE(7229)] = 212221, - [SMALL_STATE(7230)] = 212234, - [SMALL_STATE(7231)] = 212247, - [SMALL_STATE(7232)] = 212260, - [SMALL_STATE(7233)] = 212273, - [SMALL_STATE(7234)] = 212286, - [SMALL_STATE(7235)] = 212299, - [SMALL_STATE(7236)] = 212312, - [SMALL_STATE(7237)] = 212325, - [SMALL_STATE(7238)] = 212338, - [SMALL_STATE(7239)] = 212351, - [SMALL_STATE(7240)] = 212364, - [SMALL_STATE(7241)] = 212377, - [SMALL_STATE(7242)] = 212390, - [SMALL_STATE(7243)] = 212403, - [SMALL_STATE(7244)] = 212416, - [SMALL_STATE(7245)] = 212429, - [SMALL_STATE(7246)] = 212442, - [SMALL_STATE(7247)] = 212455, - [SMALL_STATE(7248)] = 212468, - [SMALL_STATE(7249)] = 212481, - [SMALL_STATE(7250)] = 212494, - [SMALL_STATE(7251)] = 212507, - [SMALL_STATE(7252)] = 212520, - [SMALL_STATE(7253)] = 212533, - [SMALL_STATE(7254)] = 212546, - [SMALL_STATE(7255)] = 212559, - [SMALL_STATE(7256)] = 212572, - [SMALL_STATE(7257)] = 212585, - [SMALL_STATE(7258)] = 212598, - [SMALL_STATE(7259)] = 212611, - [SMALL_STATE(7260)] = 212624, - [SMALL_STATE(7261)] = 212637, - [SMALL_STATE(7262)] = 212650, - [SMALL_STATE(7263)] = 212663, - [SMALL_STATE(7264)] = 212676, - [SMALL_STATE(7265)] = 212689, - [SMALL_STATE(7266)] = 212702, - [SMALL_STATE(7267)] = 212715, - [SMALL_STATE(7268)] = 212728, - [SMALL_STATE(7269)] = 212741, - [SMALL_STATE(7270)] = 212754, - [SMALL_STATE(7271)] = 212767, - [SMALL_STATE(7272)] = 212780, - [SMALL_STATE(7273)] = 212793, - [SMALL_STATE(7274)] = 212806, - [SMALL_STATE(7275)] = 212819, - [SMALL_STATE(7276)] = 212832, - [SMALL_STATE(7277)] = 212845, - [SMALL_STATE(7278)] = 212858, - [SMALL_STATE(7279)] = 212871, - [SMALL_STATE(7280)] = 212884, - [SMALL_STATE(7281)] = 212897, - [SMALL_STATE(7282)] = 212910, - [SMALL_STATE(7283)] = 212923, - [SMALL_STATE(7284)] = 212936, - [SMALL_STATE(7285)] = 212949, - [SMALL_STATE(7286)] = 212962, - [SMALL_STATE(7287)] = 212975, - [SMALL_STATE(7288)] = 212988, - [SMALL_STATE(7289)] = 213001, - [SMALL_STATE(7290)] = 213014, - [SMALL_STATE(7291)] = 213027, - [SMALL_STATE(7292)] = 213040, - [SMALL_STATE(7293)] = 213053, - [SMALL_STATE(7294)] = 213066, - [SMALL_STATE(7295)] = 213079, - [SMALL_STATE(7296)] = 213092, - [SMALL_STATE(7297)] = 213105, - [SMALL_STATE(7298)] = 213118, - [SMALL_STATE(7299)] = 213131, - [SMALL_STATE(7300)] = 213144, - [SMALL_STATE(7301)] = 213157, - [SMALL_STATE(7302)] = 213170, - [SMALL_STATE(7303)] = 213183, - [SMALL_STATE(7304)] = 213196, - [SMALL_STATE(7305)] = 213209, - [SMALL_STATE(7306)] = 213222, - [SMALL_STATE(7307)] = 213235, - [SMALL_STATE(7308)] = 213248, - [SMALL_STATE(7309)] = 213261, - [SMALL_STATE(7310)] = 213274, - [SMALL_STATE(7311)] = 213287, - [SMALL_STATE(7312)] = 213300, - [SMALL_STATE(7313)] = 213313, - [SMALL_STATE(7314)] = 213326, - [SMALL_STATE(7315)] = 213339, - [SMALL_STATE(7316)] = 213352, - [SMALL_STATE(7317)] = 213365, - [SMALL_STATE(7318)] = 213378, - [SMALL_STATE(7319)] = 213391, - [SMALL_STATE(7320)] = 213404, - [SMALL_STATE(7321)] = 213417, - [SMALL_STATE(7322)] = 213430, - [SMALL_STATE(7323)] = 213443, - [SMALL_STATE(7324)] = 213456, - [SMALL_STATE(7325)] = 213469, - [SMALL_STATE(7326)] = 213482, - [SMALL_STATE(7327)] = 213495, - [SMALL_STATE(7328)] = 213508, - [SMALL_STATE(7329)] = 213521, - [SMALL_STATE(7330)] = 213534, - [SMALL_STATE(7331)] = 213547, - [SMALL_STATE(7332)] = 213560, - [SMALL_STATE(7333)] = 213573, - [SMALL_STATE(7334)] = 213586, - [SMALL_STATE(7335)] = 213599, - [SMALL_STATE(7336)] = 213612, - [SMALL_STATE(7337)] = 213625, - [SMALL_STATE(7338)] = 213638, - [SMALL_STATE(7339)] = 213651, - [SMALL_STATE(7340)] = 213664, - [SMALL_STATE(7341)] = 213677, - [SMALL_STATE(7342)] = 213690, - [SMALL_STATE(7343)] = 213703, - [SMALL_STATE(7344)] = 213716, - [SMALL_STATE(7345)] = 213729, - [SMALL_STATE(7346)] = 213742, - [SMALL_STATE(7347)] = 213755, - [SMALL_STATE(7348)] = 213768, - [SMALL_STATE(7349)] = 213781, - [SMALL_STATE(7350)] = 213794, - [SMALL_STATE(7351)] = 213807, - [SMALL_STATE(7352)] = 213820, - [SMALL_STATE(7353)] = 213833, - [SMALL_STATE(7354)] = 213846, - [SMALL_STATE(7355)] = 213859, - [SMALL_STATE(7356)] = 213872, - [SMALL_STATE(7357)] = 213885, - [SMALL_STATE(7358)] = 213898, - [SMALL_STATE(7359)] = 213911, - [SMALL_STATE(7360)] = 213924, - [SMALL_STATE(7361)] = 213937, - [SMALL_STATE(7362)] = 213950, - [SMALL_STATE(7363)] = 213963, - [SMALL_STATE(7364)] = 213976, - [SMALL_STATE(7365)] = 213989, - [SMALL_STATE(7366)] = 214002, - [SMALL_STATE(7367)] = 214015, - [SMALL_STATE(7368)] = 214028, - [SMALL_STATE(7369)] = 214041, - [SMALL_STATE(7370)] = 214054, - [SMALL_STATE(7371)] = 214067, - [SMALL_STATE(7372)] = 214080, - [SMALL_STATE(7373)] = 214093, - [SMALL_STATE(7374)] = 214106, - [SMALL_STATE(7375)] = 214119, - [SMALL_STATE(7376)] = 214132, - [SMALL_STATE(7377)] = 214145, - [SMALL_STATE(7378)] = 214158, - [SMALL_STATE(7379)] = 214171, - [SMALL_STATE(7380)] = 214184, - [SMALL_STATE(7381)] = 214197, - [SMALL_STATE(7382)] = 214210, - [SMALL_STATE(7383)] = 214223, - [SMALL_STATE(7384)] = 214236, - [SMALL_STATE(7385)] = 214249, - [SMALL_STATE(7386)] = 214262, - [SMALL_STATE(7387)] = 214275, - [SMALL_STATE(7388)] = 214288, - [SMALL_STATE(7389)] = 214301, - [SMALL_STATE(7390)] = 214314, - [SMALL_STATE(7391)] = 214327, - [SMALL_STATE(7392)] = 214340, - [SMALL_STATE(7393)] = 214353, - [SMALL_STATE(7394)] = 214366, - [SMALL_STATE(7395)] = 214379, - [SMALL_STATE(7396)] = 214392, - [SMALL_STATE(7397)] = 214405, - [SMALL_STATE(7398)] = 214418, - [SMALL_STATE(7399)] = 214431, - [SMALL_STATE(7400)] = 214444, - [SMALL_STATE(7401)] = 214457, - [SMALL_STATE(7402)] = 214470, - [SMALL_STATE(7403)] = 214483, - [SMALL_STATE(7404)] = 214496, - [SMALL_STATE(7405)] = 214509, - [SMALL_STATE(7406)] = 214522, - [SMALL_STATE(7407)] = 214535, - [SMALL_STATE(7408)] = 214548, - [SMALL_STATE(7409)] = 214561, - [SMALL_STATE(7410)] = 214574, - [SMALL_STATE(7411)] = 214587, - [SMALL_STATE(7412)] = 214600, - [SMALL_STATE(7413)] = 214613, - [SMALL_STATE(7414)] = 214626, - [SMALL_STATE(7415)] = 214639, - [SMALL_STATE(7416)] = 214652, - [SMALL_STATE(7417)] = 214665, - [SMALL_STATE(7418)] = 214678, - [SMALL_STATE(7419)] = 214691, - [SMALL_STATE(7420)] = 214704, - [SMALL_STATE(7421)] = 214717, - [SMALL_STATE(7422)] = 214730, - [SMALL_STATE(7423)] = 214743, - [SMALL_STATE(7424)] = 214756, - [SMALL_STATE(7425)] = 214769, - [SMALL_STATE(7426)] = 214782, - [SMALL_STATE(7427)] = 214795, - [SMALL_STATE(7428)] = 214808, - [SMALL_STATE(7429)] = 214821, - [SMALL_STATE(7430)] = 214834, - [SMALL_STATE(7431)] = 214847, - [SMALL_STATE(7432)] = 214860, - [SMALL_STATE(7433)] = 214873, - [SMALL_STATE(7434)] = 214886, - [SMALL_STATE(7435)] = 214899, - [SMALL_STATE(7436)] = 214912, - [SMALL_STATE(7437)] = 214925, - [SMALL_STATE(7438)] = 214938, - [SMALL_STATE(7439)] = 214951, - [SMALL_STATE(7440)] = 214964, - [SMALL_STATE(7441)] = 214977, - [SMALL_STATE(7442)] = 214990, - [SMALL_STATE(7443)] = 215003, - [SMALL_STATE(7444)] = 215016, - [SMALL_STATE(7445)] = 215029, - [SMALL_STATE(7446)] = 215042, - [SMALL_STATE(7447)] = 215055, - [SMALL_STATE(7448)] = 215068, - [SMALL_STATE(7449)] = 215081, - [SMALL_STATE(7450)] = 215094, - [SMALL_STATE(7451)] = 215107, - [SMALL_STATE(7452)] = 215120, - [SMALL_STATE(7453)] = 215133, - [SMALL_STATE(7454)] = 215146, - [SMALL_STATE(7455)] = 215159, - [SMALL_STATE(7456)] = 215172, - [SMALL_STATE(7457)] = 215185, - [SMALL_STATE(7458)] = 215198, - [SMALL_STATE(7459)] = 215211, - [SMALL_STATE(7460)] = 215224, - [SMALL_STATE(7461)] = 215237, - [SMALL_STATE(7462)] = 215250, - [SMALL_STATE(7463)] = 215263, - [SMALL_STATE(7464)] = 215276, - [SMALL_STATE(7465)] = 215289, - [SMALL_STATE(7466)] = 215302, - [SMALL_STATE(7467)] = 215315, - [SMALL_STATE(7468)] = 215328, - [SMALL_STATE(7469)] = 215341, - [SMALL_STATE(7470)] = 215354, - [SMALL_STATE(7471)] = 215367, - [SMALL_STATE(7472)] = 215380, - [SMALL_STATE(7473)] = 215393, - [SMALL_STATE(7474)] = 215406, - [SMALL_STATE(7475)] = 215419, - [SMALL_STATE(7476)] = 215432, - [SMALL_STATE(7477)] = 215445, - [SMALL_STATE(7478)] = 215458, - [SMALL_STATE(7479)] = 215471, - [SMALL_STATE(7480)] = 215484, - [SMALL_STATE(7481)] = 215497, - [SMALL_STATE(7482)] = 215510, - [SMALL_STATE(7483)] = 215523, - [SMALL_STATE(7484)] = 215536, - [SMALL_STATE(7485)] = 215549, + [SMALL_STATE(4597)] = 165230, + [SMALL_STATE(4598)] = 165259, + [SMALL_STATE(4599)] = 165290, + [SMALL_STATE(4600)] = 165321, + [SMALL_STATE(4601)] = 165348, + [SMALL_STATE(4602)] = 165379, + [SMALL_STATE(4603)] = 165410, + [SMALL_STATE(4604)] = 165441, + [SMALL_STATE(4605)] = 165472, + [SMALL_STATE(4606)] = 165501, + [SMALL_STATE(4607)] = 165528, + [SMALL_STATE(4608)] = 165555, + [SMALL_STATE(4609)] = 165574, + [SMALL_STATE(4610)] = 165601, + [SMALL_STATE(4611)] = 165628, + [SMALL_STATE(4612)] = 165655, + [SMALL_STATE(4613)] = 165676, + [SMALL_STATE(4614)] = 165699, + [SMALL_STATE(4615)] = 165726, + [SMALL_STATE(4616)] = 165753, + [SMALL_STATE(4617)] = 165784, + [SMALL_STATE(4618)] = 165803, + [SMALL_STATE(4619)] = 165825, + [SMALL_STATE(4620)] = 165847, + [SMALL_STATE(4621)] = 165875, + [SMALL_STATE(4622)] = 165903, + [SMALL_STATE(4623)] = 165925, + [SMALL_STATE(4624)] = 165953, + [SMALL_STATE(4625)] = 165981, + [SMALL_STATE(4626)] = 166009, + [SMALL_STATE(4627)] = 166037, + [SMALL_STATE(4628)] = 166065, + [SMALL_STATE(4629)] = 166087, + [SMALL_STATE(4630)] = 166109, + [SMALL_STATE(4631)] = 166131, + [SMALL_STATE(4632)] = 166153, + [SMALL_STATE(4633)] = 166171, + [SMALL_STATE(4634)] = 166193, + [SMALL_STATE(4635)] = 166219, + [SMALL_STATE(4636)] = 166247, + [SMALL_STATE(4637)] = 166269, + [SMALL_STATE(4638)] = 166295, + [SMALL_STATE(4639)] = 166317, + [SMALL_STATE(4640)] = 166335, + [SMALL_STATE(4641)] = 166363, + [SMALL_STATE(4642)] = 166391, + [SMALL_STATE(4643)] = 166409, + [SMALL_STATE(4644)] = 166437, + [SMALL_STATE(4645)] = 166463, + [SMALL_STATE(4646)] = 166491, + [SMALL_STATE(4647)] = 166519, + [SMALL_STATE(4648)] = 166547, + [SMALL_STATE(4649)] = 166575, + [SMALL_STATE(4650)] = 166601, + [SMALL_STATE(4651)] = 166629, + [SMALL_STATE(4652)] = 166655, + [SMALL_STATE(4653)] = 166683, + [SMALL_STATE(4654)] = 166709, + [SMALL_STATE(4655)] = 166731, + [SMALL_STATE(4656)] = 166759, + [SMALL_STATE(4657)] = 166781, + [SMALL_STATE(4658)] = 166807, + [SMALL_STATE(4659)] = 166835, + [SMALL_STATE(4660)] = 166857, + [SMALL_STATE(4661)] = 166883, + [SMALL_STATE(4662)] = 166909, + [SMALL_STATE(4663)] = 166931, + [SMALL_STATE(4664)] = 166953, + [SMALL_STATE(4665)] = 166973, + [SMALL_STATE(4666)] = 167001, + [SMALL_STATE(4667)] = 167027, + [SMALL_STATE(4668)] = 167049, + [SMALL_STATE(4669)] = 167077, + [SMALL_STATE(4670)] = 167099, + [SMALL_STATE(4671)] = 167127, + [SMALL_STATE(4672)] = 167149, + [SMALL_STATE(4673)] = 167171, + [SMALL_STATE(4674)] = 167193, + [SMALL_STATE(4675)] = 167221, + [SMALL_STATE(4676)] = 167249, + [SMALL_STATE(4677)] = 167271, + [SMALL_STATE(4678)] = 167299, + [SMALL_STATE(4679)] = 167317, + [SMALL_STATE(4680)] = 167335, + [SMALL_STATE(4681)] = 167363, + [SMALL_STATE(4682)] = 167381, + [SMALL_STATE(4683)] = 167403, + [SMALL_STATE(4684)] = 167425, + [SMALL_STATE(4685)] = 167453, + [SMALL_STATE(4686)] = 167481, + [SMALL_STATE(4687)] = 167509, + [SMALL_STATE(4688)] = 167537, + [SMALL_STATE(4689)] = 167557, + [SMALL_STATE(4690)] = 167585, + [SMALL_STATE(4691)] = 167603, + [SMALL_STATE(4692)] = 167623, + [SMALL_STATE(4693)] = 167651, + [SMALL_STATE(4694)] = 167669, + [SMALL_STATE(4695)] = 167695, + [SMALL_STATE(4696)] = 167719, + [SMALL_STATE(4697)] = 167737, + [SMALL_STATE(4698)] = 167763, + [SMALL_STATE(4699)] = 167791, + [SMALL_STATE(4700)] = 167819, + [SMALL_STATE(4701)] = 167837, + [SMALL_STATE(4702)] = 167865, + [SMALL_STATE(4703)] = 167887, + [SMALL_STATE(4704)] = 167909, + [SMALL_STATE(4705)] = 167931, + [SMALL_STATE(4706)] = 167959, + [SMALL_STATE(4707)] = 167987, + [SMALL_STATE(4708)] = 168005, + [SMALL_STATE(4709)] = 168027, + [SMALL_STATE(4710)] = 168045, + [SMALL_STATE(4711)] = 168067, + [SMALL_STATE(4712)] = 168095, + [SMALL_STATE(4713)] = 168113, + [SMALL_STATE(4714)] = 168141, + [SMALL_STATE(4715)] = 168169, + [SMALL_STATE(4716)] = 168191, + [SMALL_STATE(4717)] = 168213, + [SMALL_STATE(4718)] = 168241, + [SMALL_STATE(4719)] = 168267, + [SMALL_STATE(4720)] = 168295, + [SMALL_STATE(4721)] = 168317, + [SMALL_STATE(4722)] = 168345, + [SMALL_STATE(4723)] = 168373, + [SMALL_STATE(4724)] = 168395, + [SMALL_STATE(4725)] = 168417, + [SMALL_STATE(4726)] = 168437, + [SMALL_STATE(4727)] = 168459, + [SMALL_STATE(4728)] = 168481, + [SMALL_STATE(4729)] = 168509, + [SMALL_STATE(4730)] = 168535, + [SMALL_STATE(4731)] = 168557, + [SMALL_STATE(4732)] = 168579, + [SMALL_STATE(4733)] = 168607, + [SMALL_STATE(4734)] = 168633, + [SMALL_STATE(4735)] = 168659, + [SMALL_STATE(4736)] = 168685, + [SMALL_STATE(4737)] = 168707, + [SMALL_STATE(4738)] = 168729, + [SMALL_STATE(4739)] = 168757, + [SMALL_STATE(4740)] = 168779, + [SMALL_STATE(4741)] = 168807, + [SMALL_STATE(4742)] = 168835, + [SMALL_STATE(4743)] = 168853, + [SMALL_STATE(4744)] = 168881, + [SMALL_STATE(4745)] = 168903, + [SMALL_STATE(4746)] = 168925, + [SMALL_STATE(4747)] = 168953, + [SMALL_STATE(4748)] = 168979, + [SMALL_STATE(4749)] = 169001, + [SMALL_STATE(4750)] = 169023, + [SMALL_STATE(4751)] = 169051, + [SMALL_STATE(4752)] = 169077, + [SMALL_STATE(4753)] = 169099, + [SMALL_STATE(4754)] = 169117, + [SMALL_STATE(4755)] = 169139, + [SMALL_STATE(4756)] = 169157, + [SMALL_STATE(4757)] = 169175, + [SMALL_STATE(4758)] = 169203, + [SMALL_STATE(4759)] = 169223, + [SMALL_STATE(4760)] = 169245, + [SMALL_STATE(4761)] = 169267, + [SMALL_STATE(4762)] = 169285, + [SMALL_STATE(4763)] = 169303, + [SMALL_STATE(4764)] = 169329, + [SMALL_STATE(4765)] = 169357, + [SMALL_STATE(4766)] = 169385, + [SMALL_STATE(4767)] = 169403, + [SMALL_STATE(4768)] = 169431, + [SMALL_STATE(4769)] = 169449, + [SMALL_STATE(4770)] = 169475, + [SMALL_STATE(4771)] = 169503, + [SMALL_STATE(4772)] = 169531, + [SMALL_STATE(4773)] = 169551, + [SMALL_STATE(4774)] = 169569, + [SMALL_STATE(4775)] = 169587, + [SMALL_STATE(4776)] = 169605, + [SMALL_STATE(4777)] = 169625, + [SMALL_STATE(4778)] = 169651, + [SMALL_STATE(4779)] = 169679, + [SMALL_STATE(4780)] = 169707, + [SMALL_STATE(4781)] = 169729, + [SMALL_STATE(4782)] = 169755, + [SMALL_STATE(4783)] = 169777, + [SMALL_STATE(4784)] = 169805, + [SMALL_STATE(4785)] = 169823, + [SMALL_STATE(4786)] = 169851, + [SMALL_STATE(4787)] = 169873, + [SMALL_STATE(4788)] = 169891, + [SMALL_STATE(4789)] = 169919, + [SMALL_STATE(4790)] = 169947, + [SMALL_STATE(4791)] = 169969, + [SMALL_STATE(4792)] = 169991, + [SMALL_STATE(4793)] = 170013, + [SMALL_STATE(4794)] = 170041, + [SMALL_STATE(4795)] = 170069, + [SMALL_STATE(4796)] = 170093, + [SMALL_STATE(4797)] = 170121, + [SMALL_STATE(4798)] = 170139, + [SMALL_STATE(4799)] = 170167, + [SMALL_STATE(4800)] = 170195, + [SMALL_STATE(4801)] = 170213, + [SMALL_STATE(4802)] = 170231, + [SMALL_STATE(4803)] = 170249, + [SMALL_STATE(4804)] = 170267, + [SMALL_STATE(4805)] = 170285, + [SMALL_STATE(4806)] = 170303, + [SMALL_STATE(4807)] = 170321, + [SMALL_STATE(4808)] = 170349, + [SMALL_STATE(4809)] = 170367, + [SMALL_STATE(4810)] = 170385, + [SMALL_STATE(4811)] = 170403, + [SMALL_STATE(4812)] = 170421, + [SMALL_STATE(4813)] = 170449, + [SMALL_STATE(4814)] = 170467, + [SMALL_STATE(4815)] = 170485, + [SMALL_STATE(4816)] = 170513, + [SMALL_STATE(4817)] = 170541, + [SMALL_STATE(4818)] = 170559, + [SMALL_STATE(4819)] = 170577, + [SMALL_STATE(4820)] = 170603, + [SMALL_STATE(4821)] = 170625, + [SMALL_STATE(4822)] = 170643, + [SMALL_STATE(4823)] = 170661, + [SMALL_STATE(4824)] = 170689, + [SMALL_STATE(4825)] = 170711, + [SMALL_STATE(4826)] = 170729, + [SMALL_STATE(4827)] = 170757, + [SMALL_STATE(4828)] = 170785, + [SMALL_STATE(4829)] = 170813, + [SMALL_STATE(4830)] = 170835, + [SMALL_STATE(4831)] = 170863, + [SMALL_STATE(4832)] = 170891, + [SMALL_STATE(4833)] = 170919, + [SMALL_STATE(4834)] = 170941, + [SMALL_STATE(4835)] = 170967, + [SMALL_STATE(4836)] = 170989, + [SMALL_STATE(4837)] = 171017, + [SMALL_STATE(4838)] = 171045, + [SMALL_STATE(4839)] = 171065, + [SMALL_STATE(4840)] = 171087, + [SMALL_STATE(4841)] = 171107, + [SMALL_STATE(4842)] = 171135, + [SMALL_STATE(4843)] = 171159, + [SMALL_STATE(4844)] = 171179, + [SMALL_STATE(4845)] = 171199, + [SMALL_STATE(4846)] = 171221, + [SMALL_STATE(4847)] = 171249, + [SMALL_STATE(4848)] = 171271, + [SMALL_STATE(4849)] = 171292, + [SMALL_STATE(4850)] = 171313, + [SMALL_STATE(4851)] = 171334, + [SMALL_STATE(4852)] = 171359, + [SMALL_STATE(4853)] = 171384, + [SMALL_STATE(4854)] = 171405, + [SMALL_STATE(4855)] = 171422, + [SMALL_STATE(4856)] = 171447, + [SMALL_STATE(4857)] = 171468, + [SMALL_STATE(4858)] = 171493, + [SMALL_STATE(4859)] = 171518, + [SMALL_STATE(4860)] = 171539, + [SMALL_STATE(4861)] = 171564, + [SMALL_STATE(4862)] = 171581, + [SMALL_STATE(4863)] = 171600, + [SMALL_STATE(4864)] = 171625, + [SMALL_STATE(4865)] = 171646, + [SMALL_STATE(4866)] = 171667, + [SMALL_STATE(4867)] = 171684, + [SMALL_STATE(4868)] = 171701, + [SMALL_STATE(4869)] = 171718, + [SMALL_STATE(4870)] = 171735, + [SMALL_STATE(4871)] = 171756, + [SMALL_STATE(4872)] = 171777, + [SMALL_STATE(4873)] = 171798, + [SMALL_STATE(4874)] = 171819, + [SMALL_STATE(4875)] = 171836, + [SMALL_STATE(4876)] = 171859, + [SMALL_STATE(4877)] = 171876, + [SMALL_STATE(4878)] = 171893, + [SMALL_STATE(4879)] = 171918, + [SMALL_STATE(4880)] = 171939, + [SMALL_STATE(4881)] = 171962, + [SMALL_STATE(4882)] = 171979, + [SMALL_STATE(4883)] = 171996, + [SMALL_STATE(4884)] = 172013, + [SMALL_STATE(4885)] = 172030, + [SMALL_STATE(4886)] = 172047, + [SMALL_STATE(4887)] = 172064, + [SMALL_STATE(4888)] = 172081, + [SMALL_STATE(4889)] = 172098, + [SMALL_STATE(4890)] = 172115, + [SMALL_STATE(4891)] = 172132, + [SMALL_STATE(4892)] = 172149, + [SMALL_STATE(4893)] = 172166, + [SMALL_STATE(4894)] = 172183, + [SMALL_STATE(4895)] = 172200, + [SMALL_STATE(4896)] = 172217, + [SMALL_STATE(4897)] = 172234, + [SMALL_STATE(4898)] = 172251, + [SMALL_STATE(4899)] = 172268, + [SMALL_STATE(4900)] = 172285, + [SMALL_STATE(4901)] = 172302, + [SMALL_STATE(4902)] = 172319, + [SMALL_STATE(4903)] = 172336, + [SMALL_STATE(4904)] = 172353, + [SMALL_STATE(4905)] = 172370, + [SMALL_STATE(4906)] = 172387, + [SMALL_STATE(4907)] = 172404, + [SMALL_STATE(4908)] = 172421, + [SMALL_STATE(4909)] = 172438, + [SMALL_STATE(4910)] = 172455, + [SMALL_STATE(4911)] = 172472, + [SMALL_STATE(4912)] = 172489, + [SMALL_STATE(4913)] = 172506, + [SMALL_STATE(4914)] = 172523, + [SMALL_STATE(4915)] = 172540, + [SMALL_STATE(4916)] = 172557, + [SMALL_STATE(4917)] = 172574, + [SMALL_STATE(4918)] = 172591, + [SMALL_STATE(4919)] = 172608, + [SMALL_STATE(4920)] = 172625, + [SMALL_STATE(4921)] = 172642, + [SMALL_STATE(4922)] = 172659, + [SMALL_STATE(4923)] = 172676, + [SMALL_STATE(4924)] = 172693, + [SMALL_STATE(4925)] = 172710, + [SMALL_STATE(4926)] = 172727, + [SMALL_STATE(4927)] = 172744, + [SMALL_STATE(4928)] = 172761, + [SMALL_STATE(4929)] = 172778, + [SMALL_STATE(4930)] = 172795, + [SMALL_STATE(4931)] = 172812, + [SMALL_STATE(4932)] = 172829, + [SMALL_STATE(4933)] = 172846, + [SMALL_STATE(4934)] = 172863, + [SMALL_STATE(4935)] = 172880, + [SMALL_STATE(4936)] = 172897, + [SMALL_STATE(4937)] = 172914, + [SMALL_STATE(4938)] = 172931, + [SMALL_STATE(4939)] = 172948, + [SMALL_STATE(4940)] = 172965, + [SMALL_STATE(4941)] = 172982, + [SMALL_STATE(4942)] = 172999, + [SMALL_STATE(4943)] = 173016, + [SMALL_STATE(4944)] = 173033, + [SMALL_STATE(4945)] = 173050, + [SMALL_STATE(4946)] = 173067, + [SMALL_STATE(4947)] = 173084, + [SMALL_STATE(4948)] = 173101, + [SMALL_STATE(4949)] = 173118, + [SMALL_STATE(4950)] = 173135, + [SMALL_STATE(4951)] = 173152, + [SMALL_STATE(4952)] = 173169, + [SMALL_STATE(4953)] = 173186, + [SMALL_STATE(4954)] = 173203, + [SMALL_STATE(4955)] = 173220, + [SMALL_STATE(4956)] = 173237, + [SMALL_STATE(4957)] = 173254, + [SMALL_STATE(4958)] = 173271, + [SMALL_STATE(4959)] = 173288, + [SMALL_STATE(4960)] = 173305, + [SMALL_STATE(4961)] = 173322, + [SMALL_STATE(4962)] = 173339, + [SMALL_STATE(4963)] = 173356, + [SMALL_STATE(4964)] = 173373, + [SMALL_STATE(4965)] = 173390, + [SMALL_STATE(4966)] = 173407, + [SMALL_STATE(4967)] = 173424, + [SMALL_STATE(4968)] = 173441, + [SMALL_STATE(4969)] = 173458, + [SMALL_STATE(4970)] = 173475, + [SMALL_STATE(4971)] = 173492, + [SMALL_STATE(4972)] = 173509, + [SMALL_STATE(4973)] = 173526, + [SMALL_STATE(4974)] = 173543, + [SMALL_STATE(4975)] = 173560, + [SMALL_STATE(4976)] = 173577, + [SMALL_STATE(4977)] = 173598, + [SMALL_STATE(4978)] = 173619, + [SMALL_STATE(4979)] = 173642, + [SMALL_STATE(4980)] = 173667, + [SMALL_STATE(4981)] = 173684, + [SMALL_STATE(4982)] = 173709, + [SMALL_STATE(4983)] = 173730, + [SMALL_STATE(4984)] = 173755, + [SMALL_STATE(4985)] = 173776, + [SMALL_STATE(4986)] = 173801, + [SMALL_STATE(4987)] = 173826, + [SMALL_STATE(4988)] = 173851, + [SMALL_STATE(4989)] = 173872, + [SMALL_STATE(4990)] = 173893, + [SMALL_STATE(4991)] = 173918, + [SMALL_STATE(4992)] = 173943, + [SMALL_STATE(4993)] = 173968, + [SMALL_STATE(4994)] = 173993, + [SMALL_STATE(4995)] = 174014, + [SMALL_STATE(4996)] = 174039, + [SMALL_STATE(4997)] = 174060, + [SMALL_STATE(4998)] = 174085, + [SMALL_STATE(4999)] = 174106, + [SMALL_STATE(5000)] = 174127, + [SMALL_STATE(5001)] = 174146, + [SMALL_STATE(5002)] = 174171, + [SMALL_STATE(5003)] = 174196, + [SMALL_STATE(5004)] = 174217, + [SMALL_STATE(5005)] = 174242, + [SMALL_STATE(5006)] = 174263, + [SMALL_STATE(5007)] = 174286, + [SMALL_STATE(5008)] = 174307, + [SMALL_STATE(5009)] = 174332, + [SMALL_STATE(5010)] = 174353, + [SMALL_STATE(5011)] = 174374, + [SMALL_STATE(5012)] = 174395, + [SMALL_STATE(5013)] = 174412, + [SMALL_STATE(5014)] = 174433, + [SMALL_STATE(5015)] = 174450, + [SMALL_STATE(5016)] = 174475, + [SMALL_STATE(5017)] = 174496, + [SMALL_STATE(5018)] = 174517, + [SMALL_STATE(5019)] = 174538, + [SMALL_STATE(5020)] = 174561, + [SMALL_STATE(5021)] = 174582, + [SMALL_STATE(5022)] = 174603, + [SMALL_STATE(5023)] = 174628, + [SMALL_STATE(5024)] = 174653, + [SMALL_STATE(5025)] = 174678, + [SMALL_STATE(5026)] = 174699, + [SMALL_STATE(5027)] = 174720, + [SMALL_STATE(5028)] = 174745, + [SMALL_STATE(5029)] = 174770, + [SMALL_STATE(5030)] = 174795, + [SMALL_STATE(5031)] = 174820, + [SMALL_STATE(5032)] = 174845, + [SMALL_STATE(5033)] = 174870, + [SMALL_STATE(5034)] = 174895, + [SMALL_STATE(5035)] = 174920, + [SMALL_STATE(5036)] = 174945, + [SMALL_STATE(5037)] = 174962, + [SMALL_STATE(5038)] = 174983, + [SMALL_STATE(5039)] = 175004, + [SMALL_STATE(5040)] = 175021, + [SMALL_STATE(5041)] = 175046, + [SMALL_STATE(5042)] = 175071, + [SMALL_STATE(5043)] = 175092, + [SMALL_STATE(5044)] = 175113, + [SMALL_STATE(5045)] = 175134, + [SMALL_STATE(5046)] = 175159, + [SMALL_STATE(5047)] = 175184, + [SMALL_STATE(5048)] = 175209, + [SMALL_STATE(5049)] = 175234, + [SMALL_STATE(5050)] = 175255, + [SMALL_STATE(5051)] = 175276, + [SMALL_STATE(5052)] = 175301, + [SMALL_STATE(5053)] = 175326, + [SMALL_STATE(5054)] = 175347, + [SMALL_STATE(5055)] = 175372, + [SMALL_STATE(5056)] = 175397, + [SMALL_STATE(5057)] = 175418, + [SMALL_STATE(5058)] = 175439, + [SMALL_STATE(5059)] = 175460, + [SMALL_STATE(5060)] = 175485, + [SMALL_STATE(5061)] = 175510, + [SMALL_STATE(5062)] = 175531, + [SMALL_STATE(5063)] = 175556, + [SMALL_STATE(5064)] = 175581, + [SMALL_STATE(5065)] = 175606, + [SMALL_STATE(5066)] = 175631, + [SMALL_STATE(5067)] = 175652, + [SMALL_STATE(5068)] = 175677, + [SMALL_STATE(5069)] = 175702, + [SMALL_STATE(5070)] = 175727, + [SMALL_STATE(5071)] = 175752, + [SMALL_STATE(5072)] = 175777, + [SMALL_STATE(5073)] = 175802, + [SMALL_STATE(5074)] = 175827, + [SMALL_STATE(5075)] = 175852, + [SMALL_STATE(5076)] = 175873, + [SMALL_STATE(5077)] = 175898, + [SMALL_STATE(5078)] = 175923, + [SMALL_STATE(5079)] = 175944, + [SMALL_STATE(5080)] = 175965, + [SMALL_STATE(5081)] = 175986, + [SMALL_STATE(5082)] = 176003, + [SMALL_STATE(5083)] = 176020, + [SMALL_STATE(5084)] = 176045, + [SMALL_STATE(5085)] = 176062, + [SMALL_STATE(5086)] = 176079, + [SMALL_STATE(5087)] = 176096, + [SMALL_STATE(5088)] = 176119, + [SMALL_STATE(5089)] = 176136, + [SMALL_STATE(5090)] = 176153, + [SMALL_STATE(5091)] = 176170, + [SMALL_STATE(5092)] = 176191, + [SMALL_STATE(5093)] = 176208, + [SMALL_STATE(5094)] = 176225, + [SMALL_STATE(5095)] = 176242, + [SMALL_STATE(5096)] = 176259, + [SMALL_STATE(5097)] = 176276, + [SMALL_STATE(5098)] = 176297, + [SMALL_STATE(5099)] = 176322, + [SMALL_STATE(5100)] = 176347, + [SMALL_STATE(5101)] = 176372, + [SMALL_STATE(5102)] = 176393, + [SMALL_STATE(5103)] = 176418, + [SMALL_STATE(5104)] = 176435, + [SMALL_STATE(5105)] = 176460, + [SMALL_STATE(5106)] = 176485, + [SMALL_STATE(5107)] = 176502, + [SMALL_STATE(5108)] = 176527, + [SMALL_STATE(5109)] = 176552, + [SMALL_STATE(5110)] = 176569, + [SMALL_STATE(5111)] = 176586, + [SMALL_STATE(5112)] = 176611, + [SMALL_STATE(5113)] = 176636, + [SMALL_STATE(5114)] = 176661, + [SMALL_STATE(5115)] = 176686, + [SMALL_STATE(5116)] = 176711, + [SMALL_STATE(5117)] = 176736, + [SMALL_STATE(5118)] = 176759, + [SMALL_STATE(5119)] = 176784, + [SMALL_STATE(5120)] = 176801, + [SMALL_STATE(5121)] = 176822, + [SMALL_STATE(5122)] = 176839, + [SMALL_STATE(5123)] = 176856, + [SMALL_STATE(5124)] = 176873, + [SMALL_STATE(5125)] = 176898, + [SMALL_STATE(5126)] = 176919, + [SMALL_STATE(5127)] = 176940, + [SMALL_STATE(5128)] = 176957, + [SMALL_STATE(5129)] = 176982, + [SMALL_STATE(5130)] = 177007, + [SMALL_STATE(5131)] = 177032, + [SMALL_STATE(5132)] = 177057, + [SMALL_STATE(5133)] = 177082, + [SMALL_STATE(5134)] = 177105, + [SMALL_STATE(5135)] = 177130, + [SMALL_STATE(5136)] = 177155, + [SMALL_STATE(5137)] = 177176, + [SMALL_STATE(5138)] = 177197, + [SMALL_STATE(5139)] = 177214, + [SMALL_STATE(5140)] = 177231, + [SMALL_STATE(5141)] = 177248, + [SMALL_STATE(5142)] = 177265, + [SMALL_STATE(5143)] = 177282, + [SMALL_STATE(5144)] = 177299, + [SMALL_STATE(5145)] = 177324, + [SMALL_STATE(5146)] = 177345, + [SMALL_STATE(5147)] = 177366, + [SMALL_STATE(5148)] = 177387, + [SMALL_STATE(5149)] = 177412, + [SMALL_STATE(5150)] = 177437, + [SMALL_STATE(5151)] = 177454, + [SMALL_STATE(5152)] = 177471, + [SMALL_STATE(5153)] = 177488, + [SMALL_STATE(5154)] = 177513, + [SMALL_STATE(5155)] = 177530, + [SMALL_STATE(5156)] = 177555, + [SMALL_STATE(5157)] = 177572, + [SMALL_STATE(5158)] = 177589, + [SMALL_STATE(5159)] = 177610, + [SMALL_STATE(5160)] = 177635, + [SMALL_STATE(5161)] = 177658, + [SMALL_STATE(5162)] = 177683, + [SMALL_STATE(5163)] = 177704, + [SMALL_STATE(5164)] = 177725, + [SMALL_STATE(5165)] = 177750, + [SMALL_STATE(5166)] = 177773, + [SMALL_STATE(5167)] = 177798, + [SMALL_STATE(5168)] = 177823, + [SMALL_STATE(5169)] = 177846, + [SMALL_STATE(5170)] = 177871, + [SMALL_STATE(5171)] = 177888, + [SMALL_STATE(5172)] = 177909, + [SMALL_STATE(5173)] = 177934, + [SMALL_STATE(5174)] = 177959, + [SMALL_STATE(5175)] = 177980, + [SMALL_STATE(5176)] = 178005, + [SMALL_STATE(5177)] = 178030, + [SMALL_STATE(5178)] = 178051, + [SMALL_STATE(5179)] = 178076, + [SMALL_STATE(5180)] = 178097, + [SMALL_STATE(5181)] = 178122, + [SMALL_STATE(5182)] = 178147, + [SMALL_STATE(5183)] = 178168, + [SMALL_STATE(5184)] = 178189, + [SMALL_STATE(5185)] = 178214, + [SMALL_STATE(5186)] = 178239, + [SMALL_STATE(5187)] = 178256, + [SMALL_STATE(5188)] = 178273, + [SMALL_STATE(5189)] = 178290, + [SMALL_STATE(5190)] = 178311, + [SMALL_STATE(5191)] = 178332, + [SMALL_STATE(5192)] = 178353, + [SMALL_STATE(5193)] = 178374, + [SMALL_STATE(5194)] = 178399, + [SMALL_STATE(5195)] = 178424, + [SMALL_STATE(5196)] = 178449, + [SMALL_STATE(5197)] = 178472, + [SMALL_STATE(5198)] = 178495, + [SMALL_STATE(5199)] = 178520, + [SMALL_STATE(5200)] = 178541, + [SMALL_STATE(5201)] = 178558, + [SMALL_STATE(5202)] = 178575, + [SMALL_STATE(5203)] = 178596, + [SMALL_STATE(5204)] = 178621, + [SMALL_STATE(5205)] = 178646, + [SMALL_STATE(5206)] = 178671, + [SMALL_STATE(5207)] = 178696, + [SMALL_STATE(5208)] = 178713, + [SMALL_STATE(5209)] = 178736, + [SMALL_STATE(5210)] = 178761, + [SMALL_STATE(5211)] = 178786, + [SMALL_STATE(5212)] = 178811, + [SMALL_STATE(5213)] = 178832, + [SMALL_STATE(5214)] = 178849, + [SMALL_STATE(5215)] = 178874, + [SMALL_STATE(5216)] = 178895, + [SMALL_STATE(5217)] = 178916, + [SMALL_STATE(5218)] = 178937, + [SMALL_STATE(5219)] = 178958, + [SMALL_STATE(5220)] = 178983, + [SMALL_STATE(5221)] = 179000, + [SMALL_STATE(5222)] = 179021, + [SMALL_STATE(5223)] = 179042, + [SMALL_STATE(5224)] = 179063, + [SMALL_STATE(5225)] = 179084, + [SMALL_STATE(5226)] = 179105, + [SMALL_STATE(5227)] = 179126, + [SMALL_STATE(5228)] = 179151, + [SMALL_STATE(5229)] = 179172, + [SMALL_STATE(5230)] = 179193, + [SMALL_STATE(5231)] = 179214, + [SMALL_STATE(5232)] = 179239, + [SMALL_STATE(5233)] = 179256, + [SMALL_STATE(5234)] = 179273, + [SMALL_STATE(5235)] = 179292, + [SMALL_STATE(5236)] = 179309, + [SMALL_STATE(5237)] = 179326, + [SMALL_STATE(5238)] = 179343, + [SMALL_STATE(5239)] = 179360, + [SMALL_STATE(5240)] = 179377, + [SMALL_STATE(5241)] = 179396, + [SMALL_STATE(5242)] = 179415, + [SMALL_STATE(5243)] = 179436, + [SMALL_STATE(5244)] = 179453, + [SMALL_STATE(5245)] = 179472, + [SMALL_STATE(5246)] = 179497, + [SMALL_STATE(5247)] = 179518, + [SMALL_STATE(5248)] = 179539, + [SMALL_STATE(5249)] = 179556, + [SMALL_STATE(5250)] = 179581, + [SMALL_STATE(5251)] = 179598, + [SMALL_STATE(5252)] = 179623, + [SMALL_STATE(5253)] = 179640, + [SMALL_STATE(5254)] = 179661, + [SMALL_STATE(5255)] = 179682, + [SMALL_STATE(5256)] = 179703, + [SMALL_STATE(5257)] = 179728, + [SMALL_STATE(5258)] = 179749, + [SMALL_STATE(5259)] = 179770, + [SMALL_STATE(5260)] = 179793, + [SMALL_STATE(5261)] = 179816, + [SMALL_STATE(5262)] = 179837, + [SMALL_STATE(5263)] = 179858, + [SMALL_STATE(5264)] = 179879, + [SMALL_STATE(5265)] = 179904, + [SMALL_STATE(5266)] = 179927, + [SMALL_STATE(5267)] = 179948, + [SMALL_STATE(5268)] = 179969, + [SMALL_STATE(5269)] = 179994, + [SMALL_STATE(5270)] = 180015, + [SMALL_STATE(5271)] = 180036, + [SMALL_STATE(5272)] = 180057, + [SMALL_STATE(5273)] = 180082, + [SMALL_STATE(5274)] = 180103, + [SMALL_STATE(5275)] = 180128, + [SMALL_STATE(5276)] = 180149, + [SMALL_STATE(5277)] = 180172, + [SMALL_STATE(5278)] = 180193, + [SMALL_STATE(5279)] = 180214, + [SMALL_STATE(5280)] = 180235, + [SMALL_STATE(5281)] = 180256, + [SMALL_STATE(5282)] = 180279, + [SMALL_STATE(5283)] = 180296, + [SMALL_STATE(5284)] = 180321, + [SMALL_STATE(5285)] = 180342, + [SMALL_STATE(5286)] = 180363, + [SMALL_STATE(5287)] = 180384, + [SMALL_STATE(5288)] = 180405, + [SMALL_STATE(5289)] = 180426, + [SMALL_STATE(5290)] = 180447, + [SMALL_STATE(5291)] = 180468, + [SMALL_STATE(5292)] = 180489, + [SMALL_STATE(5293)] = 180510, + [SMALL_STATE(5294)] = 180531, + [SMALL_STATE(5295)] = 180552, + [SMALL_STATE(5296)] = 180573, + [SMALL_STATE(5297)] = 180594, + [SMALL_STATE(5298)] = 180615, + [SMALL_STATE(5299)] = 180636, + [SMALL_STATE(5300)] = 180657, + [SMALL_STATE(5301)] = 180678, + [SMALL_STATE(5302)] = 180703, + [SMALL_STATE(5303)] = 180724, + [SMALL_STATE(5304)] = 180745, + [SMALL_STATE(5305)] = 180766, + [SMALL_STATE(5306)] = 180787, + [SMALL_STATE(5307)] = 180808, + [SMALL_STATE(5308)] = 180829, + [SMALL_STATE(5309)] = 180850, + [SMALL_STATE(5310)] = 180875, + [SMALL_STATE(5311)] = 180896, + [SMALL_STATE(5312)] = 180917, + [SMALL_STATE(5313)] = 180938, + [SMALL_STATE(5314)] = 180959, + [SMALL_STATE(5315)] = 180980, + [SMALL_STATE(5316)] = 181001, + [SMALL_STATE(5317)] = 181022, + [SMALL_STATE(5318)] = 181043, + [SMALL_STATE(5319)] = 181064, + [SMALL_STATE(5320)] = 181085, + [SMALL_STATE(5321)] = 181108, + [SMALL_STATE(5322)] = 181133, + [SMALL_STATE(5323)] = 181154, + [SMALL_STATE(5324)] = 181175, + [SMALL_STATE(5325)] = 181196, + [SMALL_STATE(5326)] = 181219, + [SMALL_STATE(5327)] = 181244, + [SMALL_STATE(5328)] = 181265, + [SMALL_STATE(5329)] = 181286, + [SMALL_STATE(5330)] = 181307, + [SMALL_STATE(5331)] = 181328, + [SMALL_STATE(5332)] = 181353, + [SMALL_STATE(5333)] = 181378, + [SMALL_STATE(5334)] = 181401, + [SMALL_STATE(5335)] = 181422, + [SMALL_STATE(5336)] = 181443, + [SMALL_STATE(5337)] = 181468, + [SMALL_STATE(5338)] = 181489, + [SMALL_STATE(5339)] = 181510, + [SMALL_STATE(5340)] = 181531, + [SMALL_STATE(5341)] = 181552, + [SMALL_STATE(5342)] = 181569, + [SMALL_STATE(5343)] = 181590, + [SMALL_STATE(5344)] = 181607, + [SMALL_STATE(5345)] = 181632, + [SMALL_STATE(5346)] = 181649, + [SMALL_STATE(5347)] = 181674, + [SMALL_STATE(5348)] = 181699, + [SMALL_STATE(5349)] = 181720, + [SMALL_STATE(5350)] = 181741, + [SMALL_STATE(5351)] = 181766, + [SMALL_STATE(5352)] = 181789, + [SMALL_STATE(5353)] = 181810, + [SMALL_STATE(5354)] = 181827, + [SMALL_STATE(5355)] = 181852, + [SMALL_STATE(5356)] = 181877, + [SMALL_STATE(5357)] = 181894, + [SMALL_STATE(5358)] = 181911, + [SMALL_STATE(5359)] = 181928, + [SMALL_STATE(5360)] = 181945, + [SMALL_STATE(5361)] = 181962, + [SMALL_STATE(5362)] = 181979, + [SMALL_STATE(5363)] = 182004, + [SMALL_STATE(5364)] = 182021, + [SMALL_STATE(5365)] = 182038, + [SMALL_STATE(5366)] = 182063, + [SMALL_STATE(5367)] = 182084, + [SMALL_STATE(5368)] = 182109, + [SMALL_STATE(5369)] = 182130, + [SMALL_STATE(5370)] = 182151, + [SMALL_STATE(5371)] = 182172, + [SMALL_STATE(5372)] = 182193, + [SMALL_STATE(5373)] = 182214, + [SMALL_STATE(5374)] = 182231, + [SMALL_STATE(5375)] = 182252, + [SMALL_STATE(5376)] = 182273, + [SMALL_STATE(5377)] = 182294, + [SMALL_STATE(5378)] = 182315, + [SMALL_STATE(5379)] = 182340, + [SMALL_STATE(5380)] = 182363, + [SMALL_STATE(5381)] = 182384, + [SMALL_STATE(5382)] = 182401, + [SMALL_STATE(5383)] = 182426, + [SMALL_STATE(5384)] = 182447, + [SMALL_STATE(5385)] = 182464, + [SMALL_STATE(5386)] = 182485, + [SMALL_STATE(5387)] = 182510, + [SMALL_STATE(5388)] = 182531, + [SMALL_STATE(5389)] = 182548, + [SMALL_STATE(5390)] = 182573, + [SMALL_STATE(5391)] = 182594, + [SMALL_STATE(5392)] = 182615, + [SMALL_STATE(5393)] = 182638, + [SMALL_STATE(5394)] = 182663, + [SMALL_STATE(5395)] = 182688, + [SMALL_STATE(5396)] = 182709, + [SMALL_STATE(5397)] = 182734, + [SMALL_STATE(5398)] = 182759, + [SMALL_STATE(5399)] = 182780, + [SMALL_STATE(5400)] = 182801, + [SMALL_STATE(5401)] = 182822, + [SMALL_STATE(5402)] = 182847, + [SMALL_STATE(5403)] = 182872, + [SMALL_STATE(5404)] = 182895, + [SMALL_STATE(5405)] = 182920, + [SMALL_STATE(5406)] = 182941, + [SMALL_STATE(5407)] = 182962, + [SMALL_STATE(5408)] = 182983, + [SMALL_STATE(5409)] = 183004, + [SMALL_STATE(5410)] = 183027, + [SMALL_STATE(5411)] = 183048, + [SMALL_STATE(5412)] = 183073, + [SMALL_STATE(5413)] = 183093, + [SMALL_STATE(5414)] = 183115, + [SMALL_STATE(5415)] = 183137, + [SMALL_STATE(5416)] = 183159, + [SMALL_STATE(5417)] = 183181, + [SMALL_STATE(5418)] = 183203, + [SMALL_STATE(5419)] = 183223, + [SMALL_STATE(5420)] = 183245, + [SMALL_STATE(5421)] = 183265, + [SMALL_STATE(5422)] = 183287, + [SMALL_STATE(5423)] = 183307, + [SMALL_STATE(5424)] = 183329, + [SMALL_STATE(5425)] = 183351, + [SMALL_STATE(5426)] = 183371, + [SMALL_STATE(5427)] = 183391, + [SMALL_STATE(5428)] = 183413, + [SMALL_STATE(5429)] = 183433, + [SMALL_STATE(5430)] = 183453, + [SMALL_STATE(5431)] = 183475, + [SMALL_STATE(5432)] = 183495, + [SMALL_STATE(5433)] = 183517, + [SMALL_STATE(5434)] = 183537, + [SMALL_STATE(5435)] = 183559, + [SMALL_STATE(5436)] = 183579, + [SMALL_STATE(5437)] = 183599, + [SMALL_STATE(5438)] = 183619, + [SMALL_STATE(5439)] = 183639, + [SMALL_STATE(5440)] = 183659, + [SMALL_STATE(5441)] = 183679, + [SMALL_STATE(5442)] = 183699, + [SMALL_STATE(5443)] = 183719, + [SMALL_STATE(5444)] = 183739, + [SMALL_STATE(5445)] = 183761, + [SMALL_STATE(5446)] = 183781, + [SMALL_STATE(5447)] = 183801, + [SMALL_STATE(5448)] = 183821, + [SMALL_STATE(5449)] = 183841, + [SMALL_STATE(5450)] = 183861, + [SMALL_STATE(5451)] = 183881, + [SMALL_STATE(5452)] = 183903, + [SMALL_STATE(5453)] = 183925, + [SMALL_STATE(5454)] = 183945, + [SMALL_STATE(5455)] = 183965, + [SMALL_STATE(5456)] = 183985, + [SMALL_STATE(5457)] = 184005, + [SMALL_STATE(5458)] = 184025, + [SMALL_STATE(5459)] = 184045, + [SMALL_STATE(5460)] = 184065, + [SMALL_STATE(5461)] = 184085, + [SMALL_STATE(5462)] = 184105, + [SMALL_STATE(5463)] = 184125, + [SMALL_STATE(5464)] = 184147, + [SMALL_STATE(5465)] = 184169, + [SMALL_STATE(5466)] = 184191, + [SMALL_STATE(5467)] = 184211, + [SMALL_STATE(5468)] = 184233, + [SMALL_STATE(5469)] = 184253, + [SMALL_STATE(5470)] = 184273, + [SMALL_STATE(5471)] = 184293, + [SMALL_STATE(5472)] = 184315, + [SMALL_STATE(5473)] = 184337, + [SMALL_STATE(5474)] = 184359, + [SMALL_STATE(5475)] = 184379, + [SMALL_STATE(5476)] = 184401, + [SMALL_STATE(5477)] = 184421, + [SMALL_STATE(5478)] = 184441, + [SMALL_STATE(5479)] = 184461, + [SMALL_STATE(5480)] = 184483, + [SMALL_STATE(5481)] = 184503, + [SMALL_STATE(5482)] = 184523, + [SMALL_STATE(5483)] = 184543, + [SMALL_STATE(5484)] = 184563, + [SMALL_STATE(5485)] = 184583, + [SMALL_STATE(5486)] = 184603, + [SMALL_STATE(5487)] = 184623, + [SMALL_STATE(5488)] = 184643, + [SMALL_STATE(5489)] = 184663, + [SMALL_STATE(5490)] = 184683, + [SMALL_STATE(5491)] = 184705, + [SMALL_STATE(5492)] = 184725, + [SMALL_STATE(5493)] = 184745, + [SMALL_STATE(5494)] = 184765, + [SMALL_STATE(5495)] = 184785, + [SMALL_STATE(5496)] = 184807, + [SMALL_STATE(5497)] = 184827, + [SMALL_STATE(5498)] = 184847, + [SMALL_STATE(5499)] = 184869, + [SMALL_STATE(5500)] = 184889, + [SMALL_STATE(5501)] = 184911, + [SMALL_STATE(5502)] = 184933, + [SMALL_STATE(5503)] = 184955, + [SMALL_STATE(5504)] = 184977, + [SMALL_STATE(5505)] = 184999, + [SMALL_STATE(5506)] = 185021, + [SMALL_STATE(5507)] = 185043, + [SMALL_STATE(5508)] = 185065, + [SMALL_STATE(5509)] = 185087, + [SMALL_STATE(5510)] = 185109, + [SMALL_STATE(5511)] = 185131, + [SMALL_STATE(5512)] = 185153, + [SMALL_STATE(5513)] = 185175, + [SMALL_STATE(5514)] = 185197, + [SMALL_STATE(5515)] = 185217, + [SMALL_STATE(5516)] = 185237, + [SMALL_STATE(5517)] = 185257, + [SMALL_STATE(5518)] = 185279, + [SMALL_STATE(5519)] = 185299, + [SMALL_STATE(5520)] = 185319, + [SMALL_STATE(5521)] = 185339, + [SMALL_STATE(5522)] = 185361, + [SMALL_STATE(5523)] = 185383, + [SMALL_STATE(5524)] = 185405, + [SMALL_STATE(5525)] = 185425, + [SMALL_STATE(5526)] = 185443, + [SMALL_STATE(5527)] = 185463, + [SMALL_STATE(5528)] = 185485, + [SMALL_STATE(5529)] = 185505, + [SMALL_STATE(5530)] = 185525, + [SMALL_STATE(5531)] = 185545, + [SMALL_STATE(5532)] = 185567, + [SMALL_STATE(5533)] = 185587, + [SMALL_STATE(5534)] = 185607, + [SMALL_STATE(5535)] = 185627, + [SMALL_STATE(5536)] = 185645, + [SMALL_STATE(5537)] = 185665, + [SMALL_STATE(5538)] = 185685, + [SMALL_STATE(5539)] = 185703, + [SMALL_STATE(5540)] = 185725, + [SMALL_STATE(5541)] = 185741, + [SMALL_STATE(5542)] = 185757, + [SMALL_STATE(5543)] = 185779, + [SMALL_STATE(5544)] = 185797, + [SMALL_STATE(5545)] = 185817, + [SMALL_STATE(5546)] = 185839, + [SMALL_STATE(5547)] = 185861, + [SMALL_STATE(5548)] = 185881, + [SMALL_STATE(5549)] = 185901, + [SMALL_STATE(5550)] = 185923, + [SMALL_STATE(5551)] = 185945, + [SMALL_STATE(5552)] = 185965, + [SMALL_STATE(5553)] = 185985, + [SMALL_STATE(5554)] = 186007, + [SMALL_STATE(5555)] = 186029, + [SMALL_STATE(5556)] = 186051, + [SMALL_STATE(5557)] = 186071, + [SMALL_STATE(5558)] = 186091, + [SMALL_STATE(5559)] = 186111, + [SMALL_STATE(5560)] = 186131, + [SMALL_STATE(5561)] = 186151, + [SMALL_STATE(5562)] = 186169, + [SMALL_STATE(5563)] = 186189, + [SMALL_STATE(5564)] = 186209, + [SMALL_STATE(5565)] = 186229, + [SMALL_STATE(5566)] = 186249, + [SMALL_STATE(5567)] = 186269, + [SMALL_STATE(5568)] = 186289, + [SMALL_STATE(5569)] = 186309, + [SMALL_STATE(5570)] = 186331, + [SMALL_STATE(5571)] = 186351, + [SMALL_STATE(5572)] = 186373, + [SMALL_STATE(5573)] = 186393, + [SMALL_STATE(5574)] = 186413, + [SMALL_STATE(5575)] = 186435, + [SMALL_STATE(5576)] = 186453, + [SMALL_STATE(5577)] = 186475, + [SMALL_STATE(5578)] = 186495, + [SMALL_STATE(5579)] = 186515, + [SMALL_STATE(5580)] = 186535, + [SMALL_STATE(5581)] = 186555, + [SMALL_STATE(5582)] = 186575, + [SMALL_STATE(5583)] = 186597, + [SMALL_STATE(5584)] = 186619, + [SMALL_STATE(5585)] = 186635, + [SMALL_STATE(5586)] = 186657, + [SMALL_STATE(5587)] = 186679, + [SMALL_STATE(5588)] = 186701, + [SMALL_STATE(5589)] = 186721, + [SMALL_STATE(5590)] = 186741, + [SMALL_STATE(5591)] = 186763, + [SMALL_STATE(5592)] = 186783, + [SMALL_STATE(5593)] = 186805, + [SMALL_STATE(5594)] = 186825, + [SMALL_STATE(5595)] = 186841, + [SMALL_STATE(5596)] = 186861, + [SMALL_STATE(5597)] = 186881, + [SMALL_STATE(5598)] = 186899, + [SMALL_STATE(5599)] = 186917, + [SMALL_STATE(5600)] = 186935, + [SMALL_STATE(5601)] = 186955, + [SMALL_STATE(5602)] = 186977, + [SMALL_STATE(5603)] = 186997, + [SMALL_STATE(5604)] = 187017, + [SMALL_STATE(5605)] = 187037, + [SMALL_STATE(5606)] = 187059, + [SMALL_STATE(5607)] = 187081, + [SMALL_STATE(5608)] = 187101, + [SMALL_STATE(5609)] = 187121, + [SMALL_STATE(5610)] = 187139, + [SMALL_STATE(5611)] = 187157, + [SMALL_STATE(5612)] = 187173, + [SMALL_STATE(5613)] = 187193, + [SMALL_STATE(5614)] = 187215, + [SMALL_STATE(5615)] = 187235, + [SMALL_STATE(5616)] = 187255, + [SMALL_STATE(5617)] = 187271, + [SMALL_STATE(5618)] = 187293, + [SMALL_STATE(5619)] = 187309, + [SMALL_STATE(5620)] = 187329, + [SMALL_STATE(5621)] = 187351, + [SMALL_STATE(5622)] = 187371, + [SMALL_STATE(5623)] = 187393, + [SMALL_STATE(5624)] = 187415, + [SMALL_STATE(5625)] = 187435, + [SMALL_STATE(5626)] = 187455, + [SMALL_STATE(5627)] = 187475, + [SMALL_STATE(5628)] = 187495, + [SMALL_STATE(5629)] = 187515, + [SMALL_STATE(5630)] = 187535, + [SMALL_STATE(5631)] = 187557, + [SMALL_STATE(5632)] = 187579, + [SMALL_STATE(5633)] = 187601, + [SMALL_STATE(5634)] = 187617, + [SMALL_STATE(5635)] = 187633, + [SMALL_STATE(5636)] = 187653, + [SMALL_STATE(5637)] = 187675, + [SMALL_STATE(5638)] = 187695, + [SMALL_STATE(5639)] = 187715, + [SMALL_STATE(5640)] = 187737, + [SMALL_STATE(5641)] = 187753, + [SMALL_STATE(5642)] = 187775, + [SMALL_STATE(5643)] = 187795, + [SMALL_STATE(5644)] = 187815, + [SMALL_STATE(5645)] = 187837, + [SMALL_STATE(5646)] = 187857, + [SMALL_STATE(5647)] = 187872, + [SMALL_STATE(5648)] = 187887, + [SMALL_STATE(5649)] = 187906, + [SMALL_STATE(5650)] = 187925, + [SMALL_STATE(5651)] = 187942, + [SMALL_STATE(5652)] = 187961, + [SMALL_STATE(5653)] = 187980, + [SMALL_STATE(5654)] = 187995, + [SMALL_STATE(5655)] = 188014, + [SMALL_STATE(5656)] = 188033, + [SMALL_STATE(5657)] = 188050, + [SMALL_STATE(5658)] = 188069, + [SMALL_STATE(5659)] = 188086, + [SMALL_STATE(5660)] = 188101, + [SMALL_STATE(5661)] = 188116, + [SMALL_STATE(5662)] = 188131, + [SMALL_STATE(5663)] = 188146, + [SMALL_STATE(5664)] = 188161, + [SMALL_STATE(5665)] = 188176, + [SMALL_STATE(5666)] = 188191, + [SMALL_STATE(5667)] = 188210, + [SMALL_STATE(5668)] = 188225, + [SMALL_STATE(5669)] = 188240, + [SMALL_STATE(5670)] = 188255, + [SMALL_STATE(5671)] = 188270, + [SMALL_STATE(5672)] = 188285, + [SMALL_STATE(5673)] = 188300, + [SMALL_STATE(5674)] = 188317, + [SMALL_STATE(5675)] = 188336, + [SMALL_STATE(5676)] = 188351, + [SMALL_STATE(5677)] = 188370, + [SMALL_STATE(5678)] = 188389, + [SMALL_STATE(5679)] = 188408, + [SMALL_STATE(5680)] = 188427, + [SMALL_STATE(5681)] = 188442, + [SMALL_STATE(5682)] = 188461, + [SMALL_STATE(5683)] = 188476, + [SMALL_STATE(5684)] = 188491, + [SMALL_STATE(5685)] = 188506, + [SMALL_STATE(5686)] = 188525, + [SMALL_STATE(5687)] = 188540, + [SMALL_STATE(5688)] = 188555, + [SMALL_STATE(5689)] = 188570, + [SMALL_STATE(5690)] = 188585, + [SMALL_STATE(5691)] = 188604, + [SMALL_STATE(5692)] = 188623, + [SMALL_STATE(5693)] = 188642, + [SMALL_STATE(5694)] = 188661, + [SMALL_STATE(5695)] = 188676, + [SMALL_STATE(5696)] = 188695, + [SMALL_STATE(5697)] = 188714, + [SMALL_STATE(5698)] = 188733, + [SMALL_STATE(5699)] = 188748, + [SMALL_STATE(5700)] = 188763, + [SMALL_STATE(5701)] = 188778, + [SMALL_STATE(5702)] = 188793, + [SMALL_STATE(5703)] = 188812, + [SMALL_STATE(5704)] = 188829, + [SMALL_STATE(5705)] = 188848, + [SMALL_STATE(5706)] = 188865, + [SMALL_STATE(5707)] = 188882, + [SMALL_STATE(5708)] = 188901, + [SMALL_STATE(5709)] = 188916, + [SMALL_STATE(5710)] = 188931, + [SMALL_STATE(5711)] = 188946, + [SMALL_STATE(5712)] = 188965, + [SMALL_STATE(5713)] = 188980, + [SMALL_STATE(5714)] = 188995, + [SMALL_STATE(5715)] = 189014, + [SMALL_STATE(5716)] = 189033, + [SMALL_STATE(5717)] = 189052, + [SMALL_STATE(5718)] = 189069, + [SMALL_STATE(5719)] = 189088, + [SMALL_STATE(5720)] = 189105, + [SMALL_STATE(5721)] = 189124, + [SMALL_STATE(5722)] = 189143, + [SMALL_STATE(5723)] = 189158, + [SMALL_STATE(5724)] = 189177, + [SMALL_STATE(5725)] = 189192, + [SMALL_STATE(5726)] = 189207, + [SMALL_STATE(5727)] = 189222, + [SMALL_STATE(5728)] = 189241, + [SMALL_STATE(5729)] = 189260, + [SMALL_STATE(5730)] = 189275, + [SMALL_STATE(5731)] = 189294, + [SMALL_STATE(5732)] = 189309, + [SMALL_STATE(5733)] = 189328, + [SMALL_STATE(5734)] = 189347, + [SMALL_STATE(5735)] = 189364, + [SMALL_STATE(5736)] = 189379, + [SMALL_STATE(5737)] = 189398, + [SMALL_STATE(5738)] = 189417, + [SMALL_STATE(5739)] = 189432, + [SMALL_STATE(5740)] = 189449, + [SMALL_STATE(5741)] = 189468, + [SMALL_STATE(5742)] = 189483, + [SMALL_STATE(5743)] = 189502, + [SMALL_STATE(5744)] = 189521, + [SMALL_STATE(5745)] = 189540, + [SMALL_STATE(5746)] = 189559, + [SMALL_STATE(5747)] = 189574, + [SMALL_STATE(5748)] = 189593, + [SMALL_STATE(5749)] = 189612, + [SMALL_STATE(5750)] = 189627, + [SMALL_STATE(5751)] = 189646, + [SMALL_STATE(5752)] = 189661, + [SMALL_STATE(5753)] = 189680, + [SMALL_STATE(5754)] = 189699, + [SMALL_STATE(5755)] = 189714, + [SMALL_STATE(5756)] = 189729, + [SMALL_STATE(5757)] = 189748, + [SMALL_STATE(5758)] = 189763, + [SMALL_STATE(5759)] = 189780, + [SMALL_STATE(5760)] = 189795, + [SMALL_STATE(5761)] = 189810, + [SMALL_STATE(5762)] = 189825, + [SMALL_STATE(5763)] = 189842, + [SMALL_STATE(5764)] = 189861, + [SMALL_STATE(5765)] = 189880, + [SMALL_STATE(5766)] = 189899, + [SMALL_STATE(5767)] = 189918, + [SMALL_STATE(5768)] = 189937, + [SMALL_STATE(5769)] = 189952, + [SMALL_STATE(5770)] = 189971, + [SMALL_STATE(5771)] = 189986, + [SMALL_STATE(5772)] = 190005, + [SMALL_STATE(5773)] = 190022, + [SMALL_STATE(5774)] = 190039, + [SMALL_STATE(5775)] = 190054, + [SMALL_STATE(5776)] = 190071, + [SMALL_STATE(5777)] = 190090, + [SMALL_STATE(5778)] = 190105, + [SMALL_STATE(5779)] = 190124, + [SMALL_STATE(5780)] = 190141, + [SMALL_STATE(5781)] = 190160, + [SMALL_STATE(5782)] = 190175, + [SMALL_STATE(5783)] = 190194, + [SMALL_STATE(5784)] = 190209, + [SMALL_STATE(5785)] = 190224, + [SMALL_STATE(5786)] = 190241, + [SMALL_STATE(5787)] = 190256, + [SMALL_STATE(5788)] = 190275, + [SMALL_STATE(5789)] = 190292, + [SMALL_STATE(5790)] = 190307, + [SMALL_STATE(5791)] = 190324, + [SMALL_STATE(5792)] = 190339, + [SMALL_STATE(5793)] = 190358, + [SMALL_STATE(5794)] = 190377, + [SMALL_STATE(5795)] = 190396, + [SMALL_STATE(5796)] = 190413, + [SMALL_STATE(5797)] = 190432, + [SMALL_STATE(5798)] = 190449, + [SMALL_STATE(5799)] = 190464, + [SMALL_STATE(5800)] = 190483, + [SMALL_STATE(5801)] = 190500, + [SMALL_STATE(5802)] = 190515, + [SMALL_STATE(5803)] = 190530, + [SMALL_STATE(5804)] = 190545, + [SMALL_STATE(5805)] = 190560, + [SMALL_STATE(5806)] = 190575, + [SMALL_STATE(5807)] = 190590, + [SMALL_STATE(5808)] = 190605, + [SMALL_STATE(5809)] = 190620, + [SMALL_STATE(5810)] = 190635, + [SMALL_STATE(5811)] = 190650, + [SMALL_STATE(5812)] = 190667, + [SMALL_STATE(5813)] = 190684, + [SMALL_STATE(5814)] = 190703, + [SMALL_STATE(5815)] = 190720, + [SMALL_STATE(5816)] = 190739, + [SMALL_STATE(5817)] = 190756, + [SMALL_STATE(5818)] = 190775, + [SMALL_STATE(5819)] = 190790, + [SMALL_STATE(5820)] = 190809, + [SMALL_STATE(5821)] = 190826, + [SMALL_STATE(5822)] = 190845, + [SMALL_STATE(5823)] = 190860, + [SMALL_STATE(5824)] = 190875, + [SMALL_STATE(5825)] = 190894, + [SMALL_STATE(5826)] = 190913, + [SMALL_STATE(5827)] = 190928, + [SMALL_STATE(5828)] = 190943, + [SMALL_STATE(5829)] = 190962, + [SMALL_STATE(5830)] = 190977, + [SMALL_STATE(5831)] = 190992, + [SMALL_STATE(5832)] = 191007, + [SMALL_STATE(5833)] = 191022, + [SMALL_STATE(5834)] = 191041, + [SMALL_STATE(5835)] = 191056, + [SMALL_STATE(5836)] = 191071, + [SMALL_STATE(5837)] = 191086, + [SMALL_STATE(5838)] = 191101, + [SMALL_STATE(5839)] = 191116, + [SMALL_STATE(5840)] = 191131, + [SMALL_STATE(5841)] = 191150, + [SMALL_STATE(5842)] = 191165, + [SMALL_STATE(5843)] = 191184, + [SMALL_STATE(5844)] = 191199, + [SMALL_STATE(5845)] = 191218, + [SMALL_STATE(5846)] = 191233, + [SMALL_STATE(5847)] = 191252, + [SMALL_STATE(5848)] = 191267, + [SMALL_STATE(5849)] = 191286, + [SMALL_STATE(5850)] = 191305, + [SMALL_STATE(5851)] = 191324, + [SMALL_STATE(5852)] = 191343, + [SMALL_STATE(5853)] = 191358, + [SMALL_STATE(5854)] = 191373, + [SMALL_STATE(5855)] = 191388, + [SMALL_STATE(5856)] = 191407, + [SMALL_STATE(5857)] = 191422, + [SMALL_STATE(5858)] = 191437, + [SMALL_STATE(5859)] = 191456, + [SMALL_STATE(5860)] = 191471, + [SMALL_STATE(5861)] = 191490, + [SMALL_STATE(5862)] = 191505, + [SMALL_STATE(5863)] = 191520, + [SMALL_STATE(5864)] = 191535, + [SMALL_STATE(5865)] = 191550, + [SMALL_STATE(5866)] = 191565, + [SMALL_STATE(5867)] = 191582, + [SMALL_STATE(5868)] = 191597, + [SMALL_STATE(5869)] = 191614, + [SMALL_STATE(5870)] = 191633, + [SMALL_STATE(5871)] = 191648, + [SMALL_STATE(5872)] = 191663, + [SMALL_STATE(5873)] = 191678, + [SMALL_STATE(5874)] = 191693, + [SMALL_STATE(5875)] = 191712, + [SMALL_STATE(5876)] = 191727, + [SMALL_STATE(5877)] = 191742, + [SMALL_STATE(5878)] = 191757, + [SMALL_STATE(5879)] = 191772, + [SMALL_STATE(5880)] = 191787, + [SMALL_STATE(5881)] = 191802, + [SMALL_STATE(5882)] = 191817, + [SMALL_STATE(5883)] = 191832, + [SMALL_STATE(5884)] = 191849, + [SMALL_STATE(5885)] = 191866, + [SMALL_STATE(5886)] = 191885, + [SMALL_STATE(5887)] = 191900, + [SMALL_STATE(5888)] = 191917, + [SMALL_STATE(5889)] = 191932, + [SMALL_STATE(5890)] = 191951, + [SMALL_STATE(5891)] = 191970, + [SMALL_STATE(5892)] = 191985, + [SMALL_STATE(5893)] = 192004, + [SMALL_STATE(5894)] = 192019, + [SMALL_STATE(5895)] = 192038, + [SMALL_STATE(5896)] = 192053, + [SMALL_STATE(5897)] = 192072, + [SMALL_STATE(5898)] = 192087, + [SMALL_STATE(5899)] = 192102, + [SMALL_STATE(5900)] = 192121, + [SMALL_STATE(5901)] = 192140, + [SMALL_STATE(5902)] = 192157, + [SMALL_STATE(5903)] = 192176, + [SMALL_STATE(5904)] = 192191, + [SMALL_STATE(5905)] = 192206, + [SMALL_STATE(5906)] = 192223, + [SMALL_STATE(5907)] = 192238, + [SMALL_STATE(5908)] = 192257, + [SMALL_STATE(5909)] = 192274, + [SMALL_STATE(5910)] = 192291, + [SMALL_STATE(5911)] = 192306, + [SMALL_STATE(5912)] = 192321, + [SMALL_STATE(5913)] = 192338, + [SMALL_STATE(5914)] = 192357, + [SMALL_STATE(5915)] = 192376, + [SMALL_STATE(5916)] = 192395, + [SMALL_STATE(5917)] = 192412, + [SMALL_STATE(5918)] = 192427, + [SMALL_STATE(5919)] = 192442, + [SMALL_STATE(5920)] = 192457, + [SMALL_STATE(5921)] = 192472, + [SMALL_STATE(5922)] = 192487, + [SMALL_STATE(5923)] = 192506, + [SMALL_STATE(5924)] = 192525, + [SMALL_STATE(5925)] = 192540, + [SMALL_STATE(5926)] = 192559, + [SMALL_STATE(5927)] = 192574, + [SMALL_STATE(5928)] = 192589, + [SMALL_STATE(5929)] = 192604, + [SMALL_STATE(5930)] = 192619, + [SMALL_STATE(5931)] = 192634, + [SMALL_STATE(5932)] = 192649, + [SMALL_STATE(5933)] = 192666, + [SMALL_STATE(5934)] = 192685, + [SMALL_STATE(5935)] = 192700, + [SMALL_STATE(5936)] = 192719, + [SMALL_STATE(5937)] = 192738, + [SMALL_STATE(5938)] = 192753, + [SMALL_STATE(5939)] = 192768, + [SMALL_STATE(5940)] = 192787, + [SMALL_STATE(5941)] = 192802, + [SMALL_STATE(5942)] = 192817, + [SMALL_STATE(5943)] = 192836, + [SMALL_STATE(5944)] = 192855, + [SMALL_STATE(5945)] = 192874, + [SMALL_STATE(5946)] = 192893, + [SMALL_STATE(5947)] = 192908, + [SMALL_STATE(5948)] = 192923, + [SMALL_STATE(5949)] = 192942, + [SMALL_STATE(5950)] = 192957, + [SMALL_STATE(5951)] = 192972, + [SMALL_STATE(5952)] = 192987, + [SMALL_STATE(5953)] = 193002, + [SMALL_STATE(5954)] = 193017, + [SMALL_STATE(5955)] = 193032, + [SMALL_STATE(5956)] = 193047, + [SMALL_STATE(5957)] = 193062, + [SMALL_STATE(5958)] = 193081, + [SMALL_STATE(5959)] = 193096, + [SMALL_STATE(5960)] = 193111, + [SMALL_STATE(5961)] = 193126, + [SMALL_STATE(5962)] = 193141, + [SMALL_STATE(5963)] = 193156, + [SMALL_STATE(5964)] = 193171, + [SMALL_STATE(5965)] = 193186, + [SMALL_STATE(5966)] = 193201, + [SMALL_STATE(5967)] = 193220, + [SMALL_STATE(5968)] = 193235, + [SMALL_STATE(5969)] = 193250, + [SMALL_STATE(5970)] = 193265, + [SMALL_STATE(5971)] = 193284, + [SMALL_STATE(5972)] = 193303, + [SMALL_STATE(5973)] = 193318, + [SMALL_STATE(5974)] = 193333, + [SMALL_STATE(5975)] = 193348, + [SMALL_STATE(5976)] = 193367, + [SMALL_STATE(5977)] = 193382, + [SMALL_STATE(5978)] = 193397, + [SMALL_STATE(5979)] = 193412, + [SMALL_STATE(5980)] = 193427, + [SMALL_STATE(5981)] = 193442, + [SMALL_STATE(5982)] = 193461, + [SMALL_STATE(5983)] = 193476, + [SMALL_STATE(5984)] = 193491, + [SMALL_STATE(5985)] = 193506, + [SMALL_STATE(5986)] = 193521, + [SMALL_STATE(5987)] = 193540, + [SMALL_STATE(5988)] = 193555, + [SMALL_STATE(5989)] = 193574, + [SMALL_STATE(5990)] = 193589, + [SMALL_STATE(5991)] = 193606, + [SMALL_STATE(5992)] = 193621, + [SMALL_STATE(5993)] = 193636, + [SMALL_STATE(5994)] = 193651, + [SMALL_STATE(5995)] = 193666, + [SMALL_STATE(5996)] = 193685, + [SMALL_STATE(5997)] = 193702, + [SMALL_STATE(5998)] = 193719, + [SMALL_STATE(5999)] = 193738, + [SMALL_STATE(6000)] = 193753, + [SMALL_STATE(6001)] = 193768, + [SMALL_STATE(6002)] = 193787, + [SMALL_STATE(6003)] = 193802, + [SMALL_STATE(6004)] = 193817, + [SMALL_STATE(6005)] = 193832, + [SMALL_STATE(6006)] = 193849, + [SMALL_STATE(6007)] = 193868, + [SMALL_STATE(6008)] = 193883, + [SMALL_STATE(6009)] = 193898, + [SMALL_STATE(6010)] = 193913, + [SMALL_STATE(6011)] = 193932, + [SMALL_STATE(6012)] = 193949, + [SMALL_STATE(6013)] = 193964, + [SMALL_STATE(6014)] = 193979, + [SMALL_STATE(6015)] = 193994, + [SMALL_STATE(6016)] = 194009, + [SMALL_STATE(6017)] = 194024, + [SMALL_STATE(6018)] = 194039, + [SMALL_STATE(6019)] = 194054, + [SMALL_STATE(6020)] = 194069, + [SMALL_STATE(6021)] = 194088, + [SMALL_STATE(6022)] = 194103, + [SMALL_STATE(6023)] = 194122, + [SMALL_STATE(6024)] = 194141, + [SMALL_STATE(6025)] = 194156, + [SMALL_STATE(6026)] = 194175, + [SMALL_STATE(6027)] = 194190, + [SMALL_STATE(6028)] = 194209, + [SMALL_STATE(6029)] = 194224, + [SMALL_STATE(6030)] = 194243, + [SMALL_STATE(6031)] = 194258, + [SMALL_STATE(6032)] = 194273, + [SMALL_STATE(6033)] = 194292, + [SMALL_STATE(6034)] = 194307, + [SMALL_STATE(6035)] = 194322, + [SMALL_STATE(6036)] = 194337, + [SMALL_STATE(6037)] = 194352, + [SMALL_STATE(6038)] = 194369, + [SMALL_STATE(6039)] = 194384, + [SMALL_STATE(6040)] = 194399, + [SMALL_STATE(6041)] = 194418, + [SMALL_STATE(6042)] = 194433, + [SMALL_STATE(6043)] = 194448, + [SMALL_STATE(6044)] = 194463, + [SMALL_STATE(6045)] = 194478, + [SMALL_STATE(6046)] = 194493, + [SMALL_STATE(6047)] = 194508, + [SMALL_STATE(6048)] = 194525, + [SMALL_STATE(6049)] = 194540, + [SMALL_STATE(6050)] = 194559, + [SMALL_STATE(6051)] = 194576, + [SMALL_STATE(6052)] = 194595, + [SMALL_STATE(6053)] = 194610, + [SMALL_STATE(6054)] = 194625, + [SMALL_STATE(6055)] = 194644, + [SMALL_STATE(6056)] = 194663, + [SMALL_STATE(6057)] = 194678, + [SMALL_STATE(6058)] = 194693, + [SMALL_STATE(6059)] = 194708, + [SMALL_STATE(6060)] = 194723, + [SMALL_STATE(6061)] = 194742, + [SMALL_STATE(6062)] = 194761, + [SMALL_STATE(6063)] = 194776, + [SMALL_STATE(6064)] = 194795, + [SMALL_STATE(6065)] = 194810, + [SMALL_STATE(6066)] = 194825, + [SMALL_STATE(6067)] = 194842, + [SMALL_STATE(6068)] = 194857, + [SMALL_STATE(6069)] = 194872, + [SMALL_STATE(6070)] = 194887, + [SMALL_STATE(6071)] = 194902, + [SMALL_STATE(6072)] = 194917, + [SMALL_STATE(6073)] = 194932, + [SMALL_STATE(6074)] = 194947, + [SMALL_STATE(6075)] = 194962, + [SMALL_STATE(6076)] = 194981, + [SMALL_STATE(6077)] = 194998, + [SMALL_STATE(6078)] = 195013, + [SMALL_STATE(6079)] = 195030, + [SMALL_STATE(6080)] = 195045, + [SMALL_STATE(6081)] = 195064, + [SMALL_STATE(6082)] = 195079, + [SMALL_STATE(6083)] = 195098, + [SMALL_STATE(6084)] = 195113, + [SMALL_STATE(6085)] = 195128, + [SMALL_STATE(6086)] = 195143, + [SMALL_STATE(6087)] = 195158, + [SMALL_STATE(6088)] = 195173, + [SMALL_STATE(6089)] = 195188, + [SMALL_STATE(6090)] = 195203, + [SMALL_STATE(6091)] = 195218, + [SMALL_STATE(6092)] = 195237, + [SMALL_STATE(6093)] = 195252, + [SMALL_STATE(6094)] = 195267, + [SMALL_STATE(6095)] = 195286, + [SMALL_STATE(6096)] = 195301, + [SMALL_STATE(6097)] = 195318, + [SMALL_STATE(6098)] = 195333, + [SMALL_STATE(6099)] = 195350, + [SMALL_STATE(6100)] = 195369, + [SMALL_STATE(6101)] = 195384, + [SMALL_STATE(6102)] = 195403, + [SMALL_STATE(6103)] = 195420, + [SMALL_STATE(6104)] = 195435, + [SMALL_STATE(6105)] = 195450, + [SMALL_STATE(6106)] = 195465, + [SMALL_STATE(6107)] = 195480, + [SMALL_STATE(6108)] = 195495, + [SMALL_STATE(6109)] = 195510, + [SMALL_STATE(6110)] = 195525, + [SMALL_STATE(6111)] = 195540, + [SMALL_STATE(6112)] = 195555, + [SMALL_STATE(6113)] = 195570, + [SMALL_STATE(6114)] = 195585, + [SMALL_STATE(6115)] = 195600, + [SMALL_STATE(6116)] = 195619, + [SMALL_STATE(6117)] = 195634, + [SMALL_STATE(6118)] = 195649, + [SMALL_STATE(6119)] = 195664, + [SMALL_STATE(6120)] = 195683, + [SMALL_STATE(6121)] = 195702, + [SMALL_STATE(6122)] = 195717, + [SMALL_STATE(6123)] = 195732, + [SMALL_STATE(6124)] = 195747, + [SMALL_STATE(6125)] = 195762, + [SMALL_STATE(6126)] = 195777, + [SMALL_STATE(6127)] = 195792, + [SMALL_STATE(6128)] = 195807, + [SMALL_STATE(6129)] = 195822, + [SMALL_STATE(6130)] = 195837, + [SMALL_STATE(6131)] = 195852, + [SMALL_STATE(6132)] = 195867, + [SMALL_STATE(6133)] = 195882, + [SMALL_STATE(6134)] = 195897, + [SMALL_STATE(6135)] = 195912, + [SMALL_STATE(6136)] = 195927, + [SMALL_STATE(6137)] = 195946, + [SMALL_STATE(6138)] = 195961, + [SMALL_STATE(6139)] = 195976, + [SMALL_STATE(6140)] = 195991, + [SMALL_STATE(6141)] = 196006, + [SMALL_STATE(6142)] = 196021, + [SMALL_STATE(6143)] = 196036, + [SMALL_STATE(6144)] = 196051, + [SMALL_STATE(6145)] = 196066, + [SMALL_STATE(6146)] = 196081, + [SMALL_STATE(6147)] = 196096, + [SMALL_STATE(6148)] = 196111, + [SMALL_STATE(6149)] = 196130, + [SMALL_STATE(6150)] = 196145, + [SMALL_STATE(6151)] = 196164, + [SMALL_STATE(6152)] = 196179, + [SMALL_STATE(6153)] = 196194, + [SMALL_STATE(6154)] = 196209, + [SMALL_STATE(6155)] = 196228, + [SMALL_STATE(6156)] = 196243, + [SMALL_STATE(6157)] = 196258, + [SMALL_STATE(6158)] = 196273, + [SMALL_STATE(6159)] = 196288, + [SMALL_STATE(6160)] = 196303, + [SMALL_STATE(6161)] = 196318, + [SMALL_STATE(6162)] = 196337, + [SMALL_STATE(6163)] = 196352, + [SMALL_STATE(6164)] = 196367, + [SMALL_STATE(6165)] = 196386, + [SMALL_STATE(6166)] = 196405, + [SMALL_STATE(6167)] = 196424, + [SMALL_STATE(6168)] = 196439, + [SMALL_STATE(6169)] = 196454, + [SMALL_STATE(6170)] = 196469, + [SMALL_STATE(6171)] = 196488, + [SMALL_STATE(6172)] = 196503, + [SMALL_STATE(6173)] = 196518, + [SMALL_STATE(6174)] = 196535, + [SMALL_STATE(6175)] = 196550, + [SMALL_STATE(6176)] = 196565, + [SMALL_STATE(6177)] = 196580, + [SMALL_STATE(6178)] = 196597, + [SMALL_STATE(6179)] = 196612, + [SMALL_STATE(6180)] = 196627, + [SMALL_STATE(6181)] = 196642, + [SMALL_STATE(6182)] = 196659, + [SMALL_STATE(6183)] = 196674, + [SMALL_STATE(6184)] = 196689, + [SMALL_STATE(6185)] = 196708, + [SMALL_STATE(6186)] = 196723, + [SMALL_STATE(6187)] = 196740, + [SMALL_STATE(6188)] = 196755, + [SMALL_STATE(6189)] = 196770, + [SMALL_STATE(6190)] = 196787, + [SMALL_STATE(6191)] = 196802, + [SMALL_STATE(6192)] = 196817, + [SMALL_STATE(6193)] = 196834, + [SMALL_STATE(6194)] = 196849, + [SMALL_STATE(6195)] = 196864, + [SMALL_STATE(6196)] = 196883, + [SMALL_STATE(6197)] = 196898, + [SMALL_STATE(6198)] = 196913, + [SMALL_STATE(6199)] = 196932, + [SMALL_STATE(6200)] = 196947, + [SMALL_STATE(6201)] = 196962, + [SMALL_STATE(6202)] = 196977, + [SMALL_STATE(6203)] = 196996, + [SMALL_STATE(6204)] = 197011, + [SMALL_STATE(6205)] = 197030, + [SMALL_STATE(6206)] = 197045, + [SMALL_STATE(6207)] = 197060, + [SMALL_STATE(6208)] = 197079, + [SMALL_STATE(6209)] = 197094, + [SMALL_STATE(6210)] = 197113, + [SMALL_STATE(6211)] = 197128, + [SMALL_STATE(6212)] = 197143, + [SMALL_STATE(6213)] = 197158, + [SMALL_STATE(6214)] = 197177, + [SMALL_STATE(6215)] = 197194, + [SMALL_STATE(6216)] = 197209, + [SMALL_STATE(6217)] = 197224, + [SMALL_STATE(6218)] = 197239, + [SMALL_STATE(6219)] = 197254, + [SMALL_STATE(6220)] = 197273, + [SMALL_STATE(6221)] = 197292, + [SMALL_STATE(6222)] = 197307, + [SMALL_STATE(6223)] = 197322, + [SMALL_STATE(6224)] = 197341, + [SMALL_STATE(6225)] = 197360, + [SMALL_STATE(6226)] = 197375, + [SMALL_STATE(6227)] = 197390, + [SMALL_STATE(6228)] = 197409, + [SMALL_STATE(6229)] = 197424, + [SMALL_STATE(6230)] = 197439, + [SMALL_STATE(6231)] = 197454, + [SMALL_STATE(6232)] = 197469, + [SMALL_STATE(6233)] = 197484, + [SMALL_STATE(6234)] = 197503, + [SMALL_STATE(6235)] = 197518, + [SMALL_STATE(6236)] = 197537, + [SMALL_STATE(6237)] = 197552, + [SMALL_STATE(6238)] = 197567, + [SMALL_STATE(6239)] = 197582, + [SMALL_STATE(6240)] = 197601, + [SMALL_STATE(6241)] = 197616, + [SMALL_STATE(6242)] = 197633, + [SMALL_STATE(6243)] = 197650, + [SMALL_STATE(6244)] = 197665, + [SMALL_STATE(6245)] = 197680, + [SMALL_STATE(6246)] = 197697, + [SMALL_STATE(6247)] = 197714, + [SMALL_STATE(6248)] = 197729, + [SMALL_STATE(6249)] = 197748, + [SMALL_STATE(6250)] = 197763, + [SMALL_STATE(6251)] = 197782, + [SMALL_STATE(6252)] = 197797, + [SMALL_STATE(6253)] = 197812, + [SMALL_STATE(6254)] = 197827, + [SMALL_STATE(6255)] = 197844, + [SMALL_STATE(6256)] = 197863, + [SMALL_STATE(6257)] = 197882, + [SMALL_STATE(6258)] = 197897, + [SMALL_STATE(6259)] = 197916, + [SMALL_STATE(6260)] = 197935, + [SMALL_STATE(6261)] = 197954, + [SMALL_STATE(6262)] = 197969, + [SMALL_STATE(6263)] = 197986, + [SMALL_STATE(6264)] = 198005, + [SMALL_STATE(6265)] = 198024, + [SMALL_STATE(6266)] = 198043, + [SMALL_STATE(6267)] = 198058, + [SMALL_STATE(6268)] = 198077, + [SMALL_STATE(6269)] = 198092, + [SMALL_STATE(6270)] = 198111, + [SMALL_STATE(6271)] = 198130, + [SMALL_STATE(6272)] = 198145, + [SMALL_STATE(6273)] = 198164, + [SMALL_STATE(6274)] = 198181, + [SMALL_STATE(6275)] = 198200, + [SMALL_STATE(6276)] = 198215, + [SMALL_STATE(6277)] = 198234, + [SMALL_STATE(6278)] = 198249, + [SMALL_STATE(6279)] = 198266, + [SMALL_STATE(6280)] = 198285, + [SMALL_STATE(6281)] = 198300, + [SMALL_STATE(6282)] = 198317, + [SMALL_STATE(6283)] = 198332, + [SMALL_STATE(6284)] = 198347, + [SMALL_STATE(6285)] = 198362, + [SMALL_STATE(6286)] = 198377, + [SMALL_STATE(6287)] = 198392, + [SMALL_STATE(6288)] = 198411, + [SMALL_STATE(6289)] = 198426, + [SMALL_STATE(6290)] = 198445, + [SMALL_STATE(6291)] = 198464, + [SMALL_STATE(6292)] = 198479, + [SMALL_STATE(6293)] = 198498, + [SMALL_STATE(6294)] = 198513, + [SMALL_STATE(6295)] = 198528, + [SMALL_STATE(6296)] = 198543, + [SMALL_STATE(6297)] = 198558, + [SMALL_STATE(6298)] = 198577, + [SMALL_STATE(6299)] = 198592, + [SMALL_STATE(6300)] = 198611, + [SMALL_STATE(6301)] = 198630, + [SMALL_STATE(6302)] = 198649, + [SMALL_STATE(6303)] = 198664, + [SMALL_STATE(6304)] = 198683, + [SMALL_STATE(6305)] = 198698, + [SMALL_STATE(6306)] = 198717, + [SMALL_STATE(6307)] = 198736, + [SMALL_STATE(6308)] = 198751, + [SMALL_STATE(6309)] = 198766, + [SMALL_STATE(6310)] = 198781, + [SMALL_STATE(6311)] = 198798, + [SMALL_STATE(6312)] = 198813, + [SMALL_STATE(6313)] = 198832, + [SMALL_STATE(6314)] = 198847, + [SMALL_STATE(6315)] = 198866, + [SMALL_STATE(6316)] = 198881, + [SMALL_STATE(6317)] = 198900, + [SMALL_STATE(6318)] = 198919, + [SMALL_STATE(6319)] = 198936, + [SMALL_STATE(6320)] = 198951, + [SMALL_STATE(6321)] = 198966, + [SMALL_STATE(6322)] = 198981, + [SMALL_STATE(6323)] = 199000, + [SMALL_STATE(6324)] = 199019, + [SMALL_STATE(6325)] = 199034, + [SMALL_STATE(6326)] = 199049, + [SMALL_STATE(6327)] = 199068, + [SMALL_STATE(6328)] = 199083, + [SMALL_STATE(6329)] = 199102, + [SMALL_STATE(6330)] = 199117, + [SMALL_STATE(6331)] = 199134, + [SMALL_STATE(6332)] = 199153, + [SMALL_STATE(6333)] = 199168, + [SMALL_STATE(6334)] = 199185, + [SMALL_STATE(6335)] = 199200, + [SMALL_STATE(6336)] = 199215, + [SMALL_STATE(6337)] = 199230, + [SMALL_STATE(6338)] = 199249, + [SMALL_STATE(6339)] = 199268, + [SMALL_STATE(6340)] = 199282, + [SMALL_STATE(6341)] = 199298, + [SMALL_STATE(6342)] = 199314, + [SMALL_STATE(6343)] = 199330, + [SMALL_STATE(6344)] = 199344, + [SMALL_STATE(6345)] = 199358, + [SMALL_STATE(6346)] = 199372, + [SMALL_STATE(6347)] = 199386, + [SMALL_STATE(6348)] = 199402, + [SMALL_STATE(6349)] = 199416, + [SMALL_STATE(6350)] = 199432, + [SMALL_STATE(6351)] = 199446, + [SMALL_STATE(6352)] = 199460, + [SMALL_STATE(6353)] = 199476, + [SMALL_STATE(6354)] = 199490, + [SMALL_STATE(6355)] = 199504, + [SMALL_STATE(6356)] = 199520, + [SMALL_STATE(6357)] = 199534, + [SMALL_STATE(6358)] = 199550, + [SMALL_STATE(6359)] = 199566, + [SMALL_STATE(6360)] = 199580, + [SMALL_STATE(6361)] = 199596, + [SMALL_STATE(6362)] = 199612, + [SMALL_STATE(6363)] = 199628, + [SMALL_STATE(6364)] = 199644, + [SMALL_STATE(6365)] = 199658, + [SMALL_STATE(6366)] = 199674, + [SMALL_STATE(6367)] = 199688, + [SMALL_STATE(6368)] = 199704, + [SMALL_STATE(6369)] = 199720, + [SMALL_STATE(6370)] = 199736, + [SMALL_STATE(6371)] = 199752, + [SMALL_STATE(6372)] = 199768, + [SMALL_STATE(6373)] = 199784, + [SMALL_STATE(6374)] = 199800, + [SMALL_STATE(6375)] = 199814, + [SMALL_STATE(6376)] = 199830, + [SMALL_STATE(6377)] = 199846, + [SMALL_STATE(6378)] = 199862, + [SMALL_STATE(6379)] = 199878, + [SMALL_STATE(6380)] = 199894, + [SMALL_STATE(6381)] = 199910, + [SMALL_STATE(6382)] = 199924, + [SMALL_STATE(6383)] = 199940, + [SMALL_STATE(6384)] = 199956, + [SMALL_STATE(6385)] = 199972, + [SMALL_STATE(6386)] = 199988, + [SMALL_STATE(6387)] = 200004, + [SMALL_STATE(6388)] = 200020, + [SMALL_STATE(6389)] = 200036, + [SMALL_STATE(6390)] = 200052, + [SMALL_STATE(6391)] = 200068, + [SMALL_STATE(6392)] = 200084, + [SMALL_STATE(6393)] = 200100, + [SMALL_STATE(6394)] = 200116, + [SMALL_STATE(6395)] = 200132, + [SMALL_STATE(6396)] = 200148, + [SMALL_STATE(6397)] = 200164, + [SMALL_STATE(6398)] = 200180, + [SMALL_STATE(6399)] = 200196, + [SMALL_STATE(6400)] = 200212, + [SMALL_STATE(6401)] = 200228, + [SMALL_STATE(6402)] = 200244, + [SMALL_STATE(6403)] = 200260, + [SMALL_STATE(6404)] = 200276, + [SMALL_STATE(6405)] = 200292, + [SMALL_STATE(6406)] = 200308, + [SMALL_STATE(6407)] = 200324, + [SMALL_STATE(6408)] = 200338, + [SMALL_STATE(6409)] = 200354, + [SMALL_STATE(6410)] = 200370, + [SMALL_STATE(6411)] = 200386, + [SMALL_STATE(6412)] = 200402, + [SMALL_STATE(6413)] = 200418, + [SMALL_STATE(6414)] = 200434, + [SMALL_STATE(6415)] = 200450, + [SMALL_STATE(6416)] = 200466, + [SMALL_STATE(6417)] = 200482, + [SMALL_STATE(6418)] = 200496, + [SMALL_STATE(6419)] = 200512, + [SMALL_STATE(6420)] = 200528, + [SMALL_STATE(6421)] = 200544, + [SMALL_STATE(6422)] = 200558, + [SMALL_STATE(6423)] = 200574, + [SMALL_STATE(6424)] = 200590, + [SMALL_STATE(6425)] = 200604, + [SMALL_STATE(6426)] = 200620, + [SMALL_STATE(6427)] = 200636, + [SMALL_STATE(6428)] = 200652, + [SMALL_STATE(6429)] = 200668, + [SMALL_STATE(6430)] = 200684, + [SMALL_STATE(6431)] = 200700, + [SMALL_STATE(6432)] = 200714, + [SMALL_STATE(6433)] = 200730, + [SMALL_STATE(6434)] = 200744, + [SMALL_STATE(6435)] = 200760, + [SMALL_STATE(6436)] = 200776, + [SMALL_STATE(6437)] = 200792, + [SMALL_STATE(6438)] = 200808, + [SMALL_STATE(6439)] = 200824, + [SMALL_STATE(6440)] = 200838, + [SMALL_STATE(6441)] = 200852, + [SMALL_STATE(6442)] = 200866, + [SMALL_STATE(6443)] = 200882, + [SMALL_STATE(6444)] = 200896, + [SMALL_STATE(6445)] = 200912, + [SMALL_STATE(6446)] = 200928, + [SMALL_STATE(6447)] = 200944, + [SMALL_STATE(6448)] = 200960, + [SMALL_STATE(6449)] = 200976, + [SMALL_STATE(6450)] = 200992, + [SMALL_STATE(6451)] = 201006, + [SMALL_STATE(6452)] = 201020, + [SMALL_STATE(6453)] = 201036, + [SMALL_STATE(6454)] = 201052, + [SMALL_STATE(6455)] = 201068, + [SMALL_STATE(6456)] = 201084, + [SMALL_STATE(6457)] = 201098, + [SMALL_STATE(6458)] = 201114, + [SMALL_STATE(6459)] = 201130, + [SMALL_STATE(6460)] = 201146, + [SMALL_STATE(6461)] = 201160, + [SMALL_STATE(6462)] = 201176, + [SMALL_STATE(6463)] = 201192, + [SMALL_STATE(6464)] = 201208, + [SMALL_STATE(6465)] = 201224, + [SMALL_STATE(6466)] = 201240, + [SMALL_STATE(6467)] = 201256, + [SMALL_STATE(6468)] = 201272, + [SMALL_STATE(6469)] = 201286, + [SMALL_STATE(6470)] = 201302, + [SMALL_STATE(6471)] = 201318, + [SMALL_STATE(6472)] = 201334, + [SMALL_STATE(6473)] = 201348, + [SMALL_STATE(6474)] = 201364, + [SMALL_STATE(6475)] = 201380, + [SMALL_STATE(6476)] = 201396, + [SMALL_STATE(6477)] = 201410, + [SMALL_STATE(6478)] = 201426, + [SMALL_STATE(6479)] = 201442, + [SMALL_STATE(6480)] = 201458, + [SMALL_STATE(6481)] = 201474, + [SMALL_STATE(6482)] = 201490, + [SMALL_STATE(6483)] = 201506, + [SMALL_STATE(6484)] = 201522, + [SMALL_STATE(6485)] = 201538, + [SMALL_STATE(6486)] = 201552, + [SMALL_STATE(6487)] = 201566, + [SMALL_STATE(6488)] = 201582, + [SMALL_STATE(6489)] = 201598, + [SMALL_STATE(6490)] = 201614, + [SMALL_STATE(6491)] = 201630, + [SMALL_STATE(6492)] = 201646, + [SMALL_STATE(6493)] = 201662, + [SMALL_STATE(6494)] = 201678, + [SMALL_STATE(6495)] = 201694, + [SMALL_STATE(6496)] = 201708, + [SMALL_STATE(6497)] = 201724, + [SMALL_STATE(6498)] = 201740, + [SMALL_STATE(6499)] = 201754, + [SMALL_STATE(6500)] = 201770, + [SMALL_STATE(6501)] = 201784, + [SMALL_STATE(6502)] = 201800, + [SMALL_STATE(6503)] = 201814, + [SMALL_STATE(6504)] = 201828, + [SMALL_STATE(6505)] = 201844, + [SMALL_STATE(6506)] = 201860, + [SMALL_STATE(6507)] = 201876, + [SMALL_STATE(6508)] = 201890, + [SMALL_STATE(6509)] = 201906, + [SMALL_STATE(6510)] = 201922, + [SMALL_STATE(6511)] = 201938, + [SMALL_STATE(6512)] = 201952, + [SMALL_STATE(6513)] = 201966, + [SMALL_STATE(6514)] = 201980, + [SMALL_STATE(6515)] = 201996, + [SMALL_STATE(6516)] = 202012, + [SMALL_STATE(6517)] = 202026, + [SMALL_STATE(6518)] = 202040, + [SMALL_STATE(6519)] = 202056, + [SMALL_STATE(6520)] = 202072, + [SMALL_STATE(6521)] = 202088, + [SMALL_STATE(6522)] = 202102, + [SMALL_STATE(6523)] = 202116, + [SMALL_STATE(6524)] = 202130, + [SMALL_STATE(6525)] = 202146, + [SMALL_STATE(6526)] = 202160, + [SMALL_STATE(6527)] = 202174, + [SMALL_STATE(6528)] = 202190, + [SMALL_STATE(6529)] = 202206, + [SMALL_STATE(6530)] = 202222, + [SMALL_STATE(6531)] = 202238, + [SMALL_STATE(6532)] = 202254, + [SMALL_STATE(6533)] = 202270, + [SMALL_STATE(6534)] = 202286, + [SMALL_STATE(6535)] = 202300, + [SMALL_STATE(6536)] = 202316, + [SMALL_STATE(6537)] = 202330, + [SMALL_STATE(6538)] = 202346, + [SMALL_STATE(6539)] = 202362, + [SMALL_STATE(6540)] = 202378, + [SMALL_STATE(6541)] = 202392, + [SMALL_STATE(6542)] = 202408, + [SMALL_STATE(6543)] = 202422, + [SMALL_STATE(6544)] = 202438, + [SMALL_STATE(6545)] = 202454, + [SMALL_STATE(6546)] = 202468, + [SMALL_STATE(6547)] = 202484, + [SMALL_STATE(6548)] = 202500, + [SMALL_STATE(6549)] = 202516, + [SMALL_STATE(6550)] = 202532, + [SMALL_STATE(6551)] = 202546, + [SMALL_STATE(6552)] = 202562, + [SMALL_STATE(6553)] = 202578, + [SMALL_STATE(6554)] = 202592, + [SMALL_STATE(6555)] = 202606, + [SMALL_STATE(6556)] = 202622, + [SMALL_STATE(6557)] = 202638, + [SMALL_STATE(6558)] = 202654, + [SMALL_STATE(6559)] = 202670, + [SMALL_STATE(6560)] = 202686, + [SMALL_STATE(6561)] = 202702, + [SMALL_STATE(6562)] = 202718, + [SMALL_STATE(6563)] = 202734, + [SMALL_STATE(6564)] = 202750, + [SMALL_STATE(6565)] = 202764, + [SMALL_STATE(6566)] = 202778, + [SMALL_STATE(6567)] = 202794, + [SMALL_STATE(6568)] = 202808, + [SMALL_STATE(6569)] = 202822, + [SMALL_STATE(6570)] = 202836, + [SMALL_STATE(6571)] = 202850, + [SMALL_STATE(6572)] = 202866, + [SMALL_STATE(6573)] = 202880, + [SMALL_STATE(6574)] = 202896, + [SMALL_STATE(6575)] = 202912, + [SMALL_STATE(6576)] = 202926, + [SMALL_STATE(6577)] = 202942, + [SMALL_STATE(6578)] = 202956, + [SMALL_STATE(6579)] = 202972, + [SMALL_STATE(6580)] = 202988, + [SMALL_STATE(6581)] = 203004, + [SMALL_STATE(6582)] = 203020, + [SMALL_STATE(6583)] = 203034, + [SMALL_STATE(6584)] = 203050, + [SMALL_STATE(6585)] = 203064, + [SMALL_STATE(6586)] = 203080, + [SMALL_STATE(6587)] = 203094, + [SMALL_STATE(6588)] = 203108, + [SMALL_STATE(6589)] = 203124, + [SMALL_STATE(6590)] = 203140, + [SMALL_STATE(6591)] = 203156, + [SMALL_STATE(6592)] = 203172, + [SMALL_STATE(6593)] = 203188, + [SMALL_STATE(6594)] = 203202, + [SMALL_STATE(6595)] = 203218, + [SMALL_STATE(6596)] = 203234, + [SMALL_STATE(6597)] = 203248, + [SMALL_STATE(6598)] = 203264, + [SMALL_STATE(6599)] = 203280, + [SMALL_STATE(6600)] = 203296, + [SMALL_STATE(6601)] = 203312, + [SMALL_STATE(6602)] = 203328, + [SMALL_STATE(6603)] = 203344, + [SMALL_STATE(6604)] = 203360, + [SMALL_STATE(6605)] = 203376, + [SMALL_STATE(6606)] = 203390, + [SMALL_STATE(6607)] = 203406, + [SMALL_STATE(6608)] = 203422, + [SMALL_STATE(6609)] = 203436, + [SMALL_STATE(6610)] = 203450, + [SMALL_STATE(6611)] = 203464, + [SMALL_STATE(6612)] = 203480, + [SMALL_STATE(6613)] = 203494, + [SMALL_STATE(6614)] = 203508, + [SMALL_STATE(6615)] = 203522, + [SMALL_STATE(6616)] = 203536, + [SMALL_STATE(6617)] = 203550, + [SMALL_STATE(6618)] = 203564, + [SMALL_STATE(6619)] = 203578, + [SMALL_STATE(6620)] = 203592, + [SMALL_STATE(6621)] = 203608, + [SMALL_STATE(6622)] = 203624, + [SMALL_STATE(6623)] = 203638, + [SMALL_STATE(6624)] = 203654, + [SMALL_STATE(6625)] = 203668, + [SMALL_STATE(6626)] = 203684, + [SMALL_STATE(6627)] = 203700, + [SMALL_STATE(6628)] = 203716, + [SMALL_STATE(6629)] = 203730, + [SMALL_STATE(6630)] = 203744, + [SMALL_STATE(6631)] = 203758, + [SMALL_STATE(6632)] = 203772, + [SMALL_STATE(6633)] = 203786, + [SMALL_STATE(6634)] = 203802, + [SMALL_STATE(6635)] = 203816, + [SMALL_STATE(6636)] = 203830, + [SMALL_STATE(6637)] = 203846, + [SMALL_STATE(6638)] = 203860, + [SMALL_STATE(6639)] = 203876, + [SMALL_STATE(6640)] = 203890, + [SMALL_STATE(6641)] = 203904, + [SMALL_STATE(6642)] = 203920, + [SMALL_STATE(6643)] = 203936, + [SMALL_STATE(6644)] = 203950, + [SMALL_STATE(6645)] = 203966, + [SMALL_STATE(6646)] = 203980, + [SMALL_STATE(6647)] = 203994, + [SMALL_STATE(6648)] = 204010, + [SMALL_STATE(6649)] = 204024, + [SMALL_STATE(6650)] = 204040, + [SMALL_STATE(6651)] = 204056, + [SMALL_STATE(6652)] = 204072, + [SMALL_STATE(6653)] = 204086, + [SMALL_STATE(6654)] = 204102, + [SMALL_STATE(6655)] = 204118, + [SMALL_STATE(6656)] = 204134, + [SMALL_STATE(6657)] = 204150, + [SMALL_STATE(6658)] = 204164, + [SMALL_STATE(6659)] = 204180, + [SMALL_STATE(6660)] = 204196, + [SMALL_STATE(6661)] = 204212, + [SMALL_STATE(6662)] = 204228, + [SMALL_STATE(6663)] = 204242, + [SMALL_STATE(6664)] = 204258, + [SMALL_STATE(6665)] = 204272, + [SMALL_STATE(6666)] = 204288, + [SMALL_STATE(6667)] = 204304, + [SMALL_STATE(6668)] = 204320, + [SMALL_STATE(6669)] = 204336, + [SMALL_STATE(6670)] = 204352, + [SMALL_STATE(6671)] = 204368, + [SMALL_STATE(6672)] = 204384, + [SMALL_STATE(6673)] = 204400, + [SMALL_STATE(6674)] = 204414, + [SMALL_STATE(6675)] = 204430, + [SMALL_STATE(6676)] = 204444, + [SMALL_STATE(6677)] = 204458, + [SMALL_STATE(6678)] = 204474, + [SMALL_STATE(6679)] = 204490, + [SMALL_STATE(6680)] = 204506, + [SMALL_STATE(6681)] = 204522, + [SMALL_STATE(6682)] = 204538, + [SMALL_STATE(6683)] = 204554, + [SMALL_STATE(6684)] = 204568, + [SMALL_STATE(6685)] = 204582, + [SMALL_STATE(6686)] = 204598, + [SMALL_STATE(6687)] = 204614, + [SMALL_STATE(6688)] = 204630, + [SMALL_STATE(6689)] = 204644, + [SMALL_STATE(6690)] = 204658, + [SMALL_STATE(6691)] = 204672, + [SMALL_STATE(6692)] = 204688, + [SMALL_STATE(6693)] = 204702, + [SMALL_STATE(6694)] = 204716, + [SMALL_STATE(6695)] = 204730, + [SMALL_STATE(6696)] = 204744, + [SMALL_STATE(6697)] = 204760, + [SMALL_STATE(6698)] = 204776, + [SMALL_STATE(6699)] = 204792, + [SMALL_STATE(6700)] = 204808, + [SMALL_STATE(6701)] = 204824, + [SMALL_STATE(6702)] = 204840, + [SMALL_STATE(6703)] = 204856, + [SMALL_STATE(6704)] = 204870, + [SMALL_STATE(6705)] = 204884, + [SMALL_STATE(6706)] = 204898, + [SMALL_STATE(6707)] = 204914, + [SMALL_STATE(6708)] = 204928, + [SMALL_STATE(6709)] = 204942, + [SMALL_STATE(6710)] = 204958, + [SMALL_STATE(6711)] = 204974, + [SMALL_STATE(6712)] = 204990, + [SMALL_STATE(6713)] = 205006, + [SMALL_STATE(6714)] = 205020, + [SMALL_STATE(6715)] = 205036, + [SMALL_STATE(6716)] = 205050, + [SMALL_STATE(6717)] = 205066, + [SMALL_STATE(6718)] = 205082, + [SMALL_STATE(6719)] = 205098, + [SMALL_STATE(6720)] = 205114, + [SMALL_STATE(6721)] = 205130, + [SMALL_STATE(6722)] = 205146, + [SMALL_STATE(6723)] = 205162, + [SMALL_STATE(6724)] = 205176, + [SMALL_STATE(6725)] = 205192, + [SMALL_STATE(6726)] = 205208, + [SMALL_STATE(6727)] = 205222, + [SMALL_STATE(6728)] = 205236, + [SMALL_STATE(6729)] = 205250, + [SMALL_STATE(6730)] = 205266, + [SMALL_STATE(6731)] = 205282, + [SMALL_STATE(6732)] = 205296, + [SMALL_STATE(6733)] = 205312, + [SMALL_STATE(6734)] = 205328, + [SMALL_STATE(6735)] = 205342, + [SMALL_STATE(6736)] = 205356, + [SMALL_STATE(6737)] = 205372, + [SMALL_STATE(6738)] = 205388, + [SMALL_STATE(6739)] = 205402, + [SMALL_STATE(6740)] = 205416, + [SMALL_STATE(6741)] = 205430, + [SMALL_STATE(6742)] = 205444, + [SMALL_STATE(6743)] = 205458, + [SMALL_STATE(6744)] = 205474, + [SMALL_STATE(6745)] = 205488, + [SMALL_STATE(6746)] = 205504, + [SMALL_STATE(6747)] = 205520, + [SMALL_STATE(6748)] = 205534, + [SMALL_STATE(6749)] = 205550, + [SMALL_STATE(6750)] = 205566, + [SMALL_STATE(6751)] = 205582, + [SMALL_STATE(6752)] = 205596, + [SMALL_STATE(6753)] = 205612, + [SMALL_STATE(6754)] = 205628, + [SMALL_STATE(6755)] = 205642, + [SMALL_STATE(6756)] = 205656, + [SMALL_STATE(6757)] = 205672, + [SMALL_STATE(6758)] = 205686, + [SMALL_STATE(6759)] = 205700, + [SMALL_STATE(6760)] = 205714, + [SMALL_STATE(6761)] = 205728, + [SMALL_STATE(6762)] = 205742, + [SMALL_STATE(6763)] = 205758, + [SMALL_STATE(6764)] = 205772, + [SMALL_STATE(6765)] = 205788, + [SMALL_STATE(6766)] = 205804, + [SMALL_STATE(6767)] = 205820, + [SMALL_STATE(6768)] = 205836, + [SMALL_STATE(6769)] = 205852, + [SMALL_STATE(6770)] = 205866, + [SMALL_STATE(6771)] = 205882, + [SMALL_STATE(6772)] = 205896, + [SMALL_STATE(6773)] = 205912, + [SMALL_STATE(6774)] = 205928, + [SMALL_STATE(6775)] = 205944, + [SMALL_STATE(6776)] = 205960, + [SMALL_STATE(6777)] = 205974, + [SMALL_STATE(6778)] = 205990, + [SMALL_STATE(6779)] = 206004, + [SMALL_STATE(6780)] = 206020, + [SMALL_STATE(6781)] = 206036, + [SMALL_STATE(6782)] = 206052, + [SMALL_STATE(6783)] = 206068, + [SMALL_STATE(6784)] = 206082, + [SMALL_STATE(6785)] = 206098, + [SMALL_STATE(6786)] = 206112, + [SMALL_STATE(6787)] = 206128, + [SMALL_STATE(6788)] = 206144, + [SMALL_STATE(6789)] = 206158, + [SMALL_STATE(6790)] = 206172, + [SMALL_STATE(6791)] = 206188, + [SMALL_STATE(6792)] = 206202, + [SMALL_STATE(6793)] = 206218, + [SMALL_STATE(6794)] = 206232, + [SMALL_STATE(6795)] = 206248, + [SMALL_STATE(6796)] = 206262, + [SMALL_STATE(6797)] = 206278, + [SMALL_STATE(6798)] = 206294, + [SMALL_STATE(6799)] = 206308, + [SMALL_STATE(6800)] = 206322, + [SMALL_STATE(6801)] = 206336, + [SMALL_STATE(6802)] = 206350, + [SMALL_STATE(6803)] = 206366, + [SMALL_STATE(6804)] = 206382, + [SMALL_STATE(6805)] = 206396, + [SMALL_STATE(6806)] = 206410, + [SMALL_STATE(6807)] = 206424, + [SMALL_STATE(6808)] = 206440, + [SMALL_STATE(6809)] = 206456, + [SMALL_STATE(6810)] = 206472, + [SMALL_STATE(6811)] = 206486, + [SMALL_STATE(6812)] = 206500, + [SMALL_STATE(6813)] = 206516, + [SMALL_STATE(6814)] = 206532, + [SMALL_STATE(6815)] = 206548, + [SMALL_STATE(6816)] = 206562, + [SMALL_STATE(6817)] = 206576, + [SMALL_STATE(6818)] = 206592, + [SMALL_STATE(6819)] = 206608, + [SMALL_STATE(6820)] = 206622, + [SMALL_STATE(6821)] = 206636, + [SMALL_STATE(6822)] = 206650, + [SMALL_STATE(6823)] = 206664, + [SMALL_STATE(6824)] = 206680, + [SMALL_STATE(6825)] = 206696, + [SMALL_STATE(6826)] = 206710, + [SMALL_STATE(6827)] = 206726, + [SMALL_STATE(6828)] = 206742, + [SMALL_STATE(6829)] = 206756, + [SMALL_STATE(6830)] = 206770, + [SMALL_STATE(6831)] = 206784, + [SMALL_STATE(6832)] = 206798, + [SMALL_STATE(6833)] = 206812, + [SMALL_STATE(6834)] = 206828, + [SMALL_STATE(6835)] = 206844, + [SMALL_STATE(6836)] = 206860, + [SMALL_STATE(6837)] = 206874, + [SMALL_STATE(6838)] = 206890, + [SMALL_STATE(6839)] = 206906, + [SMALL_STATE(6840)] = 206920, + [SMALL_STATE(6841)] = 206936, + [SMALL_STATE(6842)] = 206950, + [SMALL_STATE(6843)] = 206966, + [SMALL_STATE(6844)] = 206980, + [SMALL_STATE(6845)] = 206994, + [SMALL_STATE(6846)] = 207010, + [SMALL_STATE(6847)] = 207026, + [SMALL_STATE(6848)] = 207042, + [SMALL_STATE(6849)] = 207058, + [SMALL_STATE(6850)] = 207074, + [SMALL_STATE(6851)] = 207088, + [SMALL_STATE(6852)] = 207104, + [SMALL_STATE(6853)] = 207118, + [SMALL_STATE(6854)] = 207134, + [SMALL_STATE(6855)] = 207148, + [SMALL_STATE(6856)] = 207162, + [SMALL_STATE(6857)] = 207178, + [SMALL_STATE(6858)] = 207194, + [SMALL_STATE(6859)] = 207208, + [SMALL_STATE(6860)] = 207222, + [SMALL_STATE(6861)] = 207236, + [SMALL_STATE(6862)] = 207252, + [SMALL_STATE(6863)] = 207268, + [SMALL_STATE(6864)] = 207282, + [SMALL_STATE(6865)] = 207298, + [SMALL_STATE(6866)] = 207314, + [SMALL_STATE(6867)] = 207328, + [SMALL_STATE(6868)] = 207342, + [SMALL_STATE(6869)] = 207358, + [SMALL_STATE(6870)] = 207374, + [SMALL_STATE(6871)] = 207388, + [SMALL_STATE(6872)] = 207404, + [SMALL_STATE(6873)] = 207418, + [SMALL_STATE(6874)] = 207434, + [SMALL_STATE(6875)] = 207450, + [SMALL_STATE(6876)] = 207466, + [SMALL_STATE(6877)] = 207482, + [SMALL_STATE(6878)] = 207498, + [SMALL_STATE(6879)] = 207514, + [SMALL_STATE(6880)] = 207528, + [SMALL_STATE(6881)] = 207544, + [SMALL_STATE(6882)] = 207558, + [SMALL_STATE(6883)] = 207574, + [SMALL_STATE(6884)] = 207588, + [SMALL_STATE(6885)] = 207604, + [SMALL_STATE(6886)] = 207620, + [SMALL_STATE(6887)] = 207636, + [SMALL_STATE(6888)] = 207652, + [SMALL_STATE(6889)] = 207668, + [SMALL_STATE(6890)] = 207684, + [SMALL_STATE(6891)] = 207700, + [SMALL_STATE(6892)] = 207716, + [SMALL_STATE(6893)] = 207732, + [SMALL_STATE(6894)] = 207748, + [SMALL_STATE(6895)] = 207764, + [SMALL_STATE(6896)] = 207778, + [SMALL_STATE(6897)] = 207794, + [SMALL_STATE(6898)] = 207810, + [SMALL_STATE(6899)] = 207824, + [SMALL_STATE(6900)] = 207838, + [SMALL_STATE(6901)] = 207854, + [SMALL_STATE(6902)] = 207870, + [SMALL_STATE(6903)] = 207886, + [SMALL_STATE(6904)] = 207900, + [SMALL_STATE(6905)] = 207914, + [SMALL_STATE(6906)] = 207928, + [SMALL_STATE(6907)] = 207944, + [SMALL_STATE(6908)] = 207960, + [SMALL_STATE(6909)] = 207976, + [SMALL_STATE(6910)] = 207990, + [SMALL_STATE(6911)] = 208006, + [SMALL_STATE(6912)] = 208022, + [SMALL_STATE(6913)] = 208036, + [SMALL_STATE(6914)] = 208052, + [SMALL_STATE(6915)] = 208066, + [SMALL_STATE(6916)] = 208082, + [SMALL_STATE(6917)] = 208096, + [SMALL_STATE(6918)] = 208112, + [SMALL_STATE(6919)] = 208128, + [SMALL_STATE(6920)] = 208144, + [SMALL_STATE(6921)] = 208160, + [SMALL_STATE(6922)] = 208174, + [SMALL_STATE(6923)] = 208190, + [SMALL_STATE(6924)] = 208204, + [SMALL_STATE(6925)] = 208220, + [SMALL_STATE(6926)] = 208236, + [SMALL_STATE(6927)] = 208250, + [SMALL_STATE(6928)] = 208266, + [SMALL_STATE(6929)] = 208280, + [SMALL_STATE(6930)] = 208296, + [SMALL_STATE(6931)] = 208310, + [SMALL_STATE(6932)] = 208326, + [SMALL_STATE(6933)] = 208342, + [SMALL_STATE(6934)] = 208356, + [SMALL_STATE(6935)] = 208370, + [SMALL_STATE(6936)] = 208384, + [SMALL_STATE(6937)] = 208400, + [SMALL_STATE(6938)] = 208414, + [SMALL_STATE(6939)] = 208430, + [SMALL_STATE(6940)] = 208444, + [SMALL_STATE(6941)] = 208458, + [SMALL_STATE(6942)] = 208474, + [SMALL_STATE(6943)] = 208490, + [SMALL_STATE(6944)] = 208506, + [SMALL_STATE(6945)] = 208522, + [SMALL_STATE(6946)] = 208536, + [SMALL_STATE(6947)] = 208552, + [SMALL_STATE(6948)] = 208568, + [SMALL_STATE(6949)] = 208584, + [SMALL_STATE(6950)] = 208600, + [SMALL_STATE(6951)] = 208614, + [SMALL_STATE(6952)] = 208630, + [SMALL_STATE(6953)] = 208646, + [SMALL_STATE(6954)] = 208660, + [SMALL_STATE(6955)] = 208676, + [SMALL_STATE(6956)] = 208692, + [SMALL_STATE(6957)] = 208708, + [SMALL_STATE(6958)] = 208722, + [SMALL_STATE(6959)] = 208738, + [SMALL_STATE(6960)] = 208752, + [SMALL_STATE(6961)] = 208768, + [SMALL_STATE(6962)] = 208784, + [SMALL_STATE(6963)] = 208798, + [SMALL_STATE(6964)] = 208812, + [SMALL_STATE(6965)] = 208826, + [SMALL_STATE(6966)] = 208840, + [SMALL_STATE(6967)] = 208854, + [SMALL_STATE(6968)] = 208868, + [SMALL_STATE(6969)] = 208884, + [SMALL_STATE(6970)] = 208898, + [SMALL_STATE(6971)] = 208914, + [SMALL_STATE(6972)] = 208930, + [SMALL_STATE(6973)] = 208946, + [SMALL_STATE(6974)] = 208962, + [SMALL_STATE(6975)] = 208976, + [SMALL_STATE(6976)] = 208990, + [SMALL_STATE(6977)] = 209006, + [SMALL_STATE(6978)] = 209020, + [SMALL_STATE(6979)] = 209034, + [SMALL_STATE(6980)] = 209050, + [SMALL_STATE(6981)] = 209064, + [SMALL_STATE(6982)] = 209080, + [SMALL_STATE(6983)] = 209096, + [SMALL_STATE(6984)] = 209110, + [SMALL_STATE(6985)] = 209126, + [SMALL_STATE(6986)] = 209142, + [SMALL_STATE(6987)] = 209156, + [SMALL_STATE(6988)] = 209172, + [SMALL_STATE(6989)] = 209188, + [SMALL_STATE(6990)] = 209204, + [SMALL_STATE(6991)] = 209218, + [SMALL_STATE(6992)] = 209234, + [SMALL_STATE(6993)] = 209250, + [SMALL_STATE(6994)] = 209266, + [SMALL_STATE(6995)] = 209282, + [SMALL_STATE(6996)] = 209298, + [SMALL_STATE(6997)] = 209312, + [SMALL_STATE(6998)] = 209326, + [SMALL_STATE(6999)] = 209340, + [SMALL_STATE(7000)] = 209354, + [SMALL_STATE(7001)] = 209367, + [SMALL_STATE(7002)] = 209380, + [SMALL_STATE(7003)] = 209393, + [SMALL_STATE(7004)] = 209406, + [SMALL_STATE(7005)] = 209419, + [SMALL_STATE(7006)] = 209432, + [SMALL_STATE(7007)] = 209445, + [SMALL_STATE(7008)] = 209458, + [SMALL_STATE(7009)] = 209471, + [SMALL_STATE(7010)] = 209484, + [SMALL_STATE(7011)] = 209497, + [SMALL_STATE(7012)] = 209510, + [SMALL_STATE(7013)] = 209523, + [SMALL_STATE(7014)] = 209536, + [SMALL_STATE(7015)] = 209549, + [SMALL_STATE(7016)] = 209562, + [SMALL_STATE(7017)] = 209575, + [SMALL_STATE(7018)] = 209588, + [SMALL_STATE(7019)] = 209601, + [SMALL_STATE(7020)] = 209614, + [SMALL_STATE(7021)] = 209627, + [SMALL_STATE(7022)] = 209640, + [SMALL_STATE(7023)] = 209653, + [SMALL_STATE(7024)] = 209666, + [SMALL_STATE(7025)] = 209679, + [SMALL_STATE(7026)] = 209692, + [SMALL_STATE(7027)] = 209705, + [SMALL_STATE(7028)] = 209718, + [SMALL_STATE(7029)] = 209731, + [SMALL_STATE(7030)] = 209744, + [SMALL_STATE(7031)] = 209757, + [SMALL_STATE(7032)] = 209770, + [SMALL_STATE(7033)] = 209783, + [SMALL_STATE(7034)] = 209796, + [SMALL_STATE(7035)] = 209809, + [SMALL_STATE(7036)] = 209822, + [SMALL_STATE(7037)] = 209835, + [SMALL_STATE(7038)] = 209848, + [SMALL_STATE(7039)] = 209861, + [SMALL_STATE(7040)] = 209874, + [SMALL_STATE(7041)] = 209887, + [SMALL_STATE(7042)] = 209900, + [SMALL_STATE(7043)] = 209913, + [SMALL_STATE(7044)] = 209926, + [SMALL_STATE(7045)] = 209939, + [SMALL_STATE(7046)] = 209952, + [SMALL_STATE(7047)] = 209965, + [SMALL_STATE(7048)] = 209978, + [SMALL_STATE(7049)] = 209991, + [SMALL_STATE(7050)] = 210004, + [SMALL_STATE(7051)] = 210017, + [SMALL_STATE(7052)] = 210030, + [SMALL_STATE(7053)] = 210043, + [SMALL_STATE(7054)] = 210056, + [SMALL_STATE(7055)] = 210069, + [SMALL_STATE(7056)] = 210082, + [SMALL_STATE(7057)] = 210095, + [SMALL_STATE(7058)] = 210108, + [SMALL_STATE(7059)] = 210121, + [SMALL_STATE(7060)] = 210134, + [SMALL_STATE(7061)] = 210147, + [SMALL_STATE(7062)] = 210160, + [SMALL_STATE(7063)] = 210173, + [SMALL_STATE(7064)] = 210186, + [SMALL_STATE(7065)] = 210199, + [SMALL_STATE(7066)] = 210212, + [SMALL_STATE(7067)] = 210225, + [SMALL_STATE(7068)] = 210238, + [SMALL_STATE(7069)] = 210251, + [SMALL_STATE(7070)] = 210264, + [SMALL_STATE(7071)] = 210277, + [SMALL_STATE(7072)] = 210290, + [SMALL_STATE(7073)] = 210303, + [SMALL_STATE(7074)] = 210316, + [SMALL_STATE(7075)] = 210329, + [SMALL_STATE(7076)] = 210342, + [SMALL_STATE(7077)] = 210355, + [SMALL_STATE(7078)] = 210368, + [SMALL_STATE(7079)] = 210381, + [SMALL_STATE(7080)] = 210394, + [SMALL_STATE(7081)] = 210407, + [SMALL_STATE(7082)] = 210420, + [SMALL_STATE(7083)] = 210433, + [SMALL_STATE(7084)] = 210446, + [SMALL_STATE(7085)] = 210459, + [SMALL_STATE(7086)] = 210472, + [SMALL_STATE(7087)] = 210485, + [SMALL_STATE(7088)] = 210498, + [SMALL_STATE(7089)] = 210511, + [SMALL_STATE(7090)] = 210524, + [SMALL_STATE(7091)] = 210537, + [SMALL_STATE(7092)] = 210550, + [SMALL_STATE(7093)] = 210563, + [SMALL_STATE(7094)] = 210576, + [SMALL_STATE(7095)] = 210589, + [SMALL_STATE(7096)] = 210602, + [SMALL_STATE(7097)] = 210615, + [SMALL_STATE(7098)] = 210628, + [SMALL_STATE(7099)] = 210641, + [SMALL_STATE(7100)] = 210654, + [SMALL_STATE(7101)] = 210667, + [SMALL_STATE(7102)] = 210680, + [SMALL_STATE(7103)] = 210693, + [SMALL_STATE(7104)] = 210706, + [SMALL_STATE(7105)] = 210719, + [SMALL_STATE(7106)] = 210732, + [SMALL_STATE(7107)] = 210745, + [SMALL_STATE(7108)] = 210758, + [SMALL_STATE(7109)] = 210771, + [SMALL_STATE(7110)] = 210784, + [SMALL_STATE(7111)] = 210797, + [SMALL_STATE(7112)] = 210810, + [SMALL_STATE(7113)] = 210823, + [SMALL_STATE(7114)] = 210836, + [SMALL_STATE(7115)] = 210849, + [SMALL_STATE(7116)] = 210862, + [SMALL_STATE(7117)] = 210875, + [SMALL_STATE(7118)] = 210888, + [SMALL_STATE(7119)] = 210901, + [SMALL_STATE(7120)] = 210914, + [SMALL_STATE(7121)] = 210927, + [SMALL_STATE(7122)] = 210940, + [SMALL_STATE(7123)] = 210953, + [SMALL_STATE(7124)] = 210966, + [SMALL_STATE(7125)] = 210979, + [SMALL_STATE(7126)] = 210992, + [SMALL_STATE(7127)] = 211005, + [SMALL_STATE(7128)] = 211018, + [SMALL_STATE(7129)] = 211031, + [SMALL_STATE(7130)] = 211044, + [SMALL_STATE(7131)] = 211057, + [SMALL_STATE(7132)] = 211070, + [SMALL_STATE(7133)] = 211083, + [SMALL_STATE(7134)] = 211096, + [SMALL_STATE(7135)] = 211109, + [SMALL_STATE(7136)] = 211122, + [SMALL_STATE(7137)] = 211135, + [SMALL_STATE(7138)] = 211148, + [SMALL_STATE(7139)] = 211161, + [SMALL_STATE(7140)] = 211174, + [SMALL_STATE(7141)] = 211187, + [SMALL_STATE(7142)] = 211200, + [SMALL_STATE(7143)] = 211213, + [SMALL_STATE(7144)] = 211226, + [SMALL_STATE(7145)] = 211239, + [SMALL_STATE(7146)] = 211252, + [SMALL_STATE(7147)] = 211265, + [SMALL_STATE(7148)] = 211278, + [SMALL_STATE(7149)] = 211291, + [SMALL_STATE(7150)] = 211304, + [SMALL_STATE(7151)] = 211317, + [SMALL_STATE(7152)] = 211330, + [SMALL_STATE(7153)] = 211343, + [SMALL_STATE(7154)] = 211356, + [SMALL_STATE(7155)] = 211369, + [SMALL_STATE(7156)] = 211382, + [SMALL_STATE(7157)] = 211395, + [SMALL_STATE(7158)] = 211408, + [SMALL_STATE(7159)] = 211421, + [SMALL_STATE(7160)] = 211434, + [SMALL_STATE(7161)] = 211447, + [SMALL_STATE(7162)] = 211460, + [SMALL_STATE(7163)] = 211473, + [SMALL_STATE(7164)] = 211486, + [SMALL_STATE(7165)] = 211499, + [SMALL_STATE(7166)] = 211512, + [SMALL_STATE(7167)] = 211525, + [SMALL_STATE(7168)] = 211538, + [SMALL_STATE(7169)] = 211551, + [SMALL_STATE(7170)] = 211564, + [SMALL_STATE(7171)] = 211577, + [SMALL_STATE(7172)] = 211590, + [SMALL_STATE(7173)] = 211603, + [SMALL_STATE(7174)] = 211616, + [SMALL_STATE(7175)] = 211629, + [SMALL_STATE(7176)] = 211642, + [SMALL_STATE(7177)] = 211655, + [SMALL_STATE(7178)] = 211668, + [SMALL_STATE(7179)] = 211681, + [SMALL_STATE(7180)] = 211694, + [SMALL_STATE(7181)] = 211707, + [SMALL_STATE(7182)] = 211720, + [SMALL_STATE(7183)] = 211733, + [SMALL_STATE(7184)] = 211746, + [SMALL_STATE(7185)] = 211759, + [SMALL_STATE(7186)] = 211772, + [SMALL_STATE(7187)] = 211785, + [SMALL_STATE(7188)] = 211798, + [SMALL_STATE(7189)] = 211811, + [SMALL_STATE(7190)] = 211824, + [SMALL_STATE(7191)] = 211837, + [SMALL_STATE(7192)] = 211850, + [SMALL_STATE(7193)] = 211863, + [SMALL_STATE(7194)] = 211876, + [SMALL_STATE(7195)] = 211889, + [SMALL_STATE(7196)] = 211902, + [SMALL_STATE(7197)] = 211915, + [SMALL_STATE(7198)] = 211928, + [SMALL_STATE(7199)] = 211941, + [SMALL_STATE(7200)] = 211954, + [SMALL_STATE(7201)] = 211967, + [SMALL_STATE(7202)] = 211980, + [SMALL_STATE(7203)] = 211993, + [SMALL_STATE(7204)] = 212006, + [SMALL_STATE(7205)] = 212019, + [SMALL_STATE(7206)] = 212032, + [SMALL_STATE(7207)] = 212045, + [SMALL_STATE(7208)] = 212058, + [SMALL_STATE(7209)] = 212071, + [SMALL_STATE(7210)] = 212084, + [SMALL_STATE(7211)] = 212097, + [SMALL_STATE(7212)] = 212110, + [SMALL_STATE(7213)] = 212123, + [SMALL_STATE(7214)] = 212136, + [SMALL_STATE(7215)] = 212149, + [SMALL_STATE(7216)] = 212162, + [SMALL_STATE(7217)] = 212175, + [SMALL_STATE(7218)] = 212188, + [SMALL_STATE(7219)] = 212201, + [SMALL_STATE(7220)] = 212214, + [SMALL_STATE(7221)] = 212227, + [SMALL_STATE(7222)] = 212240, + [SMALL_STATE(7223)] = 212253, + [SMALL_STATE(7224)] = 212266, + [SMALL_STATE(7225)] = 212279, + [SMALL_STATE(7226)] = 212292, + [SMALL_STATE(7227)] = 212305, + [SMALL_STATE(7228)] = 212318, + [SMALL_STATE(7229)] = 212331, + [SMALL_STATE(7230)] = 212344, + [SMALL_STATE(7231)] = 212357, + [SMALL_STATE(7232)] = 212370, + [SMALL_STATE(7233)] = 212383, + [SMALL_STATE(7234)] = 212396, + [SMALL_STATE(7235)] = 212409, + [SMALL_STATE(7236)] = 212422, + [SMALL_STATE(7237)] = 212435, + [SMALL_STATE(7238)] = 212448, + [SMALL_STATE(7239)] = 212461, + [SMALL_STATE(7240)] = 212474, + [SMALL_STATE(7241)] = 212487, + [SMALL_STATE(7242)] = 212500, + [SMALL_STATE(7243)] = 212513, + [SMALL_STATE(7244)] = 212526, + [SMALL_STATE(7245)] = 212539, + [SMALL_STATE(7246)] = 212552, + [SMALL_STATE(7247)] = 212565, + [SMALL_STATE(7248)] = 212578, + [SMALL_STATE(7249)] = 212591, + [SMALL_STATE(7250)] = 212604, + [SMALL_STATE(7251)] = 212617, + [SMALL_STATE(7252)] = 212630, + [SMALL_STATE(7253)] = 212643, + [SMALL_STATE(7254)] = 212656, + [SMALL_STATE(7255)] = 212669, + [SMALL_STATE(7256)] = 212682, + [SMALL_STATE(7257)] = 212695, + [SMALL_STATE(7258)] = 212708, + [SMALL_STATE(7259)] = 212721, + [SMALL_STATE(7260)] = 212734, + [SMALL_STATE(7261)] = 212747, + [SMALL_STATE(7262)] = 212760, + [SMALL_STATE(7263)] = 212773, + [SMALL_STATE(7264)] = 212786, + [SMALL_STATE(7265)] = 212799, + [SMALL_STATE(7266)] = 212812, + [SMALL_STATE(7267)] = 212825, + [SMALL_STATE(7268)] = 212838, + [SMALL_STATE(7269)] = 212851, + [SMALL_STATE(7270)] = 212864, + [SMALL_STATE(7271)] = 212877, + [SMALL_STATE(7272)] = 212890, + [SMALL_STATE(7273)] = 212903, + [SMALL_STATE(7274)] = 212916, + [SMALL_STATE(7275)] = 212929, + [SMALL_STATE(7276)] = 212942, + [SMALL_STATE(7277)] = 212955, + [SMALL_STATE(7278)] = 212968, + [SMALL_STATE(7279)] = 212981, + [SMALL_STATE(7280)] = 212994, + [SMALL_STATE(7281)] = 213007, + [SMALL_STATE(7282)] = 213020, + [SMALL_STATE(7283)] = 213033, + [SMALL_STATE(7284)] = 213046, + [SMALL_STATE(7285)] = 213059, + [SMALL_STATE(7286)] = 213072, + [SMALL_STATE(7287)] = 213085, + [SMALL_STATE(7288)] = 213098, + [SMALL_STATE(7289)] = 213111, + [SMALL_STATE(7290)] = 213124, + [SMALL_STATE(7291)] = 213137, + [SMALL_STATE(7292)] = 213150, + [SMALL_STATE(7293)] = 213163, + [SMALL_STATE(7294)] = 213176, + [SMALL_STATE(7295)] = 213189, + [SMALL_STATE(7296)] = 213202, + [SMALL_STATE(7297)] = 213215, + [SMALL_STATE(7298)] = 213228, + [SMALL_STATE(7299)] = 213241, + [SMALL_STATE(7300)] = 213254, + [SMALL_STATE(7301)] = 213267, + [SMALL_STATE(7302)] = 213280, + [SMALL_STATE(7303)] = 213293, + [SMALL_STATE(7304)] = 213306, + [SMALL_STATE(7305)] = 213319, + [SMALL_STATE(7306)] = 213332, + [SMALL_STATE(7307)] = 213345, + [SMALL_STATE(7308)] = 213358, + [SMALL_STATE(7309)] = 213371, + [SMALL_STATE(7310)] = 213384, + [SMALL_STATE(7311)] = 213397, + [SMALL_STATE(7312)] = 213410, + [SMALL_STATE(7313)] = 213423, + [SMALL_STATE(7314)] = 213436, + [SMALL_STATE(7315)] = 213449, + [SMALL_STATE(7316)] = 213462, + [SMALL_STATE(7317)] = 213475, + [SMALL_STATE(7318)] = 213488, + [SMALL_STATE(7319)] = 213501, + [SMALL_STATE(7320)] = 213514, + [SMALL_STATE(7321)] = 213527, + [SMALL_STATE(7322)] = 213540, + [SMALL_STATE(7323)] = 213553, + [SMALL_STATE(7324)] = 213566, + [SMALL_STATE(7325)] = 213579, + [SMALL_STATE(7326)] = 213592, + [SMALL_STATE(7327)] = 213605, + [SMALL_STATE(7328)] = 213618, + [SMALL_STATE(7329)] = 213631, + [SMALL_STATE(7330)] = 213644, + [SMALL_STATE(7331)] = 213657, + [SMALL_STATE(7332)] = 213670, + [SMALL_STATE(7333)] = 213683, + [SMALL_STATE(7334)] = 213696, + [SMALL_STATE(7335)] = 213709, + [SMALL_STATE(7336)] = 213722, + [SMALL_STATE(7337)] = 213735, + [SMALL_STATE(7338)] = 213748, + [SMALL_STATE(7339)] = 213761, + [SMALL_STATE(7340)] = 213774, + [SMALL_STATE(7341)] = 213787, + [SMALL_STATE(7342)] = 213800, + [SMALL_STATE(7343)] = 213813, + [SMALL_STATE(7344)] = 213826, + [SMALL_STATE(7345)] = 213839, + [SMALL_STATE(7346)] = 213852, + [SMALL_STATE(7347)] = 213865, + [SMALL_STATE(7348)] = 213878, + [SMALL_STATE(7349)] = 213891, + [SMALL_STATE(7350)] = 213904, + [SMALL_STATE(7351)] = 213917, + [SMALL_STATE(7352)] = 213930, + [SMALL_STATE(7353)] = 213943, + [SMALL_STATE(7354)] = 213956, + [SMALL_STATE(7355)] = 213969, + [SMALL_STATE(7356)] = 213982, + [SMALL_STATE(7357)] = 213995, + [SMALL_STATE(7358)] = 214008, + [SMALL_STATE(7359)] = 214021, + [SMALL_STATE(7360)] = 214034, + [SMALL_STATE(7361)] = 214047, + [SMALL_STATE(7362)] = 214060, + [SMALL_STATE(7363)] = 214073, + [SMALL_STATE(7364)] = 214086, + [SMALL_STATE(7365)] = 214099, + [SMALL_STATE(7366)] = 214112, + [SMALL_STATE(7367)] = 214125, + [SMALL_STATE(7368)] = 214138, + [SMALL_STATE(7369)] = 214151, + [SMALL_STATE(7370)] = 214164, + [SMALL_STATE(7371)] = 214177, + [SMALL_STATE(7372)] = 214190, + [SMALL_STATE(7373)] = 214203, + [SMALL_STATE(7374)] = 214216, + [SMALL_STATE(7375)] = 214229, + [SMALL_STATE(7376)] = 214242, + [SMALL_STATE(7377)] = 214255, + [SMALL_STATE(7378)] = 214268, + [SMALL_STATE(7379)] = 214281, + [SMALL_STATE(7380)] = 214294, + [SMALL_STATE(7381)] = 214307, + [SMALL_STATE(7382)] = 214320, + [SMALL_STATE(7383)] = 214333, + [SMALL_STATE(7384)] = 214346, + [SMALL_STATE(7385)] = 214359, + [SMALL_STATE(7386)] = 214372, + [SMALL_STATE(7387)] = 214385, + [SMALL_STATE(7388)] = 214398, + [SMALL_STATE(7389)] = 214411, + [SMALL_STATE(7390)] = 214424, + [SMALL_STATE(7391)] = 214437, + [SMALL_STATE(7392)] = 214450, + [SMALL_STATE(7393)] = 214463, + [SMALL_STATE(7394)] = 214476, + [SMALL_STATE(7395)] = 214489, + [SMALL_STATE(7396)] = 214502, + [SMALL_STATE(7397)] = 214515, + [SMALL_STATE(7398)] = 214528, + [SMALL_STATE(7399)] = 214541, + [SMALL_STATE(7400)] = 214554, + [SMALL_STATE(7401)] = 214567, + [SMALL_STATE(7402)] = 214580, + [SMALL_STATE(7403)] = 214593, + [SMALL_STATE(7404)] = 214606, + [SMALL_STATE(7405)] = 214619, + [SMALL_STATE(7406)] = 214632, + [SMALL_STATE(7407)] = 214645, + [SMALL_STATE(7408)] = 214658, + [SMALL_STATE(7409)] = 214671, + [SMALL_STATE(7410)] = 214684, + [SMALL_STATE(7411)] = 214697, + [SMALL_STATE(7412)] = 214710, + [SMALL_STATE(7413)] = 214723, + [SMALL_STATE(7414)] = 214736, + [SMALL_STATE(7415)] = 214749, + [SMALL_STATE(7416)] = 214762, + [SMALL_STATE(7417)] = 214775, + [SMALL_STATE(7418)] = 214788, + [SMALL_STATE(7419)] = 214801, + [SMALL_STATE(7420)] = 214814, + [SMALL_STATE(7421)] = 214827, + [SMALL_STATE(7422)] = 214840, + [SMALL_STATE(7423)] = 214853, + [SMALL_STATE(7424)] = 214866, + [SMALL_STATE(7425)] = 214879, + [SMALL_STATE(7426)] = 214892, + [SMALL_STATE(7427)] = 214905, + [SMALL_STATE(7428)] = 214918, + [SMALL_STATE(7429)] = 214931, + [SMALL_STATE(7430)] = 214944, + [SMALL_STATE(7431)] = 214957, + [SMALL_STATE(7432)] = 214970, + [SMALL_STATE(7433)] = 214983, + [SMALL_STATE(7434)] = 214996, + [SMALL_STATE(7435)] = 215009, + [SMALL_STATE(7436)] = 215022, + [SMALL_STATE(7437)] = 215035, + [SMALL_STATE(7438)] = 215048, + [SMALL_STATE(7439)] = 215061, + [SMALL_STATE(7440)] = 215074, + [SMALL_STATE(7441)] = 215087, + [SMALL_STATE(7442)] = 215100, + [SMALL_STATE(7443)] = 215113, + [SMALL_STATE(7444)] = 215126, + [SMALL_STATE(7445)] = 215139, + [SMALL_STATE(7446)] = 215152, + [SMALL_STATE(7447)] = 215165, + [SMALL_STATE(7448)] = 215178, + [SMALL_STATE(7449)] = 215191, + [SMALL_STATE(7450)] = 215204, + [SMALL_STATE(7451)] = 215217, + [SMALL_STATE(7452)] = 215230, + [SMALL_STATE(7453)] = 215243, + [SMALL_STATE(7454)] = 215256, + [SMALL_STATE(7455)] = 215269, + [SMALL_STATE(7456)] = 215282, + [SMALL_STATE(7457)] = 215295, + [SMALL_STATE(7458)] = 215308, + [SMALL_STATE(7459)] = 215321, + [SMALL_STATE(7460)] = 215334, + [SMALL_STATE(7461)] = 215347, + [SMALL_STATE(7462)] = 215360, + [SMALL_STATE(7463)] = 215373, + [SMALL_STATE(7464)] = 215386, + [SMALL_STATE(7465)] = 215399, + [SMALL_STATE(7466)] = 215412, + [SMALL_STATE(7467)] = 215425, + [SMALL_STATE(7468)] = 215438, + [SMALL_STATE(7469)] = 215451, + [SMALL_STATE(7470)] = 215464, + [SMALL_STATE(7471)] = 215477, + [SMALL_STATE(7472)] = 215490, + [SMALL_STATE(7473)] = 215503, + [SMALL_STATE(7474)] = 215516, + [SMALL_STATE(7475)] = 215529, + [SMALL_STATE(7476)] = 215542, + [SMALL_STATE(7477)] = 215555, + [SMALL_STATE(7478)] = 215568, + [SMALL_STATE(7479)] = 215581, + [SMALL_STATE(7480)] = 215594, + [SMALL_STATE(7481)] = 215607, + [SMALL_STATE(7482)] = 215620, + [SMALL_STATE(7483)] = 215633, + [SMALL_STATE(7484)] = 215646, + [SMALL_STATE(7485)] = 215659, + [SMALL_STATE(7486)] = 215672, + [SMALL_STATE(7487)] = 215685, + [SMALL_STATE(7488)] = 215698, + [SMALL_STATE(7489)] = 215711, }; 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(7485), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7399), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(696), - [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(795), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), - [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7255), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(678), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(680), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(552), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6983), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4596), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4332), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6897), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6993), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5842), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6981), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(122), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6980), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5847), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6977), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(526), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(266), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6370), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(570), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7413), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4338), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(571), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4804), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2924), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7411), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2985), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5657), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7088), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7089), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3649), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4341), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6343), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6346), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6347), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5650), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5651), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6352), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(431), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(518), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1568), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4032), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4511), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7399), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7393), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(94), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(246), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(270), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4310), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4784), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(545), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(698), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [2035] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4028), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [2051] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3784), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 164), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 67), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 175), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 175), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 175), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 175), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 175), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 145), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 145), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 145), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 227), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 227), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 145), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 175), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 164), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(94), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3570), - [2721] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(261), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(766), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [2730] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5698), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(261), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5698), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 272), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 144), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 148), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 145), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 140), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 139), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 65), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 66), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 148), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 202), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 148), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 174), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), - [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 183), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 57), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 272), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 191), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 57), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 175), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 164), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 57), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 175), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 164), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 202), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 148), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 145), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 191), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 57), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 183), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 174), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 148), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 65), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 66), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 148), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 144), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 140), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 139), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 271), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 142), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 142), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 189), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 189), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 68), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 68), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 67), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 67), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), - [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(755), - [4198] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7216), - [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), - [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1652), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7164), - [4235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1650), - [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6527), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [4249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(726), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(4062), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(6175), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(285), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4316] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 71), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(493), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [4350] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(693), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), - [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2210), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3235), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2506), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2476), - [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2614), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2910), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4023), - [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3574), - [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), - [4696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3429), - [4699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(530), - [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5529), - [4705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5530), - [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3001), - [4711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(7012), - [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4004), - [4717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5830), - [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2427), - [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2912), - [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3237), - [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2637), - [4732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3286), - [4735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3262), - [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3478), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4789] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), - [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 76), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 76), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 49), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 115), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 115), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 62), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 64), - [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), - [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 172), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 172), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 77), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 77), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 64), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), - [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 63), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 76), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 76), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), - [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [5011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2210), - [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2476), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 77), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 77), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 76), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 76), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(208), - [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 50), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 50), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 318), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 318), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 75), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 298), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 298), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(208), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [5121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(208), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), - [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), - [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), - [5144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2614), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), - [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), - [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(208), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 266), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 266), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 265), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 265), - [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 190), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 190), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), - [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 171), - [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), REDUCE(sym_nested_type_identifier, 3, 0, 171), - [5200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2910), - [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), - [5217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2506), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), - [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [5238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), - [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), - [5242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 188), - [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 114), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 114), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), - [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), - [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), - [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 225), - [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 225), - [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 77), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 77), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 116), - [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 116), - [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 226), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 226), - [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3235), - [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), - [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 76), - [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 76), - [5331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [5335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 114), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 114), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 77), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 77), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 113), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 113), - [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), - [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), - [5427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), - [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), - [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), - [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), - [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), - [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), - [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 72), - [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 72), - [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), - [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), - [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), - [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6812), - [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [5538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 143), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 143), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 74), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 74), - [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [5556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 75), - [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), - [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 71), - [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 71), - [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), - [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), REDUCE(sym_assignment_expression, 3, 0, 62), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), - [5598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(213), - [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), - [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), - [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), - [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 17), - [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 17), - [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), - [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), - [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [5631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), - [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), - [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), - [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), - [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), - [5652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 63), - [5654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), - [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), - [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), - [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(646), + [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(567), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7110), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(551), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(628), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3644), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6777), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4424), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4324), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6901), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6946), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6774), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6773), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5850), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5851), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6771), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6921), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5624), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5645), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4048), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7462), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4309), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4834), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2944), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7461), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2951), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5723), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7419), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6892), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7092), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7093), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6994), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4605), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4334), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6988), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6987), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6985), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6984), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5681), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5692), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6923), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4055), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4422), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7453), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7449), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7443), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(86), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(244), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(267), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4315), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4718), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(481), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(783), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2042] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3990), + [2046] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3737), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 175), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 175), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 175), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 67), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 227), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 227), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 145), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 145), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 145), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 164), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 175), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 175), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 175), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 164), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 145), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(86), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3566), + [2728] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(248), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(747), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [2737] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(6080), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(248), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(6080), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 272), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 191), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 164), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 145), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 175), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 57), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 202), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 57), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 272), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 148), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 183), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 140), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 174), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 148), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 65), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 66), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 144), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 148), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 139), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 65), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 66), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 139), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 140), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 57), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 175), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 144), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 164), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 202), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 148), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 148), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 145), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 148), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 191), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 57), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 183), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 174), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 271), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 142), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 142), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 67), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 67), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 189), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 189), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 68), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 68), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [4214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(6091), + [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7022), + [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1651), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), + [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(757), + [4234] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7467), + [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1648), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6787), + [4249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(4051), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(597), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(287), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 71), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4341] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4349] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), + [4362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(485), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(804), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2208), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2851), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3236), + [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2417), + [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2612), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2438), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3974), + [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3582), + [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3425), + [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(536), + [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5533), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5534), + [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2978), + [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(7188), + [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4000), + [4760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5923), + [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2432), + [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2838), + [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3240), + [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2609), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3282), + [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3241), + [4781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3472), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [4794] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 76), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 76), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), + [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 115), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 115), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 49), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 62), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 64), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), + [4938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(209), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 77), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 77), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [4963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2208), + [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2851), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 75), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 64), + [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), + [5011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2612), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 190), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 190), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2417), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 77), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 77), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 116), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 116), + [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 76), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 76), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(209), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 226), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 226), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 188), + [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 76), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 76), + [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), + [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), + [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 77), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 77), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 172), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 172), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 63), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 225), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 225), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 114), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 114), + [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2438), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), + [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 77), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 77), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 76), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 76), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(209), + [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 113), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 113), + [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), + [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), + [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 50), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 50), + [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 265), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 265), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 266), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 266), + [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [5330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(209), + [5333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 114), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 114), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), + [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), + [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), + [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), + [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3236), + [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 298), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 298), + [5368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 318), + [5370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 318), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 63), + [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), + [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), + [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), + [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), + [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [5474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 71), + [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 71), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), + [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), + [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 72), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 72), + [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 73), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 73), + [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 74), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 74), + [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 75), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6971), + [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [5585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), + [5604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), + [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), + [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 17), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 17), + [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), + [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), + [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(623), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(212), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_namespace, 2, 0, 11), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_namespace, 2, 0, 11), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [5646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(212), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [5657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), - [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [5691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(214), - [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 62), - [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), - [5719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(213), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), - [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(213), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(213), - [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 73), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 73), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), - [5790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(634), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), - [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(216), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 62), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [5874] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [5890] = {.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), - [5894] = {.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), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), - [5925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), - [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), - [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(212), - [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(212), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(212), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 49), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), - [6168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(209), - [6171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(209), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(209), - [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(209), - [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(212), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [6198] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 49), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(215), - [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 203), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 203), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), - [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(215), + [5689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), + [5691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(212), + [5694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(212), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), + [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), + [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), + [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), + [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), + [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 143), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 143), + [5750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), + [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), + [5763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), + [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), + [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), + [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), + [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), REDUCE(sym_assignment_expression, 3, 0, 62), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 62), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(208), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5845] = {.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), + [5849] = {.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), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(208), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(208), + [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(208), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5918] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 62), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [6060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(216), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [6115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [6125] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 49), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(213), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(213), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [6208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(213), + [6211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(213), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 49), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [6278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), + [6281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(748), + [6284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 153), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 153), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [6427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(210), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [6434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(210), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [6449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [6454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [6465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [6468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(210), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [6473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), - [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), - [6484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [6489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(723), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [6502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(210), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), - [6518] = {.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), - [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(211), - [6589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(211), - [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(211), - [6595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(211), - [6598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), - [6622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), - [6632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), - [6635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), - [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), - [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [6651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [6677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [6680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [6683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), - [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), - [6689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), - [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), - [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), - [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), - [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), - [6705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), - [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), - [6709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 335), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 335), - [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 227), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 227), - [6717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 175), - [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 175), - [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 320), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 320), - [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), - [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 198), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 198), - [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 151), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 151), - [6737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 300), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 300), - [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), - [6745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [6747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(3431), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), - [6756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), - [6760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), - [6764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3418), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [6875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5830), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [7004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [7018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [7022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(4730), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 57), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [7253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [7255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 156), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 156), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 57), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), - [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 212), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), - [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 156), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), - [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 212), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), - [7398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [7401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4776), - [7404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4668), - [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [7409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4729), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 156), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 57), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 57), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), - [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6527), - [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 76), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [7589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [7617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 76), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [7621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), - [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), - [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [7717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [7855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(4584), - [7858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(398), - [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), - [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), - [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), - [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 77), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 285), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 166), - [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 337), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 328), - [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 323), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 302), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 278), - [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 174), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 277), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 204), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 137), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 137), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), - [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), - [8165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(755), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 160), - [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [8194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 77), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 56), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [8226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(726), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [8237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), - [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [8338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [8348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2148), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [8377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [8418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5657), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [8463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 57), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [8469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [8489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 61), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [8515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 178), - [8517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 177), - [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), - [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5571), - [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [8596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(517), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [8601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7130), - [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [8624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [8657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 138), - [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 138), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [8667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [8679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 130), - [8681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), - [8683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), - [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 208), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 322), - [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 284), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 281), - [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 260), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), - [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), - [8781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1776), - [8784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [8786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1663), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), - [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 273), - [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [8833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 276), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 259), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [8847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), - [8873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [8881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [8884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6024), - [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [8891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1662), - [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 76), - [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), - [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), - [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1735), - [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 293), - [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 58), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), - [8963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 205), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 206), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1665), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [9028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [9050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 220), - [9064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1779), - [9067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1659), - [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [9076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), - [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [9088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), - [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), - [9092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [9096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1798), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [9143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 57), - [9145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [9147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(5515), - [9150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [9166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [9256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [9269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5696), - [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5697), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [9295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [9323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 60), - [9325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [9341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 181), - [9343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 181), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), - [9414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), SHIFT_REPEAT(542), - [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 274), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [9471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4595), - [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [9484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(6085), - [9487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [9489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(6085), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [9496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), - [9499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [9501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [9513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 71), - [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [9551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 129), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [9561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(693), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [9634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [9642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [9644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [9648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [9650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [9662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [9684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [9698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3246), - [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [9703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), - [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [9720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [9732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), - [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [9752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), - [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), - [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 342), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 278), - [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [9822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [9877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [9895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6663), - [9898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 277), - [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), - [9904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), - [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [9910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [9920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 57), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), - [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), - [9936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), - [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), - [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [9961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [9999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [10007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), - [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(3527), - [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [10026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [10040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6256), - [10043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [10051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [10053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [10055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), - [10057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [10077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), - [10079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), - [10081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [10083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), - [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [10088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), - [10093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [10113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4281), - [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [10152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), - [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [10164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), - [10166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [10249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), - [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [10259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 174), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [10265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 204), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [10303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), - [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [10348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [10382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 77), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), - [10428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [10442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), - [10444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 199), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [10490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 196), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), - [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 176), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [10574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [10618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 154), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [10674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 149), - [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [10692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 149), - [10700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), - [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [10782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [10834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 57), - [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [10916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [11080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [11154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [11164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [11184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [11358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [11406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [11588] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [11656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [11762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [6345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(214), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [6357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 153), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 153), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), + [6454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(211), + [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(211), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [6504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(211), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [6511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(211), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [6523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [6528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [6546] = {.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), + [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [6553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 203), + [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 203), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [6561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(210), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(210), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(210), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(210), + [6627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), + [6635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), + [6638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), + [6641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), + [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [6664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [6672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), + [6675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [6680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), + [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [6690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), + [6693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), + [6696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), + [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), + [6707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 300), + [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 300), + [6716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3422), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), + [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 227), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 227), + [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 335), + [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 335), + [6739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), + [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), + [6743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 175), + [6745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 175), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [6757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 198), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 198), + [6761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 151), + [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 151), + [6765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), + [6769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), + [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), + [6773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), + [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), + [6777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), + [6789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), + [6791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(3426), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 320), + [6798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 320), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [6804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [6810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), + [6812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [6898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5923), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [7015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [7047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [7051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(4690), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [7224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 156), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 57), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 156), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 57), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 212), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 57), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), + [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 156), + [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), + [7405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6787), + [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 156), + [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 57), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 212), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [7426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [7429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4679), + [7432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4678), + [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [7437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4677), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 76), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(4383), + [7671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(326), + [7674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), + [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), + [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), + [7868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [7872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 76), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), + [7882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), + [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), + [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 77), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [7954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 56), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 166), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 160), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 77), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 204), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 174), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 285), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [8138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(757), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), + [8145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(597), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 277), + [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 278), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 302), + [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 323), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 328), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 337), + [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 137), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 137), + [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), + [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), + [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), + [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [8246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [8365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5723), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), + [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [8406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 57), + [8413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [8423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 61), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5618), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [8465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), + [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2149), + [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 130), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [8646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), + [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 138), + [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 138), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [8664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 178), + [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 177), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [8670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [8704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7007), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [8720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1665), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [8815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 58), + [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1657), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 281), + [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 284), + [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), + [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), + [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), + [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 322), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 293), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1768), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), + [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [8911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [8921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), + [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5689), + [8927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [8947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 76), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [8955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1740), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 205), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [8974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 206), + [8976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [8984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 220), + [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), + [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [8998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [9000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1658), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [9009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), + [9011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [9021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), + [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [9067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1707), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [9076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1662), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 259), + [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 208), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), + [9089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 260), + [9091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 273), + [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [9101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1757), + [9104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 276), + [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 274), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [9170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(6047), + [9173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [9175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(6047), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [9180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6037), + [9183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [9185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6037), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 57), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [9282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [9284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(5513), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [9329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 181), + [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 181), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), + [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), SHIFT_REPEAT(545), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [9378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [9380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 71), + [9385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 129), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [9419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4510), + [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [9446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [9469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 60), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [9479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(6078), + [9484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6076), + [9489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [9518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [9570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [9582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [9602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [9612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [9617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [9631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [9637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [9651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [9689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5889), + [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [9762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), + [9765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [9775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [9777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4112), + [9780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 57), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [9804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [9808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), + [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [9828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [9890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), + [9911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 77), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [9927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [9932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6525), + [9935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [9941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(804), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [9946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [9948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), + [9950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), + [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), + [9966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [9984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 174), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 204), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [10002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [10006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [10008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), + [10032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 342), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [10044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [10047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [10049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [10069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), + [10071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [10075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), + [10077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [10089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [10099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(3531), + [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), + [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), + [10106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [10108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [10112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [10114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [10118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [10120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [10122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [10124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [10188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [10210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [10241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3088), + [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [10302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 278), + [10304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), + [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 277), + [10316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [10318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [10358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [10361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [10367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), + [10411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [10493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [10571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [10595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), + [10597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [10627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [10633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [10693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [10695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 199), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [10703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 196), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [10707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 176), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [10749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), + [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 154), + [10791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 149), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 149), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [10873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), + [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 57), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [10955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [10961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [10969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [11091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [11209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [11373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [11701] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [11773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 124dad2b..e7c44ca8 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -1,6 +1,15 @@ { + "0": "j", + "1": "a", + "2": "v", + "3": "a", + "4": "s", + "5": "c", + "6": "r", + "7": "i", + "8": "p", + "9": "t", "name": "typescript", - "inherits": "javascript", "word": "identifier", "rules": { "program": { @@ -2006,6 +2015,10 @@ "type": "SYMBOL", "name": "internal_module" }, + { + "type": "SYMBOL", + "name": "global_namespace" + }, { "type": "SYMBOL", "name": "type_assertion" @@ -7553,6 +7566,23 @@ } ] }, + "global_namespace": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "global" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, "_import_identifier": { "type": "CHOICE", "members": [ diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index 9c808424..d9cfb0c2 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -175,6 +175,10 @@ "type": "glimmer_template", "named": true }, + { + "type": "global_namespace", + "named": true + }, { "type": "instantiation_expression", "named": true @@ -2884,6 +2888,22 @@ } } }, + { + "type": "global_namespace", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + } + } + }, { "type": "identifier", "named": true, @@ -6569,11 +6589,11 @@ }, { "type": "number", - "named": true + "named": false }, { "type": "number", - "named": false + "named": true }, { "type": "object", diff --git a/typescript/src/parser.c b/typescript/src/parser.c index 8bf6fe28..6a617c5a 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7433 +#define STATE_COUNT 7437 #define LARGE_STATE_COUNT 1913 -#define SYMBOL_COUNT 380 +#define SYMBOL_COUNT 381 #define ALIAS_COUNT 7 #define TOKEN_COUNT 165 #define EXTERNAL_TOKEN_COUNT 9 @@ -163,11 +163,11 @@ enum ts_symbol_identifiers { anon_sym_symbol = 137, anon_sym_object = 138, anon_sym_abstract = 139, - anon_sym_satisfies = 140, - anon_sym_require = 141, - anon_sym_extends = 142, - anon_sym_implements = 143, - anon_sym_global = 144, + anon_sym_global = 140, + anon_sym_satisfies = 141, + anon_sym_require = 142, + anon_sym_extends = 143, + anon_sym_implements = 144, anon_sym_interface = 145, anon_sym_enum = 146, anon_sym_DASH_QMARK_COLON = 147, @@ -293,123 +293,124 @@ enum ts_symbol_identifiers { sym__property_name = 267, sym_computed_property_name = 268, sym_public_field_definition = 269, - sym__import_identifier = 270, - sym_non_null_expression = 271, - sym_method_signature = 272, - sym_abstract_method_signature = 273, - sym_function_signature = 274, - sym_type_assertion = 275, - sym_as_expression = 276, - sym_satisfies_expression = 277, - sym_instantiation_expression = 278, - sym_import_require_clause = 279, - sym_extends_clause = 280, - sym__extends_clause_single = 281, - sym_implements_clause = 282, - sym_ambient_declaration = 283, - sym_abstract_class_declaration = 284, - sym_module = 285, - sym_internal_module = 286, - sym__module = 287, - sym_import_alias = 288, - sym_nested_type_identifier = 289, - sym_interface_declaration = 290, - sym_extends_type_clause = 291, - sym_enum_declaration = 292, - sym_enum_body = 293, - sym_enum_assignment = 294, - sym_type_alias_declaration = 295, - sym_accessibility_modifier = 296, - sym_override_modifier = 297, - sym_required_parameter = 298, - sym_optional_parameter = 299, - sym__parameter_name = 300, - sym_omitting_type_annotation = 301, - sym_adding_type_annotation = 302, - sym_opting_type_annotation = 303, - sym_type_annotation = 304, - sym__type_query_member_expression_in_type_annotation = 305, - sym__type_query_call_expression_in_type_annotation = 306, - sym_asserts = 307, - sym_asserts_annotation = 308, - sym__type = 309, - sym_tuple_parameter = 310, - sym_optional_tuple_parameter = 311, - sym_optional_type = 312, - sym_rest_type = 313, - sym__tuple_type_member = 314, - sym_constructor_type = 315, - sym__primary_type = 316, - sym_template_type = 317, - sym_template_literal_type = 318, - sym_infer_type = 319, - sym_conditional_type = 320, - sym_generic_type = 321, - sym_type_predicate = 322, - sym_type_predicate_annotation = 323, - sym__type_query_member_expression = 324, - sym__type_query_subscript_expression = 325, - sym__type_query_call_expression = 326, - sym__type_query_instantiation_expression = 327, - sym_type_query = 328, - sym_index_type_query = 329, - sym_lookup_type = 330, - sym_mapped_type_clause = 331, - sym_literal_type = 332, - sym__number = 333, - sym_existential_type = 334, - sym_flow_maybe_type = 335, - sym_parenthesized_type = 336, - sym_predefined_type = 337, - sym_type_arguments = 338, - sym_object_type = 339, - sym_call_signature = 340, - sym_property_signature = 341, - sym_type_parameters = 342, - sym_type_parameter = 343, - sym_default_type = 344, - sym_constraint = 345, - sym_construct_signature = 346, - sym_index_signature = 347, - sym_array_type = 348, - sym_tuple_type = 349, - sym_readonly_type = 350, - sym_union_type = 351, - sym_intersection_type = 352, - sym_function_type = 353, - aux_sym_program_repeat1 = 354, - aux_sym_export_statement_repeat1 = 355, - aux_sym_export_clause_repeat1 = 356, - aux_sym_named_imports_repeat1 = 357, - aux_sym_variable_declaration_repeat1 = 358, - aux_sym_switch_body_repeat1 = 359, - aux_sym_object_repeat1 = 360, - aux_sym_object_pattern_repeat1 = 361, - aux_sym_array_repeat1 = 362, - aux_sym_array_pattern_repeat1 = 363, - aux_sym_glimmer_template_repeat1 = 364, - aux_sym_sequence_expression_repeat1 = 365, - aux_sym_string_repeat1 = 366, - aux_sym_string_repeat2 = 367, - aux_sym_template_string_repeat1 = 368, - aux_sym_class_body_repeat1 = 369, - aux_sym_formal_parameters_repeat1 = 370, - aux_sym_extends_clause_repeat1 = 371, - aux_sym_implements_clause_repeat1 = 372, - aux_sym_extends_type_clause_repeat1 = 373, - aux_sym_enum_body_repeat1 = 374, - aux_sym_template_literal_type_repeat1 = 375, - aux_sym_type_arguments_repeat1 = 376, - aux_sym_object_type_repeat1 = 377, - aux_sym_type_parameters_repeat1 = 378, - aux_sym_tuple_type_repeat1 = 379, - alias_sym_interface_body = 380, - alias_sym_property_identifier = 381, - alias_sym_shorthand_property_identifier = 382, - alias_sym_shorthand_property_identifier_pattern = 383, - alias_sym_statement_identifier = 384, - alias_sym_this_type = 385, - alias_sym_type_identifier = 386, + sym_global_namespace = 270, + sym__import_identifier = 271, + sym_non_null_expression = 272, + sym_method_signature = 273, + sym_abstract_method_signature = 274, + sym_function_signature = 275, + sym_type_assertion = 276, + sym_as_expression = 277, + sym_satisfies_expression = 278, + sym_instantiation_expression = 279, + sym_import_require_clause = 280, + sym_extends_clause = 281, + sym__extends_clause_single = 282, + sym_implements_clause = 283, + sym_ambient_declaration = 284, + sym_abstract_class_declaration = 285, + sym_module = 286, + sym_internal_module = 287, + sym__module = 288, + sym_import_alias = 289, + sym_nested_type_identifier = 290, + sym_interface_declaration = 291, + sym_extends_type_clause = 292, + sym_enum_declaration = 293, + sym_enum_body = 294, + sym_enum_assignment = 295, + sym_type_alias_declaration = 296, + sym_accessibility_modifier = 297, + sym_override_modifier = 298, + sym_required_parameter = 299, + sym_optional_parameter = 300, + sym__parameter_name = 301, + sym_omitting_type_annotation = 302, + sym_adding_type_annotation = 303, + sym_opting_type_annotation = 304, + sym_type_annotation = 305, + sym__type_query_member_expression_in_type_annotation = 306, + sym__type_query_call_expression_in_type_annotation = 307, + sym_asserts = 308, + sym_asserts_annotation = 309, + sym__type = 310, + sym_tuple_parameter = 311, + sym_optional_tuple_parameter = 312, + sym_optional_type = 313, + sym_rest_type = 314, + sym__tuple_type_member = 315, + sym_constructor_type = 316, + sym__primary_type = 317, + sym_template_type = 318, + sym_template_literal_type = 319, + sym_infer_type = 320, + sym_conditional_type = 321, + sym_generic_type = 322, + sym_type_predicate = 323, + sym_type_predicate_annotation = 324, + sym__type_query_member_expression = 325, + sym__type_query_subscript_expression = 326, + sym__type_query_call_expression = 327, + sym__type_query_instantiation_expression = 328, + sym_type_query = 329, + sym_index_type_query = 330, + sym_lookup_type = 331, + sym_mapped_type_clause = 332, + sym_literal_type = 333, + sym__number = 334, + sym_existential_type = 335, + sym_flow_maybe_type = 336, + sym_parenthesized_type = 337, + sym_predefined_type = 338, + sym_type_arguments = 339, + sym_object_type = 340, + sym_call_signature = 341, + sym_property_signature = 342, + sym_type_parameters = 343, + sym_type_parameter = 344, + sym_default_type = 345, + sym_constraint = 346, + sym_construct_signature = 347, + sym_index_signature = 348, + sym_array_type = 349, + sym_tuple_type = 350, + sym_readonly_type = 351, + sym_union_type = 352, + sym_intersection_type = 353, + sym_function_type = 354, + aux_sym_program_repeat1 = 355, + aux_sym_export_statement_repeat1 = 356, + aux_sym_export_clause_repeat1 = 357, + aux_sym_named_imports_repeat1 = 358, + aux_sym_variable_declaration_repeat1 = 359, + aux_sym_switch_body_repeat1 = 360, + aux_sym_object_repeat1 = 361, + aux_sym_object_pattern_repeat1 = 362, + aux_sym_array_repeat1 = 363, + aux_sym_array_pattern_repeat1 = 364, + aux_sym_glimmer_template_repeat1 = 365, + aux_sym_sequence_expression_repeat1 = 366, + aux_sym_string_repeat1 = 367, + aux_sym_string_repeat2 = 368, + aux_sym_template_string_repeat1 = 369, + aux_sym_class_body_repeat1 = 370, + aux_sym_formal_parameters_repeat1 = 371, + aux_sym_extends_clause_repeat1 = 372, + aux_sym_implements_clause_repeat1 = 373, + aux_sym_extends_type_clause_repeat1 = 374, + aux_sym_enum_body_repeat1 = 375, + aux_sym_template_literal_type_repeat1 = 376, + aux_sym_type_arguments_repeat1 = 377, + aux_sym_object_type_repeat1 = 378, + aux_sym_type_parameters_repeat1 = 379, + aux_sym_tuple_type_repeat1 = 380, + alias_sym_interface_body = 381, + alias_sym_property_identifier = 382, + alias_sym_shorthand_property_identifier = 383, + alias_sym_shorthand_property_identifier_pattern = 384, + alias_sym_statement_identifier = 385, + alias_sym_this_type = 386, + alias_sym_type_identifier = 387, }; static const char * const ts_symbol_names[] = { @@ -553,11 +554,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_symbol] = "symbol", [anon_sym_object] = "object", [anon_sym_abstract] = "abstract", + [anon_sym_global] = "global", [anon_sym_satisfies] = "satisfies", [anon_sym_require] = "require", [anon_sym_extends] = "extends", [anon_sym_implements] = "implements", - [anon_sym_global] = "global", [anon_sym_interface] = "interface", [anon_sym_enum] = "enum", [anon_sym_DASH_QMARK_COLON] = "-\?:", @@ -683,6 +684,7 @@ static const char * const ts_symbol_names[] = { [sym__property_name] = "_property_name", [sym_computed_property_name] = "computed_property_name", [sym_public_field_definition] = "public_field_definition", + [sym_global_namespace] = "global_namespace", [sym__import_identifier] = "_import_identifier", [sym_non_null_expression] = "non_null_expression", [sym_method_signature] = "method_signature", @@ -943,11 +945,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_symbol] = anon_sym_symbol, [anon_sym_object] = anon_sym_object, [anon_sym_abstract] = anon_sym_abstract, + [anon_sym_global] = anon_sym_global, [anon_sym_satisfies] = anon_sym_satisfies, [anon_sym_require] = anon_sym_require, [anon_sym_extends] = anon_sym_extends, [anon_sym_implements] = anon_sym_implements, - [anon_sym_global] = anon_sym_global, [anon_sym_interface] = anon_sym_interface, [anon_sym_enum] = anon_sym_enum, [anon_sym_DASH_QMARK_COLON] = anon_sym_DASH_QMARK_COLON, @@ -1073,6 +1075,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__property_name] = sym__property_name, [sym_computed_property_name] = sym_computed_property_name, [sym_public_field_definition] = sym_public_field_definition, + [sym_global_namespace] = sym_global_namespace, [sym__import_identifier] = sym__import_identifier, [sym_non_null_expression] = sym_non_null_expression, [sym_method_signature] = sym_method_signature, @@ -1753,6 +1756,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_global] = { + .visible = true, + .named = false, + }, [anon_sym_satisfies] = { .visible = true, .named = false, @@ -1769,10 +1776,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_global] = { - .visible = true, - .named = false, - }, [anon_sym_interface] = { .visible = true, .named = false, @@ -2278,6 +2281,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_global_namespace] = { + .visible = true, + .named = true, + }, [sym__import_identifier] = { .visible = false, .named = true, @@ -4488,132 +4495,132 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 14, [15] = 15, [16] = 16, - [17] = 12, + [17] = 14, [18] = 18, [19] = 18, - [20] = 20, - [21] = 18, - [22] = 20, + [20] = 18, + [21] = 21, + [22] = 21, [23] = 18, - [24] = 20, + [24] = 21, [25] = 18, - [26] = 20, - [27] = 20, + [26] = 18, + [27] = 21, [28] = 18, - [29] = 20, - [30] = 18, - [31] = 20, - [32] = 20, - [33] = 20, - [34] = 18, - [35] = 20, + [29] = 21, + [30] = 21, + [31] = 18, + [32] = 21, + [33] = 18, + [34] = 21, + [35] = 18, [36] = 18, - [37] = 18, - [38] = 18, + [37] = 21, + [38] = 21, [39] = 18, - [40] = 40, - [41] = 20, - [42] = 20, - [43] = 20, + [40] = 21, + [41] = 21, + [42] = 21, + [43] = 18, [44] = 18, - [45] = 18, - [46] = 18, - [47] = 20, - [48] = 18, - [49] = 20, - [50] = 20, + [45] = 21, + [46] = 21, + [47] = 18, + [48] = 21, + [49] = 18, + [50] = 18, [51] = 18, - [52] = 20, - [53] = 18, + [52] = 18, + [53] = 21, [54] = 18, - [55] = 20, - [56] = 20, - [57] = 20, - [58] = 20, - [59] = 18, - [60] = 18, - [61] = 18, + [55] = 21, + [56] = 21, + [57] = 21, + [58] = 18, + [59] = 21, + [60] = 21, + [61] = 21, [62] = 18, - [63] = 20, + [63] = 21, [64] = 18, - [65] = 20, - [66] = 18, - [67] = 20, - [68] = 68, + [65] = 18, + [66] = 66, + [67] = 21, + [68] = 18, [69] = 18, - [70] = 20, + [70] = 70, [71] = 71, - [72] = 20, + [72] = 21, [73] = 73, [74] = 74, - [75] = 75, + [75] = 74, [76] = 76, [77] = 77, [78] = 78, - [79] = 79, - [80] = 75, - [81] = 73, - [82] = 75, + [79] = 74, + [80] = 80, + [81] = 74, + [82] = 82, [83] = 83, - [84] = 76, - [85] = 85, - [86] = 79, - [87] = 87, + [84] = 84, + [85] = 73, + [86] = 80, + [87] = 82, [88] = 73, - [89] = 83, - [90] = 85, - [91] = 73, - [92] = 79, - [93] = 78, - [94] = 79, - [95] = 74, - [96] = 77, - [97] = 87, - [98] = 77, - [99] = 78, - [100] = 74, - [101] = 73, - [102] = 85, - [103] = 87, - [104] = 75, + [89] = 77, + [90] = 76, + [91] = 77, + [92] = 74, + [93] = 93, + [94] = 78, + [95] = 93, + [96] = 84, + [97] = 80, + [98] = 80, + [99] = 84, + [100] = 78, + [101] = 93, + [102] = 82, + [103] = 76, + [104] = 93, [105] = 78, - [106] = 83, - [107] = 85, - [108] = 77, - [109] = 76, - [110] = 83, - [111] = 74, + [106] = 84, + [107] = 80, + [108] = 83, + [109] = 82, + [110] = 73, + [111] = 77, [112] = 76, - [113] = 83, - [114] = 79, - [115] = 87, - [116] = 76, - [117] = 87, - [118] = 78, - [119] = 85, - [120] = 74, - [121] = 77, - [122] = 75, + [113] = 76, + [114] = 73, + [115] = 83, + [116] = 82, + [117] = 77, + [118] = 83, + [119] = 83, + [120] = 93, + [121] = 78, + [122] = 84, [123] = 123, - [124] = 123, - [125] = 125, - [126] = 123, - [127] = 125, - [128] = 123, - [129] = 123, - [130] = 123, + [124] = 124, + [125] = 124, + [126] = 124, + [127] = 124, + [128] = 124, + [129] = 124, + [130] = 124, [131] = 123, [132] = 123, - [133] = 123, - [134] = 123, - [135] = 125, + [133] = 124, + [134] = 124, + [135] = 124, [136] = 136, [137] = 137, [138] = 138, [139] = 139, [140] = 140, - [141] = 141, - [142] = 138, + [141] = 140, + [142] = 142, [143] = 143, [144] = 144, [145] = 145, @@ -4621,67 +4628,67 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [147] = 146, [148] = 146, [149] = 149, - [150] = 150, - [151] = 151, + [150] = 145, + [151] = 149, [152] = 152, - [153] = 151, - [154] = 152, - [155] = 151, - [156] = 152, - [157] = 151, - [158] = 149, - [159] = 149, - [160] = 160, - [161] = 160, - [162] = 152, - [163] = 160, - [164] = 164, - [165] = 144, - [166] = 151, - [167] = 149, - [168] = 152, - [169] = 152, - [170] = 149, - [171] = 150, - [172] = 144, - [173] = 152, - [174] = 160, - [175] = 152, + [153] = 153, + [154] = 154, + [155] = 154, + [156] = 156, + [157] = 153, + [158] = 158, + [159] = 154, + [160] = 154, + [161] = 156, + [162] = 149, + [163] = 149, + [164] = 156, + [165] = 149, + [166] = 153, + [167] = 152, + [168] = 154, + [169] = 153, + [170] = 153, + [171] = 153, + [172] = 172, + [173] = 153, + [174] = 174, + [175] = 156, [176] = 145, - [177] = 177, - [178] = 178, - [179] = 160, - [180] = 180, + [177] = 144, + [178] = 153, + [179] = 152, + [180] = 153, [181] = 152, - [182] = 144, - [183] = 160, - [184] = 152, - [185] = 185, - [186] = 150, - [187] = 152, - [188] = 150, - [189] = 152, - [190] = 152, - [191] = 152, - [192] = 160, - [193] = 152, - [194] = 152, - [195] = 164, - [196] = 152, - [197] = 160, - [198] = 152, - [199] = 178, - [200] = 160, + [182] = 153, + [183] = 156, + [184] = 156, + [185] = 153, + [186] = 186, + [187] = 187, + [188] = 145, + [189] = 153, + [190] = 158, + [191] = 153, + [192] = 153, + [193] = 156, + [194] = 172, + [195] = 153, + [196] = 156, + [197] = 153, + [198] = 153, + [199] = 153, + [200] = 156, [201] = 201, - [202] = 202, - [203] = 201, + [202] = 201, + [203] = 203, [204] = 201, - [205] = 201, + [205] = 156, [206] = 201, - [207] = 160, + [207] = 201, [208] = 201, [209] = 201, - [210] = 152, + [210] = 153, [211] = 201, [212] = 201, [213] = 201, @@ -4710,239 +4717,239 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [236] = 227, [237] = 237, [238] = 237, - [239] = 237, - [240] = 240, - [241] = 240, - [242] = 237, + [239] = 239, + [240] = 237, + [241] = 239, + [242] = 239, [243] = 237, - [244] = 240, - [245] = 237, - [246] = 240, - [247] = 240, - [248] = 240, + [244] = 237, + [245] = 239, + [246] = 239, + [247] = 239, + [248] = 237, [249] = 249, [250] = 249, [251] = 249, [252] = 252, - [253] = 253, - [254] = 249, - [255] = 249, - [256] = 252, - [257] = 252, - [258] = 249, - [259] = 253, - [260] = 260, - [261] = 249, - [262] = 260, - [263] = 249, - [264] = 249, - [265] = 265, - [266] = 266, - [267] = 265, - [268] = 268, - [269] = 268, - [270] = 268, - [271] = 266, - [272] = 265, - [273] = 249, - [274] = 266, - [275] = 275, - [276] = 276, - [277] = 275, - [278] = 275, - [279] = 275, - [280] = 275, - [281] = 281, - [282] = 275, - [283] = 275, + [253] = 249, + [254] = 254, + [255] = 255, + [256] = 255, + [257] = 257, + [258] = 258, + [259] = 257, + [260] = 254, + [261] = 261, + [262] = 257, + [263] = 258, + [264] = 261, + [265] = 254, + [266] = 261, + [267] = 258, + [268] = 249, + [269] = 249, + [270] = 270, + [271] = 271, + [272] = 270, + [273] = 273, + [274] = 249, + [275] = 252, + [276] = 270, + [277] = 249, + [278] = 270, + [279] = 270, + [280] = 270, + [281] = 270, + [282] = 249, + [283] = 283, [284] = 284, - [285] = 285, - [286] = 284, - [287] = 285, - [288] = 288, - [289] = 285, - [290] = 285, - [291] = 285, + [285] = 249, + [286] = 283, + [287] = 287, + [288] = 283, + [289] = 283, + [290] = 283, + [291] = 284, [292] = 292, [293] = 293, [294] = 284, [295] = 295, - [296] = 296, - [297] = 297, + [296] = 295, + [297] = 292, [298] = 298, [299] = 299, - [300] = 298, - [301] = 297, + [300] = 300, + [301] = 301, [302] = 302, - [303] = 303, + [303] = 284, [304] = 304, [305] = 305, - [306] = 306, + [306] = 300, [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, + [308] = 307, + [309] = 307, + [310] = 284, [311] = 311, - [312] = 299, + [312] = 312, [313] = 313, - [314] = 314, - [315] = 284, - [316] = 316, - [317] = 317, - [318] = 318, + [314] = 307, + [315] = 315, + [316] = 304, + [317] = 299, + [318] = 302, [319] = 319, - [320] = 320, - [321] = 296, + [320] = 307, + [321] = 321, [322] = 322, - [323] = 323, - [324] = 296, - [325] = 295, - [326] = 295, - [327] = 302, + [323] = 284, + [324] = 307, + [325] = 325, + [326] = 326, + [327] = 300, [328] = 328, - [329] = 302, - [330] = 330, - [331] = 331, - [332] = 299, - [333] = 333, + [329] = 329, + [330] = 284, + [331] = 284, + [332] = 332, + [333] = 307, [334] = 334, - [335] = 335, + [335] = 302, [336] = 336, - [337] = 337, - [338] = 317, + [337] = 304, + [338] = 284, [339] = 339, - [340] = 307, - [341] = 310, - [342] = 306, - [343] = 322, - [344] = 284, - [345] = 314, - [346] = 303, - [347] = 299, - [348] = 334, - [349] = 302, - [350] = 295, - [351] = 333, - [352] = 304, - [353] = 284, - [354] = 305, - [355] = 339, - [356] = 337, - [357] = 318, - [358] = 319, - [359] = 296, - [360] = 320, - [361] = 339, - [362] = 333, - [363] = 328, - [364] = 311, - [365] = 309, - [366] = 336, - [367] = 330, - [368] = 331, - [369] = 369, - [370] = 334, - [371] = 339, - [372] = 310, - [373] = 307, - [374] = 337, - [375] = 339, - [376] = 311, - [377] = 304, - [378] = 335, - [379] = 305, - [380] = 284, - [381] = 284, - [382] = 317, - [383] = 318, - [384] = 323, - [385] = 284, - [386] = 306, - [387] = 336, - [388] = 314, - [389] = 319, - [390] = 320, - [391] = 328, - [392] = 339, - [393] = 330, - [394] = 308, - [395] = 331, - [396] = 309, - [397] = 303, - [398] = 322, - [399] = 284, - [400] = 316, - [401] = 284, - [402] = 316, - [403] = 308, - [404] = 339, - [405] = 323, - [406] = 335, - [407] = 328, - [408] = 310, - [409] = 409, - [410] = 409, - [411] = 323, - [412] = 322, - [413] = 314, - [414] = 308, + [340] = 340, + [341] = 341, + [342] = 299, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 284, + [351] = 284, + [352] = 352, + [353] = 311, + [354] = 345, + [355] = 343, + [356] = 356, + [357] = 356, + [358] = 315, + [359] = 347, + [360] = 346, + [361] = 322, + [362] = 356, + [363] = 349, + [364] = 340, + [365] = 339, + [366] = 334, + [367] = 336, + [368] = 344, + [369] = 348, + [370] = 356, + [371] = 305, + [372] = 372, + [373] = 341, + [374] = 356, + [375] = 305, + [376] = 319, + [377] = 348, + [378] = 336, + [379] = 326, + [380] = 343, + [381] = 344, + [382] = 341, + [383] = 372, + [384] = 384, + [385] = 325, + [386] = 356, + [387] = 387, + [388] = 356, + [389] = 346, + [390] = 321, + [391] = 339, + [392] = 334, + [393] = 356, + [394] = 349, + [395] = 356, + [396] = 345, + [397] = 340, + [398] = 356, + [399] = 321, + [400] = 356, + [401] = 387, + [402] = 356, + [403] = 313, + [404] = 356, + [405] = 313, + [406] = 332, + [407] = 312, + [408] = 329, + [409] = 315, + [410] = 328, + [411] = 304, + [412] = 387, + [413] = 387, + [414] = 299, [415] = 415, - [416] = 415, - [417] = 316, - [418] = 409, - [419] = 415, - [420] = 409, - [421] = 409, - [422] = 422, - [423] = 304, - [424] = 305, - [425] = 320, - [426] = 426, - [427] = 307, - [428] = 333, - [429] = 306, - [430] = 409, - [431] = 409, - [432] = 309, - [433] = 415, - [434] = 336, - [435] = 334, - [436] = 409, - [437] = 409, - [438] = 438, - [439] = 409, - [440] = 409, - [441] = 303, - [442] = 409, - [443] = 330, - [444] = 317, - [445] = 318, - [446] = 335, - [447] = 337, - [448] = 448, - [449] = 319, - [450] = 311, - [451] = 451, - [452] = 451, - [453] = 453, - [454] = 331, - [455] = 426, - [456] = 409, - [457] = 415, - [458] = 448, - [459] = 409, - [460] = 409, - [461] = 461, - [462] = 409, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 466, - [468] = 468, - [469] = 466, - [470] = 466, - [471] = 466, + [416] = 302, + [417] = 356, + [418] = 300, + [419] = 312, + [420] = 356, + [421] = 356, + [422] = 347, + [423] = 322, + [424] = 387, + [425] = 319, + [426] = 329, + [427] = 427, + [428] = 332, + [429] = 429, + [430] = 326, + [431] = 311, + [432] = 328, + [433] = 325, + [434] = 346, + [435] = 328, + [436] = 436, + [437] = 326, + [438] = 311, + [439] = 332, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 319, + [444] = 444, + [445] = 348, + [446] = 349, + [447] = 321, + [448] = 312, + [449] = 305, + [450] = 336, + [451] = 334, + [452] = 452, + [453] = 442, + [454] = 442, + [455] = 441, + [456] = 329, + [457] = 457, + [458] = 442, + [459] = 344, + [460] = 339, + [461] = 343, + [462] = 340, + [463] = 345, + [464] = 325, + [465] = 341, + [466] = 315, + [467] = 313, + [468] = 347, + [469] = 322, + [470] = 442, + [471] = 440, [472] = 472, [473] = 472, [474] = 474, @@ -4953,386 +4960,386 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [479] = 479, [480] = 480, [481] = 481, - [482] = 478, + [482] = 482, [483] = 483, - [484] = 478, - [485] = 479, + [484] = 479, + [485] = 485, [486] = 486, - [487] = 487, - [488] = 488, - [489] = 486, - [490] = 487, - [491] = 488, - [492] = 479, - [493] = 493, - [494] = 488, - [495] = 487, - [496] = 486, - [497] = 493, - [498] = 479, - [499] = 493, - [500] = 493, - [501] = 493, - [502] = 502, - [503] = 503, - [504] = 479, - [505] = 488, - [506] = 487, - [507] = 503, - [508] = 486, - [509] = 503, - [510] = 510, - [511] = 480, - [512] = 510, - [513] = 479, - [514] = 479, - [515] = 480, - [516] = 516, - [517] = 478, - [518] = 478, - [519] = 478, - [520] = 520, - [521] = 503, - [522] = 478, - [523] = 503, - [524] = 480, - [525] = 525, + [487] = 483, + [488] = 482, + [489] = 489, + [490] = 490, + [491] = 490, + [492] = 478, + [493] = 482, + [494] = 483, + [495] = 489, + [496] = 479, + [497] = 479, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 478, + [503] = 478, + [504] = 478, + [505] = 505, + [506] = 506, + [507] = 483, + [508] = 485, + [509] = 481, + [510] = 478, + [511] = 478, + [512] = 489, + [513] = 485, + [514] = 490, + [515] = 500, + [516] = 490, + [517] = 490, + [518] = 489, + [519] = 500, + [520] = 483, + [521] = 482, + [522] = 485, + [523] = 523, + [524] = 479, + [525] = 479, [526] = 526, - [527] = 527, - [528] = 480, - [529] = 478, - [530] = 479, - [531] = 493, - [532] = 480, - [533] = 493, - [534] = 534, - [535] = 480, - [536] = 536, - [537] = 488, - [538] = 487, - [539] = 486, + [527] = 482, + [528] = 478, + [529] = 483, + [530] = 530, + [531] = 505, + [532] = 485, + [533] = 483, + [534] = 479, + [535] = 485, + [536] = 482, + [537] = 483, + [538] = 489, + [539] = 500, [540] = 540, - [541] = 541, - [542] = 488, - [543] = 487, - [544] = 479, - [545] = 481, - [546] = 478, - [547] = 547, - [548] = 486, - [549] = 487, - [550] = 488, - [551] = 486, - [552] = 487, - [553] = 488, - [554] = 486, - [555] = 493, + [541] = 489, + [542] = 500, + [543] = 490, + [544] = 483, + [545] = 489, + [546] = 490, + [547] = 485, + [548] = 478, + [549] = 490, + [550] = 490, + [551] = 485, + [552] = 485, + [553] = 490, + [554] = 489, + [555] = 489, [556] = 478, - [557] = 493, - [558] = 486, - [559] = 487, - [560] = 488, - [561] = 493, - [562] = 479, - [563] = 487, - [564] = 488, - [565] = 565, - [566] = 486, + [557] = 479, + [558] = 482, + [559] = 483, + [560] = 479, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 479, + [565] = 485, + [566] = 489, [567] = 567, [568] = 568, - [569] = 568, - [570] = 567, + [569] = 569, + [570] = 570, [571] = 571, - [572] = 567, + [572] = 572, [573] = 573, - [574] = 571, + [574] = 574, [575] = 575, [576] = 576, [577] = 577, - [578] = 578, - [579] = 567, + [578] = 577, + [579] = 570, [580] = 580, - [581] = 568, - [582] = 582, - [583] = 583, + [581] = 569, + [582] = 576, + [583] = 567, [584] = 584, [585] = 585, [586] = 586, [587] = 587, - [588] = 584, - [589] = 589, + [588] = 573, + [589] = 569, [590] = 590, - [591] = 576, - [592] = 590, - [593] = 583, + [591] = 591, + [592] = 592, + [593] = 593, [594] = 594, - [595] = 573, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 586, - [600] = 577, - [601] = 601, - [602] = 602, - [603] = 596, - [604] = 604, - [605] = 586, - [606] = 571, - [607] = 594, - [608] = 608, + [595] = 592, + [596] = 569, + [597] = 569, + [598] = 591, + [599] = 599, + [600] = 600, + [601] = 590, + [602] = 599, + [603] = 594, + [604] = 587, + [605] = 605, + [606] = 600, + [607] = 607, + [608] = 567, [609] = 609, - [610] = 578, + [610] = 593, [611] = 611, - [612] = 582, - [613] = 602, - [614] = 611, - [615] = 601, - [616] = 576, - [617] = 577, - [618] = 597, - [619] = 573, - [620] = 583, - [621] = 589, - [622] = 622, - [623] = 594, - [624] = 587, - [625] = 575, - [626] = 571, - [627] = 627, - [628] = 582, - [629] = 622, - [630] = 587, - [631] = 567, - [632] = 596, - [633] = 609, + [612] = 612, + [613] = 584, + [614] = 572, + [615] = 568, + [616] = 616, + [617] = 585, + [618] = 571, + [619] = 568, + [620] = 616, + [621] = 580, + [622] = 569, + [623] = 612, + [624] = 624, + [625] = 584, + [626] = 592, + [627] = 572, + [628] = 628, + [629] = 624, + [630] = 630, + [631] = 631, + [632] = 605, + [633] = 633, [634] = 634, - [635] = 608, - [636] = 589, - [637] = 568, - [638] = 594, - [639] = 586, - [640] = 602, - [641] = 567, - [642] = 601, - [643] = 580, - [644] = 608, - [645] = 609, - [646] = 597, + [635] = 591, + [636] = 616, + [637] = 584, + [638] = 572, + [639] = 568, + [640] = 630, + [641] = 569, + [642] = 634, + [643] = 643, + [644] = 573, + [645] = 645, + [646] = 569, [647] = 576, - [648] = 609, - [649] = 571, - [650] = 578, - [651] = 594, - [652] = 584, - [653] = 653, - [654] = 622, - [655] = 575, - [656] = 586, - [657] = 609, - [658] = 584, - [659] = 608, - [660] = 586, - [661] = 583, - [662] = 577, - [663] = 578, - [664] = 634, - [665] = 584, - [666] = 571, - [667] = 667, - [668] = 589, - [669] = 590, - [670] = 587, - [671] = 582, - [672] = 611, - [673] = 568, - [674] = 567, - [675] = 576, + [648] = 577, + [649] = 570, + [650] = 630, + [651] = 580, + [652] = 633, + [653] = 585, + [654] = 593, + [655] = 633, + [656] = 594, + [657] = 599, + [658] = 634, + [659] = 591, + [660] = 590, + [661] = 587, + [662] = 567, + [663] = 611, + [664] = 624, + [665] = 592, + [666] = 633, + [667] = 612, + [668] = 605, + [669] = 592, + [670] = 624, + [671] = 630, + [672] = 600, + [673] = 633, + [674] = 630, + [675] = 568, [676] = 634, - [677] = 596, + [677] = 569, [678] = 678, - [679] = 568, - [680] = 577, - [681] = 578, - [682] = 575, - [683] = 602, - [684] = 573, - [685] = 611, - [686] = 586, - [687] = 678, - [688] = 586, - [689] = 573, - [690] = 608, - [691] = 691, - [692] = 609, - [693] = 693, - [694] = 694, - [695] = 634, - [696] = 678, - [697] = 575, - [698] = 576, - [699] = 580, - [700] = 601, - [701] = 584, - [702] = 597, - [703] = 583, - [704] = 589, - [705] = 611, - [706] = 608, - [707] = 587, - [708] = 582, - [709] = 584, - [710] = 590, - [711] = 580, - [712] = 568, - [713] = 678, - [714] = 594, - [715] = 594, - [716] = 583, - [717] = 567, - [718] = 576, - [719] = 590, - [720] = 622, - [721] = 604, - [722] = 577, - [723] = 594, - [724] = 724, - [725] = 586, - [726] = 608, - [727] = 693, - [728] = 609, - [729] = 578, - [730] = 634, - [731] = 590, - [732] = 594, - [733] = 584, - [734] = 571, - [735] = 586, - [736] = 611, - [737] = 580, - [738] = 611, - [739] = 604, - [740] = 580, - [741] = 578, - [742] = 622, - [743] = 611, - [744] = 577, + [679] = 600, + [680] = 633, + [681] = 630, + [682] = 605, + [683] = 592, + [684] = 584, + [685] = 577, + [686] = 572, + [687] = 569, + [688] = 688, + [689] = 634, + [690] = 612, + [691] = 591, + [692] = 692, + [693] = 624, + [694] = 616, + [695] = 584, + [696] = 572, + [697] = 612, + [698] = 611, + [699] = 611, + [700] = 600, + [701] = 567, + [702] = 587, + [703] = 590, + [704] = 591, + [705] = 633, + [706] = 592, + [707] = 605, + [708] = 599, + [709] = 634, + [710] = 594, + [711] = 593, + [712] = 567, + [713] = 630, + [714] = 569, + [715] = 585, + [716] = 580, + [717] = 570, + [718] = 577, + [719] = 573, + [720] = 576, + [721] = 616, + [722] = 611, + [723] = 573, + [724] = 624, + [725] = 569, + [726] = 587, + [727] = 631, + [728] = 590, + [729] = 692, + [730] = 584, + [731] = 599, + [732] = 624, + [733] = 594, + [734] = 600, + [735] = 576, + [736] = 568, + [737] = 612, + [738] = 592, + [739] = 616, + [740] = 611, + [741] = 567, + [742] = 607, + [743] = 587, + [744] = 571, [745] = 590, - [746] = 575, - [747] = 575, - [748] = 634, - [749] = 604, - [750] = 568, - [751] = 678, - [752] = 596, - [753] = 576, - [754] = 567, - [755] = 571, - [756] = 571, - [757] = 601, - [758] = 578, - [759] = 597, - [760] = 760, + [746] = 599, + [747] = 594, + [748] = 593, + [749] = 585, + [750] = 580, + [751] = 616, + [752] = 568, + [753] = 570, + [754] = 611, + [755] = 634, + [756] = 570, + [757] = 569, + [758] = 573, + [759] = 580, + [760] = 576, [761] = 577, - [762] = 597, - [763] = 622, - [764] = 590, - [765] = 634, - [766] = 622, - [767] = 596, - [768] = 594, - [769] = 582, - [770] = 602, - [771] = 587, - [772] = 582, - [773] = 575, - [774] = 590, - [775] = 596, - [776] = 601, + [762] = 577, + [763] = 576, + [764] = 573, + [765] = 585, + [766] = 571, + [767] = 572, + [768] = 600, + [769] = 570, + [770] = 580, + [771] = 568, + [772] = 634, + [773] = 616, + [774] = 569, + [775] = 585, + [776] = 593, [777] = 634, - [778] = 580, - [779] = 611, - [780] = 587, - [781] = 602, - [782] = 622, - [783] = 601, - [784] = 584, - [785] = 596, - [786] = 786, - [787] = 601, - [788] = 609, - [789] = 598, - [790] = 586, - [791] = 791, - [792] = 573, - [793] = 608, - [794] = 622, - [795] = 584, - [796] = 608, - [797] = 609, - [798] = 576, - [799] = 602, - [800] = 634, - [801] = 575, - [802] = 589, - [803] = 573, - [804] = 691, - [805] = 586, - [806] = 586, - [807] = 573, - [808] = 622, - [809] = 598, - [810] = 577, - [811] = 602, - [812] = 567, - [813] = 582, - [814] = 586, - [815] = 586, - [816] = 578, - [817] = 608, - [818] = 609, - [819] = 590, - [820] = 596, - [821] = 580, - [822] = 573, - [823] = 568, - [824] = 824, - [825] = 825, - [826] = 582, - [827] = 587, - [828] = 589, - [829] = 583, - [830] = 589, - [831] = 583, - [832] = 596, - [833] = 601, - [834] = 580, - [835] = 597, - [836] = 597, - [837] = 604, - [838] = 602, - [839] = 602, - [840] = 583, - [841] = 611, - [842] = 597, - [843] = 578, - [844] = 577, - [845] = 586, - [846] = 576, - [847] = 847, - [848] = 589, - [849] = 573, - [850] = 568, - [851] = 575, - [852] = 634, - [853] = 582, - [854] = 587, - [855] = 589, - [856] = 587, - [857] = 583, - [858] = 580, - [859] = 597, - [860] = 601, - [861] = 571, + [778] = 591, + [779] = 633, + [780] = 584, + [781] = 594, + [782] = 630, + [783] = 572, + [784] = 634, + [785] = 599, + [786] = 616, + [787] = 590, + [788] = 587, + [789] = 573, + [790] = 567, + [791] = 611, + [792] = 568, + [793] = 624, + [794] = 612, + [795] = 576, + [796] = 591, + [797] = 577, + [798] = 593, + [799] = 569, + [800] = 612, + [801] = 584, + [802] = 572, + [803] = 570, + [804] = 611, + [805] = 580, + [806] = 585, + [807] = 593, + [808] = 600, + [809] = 587, + [810] = 590, + [811] = 599, + [812] = 594, + [813] = 593, + [814] = 594, + [815] = 592, + [816] = 585, + [817] = 580, + [818] = 573, + [819] = 599, + [820] = 590, + [821] = 587, + [822] = 567, + [823] = 570, + [824] = 591, + [825] = 577, + [826] = 826, + [827] = 827, + [828] = 576, + [829] = 576, + [830] = 611, + [831] = 573, + [832] = 612, + [833] = 577, + [834] = 570, + [835] = 591, + [836] = 580, + [837] = 633, + [838] = 624, + [839] = 585, + [840] = 568, + [841] = 616, + [842] = 593, + [843] = 612, + [844] = 569, + [845] = 594, + [846] = 630, + [847] = 600, + [848] = 624, + [849] = 571, + [850] = 600, + [851] = 567, + [852] = 599, + [853] = 607, + [854] = 854, + [855] = 584, + [856] = 590, + [857] = 630, + [858] = 587, + [859] = 592, + [860] = 633, + [861] = 572, [862] = 862, [863] = 862, [864] = 862, @@ -5363,840 +5370,840 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [889] = 885, [890] = 890, [891] = 891, - [892] = 890, + [892] = 892, [893] = 891, [894] = 890, - [895] = 895, - [896] = 895, - [897] = 890, + [895] = 892, + [896] = 892, + [897] = 892, [898] = 890, [899] = 891, - [900] = 890, - [901] = 895, + [900] = 892, + [901] = 892, [902] = 902, [903] = 903, [904] = 904, - [905] = 903, - [906] = 904, + [905] = 905, + [906] = 905, [907] = 904, [908] = 908, - [909] = 908, - [910] = 908, - [911] = 908, - [912] = 904, - [913] = 913, - [914] = 908, - [915] = 902, - [916] = 904, - [917] = 908, - [918] = 908, - [919] = 919, - [920] = 908, - [921] = 908, - [922] = 903, - [923] = 908, - [924] = 924, - [925] = 908, - [926] = 926, - [927] = 924, - [928] = 924, - [929] = 924, - [930] = 908, - [931] = 924, - [932] = 932, - [933] = 924, - [934] = 903, - [935] = 935, - [936] = 935, - [937] = 913, - [938] = 908, - [939] = 309, - [940] = 908, - [941] = 902, - [942] = 908, - [943] = 908, - [944] = 908, - [945] = 314, - [946] = 908, - [947] = 935, - [948] = 295, - [949] = 314, - [950] = 950, - [951] = 950, - [952] = 309, - [953] = 316, - [954] = 314, - [955] = 309, - [956] = 908, - [957] = 950, - [958] = 296, - [959] = 950, - [960] = 935, - [961] = 950, - [962] = 950, - [963] = 950, - [964] = 309, - [965] = 308, - [966] = 950, - [967] = 950, - [968] = 950, - [969] = 314, - [970] = 970, - [971] = 316, - [972] = 295, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 308, - [977] = 309, - [978] = 978, - [979] = 309, + [909] = 904, + [910] = 905, + [911] = 905, + [912] = 905, + [913] = 904, + [914] = 905, + [915] = 904, + [916] = 903, + [917] = 902, + [918] = 918, + [919] = 905, + [920] = 903, + [921] = 921, + [922] = 905, + [923] = 905, + [924] = 905, + [925] = 905, + [926] = 921, + [927] = 345, + [928] = 928, + [929] = 929, + [930] = 928, + [931] = 931, + [932] = 928, + [933] = 905, + [934] = 928, + [935] = 928, + [936] = 928, + [937] = 921, + [938] = 347, + [939] = 903, + [940] = 905, + [941] = 345, + [942] = 905, + [943] = 299, + [944] = 304, + [945] = 902, + [946] = 345, + [947] = 347, + [948] = 321, + [949] = 313, + [950] = 347, + [951] = 951, + [952] = 347, + [953] = 908, + [954] = 921, + [955] = 905, + [956] = 345, + [957] = 905, + [958] = 905, + [959] = 905, + [960] = 321, + [961] = 961, + [962] = 299, + [963] = 963, + [964] = 347, + [965] = 313, + [966] = 951, + [967] = 313, + [968] = 968, + [969] = 969, + [970] = 345, + [971] = 347, + [972] = 972, + [973] = 969, + [974] = 347, + [975] = 969, + [976] = 976, + [977] = 345, + [978] = 969, + [979] = 979, [980] = 980, - [981] = 981, + [981] = 345, [982] = 982, - [983] = 983, - [984] = 295, - [985] = 985, - [986] = 309, + [983] = 302, + [984] = 905, + [985] = 969, + [986] = 969, [987] = 987, - [988] = 988, - [989] = 314, - [990] = 314, - [991] = 311, - [992] = 303, - [993] = 296, - [994] = 994, - [995] = 975, - [996] = 970, - [997] = 302, - [998] = 998, + [988] = 969, + [989] = 304, + [990] = 313, + [991] = 991, + [992] = 992, + [993] = 347, + [994] = 326, + [995] = 325, + [996] = 996, + [997] = 997, + [998] = 321, [999] = 999, - [1000] = 316, - [1001] = 314, - [1002] = 1002, - [1003] = 334, - [1004] = 309, - [1005] = 316, - [1006] = 308, - [1007] = 316, - [1008] = 1008, - [1009] = 1009, - [1010] = 296, + [1000] = 1000, + [1001] = 347, + [1002] = 969, + [1003] = 299, + [1004] = 969, + [1005] = 969, + [1006] = 304, + [1007] = 313, + [1008] = 345, + [1009] = 345, + [1010] = 951, [1011] = 1011, - [1012] = 1012, - [1013] = 322, - [1014] = 308, - [1015] = 308, - [1016] = 970, - [1017] = 309, - [1018] = 314, - [1019] = 314, - [1020] = 974, + [1012] = 321, + [1013] = 1013, + [1014] = 312, + [1015] = 311, + [1016] = 1016, + [1017] = 968, + [1018] = 1018, + [1019] = 321, + [1020] = 1020, [1021] = 1021, [1022] = 1022, [1023] = 1023, - [1024] = 994, + [1024] = 1024, [1025] = 1025, - [1026] = 1026, - [1027] = 311, - [1028] = 1028, - [1029] = 1029, - [1030] = 1030, + [1026] = 313, + [1027] = 1027, + [1028] = 347, + [1029] = 321, + [1030] = 976, [1031] = 1031, - [1032] = 316, - [1033] = 316, + [1032] = 1032, + [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 314, + [1037] = 1037, [1038] = 1038, - [1039] = 1039, - [1040] = 1040, + [1039] = 313, + [1040] = 347, [1041] = 1041, - [1042] = 311, - [1043] = 1043, + [1042] = 1042, + [1043] = 987, [1044] = 1044, - [1045] = 1012, - [1046] = 998, - [1047] = 999, + [1045] = 1045, + [1046] = 980, + [1047] = 321, [1048] = 1048, - [1049] = 983, - [1050] = 982, - [1051] = 1051, - [1052] = 1002, - [1053] = 302, + [1049] = 1049, + [1050] = 1050, + [1051] = 347, + [1052] = 345, + [1053] = 987, [1054] = 1054, - [1055] = 303, - [1056] = 314, + [1055] = 1055, + [1056] = 1056, [1057] = 1057, - [1058] = 314, - [1059] = 1009, - [1060] = 1060, + [1058] = 1058, + [1059] = 1059, + [1060] = 1016, [1061] = 1061, - [1062] = 309, + [1062] = 1062, [1063] = 1063, - [1064] = 1064, + [1064] = 299, [1065] = 1065, - [1066] = 1066, + [1066] = 968, [1067] = 1067, - [1068] = 302, - [1069] = 1069, + [1068] = 304, + [1069] = 321, [1070] = 1070, - [1071] = 308, + [1071] = 1071, [1072] = 1072, - [1073] = 999, + [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 1076, + [1076] = 302, [1077] = 1077, [1078] = 1078, [1079] = 1079, [1080] = 1080, [1081] = 1081, - [1082] = 1082, + [1082] = 321, [1083] = 1083, - [1084] = 975, - [1085] = 970, + [1084] = 1084, + [1085] = 1085, [1086] = 1086, - [1087] = 1087, + [1087] = 326, [1088] = 1088, [1089] = 1089, - [1090] = 334, - [1091] = 1091, - [1092] = 974, - [1093] = 309, + [1090] = 1090, + [1091] = 325, + [1092] = 1092, + [1093] = 968, [1094] = 1094, [1095] = 1095, - [1096] = 308, - [1097] = 1097, - [1098] = 1098, + [1096] = 976, + [1097] = 313, + [1098] = 345, [1099] = 1099, [1100] = 1100, - [1101] = 1101, - [1102] = 1102, + [1101] = 347, + [1102] = 313, [1103] = 1103, [1104] = 1104, [1105] = 1105, - [1106] = 1106, - [1107] = 308, - [1108] = 1108, + [1106] = 345, + [1107] = 1107, + [1108] = 982, [1109] = 1109, [1110] = 1110, - [1111] = 1111, - [1112] = 316, + [1111] = 972, + [1112] = 319, [1113] = 1113, - [1114] = 1008, + [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 316, + [1119] = 1119, [1120] = 1120, - [1121] = 975, - [1122] = 336, - [1123] = 308, - [1124] = 333, - [1125] = 1125, - [1126] = 314, - [1127] = 309, - [1128] = 1128, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 951, + [1125] = 312, + [1126] = 1126, + [1127] = 322, + [1128] = 311, [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 985, - [1134] = 987, - [1135] = 1135, - [1136] = 985, - [1137] = 1137, + [1130] = 963, + [1131] = 963, + [1132] = 1018, + [1133] = 1000, + [1134] = 1134, + [1135] = 992, + [1136] = 991, + [1137] = 999, [1138] = 1138, - [1139] = 988, + [1139] = 311, [1140] = 1140, - [1141] = 1141, - [1142] = 987, + [1141] = 961, + [1142] = 313, [1143] = 1143, - [1144] = 1144, + [1144] = 345, [1145] = 1145, [1146] = 1146, [1147] = 1147, - [1148] = 1148, + [1148] = 1013, [1149] = 1149, [1150] = 1150, - [1151] = 994, + [1151] = 979, [1152] = 1152, - [1153] = 322, - [1154] = 1154, - [1155] = 1008, - [1156] = 1156, - [1157] = 322, - [1158] = 303, - [1159] = 316, + [1153] = 1153, + [1154] = 1016, + [1155] = 1011, + [1156] = 1011, + [1157] = 1157, + [1158] = 321, + [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 978, - [1163] = 334, - [1164] = 311, - [1165] = 337, + [1162] = 1162, + [1163] = 1163, + [1164] = 302, + [1165] = 1165, [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 988, - [1170] = 973, - [1171] = 306, - [1172] = 1172, + [1167] = 980, + [1168] = 321, + [1169] = 1169, + [1170] = 313, + [1171] = 1171, + [1172] = 312, [1173] = 1173, [1174] = 1174, - [1175] = 980, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, + [1175] = 1175, + [1176] = 982, + [1177] = 972, + [1178] = 326, [1179] = 1179, [1180] = 1180, - [1181] = 1181, - [1182] = 334, - [1183] = 1012, - [1184] = 998, + [1181] = 325, + [1182] = 1182, + [1183] = 1183, + [1184] = 345, [1185] = 1185, - [1186] = 1002, - [1187] = 1009, + [1186] = 1186, + [1187] = 1187, [1188] = 1188, - [1189] = 1189, + [1189] = 997, [1190] = 1190, [1191] = 1191, - [1192] = 309, - [1193] = 309, - [1194] = 981, - [1195] = 1011, - [1196] = 1196, - [1197] = 295, - [1198] = 308, - [1199] = 296, - [1200] = 983, - [1201] = 973, - [1202] = 978, + [1192] = 1192, + [1193] = 328, + [1194] = 996, + [1195] = 1195, + [1196] = 1018, + [1197] = 992, + [1198] = 979, + [1199] = 1199, + [1200] = 312, + [1201] = 347, + [1202] = 329, [1203] = 1203, [1204] = 1204, [1205] = 1205, [1206] = 1206, [1207] = 1207, [1208] = 1208, - [1209] = 980, - [1210] = 314, - [1211] = 308, - [1212] = 982, - [1213] = 1011, - [1214] = 1214, - [1215] = 316, - [1216] = 1216, - [1217] = 981, - [1218] = 308, - [1219] = 1089, - [1220] = 985, - [1221] = 1082, - [1222] = 1051, - [1223] = 987, - [1224] = 306, - [1225] = 1064, - [1226] = 1131, - [1227] = 1035, - [1228] = 1196, - [1229] = 1115, - [1230] = 994, - [1231] = 1034, - [1232] = 303, - [1233] = 322, - [1234] = 988, - [1235] = 336, - [1236] = 337, - [1237] = 1095, - [1238] = 1039, - [1239] = 1094, - [1240] = 1036, - [1241] = 1030, - [1242] = 1026, - [1243] = 1091, - [1244] = 1067, - [1245] = 1061, - [1246] = 1065, - [1247] = 1066, - [1248] = 1132, - [1249] = 1185, - [1250] = 1167, - [1251] = 1135, - [1252] = 1109, - [1253] = 1025, - [1254] = 980, - [1255] = 1069, - [1256] = 1070, - [1257] = 1028, - [1258] = 1072, - [1259] = 1074, - [1260] = 1031, - [1261] = 1075, - [1262] = 1040, - [1263] = 1078, - [1264] = 1079, - [1265] = 1080, - [1266] = 1190, - [1267] = 1189, - [1268] = 334, - [1269] = 1188, - [1270] = 1044, - [1271] = 1100, - [1272] = 1102, - [1273] = 1103, - [1274] = 1104, - [1275] = 1106, - [1276] = 1038, - [1277] = 1108, - [1278] = 1110, - [1279] = 1111, - [1280] = 1063, - [1281] = 1116, - [1282] = 1076, - [1283] = 1117, - [1284] = 1077, - [1285] = 311, - [1286] = 1156, - [1287] = 981, - [1288] = 1011, - [1289] = 1041, - [1290] = 1154, - [1291] = 333, - [1292] = 1081, - [1293] = 1083, - [1294] = 1086, - [1295] = 1140, - [1296] = 1143, - [1297] = 314, - [1298] = 1087, - [1299] = 1088, - [1300] = 1144, - [1301] = 1145, - [1302] = 1099, - [1303] = 1146, - [1304] = 1029, - [1305] = 1113, - [1306] = 1118, - [1307] = 1021, - [1308] = 1130, - [1309] = 1147, - [1310] = 1148, - [1311] = 1137, - [1312] = 1150, - [1313] = 1203, - [1314] = 1149, - [1315] = 1150, - [1316] = 316, - [1317] = 302, - [1318] = 1149, - [1319] = 1148, - [1320] = 1147, - [1321] = 1146, - [1322] = 1188, - [1323] = 1152, - [1324] = 1145, - [1325] = 1144, - [1326] = 1143, - [1327] = 1189, - [1328] = 1115, - [1329] = 1140, - [1330] = 1098, - [1331] = 1204, - [1332] = 1190, - [1333] = 1196, - [1334] = 1334, - [1335] = 998, - [1336] = 1203, - [1337] = 1172, - [1338] = 1173, - [1339] = 1176, - [1340] = 999, - [1341] = 1177, - [1342] = 308, - [1343] = 1154, - [1344] = 1204, - [1345] = 1178, - [1346] = 1180, - [1347] = 1181, - [1348] = 1191, - [1349] = 1043, - [1350] = 1205, - [1351] = 1041, - [1352] = 336, - [1353] = 1043, - [1354] = 337, - [1355] = 1206, - [1356] = 309, - [1357] = 1205, - [1358] = 1208, - [1359] = 1214, - [1360] = 334, + [1209] = 1000, + [1210] = 999, + [1211] = 997, + [1212] = 996, + [1213] = 961, + [1214] = 991, + [1215] = 1215, + [1216] = 311, + [1217] = 1013, + [1218] = 312, + [1219] = 1079, + [1220] = 991, + [1221] = 1121, + [1222] = 347, + [1223] = 1126, + [1224] = 1123, + [1225] = 1208, + [1226] = 1205, + [1227] = 1215, + [1228] = 1119, + [1229] = 1067, + [1230] = 1113, + [1231] = 1143, + [1232] = 1169, + [1233] = 1147, + [1234] = 1022, + [1235] = 1145, + [1236] = 1065, + [1237] = 1034, + [1238] = 321, + [1239] = 1129, + [1240] = 1126, + [1241] = 1057, + [1242] = 345, + [1243] = 1110, + [1244] = 1056, + [1245] = 987, + [1246] = 972, + [1247] = 319, + [1248] = 1107, + [1249] = 1119, + [1250] = 982, + [1251] = 1105, + [1252] = 1089, + [1253] = 1113, + [1254] = 1092, + [1255] = 1055, + [1256] = 1110, + [1257] = 1107, + [1258] = 1105, + [1259] = 1094, + [1260] = 1104, + [1261] = 1207, + [1262] = 321, + [1263] = 1190, + [1264] = 1188, + [1265] = 1160, + [1266] = 1187, + [1267] = 1186, + [1268] = 1099, + [1269] = 1174, + [1270] = 1165, + [1271] = 1163, + [1272] = 963, + [1273] = 1162, + [1274] = 313, + [1275] = 1095, + [1276] = 322, + [1277] = 1104, + [1278] = 1058, + [1279] = 1085, + [1280] = 992, + [1281] = 1079, + [1282] = 1078, + [1283] = 1077, + [1284] = 1116, + [1285] = 1180, + [1286] = 1073, + [1287] = 1018, + [1288] = 1183, + [1289] = 1195, + [1290] = 1021, + [1291] = 1207, + [1292] = 1192, + [1293] = 1203, + [1294] = 1072, + [1295] = 1071, + [1296] = 1063, + [1297] = 1034, + [1298] = 1020, + [1299] = 1204, + [1300] = 1062, + [1301] = 311, + [1302] = 1206, + [1303] = 1199, + [1304] = 326, + [1305] = 1099, + [1306] = 1159, + [1307] = 1049, + [1308] = 1048, + [1309] = 1037, + [1310] = 325, + [1311] = 1123, + [1312] = 1185, + [1313] = 1035, + [1314] = 1190, + [1315] = 1182, + [1316] = 1179, + [1317] = 1121, + [1318] = 1145, + [1319] = 1188, + [1320] = 1083, + [1321] = 1081, + [1322] = 1173, + [1323] = 1140, + [1324] = 1147, + [1325] = 1169, + [1326] = 1080, + [1327] = 1075, + [1328] = 1074, + [1329] = 1171, + [1330] = 1166, + [1331] = 1027, + [1332] = 1022, + [1333] = 1116, + [1334] = 1036, + [1335] = 1067, + [1336] = 1065, + [1337] = 1157, + [1338] = 1057, + [1339] = 1056, + [1340] = 1055, + [1341] = 1143, + [1342] = 1120, + [1343] = 1146, + [1344] = 1161, + [1345] = 1138, + [1346] = 1153, + [1347] = 1199, + [1348] = 1206, + [1349] = 1204, + [1350] = 1020, + [1351] = 1203, + [1352] = 1187, + [1353] = 1109, + [1354] = 1195, + [1355] = 1183, + [1356] = 1180, + [1357] = 1152, + [1358] = 329, + [1359] = 1186, + [1360] = 1174, [1361] = 1138, - [1362] = 1120, - [1363] = 311, - [1364] = 1117, - [1365] = 1116, - [1366] = 1174, - [1367] = 1129, - [1368] = 1128, - [1369] = 1105, - [1370] = 973, - [1371] = 309, - [1372] = 1111, - [1373] = 1110, - [1374] = 1108, - [1375] = 974, - [1376] = 1038, - [1377] = 1125, - [1378] = 1161, - [1379] = 1166, - [1380] = 316, - [1381] = 1179, - [1382] = 1048, - [1383] = 1141, - [1384] = 1060, - [1385] = 1106, - [1386] = 1104, - [1387] = 1103, - [1388] = 1102, - [1389] = 1100, - [1390] = 1207, - [1391] = 1057, - [1392] = 1054, - [1393] = 1023, - [1394] = 1022, - [1395] = 1216, - [1396] = 1097, - [1397] = 1101, - [1398] = 1216, - [1399] = 1101, - [1400] = 1097, - [1401] = 1207, - [1402] = 1179, - [1403] = 1022, - [1404] = 333, - [1405] = 1166, - [1406] = 1161, - [1407] = 1125, - [1408] = 1023, - [1409] = 1054, - [1410] = 1057, - [1411] = 1044, - [1412] = 306, - [1413] = 1048, - [1414] = 1008, - [1415] = 1138, - [1416] = 1214, - [1417] = 1208, - [1418] = 1206, - [1419] = 1191, - [1420] = 1181, - [1421] = 1180, - [1422] = 1178, - [1423] = 1080, - [1424] = 1079, - [1425] = 1078, - [1426] = 1075, - [1427] = 1074, - [1428] = 1177, - [1429] = 1072, - [1430] = 1070, - [1431] = 1176, - [1432] = 1069, - [1433] = 1173, - [1434] = 1172, - [1435] = 1168, - [1436] = 1160, - [1437] = 1098, - [1438] = 1067, - [1439] = 1066, - [1440] = 1065, - [1441] = 1152, - [1442] = 1137, - [1443] = 1130, - [1444] = 1105, - [1445] = 1061, - [1446] = 1128, - [1447] = 1021, - [1448] = 1118, - [1449] = 1113, - [1450] = 1099, - [1451] = 1088, - [1452] = 1087, - [1453] = 1086, - [1454] = 1083, - [1455] = 1081, - [1456] = 1156, - [1457] = 1077, - [1458] = 334, - [1459] = 1076, - [1460] = 311, - [1461] = 1063, - [1462] = 314, - [1463] = 308, - [1464] = 1040, - [1465] = 1031, - [1466] = 1028, - [1467] = 1025, - [1468] = 1109, - [1469] = 1135, - [1470] = 1129, - [1471] = 1174, - [1472] = 1120, - [1473] = 1167, - [1474] = 1185, - [1475] = 1132, - [1476] = 1026, - [1477] = 1030, - [1478] = 1036, - [1479] = 1064, - [1480] = 1082, - [1481] = 1089, - [1482] = 1091, - [1483] = 1094, - [1484] = 1095, - [1485] = 1029, - [1486] = 1012, - [1487] = 978, - [1488] = 983, - [1489] = 982, - [1490] = 1002, - [1491] = 1141, - [1492] = 1009, - [1493] = 1060, - [1494] = 308, - [1495] = 316, - [1496] = 1160, - [1497] = 1168, - [1498] = 316, - [1499] = 1051, - [1500] = 1039, - [1501] = 1035, - [1502] = 1034, - [1503] = 1131, - [1504] = 1104, - [1505] = 1181, - [1506] = 1132, - [1507] = 1063, - [1508] = 1185, - [1509] = 1086, - [1510] = 1167, - [1511] = 1066, - [1512] = 1083, - [1513] = 334, - [1514] = 1036, - [1515] = 1088, - [1516] = 1081, - [1517] = 1067, - [1518] = 1087, - [1519] = 1044, - [1520] = 1135, - [1521] = 1128, - [1522] = 1030, - [1523] = 1109, - [1524] = 1028, - [1525] = 1160, - [1526] = 1156, - [1527] = 1077, - [1528] = 1026, - [1529] = 1076, - [1530] = 1168, - [1531] = 1206, - [1532] = 1099, - [1533] = 1208, - [1534] = 1031, - [1535] = 1214, - [1536] = 1188, - [1537] = 1189, - [1538] = 1025, - [1539] = 1097, - [1540] = 1051, - [1541] = 1039, - [1542] = 1069, - [1543] = 1035, - [1544] = 1203, - [1545] = 1196, - [1546] = 1040, - [1547] = 1101, - [1548] = 1034, - [1549] = 1113, - [1550] = 1118, - [1551] = 1021, - [1552] = 1216, - [1553] = 1207, - [1554] = 1190, - [1555] = 1130, - [1556] = 1120, - [1557] = 1137, - [1558] = 306, - [1559] = 1174, - [1560] = 1070, - [1561] = 336, - [1562] = 1177, - [1563] = 1072, - [1564] = 1061, - [1565] = 1117, - [1566] = 1116, - [1567] = 1074, - [1568] = 1075, - [1569] = 1176, - [1570] = 1105, - [1571] = 1111, - [1572] = 1173, - [1573] = 1078, - [1574] = 1110, - [1575] = 1079, - [1576] = 1080, - [1577] = 337, - [1578] = 1172, - [1579] = 1131, - [1580] = 1129, - [1581] = 316, - [1582] = 1098, - [1583] = 1179, - [1584] = 1205, - [1585] = 1154, - [1586] = 1043, - [1587] = 311, - [1588] = 1166, - [1589] = 1095, - [1590] = 1094, - [1591] = 1041, - [1592] = 1108, - [1593] = 1091, - [1594] = 1048, - [1595] = 1089, - [1596] = 1082, - [1597] = 1140, - [1598] = 1150, - [1599] = 1161, - [1600] = 1143, - [1601] = 1141, - [1602] = 1138, - [1603] = 1060, - [1604] = 333, - [1605] = 1106, - [1606] = 1103, - [1607] = 1102, - [1608] = 1100, - [1609] = 1065, - [1610] = 308, - [1611] = 1057, - [1612] = 1038, - [1613] = 1054, - [1614] = 1144, - [1615] = 1149, - [1616] = 1115, - [1617] = 1334, - [1618] = 1204, - [1619] = 1148, - [1620] = 1191, - [1621] = 1064, - [1622] = 1022, - [1623] = 1145, - [1624] = 1180, - [1625] = 1147, - [1626] = 1152, - [1627] = 1178, - [1628] = 1023, - [1629] = 1125, - [1630] = 1029, - [1631] = 1146, + [1362] = 1149, + [1363] = 1165, + [1364] = 1161, + [1365] = 1134, + [1366] = 328, + [1367] = 322, + [1368] = 312, + [1369] = 1163, + [1370] = 1146, + [1371] = 1120, + [1372] = 1162, + [1373] = 1044, + [1374] = 1215, + [1375] = 1038, + [1376] = 1023, + [1377] = 1038, + [1378] = 1023, + [1379] = 1033, + [1380] = 1058, + [1381] = 319, + [1382] = 1024, + [1383] = 1033, + [1384] = 1024, + [1385] = 1175, + [1386] = 1045, + [1387] = 1185, + [1388] = 1025, + [1389] = 1031, + [1390] = 1175, + [1391] = 1032, + [1392] = 1090, + [1393] = 1044, + [1394] = 1045, + [1395] = 1025, + [1396] = 1050, + [1397] = 1059, + [1398] = 1205, + [1399] = 1061, + [1400] = 1031, + [1401] = 1032, + [1402] = 302, + [1403] = 1118, + [1404] = 1070, + [1405] = 1117, + [1406] = 1149, + [1407] = 1152, + [1408] = 1050, + [1409] = 1095, + [1410] = 1109, + [1411] = 1059, + [1412] = 1061, + [1413] = 313, + [1414] = 321, + [1415] = 1094, + [1416] = 1070, + [1417] = 1118, + [1418] = 1092, + [1419] = 1089, + [1420] = 1090, + [1421] = 1088, + [1422] = 1084, + [1423] = 1086, + [1424] = 1054, + [1425] = 1027, + [1426] = 979, + [1427] = 1078, + [1428] = 1085, + [1429] = 1077, + [1430] = 1208, + [1431] = 1150, + [1432] = 1073, + [1433] = 1100, + [1434] = 1103, + [1435] = 347, + [1436] = 1042, + [1437] = 1114, + [1438] = 1115, + [1439] = 1153, + [1440] = 1117, + [1441] = 1072, + [1442] = 1122, + [1443] = 1071, + [1444] = 1063, + [1445] = 1191, + [1446] = 1041, + [1447] = 311, + [1448] = 1062, + [1449] = 1157, + [1450] = 313, + [1451] = 1013, + [1452] = 329, + [1453] = 1049, + [1454] = 1041, + [1455] = 1191, + [1456] = 1048, + [1457] = 313, + [1458] = 1129, + [1459] = 1083, + [1460] = 328, + [1461] = 1021, + [1462] = 1081, + [1463] = 312, + [1464] = 1192, + [1465] = 1159, + [1466] = 1150, + [1467] = 311, + [1468] = 1080, + [1469] = 1140, + [1470] = 1042, + [1471] = 1075, + [1472] = 1122, + [1473] = 1115, + [1474] = 1035, + [1475] = 1054, + [1476] = 1166, + [1477] = 1160, + [1478] = 1037, + [1479] = 1134, + [1480] = 1016, + [1481] = 976, + [1482] = 1114, + [1483] = 1011, + [1484] = 1484, + [1485] = 1171, + [1486] = 1173, + [1487] = 1036, + [1488] = 1179, + [1489] = 1084, + [1490] = 1088, + [1491] = 321, + [1492] = 980, + [1493] = 1182, + [1494] = 1000, + [1495] = 999, + [1496] = 997, + [1497] = 345, + [1498] = 1103, + [1499] = 996, + [1500] = 961, + [1501] = 1074, + [1502] = 1100, + [1503] = 1086, + [1504] = 1022, + [1505] = 313, + [1506] = 1171, + [1507] = 1159, + [1508] = 1143, + [1509] = 1205, + [1510] = 1114, + [1511] = 1045, + [1512] = 1173, + [1513] = 1169, + [1514] = 1166, + [1515] = 1120, + [1516] = 1084, + [1517] = 1157, + [1518] = 1160, + [1519] = 1146, + [1520] = 1115, + [1521] = 1208, + [1522] = 1179, + [1523] = 1138, + [1524] = 311, + [1525] = 1109, + [1526] = 1088, + [1527] = 1147, + [1528] = 1161, + [1529] = 1145, + [1530] = 1153, + [1531] = 322, + [1532] = 1044, + [1533] = 1182, + [1534] = 1034, + [1535] = 1103, + [1536] = 1152, + [1537] = 1149, + [1538] = 1123, + [1539] = 1121, + [1540] = 1129, + [1541] = 1199, + [1542] = 1100, + [1543] = 1126, + [1544] = 1042, + [1545] = 1206, + [1546] = 1204, + [1547] = 1090, + [1548] = 1054, + [1549] = 1150, + [1550] = 1020, + [1551] = 1058, + [1552] = 321, + [1553] = 1055, + [1554] = 1056, + [1555] = 1050, + [1556] = 1116, + [1557] = 1057, + [1558] = 1065, + [1559] = 1067, + [1560] = 1122, + [1561] = 1061, + [1562] = 1036, + [1563] = 1484, + [1564] = 1203, + [1565] = 1032, + [1566] = 1215, + [1567] = 329, + [1568] = 1025, + [1569] = 1180, + [1570] = 1027, + [1571] = 1074, + [1572] = 1075, + [1573] = 1119, + [1574] = 1062, + [1575] = 1183, + [1576] = 1113, + [1577] = 1110, + [1578] = 1195, + [1579] = 1107, + [1580] = 1063, + [1581] = 1105, + [1582] = 1140, + [1583] = 1104, + [1584] = 1071, + [1585] = 319, + [1586] = 1072, + [1587] = 1175, + [1588] = 1080, + [1589] = 1073, + [1590] = 1185, + [1591] = 1024, + [1592] = 1077, + [1593] = 1192, + [1594] = 1049, + [1595] = 1048, + [1596] = 1021, + [1597] = 1033, + [1598] = 1037, + [1599] = 1023, + [1600] = 1078, + [1601] = 1094, + [1602] = 1079, + [1603] = 1207, + [1604] = 1092, + [1605] = 1118, + [1606] = 1041, + [1607] = 1191, + [1608] = 1031, + [1609] = 1089, + [1610] = 1059, + [1611] = 1086, + [1612] = 1085, + [1613] = 312, + [1614] = 1117, + [1615] = 1190, + [1616] = 1188, + [1617] = 1038, + [1618] = 1134, + [1619] = 1187, + [1620] = 1186, + [1621] = 1099, + [1622] = 1174, + [1623] = 1165, + [1624] = 1163, + [1625] = 1162, + [1626] = 1070, + [1627] = 1035, + [1628] = 1081, + [1629] = 1083, + [1630] = 328, + [1631] = 1095, [1632] = 1632, - [1633] = 1632, - [1634] = 1632, - [1635] = 1632, - [1636] = 1632, - [1637] = 1637, + [1633] = 1633, + [1634] = 1634, + [1635] = 1635, + [1636] = 987, + [1637] = 1632, [1638] = 1638, [1639] = 1639, - [1640] = 1639, + [1640] = 1640, [1641] = 1641, - [1642] = 1641, - [1643] = 1641, - [1644] = 1644, - [1645] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1632, + [1645] = 1632, [1646] = 1646, [1647] = 1647, - [1648] = 1008, - [1649] = 1649, - [1650] = 1641, + [1648] = 1632, + [1649] = 976, + [1650] = 1650, [1651] = 1651, - [1652] = 1652, - [1653] = 1639, - [1654] = 1639, - [1655] = 973, - [1656] = 1656, - [1657] = 1639, - [1658] = 1658, - [1659] = 1659, + [1652] = 1650, + [1653] = 1651, + [1654] = 1651, + [1655] = 1650, + [1656] = 1651, + [1657] = 1650, + [1658] = 1651, + [1659] = 1650, [1660] = 1660, - [1661] = 1661, - [1662] = 1661, - [1663] = 1661, + [1661] = 1660, + [1662] = 1662, + [1663] = 1660, [1664] = 1664, [1665] = 1665, - [1666] = 1666, - [1667] = 1666, - [1668] = 1668, - [1669] = 1664, - [1670] = 1664, + [1666] = 1665, + [1667] = 1667, + [1668] = 1665, + [1669] = 1667, + [1670] = 1667, [1671] = 1671, - [1672] = 1672, + [1672] = 1671, [1673] = 1673, - [1674] = 1671, - [1675] = 1672, - [1676] = 1673, - [1677] = 1668, - [1678] = 1673, - [1679] = 1672, - [1680] = 1666, - [1681] = 1671, - [1682] = 1668, - [1683] = 1672, - [1684] = 1664, - [1685] = 1666, - [1686] = 1668, - [1687] = 1668, - [1688] = 1666, - [1689] = 1671, - [1690] = 1673, - [1691] = 1666, - [1692] = 1671, - [1693] = 1672, - [1694] = 1668, + [1674] = 1664, + [1675] = 1675, + [1676] = 1667, + [1677] = 1673, + [1678] = 1664, + [1679] = 1665, + [1680] = 1671, + [1681] = 1675, + [1682] = 1667, + [1683] = 1665, + [1684] = 1671, + [1685] = 1675, + [1686] = 1675, + [1687] = 1673, + [1688] = 1664, + [1689] = 1673, + [1690] = 1664, + [1691] = 1673, + [1692] = 1667, + [1693] = 1675, + [1694] = 1665, [1695] = 1673, - [1696] = 1664, + [1696] = 1671, [1697] = 1671, - [1698] = 1664, + [1698] = 1698, [1699] = 1673, - [1700] = 1668, - [1701] = 1666, - [1702] = 1672, - [1703] = 1664, - [1704] = 1673, - [1705] = 1672, - [1706] = 1671, + [1700] = 1675, + [1701] = 1664, + [1702] = 1665, + [1703] = 1671, + [1704] = 1667, + [1705] = 1664, + [1706] = 1675, [1707] = 1707, - [1708] = 1708, - [1709] = 1707, + [1708] = 1707, + [1709] = 1709, [1710] = 1707, - [1711] = 1711, + [1711] = 1707, [1712] = 1707, - [1713] = 1707, - [1714] = 1711, + [1713] = 1713, + [1714] = 1713, [1715] = 1707, [1716] = 1716, [1717] = 1717, [1718] = 1717, - [1719] = 1716, + [1719] = 1717, [1720] = 1717, [1721] = 1716, - [1722] = 1717, - [1723] = 1717, + [1722] = 1716, + [1723] = 1716, [1724] = 1716, - [1725] = 1716, + [1725] = 1717, [1726] = 1726, [1727] = 1726, [1728] = 1726, @@ -6211,490 +6218,490 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1737] = 1726, [1738] = 1738, [1739] = 1739, - [1740] = 1738, + [1740] = 1739, [1741] = 1741, [1742] = 1742, - [1743] = 1739, - [1744] = 1742, + [1743] = 1741, + [1744] = 1738, [1745] = 1739, - [1746] = 1741, - [1747] = 1739, + [1746] = 1742, + [1747] = 1742, [1748] = 1742, - [1749] = 1739, + [1749] = 1738, [1750] = 1741, - [1751] = 1738, + [1751] = 1742, [1752] = 1752, [1753] = 1753, [1754] = 1754, - [1755] = 1755, + [1755] = 1753, [1756] = 1756, [1757] = 1757, - [1758] = 1758, + [1758] = 1752, [1759] = 1759, [1760] = 1760, [1761] = 1761, [1762] = 1762, - [1763] = 1759, - [1764] = 1764, - [1765] = 1765, - [1766] = 1753, - [1767] = 1753, + [1763] = 1763, + [1764] = 1757, + [1765] = 1752, + [1766] = 1762, + [1767] = 1767, [1768] = 1768, - [1769] = 1769, - [1770] = 1770, - [1771] = 1768, + [1769] = 1754, + [1770] = 1759, + [1771] = 1771, [1772] = 1772, [1773] = 1773, [1774] = 1774, - [1775] = 1757, - [1776] = 1754, + [1775] = 1775, + [1776] = 1776, [1777] = 1777, - [1778] = 1759, - [1779] = 1779, + [1778] = 1776, + [1779] = 1754, [1780] = 1780, - [1781] = 1780, - [1782] = 1782, - [1783] = 1783, - [1784] = 1783, - [1785] = 1785, - [1786] = 1773, + [1781] = 1753, + [1782] = 1753, + [1783] = 1763, + [1784] = 1784, + [1785] = 1774, + [1786] = 1771, [1787] = 1787, - [1788] = 1770, - [1789] = 1755, + [1788] = 1768, + [1789] = 1775, [1790] = 1790, [1791] = 1791, - [1792] = 1792, + [1792] = 1775, [1793] = 1793, [1794] = 1794, - [1795] = 1795, - [1796] = 1769, - [1797] = 1772, - [1798] = 1752, - [1799] = 1755, - [1800] = 1800, - [1801] = 1795, - [1802] = 1774, - [1803] = 1755, - [1804] = 1754, - [1805] = 1755, - [1806] = 1795, - [1807] = 1795, - [1808] = 1770, - [1809] = 1757, - [1810] = 1810, - [1811] = 1800, - [1812] = 1768, - [1813] = 1761, - [1814] = 1814, - [1815] = 1759, + [1795] = 1774, + [1796] = 1780, + [1797] = 1775, + [1798] = 1754, + [1799] = 1761, + [1800] = 1753, + [1801] = 1759, + [1802] = 1763, + [1803] = 1780, + [1804] = 1776, + [1805] = 1767, + [1806] = 1790, + [1807] = 1774, + [1808] = 1763, + [1809] = 1768, + [1810] = 1771, + [1811] = 1811, + [1812] = 1762, + [1813] = 1813, + [1814] = 1752, + [1815] = 1815, [1816] = 1757, - [1817] = 1817, - [1818] = 1753, - [1819] = 1819, - [1820] = 1820, - [1821] = 1773, - [1822] = 1783, - [1823] = 1773, - [1824] = 1770, - [1825] = 1800, - [1826] = 1752, - [1827] = 1787, - [1828] = 1759, - [1829] = 1769, - [1830] = 1780, - [1831] = 1753, - [1832] = 1761, - [1833] = 1772, - [1834] = 1760, - [1835] = 1760, - [1836] = 1795, - [1837] = 1783, - [1838] = 1780, - [1839] = 1783, - [1840] = 1780, - [1841] = 1761, - [1842] = 1757, - [1843] = 1754, - [1844] = 1752, - [1845] = 1800, - [1846] = 1752, - [1847] = 1779, - [1848] = 1774, - [1849] = 1754, - [1850] = 1820, - [1851] = 1774, - [1852] = 1772, - [1853] = 1787, - [1854] = 1769, - [1855] = 1768, - [1856] = 1770, - [1857] = 1779, - [1858] = 1774, - [1859] = 1800, - [1860] = 1772, - [1861] = 1769, - [1862] = 1782, - [1863] = 1761, - [1864] = 1768, - [1865] = 1779, - [1866] = 1760, - [1867] = 1779, - [1868] = 1779, - [1869] = 1787, - [1870] = 1753, - [1871] = 1787, - [1872] = 1787, - [1873] = 1760, - [1874] = 1773, + [1817] = 1759, + [1818] = 1777, + [1819] = 1777, + [1820] = 1754, + [1821] = 1791, + [1822] = 1780, + [1823] = 1754, + [1824] = 1774, + [1825] = 1757, + [1826] = 1775, + [1827] = 1756, + [1828] = 1828, + [1829] = 1829, + [1830] = 1771, + [1831] = 1760, + [1832] = 1790, + [1833] = 1763, + [1834] = 1834, + [1835] = 1791, + [1836] = 1767, + [1837] = 1772, + [1838] = 1791, + [1839] = 1790, + [1840] = 1756, + [1841] = 1762, + [1842] = 1777, + [1843] = 1773, + [1844] = 1756, + [1845] = 1780, + [1846] = 1776, + [1847] = 1780, + [1848] = 1756, + [1849] = 1772, + [1850] = 1776, + [1851] = 1767, + [1852] = 1773, + [1853] = 1768, + [1854] = 1771, + [1855] = 1790, + [1856] = 1791, + [1857] = 1762, + [1858] = 1763, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1768, + [1863] = 1863, + [1864] = 1752, + [1865] = 1757, + [1866] = 1759, + [1867] = 1777, + [1868] = 1773, + [1869] = 1772, + [1870] = 1773, + [1871] = 1767, + [1872] = 1772, + [1873] = 1873, + [1874] = 1874, [1875] = 1875, [1876] = 1876, [1877] = 1877, [1878] = 1877, - [1879] = 1879, + [1879] = 1875, [1880] = 1880, - [1881] = 1876, + [1881] = 1881, [1882] = 1882, - [1883] = 1882, - [1884] = 1879, + [1883] = 1881, + [1884] = 1881, [1885] = 1885, - [1886] = 1886, + [1886] = 1881, [1887] = 1882, - [1888] = 1888, - [1889] = 1875, - [1890] = 1885, - [1891] = 1880, - [1892] = 1879, - [1893] = 1882, - [1894] = 1880, - [1895] = 1882, - [1896] = 1880, + [1888] = 1885, + [1889] = 1889, + [1890] = 1889, + [1891] = 1885, + [1892] = 1882, + [1893] = 1885, + [1894] = 1889, + [1895] = 1895, + [1896] = 1889, [1897] = 1885, [1898] = 1882, - [1899] = 1885, - [1900] = 1880, - [1901] = 1879, - [1902] = 1885, - [1903] = 1879, - [1904] = 1882, - [1905] = 1905, - [1906] = 1905, - [1907] = 1882, - [1908] = 1908, - [1909] = 1882, - [1910] = 1875, - [1911] = 1905, - [1912] = 1882, - [1913] = 1882, + [1899] = 1876, + [1900] = 1889, + [1901] = 1885, + [1902] = 1882, + [1903] = 1881, + [1904] = 1904, + [1905] = 1904, + [1906] = 1906, + [1907] = 1904, + [1908] = 1875, + [1909] = 1885, + [1910] = 1885, + [1911] = 1885, + [1912] = 1885, + [1913] = 1913, [1914] = 1914, [1915] = 1915, [1916] = 1916, - [1917] = 1915, - [1918] = 1882, - [1919] = 1915, + [1917] = 1917, + [1918] = 1913, + [1919] = 1885, [1920] = 1920, - [1921] = 1914, + [1921] = 1913, [1922] = 1922, - [1923] = 1923, - [1924] = 1882, - [1925] = 1916, + [1923] = 1915, + [1924] = 1924, + [1925] = 1925, [1926] = 1926, [1927] = 1927, - [1928] = 1928, + [1928] = 1914, [1929] = 1915, - [1930] = 1916, + [1930] = 1885, [1931] = 1931, - [1932] = 1932, - [1933] = 1915, - [1934] = 1916, - [1935] = 1882, - [1936] = 1916, - [1937] = 1937, - [1938] = 1882, - [1939] = 1927, + [1932] = 1913, + [1933] = 1933, + [1934] = 1915, + [1935] = 1913, + [1936] = 1936, + [1937] = 1885, + [1938] = 1931, + [1939] = 1914, [1940] = 1915, - [1941] = 1875, - [1942] = 1927, - [1943] = 1882, - [1944] = 1944, - [1945] = 1945, - [1946] = 1914, - [1947] = 1916, - [1948] = 1948, - [1949] = 1008, - [1950] = 1928, - [1951] = 1951, - [1952] = 1882, - [1953] = 1882, - [1954] = 1882, - [1955] = 1882, - [1956] = 1882, - [1957] = 1928, - [1958] = 1876, - [1959] = 973, + [1941] = 1885, + [1942] = 1942, + [1943] = 1913, + [1944] = 1885, + [1945] = 1915, + [1946] = 1885, + [1947] = 1875, + [1948] = 1931, + [1949] = 1949, + [1950] = 1950, + [1951] = 1942, + [1952] = 1942, + [1953] = 987, + [1954] = 1885, + [1955] = 1885, + [1956] = 1895, + [1957] = 1876, + [1958] = 1885, + [1959] = 976, [1960] = 1960, - [1961] = 1888, - [1962] = 1928, - [1963] = 1882, + [1961] = 1961, + [1962] = 1885, + [1963] = 1942, [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1960, - [1968] = 1965, + [1965] = 1885, + [1966] = 1885, + [1967] = 1967, + [1968] = 1090, [1969] = 1969, - [1970] = 1928, - [1971] = 1965, - [1972] = 1965, - [1973] = 1965, - [1974] = 1965, - [1975] = 1975, - [1976] = 1976, - [1977] = 1928, - [1978] = 1978, + [1970] = 1970, + [1971] = 1971, + [1972] = 1942, + [1973] = 1942, + [1974] = 1970, + [1975] = 1967, + [1976] = 1967, + [1977] = 1970, + [1978] = 1967, [1979] = 1979, - [1980] = 1928, - [1981] = 1981, - [1982] = 1982, - [1983] = 1983, - [1984] = 1965, - [1985] = 1928, - [1986] = 1965, - [1987] = 1987, - [1988] = 1960, - [1989] = 1981, - [1990] = 1965, - [1991] = 1928, - [1992] = 1965, - [1993] = 1882, - [1994] = 1994, - [1995] = 1981, + [1980] = 1967, + [1981] = 1054, + [1982] = 1942, + [1983] = 1964, + [1984] = 1984, + [1985] = 1942, + [1986] = 1885, + [1987] = 1967, + [1988] = 1967, + [1989] = 1967, + [1990] = 1964, + [1991] = 1967, + [1992] = 1967, + [1993] = 1993, + [1994] = 1942, + [1995] = 1995, [1996] = 1996, - [1997] = 1981, - [1998] = 1928, - [1999] = 1996, - [2000] = 1981, - [2001] = 1928, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, [2002] = 2002, - [2003] = 1996, - [2004] = 2004, - [2005] = 1928, - [2006] = 1983, - [2007] = 2007, - [2008] = 1129, - [2009] = 1996, - [2010] = 2010, - [2011] = 2004, - [2012] = 1996, + [2003] = 1942, + [2004] = 1970, + [2005] = 1044, + [2006] = 1995, + [2007] = 1999, + [2008] = 2008, + [2009] = 1036, + [2010] = 1045, + [2011] = 2011, + [2012] = 1970, [2013] = 2013, - [2014] = 1981, - [2015] = 2007, - [2016] = 1203, - [2017] = 1928, - [2018] = 2007, - [2019] = 1928, - [2020] = 1983, - [2021] = 1923, - [2022] = 1168, - [2023] = 1920, - [2024] = 1928, - [2025] = 1931, - [2026] = 1932, - [2027] = 2027, - [2028] = 1966, - [2029] = 2029, - [2030] = 2030, - [2031] = 2031, - [2032] = 2007, + [2014] = 1942, + [2015] = 2015, + [2016] = 2016, + [2017] = 2017, + [2018] = 2018, + [2019] = 1995, + [2020] = 1022, + [2021] = 2013, + [2022] = 1970, + [2023] = 1942, + [2024] = 1999, + [2025] = 1942, + [2026] = 1942, + [2027] = 1999, + [2028] = 2028, + [2029] = 2000, + [2030] = 1999, + [2031] = 2013, + [2032] = 2032, [2033] = 2033, - [2034] = 1060, - [2035] = 973, - [2036] = 2029, - [2037] = 1937, - [2038] = 2031, - [2039] = 2030, - [2040] = 2031, - [2041] = 2041, - [2042] = 2030, - [2043] = 2029, - [2044] = 2033, - [2045] = 1981, + [2034] = 2034, + [2035] = 976, + [2036] = 2036, + [2037] = 2032, + [2038] = 2032, + [2039] = 1961, + [2040] = 2036, + [2041] = 2032, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, [2046] = 2046, - [2047] = 1926, - [2048] = 2033, - [2049] = 1160, - [2050] = 1008, - [2051] = 2051, - [2052] = 2030, - [2053] = 2007, - [2054] = 1976, - [2055] = 1978, - [2056] = 2029, - [2057] = 2057, - [2058] = 1983, - [2059] = 1981, - [2060] = 2030, - [2061] = 2031, - [2062] = 1982, - [2063] = 1948, - [2064] = 2064, - [2065] = 2029, - [2066] = 1928, - [2067] = 1981, - [2068] = 1945, - [2069] = 1979, - [2070] = 2033, - [2071] = 1979, - [2072] = 1978, - [2073] = 2029, - [2074] = 1981, - [2075] = 2007, + [2047] = 2047, + [2048] = 1927, + [2049] = 2034, + [2050] = 2036, + [2051] = 2013, + [2052] = 1942, + [2053] = 1926, + [2054] = 1925, + [2055] = 1924, + [2056] = 2056, + [2057] = 1922, + [2058] = 2032, + [2059] = 2036, + [2060] = 2060, + [2061] = 2061, + [2062] = 2062, + [2063] = 2034, + [2064] = 2034, + [2065] = 2042, + [2066] = 1942, + [2067] = 1984, + [2068] = 1979, + [2069] = 1995, + [2070] = 2056, + [2071] = 1996, + [2072] = 1970, + [2073] = 2034, + [2074] = 1997, + [2075] = 2056, [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 2041, - [2080] = 2031, - [2081] = 2033, - [2082] = 2033, + [2077] = 2034, + [2078] = 1971, + [2079] = 987, + [2080] = 2056, + [2081] = 1970, + [2082] = 1916, [2083] = 2083, - [2084] = 1141, - [2085] = 1979, - [2086] = 2086, - [2087] = 1978, - [2088] = 1948, - [2089] = 1981, - [2090] = 2010, - [2091] = 2029, - [2092] = 2029, - [2093] = 1969, - [2094] = 1982, + [2084] = 2013, + [2085] = 1970, + [2086] = 2013, + [2087] = 1933, + [2088] = 1970, + [2089] = 1979, + [2090] = 2036, + [2091] = 1984, + [2092] = 2056, + [2093] = 2056, + [2094] = 2094, [2095] = 2095, - [2096] = 1948, - [2097] = 2097, - [2098] = 2098, - [2099] = 2086, - [2100] = 2029, - [2101] = 1976, - [2102] = 2102, - [2103] = 2103, - [2104] = 2029, - [2105] = 2007, - [2106] = 2007, - [2107] = 2086, - [2108] = 2108, - [2109] = 2109, - [2110] = 1948, - [2111] = 2111, - [2112] = 2033, - [2113] = 2113, - [2114] = 2086, - [2115] = 2115, - [2116] = 2116, - [2117] = 2033, - [2118] = 2118, + [2096] = 1979, + [2097] = 2028, + [2098] = 2001, + [2099] = 1997, + [2100] = 1961, + [2101] = 2056, + [2102] = 2013, + [2103] = 2056, + [2104] = 1996, + [2105] = 2105, + [2106] = 2034, + [2107] = 2105, + [2108] = 1984, + [2109] = 2105, + [2110] = 1961, + [2111] = 2105, + [2112] = 2105, + [2113] = 2056, + [2114] = 1970, + [2115] = 2056, + [2116] = 2013, + [2117] = 2117, + [2118] = 2013, [2119] = 2119, - [2120] = 2120, - [2121] = 2007, - [2122] = 2007, - [2123] = 2033, - [2124] = 2086, - [2125] = 2002, - [2126] = 2086, - [2127] = 2033, - [2128] = 2007, - [2129] = 2129, - [2130] = 2129, - [2131] = 1948, - [2132] = 1982, - [2133] = 2033, - [2134] = 2129, + [2120] = 2034, + [2121] = 1961, + [2122] = 2105, + [2123] = 2013, + [2124] = 2034, + [2125] = 2034, + [2126] = 1969, + [2127] = 2127, + [2128] = 2128, + [2129] = 2128, + [2130] = 2128, + [2131] = 2001, + [2132] = 1979, + [2133] = 1984, + [2134] = 1961, [2135] = 2135, - [2136] = 2136, - [2137] = 2029, - [2138] = 2129, - [2139] = 2033, - [2140] = 2129, - [2141] = 2002, - [2142] = 2129, - [2143] = 1979, - [2144] = 1976, - [2145] = 2145, - [2146] = 2146, - [2147] = 2129, - [2148] = 2029, - [2149] = 2129, - [2150] = 1978, - [2151] = 2129, - [2152] = 1948, - [2153] = 2029, - [2154] = 2033, - [2155] = 2029, - [2156] = 2051, - [2157] = 2046, - [2158] = 2033, - [2159] = 2033, - [2160] = 2033, - [2161] = 2033, - [2162] = 1948, - [2163] = 2033, - [2164] = 2029, - [2165] = 2029, - [2166] = 1966, - [2167] = 2029, - [2168] = 2029, - [2169] = 2002, + [2136] = 2128, + [2137] = 2137, + [2138] = 2128, + [2139] = 2139, + [2140] = 2034, + [2141] = 2128, + [2142] = 2128, + [2143] = 2128, + [2144] = 1997, + [2145] = 2013, + [2146] = 1961, + [2147] = 2128, + [2148] = 2034, + [2149] = 2149, + [2150] = 2056, + [2151] = 2056, + [2152] = 1996, + [2153] = 1961, + [2154] = 2034, + [2155] = 2056, + [2156] = 2034, + [2157] = 2034, + [2158] = 2056, + [2159] = 2056, + [2160] = 2034, + [2161] = 1971, + [2162] = 2083, + [2163] = 2034, + [2164] = 2034, + [2165] = 2056, + [2166] = 2001, + [2167] = 2076, + [2168] = 2056, + [2169] = 2056, [2170] = 2170, [2171] = 2171, - [2172] = 2172, - [2173] = 2010, - [2174] = 2171, - [2175] = 2175, - [2176] = 2170, - [2177] = 2177, - [2178] = 2177, - [2179] = 2170, - [2180] = 1948, - [2181] = 2177, - [2182] = 2172, - [2183] = 2177, - [2184] = 2170, - [2185] = 2171, - [2186] = 2172, - [2187] = 2170, - [2188] = 2177, - [2189] = 1948, + [2172] = 2170, + [2173] = 2173, + [2174] = 2174, + [2175] = 2170, + [2176] = 2176, + [2177] = 2171, + [2178] = 2171, + [2179] = 2176, + [2180] = 2170, + [2181] = 2171, + [2182] = 2171, + [2183] = 2170, + [2184] = 2171, + [2185] = 2170, + [2186] = 2174, + [2187] = 2173, + [2188] = 2176, + [2189] = 2176, [2190] = 2170, - [2191] = 2177, - [2192] = 2175, - [2193] = 2172, - [2194] = 2177, - [2195] = 2029, - [2196] = 2172, - [2197] = 2171, - [2198] = 2175, - [2199] = 2171, - [2200] = 2177, - [2201] = 2033, - [2202] = 2108, - [2203] = 2170, - [2204] = 2171, - [2205] = 2172, - [2206] = 2175, - [2207] = 2175, - [2208] = 2177, - [2209] = 2175, - [2210] = 2171, - [2211] = 2170, - [2212] = 2170, - [2213] = 2170, - [2214] = 2172, - [2215] = 2172, - [2216] = 2177, - [2217] = 2171, - [2218] = 2175, + [2191] = 2176, + [2192] = 2174, + [2193] = 2170, + [2194] = 2174, + [2195] = 2173, + [2196] = 2174, + [2197] = 2173, + [2198] = 2176, + [2199] = 2173, + [2200] = 1961, + [2201] = 2176, + [2202] = 1961, + [2203] = 2171, + [2204] = 2174, + [2205] = 2174, + [2206] = 2028, + [2207] = 2034, + [2208] = 2173, + [2209] = 2173, + [2210] = 2119, + [2211] = 2056, + [2212] = 2174, + [2213] = 1961, + [2214] = 2174, + [2215] = 2170, + [2216] = 2173, + [2217] = 2173, + [2218] = 2174, [2219] = 2171, - [2220] = 2175, - [2221] = 2175, - [2222] = 1948, - [2223] = 2172, + [2220] = 2171, + [2221] = 2173, + [2222] = 2176, + [2223] = 2176, [2224] = 2224, [2225] = 2224, [2226] = 2224, @@ -6713,82 +6720,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2239] = 2234, [2240] = 2234, [2241] = 2234, - [2242] = 2242, - [2243] = 2234, + [2242] = 2234, + [2243] = 2243, [2244] = 2244, [2245] = 2244, [2246] = 2244, [2247] = 2244, [2248] = 2244, [2249] = 2249, - [2250] = 2250, - [2251] = 2250, - [2252] = 2252, - [2253] = 2249, - [2254] = 2250, - [2255] = 2249, - [2256] = 2256, - [2257] = 2250, - [2258] = 2256, - [2259] = 2256, - [2260] = 2250, - [2261] = 2250, - [2262] = 2249, + [2250] = 2249, + [2251] = 2251, + [2252] = 2249, + [2253] = 2253, + [2254] = 2253, + [2255] = 2251, + [2256] = 2249, + [2257] = 2253, + [2258] = 2249, + [2259] = 2253, + [2260] = 2249, + [2261] = 2249, + [2262] = 2253, [2263] = 2249, - [2264] = 2256, - [2265] = 2250, + [2264] = 2253, + [2265] = 2253, [2266] = 2249, - [2267] = 2250, - [2268] = 2249, - [2269] = 2250, - [2270] = 2250, - [2271] = 2250, + [2267] = 2249, + [2268] = 2251, + [2269] = 2249, + [2270] = 2270, + [2271] = 2251, [2272] = 2249, - [2273] = 2256, - [2274] = 2256, + [2273] = 2251, + [2274] = 2253, [2275] = 2249, - [2276] = 2250, - [2277] = 2249, - [2278] = 2250, - [2279] = 2256, - [2280] = 2249, - [2281] = 2249, - [2282] = 2250, + [2276] = 2249, + [2277] = 2253, + [2278] = 2253, + [2279] = 2251, + [2280] = 2253, + [2281] = 2251, + [2282] = 2253, [2283] = 2249, - [2284] = 2249, + [2284] = 2253, [2285] = 2249, - [2286] = 2249, - [2287] = 2250, - [2288] = 2250, + [2286] = 2253, + [2287] = 2253, + [2288] = 2253, [2289] = 2289, - [2290] = 306, + [2290] = 322, [2291] = 2291, - [2292] = 337, + [2292] = 319, [2293] = 2293, [2294] = 2294, [2295] = 2295, [2296] = 2296, [2297] = 2297, [2298] = 2298, - [2299] = 2299, + [2299] = 299, [2300] = 2300, - [2301] = 2076, + [2301] = 2015, [2302] = 2302, - [2303] = 2303, - [2304] = 2304, - [2305] = 337, - [2306] = 306, - [2307] = 299, - [2308] = 2064, - [2309] = 302, - [2310] = 2310, - [2311] = 2077, - [2312] = 295, + [2303] = 2016, + [2304] = 2008, + [2305] = 2305, + [2306] = 304, + [2307] = 302, + [2308] = 2308, + [2309] = 319, + [2310] = 300, + [2311] = 2311, + [2312] = 2312, [2313] = 2313, - [2314] = 296, - [2315] = 2315, + [2314] = 2314, + [2315] = 322, [2316] = 2316, - [2317] = 2317, + [2317] = 2043, [2318] = 2318, [2319] = 2319, [2320] = 2320, @@ -6796,7 +6803,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2322] = 2322, [2323] = 2323, [2324] = 2324, - [2325] = 2325, + [2325] = 1159, [2326] = 2326, [2327] = 2327, [2328] = 2328, @@ -6811,8 +6818,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2337] = 2337, [2338] = 2338, [2339] = 2339, - [2340] = 2340, - [2341] = 309, + [2340] = 2094, + [2341] = 2095, [2342] = 2342, [2343] = 2343, [2344] = 2344, @@ -6825,85 +6832,85 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2351] = 2351, [2352] = 2352, [2353] = 2353, - [2354] = 2095, - [2355] = 314, + [2354] = 2354, + [2355] = 2355, [2356] = 2356, [2357] = 2357, [2358] = 2358, [2359] = 2359, - [2360] = 1154, + [2360] = 2360, [2361] = 2361, [2362] = 2362, - [2363] = 2361, - [2364] = 2361, - [2365] = 2365, - [2366] = 2361, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, + [2363] = 302, + [2364] = 299, + [2365] = 304, + [2366] = 2362, + [2367] = 1134, + [2368] = 2362, + [2369] = 2332, [2370] = 2370, [2371] = 2371, [2372] = 2372, [2373] = 2373, - [2374] = 1041, + [2374] = 2374, [2375] = 2375, - [2376] = 2376, - [2377] = 1131, - [2378] = 2378, - [2379] = 2379, + [2376] = 2047, + [2377] = 2046, + [2378] = 2045, + [2379] = 2044, [2380] = 2380, - [2381] = 2361, - [2382] = 2382, + [2381] = 2381, + [2382] = 2033, [2383] = 2383, - [2384] = 2097, + [2384] = 1140, [2385] = 2385, [2386] = 2386, [2387] = 2387, [2388] = 2388, [2389] = 2389, - [2390] = 1038, - [2391] = 2338, - [2392] = 2392, - [2393] = 2393, - [2394] = 2116, - [2395] = 2395, - [2396] = 2098, - [2397] = 2115, + [2390] = 2390, + [2391] = 2391, + [2392] = 325, + [2393] = 326, + [2394] = 345, + [2395] = 2332, + [2396] = 2396, + [2397] = 1150, [2398] = 2398, [2399] = 2399, - [2400] = 2361, - [2401] = 2361, - [2402] = 2118, - [2403] = 2403, - [2404] = 2404, + [2400] = 2400, + [2401] = 2362, + [2402] = 2402, + [2403] = 2332, + [2404] = 1160, [2405] = 2405, - [2406] = 2406, - [2407] = 303, + [2406] = 2362, + [2407] = 2407, [2408] = 2408, [2409] = 2409, - [2410] = 302, - [2411] = 2119, + [2410] = 2410, + [2411] = 2411, [2412] = 2412, [2413] = 2413, - [2414] = 2120, - [2415] = 295, + [2414] = 2414, + [2415] = 2415, [2416] = 2416, - [2417] = 2338, - [2418] = 2338, - [2419] = 296, + [2417] = 347, + [2418] = 2418, + [2419] = 2419, [2420] = 2420, - [2421] = 2361, - [2422] = 2113, + [2421] = 2421, + [2422] = 2422, [2423] = 2423, - [2424] = 2361, + [2424] = 2424, [2425] = 2425, - [2426] = 2109, + [2426] = 2426, [2427] = 2427, - [2428] = 1029, + [2428] = 2362, [2429] = 2429, [2430] = 2430, [2431] = 2431, - [2432] = 2111, + [2432] = 2362, [2433] = 2433, [2434] = 2434, [2435] = 2435, @@ -6912,13 +6919,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2438] = 2438, [2439] = 2439, [2440] = 2440, - [2441] = 2441, - [2442] = 2442, - [2443] = 322, - [2444] = 2444, - [2445] = 2445, - [2446] = 2338, - [2447] = 2298, + [2441] = 2062, + [2442] = 2061, + [2443] = 2060, + [2444] = 2362, + [2445] = 2362, + [2446] = 2332, + [2447] = 328, [2448] = 2448, [2449] = 2449, [2450] = 2450, @@ -6926,7 +6933,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2452] = 2452, [2453] = 2453, [2454] = 2454, - [2455] = 2455, + [2455] = 2448, [2456] = 2456, [2457] = 2457, [2458] = 2458, @@ -6934,1008 +6941,1008 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2460] = 2460, [2461] = 2461, [2462] = 2462, - [2463] = 308, + [2463] = 2463, [2464] = 2464, - [2465] = 2465, + [2465] = 347, [2466] = 2466, - [2467] = 2467, + [2467] = 2297, [2468] = 2468, [2469] = 2469, - [2470] = 2450, - [2471] = 2452, - [2472] = 2453, - [2473] = 2473, - [2474] = 2455, - [2475] = 2464, - [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2479, + [2470] = 2470, + [2471] = 2471, + [2472] = 2472, + [2473] = 2468, + [2474] = 2474, + [2475] = 2475, + [2476] = 326, + [2477] = 325, + [2478] = 321, + [2479] = 311, [2480] = 2480, [2481] = 2481, [2482] = 2482, - [2483] = 2476, - [2484] = 2484, - [2485] = 2485, - [2486] = 2477, - [2487] = 2451, + [2483] = 2483, + [2484] = 2474, + [2485] = 2460, + [2486] = 2464, + [2487] = 313, [2488] = 2488, - [2489] = 2478, - [2490] = 2479, - [2491] = 2480, - [2492] = 2481, - [2493] = 2482, - [2494] = 2485, - [2495] = 2495, - [2496] = 2469, - [2497] = 2495, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2492, + [2494] = 2494, + [2495] = 2490, + [2496] = 2496, + [2497] = 2497, [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2498, + [2499] = 2468, + [2500] = 2472, + [2501] = 2501, [2502] = 2502, - [2503] = 2448, - [2504] = 2504, - [2505] = 2484, - [2506] = 2461, - [2507] = 2451, - [2508] = 2469, - [2509] = 2500, - [2510] = 2485, - [2511] = 2448, - [2512] = 2512, - [2513] = 2498, - [2514] = 2495, - [2515] = 2469, - [2516] = 2516, - [2517] = 2517, + [2503] = 2503, + [2504] = 345, + [2505] = 2505, + [2506] = 2506, + [2507] = 311, + [2508] = 313, + [2509] = 2509, + [2510] = 2510, + [2511] = 2511, + [2512] = 2509, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2506, + [2517] = 2511, [2518] = 2518, [2519] = 2519, - [2520] = 2520, + [2520] = 2509, [2521] = 2521, - [2522] = 2455, + [2522] = 2506, [2523] = 2523, - [2524] = 2295, - [2525] = 2525, - [2526] = 2484, - [2527] = 316, - [2528] = 311, - [2529] = 2461, - [2530] = 2293, - [2531] = 2531, - [2532] = 2476, - [2533] = 2451, - [2534] = 2534, - [2535] = 2481, + [2524] = 2524, + [2525] = 2511, + [2526] = 2515, + [2527] = 2506, + [2528] = 2528, + [2529] = 2529, + [2530] = 2524, + [2531] = 2509, + [2532] = 2506, + [2533] = 2513, + [2534] = 2509, + [2535] = 2515, [2536] = 2536, - [2537] = 2482, - [2538] = 2462, - [2539] = 2539, + [2537] = 2491, + [2538] = 2497, + [2539] = 2513, [2540] = 2540, - [2541] = 2541, - [2542] = 2536, + [2541] = 2491, + [2542] = 329, [2543] = 2543, - [2544] = 2504, - [2545] = 2488, - [2546] = 2488, - [2547] = 2500, + [2544] = 2544, + [2545] = 312, + [2546] = 2546, + [2547] = 2547, [2548] = 2548, - [2549] = 2549, - [2550] = 2550, - [2551] = 2454, + [2549] = 329, + [2550] = 2468, + [2551] = 2472, [2552] = 2552, - [2553] = 2504, - [2554] = 309, - [2555] = 2555, - [2556] = 2556, - [2557] = 2557, - [2558] = 2478, - [2559] = 2480, - [2560] = 2560, - [2561] = 2543, - [2562] = 303, - [2563] = 322, - [2564] = 308, - [2565] = 2565, - [2566] = 2566, + [2553] = 2553, + [2554] = 2554, + [2555] = 2491, + [2556] = 2466, + [2557] = 2452, + [2558] = 2558, + [2559] = 2449, + [2560] = 2450, + [2561] = 2561, + [2562] = 2562, + [2563] = 2451, + [2564] = 2564, + [2565] = 2497, + [2566] = 2453, [2567] = 2567, - [2568] = 2568, + [2568] = 2454, [2569] = 2569, - [2570] = 2500, - [2571] = 2448, - [2572] = 2572, - [2573] = 2573, - [2574] = 2574, - [2575] = 2575, - [2576] = 2576, + [2570] = 2448, + [2571] = 2472, + [2572] = 2468, + [2573] = 2489, + [2574] = 2456, + [2575] = 2475, + [2576] = 2457, [2577] = 2577, [2578] = 2578, - [2579] = 2294, - [2580] = 2580, - [2581] = 314, - [2582] = 2297, - [2583] = 2456, - [2584] = 2454, - [2585] = 2449, - [2586] = 2543, + [2579] = 2579, + [2580] = 2458, + [2581] = 2581, + [2582] = 2582, + [2583] = 2583, + [2584] = 2543, + [2585] = 2585, + [2586] = 2586, [2587] = 2587, - [2588] = 316, - [2589] = 2536, - [2590] = 2462, - [2591] = 2591, - [2592] = 333, - [2593] = 2540, - [2594] = 334, - [2595] = 2580, - [2596] = 2456, - [2597] = 2597, - [2598] = 2464, - [2599] = 2541, - [2600] = 2455, - [2601] = 2453, - [2602] = 2452, - [2603] = 2575, - [2604] = 2469, - [2605] = 2451, - [2606] = 2606, - [2607] = 2575, - [2608] = 2608, + [2588] = 2296, + [2589] = 2294, + [2590] = 2463, + [2591] = 2462, + [2592] = 2592, + [2593] = 2461, + [2594] = 2459, + [2595] = 2595, + [2596] = 2298, + [2597] = 2295, + [2598] = 2598, + [2599] = 2599, + [2600] = 2600, + [2601] = 2491, + [2602] = 2459, + [2603] = 2603, + [2604] = 2604, + [2605] = 2461, + [2606] = 2462, + [2607] = 2607, + [2608] = 2463, [2609] = 2609, - [2610] = 2610, - [2611] = 2611, - [2612] = 2612, - [2613] = 2613, - [2614] = 2450, + [2610] = 2458, + [2611] = 2581, + [2612] = 2457, + [2613] = 2456, + [2614] = 321, [2615] = 2615, - [2616] = 2616, - [2617] = 2617, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2618, - [2622] = 2572, - [2623] = 2623, - [2624] = 2449, - [2625] = 2477, - [2626] = 2597, - [2627] = 336, - [2628] = 2455, + [2616] = 2472, + [2617] = 2454, + [2618] = 2453, + [2619] = 2452, + [2620] = 328, + [2621] = 2521, + [2622] = 2622, + [2623] = 2524, + [2624] = 2451, + [2625] = 2471, + [2626] = 2626, + [2627] = 2505, + [2628] = 2450, [2629] = 2629, - [2630] = 2630, + [2630] = 2449, [2631] = 2631, - [2632] = 333, - [2633] = 2448, - [2634] = 2500, - [2635] = 2635, - [2636] = 336, - [2637] = 334, - [2638] = 2479, - [2639] = 2455, - [2640] = 2550, - [2641] = 2499, - [2642] = 2642, - [2643] = 2597, - [2644] = 2580, - [2645] = 2540, + [2632] = 2503, + [2633] = 2543, + [2634] = 2503, + [2635] = 312, + [2636] = 2489, + [2637] = 2466, + [2638] = 2638, + [2639] = 2471, + [2640] = 2474, + [2641] = 2460, + [2642] = 2464, + [2643] = 2492, + [2644] = 2491, + [2645] = 2645, [2646] = 2646, - [2647] = 2647, - [2648] = 2541, - [2649] = 2499, + [2647] = 2475, + [2648] = 2648, + [2649] = 2649, [2650] = 2650, - [2651] = 311, - [2652] = 2077, - [2653] = 2461, - [2654] = 2464, - [2655] = 2476, - [2656] = 2477, - [2657] = 2478, - [2658] = 2479, - [2659] = 2480, - [2660] = 2481, - [2661] = 2482, - [2662] = 2485, - [2663] = 2495, - [2664] = 2664, - [2665] = 2498, - [2666] = 2484, - [2667] = 2329, - [2668] = 2473, - [2669] = 2669, - [2670] = 2670, - [2671] = 2671, - [2672] = 2672, - [2673] = 2304, - [2674] = 2300, - [2675] = 2543, - [2676] = 2676, - [2677] = 2453, - [2678] = 2452, + [2651] = 2651, + [2652] = 2490, + [2653] = 2653, + [2654] = 2456, + [2655] = 2463, + [2656] = 2457, + [2657] = 2458, + [2658] = 2658, + [2659] = 2459, + [2660] = 2462, + [2661] = 2661, + [2662] = 2461, + [2663] = 2459, + [2664] = 2458, + [2665] = 2457, + [2666] = 2456, + [2667] = 2448, + [2668] = 2454, + [2669] = 2453, + [2670] = 2461, + [2671] = 2462, + [2672] = 2452, + [2673] = 2497, + [2674] = 2451, + [2675] = 2454, + [2676] = 2450, + [2677] = 2489, + [2678] = 2453, [2679] = 2679, - [2680] = 2456, - [2681] = 2450, - [2682] = 2454, - [2683] = 2449, - [2684] = 2536, - [2685] = 2685, - [2686] = 2676, - [2687] = 2462, - [2688] = 2334, - [2689] = 2669, - [2690] = 2504, - [2691] = 2676, - [2692] = 2692, - [2693] = 2693, - [2694] = 2303, - [2695] = 2534, + [2680] = 2452, + [2681] = 2451, + [2682] = 2449, + [2683] = 2543, + [2684] = 2463, + [2685] = 2466, + [2686] = 2686, + [2687] = 2687, + [2688] = 2688, + [2689] = 2450, + [2690] = 2513, + [2691] = 2691, + [2692] = 2475, + [2693] = 2314, + [2694] = 2449, + [2695] = 2511, [2696] = 2696, - [2697] = 2679, - [2698] = 2488, - [2699] = 2699, - [2700] = 2700, - [2701] = 2693, - [2702] = 2702, - [2703] = 2499, - [2704] = 2671, - [2705] = 2679, - [2706] = 2706, - [2707] = 2310, - [2708] = 2708, - [2709] = 2618, - [2710] = 2710, - [2711] = 2711, - [2712] = 2679, - [2713] = 2315, - [2714] = 2302, - [2715] = 2540, - [2716] = 2572, - [2717] = 2676, - [2718] = 2575, - [2719] = 2676, - [2720] = 2669, - [2721] = 2670, - [2722] = 2671, - [2723] = 2550, - [2724] = 2076, + [2697] = 2697, + [2698] = 2474, + [2699] = 2460, + [2700] = 2471, + [2701] = 2464, + [2702] = 2492, + [2703] = 2490, + [2704] = 2661, + [2705] = 2705, + [2706] = 2016, + [2707] = 2661, + [2708] = 2302, + [2709] = 2313, + [2710] = 2543, + [2711] = 2466, + [2712] = 2712, + [2713] = 2604, + [2714] = 2679, + [2715] = 2448, + [2716] = 2716, + [2717] = 2515, + [2718] = 2718, + [2719] = 2719, + [2720] = 2503, + [2721] = 2721, + [2722] = 2524, + [2723] = 2723, + [2724] = 2724, [2725] = 2725, - [2726] = 2726, + [2726] = 2316, [2727] = 2727, - [2728] = 2299, - [2729] = 2669, - [2730] = 2730, - [2731] = 2679, - [2732] = 2732, - [2733] = 2733, - [2734] = 2499, - [2735] = 2064, - [2736] = 2671, - [2737] = 2541, - [2738] = 2671, - [2739] = 2597, - [2740] = 2580, - [2741] = 2485, - [2742] = 2313, - [2743] = 2679, + [2728] = 2015, + [2729] = 2679, + [2730] = 2492, + [2731] = 2308, + [2732] = 2490, + [2733] = 2622, + [2734] = 2721, + [2735] = 2723, + [2736] = 2497, + [2737] = 2581, + [2738] = 2738, + [2739] = 2739, + [2740] = 2679, + [2741] = 2727, + [2742] = 2371, + [2743] = 2316, [2744] = 2744, - [2745] = 2462, - [2746] = 2536, - [2747] = 2541, - [2748] = 2543, - [2749] = 2449, - [2750] = 2454, - [2751] = 2456, - [2752] = 2504, - [2753] = 2597, - [2754] = 2669, - [2755] = 2672, - [2756] = 2461, - [2757] = 2488, - [2758] = 2575, - [2759] = 2484, - [2760] = 2580, - [2761] = 2498, - [2762] = 2540, - [2763] = 2495, - [2764] = 2450, - [2765] = 2452, - [2766] = 2334, - [2767] = 2329, - [2768] = 2679, - [2769] = 2453, + [2745] = 2661, + [2746] = 2746, + [2747] = 2744, + [2748] = 2661, + [2749] = 2008, + [2750] = 2511, + [2751] = 2311, + [2752] = 2744, + [2753] = 2515, + [2754] = 2513, + [2755] = 2723, + [2756] = 2723, + [2757] = 2723, + [2758] = 2758, + [2759] = 2371, + [2760] = 2744, + [2761] = 2661, + [2762] = 2521, + [2763] = 2744, + [2764] = 2305, + [2765] = 2505, + [2766] = 2474, + [2767] = 2679, + [2768] = 2460, + [2769] = 2769, [2770] = 2464, - [2771] = 2476, - [2772] = 2477, - [2773] = 2773, - [2774] = 2478, - [2775] = 2775, - [2776] = 2479, - [2777] = 2480, - [2778] = 2481, - [2779] = 2482, - [2780] = 2479, - [2781] = 2425, - [2782] = 2370, - [2783] = 2783, - [2784] = 2120, - [2785] = 2119, - [2786] = 2118, - [2787] = 2787, - [2788] = 2788, + [2771] = 2658, + [2772] = 2300, + [2773] = 2661, + [2774] = 2524, + [2775] = 2312, + [2776] = 2776, + [2777] = 2503, + [2778] = 2471, + [2779] = 2475, + [2780] = 2489, + [2781] = 2095, + [2782] = 2782, + [2783] = 2497, + [2784] = 2329, + [2785] = 2521, + [2786] = 2438, + [2787] = 2371, + [2788] = 2419, [2789] = 2789, - [2790] = 2550, - [2791] = 2791, - [2792] = 2635, - [2793] = 2473, - [2794] = 2794, - [2795] = 1131, - [2796] = 2783, - [2797] = 2619, - [2798] = 2798, - [2799] = 2799, - [2800] = 2468, - [2801] = 2801, - [2802] = 2802, - [2803] = 1029, - [2804] = 2791, - [2805] = 2805, - [2806] = 2806, - [2807] = 2791, - [2808] = 2116, + [2790] = 2416, + [2791] = 2413, + [2792] = 2405, + [2793] = 2399, + [2794] = 2396, + [2795] = 2381, + [2796] = 2380, + [2797] = 2321, + [2798] = 2326, + [2799] = 2322, + [2800] = 2323, + [2801] = 2324, + [2802] = 2511, + [2803] = 2439, + [2804] = 2505, + [2805] = 2319, + [2806] = 2318, + [2807] = 2414, + [2808] = 2424, [2809] = 2789, - [2810] = 2488, - [2811] = 2115, - [2812] = 2113, - [2813] = 2111, - [2814] = 2109, - [2815] = 2815, - [2816] = 2789, - [2817] = 2572, - [2818] = 1038, - [2819] = 2098, - [2820] = 2097, - [2821] = 2095, - [2822] = 299, - [2823] = 2618, - [2824] = 2791, - [2825] = 2329, - [2826] = 2575, - [2827] = 1041, - [2828] = 1154, - [2829] = 2334, - [2830] = 2830, - [2831] = 2831, - [2832] = 2323, - [2833] = 2783, - [2834] = 2409, - [2835] = 2597, - [2836] = 2320, - [2837] = 2333, - [2838] = 2332, - [2839] = 2331, - [2840] = 2319, - [2841] = 2841, - [2842] = 2378, - [2843] = 2330, - [2844] = 2504, - [2845] = 2327, - [2846] = 2403, - [2847] = 2405, - [2848] = 2318, - [2849] = 2392, - [2850] = 2399, - [2851] = 2379, - [2852] = 2445, - [2853] = 2468, - [2854] = 2854, - [2855] = 2855, - [2856] = 2699, - [2857] = 2356, - [2858] = 2357, - [2859] = 2412, - [2860] = 2429, - [2861] = 2430, - [2862] = 2434, - [2863] = 2435, - [2864] = 2436, - [2865] = 2437, - [2866] = 2438, - [2867] = 2439, - [2868] = 2442, - [2869] = 2359, - [2870] = 2367, - [2871] = 2371, - [2872] = 2398, - [2873] = 2789, - [2874] = 2874, - [2875] = 2543, - [2876] = 2876, - [2877] = 2580, - [2878] = 2783, - [2879] = 2799, - [2880] = 2383, - [2881] = 2382, - [2882] = 2540, - [2883] = 2791, - [2884] = 2541, - [2885] = 2420, - [2886] = 2406, - [2887] = 299, - [2888] = 2321, - [2889] = 2322, - [2890] = 2325, - [2891] = 2335, - [2892] = 2336, - [2893] = 2385, - [2894] = 2340, - [2895] = 2365, - [2896] = 2373, - [2897] = 2376, - [2898] = 2534, - [2899] = 2386, - [2900] = 2387, - [2901] = 2901, - [2902] = 2791, - [2903] = 2350, - [2904] = 2450, - [2905] = 2452, - [2906] = 2453, - [2907] = 2907, - [2908] = 2789, - [2909] = 2909, - [2910] = 2464, - [2911] = 2855, - [2912] = 2326, - [2913] = 2476, - [2914] = 2477, - [2915] = 2478, - [2916] = 2329, - [2917] = 2358, - [2918] = 2388, - [2919] = 2352, - [2920] = 2404, - [2921] = 2699, - [2922] = 2334, - [2923] = 2351, - [2924] = 2372, - [2925] = 2423, - [2926] = 2413, - [2927] = 2317, - [2928] = 2928, - [2929] = 2324, - [2930] = 2368, - [2931] = 2369, - [2932] = 2395, - [2933] = 2441, - [2934] = 2499, - [2935] = 2375, - [2936] = 2787, - [2937] = 2316, - [2938] = 2362, - [2939] = 2348, - [2940] = 2346, - [2941] = 2342, - [2942] = 2339, - [2943] = 2480, - [2944] = 2481, - [2945] = 2482, - [2946] = 2423, - [2947] = 2485, - [2948] = 2329, - [2949] = 2949, - [2950] = 2791, - [2951] = 2951, - [2952] = 2901, - [2953] = 2495, - [2954] = 2732, - [2955] = 2498, - [2956] = 2484, - [2957] = 2461, - [2958] = 2783, - [2959] = 2329, - [2960] = 2473, - [2961] = 2334, - [2962] = 2962, - [2963] = 2456, - [2964] = 2454, - [2965] = 2449, - [2966] = 2440, - [2967] = 2789, - [2968] = 2536, - [2969] = 2462, - [2970] = 2408, - [2971] = 2433, - [2972] = 2444, - [2973] = 2334, - [2974] = 2431, - [2975] = 2416, - [2976] = 2393, - [2977] = 2353, - [2978] = 2427, - [2979] = 2326, - [2980] = 2619, - [2981] = 2783, - [2982] = 2349, - [2983] = 2347, - [2984] = 2345, - [2985] = 2344, - [2986] = 2343, - [2987] = 2337, - [2988] = 2380, - [2989] = 2389, - [2990] = 2328, - [2991] = 2799, - [2992] = 2635, + [2810] = 2463, + [2811] = 2645, + [2812] = 2462, + [2813] = 2461, + [2814] = 2372, + [2815] = 2782, + [2816] = 2316, + [2817] = 2782, + [2818] = 2359, + [2819] = 2515, + [2820] = 2335, + [2821] = 2333, + [2822] = 2330, + [2823] = 2823, + [2824] = 2513, + [2825] = 300, + [2826] = 2327, + [2827] = 2459, + [2828] = 2789, + [2829] = 2829, + [2830] = 2458, + [2831] = 2457, + [2832] = 2789, + [2833] = 2823, + [2834] = 2834, + [2835] = 2456, + [2836] = 2337, + [2837] = 2338, + [2838] = 2838, + [2839] = 2600, + [2840] = 2840, + [2841] = 2353, + [2842] = 2339, + [2843] = 2343, + [2844] = 2844, + [2845] = 2336, + [2846] = 2334, + [2847] = 2331, + [2848] = 2328, + [2849] = 2418, + [2850] = 2421, + [2851] = 2344, + [2852] = 2345, + [2853] = 2415, + [2854] = 2346, + [2855] = 2347, + [2856] = 2645, + [2857] = 2348, + [2858] = 2858, + [2859] = 2769, + [2860] = 2349, + [2861] = 2350, + [2862] = 2422, + [2863] = 2423, + [2864] = 2427, + [2865] = 2429, + [2866] = 2430, + [2867] = 2431, + [2868] = 2433, + [2869] = 2434, + [2870] = 2436, + [2871] = 2437, + [2872] = 2738, + [2873] = 2351, + [2874] = 2352, + [2875] = 2440, + [2876] = 2354, + [2877] = 2355, + [2878] = 2356, + [2879] = 2357, + [2880] = 2358, + [2881] = 2360, + [2882] = 2361, + [2883] = 2883, + [2884] = 2386, + [2885] = 2789, + [2886] = 2886, + [2887] = 2622, + [2888] = 2448, + [2889] = 2454, + [2890] = 2453, + [2891] = 2452, + [2892] = 300, + [2893] = 1134, + [2894] = 2451, + [2895] = 2450, + [2896] = 2896, + [2897] = 2420, + [2898] = 2898, + [2899] = 2062, + [2900] = 2581, + [2901] = 2604, + [2902] = 2061, + [2903] = 2060, + [2904] = 2904, + [2905] = 2905, + [2906] = 2906, + [2907] = 2415, + [2908] = 2503, + [2909] = 2471, + [2910] = 2449, + [2911] = 2543, + [2912] = 2475, + [2913] = 2466, + [2914] = 2858, + [2915] = 2769, + [2916] = 2371, + [2917] = 2316, + [2918] = 2834, + [2919] = 2489, + [2920] = 2390, + [2921] = 1140, + [2922] = 2043, + [2923] = 2044, + [2924] = 2045, + [2925] = 2046, + [2926] = 2047, + [2927] = 2474, + [2928] = 2460, + [2929] = 2426, + [2930] = 1150, + [2931] = 2629, + [2932] = 2464, + [2933] = 2033, + [2934] = 2094, + [2935] = 2905, + [2936] = 2936, + [2937] = 2524, + [2938] = 2492, + [2939] = 2490, + [2940] = 2782, + [2941] = 2941, + [2942] = 2942, + [2943] = 1159, + [2944] = 2320, + [2945] = 2905, + [2946] = 1160, + [2947] = 2629, + [2948] = 2823, + [2949] = 2435, + [2950] = 2789, + [2951] = 2387, + [2952] = 2385, + [2953] = 2953, + [2954] = 2412, + [2955] = 2411, + [2956] = 2782, + [2957] = 2410, + [2958] = 2409, + [2959] = 2408, + [2960] = 2407, + [2961] = 2905, + [2962] = 2425, + [2963] = 2622, + [2964] = 2905, + [2965] = 2400, + [2966] = 2398, + [2967] = 2375, + [2968] = 2402, + [2969] = 2969, + [2970] = 2371, + [2971] = 2374, + [2972] = 2388, + [2973] = 2373, + [2974] = 2316, + [2975] = 2782, + [2976] = 2976, + [2977] = 2370, + [2978] = 2370, + [2979] = 2600, + [2980] = 2391, + [2981] = 2371, + [2982] = 2389, + [2983] = 2383, + [2984] = 2342, + [2985] = 2985, + [2986] = 2789, + [2987] = 2987, + [2988] = 2905, + [2989] = 2316, + [2990] = 2941, + [2991] = 2991, + [2992] = 2992, [2993] = 2993, [2994] = 2994, - [2995] = 2635, - [2996] = 2464, - [2997] = 2476, - [2998] = 331, - [2999] = 2477, - [3000] = 330, - [3001] = 2478, - [3002] = 2479, - [3003] = 3003, - [3004] = 2480, - [3005] = 2481, - [3006] = 2482, - [3007] = 2485, - [3008] = 2646, - [3009] = 2799, - [3010] = 2385, - [3011] = 318, - [3012] = 2495, - [3013] = 328, - [3014] = 2498, - [3015] = 2484, - [3016] = 2461, - [3017] = 2610, - [3018] = 3018, - [3019] = 2611, - [3020] = 2612, - [3021] = 2650, - [3022] = 2543, - [3023] = 2799, - [3024] = 2504, - [3025] = 3025, - [3026] = 2488, - [3027] = 3027, - [3028] = 3028, - [3029] = 2536, - [3030] = 3030, - [3031] = 2597, - [3032] = 2580, - [3033] = 2540, - [3034] = 2541, - [3035] = 2450, - [3036] = 2452, - [3037] = 2453, - [3038] = 2464, - [3039] = 3025, - [3040] = 2541, - [3041] = 3028, - [3042] = 2453, - [3043] = 2452, - [3044] = 2450, - [3045] = 2476, - [3046] = 2477, - [3047] = 2478, - [3048] = 2479, - [3049] = 2480, - [3050] = 2481, - [3051] = 2468, - [3052] = 3052, - [3053] = 2482, - [3054] = 2485, - [3055] = 3055, - [3056] = 2495, - [3057] = 2498, - [3058] = 2484, - [3059] = 2461, - [3060] = 3025, - [3061] = 2456, - [3062] = 3028, - [3063] = 320, - [3064] = 2454, - [3065] = 2449, - [3066] = 2799, - [3067] = 2574, - [3068] = 3068, - [3069] = 2462, - [3070] = 3003, - [3071] = 2647, - [3072] = 2499, - [3073] = 2456, - [3074] = 2454, - [3075] = 2449, - [3076] = 3076, + [2995] = 2456, + [2996] = 2513, + [2997] = 2390, + [2998] = 2998, + [2999] = 2515, + [3000] = 2511, + [3001] = 2558, + [3002] = 3002, + [3003] = 2648, + [3004] = 2521, + [3005] = 3005, + [3006] = 2390, + [3007] = 2505, + [3008] = 3008, + [3009] = 3009, + [3010] = 2581, + [3011] = 2651, + [3012] = 2546, + [3013] = 2598, + [3014] = 2599, + [3015] = 2998, + [3016] = 3016, + [3017] = 3017, + [3018] = 2540, + [3019] = 2607, + [3020] = 2497, + [3021] = 3021, + [3022] = 2645, + [3023] = 334, + [3024] = 2463, + [3025] = 336, + [3026] = 340, + [3027] = 348, + [3028] = 2462, + [3029] = 2461, + [3030] = 2459, + [3031] = 2458, + [3032] = 2457, + [3033] = 2456, + [3034] = 3034, + [3035] = 2448, + [3036] = 2454, + [3037] = 3016, + [3038] = 3017, + [3039] = 2453, + [3040] = 2452, + [3041] = 2451, + [3042] = 349, + [3043] = 3043, + [3044] = 2823, + [3045] = 3045, + [3046] = 2450, + [3047] = 2449, + [3048] = 3048, + [3049] = 2543, + [3050] = 2466, + [3051] = 339, + [3052] = 346, + [3053] = 3016, + [3054] = 3054, + [3055] = 2650, + [3056] = 3056, + [3057] = 3057, + [3058] = 3058, + [3059] = 3017, + [3060] = 3054, + [3061] = 2638, + [3062] = 2603, + [3063] = 2510, + [3064] = 3064, + [3065] = 2474, + [3066] = 305, + [3067] = 2460, + [3068] = 2464, + [3069] = 3054, + [3070] = 2492, + [3071] = 3054, + [3072] = 2490, + [3073] = 341, + [3074] = 344, + [3075] = 343, + [3076] = 2600, [3077] = 3077, - [3078] = 2536, - [3079] = 2462, - [3080] = 2993, + [3078] = 3078, + [3079] = 305, + [3080] = 3080, [3081] = 3081, - [3082] = 2685, - [3083] = 3081, - [3084] = 2619, - [3085] = 2519, - [3086] = 2696, - [3087] = 2468, - [3088] = 2468, - [3089] = 3089, - [3090] = 3090, + [3082] = 2725, + [3083] = 2600, + [3084] = 348, + [3085] = 336, + [3086] = 2994, + [3087] = 334, + [3088] = 3088, + [3089] = 2645, + [3090] = 2622, [3091] = 3091, - [3092] = 2517, - [3093] = 3093, - [3094] = 2329, - [3095] = 3095, - [3096] = 3095, - [3097] = 3003, - [3098] = 2699, - [3099] = 2841, - [3100] = 2473, - [3101] = 319, - [3102] = 3102, - [3103] = 2334, - [3104] = 3104, - [3105] = 2618, - [3106] = 3106, - [3107] = 318, - [3108] = 317, - [3109] = 2539, - [3110] = 2499, - [3111] = 2548, - [3112] = 331, - [3113] = 3003, - [3114] = 330, - [3115] = 2572, - [3116] = 3116, - [3117] = 2575, - [3118] = 2329, - [3119] = 2334, - [3120] = 2580, - [3121] = 328, - [3122] = 2597, - [3123] = 2568, - [3124] = 319, - [3125] = 2566, - [3126] = 3126, - [3127] = 335, - [3128] = 2550, - [3129] = 2540, - [3130] = 3130, - [3131] = 3131, - [3132] = 2385, - [3133] = 2326, - [3134] = 3003, - [3135] = 2619, - [3136] = 3025, - [3137] = 3137, - [3138] = 2482, + [3092] = 2502, + [3093] = 2823, + [3094] = 2501, + [3095] = 2524, + [3096] = 2490, + [3097] = 2492, + [3098] = 2464, + [3099] = 2460, + [3100] = 2474, + [3101] = 2466, + [3102] = 2543, + [3103] = 2823, + [3104] = 343, + [3105] = 2496, + [3106] = 2488, + [3107] = 2449, + [3108] = 2450, + [3109] = 2451, + [3110] = 344, + [3111] = 341, + [3112] = 3112, + [3113] = 2452, + [3114] = 2453, + [3115] = 2454, + [3116] = 2448, + [3117] = 2687, + [3118] = 3118, + [3119] = 2577, + [3120] = 2457, + [3121] = 2458, + [3122] = 2459, + [3123] = 3123, + [3124] = 2371, + [3125] = 2482, + [3126] = 2461, + [3127] = 2462, + [3128] = 2463, + [3129] = 2497, + [3130] = 2513, + [3131] = 2480, + [3132] = 2515, + [3133] = 2511, + [3134] = 2503, + [3135] = 2316, + [3136] = 2471, + [3137] = 2475, + [3138] = 2489, [3139] = 3139, - [3140] = 2531, - [3141] = 3028, - [3142] = 3095, - [3143] = 2619, - [3144] = 3003, - [3145] = 2629, - [3146] = 2993, - [3147] = 3147, + [3140] = 2562, + [3141] = 2645, + [3142] = 2844, + [3143] = 332, + [3144] = 332, + [3145] = 3145, + [3146] = 3077, + [3147] = 3054, [3148] = 3148, [3149] = 3149, - [3150] = 3150, - [3151] = 3027, - [3152] = 2615, - [3153] = 3003, - [3154] = 305, - [3155] = 3155, - [3156] = 304, - [3157] = 2841, - [3158] = 2525, - [3159] = 3030, - [3160] = 3160, - [3161] = 3095, - [3162] = 2993, - [3163] = 2631, - [3164] = 2617, - [3165] = 3095, - [3166] = 2523, - [3167] = 3167, - [3168] = 3168, - [3169] = 2606, - [3170] = 2613, - [3171] = 2616, - [3172] = 3172, - [3173] = 2630, - [3174] = 2993, - [3175] = 2385, - [3176] = 2556, - [3177] = 3003, - [3178] = 2575, - [3179] = 2521, - [3180] = 2520, - [3181] = 3181, - [3182] = 2488, - [3183] = 2504, - [3184] = 2543, - [3185] = 307, - [3186] = 2642, + [3150] = 3009, + [3151] = 3151, + [3152] = 3008, + [3153] = 2524, + [3154] = 3154, + [3155] = 2844, + [3156] = 2587, + [3157] = 346, + [3158] = 2609, + [3159] = 339, + [3160] = 2579, + [3161] = 2578, + [3162] = 2569, + [3163] = 2567, + [3164] = 2498, + [3165] = 3054, + [3166] = 2494, + [3167] = 2483, + [3168] = 3054, + [3169] = 2370, + [3170] = 2600, + [3171] = 3171, + [3172] = 3034, + [3173] = 3173, + [3174] = 315, + [3175] = 2547, + [3176] = 2544, + [3177] = 3054, + [3178] = 2481, + [3179] = 2470, + [3180] = 2725, + [3181] = 2583, + [3182] = 3182, + [3183] = 2585, + [3184] = 2371, + [3185] = 2316, + [3186] = 2586, [3187] = 3187, - [3188] = 3188, - [3189] = 3189, - [3190] = 310, - [3191] = 3191, - [3192] = 2549, - [3193] = 2462, - [3194] = 2536, - [3195] = 2449, - [3196] = 3196, - [3197] = 3197, - [3198] = 323, - [3199] = 2502, - [3200] = 2454, - [3201] = 2456, - [3202] = 307, - [3203] = 2461, - [3204] = 3204, - [3205] = 2567, - [3206] = 2993, + [3188] = 349, + [3189] = 2503, + [3190] = 2471, + [3191] = 2475, + [3192] = 2489, + [3193] = 3193, + [3194] = 3194, + [3195] = 3048, + [3196] = 2592, + [3197] = 2595, + [3198] = 2615, + [3199] = 2626, + [3200] = 3008, + [3201] = 3009, + [3202] = 3017, + [3203] = 3054, + [3204] = 3009, + [3205] = 3008, + [3206] = 2469, [3207] = 3207, - [3208] = 3147, - [3209] = 3095, - [3210] = 310, - [3211] = 317, - [3212] = 3028, - [3213] = 3025, - [3214] = 3214, - [3215] = 304, - [3216] = 305, - [3217] = 2495, - [3218] = 3218, - [3219] = 2565, - [3220] = 3076, - [3221] = 2587, - [3222] = 2696, - [3223] = 2484, - [3224] = 2498, - [3225] = 2499, - [3226] = 2423, - [3227] = 3227, - [3228] = 3003, - [3229] = 2597, - [3230] = 3188, - [3231] = 3231, + [3208] = 3016, + [3209] = 3209, + [3210] = 3210, + [3211] = 3211, + [3212] = 3054, + [3213] = 340, + [3214] = 2511, + [3215] = 2515, + [3216] = 2513, + [3217] = 2497, + [3218] = 2463, + [3219] = 2462, + [3220] = 2461, + [3221] = 3118, + [3222] = 3222, + [3223] = 2390, + [3224] = 3016, + [3225] = 3017, + [3226] = 2459, + [3227] = 3009, + [3228] = 3008, + [3229] = 3009, + [3230] = 3008, + [3231] = 2458, [3232] = 3232, - [3233] = 2485, - [3234] = 2458, - [3235] = 2569, - [3236] = 2573, - [3237] = 2576, - [3238] = 2577, - [3239] = 2512, - [3240] = 2516, - [3241] = 3241, + [3233] = 2457, + [3234] = 2456, + [3235] = 2448, + [3236] = 2519, + [3237] = 3237, + [3238] = 2454, + [3239] = 2514, + [3240] = 2518, + [3241] = 2453, [3242] = 3242, - [3243] = 2467, - [3244] = 2580, - [3245] = 2540, - [3246] = 2541, - [3247] = 2609, - [3248] = 2608, - [3249] = 2466, - [3250] = 2465, - [3251] = 2575, - [3252] = 2488, - [3253] = 2504, + [3243] = 2629, + [3244] = 2452, + [3245] = 315, + [3246] = 2451, + [3247] = 2450, + [3248] = 2769, + [3249] = 3249, + [3250] = 2449, + [3251] = 3251, + [3252] = 2649, + [3253] = 3253, [3254] = 2543, - [3255] = 2450, - [3256] = 2452, - [3257] = 2453, - [3258] = 2464, - [3259] = 2476, - [3260] = 320, - [3261] = 323, - [3262] = 2460, - [3263] = 2459, - [3264] = 3264, - [3265] = 2457, - [3266] = 3196, - [3267] = 3095, - [3268] = 335, - [3269] = 3269, - [3270] = 3003, - [3271] = 2993, - [3272] = 3272, - [3273] = 2518, - [3274] = 2477, - [3275] = 2478, - [3276] = 2479, - [3277] = 2480, - [3278] = 2481, - [3279] = 3279, - [3280] = 2620, - [3281] = 2578, - [3282] = 2468, - [3283] = 2385, - [3284] = 2326, - [3285] = 3285, - [3286] = 3286, + [3255] = 2466, + [3256] = 3256, + [3257] = 3257, + [3258] = 3009, + [3259] = 2582, + [3260] = 2564, + [3261] = 2561, + [3262] = 3008, + [3263] = 3112, + [3264] = 2536, + [3265] = 2529, + [3266] = 3266, + [3267] = 2528, + [3268] = 2415, + [3269] = 2524, + [3270] = 2474, + [3271] = 2460, + [3272] = 2503, + [3273] = 2471, + [3274] = 2464, + [3275] = 2492, + [3276] = 2490, + [3277] = 3277, + [3278] = 3278, + [3279] = 2523, + [3280] = 2475, + [3281] = 3281, + [3282] = 2489, + [3283] = 3283, + [3284] = 3284, + [3285] = 2462, + [3286] = 2844, [3287] = 3287, [3288] = 3288, - [3289] = 3289, - [3290] = 2685, - [3291] = 2423, - [3292] = 2485, - [3293] = 2799, - [3294] = 3285, - [3295] = 2543, - [3296] = 2504, - [3297] = 3297, - [3298] = 2619, - [3299] = 2488, + [3289] = 2463, + [3290] = 2823, + [3291] = 3291, + [3292] = 3292, + [3293] = 2466, + [3294] = 2371, + [3295] = 2497, + [3296] = 3296, + [3297] = 2687, + [3298] = 2513, + [3299] = 3299, [3300] = 3300, - [3301] = 3285, - [3302] = 2481, - [3303] = 2482, - [3304] = 3304, - [3305] = 2385, - [3306] = 2453, - [3307] = 2635, - [3308] = 2841, - [3309] = 2495, - [3310] = 2572, - [3311] = 2498, - [3312] = 2484, - [3313] = 2775, - [3314] = 2452, - [3315] = 3315, - [3316] = 2461, + [3301] = 2415, + [3302] = 2511, + [3303] = 3303, + [3304] = 2316, + [3305] = 2457, + [3306] = 2370, + [3307] = 3307, + [3308] = 2453, + [3309] = 2452, + [3310] = 2758, + [3311] = 3311, + [3312] = 3312, + [3313] = 2474, + [3314] = 3300, + [3315] = 2390, + [3316] = 3300, [3317] = 3317, - [3318] = 3318, - [3319] = 2450, - [3320] = 2799, - [3321] = 2635, - [3322] = 2799, - [3323] = 3315, - [3324] = 2480, - [3325] = 2479, - [3326] = 2423, - [3327] = 2478, - [3328] = 3285, + [3318] = 2460, + [3319] = 2464, + [3320] = 2492, + [3321] = 2725, + [3322] = 3312, + [3323] = 2503, + [3324] = 2490, + [3325] = 2645, + [3326] = 2521, + [3327] = 3327, + [3328] = 2475, [3329] = 3329, - [3330] = 3330, + [3330] = 3300, [3331] = 3331, - [3332] = 2541, - [3333] = 2540, - [3334] = 3334, - [3335] = 2580, - [3336] = 3336, - [3337] = 3318, - [3338] = 3331, - [3339] = 2597, - [3340] = 3285, - [3341] = 2477, - [3342] = 3342, - [3343] = 2456, - [3344] = 2476, - [3345] = 2799, - [3346] = 2454, + [3332] = 2629, + [3333] = 2823, + [3334] = 2458, + [3335] = 3335, + [3336] = 2823, + [3337] = 2489, + [3338] = 3300, + [3339] = 3300, + [3340] = 3340, + [3341] = 3341, + [3342] = 2448, + [3343] = 2524, + [3344] = 2459, + [3345] = 2515, + [3346] = 2415, [3347] = 3347, - [3348] = 3348, - [3349] = 2696, - [3350] = 2575, - [3351] = 2464, - [3352] = 2499, - [3353] = 3353, - [3354] = 3354, - [3355] = 3286, - [3356] = 2462, - [3357] = 3348, - [3358] = 2536, - [3359] = 3285, - [3360] = 3360, - [3361] = 3361, - [3362] = 3362, - [3363] = 2334, - [3364] = 3364, - [3365] = 2449, - [3366] = 3285, - [3367] = 2329, - [3368] = 2618, - [3369] = 2635, + [3348] = 3299, + [3349] = 3349, + [3350] = 2451, + [3351] = 3351, + [3352] = 3291, + [3353] = 3341, + [3354] = 2450, + [3355] = 2471, + [3356] = 2449, + [3357] = 2390, + [3358] = 3358, + [3359] = 2600, + [3360] = 2543, + [3361] = 3300, + [3362] = 2454, + [3363] = 2629, + [3364] = 2823, + [3365] = 3365, + [3366] = 2461, + [3367] = 3340, + [3368] = 2456, + [3369] = 3369, [3370] = 3370, - [3371] = 2572, - [3372] = 2550, + [3371] = 2645, + [3372] = 3372, [3373] = 3373, [3374] = 3374, [3375] = 3375, - [3376] = 3376, + [3376] = 2600, [3377] = 3377, [3378] = 3378, - [3379] = 3379, - [3380] = 3380, + [3379] = 2823, + [3380] = 2581, [3381] = 3381, [3382] = 3382, [3383] = 3383, - [3384] = 3384, - [3385] = 2385, + [3384] = 2629, + [3385] = 3385, [3386] = 3386, [3387] = 3387, [3388] = 3388, - [3389] = 3389, + [3389] = 2415, [3390] = 3390, - [3391] = 2423, + [3391] = 3391, [3392] = 3392, [3393] = 3393, - [3394] = 2696, - [3395] = 2685, - [3396] = 2468, - [3397] = 3397, + [3394] = 3394, + [3395] = 3395, + [3396] = 3396, + [3397] = 2687, [3398] = 3398, - [3399] = 2799, - [3400] = 2635, - [3401] = 3401, + [3399] = 2505, + [3400] = 3400, + [3401] = 2521, [3402] = 3402, - [3403] = 2619, + [3403] = 2725, [3404] = 3404, [3405] = 3405, - [3406] = 3406, - [3407] = 2550, + [3406] = 2629, + [3407] = 2390, [3408] = 3408, [3409] = 3409, - [3410] = 3025, - [3411] = 3028, + [3410] = 2390, + [3411] = 3411, [3412] = 3412, - [3413] = 3028, - [3414] = 3414, - [3415] = 3415, - [3416] = 3416, - [3417] = 3025, - [3418] = 2572, - [3419] = 3025, - [3420] = 3420, - [3421] = 2385, - [3422] = 3028, - [3423] = 3028, - [3424] = 3025, - [3425] = 3025, - [3426] = 2618, - [3427] = 3028, - [3428] = 3025, - [3429] = 3028, - [3430] = 3218, - [3431] = 3028, - [3432] = 3025, - [3433] = 2313, - [3434] = 3434, - [3435] = 2385, + [3413] = 3413, + [3414] = 3017, + [3415] = 3016, + [3416] = 3193, + [3417] = 3417, + [3418] = 3418, + [3419] = 3419, + [3420] = 3016, + [3421] = 3017, + [3422] = 3422, + [3423] = 3423, + [3424] = 2844, + [3425] = 3425, + [3426] = 2305, + [3427] = 3017, + [3428] = 3016, + [3429] = 3017, + [3430] = 3016, + [3431] = 3400, + [3432] = 3432, + [3433] = 3433, + [3434] = 3016, + [3435] = 2390, [3436] = 3436, - [3437] = 3437, - [3438] = 3438, - [3439] = 2841, - [3440] = 3440, + [3437] = 2390, + [3438] = 3017, + [3439] = 2505, + [3440] = 2581, [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 2385, + [3442] = 2521, + [3443] = 3017, + [3444] = 3017, + [3445] = 3445, [3446] = 3446, - [3447] = 3386, - [3448] = 3448, + [3447] = 3016, + [3448] = 3016, [3449] = 3449, [3450] = 3450, [3451] = 3451, [3452] = 3452, - [3453] = 3452, - [3454] = 3452, - [3455] = 3452, - [3456] = 3452, - [3457] = 3452, - [3458] = 3452, - [3459] = 3452, - [3460] = 3452, - [3461] = 3452, - [3462] = 3462, - [3463] = 3463, - [3464] = 314, + [3453] = 3453, + [3454] = 3453, + [3455] = 3453, + [3456] = 3453, + [3457] = 3453, + [3458] = 3453, + [3459] = 3459, + [3460] = 3453, + [3461] = 3453, + [3462] = 3453, + [3463] = 3453, + [3464] = 3464, [3465] = 3465, [3466] = 3466, [3467] = 3467, @@ -7944,47 +7951,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3470] = 3470, [3471] = 3471, [3472] = 3472, - [3473] = 308, - [3474] = 316, + [3473] = 313, + [3474] = 1920, [3475] = 3475, [3476] = 3476, [3477] = 3477, [3478] = 3478, [3479] = 3479, [3480] = 3480, - [3481] = 1951, - [3482] = 3482, - [3483] = 309, - [3484] = 314, + [3481] = 3481, + [3482] = 345, + [3483] = 3483, + [3484] = 3484, [3485] = 3485, [3486] = 3486, [3487] = 3487, [3488] = 3488, - [3489] = 3489, + [3489] = 3374, [3490] = 3490, [3491] = 3491, [3492] = 3492, [3493] = 3493, - [3494] = 309, - [3495] = 3495, + [3494] = 3494, + [3495] = 347, [3496] = 3496, - [3497] = 3497, + [3497] = 347, [3498] = 3498, - [3499] = 3499, + [3499] = 345, [3500] = 3500, - [3501] = 3501, + [3501] = 321, [3502] = 3502, [3503] = 3503, [3504] = 3504, - [3505] = 3505, + [3505] = 3373, [3506] = 3506, [3507] = 3507, [3508] = 3508, [3509] = 3509, - [3510] = 3370, + [3510] = 3510, [3511] = 3511, [3512] = 3512, - [3513] = 3373, + [3513] = 3513, [3514] = 3514, [3515] = 3515, [3516] = 3516, @@ -7992,114 +7999,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3518] = 3518, [3519] = 3519, [3520] = 3520, - [3521] = 3068, + [3521] = 3521, [3522] = 3522, - [3523] = 316, + [3523] = 321, [3524] = 3524, - [3525] = 308, + [3525] = 3525, [3526] = 3526, - [3527] = 3077, + [3527] = 3527, [3528] = 3528, [3529] = 3529, - [3530] = 3530, + [3530] = 3171, [3531] = 3531, [3532] = 3532, - [3533] = 3533, - [3534] = 3102, - [3535] = 3168, - [3536] = 3536, - [3537] = 3537, - [3538] = 3318, - [3539] = 3331, - [3540] = 3540, - [3541] = 3289, - [3542] = 3364, - [3543] = 3317, - [3544] = 3289, - [3545] = 3353, - [3546] = 3297, - [3547] = 3354, - [3548] = 3347, - [3549] = 3286, + [3533] = 3002, + [3534] = 3534, + [3535] = 3535, + [3536] = 313, + [3537] = 3080, + [3538] = 3222, + [3539] = 3539, + [3540] = 3312, + [3541] = 3541, + [3542] = 3358, + [3543] = 3335, + [3544] = 3299, + [3545] = 3292, + [3546] = 3546, + [3547] = 3287, + [3548] = 3335, + [3549] = 3317, [3550] = 3550, - [3551] = 3551, - [3552] = 3552, - [3553] = 3304, - [3554] = 3288, - [3555] = 3551, - [3556] = 3353, - [3557] = 3331, - [3558] = 2013, - [3559] = 3318, - [3560] = 3348, - [3561] = 3364, - [3562] = 3562, - [3563] = 3563, - [3564] = 3286, - [3565] = 3354, - [3566] = 3552, - [3567] = 3348, + [3551] = 3327, + [3552] = 3546, + [3553] = 3296, + [3554] = 3365, + [3555] = 3317, + [3556] = 3341, + [3557] = 3557, + [3558] = 3340, + [3559] = 3541, + [3560] = 3287, + [3561] = 1993, + [3562] = 3292, + [3563] = 3347, + [3564] = 3564, + [3565] = 3341, + [3566] = 3312, + [3567] = 3299, [3568] = 3568, - [3569] = 3569, + [3569] = 3340, [3570] = 3570, - [3571] = 3570, + [3571] = 3571, [3572] = 3572, - [3573] = 3570, - [3574] = 3570, + [3573] = 3573, + [3574] = 3574, [3575] = 3575, - [3576] = 3576, + [3576] = 3572, [3577] = 3577, [3578] = 3578, - [3579] = 1987, - [3580] = 3578, - [3581] = 3576, + [3579] = 3579, + [3580] = 3572, + [3581] = 3581, [3582] = 3582, - [3583] = 3572, - [3584] = 3578, - [3585] = 3576, - [3586] = 3577, - [3587] = 3576, - [3588] = 3588, - [3589] = 3569, - [3590] = 3570, - [3591] = 3591, - [3592] = 3572, - [3593] = 3591, - [3594] = 3591, - [3595] = 3569, - [3596] = 3577, - [3597] = 3576, - [3598] = 3577, - [3599] = 3599, - [3600] = 3591, - [3601] = 3569, - [3602] = 3569, + [3583] = 3583, + [3584] = 3582, + [3585] = 3570, + [3586] = 3570, + [3587] = 3582, + [3588] = 3573, + [3589] = 3577, + [3590] = 3577, + [3591] = 1950, + [3592] = 3582, + [3593] = 3582, + [3594] = 3582, + [3595] = 3573, + [3596] = 3572, + [3597] = 3570, + [3598] = 3573, + [3599] = 3578, + [3600] = 3583, + [3601] = 3578, + [3602] = 3573, [3603] = 3577, - [3604] = 3591, - [3605] = 3569, - [3606] = 3572, - [3607] = 3572, + [3604] = 3572, + [3605] = 3605, + [3606] = 3583, + [3607] = 3570, [3608] = 3578, - [3609] = 3591, - [3610] = 3610, - [3611] = 3570, - [3612] = 3576, - [3613] = 3572, - [3614] = 3578, - [3615] = 3577, - [3616] = 3616, - [3617] = 3578, - [3618] = 3618, - [3619] = 3619, + [3609] = 3578, + [3610] = 3578, + [3611] = 3611, + [3612] = 3577, + [3613] = 3570, + [3614] = 3583, + [3615] = 3573, + [3616] = 3583, + [3617] = 3572, + [3618] = 3583, + [3619] = 3577, [3620] = 3620, [3621] = 3621, - [3622] = 3622, + [3622] = 3329, [3623] = 3623, [3624] = 3624, [3625] = 3625, [3626] = 3626, [3627] = 3627, - [3628] = 3360, + [3628] = 3628, [3629] = 3629, [3630] = 3630, [3631] = 3631, @@ -8111,7 +8118,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3637] = 3637, [3638] = 3638, [3639] = 3639, - [3640] = 2027, + [3640] = 3640, [3641] = 3641, [3642] = 3642, [3643] = 3643, @@ -8119,262 +8126,262 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3645] = 3645, [3646] = 3646, [3647] = 3647, - [3648] = 3644, - [3649] = 3649, - [3650] = 3650, + [3648] = 3648, + [3649] = 2016, + [3650] = 2018, [3651] = 3651, - [3652] = 3652, + [3652] = 2002, [3653] = 3653, - [3654] = 3645, + [3654] = 3654, [3655] = 3655, [3656] = 3656, - [3657] = 3657, + [3657] = 3644, [3658] = 3658, [3659] = 3659, [3660] = 3660, [3661] = 3661, - [3662] = 3646, - [3663] = 2083, + [3662] = 3662, + [3663] = 3663, [3664] = 3664, - [3665] = 3656, - [3666] = 3660, - [3667] = 2077, - [3668] = 3638, - [3669] = 2078, + [3665] = 3665, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 3669, [3670] = 3670, [3671] = 3671, [3672] = 3672, [3673] = 3673, - [3674] = 2064, - [3675] = 3675, - [3676] = 3676, - [3677] = 3677, - [3678] = 2057, - [3679] = 2076, + [3674] = 3664, + [3675] = 2011, + [3676] = 3673, + [3677] = 2015, + [3678] = 2017, + [3679] = 3679, [3680] = 3680, - [3681] = 3642, + [3681] = 3643, [3682] = 3682, - [3683] = 3683, + [3683] = 3672, [3684] = 3684, - [3685] = 3685, - [3686] = 3686, - [3687] = 3675, + [3685] = 3663, + [3686] = 3653, + [3687] = 3687, [3688] = 3688, - [3689] = 3689, + [3689] = 3684, [3690] = 3690, - [3691] = 3641, - [3692] = 3655, - [3693] = 3672, + [3691] = 3647, + [3692] = 3692, + [3693] = 3693, [3694] = 3694, - [3695] = 3695, - [3696] = 3680, + [3695] = 3654, + [3696] = 3696, [3697] = 3697, [3698] = 3698, - [3699] = 3699, - [3700] = 3700, - [3701] = 2076, - [3702] = 2297, - [3703] = 2298, - [3704] = 2294, - [3705] = 2077, - [3706] = 2064, - [3707] = 306, - [3708] = 337, - [3709] = 2413, - [3710] = 2293, - [3711] = 2399, - [3712] = 2445, - [3713] = 2324, - [3714] = 2356, - [3715] = 2357, - [3716] = 2378, - [3717] = 2319, - [3718] = 2368, - [3719] = 2342, - [3720] = 2359, - [3721] = 2339, - [3722] = 2387, - [3723] = 2369, - [3724] = 2386, - [3725] = 2376, - [3726] = 2395, - [3727] = 2367, - [3728] = 2373, - [3729] = 2322, - [3730] = 2392, - [3731] = 2371, - [3732] = 2325, - [3733] = 2346, - [3734] = 2348, - [3735] = 2441, - [3736] = 2335, - [3737] = 2336, - [3738] = 2375, - [3739] = 2365, - [3740] = 2362, - [3741] = 2316, - [3742] = 2317, - [3743] = 2340, - [3744] = 3744, - [3745] = 2299, - [3746] = 3744, - [3747] = 3744, - [3748] = 3744, - [3749] = 3744, - [3750] = 2097, - [3751] = 2113, - [3752] = 1038, - [3753] = 2109, - [3754] = 1041, - [3755] = 2115, - [3756] = 2116, - [3757] = 2095, - [3758] = 2343, - [3759] = 2403, - [3760] = 2294, - [3761] = 306, - [3762] = 2416, - [3763] = 2111, - [3764] = 2345, - [3765] = 2297, - [3766] = 1154, - [3767] = 2349, - [3768] = 2098, - [3769] = 2315, - [3770] = 337, - [3771] = 1131, - [3772] = 1029, - [3773] = 2425, - [3774] = 2118, - [3775] = 2119, - [3776] = 2120, - [3777] = 2298, - [3778] = 2303, - [3779] = 2302, - [3780] = 2300, - [3781] = 2304, - [3782] = 2310, - [3783] = 2430, - [3784] = 2434, - [3785] = 2321, - [3786] = 2409, - [3787] = 2372, - [3788] = 3788, - [3789] = 3789, - [3790] = 2320, - [3791] = 2351, - [3792] = 2404, - [3793] = 3793, - [3794] = 3794, - [3795] = 2293, - [3796] = 2352, - [3797] = 3788, - [3798] = 2427, - [3799] = 3788, - [3800] = 2353, + [3699] = 2008, + [3700] = 3682, + [3701] = 3659, + [3702] = 3702, + [3703] = 2015, + [3704] = 2016, + [3705] = 2008, + [3706] = 2294, + [3707] = 2298, + [3708] = 2295, + [3709] = 322, + [3710] = 319, + [3711] = 2297, + [3712] = 2439, + [3713] = 2381, + [3714] = 2396, + [3715] = 2399, + [3716] = 2330, + [3717] = 2405, + [3718] = 2380, + [3719] = 2358, + [3720] = 2357, + [3721] = 2351, + [3722] = 2424, + [3723] = 2319, + [3724] = 2326, + [3725] = 2333, + [3726] = 2360, + [3727] = 2321, + [3728] = 2356, + [3729] = 2413, + [3730] = 2372, + [3731] = 2318, + [3732] = 2355, + [3733] = 2329, + [3734] = 2324, + [3735] = 2346, + [3736] = 2348, + [3737] = 2414, + [3738] = 2350, + [3739] = 2354, + [3740] = 2347, + [3741] = 2352, + [3742] = 2349, + [3743] = 2323, + [3744] = 2361, + [3745] = 2322, + [3746] = 3746, + [3747] = 3746, + [3748] = 3746, + [3749] = 2308, + [3750] = 3746, + [3751] = 3746, + [3752] = 2383, + [3753] = 2094, + [3754] = 2060, + [3755] = 322, + [3756] = 2418, + [3757] = 2043, + [3758] = 2061, + [3759] = 1159, + [3760] = 2298, + [3761] = 2062, + [3762] = 2314, + [3763] = 2385, + [3764] = 2044, + [3765] = 1160, + [3766] = 2047, + [3767] = 2033, + [3768] = 2095, + [3769] = 2294, + [3770] = 1150, + [3771] = 2045, + [3772] = 319, + [3773] = 2408, + [3774] = 2295, + [3775] = 1140, + [3776] = 1134, + [3777] = 2046, + [3778] = 2410, + [3779] = 2412, + [3780] = 2302, + [3781] = 2300, + [3782] = 2312, + [3783] = 2313, + [3784] = 2311, + [3785] = 3785, + [3786] = 2424, + [3787] = 3787, + [3788] = 2345, + [3789] = 3787, + [3790] = 2327, + [3791] = 2356, + [3792] = 2357, + [3793] = 2437, + [3794] = 2359, + [3795] = 3787, + [3796] = 2436, + [3797] = 2409, + [3798] = 2339, + [3799] = 2338, + [3800] = 2411, [3801] = 3801, - [3802] = 3801, - [3803] = 2393, - [3804] = 2408, - [3805] = 2389, - [3806] = 3794, - [3807] = 2380, - [3808] = 2388, - [3809] = 3788, - [3810] = 2406, - [3811] = 2323, - [3812] = 2358, - [3813] = 3793, - [3814] = 3789, - [3815] = 3788, - [3816] = 3794, - [3817] = 2420, - [3818] = 3793, - [3819] = 3788, - [3820] = 3801, - [3821] = 3788, - [3822] = 2339, - [3823] = 3793, - [3824] = 3788, - [3825] = 2342, - [3826] = 2344, - [3827] = 3794, - [3828] = 3801, - [3829] = 3789, - [3830] = 2346, - [3831] = 2348, - [3832] = 3801, - [3833] = 2362, - [3834] = 2319, - [3835] = 2378, - [3836] = 2392, + [3802] = 2434, + [3803] = 3785, + [3804] = 2358, + [3805] = 3805, + [3806] = 2431, + [3807] = 2407, + [3808] = 3801, + [3809] = 3809, + [3810] = 2337, + [3811] = 3785, + [3812] = 2419, + [3813] = 2335, + [3814] = 2324, + [3815] = 2360, + [3816] = 3787, + [3817] = 2323, + [3818] = 2322, + [3819] = 3809, + [3820] = 3787, + [3821] = 2321, + [3822] = 2380, + [3823] = 2381, + [3824] = 3809, + [3825] = 2430, + [3826] = 3801, + [3827] = 3805, + [3828] = 3785, + [3829] = 2396, + [3830] = 2294, + [3831] = 3787, + [3832] = 3809, + [3833] = 2298, + [3834] = 2295, + [3835] = 3787, + [3836] = 2429, [3837] = 2399, - [3838] = 2331, - [3839] = 2445, - [3840] = 2356, - [3841] = 2297, - [3842] = 2357, - [3843] = 2298, - [3844] = 2359, - [3845] = 2367, - [3846] = 2371, - [3847] = 2316, - [3848] = 2375, - [3849] = 2441, - [3850] = 2395, - [3851] = 2369, - [3852] = 2368, - [3853] = 2398, - [3854] = 2324, - [3855] = 2294, - [3856] = 2317, - [3857] = 2413, - [3858] = 2433, - [3859] = 3794, - [3860] = 3788, - [3861] = 2442, - [3862] = 2439, - [3863] = 2438, - [3864] = 2437, - [3865] = 2383, - [3866] = 2444, - [3867] = 2436, - [3868] = 2379, - [3869] = 2322, - [3870] = 2325, - [3871] = 2337, - [3872] = 2335, - [3873] = 2336, - [3874] = 2318, - [3875] = 2340, - [3876] = 2382, - [3877] = 2365, - [3878] = 2373, - [3879] = 2376, - [3880] = 2405, - [3881] = 2386, - [3882] = 2412, - [3883] = 3789, - [3884] = 2387, - [3885] = 2327, - [3886] = 2435, - [3887] = 3788, - [3888] = 3793, - [3889] = 2333, - [3890] = 2429, - [3891] = 3789, - [3892] = 2330, - [3893] = 2347, - [3894] = 2332, - [3895] = 3895, - [3896] = 3896, + [3838] = 2433, + [3839] = 2427, + [3840] = 2423, + [3841] = 2405, + [3842] = 2361, + [3843] = 2413, + [3844] = 3801, + [3845] = 2387, + [3846] = 2388, + [3847] = 2342, + [3848] = 2346, + [3849] = 3787, + [3850] = 2347, + [3851] = 2398, + [3852] = 2348, + [3853] = 2349, + [3854] = 2350, + [3855] = 2422, + [3856] = 2373, + [3857] = 2351, + [3858] = 3805, + [3859] = 2372, + [3860] = 2344, + [3861] = 2400, + [3862] = 3787, + [3863] = 2414, + [3864] = 3785, + [3865] = 2355, + [3866] = 2354, + [3867] = 2328, + [3868] = 2421, + [3869] = 3805, + [3870] = 3801, + [3871] = 3809, + [3872] = 2416, + [3873] = 2318, + [3874] = 3787, + [3875] = 2343, + [3876] = 2320, + [3877] = 2439, + [3878] = 2326, + [3879] = 2353, + [3880] = 2329, + [3881] = 2330, + [3882] = 2336, + [3883] = 2389, + [3884] = 2319, + [3885] = 2334, + [3886] = 2333, + [3887] = 2386, + [3888] = 2331, + [3889] = 2374, + [3890] = 2375, + [3891] = 2297, + [3892] = 2440, + [3893] = 2391, + [3894] = 3805, + [3895] = 2352, + [3896] = 2438, [3897] = 3897, [3898] = 3898, - [3899] = 3895, - [3900] = 3900, - [3901] = 2299, - [3902] = 3900, - [3903] = 3896, + [3899] = 3899, + [3900] = 2308, + [3901] = 3901, + [3902] = 3899, + [3903] = 3899, [3904] = 3904, [3905] = 3905, [3906] = 3906, @@ -8383,448 +8390,448 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3909] = 3909, [3910] = 3910, [3911] = 3911, - [3912] = 3895, + [3912] = 3897, [3913] = 3913, - [3914] = 3900, - [3915] = 3915, - [3916] = 3916, - [3917] = 3896, + [3914] = 3914, + [3915] = 3897, + [3916] = 3905, + [3917] = 3905, [3918] = 3918, - [3919] = 3900, + [3919] = 3919, [3920] = 3920, - [3921] = 3921, - [3922] = 3895, - [3923] = 3900, - [3924] = 3924, + [3921] = 3899, + [3922] = 3922, + [3923] = 3923, + [3924] = 3899, [3925] = 3925, [3926] = 3926, - [3927] = 3896, - [3928] = 3928, + [3927] = 3897, + [3928] = 3905, [3929] = 3929, [3930] = 3930, - [3931] = 3931, - [3932] = 3895, - [3933] = 3896, + [3931] = 3905, + [3932] = 3932, + [3933] = 3897, [3934] = 3934, - [3935] = 2425, - [3936] = 2324, - [3937] = 2375, - [3938] = 2316, - [3939] = 2362, - [3940] = 2348, - [3941] = 2346, - [3942] = 2342, - [3943] = 2293, - [3944] = 2339, - [3945] = 3945, - [3946] = 2343, + [3935] = 3935, + [3936] = 3936, + [3937] = 2381, + [3938] = 2360, + [3939] = 2008, + [3940] = 3940, + [3941] = 3941, + [3942] = 2383, + [3943] = 2094, + [3944] = 2095, + [3945] = 2015, + [3946] = 2033, [3947] = 3947, - [3948] = 2387, - [3949] = 2315, - [3950] = 2386, - [3951] = 2416, - [3952] = 2376, - [3953] = 2403, - [3954] = 2373, - [3955] = 2365, - [3956] = 2095, - [3957] = 2340, - [3958] = 2336, - [3959] = 3959, - [3960] = 2441, - [3961] = 2395, - [3962] = 2335, - [3963] = 2349, - [3964] = 2325, - [3965] = 2369, - [3966] = 2368, - [3967] = 2322, - [3968] = 2345, - [3969] = 3969, - [3970] = 2317, - [3971] = 2371, - [3972] = 3972, - [3973] = 2367, - [3974] = 2359, - [3975] = 2356, - [3976] = 2445, - [3977] = 3977, - [3978] = 2413, - [3979] = 2077, - [3980] = 2118, - [3981] = 3981, - [3982] = 2064, + [3948] = 3948, + [3949] = 2346, + [3950] = 2347, + [3951] = 2047, + [3952] = 2348, + [3953] = 3953, + [3954] = 2297, + [3955] = 2349, + [3956] = 2046, + [3957] = 3957, + [3958] = 2045, + [3959] = 2044, + [3960] = 2350, + [3961] = 2043, + [3962] = 2351, + [3963] = 2408, + [3964] = 2410, + [3965] = 2352, + [3966] = 2062, + [3967] = 2385, + [3968] = 2061, + [3969] = 2418, + [3970] = 2380, + [3971] = 2060, + [3972] = 2314, + [3973] = 3973, + [3974] = 2372, + [3975] = 2424, + [3976] = 2414, + [3977] = 2318, + [3978] = 2016, + [3979] = 2412, + [3980] = 2319, + [3981] = 2354, + [3982] = 3930, [3983] = 3983, - [3984] = 2076, - [3985] = 2399, - [3986] = 2109, - [3987] = 2111, - [3988] = 2392, - [3989] = 2113, - [3990] = 2378, - [3991] = 2115, - [3992] = 2116, - [3993] = 3993, - [3994] = 2319, - [3995] = 2098, - [3996] = 3996, - [3997] = 2120, - [3998] = 2097, - [3999] = 2119, - [4000] = 4000, - [4001] = 2357, - [4002] = 3908, + [3984] = 2439, + [3985] = 2333, + [3986] = 3986, + [3987] = 2322, + [3988] = 2324, + [3989] = 2413, + [3990] = 2326, + [3991] = 2358, + [3992] = 2329, + [3993] = 2321, + [3994] = 3994, + [3995] = 2357, + [3996] = 2330, + [3997] = 2405, + [3998] = 2361, + [3999] = 2356, + [4000] = 2355, + [4001] = 2323, + [4002] = 2399, [4003] = 4003, - [4004] = 4004, + [4004] = 2396, [4005] = 4005, [4006] = 4006, [4007] = 4007, - [4008] = 2303, + [4008] = 4008, [4009] = 4009, [4010] = 4010, - [4011] = 2302, + [4011] = 4011, [4012] = 4012, [4013] = 4013, [4014] = 4014, - [4015] = 4015, - [4016] = 2300, + [4015] = 4006, + [4016] = 4016, [4017] = 4017, [4018] = 4018, - [4019] = 2304, - [4020] = 4006, + [4019] = 4019, + [4020] = 2312, [4021] = 4021, [4022] = 4022, - [4023] = 4006, - [4024] = 4017, + [4023] = 4023, + [4024] = 2302, [4025] = 4025, - [4026] = 4026, - [4027] = 4027, - [4028] = 4028, + [4026] = 4005, + [4027] = 2300, + [4028] = 4005, [4029] = 4029, [4030] = 4030, [4031] = 4031, [4032] = 4032, - [4033] = 2299, + [4033] = 2308, [4034] = 4034, [4035] = 4035, - [4036] = 4036, + [4036] = 2313, [4037] = 4037, [4038] = 4038, - [4039] = 4017, - [4040] = 4040, - [4041] = 4017, - [4042] = 4006, + [4039] = 4039, + [4040] = 4006, + [4041] = 4041, + [4042] = 4042, [4043] = 4043, - [4044] = 4044, - [4045] = 4045, + [4044] = 4005, + [4045] = 2311, [4046] = 4046, [4047] = 4047, - [4048] = 4006, - [4049] = 4017, + [4048] = 4048, + [4049] = 4049, [4050] = 4050, [4051] = 4051, - [4052] = 2310, + [4052] = 4005, [4053] = 4053, - [4054] = 2331, - [4055] = 2351, - [4056] = 4056, - [4057] = 1029, - [4058] = 2318, - [4059] = 2383, - [4060] = 2382, - [4061] = 2379, - [4062] = 2077, - [4063] = 1038, - [4064] = 2327, - [4065] = 2358, - [4066] = 2344, - [4067] = 2388, - [4068] = 2321, - [4069] = 2406, - [4070] = 2064, - [4071] = 2403, - [4072] = 2405, - [4073] = 1041, - [4074] = 1154, - [4075] = 2352, - [4076] = 2330, - [4077] = 2337, - [4078] = 4078, - [4079] = 2380, - [4080] = 2404, - [4081] = 2389, - [4082] = 2427, - [4083] = 2412, - [4084] = 2429, - [4085] = 2347, - [4086] = 4086, - [4087] = 2430, - [4088] = 2434, - [4089] = 2372, - [4090] = 4090, - [4091] = 2393, - [4092] = 2435, - [4093] = 2436, - [4094] = 2320, - [4095] = 2353, - [4096] = 2437, - [4097] = 1131, - [4098] = 2349, - [4099] = 2323, - [4100] = 2315, - [4101] = 2420, - [4102] = 2345, - [4103] = 2332, - [4104] = 2438, - [4105] = 2439, - [4106] = 2444, - [4107] = 2343, - [4108] = 2433, - [4109] = 2333, - [4110] = 2408, - [4111] = 2076, - [4112] = 2425, - [4113] = 2442, - [4114] = 2409, - [4115] = 2398, - [4116] = 2416, - [4117] = 4117, - [4118] = 4118, - [4119] = 4119, - [4120] = 4118, - [4121] = 3908, - [4122] = 2304, - [4123] = 4118, - [4124] = 2310, + [4054] = 4006, + [4055] = 4006, + [4056] = 2388, + [4057] = 2437, + [4058] = 2374, + [4059] = 1159, + [4060] = 2339, + [4061] = 2345, + [4062] = 2429, + [4063] = 2344, + [4064] = 2375, + [4065] = 2438, + [4066] = 2419, + [4067] = 2416, + [4068] = 4068, + [4069] = 2353, + [4070] = 2336, + [4071] = 2334, + [4072] = 2331, + [4073] = 2008, + [4074] = 2338, + [4075] = 2320, + [4076] = 4076, + [4077] = 2440, + [4078] = 1160, + [4079] = 2337, + [4080] = 2421, + [4081] = 4081, + [4082] = 1150, + [4083] = 2411, + [4084] = 2408, + [4085] = 2418, + [4086] = 2430, + [4087] = 2359, + [4088] = 2409, + [4089] = 2385, + [4090] = 2383, + [4091] = 2328, + [4092] = 2410, + [4093] = 2327, + [4094] = 2436, + [4095] = 2407, + [4096] = 2431, + [4097] = 2398, + [4098] = 2314, + [4099] = 2373, + [4100] = 1134, + [4101] = 4101, + [4102] = 2342, + [4103] = 2343, + [4104] = 2422, + [4105] = 2412, + [4106] = 4106, + [4107] = 2386, + [4108] = 2016, + [4109] = 2400, + [4110] = 2423, + [4111] = 1140, + [4112] = 2391, + [4113] = 2015, + [4114] = 2389, + [4115] = 2427, + [4116] = 2434, + [4117] = 2433, + [4118] = 2387, + [4119] = 2335, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 2311, [4125] = 4125, - [4126] = 4126, - [4127] = 2300, - [4128] = 4128, - [4129] = 4128, + [4126] = 3930, + [4127] = 2313, + [4128] = 4121, + [4129] = 4121, [4130] = 4130, - [4131] = 2302, - [4132] = 4118, + [4131] = 4130, + [4132] = 4123, [4133] = 4133, [4134] = 4134, - [4135] = 4135, - [4136] = 4136, - [4137] = 4137, - [4138] = 4135, - [4139] = 4118, - [4140] = 4140, - [4141] = 4141, - [4142] = 4128, - [4143] = 4130, - [4144] = 2303, + [4135] = 4130, + [4136] = 2300, + [4137] = 4121, + [4138] = 4138, + [4139] = 4139, + [4140] = 4121, + [4141] = 2302, + [4142] = 4142, + [4143] = 2312, + [4144] = 4130, [4145] = 4145, [4146] = 4146, - [4147] = 4128, - [4148] = 4128, - [4149] = 4118, + [4147] = 4147, + [4148] = 4125, + [4149] = 4130, [4150] = 4150, - [4151] = 4128, - [4152] = 2095, - [4153] = 4153, - [4154] = 4154, + [4151] = 4151, + [4152] = 4121, + [4153] = 4130, + [4154] = 2345, [4155] = 4155, - [4156] = 4156, - [4157] = 4157, + [4156] = 4005, + [4157] = 2337, [4158] = 4158, [4159] = 4159, [4160] = 4160, - [4161] = 4161, - [4162] = 4162, - [4163] = 4163, + [4161] = 2344, + [4162] = 2338, + [4163] = 2339, [4164] = 4164, [4165] = 4165, [4166] = 4166, [4167] = 4167, - [4168] = 4168, + [4168] = 4005, [4169] = 4169, - [4170] = 2358, - [4171] = 4171, - [4172] = 4006, - [4173] = 4173, - [4174] = 306, + [4170] = 4170, + [4171] = 2353, + [4172] = 2336, + [4173] = 2334, + [4174] = 2331, [4175] = 4175, [4176] = 4176, [4177] = 4177, - [4178] = 4006, - [4179] = 337, + [4178] = 4120, + [4179] = 4179, [4180] = 4180, - [4181] = 4181, - [4182] = 4177, - [4183] = 4006, - [4184] = 4177, - [4185] = 4006, - [4186] = 4160, + [4181] = 4151, + [4182] = 2328, + [4183] = 2327, + [4184] = 4184, + [4185] = 4185, + [4186] = 2386, [4187] = 4187, [4188] = 4188, - [4189] = 4189, - [4190] = 4190, - [4191] = 2388, - [4192] = 4157, - [4193] = 2352, - [4194] = 1154, + [4189] = 2388, + [4190] = 4175, + [4191] = 4191, + [4192] = 4158, + [4193] = 4167, + [4194] = 4191, [4195] = 4195, [4196] = 4196, - [4197] = 4197, - [4198] = 1041, - [4199] = 4199, - [4200] = 4200, - [4201] = 4201, - [4202] = 1038, - [4203] = 2404, - [4204] = 4156, + [4197] = 319, + [4198] = 4198, + [4199] = 4158, + [4200] = 4005, + [4201] = 4198, + [4202] = 322, + [4203] = 4160, + [4204] = 4160, [4205] = 4205, - [4206] = 4206, - [4207] = 1029, - [4208] = 2379, + [4206] = 4167, + [4207] = 4207, + [4208] = 2421, [4209] = 4209, - [4210] = 2405, - [4211] = 4157, - [4212] = 2412, + [4210] = 2422, + [4211] = 2423, + [4212] = 2427, [4213] = 2429, [4214] = 2430, - [4215] = 2434, - [4216] = 2435, - [4217] = 2436, - [4218] = 2437, - [4219] = 2438, - [4220] = 2439, - [4221] = 2442, - [4222] = 1131, - [4223] = 2398, - [4224] = 2351, - [4225] = 2372, - [4226] = 4119, - [4227] = 4227, - [4228] = 4158, + [4215] = 2431, + [4216] = 2433, + [4217] = 2434, + [4218] = 2436, + [4219] = 2437, + [4220] = 4175, + [4221] = 4221, + [4222] = 2440, + [4223] = 4175, + [4224] = 2398, + [4225] = 2400, + [4226] = 4005, + [4227] = 4158, + [4228] = 4228, [4229] = 4229, - [4230] = 4153, - [4231] = 4231, - [4232] = 4158, - [4233] = 4233, + [4230] = 4167, + [4231] = 4159, + [4232] = 4198, + [4233] = 4155, [4234] = 4234, - [4235] = 4235, - [4236] = 4159, - [4237] = 4159, - [4238] = 1951, - [4239] = 4153, - [4240] = 4177, - [4241] = 4158, - [4242] = 4156, - [4243] = 4156, - [4244] = 4157, - [4245] = 4171, - [4246] = 4125, - [4247] = 4171, + [4235] = 1160, + [4236] = 1159, + [4237] = 4155, + [4238] = 4238, + [4239] = 4239, + [4240] = 4240, + [4241] = 4160, + [4242] = 1150, + [4243] = 4159, + [4244] = 4155, + [4245] = 4245, + [4246] = 1140, + [4247] = 4247, [4248] = 4248, - [4249] = 4160, + [4249] = 4175, [4250] = 4250, [4251] = 4251, - [4252] = 2097, - [4253] = 2098, - [4254] = 2318, - [4255] = 4255, - [4256] = 4126, - [4257] = 4160, - [4258] = 2327, - [4259] = 4259, - [4260] = 4156, + [4252] = 4165, + [4253] = 4253, + [4254] = 4254, + [4255] = 4005, + [4256] = 1134, + [4257] = 4175, + [4258] = 4258, + [4259] = 4245, + [4260] = 4260, [4261] = 4261, - [4262] = 4177, + [4262] = 4262, [4263] = 4263, - [4264] = 4006, - [4265] = 2109, - [4266] = 4160, - [4267] = 2111, - [4268] = 2113, - [4269] = 4269, - [4270] = 2115, - [4271] = 4271, - [4272] = 2116, - [4273] = 4273, - [4274] = 4171, + [4264] = 4138, + [4265] = 4265, + [4266] = 4266, + [4267] = 4267, + [4268] = 4268, + [4269] = 1920, + [4270] = 4159, + [4271] = 2343, + [4272] = 4272, + [4273] = 4155, + [4274] = 4245, [4275] = 4275, - [4276] = 4275, - [4277] = 4277, - [4278] = 4278, - [4279] = 4279, - [4280] = 4280, - [4281] = 4281, - [4282] = 4282, + [4276] = 4276, + [4277] = 4245, + [4278] = 2094, + [4279] = 4198, + [4280] = 2095, + [4281] = 2033, + [4282] = 4005, [4283] = 4283, - [4284] = 4160, - [4285] = 2120, - [4286] = 2119, - [4287] = 2118, - [4288] = 4288, - [4289] = 4277, - [4290] = 4156, + [4284] = 4284, + [4285] = 4142, + [4286] = 4286, + [4287] = 4287, + [4288] = 4167, + [4289] = 4289, + [4290] = 4158, [4291] = 4291, - [4292] = 4292, - [4293] = 4293, + [4292] = 4167, + [4293] = 2047, [4294] = 4294, - [4295] = 4291, - [4296] = 4157, - [4297] = 4297, - [4298] = 2347, - [4299] = 2330, - [4300] = 2344, - [4301] = 4288, - [4302] = 2337, - [4303] = 4303, - [4304] = 4292, - [4305] = 4305, - [4306] = 4171, - [4307] = 4153, - [4308] = 2380, - [4309] = 2389, - [4310] = 4159, - [4311] = 2427, - [4312] = 4006, - [4313] = 4282, - [4314] = 4283, - [4315] = 2393, - [4316] = 2353, - [4317] = 4150, - [4318] = 2333, - [4319] = 2323, - [4320] = 2332, - [4321] = 4159, - [4322] = 2444, - [4323] = 2433, - [4324] = 2408, - [4325] = 4159, - [4326] = 2382, - [4327] = 4158, - [4328] = 2320, - [4329] = 4329, - [4330] = 4006, - [4331] = 4331, - [4332] = 4156, - [4333] = 4153, - [4334] = 4158, - [4335] = 4281, - [4336] = 4157, - [4337] = 2383, - [4338] = 4154, - [4339] = 4171, - [4340] = 2409, - [4341] = 2331, - [4342] = 4342, - [4343] = 2420, + [4295] = 4198, + [4296] = 4158, + [4297] = 2046, + [4298] = 2045, + [4299] = 2044, + [4300] = 4155, + [4301] = 2411, + [4302] = 4302, + [4303] = 2409, + [4304] = 2416, + [4305] = 2407, + [4306] = 2043, + [4307] = 2419, + [4308] = 4308, + [4309] = 4309, + [4310] = 4310, + [4311] = 2391, + [4312] = 2389, + [4313] = 4313, + [4314] = 2387, + [4315] = 4315, + [4316] = 2438, + [4317] = 4005, + [4318] = 2342, + [4319] = 2320, + [4320] = 4245, + [4321] = 4245, + [4322] = 4159, + [4323] = 4160, + [4324] = 4324, + [4325] = 2375, + [4326] = 2374, + [4327] = 2373, + [4328] = 4175, + [4329] = 4258, + [4330] = 2060, + [4331] = 2061, + [4332] = 2062, + [4333] = 4179, + [4334] = 4180, + [4335] = 4335, + [4336] = 4336, + [4337] = 4337, + [4338] = 4184, + [4339] = 4339, + [4340] = 4340, + [4341] = 4160, + [4342] = 4159, + [4343] = 2359, [4344] = 4344, - [4345] = 2406, - [4346] = 2321, - [4347] = 4177, - [4348] = 4348, - [4349] = 4349, + [4345] = 2335, + [4346] = 4346, + [4347] = 4185, + [4348] = 4188, + [4349] = 4187, [4350] = 4350, - [4351] = 4350, + [4351] = 4351, [4352] = 4352, - [4353] = 4353, + [4353] = 4351, [4354] = 4354, [4355] = 4355, [4356] = 4356, @@ -8832,71 +8839,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4358] = 4358, [4359] = 4359, [4360] = 4360, - [4361] = 4361, - [4362] = 4349, - [4363] = 4125, - [4364] = 4349, - [4365] = 4349, - [4366] = 4350, - [4367] = 4357, - [4368] = 4356, - [4369] = 4369, + [4361] = 4120, + [4362] = 4352, + [4363] = 4363, + [4364] = 4352, + [4365] = 4151, + [4366] = 4352, + [4367] = 4352, + [4368] = 4352, + [4369] = 4351, [4370] = 4370, - [4371] = 4371, - [4372] = 4350, - [4373] = 4350, - [4374] = 4350, - [4375] = 4126, - [4376] = 4350, - [4377] = 4349, - [4378] = 4349, - [4379] = 4379, + [4371] = 4352, + [4372] = 4372, + [4373] = 304, + [4374] = 299, + [4375] = 4358, + [4376] = 4363, + [4377] = 4377, + [4378] = 4351, + [4379] = 4351, [4380] = 4380, - [4381] = 296, - [4382] = 295, + [4381] = 4352, + [4382] = 4382, [4383] = 4383, - [4384] = 4350, + [4384] = 4384, [4385] = 4385, - [4386] = 4386, - [4387] = 308, + [4386] = 4351, + [4387] = 345, [4388] = 4388, [4389] = 4389, - [4390] = 4189, + [4390] = 321, [4391] = 4391, [4392] = 4392, - [4393] = 4393, + [4393] = 4388, [4394] = 4394, [4395] = 4395, [4396] = 4396, - [4397] = 316, - [4398] = 4398, - [4399] = 4399, - [4400] = 4400, + [4397] = 347, + [4398] = 313, + [4399] = 4166, + [4400] = 4176, [4401] = 4401, [4402] = 4402, - [4403] = 4180, + [4403] = 4403, [4404] = 4404, [4405] = 4405, - [4406] = 309, + [4406] = 4406, [4407] = 4407, [4408] = 4408, - [4409] = 4409, + [4409] = 4389, [4410] = 4410, [4411] = 4411, - [4412] = 4412, - [4413] = 4197, - [4414] = 4414, + [4412] = 4394, + [4413] = 4413, + [4414] = 4391, [4415] = 4415, - [4416] = 4416, - [4417] = 4388, - [4418] = 4393, - [4419] = 4419, + [4416] = 4388, + [4417] = 4417, + [4418] = 347, + [4419] = 4411, [4420] = 4388, - [4421] = 4395, + [4421] = 4394, [4422] = 4422, - [4423] = 4396, - [4424] = 4392, - [4425] = 4425, + [4423] = 4389, + [4424] = 4424, + [4425] = 1993, [4426] = 4426, [4427] = 4427, [4428] = 4428, @@ -8904,576 +8911,576 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4430] = 4430, [4431] = 4431, [4432] = 4432, - [4433] = 4432, + [4433] = 4433, [4434] = 4434, - [4435] = 4392, + [4435] = 4435, [4436] = 4436, [4437] = 4437, [4438] = 4438, [4439] = 4439, - [4440] = 4405, - [4441] = 4441, - [4442] = 4392, - [4443] = 4294, + [4440] = 4440, + [4441] = 4438, + [4442] = 4442, + [4443] = 4443, [4444] = 4444, [4445] = 4445, [4446] = 4446, [4447] = 4447, - [4448] = 4441, + [4448] = 4286, [4449] = 4449, [4450] = 4450, [4451] = 4451, [4452] = 4452, - [4453] = 4436, + [4453] = 4422, [4454] = 4454, [4455] = 4455, [4456] = 4456, [4457] = 4457, [4458] = 4458, - [4459] = 4056, - [4460] = 314, - [4461] = 4388, + [4459] = 4459, + [4460] = 4457, + [4461] = 4402, [4462] = 4462, - [4463] = 4405, + [4463] = 4463, [4464] = 4464, [4465] = 4465, - [4466] = 4466, - [4467] = 4467, - [4468] = 314, - [4469] = 4444, - [4470] = 4259, - [4471] = 4471, - [4472] = 4472, + [4466] = 4455, + [4467] = 4394, + [4468] = 4405, + [4469] = 4469, + [4470] = 4470, + [4471] = 4380, + [4472] = 4452, [4473] = 4473, [4474] = 4474, - [4475] = 4475, + [4475] = 4391, [4476] = 4476, - [4477] = 4477, - [4478] = 4478, - [4479] = 309, - [4480] = 4480, + [4477] = 4417, + [4478] = 4388, + [4479] = 4479, + [4480] = 4455, [4481] = 4481, [4482] = 4482, - [4483] = 4483, - [4484] = 4484, + [4483] = 4389, + [4484] = 4068, [4485] = 4485, [4486] = 4486, - [4487] = 4441, + [4487] = 4487, [4488] = 4488, - [4489] = 4489, + [4489] = 4417, [4490] = 4490, [4491] = 4491, [4492] = 4492, - [4493] = 4493, + [4493] = 4408, [4494] = 4494, [4495] = 4495, - [4496] = 4444, - [4497] = 4497, + [4496] = 4402, + [4497] = 4405, [4498] = 4498, - [4499] = 4499, + [4499] = 4402, [4500] = 4500, [4501] = 4501, - [4502] = 4436, + [4502] = 4502, [4503] = 4503, - [4504] = 4504, + [4504] = 4500, [4505] = 4505, - [4506] = 4506, - [4507] = 4405, - [4508] = 4444, - [4509] = 4509, + [4506] = 4391, + [4507] = 4402, + [4508] = 4411, + [4509] = 4415, [4510] = 4510, [4511] = 4511, - [4512] = 4396, + [4512] = 4512, [4513] = 4513, - [4514] = 4395, - [4515] = 4515, - [4516] = 4516, - [4517] = 4517, + [4514] = 4391, + [4515] = 4457, + [4516] = 4457, + [4517] = 4455, [4518] = 4518, - [4519] = 4519, + [4519] = 4417, [4520] = 4520, - [4521] = 4283, - [4522] = 4522, - [4523] = 4393, - [4524] = 4524, - [4525] = 4525, - [4526] = 4526, - [4527] = 2013, - [4528] = 4410, + [4521] = 4188, + [4522] = 4187, + [4523] = 4523, + [4524] = 4185, + [4525] = 4184, + [4526] = 4180, + [4527] = 4179, + [4528] = 4502, [4529] = 4529, - [4530] = 4396, - [4531] = 4531, + [4530] = 4530, + [4531] = 4405, [4532] = 4532, [4533] = 4533, - [4534] = 4534, - [4535] = 4535, - [4536] = 303, - [4537] = 322, - [4538] = 4292, - [4539] = 4416, - [4540] = 4414, + [4534] = 4422, + [4535] = 4452, + [4536] = 4536, + [4537] = 4537, + [4538] = 4538, + [4539] = 326, + [4540] = 325, [4541] = 4541, [4542] = 4542, [4543] = 4543, - [4544] = 4544, - [4545] = 4545, + [4544] = 4389, + [4545] = 4438, [4546] = 4546, - [4547] = 4458, + [4547] = 4547, [4548] = 4548, - [4549] = 4291, - [4550] = 4288, - [4551] = 4410, - [4552] = 4410, - [4553] = 4282, - [4554] = 4436, + [4549] = 4549, + [4550] = 4550, + [4551] = 4394, + [4552] = 4081, + [4553] = 4553, + [4554] = 4344, [4555] = 4555, [4556] = 4556, - [4557] = 4281, + [4557] = 4557, [4558] = 4558, - [4559] = 4466, - [4560] = 4560, - [4561] = 4410, - [4562] = 4393, - [4563] = 4411, - [4564] = 4395, + [4559] = 4559, + [4560] = 4402, + [4561] = 4561, + [4562] = 4562, + [4563] = 4452, + [4564] = 4564, [4565] = 4565, - [4566] = 4396, - [4567] = 4567, - [4568] = 4568, - [4569] = 4569, - [4570] = 4570, - [4571] = 4393, + [4566] = 4411, + [4567] = 4455, + [4568] = 4411, + [4569] = 4405, + [4570] = 4411, + [4571] = 4422, [4572] = 4572, - [4573] = 4404, - [4574] = 4436, - [4575] = 4575, - [4576] = 4395, + [4573] = 4573, + [4574] = 4574, + [4575] = 4170, + [4576] = 302, [4577] = 4577, - [4578] = 4395, - [4579] = 4396, - [4580] = 4580, + [4578] = 4578, + [4579] = 4579, + [4580] = 4417, [4581] = 4581, - [4582] = 4369, - [4583] = 4414, + [4582] = 4389, + [4583] = 4429, [4584] = 4584, - [4585] = 4585, + [4585] = 4455, [4586] = 4586, - [4587] = 4393, - [4588] = 4090, - [4589] = 4589, - [4590] = 4590, + [4587] = 4388, + [4588] = 4588, + [4589] = 4133, + [4590] = 4394, [4591] = 4591, - [4592] = 302, + [4592] = 4592, [4593] = 4593, [4594] = 4594, [4595] = 4595, - [4596] = 4416, - [4597] = 4404, - [4598] = 4404, - [4599] = 4416, + [4596] = 4596, + [4597] = 4597, + [4598] = 4598, + [4599] = 4532, [4600] = 4600, [4601] = 4601, [4602] = 4602, - [4603] = 4441, + [4603] = 311, [4604] = 4604, - [4605] = 4414, - [4606] = 4133, + [4605] = 4605, + [4606] = 4606, [4607] = 4607, - [4608] = 4405, - [4609] = 4416, - [4610] = 4414, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, [4611] = 4611, - [4612] = 4391, - [4613] = 4613, - [4614] = 4614, - [4615] = 4392, - [4616] = 4616, - [4617] = 4617, + [4612] = 4612, + [4613] = 4391, + [4614] = 4417, + [4615] = 4615, + [4616] = 4422, + [4617] = 4405, [4618] = 4618, [4619] = 4619, - [4620] = 4620, - [4621] = 4444, - [4622] = 4622, - [4623] = 4436, - [4624] = 4441, + [4620] = 4438, + [4621] = 4621, + [4622] = 4452, + [4623] = 4623, + [4624] = 4624, [4625] = 4625, - [4626] = 4404, - [4627] = 4627, + [4626] = 4626, + [4627] = 4438, [4628] = 4628, - [4629] = 311, + [4629] = 4452, [4630] = 4630, - [4631] = 4631, - [4632] = 4405, + [4631] = 4422, + [4632] = 4632, [4633] = 4633, - [4634] = 4577, + [4634] = 4634, [4635] = 4635, - [4636] = 4410, + [4636] = 4636, [4637] = 4637, - [4638] = 4416, - [4639] = 4388, - [4640] = 4414, - [4641] = 4392, + [4638] = 4638, + [4639] = 4438, + [4640] = 4640, + [4641] = 4641, [4642] = 4642, - [4643] = 4643, - [4644] = 4644, - [4645] = 4645, + [4643] = 4457, + [4644] = 4624, + [4645] = 345, [4646] = 4646, - [4647] = 4449, - [4648] = 4648, + [4647] = 4647, + [4648] = 312, [4649] = 4649, - [4650] = 4444, - [4651] = 4441, - [4652] = 4388, - [4653] = 334, - [4654] = 4155, + [4650] = 4650, + [4651] = 4651, + [4652] = 4308, + [4653] = 4653, + [4654] = 4654, [4655] = 4655, - [4656] = 4478, + [4656] = 4656, [4657] = 4657, - [4658] = 4655, + [4658] = 4658, [4659] = 4659, [4660] = 4660, - [4661] = 4477, + [4661] = 313, [4662] = 4662, [4663] = 4663, [4664] = 4664, - [4665] = 4665, + [4665] = 4657, [4666] = 4666, [4667] = 4667, [4668] = 4668, - [4669] = 4669, + [4669] = 4663, [4670] = 4670, [4671] = 4663, [4672] = 4672, - [4673] = 4673, - [4674] = 4674, - [4675] = 4150, - [4676] = 4670, - [4677] = 4568, - [4678] = 1987, - [4679] = 4662, + [4673] = 4138, + [4674] = 1950, + [4675] = 4675, + [4676] = 4662, + [4677] = 4660, + [4678] = 4678, + [4679] = 4679, [4680] = 4680, - [4681] = 4655, - [4682] = 4455, - [4683] = 4664, - [4684] = 4666, - [4685] = 4465, + [4681] = 4681, + [4682] = 4682, + [4683] = 921, + [4684] = 4658, + [4685] = 4685, [4686] = 4686, [4687] = 4687, - [4688] = 4672, - [4689] = 4689, - [4690] = 4117, - [4691] = 4691, - [4692] = 4456, - [4693] = 4662, - [4694] = 4663, - [4695] = 4695, - [4696] = 4696, - [4697] = 4697, - [4698] = 4698, - [4699] = 4667, - [4700] = 4667, - [4701] = 4662, - [4702] = 4663, + [4688] = 4688, + [4689] = 4662, + [4690] = 4690, + [4691] = 4672, + [4692] = 4607, + [4693] = 4693, + [4694] = 4694, + [4695] = 4694, + [4696] = 4358, + [4697] = 4670, + [4698] = 4363, + [4699] = 4699, + [4700] = 4700, + [4701] = 4701, + [4702] = 4694, [4703] = 4703, - [4704] = 4556, - [4705] = 4567, - [4706] = 4558, + [4704] = 4704, + [4705] = 4662, + [4706] = 4666, [4707] = 4707, - [4708] = 4593, - [4709] = 4594, - [4710] = 4480, - [4711] = 4711, - [4712] = 4595, - [4713] = 4713, - [4714] = 4668, - [4715] = 4655, - [4716] = 4457, - [4717] = 4717, - [4718] = 4668, - [4719] = 4555, - [4720] = 4357, - [4721] = 4721, - [4722] = 4722, + [4708] = 4584, + [4709] = 4686, + [4710] = 4668, + [4711] = 4688, + [4712] = 4688, + [4713] = 4380, + [4714] = 4714, + [4715] = 4694, + [4716] = 4662, + [4717] = 4668, + [4718] = 4718, + [4719] = 4719, + [4720] = 4720, + [4721] = 4626, + [4722] = 4667, [4723] = 4723, - [4724] = 4703, - [4725] = 4601, - [4726] = 4659, - [4727] = 4484, - [4728] = 4672, - [4729] = 4586, - [4730] = 4723, - [4731] = 4691, - [4732] = 4722, - [4733] = 4733, - [4734] = 4734, - [4735] = 4734, - [4736] = 4663, - [4737] = 4660, - [4738] = 4662, - [4739] = 4600, - [4740] = 4740, + [4724] = 4663, + [4725] = 4700, + [4726] = 4667, + [4727] = 4666, + [4728] = 4657, + [4729] = 4530, + [4730] = 4663, + [4731] = 4731, + [4732] = 4732, + [4733] = 4694, + [4734] = 4694, + [4735] = 4659, + [4736] = 4660, + [4737] = 4657, + [4738] = 4449, + [4739] = 4739, + [4740] = 4529, [4741] = 4741, - [4742] = 4666, - [4743] = 4584, - [4744] = 4580, - [4745] = 4668, - [4746] = 4673, - [4747] = 4747, - [4748] = 4664, - [4749] = 4520, - [4750] = 4668, - [4751] = 4672, - [4752] = 4667, - [4753] = 308, - [4754] = 4664, - [4755] = 4655, - [4756] = 4415, - [4757] = 4757, - [4758] = 4758, - [4759] = 4723, - [4760] = 4672, - [4761] = 4672, - [4762] = 4703, - [4763] = 4655, - [4764] = 4733, - [4765] = 4734, - [4766] = 4655, - [4767] = 4667, - [4768] = 4669, - [4769] = 4666, - [4770] = 4722, - [4771] = 4668, - [4772] = 935, - [4773] = 4689, - [4774] = 4774, - [4775] = 316, - [4776] = 4776, - [4777] = 4777, - [4778] = 4778, - [4779] = 4779, - [4780] = 4780, - [4781] = 4668, - [4782] = 4782, - [4783] = 4680, - [4784] = 4733, - [4785] = 4722, - [4786] = 4703, - [4787] = 4723, - [4788] = 4581, - [4789] = 4703, - [4790] = 4790, - [4791] = 4722, - [4792] = 4672, - [4793] = 4663, - [4794] = 4662, - [4795] = 4655, - [4796] = 4664, - [4797] = 4733, - [4798] = 4734, - [4799] = 4670, - [4800] = 4666, - [4801] = 4722, - [4802] = 4667, - [4803] = 4687, - [4804] = 4703, - [4805] = 4667, - [4806] = 4488, - [4807] = 4807, - [4808] = 4723, - [4809] = 4733, - [4810] = 4672, - [4811] = 4733, - [4812] = 4812, - [4813] = 4813, - [4814] = 4667, - [4815] = 4670, - [4816] = 4672, - [4817] = 4119, - [4818] = 4734, - [4819] = 4819, - [4820] = 4820, - [4821] = 4740, - [4822] = 4721, - [4823] = 4823, - [4824] = 4713, - [4825] = 4667, - [4826] = 4723, - [4827] = 4655, - [4828] = 4674, - [4829] = 4711, - [4830] = 4698, - [4831] = 4680, - [4832] = 4662, - [4833] = 4668, - [4834] = 4834, - [4835] = 4665, - [4836] = 4663, - [4837] = 4474, - [4838] = 4369, - [4839] = 4839, - [4840] = 4680, - [4841] = 4680, - [4842] = 4670, - [4843] = 4680, - [4844] = 4820, - [4845] = 4686, - [4846] = 4668, - [4847] = 4356, - [4848] = 4848, + [4742] = 4694, + [4743] = 4743, + [4744] = 4744, + [4745] = 4666, + [4746] = 4623, + [4747] = 4678, + [4748] = 4655, + [4749] = 4666, + [4750] = 4612, + [4751] = 4654, + [4752] = 4657, + [4753] = 4753, + [4754] = 4754, + [4755] = 4668, + [4756] = 4659, + [4757] = 4686, + [4758] = 4503, + [4759] = 4700, + [4760] = 4667, + [4761] = 4761, + [4762] = 4523, + [4763] = 4670, + [4764] = 4744, + [4765] = 4653, + [4766] = 4766, + [4767] = 4754, + [4768] = 4688, + [4769] = 4694, + [4770] = 4659, + [4771] = 4720, + [4772] = 4595, + [4773] = 4640, + [4774] = 4679, + [4775] = 4775, + [4776] = 4649, + [4777] = 4741, + [4778] = 4594, + [4779] = 4660, + [4780] = 4662, + [4781] = 4723, + [4782] = 4675, + [4783] = 4731, + [4784] = 4101, + [4785] = 4597, + [4786] = 4686, + [4787] = 4787, + [4788] = 4657, + [4789] = 4666, + [4790] = 4668, + [4791] = 4670, + [4792] = 4686, + [4793] = 4700, + [4794] = 4667, + [4795] = 4663, + [4796] = 4670, + [4797] = 4670, + [4798] = 4798, + [4799] = 4659, + [4800] = 4800, + [4801] = 4801, + [4802] = 4679, + [4803] = 4686, + [4804] = 4804, + [4805] = 4775, + [4806] = 4657, + [4807] = 4659, + [4808] = 4700, + [4809] = 4666, + [4810] = 4679, + [4811] = 4634, + [4812] = 4142, + [4813] = 4668, + [4814] = 4694, + [4815] = 4815, + [4816] = 4547, + [4817] = 4600, + [4818] = 4707, + [4819] = 4660, + [4820] = 4601, + [4821] = 4680, + [4822] = 4753, + [4823] = 4663, + [4824] = 4743, + [4825] = 4825, + [4826] = 4826, + [4827] = 4619, + [4828] = 4700, + [4829] = 4618, + [4830] = 4662, + [4831] = 4688, + [4832] = 4675, + [4833] = 4679, + [4834] = 4662, + [4835] = 321, + [4836] = 4699, + [4837] = 4668, + [4838] = 4668, + [4839] = 4663, + [4840] = 4637, + [4841] = 4668, + [4842] = 4675, + [4843] = 4675, + [4844] = 4675, + [4845] = 4663, + [4846] = 4628, + [4847] = 4662, + [4848] = 4761, [4849] = 4849, - [4850] = 333, - [4851] = 336, + [4850] = 4850, + [4851] = 4851, [4852] = 4852, - [4853] = 4852, - [4854] = 4854, - [4855] = 4855, + [4853] = 4853, + [4854] = 328, + [4855] = 329, [4856] = 4856, [4857] = 4857, [4858] = 4858, [4859] = 4859, [4860] = 4860, [4861] = 4861, - [4862] = 4852, + [4862] = 4859, [4863] = 4863, - [4864] = 4864, - [4865] = 2416, - [4866] = 2425, - [4867] = 4867, - [4868] = 4868, + [4864] = 4859, + [4865] = 4865, + [4866] = 4866, + [4867] = 2383, + [4868] = 2385, [4869] = 4869, [4870] = 4870, - [4871] = 1141, + [4871] = 4871, [4872] = 4872, - [4873] = 1060, - [4874] = 4874, - [4875] = 296, - [4876] = 1168, - [4877] = 1160, - [4878] = 4878, - [4879] = 4879, - [4880] = 295, - [4881] = 988, - [4882] = 1095, - [4883] = 1091, - [4884] = 1089, - [4885] = 4885, - [4886] = 1082, + [4873] = 4873, + [4874] = 1022, + [4875] = 1036, + [4876] = 4876, + [4877] = 304, + [4878] = 1044, + [4879] = 1045, + [4880] = 4880, + [4881] = 4881, + [4882] = 299, + [4883] = 1018, + [4884] = 1085, + [4885] = 1089, + [4886] = 1092, [4887] = 4887, - [4888] = 1064, - [4889] = 4852, - [4890] = 4631, - [4891] = 4891, - [4892] = 4892, + [4888] = 1094, + [4889] = 4889, + [4890] = 1109, + [4891] = 4859, + [4892] = 4446, [4893] = 4893, - [4894] = 1011, - [4895] = 1036, - [4896] = 4896, - [4897] = 4897, - [4898] = 1030, - [4899] = 1185, - [4900] = 1167, - [4901] = 1135, - [4902] = 4852, - [4903] = 1109, - [4904] = 4904, - [4905] = 1025, - [4906] = 1028, - [4907] = 1031, - [4908] = 1044, - [4909] = 1009, - [4910] = 1002, - [4911] = 4911, - [4912] = 4912, - [4913] = 1012, - [4914] = 4849, + [4894] = 4894, + [4895] = 4895, + [4896] = 1016, + [4897] = 1149, + [4898] = 4898, + [4899] = 4899, + [4900] = 1152, + [4901] = 1166, + [4902] = 1171, + [4903] = 1173, + [4904] = 4859, + [4905] = 1179, + [4906] = 4906, + [4907] = 1182, + [4908] = 1185, + [4909] = 1192, + [4910] = 4910, + [4911] = 1208, + [4912] = 1000, + [4913] = 999, + [4914] = 4914, [4915] = 4915, - [4916] = 4916, - [4917] = 1063, - [4918] = 1077, - [4919] = 1156, - [4920] = 1081, - [4921] = 4921, - [4922] = 1083, - [4923] = 1086, - [4924] = 1087, - [4925] = 1088, - [4926] = 1099, - [4927] = 1113, - [4928] = 1118, - [4929] = 1021, - [4930] = 1152, - [4931] = 1098, - [4932] = 1125, - [4933] = 987, - [4934] = 985, - [4935] = 1172, - [4936] = 1173, - [4937] = 4937, - [4938] = 4938, - [4939] = 1176, + [4916] = 961, + [4917] = 4917, + [4918] = 4918, + [4919] = 4919, + [4920] = 1205, + [4921] = 1143, + [4922] = 1169, + [4923] = 1147, + [4924] = 4924, + [4925] = 1145, + [4926] = 1034, + [4927] = 1129, + [4928] = 1126, + [4929] = 1119, + [4930] = 1113, + [4931] = 1110, + [4932] = 1107, + [4933] = 1099, + [4934] = 1095, + [4935] = 991, + [4936] = 992, + [4937] = 1180, + [4938] = 1079, + [4939] = 1078, [4940] = 4940, [4941] = 4941, - [4942] = 1177, - [4943] = 1178, - [4944] = 1180, - [4945] = 1181, - [4946] = 1191, - [4947] = 4947, - [4948] = 4948, - [4949] = 1206, - [4950] = 1208, + [4942] = 1077, + [4943] = 4943, + [4944] = 4944, + [4945] = 1073, + [4946] = 1072, + [4947] = 1071, + [4948] = 1063, + [4949] = 1062, + [4950] = 4950, [4951] = 4951, - [4952] = 4952, - [4953] = 1214, + [4952] = 1049, + [4953] = 1048, [4954] = 4954, [4955] = 4955, - [4956] = 1048, + [4956] = 1037, [4957] = 4957, [4958] = 4958, - [4959] = 1057, - [4960] = 1054, + [4959] = 1027, + [4960] = 4960, [4961] = 4961, - [4962] = 4962, - [4963] = 1023, + [4962] = 1120, + [4963] = 1146, [4964] = 4964, - [4965] = 1022, - [4966] = 4966, - [4967] = 974, - [4968] = 1097, + [4965] = 4965, + [4966] = 1161, + [4967] = 4967, + [4968] = 1138, [4969] = 4969, - [4970] = 4970, - [4971] = 4971, - [4972] = 4437, - [4973] = 4973, + [4970] = 980, + [4971] = 1199, + [4972] = 4972, + [4973] = 4579, [4974] = 4974, [4975] = 4975, - [4976] = 1101, - [4977] = 1216, + [4976] = 4976, + [4977] = 4977, [4978] = 4978, - [4979] = 1207, - [4980] = 4980, - [4981] = 4915, - [4982] = 4982, - [4983] = 4983, + [4979] = 1206, + [4980] = 1204, + [4981] = 4981, + [4982] = 1020, + [4983] = 4917, [4984] = 4984, - [4985] = 1179, - [4986] = 1166, - [4987] = 1161, - [4988] = 1204, - [4989] = 1105, - [4990] = 1128, - [4991] = 1174, - [4992] = 1120, - [4993] = 4993, - [4994] = 4994, - [4995] = 1205, - [4996] = 1043, + [4985] = 4985, + [4986] = 4986, + [4987] = 4987, + [4988] = 1203, + [4989] = 1195, + [4990] = 1183, + [4991] = 1042, + [4992] = 1118, + [4993] = 1117, + [4994] = 1088, + [4995] = 1084, + [4996] = 4996, [4997] = 4997, - [4998] = 4998, - [4999] = 4915, + [4998] = 1041, + [4999] = 1191, [5000] = 5000, [5001] = 5001, - [5002] = 5002, + [5002] = 4917, [5003] = 5003, [5004] = 5004, [5005] = 5005, @@ -9481,94 +9488,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5007] = 5007, [5008] = 5008, [5009] = 5009, - [5010] = 5005, + [5010] = 5010, [5011] = 5011, [5012] = 5012, - [5013] = 5013, + [5013] = 5007, [5014] = 5014, [5015] = 5015, - [5016] = 5015, + [5016] = 5016, [5017] = 5017, - [5018] = 5000, - [5019] = 5019, + [5018] = 5016, + [5019] = 4997, [5020] = 5020, [5021] = 5021, - [5022] = 5022, - [5023] = 5015, - [5024] = 4971, - [5025] = 5000, - [5026] = 4969, - [5027] = 5027, - [5028] = 4852, + [5022] = 5016, + [5023] = 5023, + [5024] = 5024, + [5025] = 4972, + [5026] = 5026, + [5027] = 4997, + [5028] = 4969, [5029] = 5029, - [5030] = 5030, + [5030] = 4859, [5031] = 5031, [5032] = 5032, - [5033] = 4971, - [5034] = 4969, - [5035] = 5035, - [5036] = 4954, + [5033] = 5033, + [5034] = 5034, + [5035] = 4972, + [5036] = 4969, [5037] = 5037, [5038] = 5038, - [5039] = 5032, - [5040] = 5031, - [5041] = 5009, - [5042] = 5008, - [5043] = 4964, - [5044] = 4957, - [5045] = 5045, - [5046] = 4849, - [5047] = 5047, + [5039] = 5039, + [5040] = 5040, + [5041] = 5034, + [5042] = 5032, + [5043] = 5012, + [5044] = 5011, + [5045] = 4965, + [5046] = 4958, + [5047] = 4915, [5048] = 5048, [5049] = 5049, [5050] = 5050, [5051] = 5051, - [5052] = 4983, - [5053] = 5053, - [5054] = 5005, - [5055] = 5037, - [5056] = 5038, - [5057] = 5032, - [5058] = 5031, - [5059] = 5059, - [5060] = 5009, - [5061] = 5008, - [5062] = 4964, - [5063] = 4957, - [5064] = 5064, - [5065] = 4867, - [5066] = 4849, - [5067] = 5067, + [5052] = 4951, + [5053] = 5007, + [5054] = 5038, + [5055] = 4986, + [5056] = 5056, + [5057] = 5057, + [5058] = 5039, + [5059] = 5034, + [5060] = 5032, + [5061] = 5061, + [5062] = 5012, + [5063] = 5011, + [5064] = 4965, + [5065] = 4958, + [5066] = 5066, + [5067] = 4915, [5068] = 5068, [5069] = 5069, - [5070] = 5070, + [5070] = 4861, [5071] = 5071, [5072] = 5072, - [5073] = 5005, + [5073] = 5073, [5074] = 5074, - [5075] = 4857, - [5076] = 5037, + [5075] = 5075, + [5076] = 5007, [5077] = 5038, - [5078] = 5032, - [5079] = 5031, - [5080] = 5080, - [5081] = 4954, - [5082] = 5009, - [5083] = 5027, - [5084] = 5084, - [5085] = 5008, - [5086] = 5038, - [5087] = 4964, - [5088] = 5015, - [5089] = 4957, - [5090] = 5090, - [5091] = 5091, + [5078] = 4853, + [5079] = 5039, + [5080] = 5039, + [5081] = 5034, + [5082] = 5032, + [5083] = 4856, + [5084] = 5012, + [5085] = 5011, + [5086] = 5029, + [5087] = 5087, + [5088] = 4951, + [5089] = 4965, + [5090] = 4958, + [5091] = 5016, [5092] = 5092, - [5093] = 4859, - [5094] = 4849, + [5093] = 5093, + [5094] = 5094, [5095] = 5095, - [5096] = 5096, - [5097] = 5097, + [5096] = 4915, + [5097] = 4858, [5098] = 5098, [5099] = 5099, [5100] = 5100, @@ -9583,29 +9590,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5109] = 5109, [5110] = 5110, [5111] = 5111, - [5112] = 5000, + [5112] = 5112, [5113] = 5113, [5114] = 5114, - [5115] = 4867, + [5115] = 4997, [5116] = 5116, - [5117] = 5037, - [5118] = 5074, - [5119] = 4857, - [5120] = 5120, - [5121] = 5037, - [5122] = 5038, - [5123] = 5123, - [5124] = 5032, - [5125] = 5031, - [5126] = 5126, + [5117] = 4861, + [5118] = 5118, + [5119] = 5038, + [5120] = 4853, + [5121] = 4856, + [5122] = 5122, + [5123] = 5038, + [5124] = 5039, + [5125] = 5034, + [5126] = 5032, [5127] = 5127, - [5128] = 5009, - [5129] = 5008, - [5130] = 4964, - [5131] = 4957, - [5132] = 5132, - [5133] = 4849, - [5134] = 5134, + [5128] = 5128, + [5129] = 5012, + [5130] = 5011, + [5131] = 4965, + [5132] = 4958, + [5133] = 5133, + [5134] = 4915, [5135] = 5135, [5136] = 5136, [5137] = 5137, @@ -9614,12 +9621,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5140] = 5140, [5141] = 5141, [5142] = 5142, - [5143] = 4971, + [5143] = 5143, [5144] = 5144, - [5145] = 4969, - [5146] = 5146, + [5145] = 5145, + [5146] = 4972, [5147] = 5147, - [5148] = 5148, + [5148] = 4969, [5149] = 5149, [5150] = 5150, [5151] = 5151, @@ -9633,78 +9640,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5159] = 5159, [5160] = 5160, [5161] = 5161, - [5162] = 4915, + [5162] = 4917, [5163] = 5163, [5164] = 5164, [5165] = 5165, - [5166] = 4954, + [5166] = 5166, [5167] = 5167, [5168] = 5168, - [5169] = 4915, + [5169] = 4951, [5170] = 5170, - [5171] = 5153, - [5172] = 5172, + [5171] = 5171, + [5172] = 5163, [5173] = 5173, [5174] = 5174, [5175] = 5175, [5176] = 5176, - [5177] = 5164, + [5177] = 4851, [5178] = 5178, - [5179] = 5123, + [5179] = 5166, [5180] = 5180, - [5181] = 5120, - [5182] = 5037, + [5181] = 5139, + [5182] = 5122, [5183] = 5038, [5184] = 5184, - [5185] = 5185, - [5186] = 5050, - [5187] = 5187, - [5188] = 5097, - [5189] = 5099, - [5190] = 5045, - [5191] = 5191, - [5192] = 5035, - [5193] = 5032, - [5194] = 5031, - [5195] = 5195, - [5196] = 5196, + [5185] = 5039, + [5186] = 5186, + [5187] = 5049, + [5188] = 5048, + [5189] = 5189, + [5190] = 5190, + [5191] = 5099, + [5192] = 5101, + [5193] = 5037, + [5194] = 5194, + [5195] = 5034, + [5196] = 5032, [5197] = 5197, [5198] = 5198, [5199] = 5199, - [5200] = 5200, + [5200] = 4917, [5201] = 5201, - [5202] = 4867, - [5203] = 5009, + [5202] = 5202, + [5203] = 5012, [5204] = 5204, - [5205] = 5205, - [5206] = 5008, - [5207] = 5207, + [5205] = 4861, + [5206] = 5206, + [5207] = 5011, [5208] = 5208, - [5209] = 4394, + [5209] = 5209, [5210] = 5210, - [5211] = 4978, - [5212] = 5212, + [5211] = 4976, + [5212] = 4541, [5213] = 5213, [5214] = 5214, - [5215] = 5074, + [5215] = 5215, [5216] = 5216, - [5217] = 4964, - [5218] = 4957, - [5219] = 4857, - [5220] = 5220, - [5221] = 4859, - [5222] = 5222, - [5223] = 5223, + [5217] = 5217, + [5218] = 4853, + [5219] = 4965, + [5220] = 4958, + [5221] = 5221, + [5222] = 4856, + [5223] = 4858, [5224] = 5224, [5225] = 5225, - [5226] = 5175, - [5227] = 5074, - [5228] = 5228, + [5226] = 5226, + [5227] = 5227, + [5228] = 4915, [5229] = 5229, - [5230] = 5141, + [5230] = 5230, [5231] = 5231, [5232] = 5232, - [5233] = 5233, + [5233] = 5143, [5234] = 5234, [5235] = 5235, [5236] = 5236, @@ -9717,126 +9724,126 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5243] = 5243, [5244] = 5244, [5245] = 5245, - [5246] = 5158, + [5246] = 5246, [5247] = 5247, [5248] = 5248, - [5249] = 5249, + [5249] = 5160, [5250] = 5250, - [5251] = 5005, - [5252] = 5252, + [5251] = 5251, + [5252] = 5007, [5253] = 5253, [5254] = 5254, [5255] = 5255, [5256] = 5256, - [5257] = 5015, - [5258] = 5258, - [5259] = 5000, + [5257] = 5257, + [5258] = 5016, + [5259] = 5259, [5260] = 5260, [5261] = 5261, - [5262] = 5262, + [5262] = 4997, [5263] = 5263, [5264] = 5264, - [5265] = 5172, - [5266] = 4971, - [5267] = 4819, - [5268] = 5268, + [5265] = 5265, + [5266] = 5266, + [5267] = 4972, + [5268] = 5174, [5269] = 5269, - [5270] = 5270, - [5271] = 4969, + [5270] = 4719, + [5271] = 5271, [5272] = 5272, [5273] = 5273, - [5274] = 5274, + [5274] = 4969, [5275] = 5275, [5276] = 5276, [5277] = 5277, - [5278] = 4954, - [5279] = 4859, - [5280] = 4823, - [5281] = 4834, - [5282] = 5282, - [5283] = 5283, - [5284] = 5284, + [5278] = 5278, + [5279] = 5279, + [5280] = 5280, + [5281] = 4951, + [5282] = 4858, + [5283] = 4718, + [5284] = 4714, [5285] = 5285, - [5286] = 5269, + [5286] = 5286, [5287] = 5287, [5288] = 5288, - [5289] = 5289, + [5289] = 5272, [5290] = 5290, [5291] = 5291, [5292] = 5292, [5293] = 5293, - [5294] = 5147, + [5294] = 5294, [5295] = 5295, [5296] = 5296, - [5297] = 4858, + [5297] = 5156, [5298] = 5298, [5299] = 5299, - [5300] = 5300, - [5301] = 5173, + [5300] = 4857, + [5301] = 5301, [5302] = 5302, [5303] = 5303, [5304] = 5304, - [5305] = 4867, + [5305] = 5175, [5306] = 5306, [5307] = 5307, - [5308] = 5074, - [5309] = 5309, - [5310] = 4857, + [5308] = 5308, + [5309] = 4861, + [5310] = 5310, [5311] = 5311, [5312] = 5312, - [5313] = 4386, - [5314] = 4522, - [5315] = 5290, - [5316] = 5316, - [5317] = 5317, - [5318] = 5318, + [5313] = 4853, + [5314] = 5314, + [5315] = 5315, + [5316] = 4494, + [5317] = 4495, + [5318] = 5293, [5319] = 5319, [5320] = 5320, - [5321] = 4717, + [5321] = 5321, [5322] = 5322, [5323] = 5323, - [5324] = 5324, - [5325] = 5325, + [5324] = 4682, + [5325] = 4856, [5326] = 5326, [5327] = 5327, - [5328] = 4859, + [5328] = 5328, [5329] = 5329, [5330] = 5330, [5331] = 5331, [5332] = 5332, - [5333] = 5333, + [5333] = 4858, [5334] = 5334, [5335] = 5335, - [5336] = 4859, + [5336] = 5336, [5337] = 5337, [5338] = 5338, - [5339] = 994, - [5340] = 4857, - [5341] = 5341, - [5342] = 983, - [5343] = 982, - [5344] = 5074, - [5345] = 981, - [5346] = 5346, - [5347] = 5347, - [5348] = 4867, - [5349] = 5349, - [5350] = 5350, + [5339] = 4858, + [5340] = 5340, + [5341] = 4856, + [5342] = 5342, + [5343] = 979, + [5344] = 5344, + [5345] = 4853, + [5346] = 996, + [5347] = 997, + [5348] = 5348, + [5349] = 1011, + [5350] = 4861, [5351] = 5351, [5352] = 5352, - [5353] = 4954, - [5354] = 5354, + [5353] = 5353, + [5354] = 4951, [5355] = 4969, - [5356] = 5356, + [5356] = 4972, [5357] = 5357, - [5358] = 4971, + [5358] = 5358, [5359] = 5359, - [5360] = 5000, - [5361] = 5361, + [5360] = 5360, + [5361] = 4997, [5362] = 5362, [5363] = 5363, [5364] = 5364, - [5365] = 5005, + [5365] = 5007, [5366] = 5366, [5367] = 5367, [5368] = 5368, @@ -9856,251 +9863,251 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5382] = 5382, [5383] = 5383, [5384] = 5384, - [5385] = 5379, + [5385] = 5385, [5386] = 5386, - [5387] = 5380, - [5388] = 5380, - [5389] = 5379, - [5390] = 5384, - [5391] = 5383, - [5392] = 5381, - [5393] = 5377, + [5387] = 5387, + [5388] = 5383, + [5389] = 5384, + [5390] = 5383, + [5391] = 5384, + [5392] = 5382, + [5393] = 5380, [5394] = 5394, - [5395] = 5375, - [5396] = 5378, - [5397] = 5382, - [5398] = 5398, - [5399] = 5399, + [5395] = 5378, + [5396] = 5377, + [5397] = 5379, + [5398] = 5385, + [5399] = 5386, [5400] = 5400, - [5401] = 5386, - [5402] = 5379, - [5403] = 5380, - [5404] = 5404, - [5405] = 970, + [5401] = 5401, + [5402] = 5402, + [5403] = 5383, + [5404] = 5384, + [5405] = 5387, [5406] = 5406, - [5407] = 5381, - [5408] = 5377, - [5409] = 5379, - [5410] = 5380, - [5411] = 5381, - [5412] = 5377, - [5413] = 5394, - [5414] = 5379, - [5415] = 5380, - [5416] = 5381, - [5417] = 5417, - [5418] = 5377, - [5419] = 5379, - [5420] = 5380, - [5421] = 5381, - [5422] = 5377, - [5423] = 5423, - [5424] = 5424, + [5407] = 5378, + [5408] = 5408, + [5409] = 5377, + [5410] = 5383, + [5411] = 5384, + [5412] = 5378, + [5413] = 5377, + [5414] = 5394, + [5415] = 5383, + [5416] = 5416, + [5417] = 5384, + [5418] = 5378, + [5419] = 5377, + [5420] = 5383, + [5421] = 5384, + [5422] = 5378, + [5423] = 5377, + [5424] = 5383, [5425] = 5384, - [5426] = 5383, - [5427] = 5379, - [5428] = 5380, - [5429] = 5381, - [5430] = 5377, - [5431] = 5431, - [5432] = 5379, - [5433] = 5380, - [5434] = 5381, - [5435] = 5435, - [5436] = 5377, + [5426] = 951, + [5427] = 5427, + [5428] = 5428, + [5429] = 5382, + [5430] = 5380, + [5431] = 5378, + [5432] = 5377, + [5433] = 5433, + [5434] = 5383, + [5435] = 5384, + [5436] = 5378, [5437] = 5437, - [5438] = 5382, - [5439] = 5378, - [5440] = 5381, - [5441] = 5377, + [5438] = 5377, + [5439] = 5439, + [5440] = 5386, + [5441] = 5385, [5442] = 5442, [5443] = 5443, - [5444] = 5444, - [5445] = 5445, + [5444] = 5378, + [5445] = 5377, [5446] = 5446, [5447] = 5447, - [5448] = 5376, + [5448] = 5448, [5449] = 5449, - [5450] = 5450, - [5451] = 5394, + [5450] = 5381, + [5451] = 5451, [5452] = 5452, - [5453] = 5453, - [5454] = 5406, - [5455] = 5375, - [5456] = 999, + [5453] = 5394, + [5454] = 5454, + [5455] = 5379, + [5456] = 5408, [5457] = 5457, - [5458] = 5458, + [5458] = 982, [5459] = 5459, [5460] = 5460, [5461] = 5461, [5462] = 5462, - [5463] = 5417, + [5463] = 5463, [5464] = 5464, - [5465] = 5465, - [5466] = 5375, - [5467] = 5447, - [5468] = 5377, - [5469] = 5381, - [5470] = 5470, - [5471] = 5383, - [5472] = 5384, - [5473] = 5424, - [5474] = 5423, - [5475] = 5452, - [5476] = 2078, - [5477] = 5386, - [5478] = 5478, - [5479] = 5376, - [5480] = 5453, - [5481] = 5406, - [5482] = 5380, - [5483] = 5379, - [5484] = 5484, - [5485] = 5485, + [5465] = 5416, + [5466] = 5466, + [5467] = 5377, + [5468] = 5378, + [5469] = 5469, + [5470] = 5379, + [5471] = 5449, + [5472] = 5380, + [5473] = 5382, + [5474] = 5428, + [5475] = 5427, + [5476] = 5476, + [5477] = 5457, + [5478] = 5387, + [5479] = 2002, + [5480] = 5480, + [5481] = 5454, + [5482] = 5384, + [5483] = 5381, + [5484] = 5383, + [5485] = 5408, [5486] = 5486, [5487] = 5487, - [5488] = 5445, - [5489] = 5444, - [5490] = 5443, - [5491] = 5491, - [5492] = 5447, - [5493] = 5378, - [5494] = 5382, - [5495] = 5394, + [5488] = 5488, + [5489] = 5489, + [5490] = 5490, + [5491] = 5394, + [5492] = 5448, + [5493] = 5446, + [5494] = 5443, + [5495] = 5449, [5496] = 5496, - [5497] = 5431, - [5498] = 5452, - [5499] = 5435, - [5500] = 5500, - [5501] = 5501, + [5497] = 5385, + [5498] = 5386, + [5499] = 5433, + [5500] = 5457, + [5501] = 5437, [5502] = 5502, - [5503] = 5447, - [5504] = 5406, - [5505] = 5452, - [5506] = 5382, - [5507] = 5378, - [5508] = 5435, - [5509] = 5417, - [5510] = 5443, - [5511] = 5444, - [5512] = 5445, - [5513] = 5513, - [5514] = 5376, - [5515] = 5431, - [5516] = 5417, - [5517] = 4998, - [5518] = 5518, - [5519] = 2027, - [5520] = 5485, - [5521] = 5452, - [5522] = 5484, - [5523] = 5523, - [5524] = 5524, - [5525] = 5431, - [5526] = 5431, - [5527] = 5435, - [5528] = 5528, - [5529] = 5529, + [5503] = 5503, + [5504] = 5408, + [5505] = 5505, + [5506] = 5449, + [5507] = 5457, + [5508] = 5386, + [5509] = 5385, + [5510] = 5416, + [5511] = 5443, + [5512] = 5437, + [5513] = 5446, + [5514] = 5448, + [5515] = 5515, + [5516] = 5381, + [5517] = 5416, + [5518] = 5001, + [5519] = 5433, + [5520] = 5520, + [5521] = 2017, + [5522] = 5487, + [5523] = 5457, + [5524] = 5486, + [5525] = 5525, + [5526] = 5526, + [5527] = 5433, + [5528] = 5437, + [5529] = 5433, [5530] = 5530, - [5531] = 5435, - [5532] = 5375, - [5533] = 5533, - [5534] = 5382, - [5535] = 5378, + [5531] = 5531, + [5532] = 5532, + [5533] = 5437, + [5534] = 5379, + [5535] = 5535, [5536] = 5536, - [5537] = 5443, - [5538] = 5538, - [5539] = 5444, - [5540] = 5445, - [5541] = 5541, - [5542] = 5376, - [5543] = 5382, - [5544] = 5378, - [5545] = 5443, - [5546] = 5375, - [5547] = 5444, - [5548] = 5445, - [5549] = 5377, - [5550] = 5381, - [5551] = 5551, - [5552] = 5552, + [5537] = 5537, + [5538] = 5386, + [5539] = 5385, + [5540] = 5443, + [5541] = 5446, + [5542] = 5386, + [5543] = 5448, + [5544] = 5385, + [5545] = 5381, + [5546] = 5546, + [5547] = 5379, + [5548] = 5443, + [5549] = 5446, + [5550] = 5448, + [5551] = 5377, + [5552] = 5378, [5553] = 5553, - [5554] = 5417, - [5555] = 5377, - [5556] = 5381, - [5557] = 5447, - [5558] = 5558, - [5559] = 5383, - [5560] = 5384, - [5561] = 5376, - [5562] = 5424, - [5563] = 5423, - [5564] = 5398, - [5565] = 5383, - [5566] = 5384, - [5567] = 5386, - [5568] = 5424, - [5569] = 5423, - [5570] = 5002, - [5571] = 5524, - [5572] = 2083, - [5573] = 5573, - [5574] = 5386, - [5575] = 5380, - [5576] = 5379, - [5577] = 5375, - [5578] = 5377, - [5579] = 5579, - [5580] = 5381, - [5581] = 5380, - [5582] = 5379, - [5583] = 5551, - [5584] = 5484, - [5585] = 5383, - [5586] = 5384, - [5587] = 302, - [5588] = 5424, - [5589] = 322, - [5590] = 303, - [5591] = 5406, - [5592] = 5423, - [5593] = 5484, - [5594] = 5446, - [5595] = 1008, - [5596] = 973, - [5597] = 5484, - [5598] = 5386, - [5599] = 2057, - [5600] = 5394, - [5601] = 5579, - [5602] = 4631, - [5603] = 5380, - [5604] = 5379, - [5605] = 5605, - [5606] = 5606, + [5554] = 5377, + [5555] = 5555, + [5556] = 5378, + [5557] = 5557, + [5558] = 5416, + [5559] = 5449, + [5560] = 5560, + [5561] = 5380, + [5562] = 5382, + [5563] = 5428, + [5564] = 5381, + [5565] = 5427, + [5566] = 5380, + [5567] = 5382, + [5568] = 5428, + [5569] = 5387, + [5570] = 5427, + [5571] = 5400, + [5572] = 5005, + [5573] = 5525, + [5574] = 2011, + [5575] = 5387, + [5576] = 5384, + [5577] = 5383, + [5578] = 5578, + [5579] = 5379, + [5580] = 5580, + [5581] = 5377, + [5582] = 5378, + [5583] = 5384, + [5584] = 5383, + [5585] = 5553, + [5586] = 5486, + [5587] = 5380, + [5588] = 5382, + [5589] = 302, + [5590] = 5428, + [5591] = 326, + [5592] = 325, + [5593] = 987, + [5594] = 5427, + [5595] = 5408, + [5596] = 5486, + [5597] = 976, + [5598] = 5447, + [5599] = 5486, + [5600] = 5387, + [5601] = 2018, + [5602] = 5394, + [5603] = 5580, + [5604] = 4446, + [5605] = 5384, + [5606] = 5383, [5607] = 5607, [5608] = 5608, [5609] = 5609, [5610] = 5610, - [5611] = 2095, + [5611] = 5611, [5612] = 5612, - [5613] = 5613, - [5614] = 2097, + [5613] = 2094, + [5614] = 5614, [5615] = 5615, - [5616] = 2098, - [5617] = 2109, + [5616] = 2095, + [5617] = 2033, [5618] = 5618, [5619] = 5619, - [5620] = 5620, - [5621] = 2111, - [5622] = 2113, - [5623] = 2115, - [5624] = 2116, - [5625] = 5620, - [5626] = 5626, - [5627] = 2120, - [5628] = 5628, - [5629] = 5629, + [5620] = 2047, + [5621] = 5621, + [5622] = 5622, + [5623] = 5623, + [5624] = 2046, + [5625] = 2045, + [5626] = 2044, + [5627] = 2043, + [5628] = 5623, + [5629] = 2060, [5630] = 5630, [5631] = 5631, [5632] = 5632, @@ -10108,33 +10115,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5634] = 5634, [5635] = 5635, [5636] = 5636, - [5637] = 5620, - [5638] = 2119, - [5639] = 5639, - [5640] = 2398, - [5641] = 2436, - [5642] = 5636, - [5643] = 5608, - [5644] = 5636, - [5645] = 5620, - [5646] = 4520, - [5647] = 5647, - [5648] = 5609, - [5649] = 5610, - [5650] = 5650, - [5651] = 5651, + [5637] = 5637, + [5638] = 5623, + [5639] = 2061, + [5640] = 5640, + [5641] = 2440, + [5642] = 5637, + [5643] = 5643, + [5644] = 2431, + [5645] = 5609, + [5646] = 5637, + [5647] = 5623, + [5648] = 4607, + [5649] = 5649, + [5650] = 5611, + [5651] = 5612, [5652] = 5652, [5653] = 5653, [5654] = 5654, - [5655] = 5655, + [5655] = 4446, [5656] = 5656, [5657] = 5657, - [5658] = 4631, - [5659] = 5659, + [5658] = 5658, + [5659] = 5637, [5660] = 5660, - [5661] = 5636, - [5662] = 5620, - [5663] = 5663, + [5661] = 5661, + [5662] = 5607, + [5663] = 5623, [5664] = 5664, [5665] = 5665, [5666] = 5666, @@ -10171,30 +10178,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5697] = 5697, [5698] = 5698, [5699] = 5699, - [5700] = 5608, + [5700] = 5700, [5701] = 5701, - [5702] = 5628, + [5702] = 5702, [5703] = 5703, [5704] = 5609, - [5705] = 5610, - [5706] = 5633, - [5707] = 5707, - [5708] = 5708, - [5709] = 5709, + [5705] = 5705, + [5706] = 5631, + [5707] = 5632, + [5708] = 5611, + [5709] = 5612, [5710] = 5710, - [5711] = 5650, - [5712] = 5712, + [5711] = 5711, + [5712] = 5652, [5713] = 5713, [5714] = 5714, [5715] = 5715, - [5716] = 5634, + [5716] = 5716, [5717] = 5717, - [5718] = 5718, + [5718] = 5640, [5719] = 5719, [5720] = 5720, - [5721] = 5647, + [5721] = 5721, [5722] = 5722, - [5723] = 5723, + [5723] = 5649, [5724] = 5724, [5725] = 5725, [5726] = 5726, @@ -10204,25 +10211,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5730] = 5730, [5731] = 5731, [5732] = 5732, - [5733] = 5653, + [5733] = 5733, [5734] = 5734, [5735] = 5735, [5736] = 5736, [5737] = 5737, - [5738] = 5738, + [5738] = 5653, [5739] = 5739, - [5740] = 5654, - [5741] = 5655, - [5742] = 5660, + [5740] = 5740, + [5741] = 5654, + [5742] = 5658, [5743] = 5743, [5744] = 5744, [5745] = 5745, [5746] = 5746, - [5747] = 5613, + [5747] = 5664, [5748] = 5748, [5749] = 5749, [5750] = 5750, - [5751] = 5751, + [5751] = 5615, [5752] = 5752, [5753] = 5753, [5754] = 5754, @@ -10231,16 +10238,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5757] = 5757, [5758] = 5758, [5759] = 5759, - [5760] = 5605, + [5760] = 5760, [5761] = 5761, [5762] = 5762, [5763] = 5763, [5764] = 5764, - [5765] = 5765, + [5765] = 4584, [5766] = 5766, - [5767] = 4488, + [5767] = 5684, [5768] = 5768, - [5769] = 5698, + [5769] = 5769, [5770] = 5770, [5771] = 5771, [5772] = 5772, @@ -10256,200 +10263,200 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5782] = 5782, [5783] = 5783, [5784] = 5784, - [5785] = 5785, + [5785] = 5702, [5786] = 5786, [5787] = 5787, [5788] = 5788, [5789] = 5789, - [5790] = 5703, + [5790] = 5790, [5791] = 5791, [5792] = 5792, [5793] = 5793, [5794] = 5794, [5795] = 5795, [5796] = 5796, - [5797] = 5719, + [5797] = 5797, [5798] = 5798, [5799] = 5799, [5800] = 5800, [5801] = 5801, [5802] = 5802, - [5803] = 5778, - [5804] = 5770, - [5805] = 978, - [5806] = 5806, - [5807] = 5798, - [5808] = 5808, - [5809] = 5793, + [5803] = 5779, + [5804] = 5804, + [5805] = 5714, + [5806] = 963, + [5807] = 5807, + [5808] = 5771, + [5809] = 5799, [5810] = 5810, - [5811] = 5811, - [5812] = 5802, - [5813] = 5813, - [5814] = 5800, + [5811] = 5791, + [5812] = 5812, + [5813] = 5790, + [5814] = 5804, [5815] = 5815, - [5816] = 5788, - [5817] = 5817, + [5816] = 5816, + [5817] = 5801, [5818] = 5818, - [5819] = 5791, - [5820] = 5636, - [5821] = 5799, - [5822] = 5822, - [5823] = 5796, - [5824] = 5620, + [5819] = 5819, + [5820] = 5820, + [5821] = 5800, + [5822] = 5637, + [5823] = 5794, + [5824] = 5623, [5825] = 5825, - [5826] = 5799, - [5827] = 5827, - [5828] = 5800, + [5826] = 5826, + [5827] = 5796, + [5828] = 5828, [5829] = 5829, - [5830] = 5802, + [5830] = 5800, [5831] = 5831, - [5832] = 5832, + [5832] = 5801, [5833] = 5833, - [5834] = 5798, + [5834] = 5804, [5835] = 5835, [5836] = 5836, [5837] = 5837, - [5838] = 5793, - [5839] = 5788, - [5840] = 5840, - [5841] = 980, - [5842] = 5842, - [5843] = 5843, - [5844] = 5737, - [5845] = 5738, + [5838] = 5799, + [5839] = 1013, + [5840] = 5732, + [5841] = 5841, + [5842] = 5791, + [5843] = 5790, + [5844] = 5796, + [5845] = 5845, [5846] = 5846, - [5847] = 5796, - [5848] = 5745, + [5847] = 5744, + [5848] = 5746, [5849] = 5849, - [5850] = 1011, - [5851] = 5791, - [5852] = 981, - [5853] = 5619, - [5854] = 5639, - [5855] = 5746, - [5856] = 5618, + [5850] = 1016, + [5851] = 5851, + [5852] = 1011, + [5853] = 5794, + [5854] = 5622, + [5855] = 5855, + [5856] = 5621, [5857] = 5857, - [5858] = 5858, - [5859] = 5859, + [5858] = 5743, + [5859] = 5739, [5860] = 5860, [5861] = 5861, [5862] = 5862, [5863] = 5863, [5864] = 5864, [5865] = 5865, - [5866] = 5639, + [5866] = 5866, [5867] = 5867, - [5868] = 5746, - [5869] = 5869, + [5868] = 5868, + [5869] = 5743, [5870] = 5870, - [5871] = 5871, - [5872] = 5872, + [5871] = 5739, + [5872] = 5766, [5873] = 5873, [5874] = 5874, - [5875] = 5768, - [5876] = 5876, - [5877] = 5686, - [5878] = 5770, - [5879] = 5605, + [5875] = 5875, + [5876] = 5760, + [5877] = 5877, + [5878] = 5878, + [5879] = 5879, [5880] = 5880, - [5881] = 5881, - [5882] = 5882, + [5881] = 5686, + [5882] = 5771, [5883] = 5883, [5884] = 5884, [5885] = 5885, - [5886] = 5664, - [5887] = 5887, - [5888] = 5663, - [5889] = 5659, - [5890] = 5890, - [5891] = 5776, - [5892] = 5892, - [5893] = 5777, - [5894] = 4474, + [5886] = 5886, + [5887] = 5771, + [5888] = 5888, + [5889] = 5889, + [5890] = 5666, + [5891] = 5774, + [5892] = 5607, + [5893] = 5661, + [5894] = 5775, [5895] = 5895, - [5896] = 5896, - [5897] = 5770, - [5898] = 5619, - [5899] = 5618, - [5900] = 5900, + [5896] = 5766, + [5897] = 4547, + [5898] = 5898, + [5899] = 5899, + [5900] = 5622, [5901] = 5901, - [5902] = 5902, + [5902] = 5621, [5903] = 5903, [5904] = 5904, - [5905] = 5867, - [5906] = 5906, - [5907] = 5768, - [5908] = 5791, - [5909] = 5605, - [5910] = 5796, - [5911] = 5743, - [5912] = 5799, - [5913] = 5726, - [5914] = 5718, - [5915] = 5713, - [5916] = 5619, - [5917] = 5618, - [5918] = 5918, - [5919] = 5710, - [5920] = 5800, - [5921] = 5921, - [5922] = 5630, - [5923] = 5923, - [5924] = 5632, - [5925] = 1009, - [5926] = 5802, + [5905] = 5905, + [5906] = 5870, + [5907] = 5907, + [5908] = 5794, + [5909] = 5760, + [5910] = 5910, + [5911] = 5911, + [5912] = 5736, + [5913] = 5913, + [5914] = 5796, + [5915] = 5721, + [5916] = 5716, + [5917] = 5622, + [5918] = 5621, + [5919] = 5713, + [5920] = 5703, + [5921] = 5800, + [5922] = 5801, + [5923] = 1000, + [5924] = 5804, + [5925] = 5925, + [5926] = 5634, [5927] = 5927, - [5928] = 1002, + [5928] = 5636, [5929] = 5686, - [5930] = 5806, - [5931] = 982, - [5932] = 1012, + [5930] = 999, + [5931] = 5807, + [5932] = 996, [5933] = 5933, - [5934] = 5934, - [5935] = 5798, + [5934] = 961, + [5935] = 5935, [5936] = 5936, - [5937] = 5793, - [5938] = 5664, - [5939] = 5788, - [5940] = 5663, - [5941] = 5659, - [5942] = 5942, - [5943] = 5943, + [5937] = 5799, + [5938] = 5938, + [5939] = 5666, + [5940] = 5791, + [5941] = 5607, + [5942] = 5661, + [5943] = 5790, [5944] = 5944, - [5945] = 5867, - [5946] = 5159, - [5947] = 2118, - [5948] = 5948, - [5949] = 5745, - [5950] = 5950, - [5951] = 5951, + [5945] = 5945, + [5946] = 5870, + [5947] = 5746, + [5948] = 5732, + [5949] = 5161, + [5950] = 5760, + [5951] = 979, [5952] = 5952, [5953] = 5953, - [5954] = 5737, + [5954] = 5954, [5955] = 5955, [5956] = 5956, - [5957] = 5608, + [5957] = 5957, [5958] = 5958, - [5959] = 983, + [5959] = 997, [5960] = 5960, [5961] = 5609, - [5962] = 5610, + [5962] = 5962, [5963] = 5963, - [5964] = 5964, - [5965] = 5965, - [5966] = 5619, - [5967] = 5618, + [5964] = 5622, + [5965] = 5611, + [5966] = 5612, + [5967] = 5621, [5968] = 5968, [5969] = 5969, [5970] = 5970, - [5971] = 4581, + [5971] = 5971, [5972] = 5972, - [5973] = 5867, + [5973] = 5973, [5974] = 5974, - [5975] = 5975, + [5975] = 4503, [5976] = 5976, [5977] = 5977, - [5978] = 5978, + [5978] = 5870, [5979] = 5979, [5980] = 5980, [5981] = 5981, @@ -10468,32 +10475,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5994] = 5994, [5995] = 5995, [5996] = 5996, - [5997] = 5639, - [5998] = 5746, - [5999] = 988, - [6000] = 6000, - [6001] = 6001, + [5997] = 5997, + [5998] = 5998, + [5999] = 5999, + [6000] = 5743, + [6001] = 5739, [6002] = 6002, [6003] = 6003, [6004] = 6004, [6005] = 6005, [6006] = 6006, - [6007] = 994, - [6008] = 6008, + [6007] = 6007, + [6008] = 5684, [6009] = 6009, - [6010] = 6010, - [6011] = 987, - [6012] = 985, - [6013] = 5630, - [6014] = 5632, - [6015] = 6015, + [6010] = 991, + [6011] = 6011, + [6012] = 992, + [6013] = 1018, + [6014] = 5634, + [6015] = 5636, [6016] = 6016, [6017] = 6017, - [6018] = 5698, + [6018] = 6018, [6019] = 6019, [6020] = 6020, [6021] = 6021, - [6022] = 5110, + [6022] = 6022, [6023] = 6023, [6024] = 6024, [6025] = 6025, @@ -10505,131 +10512,131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6031] = 6031, [6032] = 6032, [6033] = 6033, - [6034] = 6034, - [6035] = 5867, - [6036] = 6036, + [6034] = 5870, + [6035] = 6035, + [6036] = 5112, [6037] = 6037, [6038] = 6038, [6039] = 6039, [6040] = 6040, [6041] = 6041, [6042] = 6042, - [6043] = 998, - [6044] = 5686, + [6043] = 6043, + [6044] = 6044, [6045] = 6045, - [6046] = 6046, + [6046] = 972, [6047] = 6047, - [6048] = 6048, + [6048] = 5686, [6049] = 6049, - [6050] = 5664, + [6050] = 6050, [6051] = 6051, [6052] = 6052, - [6053] = 5663, + [6053] = 6053, [6054] = 6054, - [6055] = 5659, - [6056] = 5605, - [6057] = 5770, + [6055] = 5666, + [6056] = 5607, + [6057] = 5661, [6058] = 6058, - [6059] = 6059, + [6059] = 5760, [6060] = 6060, - [6061] = 6061, - [6062] = 5681, + [6061] = 5771, + [6062] = 6062, [6063] = 6063, [6064] = 6064, [6065] = 6065, - [6066] = 6066, + [6066] = 5678, [6067] = 6067, [6068] = 6068, [6069] = 6069, [6070] = 6070, [6071] = 6071, - [6072] = 5791, + [6072] = 6072, [6073] = 6073, - [6074] = 5647, + [6074] = 5649, [6075] = 6075, - [6076] = 5796, - [6077] = 5619, - [6078] = 5618, - [6079] = 5799, - [6080] = 6080, - [6081] = 5800, + [6076] = 5794, + [6077] = 6077, + [6078] = 5622, + [6079] = 5621, + [6080] = 5796, + [6081] = 6081, [6082] = 6082, - [6083] = 5802, + [6083] = 5800, [6084] = 6084, - [6085] = 6085, + [6085] = 5801, [6086] = 6086, - [6087] = 5798, + [6087] = 5804, [6088] = 6088, [6089] = 6089, [6090] = 6090, - [6091] = 5793, - [6092] = 5788, + [6091] = 5799, + [6092] = 6092, [6093] = 6093, [6094] = 6094, - [6095] = 6095, - [6096] = 6096, + [6095] = 5791, + [6096] = 5790, [6097] = 6097, [6098] = 6098, - [6099] = 6099, + [6099] = 5652, [6100] = 6100, [6101] = 6101, [6102] = 6102, - [6103] = 5650, + [6103] = 6103, [6104] = 6104, [6105] = 6105, - [6106] = 6106, - [6107] = 5639, - [6108] = 5746, + [6106] = 5632, + [6107] = 6107, + [6108] = 6108, [6109] = 6109, - [6110] = 5633, - [6111] = 6111, - [6112] = 6112, + [6110] = 6110, + [6111] = 5743, + [6112] = 5739, [6113] = 6113, [6114] = 6114, [6115] = 6115, [6116] = 6116, [6117] = 6117, [6118] = 6118, - [6119] = 5726, + [6119] = 6119, [6120] = 6120, - [6121] = 5718, + [6121] = 6121, [6122] = 6122, - [6123] = 5713, + [6123] = 5721, [6124] = 6124, - [6125] = 5710, + [6125] = 5716, [6126] = 6126, - [6127] = 6127, - [6128] = 5686, - [6129] = 6129, + [6127] = 5713, + [6128] = 6128, + [6129] = 5703, [6130] = 6130, [6131] = 6131, - [6132] = 6132, + [6132] = 5686, [6133] = 6133, [6134] = 6134, [6135] = 6135, [6136] = 6136, - [6137] = 5664, + [6137] = 6137, [6138] = 6138, - [6139] = 5663, - [6140] = 5659, - [6141] = 974, + [6139] = 6139, + [6140] = 6140, + [6141] = 5666, [6142] = 6142, - [6143] = 6143, - [6144] = 6144, + [6143] = 2062, + [6144] = 5661, [6145] = 6145, - [6146] = 6146, + [6146] = 980, [6147] = 6147, [6148] = 6148, [6149] = 6149, - [6150] = 5630, + [6150] = 6150, [6151] = 6151, [6152] = 6152, - [6153] = 5632, - [6154] = 6154, + [6153] = 6153, + [6154] = 5634, [6155] = 6155, [6156] = 6156, [6157] = 6157, - [6158] = 6158, + [6158] = 5636, [6159] = 6159, [6160] = 6160, [6161] = 6161, @@ -10643,48 +10650,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6169] = 6169, [6170] = 6170, [6171] = 6171, - [6172] = 6172, - [6173] = 5630, - [6174] = 4998, - [6175] = 5632, + [6172] = 5001, + [6173] = 6173, + [6174] = 6174, + [6175] = 6175, [6176] = 6176, - [6177] = 6177, + [6177] = 5634, [6178] = 6178, - [6179] = 6179, - [6180] = 5022, - [6181] = 5764, - [6182] = 975, - [6183] = 5659, + [6179] = 5636, + [6180] = 5024, + [6181] = 5793, + [6182] = 968, + [6183] = 5661, [6184] = 6184, [6185] = 6185, [6186] = 6186, [6187] = 6187, [6188] = 6188, - [6189] = 5788, - [6190] = 5793, - [6191] = 6191, - [6192] = 5802, + [6189] = 6189, + [6190] = 5790, + [6191] = 5791, + [6192] = 5804, [6193] = 6193, - [6194] = 5800, + [6194] = 5801, [6195] = 6195, - [6196] = 5799, + [6196] = 5800, [6197] = 6197, [6198] = 6198, [6199] = 6199, [6200] = 6200, - [6201] = 5002, - [6202] = 6202, + [6201] = 6201, + [6202] = 5005, [6203] = 6203, [6204] = 6204, [6205] = 6205, [6206] = 6206, [6207] = 6207, - [6208] = 6208, + [6208] = 5615, [6209] = 6209, [6210] = 6210, [6211] = 6211, [6212] = 6212, - [6213] = 5613, + [6213] = 6213, [6214] = 6214, [6215] = 6215, [6216] = 6216, @@ -10694,33 +10701,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6220] = 6220, [6221] = 6221, [6222] = 6222, - [6223] = 6223, - [6224] = 6224, - [6225] = 5610, - [6226] = 5609, + [6223] = 5612, + [6224] = 5611, + [6225] = 6225, + [6226] = 6226, [6227] = 6227, [6228] = 6228, [6229] = 6229, [6230] = 6230, - [6231] = 6231, + [6231] = 5609, [6232] = 6232, [6233] = 6233, [6234] = 6234, [6235] = 6235, [6236] = 6236, - [6237] = 5608, + [6237] = 6237, [6238] = 6238, [6239] = 6239, [6240] = 6240, [6241] = 6241, [6242] = 6242, [6243] = 6243, - [6244] = 5632, - [6245] = 6245, - [6246] = 5630, + [6244] = 6244, + [6245] = 5636, + [6246] = 6246, [6247] = 6247, [6248] = 6248, - [6249] = 6249, + [6249] = 5634, [6250] = 6250, [6251] = 6251, [6252] = 6252, @@ -10731,43 +10738,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6257] = 6257, [6258] = 6258, [6259] = 6259, - [6260] = 5799, + [6260] = 6260, [6261] = 6261, - [6262] = 5800, + [6262] = 6262, [6263] = 6263, - [6264] = 5802, + [6264] = 5800, [6265] = 6265, - [6266] = 5798, + [6266] = 5801, [6267] = 6267, - [6268] = 6268, + [6268] = 5804, [6269] = 6269, - [6270] = 5793, - [6271] = 5788, + [6270] = 5799, + [6271] = 6271, [6272] = 6272, [6273] = 6273, - [6274] = 6274, - [6275] = 6275, + [6274] = 5791, + [6275] = 5790, [6276] = 6276, - [6277] = 5639, - [6278] = 5746, + [6277] = 6277, + [6278] = 6278, [6279] = 6279, [6280] = 6280, - [6281] = 6281, - [6282] = 6282, + [6281] = 5743, + [6282] = 5739, [6283] = 6283, [6284] = 6284, [6285] = 6285, [6286] = 6286, [6287] = 6287, - [6288] = 5664, + [6288] = 6288, [6289] = 6289, - [6290] = 5663, - [6291] = 5659, + [6290] = 6290, + [6291] = 5666, [6292] = 6292, - [6293] = 6293, - [6294] = 6294, + [6293] = 5607, + [6294] = 5661, [6295] = 6295, - [6296] = 1054, + [6296] = 6296, [6297] = 6297, [6298] = 6298, [6299] = 6299, @@ -10780,648 +10787,648 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6306] = 6306, [6307] = 6307, [6308] = 6308, - [6309] = 1078, + [6309] = 6309, [6310] = 6310, - [6311] = 6311, + [6311] = 1033, [6312] = 6312, [6313] = 6313, [6314] = 6314, - [6315] = 6315, - [6316] = 6316, + [6315] = 6299, + [6316] = 6298, [6317] = 6317, - [6318] = 6310, - [6319] = 6297, - [6320] = 6313, - [6321] = 6304, + [6318] = 6318, + [6319] = 6306, + [6320] = 6318, + [6321] = 6321, [6322] = 6322, [6323] = 6323, [6324] = 6324, [6325] = 6325, - [6326] = 6322, - [6327] = 6327, - [6328] = 1203, - [6329] = 1115, - [6330] = 1204, - [6331] = 6331, - [6332] = 1043, - [6333] = 1205, + [6326] = 6326, + [6327] = 6313, + [6328] = 6328, + [6329] = 6329, + [6330] = 6330, + [6331] = 1054, + [6332] = 1122, + [6333] = 1042, [6334] = 6334, [6335] = 6335, - [6336] = 6335, - [6337] = 1035, - [6338] = 1039, + [6336] = 1191, + [6337] = 1041, + [6338] = 6322, [6339] = 6339, - [6340] = 1051, - [6341] = 6341, - [6342] = 1120, - [6343] = 6343, - [6344] = 6305, + [6340] = 6339, + [6341] = 1114, + [6342] = 1103, + [6343] = 1100, + [6344] = 6344, [6345] = 6345, - [6346] = 6341, - [6347] = 1174, - [6348] = 1129, - [6349] = 6349, - [6350] = 334, - [6351] = 6351, - [6352] = 6352, - [6353] = 3512, + [6346] = 1084, + [6347] = 6308, + [6348] = 6309, + [6349] = 6344, + [6350] = 6350, + [6351] = 1088, + [6352] = 1090, + [6353] = 312, [6354] = 6354, - [6355] = 1128, - [6356] = 6308, - [6357] = 6357, - [6358] = 6325, - [6359] = 1061, - [6360] = 6360, - [6361] = 6351, - [6362] = 6351, + [6355] = 6355, + [6356] = 6356, + [6357] = 6329, + [6358] = 1117, + [6359] = 6359, + [6360] = 3496, + [6361] = 1070, + [6362] = 6362, [6363] = 6363, - [6364] = 6364, - [6365] = 6365, - [6366] = 1105, - [6367] = 6367, - [6368] = 6365, - [6369] = 6311, - [6370] = 1065, - [6371] = 6364, - [6372] = 6316, - [6373] = 6317, - [6374] = 1066, - [6375] = 1067, - [6376] = 1160, - [6377] = 1168, - [6378] = 6297, - [6379] = 1069, - [6380] = 6363, - [6381] = 1070, - [6382] = 6313, - [6383] = 1072, - [6384] = 1074, - [6385] = 1034, - [6386] = 6386, + [6364] = 6312, + [6365] = 6354, + [6366] = 6366, + [6367] = 1118, + [6368] = 6368, + [6369] = 6369, + [6370] = 6369, + [6371] = 6371, + [6372] = 6368, + [6373] = 1061, + [6374] = 6299, + [6375] = 6375, + [6376] = 1059, + [6377] = 6324, + [6378] = 1050, + [6379] = 1045, + [6380] = 1044, + [6381] = 6323, + [6382] = 1032, + [6383] = 6318, + [6384] = 1031, + [6385] = 1025, + [6386] = 6321, [6387] = 6387, - [6388] = 6365, - [6389] = 6389, - [6390] = 336, - [6391] = 3507, + [6388] = 1115, + [6389] = 1175, + [6390] = 1024, + [6391] = 3471, [6392] = 6392, - [6393] = 3506, - [6394] = 1079, - [6395] = 1080, - [6396] = 6387, - [6397] = 1125, - [6398] = 6398, - [6399] = 1161, - [6400] = 6400, - [6401] = 6401, + [6393] = 6323, + [6394] = 6369, + [6395] = 6395, + [6396] = 3478, + [6397] = 1146, + [6398] = 1023, + [6399] = 1038, + [6400] = 6321, + [6401] = 1180, [6402] = 6402, - [6403] = 1166, - [6404] = 6386, - [6405] = 6392, - [6406] = 6297, + [6403] = 1183, + [6404] = 6404, + [6405] = 6405, + [6406] = 6406, [6407] = 6407, - [6408] = 333, - [6409] = 6317, - [6410] = 6316, - [6411] = 6357, - [6412] = 6412, - [6413] = 6413, - [6414] = 6364, - [6415] = 6415, - [6416] = 6310, - [6417] = 6311, + [6408] = 1195, + [6409] = 6387, + [6410] = 6410, + [6411] = 6395, + [6412] = 6324, + [6413] = 6299, + [6414] = 329, + [6415] = 6356, + [6416] = 6416, + [6417] = 6375, [6418] = 6418, - [6419] = 6419, - [6420] = 6322, + [6419] = 6368, + [6420] = 328, [6421] = 6421, - [6422] = 6335, - [6423] = 6325, - [6424] = 6365, - [6425] = 6425, - [6426] = 6426, - [6427] = 6427, - [6428] = 6299, - [6429] = 6429, - [6430] = 6430, - [6431] = 6341, + [6422] = 6422, + [6423] = 6423, + [6424] = 6424, + [6425] = 6313, + [6426] = 6329, + [6427] = 6322, + [6428] = 6428, + [6429] = 6339, + [6430] = 6369, + [6431] = 6431, [6432] = 6432, [6433] = 6433, - [6434] = 6364, - [6435] = 6325, - [6436] = 6302, - [6437] = 6437, - [6438] = 3509, - [6439] = 6398, - [6440] = 3518, - [6441] = 1179, - [6442] = 6442, - [6443] = 6387, - [6444] = 6444, - [6445] = 6445, - [6446] = 6298, - [6447] = 311, - [6448] = 6365, + [6434] = 6344, + [6435] = 6435, + [6436] = 6436, + [6437] = 6368, + [6438] = 6438, + [6439] = 6303, + [6440] = 6440, + [6441] = 6329, + [6442] = 6356, + [6443] = 6443, + [6444] = 3488, + [6445] = 1203, + [6446] = 6375, + [6447] = 6402, + [6448] = 6448, [6449] = 6449, [6450] = 6450, - [6451] = 6451, - [6452] = 6452, - [6453] = 6453, - [6454] = 6310, - [6455] = 6313, - [6456] = 6297, - [6457] = 1075, - [6458] = 6351, - [6459] = 6459, - [6460] = 6460, - [6461] = 6317, - [6462] = 6316, - [6463] = 1216, - [6464] = 6308, - [6465] = 6363, - [6466] = 1101, - [6467] = 6345, - [6468] = 6305, - [6469] = 1097, - [6470] = 6304, - [6471] = 6311, - [6472] = 6302, - [6473] = 6473, - [6474] = 6322, - [6475] = 6299, - [6476] = 6335, - [6477] = 6437, - [6478] = 1022, - [6479] = 6298, - [6480] = 6480, - [6481] = 6341, - [6482] = 6482, - [6483] = 6482, - [6484] = 6339, + [6451] = 311, + [6452] = 6369, + [6453] = 3485, + [6454] = 6304, + [6455] = 6455, + [6456] = 6456, + [6457] = 6354, + [6458] = 6324, + [6459] = 6323, + [6460] = 6321, + [6461] = 6312, + [6462] = 6363, + [6463] = 6463, + [6464] = 6318, + [6465] = 1204, + [6466] = 6466, + [6467] = 6366, + [6468] = 1206, + [6469] = 6362, + [6470] = 1199, + [6471] = 6309, + [6472] = 6299, + [6473] = 6308, + [6474] = 6474, + [6475] = 6306, + [6476] = 6476, + [6477] = 6303, + [6478] = 6478, + [6479] = 1138, + [6480] = 6440, + [6481] = 6354, + [6482] = 6304, + [6483] = 6313, + [6484] = 6366, [6485] = 6485, [6486] = 6486, - [6487] = 6331, - [6488] = 6430, + [6487] = 6322, + [6488] = 6488, [6489] = 6489, - [6490] = 6490, - [6491] = 6485, - [6492] = 6303, - [6493] = 6493, - [6494] = 6300, - [6495] = 6495, + [6490] = 6339, + [6491] = 6491, + [6492] = 6344, + [6493] = 6478, + [6494] = 6334, + [6495] = 6301, [6496] = 6496, [6497] = 6497, - [6498] = 6426, + [6498] = 6330, [6499] = 6499, [6500] = 6500, [6501] = 6501, [6502] = 6502, - [6503] = 6312, - [6504] = 6314, + [6503] = 6486, + [6504] = 6392, [6505] = 6505, - [6506] = 6306, - [6507] = 6301, - [6508] = 6427, - [6509] = 4717, - [6510] = 6351, - [6511] = 6402, - [6512] = 6426, - [6513] = 6427, - [6514] = 6327, - [6515] = 6515, - [6516] = 1023, - [6517] = 1191, - [6518] = 6430, - [6519] = 6460, - [6520] = 6367, - [6521] = 6308, - [6522] = 6490, - [6523] = 6432, - [6524] = 6303, - [6525] = 6300, - [6526] = 1057, - [6527] = 6364, - [6528] = 6433, - [6529] = 6324, - [6530] = 6357, - [6531] = 6323, - [6532] = 6389, - [6533] = 6357, - [6534] = 6427, - [6535] = 6535, - [6536] = 6536, - [6537] = 6537, - [6538] = 6460, - [6539] = 6413, + [6506] = 6307, + [6507] = 6314, + [6508] = 6317, + [6509] = 6305, + [6510] = 6300, + [6511] = 6511, + [6512] = 6488, + [6513] = 6491, + [6514] = 6514, + [6515] = 6431, + [6516] = 6431, + [6517] = 1161, + [6518] = 4682, + [6519] = 6432, + [6520] = 1063, + [6521] = 6312, + [6522] = 6328, + [6523] = 1120, + [6524] = 6371, + [6525] = 6432, + [6526] = 6478, + [6527] = 6354, + [6528] = 6528, + [6529] = 6435, + [6530] = 6405, + [6531] = 6406, + [6532] = 6356, + [6533] = 1020, + [6534] = 6301, + [6535] = 6368, + [6536] = 6418, + [6537] = 6436, + [6538] = 6326, + [6539] = 6325, [6540] = 6540, - [6541] = 1207, - [6542] = 6345, - [6543] = 1102, - [6544] = 6496, - [6545] = 6480, - [6546] = 3496, - [6547] = 6419, - [6548] = 3495, - [6549] = 6325, - [6550] = 6430, - [6551] = 6432, - [6552] = 6552, - [6553] = 6553, + [6541] = 6438, + [6542] = 6416, + [6543] = 6362, + [6544] = 6544, + [6545] = 1056, + [6546] = 3467, + [6547] = 6547, + [6548] = 6497, + [6549] = 6485, + [6550] = 6422, + [6551] = 3468, + [6552] = 6329, + [6553] = 6435, [6554] = 6554, - [6555] = 6307, + [6555] = 6555, [6556] = 6556, [6557] = 6557, [6558] = 6558, - [6559] = 6460, - [6560] = 6432, - [6561] = 6433, - [6562] = 6499, - [6563] = 6563, - [6564] = 6501, - [6565] = 6565, - [6566] = 6566, - [6567] = 6505, + [6559] = 6559, + [6560] = 6560, + [6561] = 6561, + [6562] = 6562, + [6563] = 6431, + [6564] = 6432, + [6565] = 6478, + [6566] = 6435, + [6567] = 6502, [6568] = 6568, - [6569] = 6569, - [6570] = 1103, - [6571] = 6426, - [6572] = 6459, - [6573] = 6305, - [6574] = 6304, - [6575] = 6302, - [6576] = 1104, - [6577] = 6577, - [6578] = 6565, + [6569] = 6436, + [6570] = 6438, + [6571] = 6558, + [6572] = 1057, + [6573] = 6573, + [6574] = 6309, + [6575] = 6575, + [6576] = 6308, + [6577] = 6306, + [6578] = 1065, [6579] = 6579, - [6580] = 1106, - [6581] = 6299, - [6582] = 6582, + [6580] = 1067, + [6581] = 6303, + [6582] = 6573, [6583] = 6583, - [6584] = 1060, - [6585] = 6437, - [6586] = 6586, - [6587] = 6587, - [6588] = 6315, - [6589] = 6589, - [6590] = 6433, - [6591] = 6587, + [6584] = 6584, + [6585] = 6499, + [6586] = 1036, + [6587] = 6440, + [6588] = 6588, + [6589] = 6310, + [6590] = 6436, + [6591] = 6438, [6592] = 6592, - [6593] = 6583, + [6593] = 1022, [6594] = 6594, [6595] = 6595, - [6596] = 1141, - [6597] = 6298, + [6596] = 6596, + [6597] = 6304, [6598] = 6598, - [6599] = 1048, - [6600] = 6600, - [6601] = 6601, - [6602] = 1108, - [6603] = 1110, - [6604] = 6315, - [6605] = 6306, - [6606] = 6453, - [6607] = 6607, - [6608] = 6586, - [6609] = 1111, - [6610] = 6579, - [6611] = 6323, - [6612] = 1116, - [6613] = 1117, - [6614] = 6614, - [6615] = 6324, - [6616] = 6616, - [6617] = 6617, - [6618] = 1138, - [6619] = 1214, - [6620] = 1208, - [6621] = 1206, - [6622] = 6622, - [6623] = 6327, + [6599] = 6599, + [6600] = 1027, + [6601] = 6474, + [6602] = 1074, + [6603] = 6594, + [6604] = 6604, + [6605] = 6605, + [6606] = 1075, + [6607] = 6305, + [6608] = 6608, + [6609] = 6310, + [6610] = 6596, + [6611] = 1080, + [6612] = 6325, + [6613] = 1081, + [6614] = 6326, + [6615] = 1083, + [6616] = 6466, + [6617] = 1035, + [6618] = 6618, + [6619] = 6619, + [6620] = 6620, + [6621] = 1037, + [6622] = 1048, + [6623] = 1049, [6624] = 6624, - [6625] = 6331, - [6626] = 6339, + [6625] = 6328, + [6626] = 6330, [6627] = 6627, - [6628] = 6301, - [6629] = 6339, - [6630] = 6630, - [6631] = 6331, - [6632] = 6482, - [6633] = 6327, - [6634] = 6324, - [6635] = 2574, - [6636] = 2568, - [6637] = 6485, - [6638] = 6402, - [6639] = 6323, - [6640] = 6490, - [6641] = 6307, - [6642] = 2620, - [6643] = 1148, - [6644] = 6644, - [6645] = 6645, - [6646] = 1181, - [6647] = 1180, - [6648] = 1178, - [6649] = 1177, - [6650] = 6303, - [6651] = 1176, - [6652] = 6652, - [6653] = 6387, - [6654] = 1173, - [6655] = 6655, - [6656] = 6656, - [6657] = 1025, + [6628] = 6334, + [6629] = 6629, + [6630] = 6583, + [6631] = 6300, + [6632] = 6558, + [6633] = 6633, + [6634] = 6486, + [6635] = 6635, + [6636] = 6488, + [6637] = 6334, + [6638] = 6330, + [6639] = 2558, + [6640] = 6491, + [6641] = 2546, + [6642] = 6405, + [6643] = 1062, + [6644] = 3481, + [6645] = 6328, + [6646] = 6646, + [6647] = 6647, + [6648] = 6326, + [6649] = 1071, + [6650] = 1072, + [6651] = 1073, + [6652] = 6301, + [6653] = 1077, + [6654] = 1078, + [6655] = 6298, + [6656] = 6375, + [6657] = 6657, [6658] = 6658, [6659] = 6659, - [6660] = 6339, + [6660] = 2514, [6661] = 6661, - [6662] = 6445, - [6663] = 6444, - [6664] = 3470, - [6665] = 6451, - [6666] = 6666, - [6667] = 3490, - [6668] = 6452, - [6669] = 3511, - [6670] = 6313, - [6671] = 6297, - [6672] = 6427, - [6673] = 6673, - [6674] = 6317, - [6675] = 6316, - [6676] = 3514, - [6677] = 6401, - [6678] = 6678, - [6679] = 1172, - [6680] = 6300, - [6681] = 3515, - [6682] = 6331, - [6683] = 6311, - [6684] = 6400, - [6685] = 3463, - [6686] = 6489, - [6687] = 6495, - [6688] = 6594, - [6689] = 6689, - [6690] = 6690, - [6691] = 6433, + [6662] = 6662, + [6663] = 6663, + [6664] = 6664, + [6665] = 6455, + [6666] = 6448, + [6667] = 6449, + [6668] = 1182, + [6669] = 1079, + [6670] = 3513, + [6671] = 6456, + [6672] = 3520, + [6673] = 6324, + [6674] = 6323, + [6675] = 6334, + [6676] = 6676, + [6677] = 6321, + [6678] = 6318, + [6679] = 3483, + [6680] = 6680, + [6681] = 6681, + [6682] = 6497, + [6683] = 6404, + [6684] = 6334, + [6685] = 1055, + [6686] = 6299, + [6687] = 3477, + [6688] = 6330, + [6689] = 3511, + [6690] = 6325, + [6691] = 6438, [6692] = 6692, [6693] = 6693, - [6694] = 6694, - [6695] = 6595, - [6696] = 6583, - [6697] = 3505, + [6694] = 6499, + [6695] = 6695, + [6696] = 6501, + [6697] = 6598, [6698] = 6698, - [6699] = 3497, - [6700] = 6700, - [6701] = 6587, - [6702] = 3492, - [6703] = 6496, - [6704] = 6432, - [6705] = 6331, - [6706] = 6706, - [6707] = 6499, - [6708] = 6501, - [6709] = 1098, - [6710] = 6710, - [6711] = 1100, - [6712] = 6308, - [6713] = 6460, + [6699] = 6699, + [6700] = 6599, + [6701] = 6511, + [6702] = 6702, + [6703] = 3509, + [6704] = 6704, + [6705] = 3491, + [6706] = 6436, + [6707] = 6435, + [6708] = 6502, + [6709] = 6709, + [6710] = 6392, + [6711] = 1095, + [6712] = 6712, + [6713] = 1162, [6714] = 6714, - [6715] = 6715, - [6716] = 6430, + [6715] = 6312, + [6716] = 6478, [6717] = 6717, [6718] = 6718, - [6719] = 6719, - [6720] = 6426, - [6721] = 1143, - [6722] = 6327, - [6723] = 6723, - [6724] = 6351, - [6725] = 6725, - [6726] = 6315, - [6727] = 6727, - [6728] = 6586, - [6729] = 1144, - [6730] = 6579, - [6731] = 1095, - [6732] = 6307, - [6733] = 1094, - [6734] = 6718, - [6735] = 1145, - [6736] = 6736, - [6737] = 6505, - [6738] = 6306, - [6739] = 6301, - [6740] = 6556, - [6741] = 6741, - [6742] = 6327, + [6719] = 6596, + [6720] = 1163, + [6721] = 6432, + [6722] = 6431, + [6723] = 6356, + [6724] = 1165, + [6725] = 6330, + [6726] = 6328, + [6727] = 6354, + [6728] = 3518, + [6729] = 6729, + [6730] = 1174, + [6731] = 6731, + [6732] = 6594, + [6733] = 6733, + [6734] = 6734, + [6735] = 6307, + [6736] = 6310, + [6737] = 6583, + [6738] = 6558, + [6739] = 6739, + [6740] = 6305, + [6741] = 6300, + [6742] = 1099, [6743] = 6743, - [6744] = 1152, - [6745] = 6324, - [6746] = 6746, - [6747] = 6747, - [6748] = 6364, - [6749] = 1091, - [6750] = 6312, - [6751] = 6314, - [6752] = 1146, - [6753] = 1147, - [6754] = 6727, - [6755] = 1089, - [6756] = 6756, - [6757] = 1082, - [6758] = 4823, - [6759] = 4819, - [6760] = 6323, - [6761] = 6761, - [6762] = 6747, - [6763] = 1064, - [6764] = 6367, - [6765] = 6341, - [6766] = 6766, - [6767] = 6389, - [6768] = 6365, - [6769] = 6301, - [6770] = 4834, - [6771] = 6335, + [6744] = 6744, + [6745] = 6745, + [6746] = 1085, + [6747] = 1186, + [6748] = 6748, + [6749] = 6749, + [6750] = 1187, + [6751] = 6734, + [6752] = 6368, + [6753] = 1188, + [6754] = 6314, + [6755] = 6317, + [6756] = 1190, + [6757] = 1086, + [6758] = 6298, + [6759] = 6328, + [6760] = 6733, + [6761] = 1089, + [6762] = 6762, + [6763] = 6647, + [6764] = 6344, + [6765] = 6339, + [6766] = 6322, + [6767] = 1092, + [6768] = 6371, + [6769] = 6769, + [6770] = 4718, + [6771] = 6418, [6772] = 6772, - [6773] = 1149, - [6774] = 6725, - [6775] = 6480, - [6776] = 3503, - [6777] = 6322, - [6778] = 6778, - [6779] = 6779, - [6780] = 6756, - [6781] = 6601, - [6782] = 1150, - [6783] = 6505, - [6784] = 6312, - [6785] = 6565, - [6786] = 6310, - [6787] = 6345, - [6788] = 1137, - [6789] = 1130, - [6790] = 6553, - [6791] = 6554, - [6792] = 1140, - [6793] = 6595, - [6794] = 1118, - [6795] = 3501, - [6796] = 6601, - [6797] = 1113, - [6798] = 1099, - [6799] = 6357, - [6800] = 1088, - [6801] = 6616, - [6802] = 1087, - [6803] = 6325, - [6804] = 6557, - [6805] = 3519, - [6806] = 6558, - [6807] = 1086, - [6808] = 3516, - [6809] = 6568, - [6810] = 6301, - [6811] = 6324, - [6812] = 6305, - [6813] = 6304, - [6814] = 1083, - [6815] = 1081, - [6816] = 6302, - [6817] = 6817, - [6818] = 6339, - [6819] = 6819, - [6820] = 6587, - [6821] = 1156, - [6822] = 6577, - [6823] = 6299, - [6824] = 6323, - [6825] = 1196, - [6826] = 6437, - [6827] = 6315, - [6828] = 6717, - [6829] = 6306, - [6830] = 6830, - [6831] = 6831, - [6832] = 6298, - [6833] = 6505, - [6834] = 6601, - [6835] = 1077, - [6836] = 6563, - [6837] = 1076, - [6838] = 6838, - [6839] = 6715, - [6840] = 1063, - [6841] = 6718, - [6842] = 6501, - [6843] = 6499, - [6844] = 3480, - [6845] = 6714, - [6846] = 6616, - [6847] = 1036, - [6848] = 6848, - [6849] = 6719, - [6850] = 6583, - [6851] = 6587, - [6852] = 6367, - [6853] = 6710, - [6854] = 6496, - [6855] = 6315, - [6856] = 6501, - [6857] = 6499, - [6858] = 6300, - [6859] = 6387, - [6860] = 6860, - [6861] = 6861, - [6862] = 6862, - [6863] = 6303, - [6864] = 6313, - [6865] = 6505, - [6866] = 6317, - [6867] = 6614, - [6868] = 6316, - [6869] = 6727, - [6870] = 6312, - [6871] = 6314, - [6872] = 1044, - [6873] = 6873, - [6874] = 6311, - [6875] = 6875, - [6876] = 6719, - [6877] = 6402, - [6878] = 6482, - [6879] = 6485, - [6880] = 6482, - [6881] = 1030, - [6882] = 6485, - [6883] = 6616, - [6884] = 6367, - [6885] = 1026, - [6886] = 6402, - [6887] = 6389, - [6888] = 6583, - [6889] = 1132, - [6890] = 6601, - [6891] = 6595, - [6892] = 6490, - [6893] = 6725, - [6894] = 6496, - [6895] = 6480, - [6896] = 6586, - [6897] = 1188, - [6898] = 6898, - [6899] = 6298, - [6900] = 6565, - [6901] = 6579, - [6902] = 1185, - [6903] = 6307, - [6904] = 6437, - [6905] = 6565, - [6906] = 6480, - [6907] = 6303, - [6908] = 6299, - [6909] = 6579, - [6910] = 1189, - [6911] = 6595, - [6912] = 1190, - [6913] = 1167, - [6914] = 6601, - [6915] = 3479, - [6916] = 1040, - [6917] = 6666, - [6918] = 1031, - [6919] = 6616, - [6920] = 1028, - [6921] = 6490, - [6922] = 6308, - [6923] = 6389, - [6924] = 1021, - [6925] = 6300, - [6926] = 1109, - [6927] = 6345, - [6928] = 6306, - [6929] = 6929, - [6930] = 6302, - [6931] = 6367, - [6932] = 6659, - [6933] = 6652, - [6934] = 6645, - [6935] = 6935, - [6936] = 6314, - [6937] = 6937, - [6938] = 1135, + [6773] = 4719, + [6774] = 6743, + [6775] = 6326, + [6776] = 6313, + [6777] = 1207, + [6778] = 6731, + [6779] = 6485, + [6780] = 1094, + [6781] = 6781, + [6782] = 6782, + [6783] = 6325, + [6784] = 1104, + [6785] = 6369, + [6786] = 4714, + [6787] = 6305, + [6788] = 6362, + [6789] = 6573, + [6790] = 6307, + [6791] = 6547, + [6792] = 1107, + [6793] = 1110, + [6794] = 6556, + [6795] = 6557, + [6796] = 1113, + [6797] = 6599, + [6798] = 1119, + [6799] = 1109, + [6800] = 6605, + [6801] = 6329, + [6802] = 1126, + [6803] = 6559, + [6804] = 1129, + [6805] = 6620, + [6806] = 1034, + [6807] = 6605, + [6808] = 3500, + [6809] = 6560, + [6810] = 6314, + [6811] = 3469, + [6812] = 6561, + [6813] = 1145, + [6814] = 6307, + [6815] = 6309, + [6816] = 6308, + [6817] = 1147, + [6818] = 1169, + [6819] = 6306, + [6820] = 6820, + [6821] = 3502, + [6822] = 6822, + [6823] = 3503, + [6824] = 6729, + [6825] = 6579, + [6826] = 6303, + [6827] = 6326, + [6828] = 6325, + [6829] = 6440, + [6830] = 6718, + [6831] = 1058, + [6832] = 6605, + [6833] = 6833, + [6834] = 6834, + [6835] = 6304, + [6836] = 6300, + [6837] = 1143, + [6838] = 1215, + [6839] = 6305, + [6840] = 6307, + [6841] = 6841, + [6842] = 1205, + [6843] = 6734, + [6844] = 6568, + [6845] = 6717, + [6846] = 3517, + [6847] = 6375, + [6848] = 6324, + [6849] = 6620, + [6850] = 6714, + [6851] = 6851, + [6852] = 1149, + [6853] = 6323, + [6854] = 6371, + [6855] = 6596, + [6856] = 6392, + [6857] = 6502, + [6858] = 6712, + [6859] = 6594, + [6860] = 6594, + [6861] = 6392, + [6862] = 6321, + [6863] = 6863, + [6864] = 6864, + [6865] = 6865, + [6866] = 6318, + [6867] = 6502, + [6868] = 6497, + [6869] = 6499, + [6870] = 6618, + [6871] = 6733, + [6872] = 1208, + [6873] = 6310, + [6874] = 6314, + [6875] = 6317, + [6876] = 6876, + [6877] = 6497, + [6878] = 6486, + [6879] = 6879, + [6880] = 6405, + [6881] = 6491, + [6882] = 6488, + [6883] = 6310, + [6884] = 6620, + [6885] = 6488, + [6886] = 1152, + [6887] = 1153, + [6888] = 6371, + [6889] = 6491, + [6890] = 6605, + [6891] = 6418, + [6892] = 6405, + [6893] = 1157, + [6894] = 6599, + [6895] = 6731, + [6896] = 1123, + [6897] = 6486, + [6898] = 6298, + [6899] = 6485, + [6900] = 6583, + [6901] = 6729, + [6902] = 6499, + [6903] = 6573, + [6904] = 6904, + [6905] = 6558, + [6906] = 6596, + [6907] = 6304, + [6908] = 6301, + [6909] = 6573, + [6910] = 6485, + [6911] = 6312, + [6912] = 1166, + [6913] = 1121, + [6914] = 6657, + [6915] = 6599, + [6916] = 1116, + [6917] = 6583, + [6918] = 6605, + [6919] = 3510, + [6920] = 1021, + [6921] = 1192, + [6922] = 1185, + [6923] = 6620, + [6924] = 1105, + [6925] = 6301, + [6926] = 6440, + [6927] = 1179, + [6928] = 6497, + [6929] = 6680, + [6930] = 6362, + [6931] = 6931, + [6932] = 6418, + [6933] = 6300, + [6934] = 6303, + [6935] = 6663, + [6936] = 6662, + [6937] = 1173, + [6938] = 6938, [6939] = 6939, - [6940] = 6940, - [6941] = 6304, - [6942] = 6305, - [6943] = 6307, - [6944] = 6586, - [6945] = 6945, + [6940] = 6317, + [6941] = 6298, + [6942] = 6942, + [6943] = 1171, + [6944] = 6371, + [6945] = 6306, [6946] = 6946, - [6947] = 6947, - [6948] = 6948, + [6947] = 6308, + [6948] = 6309, [6949] = 6949, - [6950] = 6950, + [6950] = 6949, [6951] = 6951, [6952] = 6952, [6953] = 6953, @@ -11438,472 +11445,476 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6964] = 6964, [6965] = 6965, [6966] = 6966, - [6967] = 6946, - [6968] = 6964, - [6969] = 6969, + [6967] = 6967, + [6968] = 6968, + [6969] = 6949, [6970] = 6970, [6971] = 6971, - [6972] = 6972, + [6972] = 6966, [6973] = 6973, - [6974] = 6961, - [6975] = 6959, + [6974] = 6974, + [6975] = 6975, [6976] = 6976, - [6977] = 6977, - [6978] = 6956, - [6979] = 6955, - [6980] = 6954, - [6981] = 6981, - [6982] = 6982, + [6977] = 6965, + [6978] = 6963, + [6979] = 6979, + [6980] = 6959, + [6981] = 6958, + [6982] = 6961, [6983] = 6983, - [6984] = 6948, - [6985] = 6985, + [6984] = 6984, + [6985] = 6952, [6986] = 6986, [6987] = 6987, [6988] = 6988, [6989] = 6989, [6990] = 6990, [6991] = 6991, - [6992] = 6947, - [6993] = 6951, + [6992] = 6951, + [6993] = 6979, [6994] = 6994, - [6995] = 6995, - [6996] = 6977, - [6997] = 6997, - [6998] = 6981, - [6999] = 6966, + [6995] = 6953, + [6996] = 6996, + [6997] = 6956, + [6998] = 6998, + [6999] = 6999, [7000] = 7000, - [7001] = 7001, - [7002] = 6990, - [7003] = 6989, - [7004] = 6957, - [7005] = 6945, - [7006] = 7006, - [7007] = 6948, - [7008] = 7008, + [7001] = 6975, + [7002] = 7002, + [7003] = 7003, + [7004] = 7004, + [7005] = 6986, + [7006] = 6951, + [7007] = 6991, + [7008] = 6970, [7009] = 7009, - [7010] = 6954, - [7011] = 7011, - [7012] = 6959, - [7013] = 6961, - [7014] = 6973, - [7015] = 7015, - [7016] = 7016, - [7017] = 7017, - [7018] = 6946, + [7010] = 7010, + [7011] = 6952, + [7012] = 7012, + [7013] = 7013, + [7014] = 6958, + [7015] = 6962, + [7016] = 6963, + [7017] = 6965, + [7018] = 6971, [7019] = 7019, - [7020] = 6964, - [7021] = 7021, - [7022] = 7022, - [7023] = 6963, - [7024] = 6965, - [7025] = 6956, + [7020] = 7020, + [7021] = 6967, + [7022] = 6949, + [7023] = 7023, + [7024] = 6966, + [7025] = 7025, [7026] = 7026, [7027] = 7027, [7028] = 7028, - [7029] = 7029, + [7029] = 6961, [7030] = 7030, [7031] = 7031, - [7032] = 7032, + [7032] = 7013, [7033] = 7033, [7034] = 7034, - [7035] = 6962, + [7035] = 7035, [7036] = 7036, - [7037] = 6951, - [7038] = 6956, + [7037] = 7037, + [7038] = 6957, [7039] = 7039, [7040] = 7040, - [7041] = 6964, - [7042] = 6946, - [7043] = 6961, - [7044] = 6995, - [7045] = 6972, - [7046] = 7011, - [7047] = 6959, - [7048] = 7048, - [7049] = 6955, - [7050] = 7009, - [7051] = 6954, + [7041] = 7041, + [7042] = 7042, + [7043] = 6956, + [7044] = 7044, + [7045] = 7033, + [7046] = 6961, + [7047] = 7047, + [7048] = 7009, + [7049] = 6979, + [7050] = 7012, + [7051] = 6966, [7052] = 7052, - [7053] = 7053, - [7054] = 7054, - [7055] = 6948, - [7056] = 6997, - [7057] = 6972, - [7058] = 7058, + [7053] = 7034, + [7054] = 7010, + [7055] = 7013, + [7056] = 7056, + [7057] = 7057, + [7058] = 6949, [7059] = 6965, - [7060] = 6956, - [7061] = 7032, - [7062] = 7006, - [7063] = 7011, - [7064] = 6945, - [7065] = 6966, - [7066] = 7066, - [7067] = 6989, - [7068] = 6963, - [7069] = 6990, - [7070] = 6947, - [7071] = 7036, - [7072] = 6957, - [7073] = 7073, - [7074] = 6995, - [7075] = 7075, - [7076] = 7076, - [7077] = 7077, - [7078] = 7078, - [7079] = 6997, + [7060] = 6963, + [7061] = 7061, + [7062] = 6961, + [7063] = 6967, + [7064] = 6959, + [7065] = 6958, + [7066] = 6970, + [7067] = 7067, + [7068] = 6986, + [7069] = 7002, + [7070] = 6952, + [7071] = 6962, + [7072] = 7012, + [7073] = 6991, + [7074] = 7044, + [7075] = 6951, + [7076] = 7009, + [7077] = 6953, + [7078] = 7000, + [7079] = 7079, [7080] = 7080, - [7081] = 6952, + [7081] = 7081, [7082] = 7082, [7083] = 7083, - [7084] = 6995, + [7084] = 7084, [7085] = 7085, - [7086] = 6966, - [7087] = 6945, - [7088] = 7017, - [7089] = 7089, - [7090] = 7006, - [7091] = 7009, - [7092] = 7017, - [7093] = 6997, - [7094] = 7052, - [7095] = 7009, - [7096] = 6981, - [7097] = 7011, - [7098] = 7039, - [7099] = 7099, - [7100] = 7052, - [7101] = 6972, - [7102] = 7031, - [7103] = 7103, - [7104] = 7040, - [7105] = 7028, - [7106] = 6958, - [7107] = 6970, - [7108] = 6971, - [7109] = 6965, - [7110] = 6976, - [7111] = 7111, - [7112] = 6983, - [7113] = 6963, - [7114] = 7031, - [7115] = 6985, - [7116] = 6986, - [7117] = 6957, - [7118] = 7006, - [7119] = 6945, - [7120] = 6988, - [7121] = 6966, - [7122] = 7122, - [7123] = 6960, - [7124] = 7124, - [7125] = 7125, - [7126] = 7126, + [7086] = 7086, + [7087] = 7087, + [7088] = 7088, + [7089] = 7047, + [7090] = 7000, + [7091] = 7023, + [7092] = 7092, + [7093] = 7002, + [7094] = 6986, + [7095] = 6984, + [7096] = 7009, + [7097] = 7023, + [7098] = 6970, + [7099] = 7056, + [7100] = 7010, + [7101] = 7010, + [7102] = 7042, + [7103] = 7012, + [7104] = 6979, + [7105] = 7105, + [7106] = 7056, + [7107] = 7107, + [7108] = 6964, + [7109] = 7027, + [7110] = 6974, + [7111] = 6976, + [7112] = 7013, + [7113] = 6983, + [7114] = 7033, + [7115] = 6987, + [7116] = 6967, + [7117] = 7034, + [7118] = 6988, + [7119] = 6989, + [7120] = 6962, + [7121] = 6990, + [7122] = 6998, + [7123] = 6970, + [7124] = 6999, + [7125] = 6986, + [7126] = 7002, [7127] = 7127, - [7128] = 6951, - [7129] = 973, - [7130] = 7130, + [7128] = 7128, + [7129] = 7031, + [7130] = 6973, [7131] = 7131, - [7132] = 7132, + [7132] = 987, [7133] = 7133, [7134] = 7134, - [7135] = 7032, - [7136] = 7136, + [7135] = 7135, + [7136] = 6956, [7137] = 7137, - [7138] = 7027, + [7138] = 7138, [7139] = 7139, - [7140] = 7122, - [7141] = 6951, - [7142] = 7139, - [7143] = 7027, - [7144] = 7136, - [7145] = 7122, - [7146] = 7133, - [7147] = 6995, - [7148] = 7032, - [7149] = 7122, - [7150] = 7031, - [7151] = 7136, - [7152] = 7136, - [7153] = 6966, - [7154] = 7027, - [7155] = 6977, - [7156] = 6973, - [7157] = 6981, - [7158] = 7139, - [7159] = 7139, - [7160] = 6945, - [7161] = 1008, - [7162] = 6956, - [7163] = 7133, - [7164] = 6995, - [7165] = 7133, - [7166] = 7006, - [7167] = 7011, - [7168] = 7009, - [7169] = 7169, - [7170] = 7052, - [7171] = 7006, - [7172] = 6945, - [7173] = 6966, - [7174] = 6989, - [7175] = 6981, - [7176] = 7083, - [7177] = 7034, - [7178] = 6962, - [7179] = 7008, - [7180] = 6964, - [7181] = 6995, - [7182] = 6946, - [7183] = 7015, - [7184] = 7184, - [7185] = 7016, - [7186] = 7186, - [7187] = 7111, - [7188] = 6990, + [7140] = 7140, + [7141] = 7141, + [7142] = 7000, + [7143] = 6956, + [7144] = 7041, + [7145] = 7145, + [7146] = 7145, + [7147] = 7041, + [7148] = 7128, + [7149] = 7031, + [7150] = 7141, + [7151] = 7000, + [7152] = 7031, + [7153] = 7128, + [7154] = 7141, + [7155] = 7128, + [7156] = 7041, + [7157] = 7145, + [7158] = 7000, + [7159] = 7002, + [7160] = 6984, + [7161] = 7141, + [7162] = 7034, + [7163] = 7033, + [7164] = 976, + [7165] = 6975, + [7166] = 7145, + [7167] = 7000, + [7168] = 6971, + [7169] = 6961, + [7170] = 7170, + [7171] = 7012, + [7172] = 7010, + [7173] = 7173, + [7174] = 7056, + [7175] = 6970, + [7176] = 6986, + [7177] = 7002, + [7178] = 6984, + [7179] = 6970, + [7180] = 6966, + [7181] = 6984, + [7182] = 7002, + [7183] = 7037, + [7184] = 6957, + [7185] = 7000, + [7186] = 6966, + [7187] = 7187, + [7188] = 7002, [7189] = 7189, - [7190] = 7019, - [7191] = 7021, - [7192] = 6966, - [7193] = 7193, - [7194] = 7006, - [7195] = 6945, - [7196] = 7006, - [7197] = 7022, - [7198] = 7026, - [7199] = 7029, - [7200] = 7030, - [7201] = 7033, - [7202] = 6961, - [7203] = 6959, - [7204] = 6955, - [7205] = 7205, - [7206] = 7206, - [7207] = 7103, - [7208] = 6954, - [7209] = 7031, - [7210] = 7032, - [7211] = 7211, - [7212] = 6964, - [7213] = 7213, - [7214] = 6952, - [7215] = 7215, - [7216] = 7082, - [7217] = 6995, - [7218] = 7080, - [7219] = 7052, - [7220] = 7103, - [7221] = 6957, - [7222] = 6963, - [7223] = 6965, - [7224] = 7224, - [7225] = 6972, - [7226] = 6946, - [7227] = 6948, - [7228] = 7103, - [7229] = 6997, - [7230] = 6989, - [7231] = 6990, - [7232] = 7077, - [7233] = 6947, - [7234] = 6958, - [7235] = 6960, - [7236] = 6970, - [7237] = 7052, - [7238] = 7009, - [7239] = 6971, - [7240] = 6976, - [7241] = 7111, - [7242] = 6983, - [7243] = 6961, - [7244] = 6985, - [7245] = 7076, - [7246] = 7011, - [7247] = 6977, - [7248] = 6973, - [7249] = 6986, - [7250] = 6962, - [7251] = 7122, - [7252] = 6959, - [7253] = 6988, - [7254] = 7136, - [7255] = 7011, - [7256] = 7009, - [7257] = 7027, - [7258] = 7006, - [7259] = 6945, - [7260] = 6966, - [7261] = 7075, - [7262] = 6952, - [7263] = 7139, - [7264] = 7040, - [7265] = 7133, - [7266] = 6995, - [7267] = 7189, - [7268] = 6995, - [7269] = 7031, - [7270] = 7032, - [7271] = 6966, - [7272] = 6945, - [7273] = 7006, - [7274] = 7274, - [7275] = 6958, - [7276] = 6960, - [7277] = 6977, - [7278] = 7052, - [7279] = 6973, - [7280] = 7009, - [7281] = 6970, - [7282] = 7048, - [7283] = 7053, - [7284] = 7031, - [7285] = 7032, - [7286] = 6971, - [7287] = 7008, - [7288] = 6976, - [7289] = 7015, - [7290] = 7016, - [7291] = 7011, - [7292] = 7075, - [7293] = 7076, - [7294] = 7077, - [7295] = 7031, - [7296] = 7032, + [7190] = 7190, + [7191] = 7191, + [7192] = 6991, + [7193] = 6986, + [7194] = 6986, + [7195] = 6970, + [7196] = 7196, + [7197] = 7019, + [7198] = 7020, + [7199] = 7025, + [7200] = 7026, + [7201] = 7028, + [7202] = 7030, + [7203] = 7035, + [7204] = 7107, + [7205] = 7036, + [7206] = 7039, + [7207] = 7040, + [7208] = 7208, + [7209] = 6965, + [7210] = 6957, + [7211] = 6963, + [7212] = 7033, + [7213] = 7034, + [7214] = 7087, + [7215] = 6959, + [7216] = 7216, + [7217] = 6958, + [7218] = 7218, + [7219] = 7086, + [7220] = 7220, + [7221] = 7084, + [7222] = 7222, + [7223] = 7056, + [7224] = 7107, + [7225] = 7047, + [7226] = 6962, + [7227] = 7227, + [7228] = 6967, + [7229] = 6949, + [7230] = 7107, + [7231] = 7056, + [7232] = 6952, + [7233] = 7010, + [7234] = 7013, + [7235] = 7081, + [7236] = 6979, + [7237] = 6991, + [7238] = 6951, + [7239] = 6953, + [7240] = 7012, + [7241] = 7009, + [7242] = 6964, + [7243] = 6973, + [7244] = 6974, + [7245] = 6976, + [7246] = 6965, + [7247] = 6983, + [7248] = 7080, + [7249] = 6987, + [7250] = 6988, + [7251] = 6989, + [7252] = 6975, + [7253] = 6971, + [7254] = 7041, + [7255] = 6963, + [7256] = 6990, + [7257] = 7128, + [7258] = 7031, + [7259] = 7012, + [7260] = 7010, + [7261] = 7079, + [7262] = 6970, + [7263] = 6986, + [7264] = 7002, + [7265] = 6998, + [7266] = 7141, + [7267] = 6957, + [7268] = 7145, + [7269] = 7000, + [7270] = 7173, + [7271] = 6999, + [7272] = 7000, + [7273] = 7056, + [7274] = 7002, + [7275] = 6986, + [7276] = 6970, + [7277] = 7277, + [7278] = 6975, + [7279] = 7047, + [7280] = 6971, + [7281] = 7010, + [7282] = 7033, + [7283] = 7034, + [7284] = 6964, + [7285] = 6973, + [7286] = 7052, + [7287] = 7057, + [7288] = 7033, + [7289] = 7034, + [7290] = 6974, + [7291] = 7019, + [7292] = 6976, + [7293] = 7020, + [7294] = 7012, + [7295] = 7033, + [7296] = 7079, [7297] = 7080, - [7298] = 7019, - [7299] = 7082, - [7300] = 7083, - [7301] = 7021, - [7302] = 7039, - [7303] = 7022, - [7304] = 6962, - [7305] = 7111, - [7306] = 7028, - [7307] = 7026, - [7308] = 6955, - [7309] = 7029, - [7310] = 7030, - [7311] = 7103, - [7312] = 7033, - [7313] = 7030, - [7314] = 7029, - [7315] = 7052, - [7316] = 6983, - [7317] = 7033, - [7318] = 7048, - [7319] = 7053, - [7320] = 6985, - [7321] = 6986, - [7322] = 7026, - [7323] = 7022, - [7324] = 6954, - [7325] = 6988, - [7326] = 7021, - [7327] = 7075, - [7328] = 7076, - [7329] = 7077, - [7330] = 6981, - [7331] = 7031, + [7298] = 7081, + [7299] = 7034, + [7300] = 7025, + [7301] = 7084, + [7302] = 7026, + [7303] = 7086, + [7304] = 7087, + [7305] = 7028, + [7306] = 7042, + [7307] = 7030, + [7308] = 7040, + [7309] = 6983, + [7310] = 7027, + [7311] = 6959, + [7312] = 7035, + [7313] = 7039, + [7314] = 7107, + [7315] = 7036, + [7316] = 7035, + [7317] = 7030, + [7318] = 7036, + [7319] = 7056, + [7320] = 7039, + [7321] = 6958, + [7322] = 7052, + [7323] = 7057, + [7324] = 6987, + [7325] = 7040, + [7326] = 7028, + [7327] = 7026, + [7328] = 6988, + [7329] = 7025, + [7330] = 6989, + [7331] = 7079, [7332] = 7080, - [7333] = 7032, - [7334] = 7082, - [7335] = 7083, - [7336] = 7103, - [7337] = 7039, - [7338] = 7338, - [7339] = 6981, - [7340] = 7028, - [7341] = 7031, - [7342] = 7019, - [7343] = 7343, - [7344] = 7016, - [7345] = 7015, - [7346] = 7048, - [7347] = 7053, - [7348] = 7032, - [7349] = 7008, - [7350] = 7040, - [7351] = 7103, - [7352] = 7008, - [7353] = 7085, - [7354] = 7015, - [7355] = 7075, - [7356] = 7076, - [7357] = 7077, + [7333] = 7081, + [7334] = 6990, + [7335] = 6984, + [7336] = 7084, + [7337] = 7033, + [7338] = 7086, + [7339] = 7087, + [7340] = 7340, + [7341] = 7042, + [7342] = 7034, + [7343] = 7020, + [7344] = 7027, + [7345] = 7019, + [7346] = 7346, + [7347] = 6998, + [7348] = 6999, + [7349] = 7107, + [7350] = 7052, + [7351] = 7057, + [7352] = 6984, + [7353] = 7033, + [7354] = 7034, + [7355] = 7107, + [7356] = 7088, + [7357] = 7056, [7358] = 7358, - [7359] = 7016, + [7359] = 7079, [7360] = 7080, - [7361] = 7019, - [7362] = 7082, - [7363] = 7083, - [7364] = 7021, - [7365] = 7039, - [7366] = 6988, - [7367] = 6986, - [7368] = 7028, - [7369] = 6985, - [7370] = 6983, - [7371] = 7048, - [7372] = 7053, - [7373] = 7022, - [7374] = 7111, - [7375] = 6976, - [7376] = 7026, - [7377] = 7029, - [7378] = 7076, - [7379] = 7077, - [7380] = 7380, - [7381] = 6948, + [7361] = 7081, + [7362] = 7019, + [7363] = 6999, + [7364] = 7084, + [7365] = 7020, + [7366] = 7086, + [7367] = 7087, + [7368] = 6998, + [7369] = 7042, + [7370] = 6990, + [7371] = 6989, + [7372] = 7027, + [7373] = 6988, + [7374] = 7025, + [7375] = 7052, + [7376] = 7057, + [7377] = 7026, + [7378] = 6987, + [7379] = 6983, + [7380] = 7028, + [7381] = 7381, [7382] = 7080, - [7383] = 7030, - [7384] = 7082, - [7385] = 7083, - [7386] = 7386, - [7387] = 7039, - [7388] = 7028, - [7389] = 7053, - [7390] = 6971, - [7391] = 6970, - [7392] = 7033, - [7393] = 7386, - [7394] = 7380, - [7395] = 6960, - [7396] = 7052, - [7397] = 7052, - [7398] = 7009, - [7399] = 6958, - [7400] = 7400, - [7401] = 6989, - [7402] = 7040, - [7403] = 6990, - [7404] = 7048, - [7405] = 7009, - [7406] = 7085, - [7407] = 7011, - [7408] = 6947, - [7409] = 6952, - [7410] = 7011, - [7411] = 6981, - [7412] = 7031, - [7413] = 7032, - [7414] = 7386, - [7415] = 7380, - [7416] = 7103, - [7417] = 7103, - [7418] = 7085, - [7419] = 7386, - [7420] = 7380, - [7421] = 7032, - [7422] = 7031, - [7423] = 7085, - [7424] = 7386, - [7425] = 7380, - [7426] = 6981, - [7427] = 6965, - [7428] = 7085, - [7429] = 7386, - [7430] = 7380, - [7431] = 6972, - [7432] = 7432, + [7383] = 7081, + [7384] = 6952, + [7385] = 7385, + [7386] = 7084, + [7387] = 7030, + [7388] = 7086, + [7389] = 7087, + [7390] = 7057, + [7391] = 7042, + [7392] = 7027, + [7393] = 6976, + [7394] = 6974, + [7395] = 7035, + [7396] = 6973, + [7397] = 7385, + [7398] = 7381, + [7399] = 7036, + [7400] = 7056, + [7401] = 7010, + [7402] = 6964, + [7403] = 7403, + [7404] = 6991, + [7405] = 6951, + [7406] = 7039, + [7407] = 7040, + [7408] = 7052, + [7409] = 7047, + [7410] = 7088, + [7411] = 7012, + [7412] = 6953, + [7413] = 7010, + [7414] = 6984, + [7415] = 7033, + [7416] = 7034, + [7417] = 7012, + [7418] = 7385, + [7419] = 7381, + [7420] = 7107, + [7421] = 7107, + [7422] = 7088, + [7423] = 7385, + [7424] = 7381, + [7425] = 7034, + [7426] = 7033, + [7427] = 7088, + [7428] = 7385, + [7429] = 7381, + [7430] = 6984, + [7431] = 7013, + [7432] = 7088, + [7433] = 7385, + [7434] = 7381, + [7435] = 6979, + [7436] = 7436, }; static TSCharacterRange extras_character_set_1[] = { @@ -12040,6 +12051,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 764, 'l', 681, 'm', 789, @@ -12093,6 +12105,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 764, 'l', 681, 'm', 789, @@ -12249,6 +12262,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 764, 'l', 681, 'm', 789, @@ -12302,6 +12316,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 754, 'l', 681, 'm', 789, @@ -12359,6 +12374,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 764, 'l', 681, 'm', 789, @@ -12411,6 +12427,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 764, 'l', 681, 'm', 789, @@ -12465,6 +12482,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 772, 'f', 859, + 'g', 744, 'i', 763, 'l', 681, 'm', 789, @@ -12520,6 +12538,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 739, 'f', 859, + 'g', 744, 'i', 763, 'l', 681, 'm', 789, @@ -12574,6 +12593,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 754, 'l', 681, 'm', 789, @@ -13266,6 +13286,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 766, 'l', 681, 'm', 789, @@ -13319,6 +13340,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 868, 'f', 859, + 'g', 744, 'i', 766, 'l', 681, 'm', 789, @@ -13368,6 +13390,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 766, 'l', 681, 'm', 789, @@ -13504,6 +13527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 772, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -13551,6 +13575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 739, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -13598,6 +13623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 772, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -13645,6 +13671,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 739, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -13692,6 +13719,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 772, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -13739,6 +13767,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 739, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -13786,6 +13815,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 766, 'l', 681, 'm', 789, @@ -13830,6 +13860,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -14547,7 +14578,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(896); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(917); + if (lookahead == 'e') ADVANCE(919); END_STATE(); case 141: if (lookahead == 'e') ADVANCE(926); @@ -14674,7 +14705,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(87); END_STATE(); case 181: - if (lookahead == 'l') ADVANCE(924); + if (lookahead == 'l') ADVANCE(914); END_STATE(); case 182: if (lookahead == 'l') ADVANCE(908); @@ -14929,13 +14960,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(438); END_STATE(); case 261: - if (lookahead == 's') ADVANCE(919); + if (lookahead == 's') ADVANCE(921); END_STATE(); case 262: - if (lookahead == 's') ADVANCE(914); + if (lookahead == 's') ADVANCE(916); END_STATE(); case 263: - if (lookahead == 's') ADVANCE(921); + if (lookahead == 's') ADVANCE(923); END_STATE(); case 264: if (lookahead == 's') ADVANCE(372); @@ -15351,6 +15382,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 859, + 'g', 744, 'i', 763, 'l', 681, 'm', 789, @@ -15407,6 +15439,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 739, 'f', 859, + 'g', 744, 'i', 763, 'l', 681, 'm', 789, @@ -15566,6 +15599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -15614,6 +15648,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 739, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -15662,6 +15697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -15710,6 +15746,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 739, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -15758,6 +15795,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -15806,6 +15844,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 739, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -16733,12 +16772,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 565: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(916); + if (lookahead == 's') ADVANCE(918); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(570); END_STATE(); case 566: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(923); + if (lookahead == 's') ADVANCE(925); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(570); END_STATE(); case 567: @@ -16954,6 +16993,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 772, 'f', 859, + 'g', 744, 'i', 763, 'l', 681, 'm', 789, @@ -16981,6 +17021,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 739, 'f', 859, + 'g', 744, 'i', 763, 'l', 681, 'm', 789, @@ -17008,6 +17049,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 859, + 'g', 744, 'i', 763, 'l', 681, 'm', 789, @@ -17035,6 +17077,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 764, 'l', 681, 'm', 789, @@ -17062,6 +17105,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 739, 'f', 859, + 'g', 744, 'i', 763, 'l', 681, 'm', 789, @@ -17089,6 +17133,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 764, 'l', 681, 'm', 789, @@ -17115,6 +17160,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 764, 'l', 681, 'm', 789, @@ -17141,6 +17187,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 754, 'l', 681, 'm', 789, @@ -17318,6 +17365,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 772, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17345,6 +17393,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 739, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17372,6 +17421,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 772, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17399,6 +17449,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 772, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17426,6 +17477,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 739, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17453,6 +17505,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 680, 'e', 739, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17480,6 +17533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17507,6 +17561,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17534,6 +17589,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17560,6 +17616,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 766, 'l', 681, 'm', 789, @@ -17587,6 +17644,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 739, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17614,6 +17672,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 739, 'f', 859, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17641,6 +17700,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 772, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17668,6 +17728,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 739, 'f', 725, + 'g', 744, 'i', 765, 'l', 681, 'm', 789, @@ -17695,6 +17756,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 766, 'l', 681, 'm', 789, @@ -17721,6 +17783,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 869, 'f', 859, + 'g', 744, 'i', 766, 'l', 681, 'm', 789, @@ -17747,6 +17810,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'd', 700, 'e', 868, 'f', 859, + 'g', 744, 'i', 766, 'l', 681, 'm', 789, @@ -18340,7 +18404,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 691: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'e') ADVANCE(918); + if (lookahead == 'e') ADVANCE(920); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 692: @@ -18633,7 +18697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 736: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'l') ADVANCE(925); + if (lookahead == 'l') ADVANCE(915); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 737: @@ -19197,19 +19261,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 826: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (lookahead == 's') ADVANCE(920); + if (lookahead == 's') ADVANCE(922); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 827: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (lookahead == 's') ADVANCE(915); + if (lookahead == 's') ADVANCE(917); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 828: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (lookahead == 's') ADVANCE(922); + if (lookahead == 's') ADVANCE(924); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 829: @@ -19680,53 +19744,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 914: - ACCEPT_TOKEN(anon_sym_satisfies); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 915: - ACCEPT_TOKEN(anon_sym_satisfies); + ACCEPT_TOKEN(anon_sym_global); if (lookahead == '\\') ADVANCE(299); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 916: ACCEPT_TOKEN(anon_sym_satisfies); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(570); END_STATE(); case 917: - ACCEPT_TOKEN(anon_sym_require); - END_STATE(); - case 918: - ACCEPT_TOKEN(anon_sym_require); + ACCEPT_TOKEN(anon_sym_satisfies); if (lookahead == '\\') ADVANCE(299); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); + case 918: + ACCEPT_TOKEN(anon_sym_satisfies); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(570); + END_STATE(); case 919: - ACCEPT_TOKEN(anon_sym_extends); + ACCEPT_TOKEN(anon_sym_require); END_STATE(); case 920: - ACCEPT_TOKEN(anon_sym_extends); + ACCEPT_TOKEN(anon_sym_require); if (lookahead == '\\') ADVANCE(299); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 921: - ACCEPT_TOKEN(anon_sym_implements); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 922: - ACCEPT_TOKEN(anon_sym_implements); + ACCEPT_TOKEN(anon_sym_extends); if (lookahead == '\\') ADVANCE(299); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 923: ACCEPT_TOKEN(anon_sym_implements); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(570); END_STATE(); case 924: - ACCEPT_TOKEN(anon_sym_global); - END_STATE(); - case 925: - ACCEPT_TOKEN(anon_sym_global); + ACCEPT_TOKEN(anon_sym_implements); if (lookahead == '\\') ADVANCE(299); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); + case 925: + ACCEPT_TOKEN(anon_sym_implements); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(570); + END_STATE(); case 926: ACCEPT_TOKEN(anon_sym_interface); END_STATE(); @@ -20389,19 +20453,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 351, .external_lex_state = 2}, [121] = {.lex_state = 351, .external_lex_state = 2}, [122] = {.lex_state = 351, .external_lex_state = 2}, - [123] = {.lex_state = 32, .external_lex_state = 2}, + [123] = {.lex_state = 3, .external_lex_state = 4}, [124] = {.lex_state = 32, .external_lex_state = 2}, - [125] = {.lex_state = 3, .external_lex_state = 4}, + [125] = {.lex_state = 32, .external_lex_state = 2}, [126] = {.lex_state = 32, .external_lex_state = 2}, - [127] = {.lex_state = 3, .external_lex_state = 4}, + [127] = {.lex_state = 32, .external_lex_state = 2}, [128] = {.lex_state = 32, .external_lex_state = 2}, [129] = {.lex_state = 32, .external_lex_state = 2}, [130] = {.lex_state = 32, .external_lex_state = 2}, - [131] = {.lex_state = 32, .external_lex_state = 2}, - [132] = {.lex_state = 32, .external_lex_state = 2}, + [131] = {.lex_state = 3, .external_lex_state = 4}, + [132] = {.lex_state = 3, .external_lex_state = 4}, [133] = {.lex_state = 32, .external_lex_state = 2}, [134] = {.lex_state = 32, .external_lex_state = 2}, - [135] = {.lex_state = 3, .external_lex_state = 4}, + [135] = {.lex_state = 32, .external_lex_state = 2}, [136] = {.lex_state = 3, .external_lex_state = 3}, [137] = {.lex_state = 3, .external_lex_state = 3}, [138] = {.lex_state = 3, .external_lex_state = 3}, @@ -20415,29 +20479,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [146] = {.lex_state = 32, .external_lex_state = 2}, [147] = {.lex_state = 32, .external_lex_state = 2}, [148] = {.lex_state = 32, .external_lex_state = 2}, - [149] = {.lex_state = 32, .external_lex_state = 2}, + [149] = {.lex_state = 3, .external_lex_state = 4}, [150] = {.lex_state = 3, .external_lex_state = 3}, [151] = {.lex_state = 3, .external_lex_state = 4}, - [152] = {.lex_state = 3, .external_lex_state = 4}, + [152] = {.lex_state = 3, .external_lex_state = 3}, [153] = {.lex_state = 3, .external_lex_state = 4}, - [154] = {.lex_state = 7, .external_lex_state = 4}, - [155] = {.lex_state = 3, .external_lex_state = 4}, - [156] = {.lex_state = 3, .external_lex_state = 3}, - [157] = {.lex_state = 3, .external_lex_state = 4}, - [158] = {.lex_state = 32, .external_lex_state = 2}, + [154] = {.lex_state = 32, .external_lex_state = 2}, + [155] = {.lex_state = 32, .external_lex_state = 2}, + [156] = {.lex_state = 3, .external_lex_state = 4}, + [157] = {.lex_state = 7, .external_lex_state = 4}, + [158] = {.lex_state = 7, .external_lex_state = 4}, [159] = {.lex_state = 32, .external_lex_state = 2}, - [160] = {.lex_state = 7, .external_lex_state = 4}, - [161] = {.lex_state = 3, .external_lex_state = 4}, - [162] = {.lex_state = 3, .external_lex_state = 3}, - [163] = {.lex_state = 3, .external_lex_state = 3}, + [160] = {.lex_state = 32, .external_lex_state = 2}, + [161] = {.lex_state = 3, .external_lex_state = 3}, + [162] = {.lex_state = 3, .external_lex_state = 4}, + [163] = {.lex_state = 3, .external_lex_state = 4}, [164] = {.lex_state = 7, .external_lex_state = 4}, - [165] = {.lex_state = 3, .external_lex_state = 3}, - [166] = {.lex_state = 3, .external_lex_state = 4}, - [167] = {.lex_state = 32, .external_lex_state = 2}, - [168] = {.lex_state = 7, .external_lex_state = 4}, - [169] = {.lex_state = 3, .external_lex_state = 4}, - [170] = {.lex_state = 32, .external_lex_state = 2}, - [171] = {.lex_state = 3, .external_lex_state = 3}, + [165] = {.lex_state = 3, .external_lex_state = 4}, + [166] = {.lex_state = 3, .external_lex_state = 3}, + [167] = {.lex_state = 3, .external_lex_state = 3}, + [168] = {.lex_state = 32, .external_lex_state = 2}, + [169] = {.lex_state = 3, .external_lex_state = 3}, + [170] = {.lex_state = 7, .external_lex_state = 4}, + [171] = {.lex_state = 3, .external_lex_state = 4}, [172] = {.lex_state = 3, .external_lex_state = 3}, [173] = {.lex_state = 3, .external_lex_state = 3}, [174] = {.lex_state = 3, .external_lex_state = 3}, @@ -20445,31 +20509,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [176] = {.lex_state = 3, .external_lex_state = 3}, [177] = {.lex_state = 3, .external_lex_state = 3}, [178] = {.lex_state = 3, .external_lex_state = 3}, - [179] = {.lex_state = 8, .external_lex_state = 3}, - [180] = {.lex_state = 3, .external_lex_state = 3}, - [181] = {.lex_state = 8, .external_lex_state = 3}, - [182] = {.lex_state = 3, .external_lex_state = 3}, + [179] = {.lex_state = 3, .external_lex_state = 3}, + [180] = {.lex_state = 3, .external_lex_state = 4}, + [181] = {.lex_state = 3, .external_lex_state = 3}, + [182] = {.lex_state = 8, .external_lex_state = 3}, [183] = {.lex_state = 3, .external_lex_state = 4}, - [184] = {.lex_state = 3, .external_lex_state = 4}, - [185] = {.lex_state = 3, .external_lex_state = 3}, + [184] = {.lex_state = 8, .external_lex_state = 3}, + [185] = {.lex_state = 8, .external_lex_state = 3}, [186] = {.lex_state = 3, .external_lex_state = 3}, - [187] = {.lex_state = 8, .external_lex_state = 3}, + [187] = {.lex_state = 3, .external_lex_state = 3}, [188] = {.lex_state = 3, .external_lex_state = 3}, [189] = {.lex_state = 3, .external_lex_state = 4}, - [190] = {.lex_state = 3, .external_lex_state = 3}, + [190] = {.lex_state = 7, .external_lex_state = 3}, [191] = {.lex_state = 7, .external_lex_state = 3}, [192] = {.lex_state = 3, .external_lex_state = 3}, - [193] = {.lex_state = 7, .external_lex_state = 3}, + [193] = {.lex_state = 3, .external_lex_state = 3}, [194] = {.lex_state = 3, .external_lex_state = 3}, - [195] = {.lex_state = 7, .external_lex_state = 3}, - [196] = {.lex_state = 3, .external_lex_state = 3}, - [197] = {.lex_state = 7, .external_lex_state = 3}, - [198] = {.lex_state = 3, .external_lex_state = 3}, + [195] = {.lex_state = 3, .external_lex_state = 3}, + [196] = {.lex_state = 7, .external_lex_state = 3}, + [197] = {.lex_state = 3, .external_lex_state = 3}, + [198] = {.lex_state = 7, .external_lex_state = 3}, [199] = {.lex_state = 3, .external_lex_state = 3}, [200] = {.lex_state = 3, .external_lex_state = 3}, [201] = {.lex_state = 3, .external_lex_state = 3}, - [202] = {.lex_state = 32, .external_lex_state = 2}, - [203] = {.lex_state = 3, .external_lex_state = 3}, + [202] = {.lex_state = 3, .external_lex_state = 3}, + [203] = {.lex_state = 32, .external_lex_state = 2}, [204] = {.lex_state = 3, .external_lex_state = 3}, [205] = {.lex_state = 3, .external_lex_state = 3}, [206] = {.lex_state = 3, .external_lex_state = 3}, @@ -20493,14 +20557,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [224] = {.lex_state = 32, .external_lex_state = 2}, [225] = {.lex_state = 32, .external_lex_state = 2}, [226] = {.lex_state = 32, .external_lex_state = 2}, - [227] = {.lex_state = 10, .external_lex_state = 4}, - [228] = {.lex_state = 9, .external_lex_state = 4}, - [229] = {.lex_state = 9, .external_lex_state = 3}, + [227] = {.lex_state = 9, .external_lex_state = 4}, + [228] = {.lex_state = 9, .external_lex_state = 3}, + [229] = {.lex_state = 10, .external_lex_state = 4}, [230] = {.lex_state = 9, .external_lex_state = 3}, - [231] = {.lex_state = 13, .external_lex_state = 3}, - [232] = {.lex_state = 9, .external_lex_state = 4}, - [233] = {.lex_state = 9, .external_lex_state = 3}, - [234] = {.lex_state = 10, .external_lex_state = 3}, + [231] = {.lex_state = 9, .external_lex_state = 4}, + [232] = {.lex_state = 13, .external_lex_state = 3}, + [233] = {.lex_state = 10, .external_lex_state = 3}, + [234] = {.lex_state = 9, .external_lex_state = 3}, [235] = {.lex_state = 9, .external_lex_state = 3}, [236] = {.lex_state = 9, .external_lex_state = 3}, [237] = {.lex_state = 44, .external_lex_state = 2}, @@ -20516,228 +20580,228 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [247] = {.lex_state = 44, .external_lex_state = 2}, [248] = {.lex_state = 44, .external_lex_state = 2}, [249] = {.lex_state = 16, .external_lex_state = 4}, - [250] = {.lex_state = 14, .external_lex_state = 4}, - [251] = {.lex_state = 14, .external_lex_state = 3}, + [250] = {.lex_state = 14, .external_lex_state = 3}, + [251] = {.lex_state = 14, .external_lex_state = 4}, [252] = {.lex_state = 14, .external_lex_state = 3}, [253] = {.lex_state = 14, .external_lex_state = 3}, [254] = {.lex_state = 14, .external_lex_state = 3}, - [255] = {.lex_state = 14, .external_lex_state = 4}, - [256] = {.lex_state = 14, .external_lex_state = 3}, - [257] = {.lex_state = 14, .external_lex_state = 3}, - [258] = {.lex_state = 17, .external_lex_state = 3}, - [259] = {.lex_state = 14, .external_lex_state = 3}, - [260] = {.lex_state = 34, .external_lex_state = 2}, - [261] = {.lex_state = 14, .external_lex_state = 3}, + [255] = {.lex_state = 34, .external_lex_state = 2}, + [256] = {.lex_state = 34, .external_lex_state = 2}, + [257] = {.lex_state = 34, .external_lex_state = 2}, + [258] = {.lex_state = 34, .external_lex_state = 2}, + [259] = {.lex_state = 34, .external_lex_state = 2}, + [260] = {.lex_state = 14, .external_lex_state = 3}, + [261] = {.lex_state = 34, .external_lex_state = 2}, [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 14, .external_lex_state = 3}, - [264] = {.lex_state = 16, .external_lex_state = 3}, - [265] = {.lex_state = 34, .external_lex_state = 2}, + [263] = {.lex_state = 34, .external_lex_state = 2}, + [264] = {.lex_state = 34, .external_lex_state = 2}, + [265] = {.lex_state = 14, .external_lex_state = 3}, [266] = {.lex_state = 34, .external_lex_state = 2}, [267] = {.lex_state = 34, .external_lex_state = 2}, - [268] = {.lex_state = 34, .external_lex_state = 2}, - [269] = {.lex_state = 34, .external_lex_state = 2}, + [268] = {.lex_state = 17, .external_lex_state = 3}, + [269] = {.lex_state = 14, .external_lex_state = 4}, [270] = {.lex_state = 34, .external_lex_state = 2}, [271] = {.lex_state = 34, .external_lex_state = 2}, [272] = {.lex_state = 34, .external_lex_state = 2}, - [273] = {.lex_state = 14, .external_lex_state = 3}, - [274] = {.lex_state = 34, .external_lex_state = 2}, - [275] = {.lex_state = 34, .external_lex_state = 2}, + [273] = {.lex_state = 34, .external_lex_state = 2}, + [274] = {.lex_state = 16, .external_lex_state = 3}, + [275] = {.lex_state = 14, .external_lex_state = 3}, [276] = {.lex_state = 34, .external_lex_state = 2}, - [277] = {.lex_state = 34, .external_lex_state = 2}, + [277] = {.lex_state = 14, .external_lex_state = 3}, [278] = {.lex_state = 34, .external_lex_state = 2}, [279] = {.lex_state = 34, .external_lex_state = 2}, [280] = {.lex_state = 34, .external_lex_state = 2}, [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 34, .external_lex_state = 2}, - [283] = {.lex_state = 34, .external_lex_state = 2}, + [282] = {.lex_state = 14, .external_lex_state = 3}, + [283] = {.lex_state = 43, .external_lex_state = 2}, [284] = {.lex_state = 33, .external_lex_state = 5}, - [285] = {.lex_state = 43, .external_lex_state = 2}, - [286] = {.lex_state = 33, .external_lex_state = 2}, - [287] = {.lex_state = 43, .external_lex_state = 2}, - [288] = {.lex_state = 34, .external_lex_state = 2}, + [285] = {.lex_state = 14, .external_lex_state = 3}, + [286] = {.lex_state = 43, .external_lex_state = 2}, + [287] = {.lex_state = 34, .external_lex_state = 2}, + [288] = {.lex_state = 43, .external_lex_state = 2}, [289] = {.lex_state = 43, .external_lex_state = 2}, [290] = {.lex_state = 43, .external_lex_state = 2}, - [291] = {.lex_state = 43, .external_lex_state = 2}, + [291] = {.lex_state = 33, .external_lex_state = 2}, [292] = {.lex_state = 34, .external_lex_state = 2}, [293] = {.lex_state = 34, .external_lex_state = 2}, [294] = {.lex_state = 33, .external_lex_state = 2}, - [295] = {.lex_state = 12, .external_lex_state = 4}, - [296] = {.lex_state = 12, .external_lex_state = 4}, + [295] = {.lex_state = 34, .external_lex_state = 2}, + [296] = {.lex_state = 34, .external_lex_state = 2}, [297] = {.lex_state = 34, .external_lex_state = 2}, [298] = {.lex_state = 34, .external_lex_state = 2}, [299] = {.lex_state = 12, .external_lex_state = 4}, - [300] = {.lex_state = 34, .external_lex_state = 2}, + [300] = {.lex_state = 12, .external_lex_state = 4}, [301] = {.lex_state = 34, .external_lex_state = 2}, [302] = {.lex_state = 12, .external_lex_state = 4}, - [303] = {.lex_state = 12, .external_lex_state = 4}, + [303] = {.lex_state = 33, .external_lex_state = 2}, [304] = {.lex_state = 12, .external_lex_state = 4}, [305] = {.lex_state = 12, .external_lex_state = 4}, - [306] = {.lex_state = 12, .external_lex_state = 4}, - [307] = {.lex_state = 12, .external_lex_state = 4}, - [308] = {.lex_state = 12, .external_lex_state = 4}, - [309] = {.lex_state = 12, .external_lex_state = 4}, - [310] = {.lex_state = 12, .external_lex_state = 4}, + [306] = {.lex_state = 348, .external_lex_state = 4}, + [307] = {.lex_state = 34, .external_lex_state = 2}, + [308] = {.lex_state = 34, .external_lex_state = 2}, + [309] = {.lex_state = 34, .external_lex_state = 2}, + [310] = {.lex_state = 33, .external_lex_state = 2}, [311] = {.lex_state = 12, .external_lex_state = 4}, - [312] = {.lex_state = 11, .external_lex_state = 4}, - [313] = {.lex_state = 34, .external_lex_state = 2}, - [314] = {.lex_state = 12, .external_lex_state = 4}, - [315] = {.lex_state = 33, .external_lex_state = 2}, - [316] = {.lex_state = 12, .external_lex_state = 4}, - [317] = {.lex_state = 12, .external_lex_state = 4}, - [318] = {.lex_state = 12, .external_lex_state = 4}, + [312] = {.lex_state = 12, .external_lex_state = 4}, + [313] = {.lex_state = 12, .external_lex_state = 4}, + [314] = {.lex_state = 34, .external_lex_state = 2}, + [315] = {.lex_state = 12, .external_lex_state = 4}, + [316] = {.lex_state = 348, .external_lex_state = 4}, + [317] = {.lex_state = 348, .external_lex_state = 4}, + [318] = {.lex_state = 348, .external_lex_state = 4}, [319] = {.lex_state = 12, .external_lex_state = 4}, - [320] = {.lex_state = 12, .external_lex_state = 4}, - [321] = {.lex_state = 11, .external_lex_state = 4}, + [320] = {.lex_state = 34, .external_lex_state = 2}, + [321] = {.lex_state = 12, .external_lex_state = 4}, [322] = {.lex_state = 12, .external_lex_state = 4}, - [323] = {.lex_state = 12, .external_lex_state = 4}, - [324] = {.lex_state = 348, .external_lex_state = 4}, - [325] = {.lex_state = 11, .external_lex_state = 4}, - [326] = {.lex_state = 348, .external_lex_state = 4}, + [323] = {.lex_state = 33, .external_lex_state = 2}, + [324] = {.lex_state = 34, .external_lex_state = 2}, + [325] = {.lex_state = 12, .external_lex_state = 4}, + [326] = {.lex_state = 12, .external_lex_state = 4}, [327] = {.lex_state = 11, .external_lex_state = 4}, [328] = {.lex_state = 12, .external_lex_state = 4}, - [329] = {.lex_state = 348, .external_lex_state = 4}, - [330] = {.lex_state = 12, .external_lex_state = 4}, - [331] = {.lex_state = 12, .external_lex_state = 4}, - [332] = {.lex_state = 348, .external_lex_state = 4}, - [333] = {.lex_state = 12, .external_lex_state = 4}, + [329] = {.lex_state = 12, .external_lex_state = 4}, + [330] = {.lex_state = 33, .external_lex_state = 2}, + [331] = {.lex_state = 33, .external_lex_state = 2}, + [332] = {.lex_state = 12, .external_lex_state = 4}, + [333] = {.lex_state = 34, .external_lex_state = 2}, [334] = {.lex_state = 12, .external_lex_state = 4}, - [335] = {.lex_state = 12, .external_lex_state = 4}, + [335] = {.lex_state = 11, .external_lex_state = 4}, [336] = {.lex_state = 12, .external_lex_state = 4}, - [337] = {.lex_state = 12, .external_lex_state = 4}, - [338] = {.lex_state = 348, .external_lex_state = 4}, - [339] = {.lex_state = 34, .external_lex_state = 2}, - [340] = {.lex_state = 348, .external_lex_state = 4}, - [341] = {.lex_state = 348, .external_lex_state = 4}, + [337] = {.lex_state = 11, .external_lex_state = 4}, + [338] = {.lex_state = 33, .external_lex_state = 2}, + [339] = {.lex_state = 12, .external_lex_state = 4}, + [340] = {.lex_state = 12, .external_lex_state = 4}, + [341] = {.lex_state = 12, .external_lex_state = 4}, [342] = {.lex_state = 11, .external_lex_state = 4}, - [343] = {.lex_state = 11, .external_lex_state = 4}, - [344] = {.lex_state = 33, .external_lex_state = 2}, - [345] = {.lex_state = 11, .external_lex_state = 4}, - [346] = {.lex_state = 11, .external_lex_state = 4}, - [347] = {.lex_state = 347, .external_lex_state = 4}, - [348] = {.lex_state = 348, .external_lex_state = 4}, - [349] = {.lex_state = 347, .external_lex_state = 4}, - [350] = {.lex_state = 347, .external_lex_state = 4}, - [351] = {.lex_state = 11, .external_lex_state = 4}, - [352] = {.lex_state = 348, .external_lex_state = 4}, - [353] = {.lex_state = 33, .external_lex_state = 2}, + [343] = {.lex_state = 12, .external_lex_state = 4}, + [344] = {.lex_state = 12, .external_lex_state = 4}, + [345] = {.lex_state = 12, .external_lex_state = 4}, + [346] = {.lex_state = 12, .external_lex_state = 4}, + [347] = {.lex_state = 12, .external_lex_state = 4}, + [348] = {.lex_state = 12, .external_lex_state = 4}, + [349] = {.lex_state = 12, .external_lex_state = 4}, + [350] = {.lex_state = 33, .external_lex_state = 2}, + [351] = {.lex_state = 33, .external_lex_state = 2}, + [352] = {.lex_state = 34, .external_lex_state = 2}, + [353] = {.lex_state = 11, .external_lex_state = 4}, [354] = {.lex_state = 348, .external_lex_state = 4}, - [355] = {.lex_state = 34, .external_lex_state = 2}, - [356] = {.lex_state = 11, .external_lex_state = 4}, - [357] = {.lex_state = 348, .external_lex_state = 4}, + [355] = {.lex_state = 11, .external_lex_state = 4}, + [356] = {.lex_state = 34, .external_lex_state = 2}, + [357] = {.lex_state = 34, .external_lex_state = 2}, [358] = {.lex_state = 348, .external_lex_state = 4}, - [359] = {.lex_state = 347, .external_lex_state = 4}, - [360] = {.lex_state = 348, .external_lex_state = 4}, - [361] = {.lex_state = 34, .external_lex_state = 2}, - [362] = {.lex_state = 348, .external_lex_state = 4}, - [363] = {.lex_state = 348, .external_lex_state = 4}, - [364] = {.lex_state = 348, .external_lex_state = 4}, - [365] = {.lex_state = 348, .external_lex_state = 4}, - [366] = {.lex_state = 11, .external_lex_state = 4}, + [359] = {.lex_state = 11, .external_lex_state = 4}, + [360] = {.lex_state = 11, .external_lex_state = 4}, + [361] = {.lex_state = 348, .external_lex_state = 4}, + [362] = {.lex_state = 34, .external_lex_state = 2}, + [363] = {.lex_state = 11, .external_lex_state = 4}, + [364] = {.lex_state = 11, .external_lex_state = 4}, + [365] = {.lex_state = 11, .external_lex_state = 4}, + [366] = {.lex_state = 348, .external_lex_state = 4}, [367] = {.lex_state = 348, .external_lex_state = 4}, - [368] = {.lex_state = 348, .external_lex_state = 4}, - [369] = {.lex_state = 34, .external_lex_state = 2}, - [370] = {.lex_state = 11, .external_lex_state = 4}, - [371] = {.lex_state = 34, .external_lex_state = 2}, - [372] = {.lex_state = 11, .external_lex_state = 4}, + [368] = {.lex_state = 11, .external_lex_state = 4}, + [369] = {.lex_state = 348, .external_lex_state = 4}, + [370] = {.lex_state = 34, .external_lex_state = 2}, + [371] = {.lex_state = 348, .external_lex_state = 4}, + [372] = {.lex_state = 34, .external_lex_state = 2}, [373] = {.lex_state = 11, .external_lex_state = 4}, - [374] = {.lex_state = 348, .external_lex_state = 4}, - [375] = {.lex_state = 34, .external_lex_state = 2}, - [376] = {.lex_state = 11, .external_lex_state = 4}, + [374] = {.lex_state = 34, .external_lex_state = 2}, + [375] = {.lex_state = 11, .external_lex_state = 4}, + [376] = {.lex_state = 348, .external_lex_state = 4}, [377] = {.lex_state = 11, .external_lex_state = 4}, - [378] = {.lex_state = 348, .external_lex_state = 4}, - [379] = {.lex_state = 11, .external_lex_state = 4}, - [380] = {.lex_state = 33, .external_lex_state = 2}, - [381] = {.lex_state = 33, .external_lex_state = 2}, - [382] = {.lex_state = 11, .external_lex_state = 4}, - [383] = {.lex_state = 11, .external_lex_state = 4}, - [384] = {.lex_state = 11, .external_lex_state = 4}, - [385] = {.lex_state = 33, .external_lex_state = 2}, - [386] = {.lex_state = 348, .external_lex_state = 4}, - [387] = {.lex_state = 348, .external_lex_state = 4}, - [388] = {.lex_state = 348, .external_lex_state = 4}, - [389] = {.lex_state = 11, .external_lex_state = 4}, + [378] = {.lex_state = 11, .external_lex_state = 4}, + [379] = {.lex_state = 348, .external_lex_state = 4}, + [380] = {.lex_state = 348, .external_lex_state = 4}, + [381] = {.lex_state = 348, .external_lex_state = 4}, + [382] = {.lex_state = 348, .external_lex_state = 4}, + [383] = {.lex_state = 34, .external_lex_state = 2}, + [384] = {.lex_state = 34, .external_lex_state = 2}, + [385] = {.lex_state = 348, .external_lex_state = 4}, + [386] = {.lex_state = 34, .external_lex_state = 2}, + [387] = {.lex_state = 34, .external_lex_state = 2}, + [388] = {.lex_state = 34, .external_lex_state = 2}, + [389] = {.lex_state = 348, .external_lex_state = 4}, [390] = {.lex_state = 11, .external_lex_state = 4}, - [391] = {.lex_state = 11, .external_lex_state = 4}, - [392] = {.lex_state = 34, .external_lex_state = 2}, - [393] = {.lex_state = 11, .external_lex_state = 4}, + [391] = {.lex_state = 348, .external_lex_state = 4}, + [392] = {.lex_state = 11, .external_lex_state = 4}, + [393] = {.lex_state = 34, .external_lex_state = 2}, [394] = {.lex_state = 348, .external_lex_state = 4}, - [395] = {.lex_state = 11, .external_lex_state = 4}, + [395] = {.lex_state = 34, .external_lex_state = 2}, [396] = {.lex_state = 11, .external_lex_state = 4}, [397] = {.lex_state = 348, .external_lex_state = 4}, - [398] = {.lex_state = 348, .external_lex_state = 4}, - [399] = {.lex_state = 33, .external_lex_state = 2}, - [400] = {.lex_state = 348, .external_lex_state = 4}, - [401] = {.lex_state = 33, .external_lex_state = 2}, - [402] = {.lex_state = 11, .external_lex_state = 4}, + [398] = {.lex_state = 34, .external_lex_state = 2}, + [399] = {.lex_state = 348, .external_lex_state = 4}, + [400] = {.lex_state = 34, .external_lex_state = 2}, + [401] = {.lex_state = 34, .external_lex_state = 2}, + [402] = {.lex_state = 34, .external_lex_state = 2}, [403] = {.lex_state = 11, .external_lex_state = 4}, [404] = {.lex_state = 34, .external_lex_state = 2}, [405] = {.lex_state = 348, .external_lex_state = 4}, [406] = {.lex_state = 11, .external_lex_state = 4}, - [407] = {.lex_state = 347, .external_lex_state = 4}, - [408] = {.lex_state = 347, .external_lex_state = 4}, - [409] = {.lex_state = 34, .external_lex_state = 2}, - [410] = {.lex_state = 34, .external_lex_state = 2}, + [407] = {.lex_state = 11, .external_lex_state = 4}, + [408] = {.lex_state = 348, .external_lex_state = 4}, + [409] = {.lex_state = 11, .external_lex_state = 4}, + [410] = {.lex_state = 348, .external_lex_state = 4}, [411] = {.lex_state = 347, .external_lex_state = 4}, - [412] = {.lex_state = 347, .external_lex_state = 4}, - [413] = {.lex_state = 347, .external_lex_state = 4}, + [412] = {.lex_state = 34, .external_lex_state = 2}, + [413] = {.lex_state = 34, .external_lex_state = 2}, [414] = {.lex_state = 347, .external_lex_state = 4}, [415] = {.lex_state = 34, .external_lex_state = 2}, - [416] = {.lex_state = 34, .external_lex_state = 2}, - [417] = {.lex_state = 347, .external_lex_state = 4}, - [418] = {.lex_state = 34, .external_lex_state = 2}, - [419] = {.lex_state = 34, .external_lex_state = 2}, + [416] = {.lex_state = 347, .external_lex_state = 4}, + [417] = {.lex_state = 34, .external_lex_state = 2}, + [418] = {.lex_state = 347, .external_lex_state = 4}, + [419] = {.lex_state = 348, .external_lex_state = 4}, [420] = {.lex_state = 34, .external_lex_state = 2}, [421] = {.lex_state = 34, .external_lex_state = 2}, - [422] = {.lex_state = 34, .external_lex_state = 2}, - [423] = {.lex_state = 347, .external_lex_state = 4}, - [424] = {.lex_state = 347, .external_lex_state = 4}, - [425] = {.lex_state = 347, .external_lex_state = 4}, - [426] = {.lex_state = 34, .external_lex_state = 2}, - [427] = {.lex_state = 347, .external_lex_state = 4}, - [428] = {.lex_state = 347, .external_lex_state = 4}, - [429] = {.lex_state = 347, .external_lex_state = 4}, - [430] = {.lex_state = 34, .external_lex_state = 2}, - [431] = {.lex_state = 34, .external_lex_state = 2}, - [432] = {.lex_state = 347, .external_lex_state = 4}, - [433] = {.lex_state = 34, .external_lex_state = 2}, + [422] = {.lex_state = 348, .external_lex_state = 4}, + [423] = {.lex_state = 11, .external_lex_state = 4}, + [424] = {.lex_state = 34, .external_lex_state = 2}, + [425] = {.lex_state = 11, .external_lex_state = 4}, + [426] = {.lex_state = 11, .external_lex_state = 4}, + [427] = {.lex_state = 34, .external_lex_state = 2}, + [428] = {.lex_state = 348, .external_lex_state = 4}, + [429] = {.lex_state = 34, .external_lex_state = 2}, + [430] = {.lex_state = 11, .external_lex_state = 4}, + [431] = {.lex_state = 348, .external_lex_state = 4}, + [432] = {.lex_state = 11, .external_lex_state = 4}, + [433] = {.lex_state = 11, .external_lex_state = 4}, [434] = {.lex_state = 347, .external_lex_state = 4}, [435] = {.lex_state = 347, .external_lex_state = 4}, [436] = {.lex_state = 34, .external_lex_state = 2}, - [437] = {.lex_state = 34, .external_lex_state = 2}, - [438] = {.lex_state = 34, .external_lex_state = 2}, - [439] = {.lex_state = 34, .external_lex_state = 2}, - [440] = {.lex_state = 34, .external_lex_state = 2}, - [441] = {.lex_state = 347, .external_lex_state = 4}, - [442] = {.lex_state = 34, .external_lex_state = 2}, + [437] = {.lex_state = 347, .external_lex_state = 4}, + [438] = {.lex_state = 347, .external_lex_state = 4}, + [439] = {.lex_state = 347, .external_lex_state = 4}, + [440] = {.lex_state = 3, .external_lex_state = 3}, + [441] = {.lex_state = 3, .external_lex_state = 3}, + [442] = {.lex_state = 34, .external_lex_state = 5}, [443] = {.lex_state = 347, .external_lex_state = 4}, - [444] = {.lex_state = 347, .external_lex_state = 4}, + [444] = {.lex_state = 34, .external_lex_state = 2}, [445] = {.lex_state = 347, .external_lex_state = 4}, [446] = {.lex_state = 347, .external_lex_state = 4}, [447] = {.lex_state = 347, .external_lex_state = 4}, - [448] = {.lex_state = 3, .external_lex_state = 3}, + [448] = {.lex_state = 347, .external_lex_state = 4}, [449] = {.lex_state = 347, .external_lex_state = 4}, [450] = {.lex_state = 347, .external_lex_state = 4}, - [451] = {.lex_state = 3, .external_lex_state = 3}, - [452] = {.lex_state = 3, .external_lex_state = 3}, - [453] = {.lex_state = 34, .external_lex_state = 2}, - [454] = {.lex_state = 347, .external_lex_state = 4}, - [455] = {.lex_state = 34, .external_lex_state = 2}, - [456] = {.lex_state = 34, .external_lex_state = 2}, + [451] = {.lex_state = 347, .external_lex_state = 4}, + [452] = {.lex_state = 34, .external_lex_state = 2}, + [453] = {.lex_state = 34, .external_lex_state = 5}, + [454] = {.lex_state = 34, .external_lex_state = 5}, + [455] = {.lex_state = 3, .external_lex_state = 3}, + [456] = {.lex_state = 347, .external_lex_state = 4}, [457] = {.lex_state = 34, .external_lex_state = 2}, - [458] = {.lex_state = 3, .external_lex_state = 3}, - [459] = {.lex_state = 34, .external_lex_state = 2}, - [460] = {.lex_state = 34, .external_lex_state = 2}, - [461] = {.lex_state = 34, .external_lex_state = 2}, - [462] = {.lex_state = 34, .external_lex_state = 2}, - [463] = {.lex_state = 34, .external_lex_state = 2}, - [464] = {.lex_state = 34, .external_lex_state = 2}, - [465] = {.lex_state = 34, .external_lex_state = 2}, - [466] = {.lex_state = 34, .external_lex_state = 5}, - [467] = {.lex_state = 34, .external_lex_state = 5}, - [468] = {.lex_state = 34, .external_lex_state = 2}, - [469] = {.lex_state = 34, .external_lex_state = 5}, + [458] = {.lex_state = 34, .external_lex_state = 5}, + [459] = {.lex_state = 347, .external_lex_state = 4}, + [460] = {.lex_state = 347, .external_lex_state = 4}, + [461] = {.lex_state = 347, .external_lex_state = 4}, + [462] = {.lex_state = 347, .external_lex_state = 4}, + [463] = {.lex_state = 347, .external_lex_state = 4}, + [464] = {.lex_state = 347, .external_lex_state = 4}, + [465] = {.lex_state = 347, .external_lex_state = 4}, + [466] = {.lex_state = 347, .external_lex_state = 4}, + [467] = {.lex_state = 347, .external_lex_state = 4}, + [468] = {.lex_state = 347, .external_lex_state = 4}, + [469] = {.lex_state = 347, .external_lex_state = 4}, [470] = {.lex_state = 34, .external_lex_state = 5}, - [471] = {.lex_state = 34, .external_lex_state = 5}, + [471] = {.lex_state = 3, .external_lex_state = 3}, [472] = {.lex_state = 34, .external_lex_state = 2}, [473] = {.lex_state = 34, .external_lex_state = 2}, [474] = {.lex_state = 43, .external_lex_state = 2}, @@ -21156,579 +21220,579 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [887] = {.lex_state = 349, .external_lex_state = 4}, [888] = {.lex_state = 349, .external_lex_state = 4}, [889] = {.lex_state = 349, .external_lex_state = 4}, - [890] = {.lex_state = 349, .external_lex_state = 4}, + [890] = {.lex_state = 6, .external_lex_state = 4}, [891] = {.lex_state = 6, .external_lex_state = 4}, [892] = {.lex_state = 349, .external_lex_state = 4}, [893] = {.lex_state = 6, .external_lex_state = 4}, - [894] = {.lex_state = 349, .external_lex_state = 4}, - [895] = {.lex_state = 6, .external_lex_state = 4}, - [896] = {.lex_state = 6, .external_lex_state = 4}, + [894] = {.lex_state = 6, .external_lex_state = 4}, + [895] = {.lex_state = 349, .external_lex_state = 4}, + [896] = {.lex_state = 349, .external_lex_state = 4}, [897] = {.lex_state = 349, .external_lex_state = 4}, - [898] = {.lex_state = 349, .external_lex_state = 4}, + [898] = {.lex_state = 6, .external_lex_state = 4}, [899] = {.lex_state = 6, .external_lex_state = 4}, [900] = {.lex_state = 349, .external_lex_state = 4}, - [901] = {.lex_state = 6, .external_lex_state = 4}, + [901] = {.lex_state = 349, .external_lex_state = 4}, [902] = {.lex_state = 20, .external_lex_state = 3}, [903] = {.lex_state = 20, .external_lex_state = 3}, [904] = {.lex_state = 20, .external_lex_state = 4}, - [905] = {.lex_state = 20, .external_lex_state = 3}, + [905] = {.lex_state = 20, .external_lex_state = 4}, [906] = {.lex_state = 20, .external_lex_state = 4}, [907] = {.lex_state = 20, .external_lex_state = 4}, [908] = {.lex_state = 22, .external_lex_state = 4}, - [909] = {.lex_state = 20, .external_lex_state = 3}, + [909] = {.lex_state = 20, .external_lex_state = 4}, [910] = {.lex_state = 22, .external_lex_state = 4}, - [911] = {.lex_state = 20, .external_lex_state = 4}, - [912] = {.lex_state = 20, .external_lex_state = 4}, - [913] = {.lex_state = 22, .external_lex_state = 4}, - [914] = {.lex_state = 20, .external_lex_state = 4}, - [915] = {.lex_state = 20, .external_lex_state = 3}, - [916] = {.lex_state = 20, .external_lex_state = 4}, + [911] = {.lex_state = 22, .external_lex_state = 4}, + [912] = {.lex_state = 20, .external_lex_state = 3}, + [913] = {.lex_state = 20, .external_lex_state = 4}, + [914] = {.lex_state = 20, .external_lex_state = 3}, + [915] = {.lex_state = 20, .external_lex_state = 4}, + [916] = {.lex_state = 20, .external_lex_state = 3}, [917] = {.lex_state = 20, .external_lex_state = 3}, [918] = {.lex_state = 20, .external_lex_state = 3}, - [919] = {.lex_state = 20, .external_lex_state = 3}, - [920] = {.lex_state = 23, .external_lex_state = 3}, - [921] = {.lex_state = 23, .external_lex_state = 3}, - [922] = {.lex_state = 20, .external_lex_state = 3}, + [919] = {.lex_state = 23, .external_lex_state = 3}, + [920] = {.lex_state = 20, .external_lex_state = 3}, + [921] = {.lex_state = 40, .external_lex_state = 2}, + [922] = {.lex_state = 23, .external_lex_state = 3}, [923] = {.lex_state = 20, .external_lex_state = 3}, - [924] = {.lex_state = 20, .external_lex_state = 4}, + [924] = {.lex_state = 20, .external_lex_state = 3}, [925] = {.lex_state = 20, .external_lex_state = 4}, - [926] = {.lex_state = 20, .external_lex_state = 3}, - [927] = {.lex_state = 20, .external_lex_state = 4}, + [926] = {.lex_state = 356, .external_lex_state = 2}, + [927] = {.lex_state = 40, .external_lex_state = 5}, [928] = {.lex_state = 20, .external_lex_state = 4}, - [929] = {.lex_state = 20, .external_lex_state = 4}, + [929] = {.lex_state = 20, .external_lex_state = 3}, [930] = {.lex_state = 20, .external_lex_state = 4}, - [931] = {.lex_state = 20, .external_lex_state = 4}, - [932] = {.lex_state = 20, .external_lex_state = 3}, + [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 = 40, .external_lex_state = 2}, - [936] = {.lex_state = 39, .external_lex_state = 2}, - [937] = {.lex_state = 22, .external_lex_state = 3}, - [938] = {.lex_state = 22, .external_lex_state = 3}, - [939] = {.lex_state = 40, .external_lex_state = 5}, - [940] = {.lex_state = 22, .external_lex_state = 3}, - [941] = {.lex_state = 20, .external_lex_state = 3}, - [942] = {.lex_state = 20, .external_lex_state = 3}, - [943] = {.lex_state = 20, .external_lex_state = 3}, - [944] = {.lex_state = 20, .external_lex_state = 3}, - [945] = {.lex_state = 40, .external_lex_state = 5}, - [946] = {.lex_state = 20, .external_lex_state = 3}, - [947] = {.lex_state = 356, .external_lex_state = 2}, - [948] = {.lex_state = 38, .external_lex_state = 2}, - [949] = {.lex_state = 356, .external_lex_state = 5}, - [950] = {.lex_state = 20, .external_lex_state = 3}, - [951] = {.lex_state = 20, .external_lex_state = 3}, - [952] = {.lex_state = 39, .external_lex_state = 5}, - [953] = {.lex_state = 40, .external_lex_state = 2}, - [954] = {.lex_state = 39, .external_lex_state = 5}, - [955] = {.lex_state = 356, .external_lex_state = 5}, - [956] = {.lex_state = 20, .external_lex_state = 3}, + [934] = {.lex_state = 20, .external_lex_state = 4}, + [935] = {.lex_state = 20, .external_lex_state = 4}, + [936] = {.lex_state = 20, .external_lex_state = 4}, + [937] = {.lex_state = 39, .external_lex_state = 2}, + [938] = {.lex_state = 40, .external_lex_state = 5}, + [939] = {.lex_state = 20, .external_lex_state = 3}, + [940] = {.lex_state = 20, .external_lex_state = 3}, + [941] = {.lex_state = 356, .external_lex_state = 5}, + [942] = {.lex_state = 22, .external_lex_state = 3}, + [943] = {.lex_state = 38, .external_lex_state = 2}, + [944] = {.lex_state = 38, .external_lex_state = 2}, + [945] = {.lex_state = 20, .external_lex_state = 3}, + [946] = {.lex_state = 39, .external_lex_state = 5}, + [947] = {.lex_state = 42, .external_lex_state = 5}, + [948] = {.lex_state = 40, .external_lex_state = 2}, + [949] = {.lex_state = 40, .external_lex_state = 2}, + [950] = {.lex_state = 39, .external_lex_state = 5}, + [951] = {.lex_state = 42, .external_lex_state = 2}, + [952] = {.lex_state = 356, .external_lex_state = 5}, + [953] = {.lex_state = 22, .external_lex_state = 3}, + [954] = {.lex_state = 355, .external_lex_state = 2}, + [955] = {.lex_state = 20, .external_lex_state = 3}, + [956] = {.lex_state = 42, .external_lex_state = 5}, [957] = {.lex_state = 20, .external_lex_state = 3}, - [958] = {.lex_state = 38, .external_lex_state = 2}, + [958] = {.lex_state = 22, .external_lex_state = 3}, [959] = {.lex_state = 20, .external_lex_state = 3}, - [960] = {.lex_state = 355, .external_lex_state = 2}, - [961] = {.lex_state = 20, .external_lex_state = 3}, - [962] = {.lex_state = 20, .external_lex_state = 3}, - [963] = {.lex_state = 20, .external_lex_state = 3}, - [964] = {.lex_state = 42, .external_lex_state = 5}, - [965] = {.lex_state = 40, .external_lex_state = 2}, - [966] = {.lex_state = 20, .external_lex_state = 3}, - [967] = {.lex_state = 20, .external_lex_state = 3}, - [968] = {.lex_state = 20, .external_lex_state = 3}, - [969] = {.lex_state = 42, .external_lex_state = 5}, - [970] = {.lex_state = 42, .external_lex_state = 2}, - [971] = {.lex_state = 356, .external_lex_state = 2}, - [972] = {.lex_state = 37, .external_lex_state = 2}, - [973] = {.lex_state = 38, .external_lex_state = 5}, - [974] = {.lex_state = 38, .external_lex_state = 5}, - [975] = {.lex_state = 38, .external_lex_state = 2}, + [960] = {.lex_state = 39, .external_lex_state = 2}, + [961] = {.lex_state = 38, .external_lex_state = 5}, + [962] = {.lex_state = 37, .external_lex_state = 2}, + [963] = {.lex_state = 42, .external_lex_state = 2}, + [964] = {.lex_state = 38, .external_lex_state = 5}, + [965] = {.lex_state = 356, .external_lex_state = 2}, + [966] = {.lex_state = 354, .external_lex_state = 2}, + [967] = {.lex_state = 39, .external_lex_state = 2}, + [968] = {.lex_state = 38, .external_lex_state = 2}, + [969] = {.lex_state = 20, .external_lex_state = 3}, + [970] = {.lex_state = 355, .external_lex_state = 5}, + [971] = {.lex_state = 38, .external_lex_state = 5}, + [972] = {.lex_state = 42, .external_lex_state = 2}, + [973] = {.lex_state = 20, .external_lex_state = 3}, + [974] = {.lex_state = 41, .external_lex_state = 5}, + [975] = {.lex_state = 20, .external_lex_state = 3}, [976] = {.lex_state = 38, .external_lex_state = 5}, - [977] = {.lex_state = 38, .external_lex_state = 5}, - [978] = {.lex_state = 42, .external_lex_state = 2}, - [979] = {.lex_state = 41, .external_lex_state = 5}, - [980] = {.lex_state = 42, .external_lex_state = 2}, - [981] = {.lex_state = 38, .external_lex_state = 5}, + [977] = {.lex_state = 354, .external_lex_state = 5}, + [978] = {.lex_state = 20, .external_lex_state = 3}, + [979] = {.lex_state = 38, .external_lex_state = 5}, + [980] = {.lex_state = 38, .external_lex_state = 5}, + [981] = {.lex_state = 41, .external_lex_state = 5}, [982] = {.lex_state = 38, .external_lex_state = 5}, - [983] = {.lex_state = 38, .external_lex_state = 5}, - [984] = {.lex_state = 352, .external_lex_state = 2}, - [985] = {.lex_state = 38, .external_lex_state = 5}, - [986] = {.lex_state = 354, .external_lex_state = 5}, + [983] = {.lex_state = 38, .external_lex_state = 2}, + [984] = {.lex_state = 20, .external_lex_state = 3}, + [985] = {.lex_state = 20, .external_lex_state = 3}, + [986] = {.lex_state = 20, .external_lex_state = 3}, [987] = {.lex_state = 38, .external_lex_state = 5}, - [988] = {.lex_state = 38, .external_lex_state = 5}, - [989] = {.lex_state = 41, .external_lex_state = 5}, - [990] = {.lex_state = 355, .external_lex_state = 5}, + [988] = {.lex_state = 20, .external_lex_state = 3}, + [989] = {.lex_state = 37, .external_lex_state = 2}, + [990] = {.lex_state = 42, .external_lex_state = 2}, [991] = {.lex_state = 38, .external_lex_state = 5}, - [992] = {.lex_state = 38, .external_lex_state = 2}, - [993] = {.lex_state = 352, .external_lex_state = 2}, - [994] = {.lex_state = 38, .external_lex_state = 5}, + [992] = {.lex_state = 38, .external_lex_state = 5}, + [993] = {.lex_state = 354, .external_lex_state = 5}, + [994] = {.lex_state = 38, .external_lex_state = 2}, [995] = {.lex_state = 38, .external_lex_state = 2}, - [996] = {.lex_state = 354, .external_lex_state = 2}, - [997] = {.lex_state = 38, .external_lex_state = 2}, + [996] = {.lex_state = 38, .external_lex_state = 5}, + [997] = {.lex_state = 38, .external_lex_state = 5}, [998] = {.lex_state = 42, .external_lex_state = 2}, [999] = {.lex_state = 38, .external_lex_state = 5}, - [1000] = {.lex_state = 39, .external_lex_state = 2}, - [1001] = {.lex_state = 354, .external_lex_state = 5}, - [1002] = {.lex_state = 38, .external_lex_state = 5}, - [1003] = {.lex_state = 38, .external_lex_state = 5}, - [1004] = {.lex_state = 38, .external_lex_state = 5}, - [1005] = {.lex_state = 42, .external_lex_state = 2}, - [1006] = {.lex_state = 42, .external_lex_state = 2}, + [1000] = {.lex_state = 38, .external_lex_state = 5}, + [1001] = {.lex_state = 355, .external_lex_state = 5}, + [1002] = {.lex_state = 20, .external_lex_state = 3}, + [1003] = {.lex_state = 352, .external_lex_state = 2}, + [1004] = {.lex_state = 20, .external_lex_state = 3}, + [1005] = {.lex_state = 20, .external_lex_state = 3}, + [1006] = {.lex_state = 352, .external_lex_state = 2}, [1007] = {.lex_state = 38, .external_lex_state = 5}, [1008] = {.lex_state = 38, .external_lex_state = 5}, [1009] = {.lex_state = 38, .external_lex_state = 5}, - [1010] = {.lex_state = 37, .external_lex_state = 2}, + [1010] = {.lex_state = 41, .external_lex_state = 2}, [1011] = {.lex_state = 38, .external_lex_state = 5}, - [1012] = {.lex_state = 38, .external_lex_state = 5}, - [1013] = {.lex_state = 38, .external_lex_state = 2}, - [1014] = {.lex_state = 356, .external_lex_state = 2}, - [1015] = {.lex_state = 39, .external_lex_state = 2}, - [1016] = {.lex_state = 41, .external_lex_state = 2}, - [1017] = {.lex_state = 355, .external_lex_state = 5}, + [1012] = {.lex_state = 356, .external_lex_state = 2}, + [1013] = {.lex_state = 42, .external_lex_state = 2}, + [1014] = {.lex_state = 38, .external_lex_state = 5}, + [1015] = {.lex_state = 38, .external_lex_state = 5}, + [1016] = {.lex_state = 38, .external_lex_state = 5}, + [1017] = {.lex_state = 38, .external_lex_state = 2}, [1018] = {.lex_state = 38, .external_lex_state = 5}, [1019] = {.lex_state = 38, .external_lex_state = 5}, - [1020] = {.lex_state = 37, .external_lex_state = 5}, + [1020] = {.lex_state = 38, .external_lex_state = 2}, [1021] = {.lex_state = 38, .external_lex_state = 2}, [1022] = {.lex_state = 38, .external_lex_state = 2}, [1023] = {.lex_state = 38, .external_lex_state = 2}, - [1024] = {.lex_state = 37, .external_lex_state = 5}, + [1024] = {.lex_state = 38, .external_lex_state = 2}, [1025] = {.lex_state = 38, .external_lex_state = 2}, [1026] = {.lex_state = 38, .external_lex_state = 2}, - [1027] = {.lex_state = 352, .external_lex_state = 5}, - [1028] = {.lex_state = 38, .external_lex_state = 2}, + [1027] = {.lex_state = 38, .external_lex_state = 2}, + [1028] = {.lex_state = 37, .external_lex_state = 5}, [1029] = {.lex_state = 38, .external_lex_state = 2}, - [1030] = {.lex_state = 38, .external_lex_state = 2}, + [1030] = {.lex_state = 352, .external_lex_state = 5}, [1031] = {.lex_state = 38, .external_lex_state = 2}, - [1032] = {.lex_state = 37, .external_lex_state = 5}, - [1033] = {.lex_state = 352, .external_lex_state = 5}, + [1032] = {.lex_state = 38, .external_lex_state = 2}, + [1033] = {.lex_state = 38, .external_lex_state = 2}, [1034] = {.lex_state = 38, .external_lex_state = 2}, [1035] = {.lex_state = 38, .external_lex_state = 2}, [1036] = {.lex_state = 38, .external_lex_state = 2}, - [1037] = {.lex_state = 352, .external_lex_state = 5}, + [1037] = {.lex_state = 38, .external_lex_state = 2}, [1038] = {.lex_state = 38, .external_lex_state = 2}, - [1039] = {.lex_state = 38, .external_lex_state = 2}, - [1040] = {.lex_state = 38, .external_lex_state = 2}, + [1039] = {.lex_state = 37, .external_lex_state = 5}, + [1040] = {.lex_state = 353, .external_lex_state = 5}, [1041] = {.lex_state = 38, .external_lex_state = 2}, [1042] = {.lex_state = 38, .external_lex_state = 2}, - [1043] = {.lex_state = 38, .external_lex_state = 2}, + [1043] = {.lex_state = 352, .external_lex_state = 5}, [1044] = {.lex_state = 38, .external_lex_state = 2}, - [1045] = {.lex_state = 352, .external_lex_state = 5}, - [1046] = {.lex_state = 41, .external_lex_state = 2}, - [1047] = {.lex_state = 37, .external_lex_state = 5}, + [1045] = {.lex_state = 38, .external_lex_state = 2}, + [1046] = {.lex_state = 37, .external_lex_state = 5}, + [1047] = {.lex_state = 352, .external_lex_state = 5}, [1048] = {.lex_state = 38, .external_lex_state = 2}, - [1049] = {.lex_state = 352, .external_lex_state = 5}, - [1050] = {.lex_state = 352, .external_lex_state = 5}, - [1051] = {.lex_state = 38, .external_lex_state = 2}, - [1052] = {.lex_state = 352, .external_lex_state = 5}, - [1053] = {.lex_state = 37, .external_lex_state = 2}, + [1049] = {.lex_state = 38, .external_lex_state = 2}, + [1050] = {.lex_state = 38, .external_lex_state = 2}, + [1051] = {.lex_state = 37, .external_lex_state = 5}, + [1052] = {.lex_state = 353, .external_lex_state = 5}, + [1053] = {.lex_state = 37, .external_lex_state = 5}, [1054] = {.lex_state = 38, .external_lex_state = 2}, - [1055] = {.lex_state = 37, .external_lex_state = 2}, - [1056] = {.lex_state = 352, .external_lex_state = 5}, + [1055] = {.lex_state = 38, .external_lex_state = 2}, + [1056] = {.lex_state = 38, .external_lex_state = 2}, [1057] = {.lex_state = 38, .external_lex_state = 2}, - [1058] = {.lex_state = 37, .external_lex_state = 5}, - [1059] = {.lex_state = 352, .external_lex_state = 5}, - [1060] = {.lex_state = 38, .external_lex_state = 2}, + [1058] = {.lex_state = 38, .external_lex_state = 2}, + [1059] = {.lex_state = 38, .external_lex_state = 2}, + [1060] = {.lex_state = 37, .external_lex_state = 5}, [1061] = {.lex_state = 38, .external_lex_state = 2}, - [1062] = {.lex_state = 352, .external_lex_state = 5}, + [1062] = {.lex_state = 38, .external_lex_state = 2}, [1063] = {.lex_state = 38, .external_lex_state = 2}, - [1064] = {.lex_state = 38, .external_lex_state = 2}, + [1064] = {.lex_state = 351, .external_lex_state = 2}, [1065] = {.lex_state = 38, .external_lex_state = 2}, - [1066] = {.lex_state = 38, .external_lex_state = 2}, + [1066] = {.lex_state = 352, .external_lex_state = 2}, [1067] = {.lex_state = 38, .external_lex_state = 2}, - [1068] = {.lex_state = 352, .external_lex_state = 2}, - [1069] = {.lex_state = 38, .external_lex_state = 2}, + [1068] = {.lex_state = 351, .external_lex_state = 2}, + [1069] = {.lex_state = 37, .external_lex_state = 5}, [1070] = {.lex_state = 38, .external_lex_state = 2}, - [1071] = {.lex_state = 355, .external_lex_state = 2}, + [1071] = {.lex_state = 38, .external_lex_state = 2}, [1072] = {.lex_state = 38, .external_lex_state = 2}, - [1073] = {.lex_state = 352, .external_lex_state = 5}, + [1073] = {.lex_state = 38, .external_lex_state = 2}, [1074] = {.lex_state = 38, .external_lex_state = 2}, [1075] = {.lex_state = 38, .external_lex_state = 2}, - [1076] = {.lex_state = 38, .external_lex_state = 2}, + [1076] = {.lex_state = 352, .external_lex_state = 2}, [1077] = {.lex_state = 38, .external_lex_state = 2}, [1078] = {.lex_state = 38, .external_lex_state = 2}, [1079] = {.lex_state = 38, .external_lex_state = 2}, [1080] = {.lex_state = 38, .external_lex_state = 2}, [1081] = {.lex_state = 38, .external_lex_state = 2}, - [1082] = {.lex_state = 38, .external_lex_state = 2}, + [1082] = {.lex_state = 354, .external_lex_state = 2}, [1083] = {.lex_state = 38, .external_lex_state = 2}, - [1084] = {.lex_state = 352, .external_lex_state = 2}, - [1085] = {.lex_state = 353, .external_lex_state = 2}, + [1084] = {.lex_state = 38, .external_lex_state = 2}, + [1085] = {.lex_state = 38, .external_lex_state = 2}, [1086] = {.lex_state = 38, .external_lex_state = 2}, - [1087] = {.lex_state = 38, .external_lex_state = 2}, + [1087] = {.lex_state = 352, .external_lex_state = 2}, [1088] = {.lex_state = 38, .external_lex_state = 2}, [1089] = {.lex_state = 38, .external_lex_state = 2}, - [1090] = {.lex_state = 37, .external_lex_state = 5}, - [1091] = {.lex_state = 38, .external_lex_state = 2}, - [1092] = {.lex_state = 352, .external_lex_state = 5}, - [1093] = {.lex_state = 37, .external_lex_state = 5}, + [1090] = {.lex_state = 38, .external_lex_state = 2}, + [1091] = {.lex_state = 352, .external_lex_state = 2}, + [1092] = {.lex_state = 38, .external_lex_state = 2}, + [1093] = {.lex_state = 352, .external_lex_state = 2}, [1094] = {.lex_state = 38, .external_lex_state = 2}, [1095] = {.lex_state = 38, .external_lex_state = 2}, - [1096] = {.lex_state = 354, .external_lex_state = 2}, - [1097] = {.lex_state = 38, .external_lex_state = 2}, - [1098] = {.lex_state = 38, .external_lex_state = 2}, + [1096] = {.lex_state = 37, .external_lex_state = 5}, + [1097] = {.lex_state = 352, .external_lex_state = 5}, + [1098] = {.lex_state = 352, .external_lex_state = 5}, [1099] = {.lex_state = 38, .external_lex_state = 2}, [1100] = {.lex_state = 38, .external_lex_state = 2}, - [1101] = {.lex_state = 38, .external_lex_state = 2}, - [1102] = {.lex_state = 38, .external_lex_state = 2}, + [1101] = {.lex_state = 352, .external_lex_state = 5}, + [1102] = {.lex_state = 354, .external_lex_state = 2}, [1103] = {.lex_state = 38, .external_lex_state = 2}, [1104] = {.lex_state = 38, .external_lex_state = 2}, [1105] = {.lex_state = 38, .external_lex_state = 2}, - [1106] = {.lex_state = 38, .external_lex_state = 2}, - [1107] = {.lex_state = 37, .external_lex_state = 5}, - [1108] = {.lex_state = 38, .external_lex_state = 2}, + [1106] = {.lex_state = 37, .external_lex_state = 5}, + [1107] = {.lex_state = 38, .external_lex_state = 2}, + [1108] = {.lex_state = 37, .external_lex_state = 5}, [1109] = {.lex_state = 38, .external_lex_state = 2}, [1110] = {.lex_state = 38, .external_lex_state = 2}, - [1111] = {.lex_state = 38, .external_lex_state = 2}, - [1112] = {.lex_state = 41, .external_lex_state = 2}, + [1111] = {.lex_state = 41, .external_lex_state = 2}, + [1112] = {.lex_state = 38, .external_lex_state = 2}, [1113] = {.lex_state = 38, .external_lex_state = 2}, - [1114] = {.lex_state = 352, .external_lex_state = 5}, + [1114] = {.lex_state = 38, .external_lex_state = 2}, [1115] = {.lex_state = 38, .external_lex_state = 2}, [1116] = {.lex_state = 38, .external_lex_state = 2}, [1117] = {.lex_state = 38, .external_lex_state = 2}, [1118] = {.lex_state = 38, .external_lex_state = 2}, [1119] = {.lex_state = 38, .external_lex_state = 2}, [1120] = {.lex_state = 38, .external_lex_state = 2}, - [1121] = {.lex_state = 352, .external_lex_state = 2}, + [1121] = {.lex_state = 38, .external_lex_state = 2}, [1122] = {.lex_state = 38, .external_lex_state = 2}, - [1123] = {.lex_state = 41, .external_lex_state = 2}, - [1124] = {.lex_state = 38, .external_lex_state = 2}, - [1125] = {.lex_state = 38, .external_lex_state = 2}, - [1126] = {.lex_state = 37, .external_lex_state = 5}, - [1127] = {.lex_state = 352, .external_lex_state = 5}, - [1128] = {.lex_state = 38, .external_lex_state = 2}, + [1123] = {.lex_state = 38, .external_lex_state = 2}, + [1124] = {.lex_state = 353, .external_lex_state = 2}, + [1125] = {.lex_state = 352, .external_lex_state = 5}, + [1126] = {.lex_state = 38, .external_lex_state = 2}, + [1127] = {.lex_state = 38, .external_lex_state = 2}, + [1128] = {.lex_state = 37, .external_lex_state = 5}, [1129] = {.lex_state = 38, .external_lex_state = 2}, - [1130] = {.lex_state = 38, .external_lex_state = 2}, - [1131] = {.lex_state = 38, .external_lex_state = 2}, - [1132] = {.lex_state = 38, .external_lex_state = 2}, + [1130] = {.lex_state = 354, .external_lex_state = 2}, + [1131] = {.lex_state = 41, .external_lex_state = 2}, + [1132] = {.lex_state = 37, .external_lex_state = 5}, [1133] = {.lex_state = 37, .external_lex_state = 5}, - [1134] = {.lex_state = 37, .external_lex_state = 5}, - [1135] = {.lex_state = 38, .external_lex_state = 2}, - [1136] = {.lex_state = 352, .external_lex_state = 5}, - [1137] = {.lex_state = 38, .external_lex_state = 2}, + [1134] = {.lex_state = 38, .external_lex_state = 2}, + [1135] = {.lex_state = 37, .external_lex_state = 5}, + [1136] = {.lex_state = 37, .external_lex_state = 5}, + [1137] = {.lex_state = 37, .external_lex_state = 5}, [1138] = {.lex_state = 38, .external_lex_state = 2}, - [1139] = {.lex_state = 37, .external_lex_state = 5}, + [1139] = {.lex_state = 352, .external_lex_state = 5}, [1140] = {.lex_state = 38, .external_lex_state = 2}, - [1141] = {.lex_state = 38, .external_lex_state = 2}, - [1142] = {.lex_state = 352, .external_lex_state = 5}, + [1141] = {.lex_state = 37, .external_lex_state = 5}, + [1142] = {.lex_state = 355, .external_lex_state = 2}, [1143] = {.lex_state = 38, .external_lex_state = 2}, - [1144] = {.lex_state = 38, .external_lex_state = 2}, + [1144] = {.lex_state = 352, .external_lex_state = 5}, [1145] = {.lex_state = 38, .external_lex_state = 2}, [1146] = {.lex_state = 38, .external_lex_state = 2}, [1147] = {.lex_state = 38, .external_lex_state = 2}, - [1148] = {.lex_state = 38, .external_lex_state = 2}, + [1148] = {.lex_state = 354, .external_lex_state = 2}, [1149] = {.lex_state = 38, .external_lex_state = 2}, [1150] = {.lex_state = 38, .external_lex_state = 2}, - [1151] = {.lex_state = 352, .external_lex_state = 5}, + [1151] = {.lex_state = 37, .external_lex_state = 5}, [1152] = {.lex_state = 38, .external_lex_state = 2}, - [1153] = {.lex_state = 37, .external_lex_state = 2}, - [1154] = {.lex_state = 38, .external_lex_state = 2}, - [1155] = {.lex_state = 37, .external_lex_state = 5}, - [1156] = {.lex_state = 38, .external_lex_state = 2}, - [1157] = {.lex_state = 352, .external_lex_state = 2}, - [1158] = {.lex_state = 352, .external_lex_state = 2}, - [1159] = {.lex_state = 355, .external_lex_state = 2}, + [1153] = {.lex_state = 38, .external_lex_state = 2}, + [1154] = {.lex_state = 352, .external_lex_state = 5}, + [1155] = {.lex_state = 352, .external_lex_state = 5}, + [1156] = {.lex_state = 37, .external_lex_state = 5}, + [1157] = {.lex_state = 38, .external_lex_state = 2}, + [1158] = {.lex_state = 41, .external_lex_state = 2}, + [1159] = {.lex_state = 38, .external_lex_state = 2}, [1160] = {.lex_state = 38, .external_lex_state = 2}, [1161] = {.lex_state = 38, .external_lex_state = 2}, - [1162] = {.lex_state = 41, .external_lex_state = 2}, - [1163] = {.lex_state = 352, .external_lex_state = 5}, - [1164] = {.lex_state = 37, .external_lex_state = 5}, + [1162] = {.lex_state = 38, .external_lex_state = 2}, + [1163] = {.lex_state = 38, .external_lex_state = 2}, + [1164] = {.lex_state = 37, .external_lex_state = 2}, [1165] = {.lex_state = 38, .external_lex_state = 2}, [1166] = {.lex_state = 38, .external_lex_state = 2}, - [1167] = {.lex_state = 38, .external_lex_state = 2}, - [1168] = {.lex_state = 38, .external_lex_state = 2}, - [1169] = {.lex_state = 352, .external_lex_state = 5}, - [1170] = {.lex_state = 352, .external_lex_state = 5}, + [1167] = {.lex_state = 352, .external_lex_state = 5}, + [1168] = {.lex_state = 355, .external_lex_state = 2}, + [1169] = {.lex_state = 38, .external_lex_state = 2}, + [1170] = {.lex_state = 41, .external_lex_state = 2}, [1171] = {.lex_state = 38, .external_lex_state = 2}, - [1172] = {.lex_state = 38, .external_lex_state = 2}, + [1172] = {.lex_state = 37, .external_lex_state = 5}, [1173] = {.lex_state = 38, .external_lex_state = 2}, [1174] = {.lex_state = 38, .external_lex_state = 2}, - [1175] = {.lex_state = 41, .external_lex_state = 2}, - [1176] = {.lex_state = 38, .external_lex_state = 2}, - [1177] = {.lex_state = 38, .external_lex_state = 2}, - [1178] = {.lex_state = 38, .external_lex_state = 2}, + [1175] = {.lex_state = 38, .external_lex_state = 2}, + [1176] = {.lex_state = 352, .external_lex_state = 5}, + [1177] = {.lex_state = 354, .external_lex_state = 2}, + [1178] = {.lex_state = 37, .external_lex_state = 2}, [1179] = {.lex_state = 38, .external_lex_state = 2}, [1180] = {.lex_state = 38, .external_lex_state = 2}, - [1181] = {.lex_state = 38, .external_lex_state = 2}, + [1181] = {.lex_state = 37, .external_lex_state = 2}, [1182] = {.lex_state = 38, .external_lex_state = 2}, - [1183] = {.lex_state = 37, .external_lex_state = 5}, - [1184] = {.lex_state = 354, .external_lex_state = 2}, + [1183] = {.lex_state = 38, .external_lex_state = 2}, + [1184] = {.lex_state = 37, .external_lex_state = 5}, [1185] = {.lex_state = 38, .external_lex_state = 2}, - [1186] = {.lex_state = 37, .external_lex_state = 5}, - [1187] = {.lex_state = 37, .external_lex_state = 5}, + [1186] = {.lex_state = 38, .external_lex_state = 2}, + [1187] = {.lex_state = 38, .external_lex_state = 2}, [1188] = {.lex_state = 38, .external_lex_state = 2}, - [1189] = {.lex_state = 38, .external_lex_state = 2}, + [1189] = {.lex_state = 37, .external_lex_state = 5}, [1190] = {.lex_state = 38, .external_lex_state = 2}, [1191] = {.lex_state = 38, .external_lex_state = 2}, - [1192] = {.lex_state = 353, .external_lex_state = 5}, - [1193] = {.lex_state = 37, .external_lex_state = 5}, + [1192] = {.lex_state = 38, .external_lex_state = 2}, + [1193] = {.lex_state = 38, .external_lex_state = 2}, [1194] = {.lex_state = 37, .external_lex_state = 5}, - [1195] = {.lex_state = 37, .external_lex_state = 5}, - [1196] = {.lex_state = 38, .external_lex_state = 2}, - [1197] = {.lex_state = 351, .external_lex_state = 2}, - [1198] = {.lex_state = 38, .external_lex_state = 2}, - [1199] = {.lex_state = 351, .external_lex_state = 2}, - [1200] = {.lex_state = 37, .external_lex_state = 5}, - [1201] = {.lex_state = 37, .external_lex_state = 5}, - [1202] = {.lex_state = 354, .external_lex_state = 2}, + [1195] = {.lex_state = 38, .external_lex_state = 2}, + [1196] = {.lex_state = 352, .external_lex_state = 5}, + [1197] = {.lex_state = 352, .external_lex_state = 5}, + [1198] = {.lex_state = 352, .external_lex_state = 5}, + [1199] = {.lex_state = 38, .external_lex_state = 2}, + [1200] = {.lex_state = 38, .external_lex_state = 2}, + [1201] = {.lex_state = 352, .external_lex_state = 5}, + [1202] = {.lex_state = 38, .external_lex_state = 2}, [1203] = {.lex_state = 38, .external_lex_state = 2}, [1204] = {.lex_state = 38, .external_lex_state = 2}, [1205] = {.lex_state = 38, .external_lex_state = 2}, [1206] = {.lex_state = 38, .external_lex_state = 2}, [1207] = {.lex_state = 38, .external_lex_state = 2}, [1208] = {.lex_state = 38, .external_lex_state = 2}, - [1209] = {.lex_state = 354, .external_lex_state = 2}, - [1210] = {.lex_state = 353, .external_lex_state = 5}, + [1209] = {.lex_state = 352, .external_lex_state = 5}, + [1210] = {.lex_state = 352, .external_lex_state = 5}, [1211] = {.lex_state = 352, .external_lex_state = 5}, - [1212] = {.lex_state = 37, .external_lex_state = 5}, + [1212] = {.lex_state = 352, .external_lex_state = 5}, [1213] = {.lex_state = 352, .external_lex_state = 5}, - [1214] = {.lex_state = 38, .external_lex_state = 2}, - [1215] = {.lex_state = 354, .external_lex_state = 2}, + [1214] = {.lex_state = 352, .external_lex_state = 5}, + [1215] = {.lex_state = 38, .external_lex_state = 2}, [1216] = {.lex_state = 38, .external_lex_state = 2}, - [1217] = {.lex_state = 352, .external_lex_state = 5}, - [1218] = {.lex_state = 351, .external_lex_state = 5}, - [1219] = {.lex_state = 352, .external_lex_state = 2}, + [1217] = {.lex_state = 41, .external_lex_state = 2}, + [1218] = {.lex_state = 352, .external_lex_state = 2}, + [1219] = {.lex_state = 37, .external_lex_state = 2}, [1220] = {.lex_state = 351, .external_lex_state = 5}, [1221] = {.lex_state = 352, .external_lex_state = 2}, - [1222] = {.lex_state = 37, .external_lex_state = 2}, - [1223] = {.lex_state = 351, .external_lex_state = 5}, + [1222] = {.lex_state = 351, .external_lex_state = 5}, + [1223] = {.lex_state = 37, .external_lex_state = 2}, [1224] = {.lex_state = 352, .external_lex_state = 2}, [1225] = {.lex_state = 352, .external_lex_state = 2}, - [1226] = {.lex_state = 37, .external_lex_state = 2}, - [1227] = {.lex_state = 37, .external_lex_state = 2}, - [1228] = {.lex_state = 352, .external_lex_state = 2}, + [1226] = {.lex_state = 352, .external_lex_state = 2}, + [1227] = {.lex_state = 352, .external_lex_state = 2}, + [1228] = {.lex_state = 37, .external_lex_state = 2}, [1229] = {.lex_state = 37, .external_lex_state = 2}, - [1230] = {.lex_state = 351, .external_lex_state = 5}, - [1231] = {.lex_state = 37, .external_lex_state = 2}, - [1232] = {.lex_state = 351, .external_lex_state = 2}, - [1233] = {.lex_state = 351, .external_lex_state = 2}, - [1234] = {.lex_state = 351, .external_lex_state = 5}, + [1230] = {.lex_state = 37, .external_lex_state = 2}, + [1231] = {.lex_state = 352, .external_lex_state = 2}, + [1232] = {.lex_state = 352, .external_lex_state = 2}, + [1233] = {.lex_state = 352, .external_lex_state = 2}, + [1234] = {.lex_state = 37, .external_lex_state = 2}, [1235] = {.lex_state = 352, .external_lex_state = 2}, - [1236] = {.lex_state = 352, .external_lex_state = 2}, + [1236] = {.lex_state = 37, .external_lex_state = 2}, [1237] = {.lex_state = 352, .external_lex_state = 2}, - [1238] = {.lex_state = 37, .external_lex_state = 2}, + [1238] = {.lex_state = 351, .external_lex_state = 5}, [1239] = {.lex_state = 352, .external_lex_state = 2}, [1240] = {.lex_state = 352, .external_lex_state = 2}, - [1241] = {.lex_state = 352, .external_lex_state = 2}, - [1242] = {.lex_state = 352, .external_lex_state = 2}, - [1243] = {.lex_state = 352, .external_lex_state = 2}, + [1241] = {.lex_state = 37, .external_lex_state = 2}, + [1242] = {.lex_state = 351, .external_lex_state = 5}, + [1243] = {.lex_state = 37, .external_lex_state = 2}, [1244] = {.lex_state = 37, .external_lex_state = 2}, - [1245] = {.lex_state = 37, .external_lex_state = 2}, - [1246] = {.lex_state = 37, .external_lex_state = 2}, + [1245] = {.lex_state = 351, .external_lex_state = 5}, + [1246] = {.lex_state = 353, .external_lex_state = 2}, [1247] = {.lex_state = 37, .external_lex_state = 2}, - [1248] = {.lex_state = 352, .external_lex_state = 2}, + [1248] = {.lex_state = 37, .external_lex_state = 2}, [1249] = {.lex_state = 352, .external_lex_state = 2}, - [1250] = {.lex_state = 352, .external_lex_state = 2}, - [1251] = {.lex_state = 352, .external_lex_state = 2}, - [1252] = {.lex_state = 352, .external_lex_state = 2}, + [1250] = {.lex_state = 351, .external_lex_state = 5}, + [1251] = {.lex_state = 37, .external_lex_state = 2}, + [1252] = {.lex_state = 37, .external_lex_state = 2}, [1253] = {.lex_state = 352, .external_lex_state = 2}, - [1254] = {.lex_state = 353, .external_lex_state = 2}, + [1254] = {.lex_state = 37, .external_lex_state = 2}, [1255] = {.lex_state = 37, .external_lex_state = 2}, - [1256] = {.lex_state = 37, .external_lex_state = 2}, + [1256] = {.lex_state = 352, .external_lex_state = 2}, [1257] = {.lex_state = 352, .external_lex_state = 2}, - [1258] = {.lex_state = 37, .external_lex_state = 2}, + [1258] = {.lex_state = 352, .external_lex_state = 2}, [1259] = {.lex_state = 37, .external_lex_state = 2}, [1260] = {.lex_state = 352, .external_lex_state = 2}, - [1261] = {.lex_state = 37, .external_lex_state = 2}, - [1262] = {.lex_state = 352, .external_lex_state = 2}, - [1263] = {.lex_state = 37, .external_lex_state = 2}, - [1264] = {.lex_state = 37, .external_lex_state = 2}, + [1261] = {.lex_state = 352, .external_lex_state = 2}, + [1262] = {.lex_state = 37, .external_lex_state = 2}, + [1263] = {.lex_state = 352, .external_lex_state = 2}, + [1264] = {.lex_state = 352, .external_lex_state = 2}, [1265] = {.lex_state = 37, .external_lex_state = 2}, [1266] = {.lex_state = 352, .external_lex_state = 2}, [1267] = {.lex_state = 352, .external_lex_state = 2}, - [1268] = {.lex_state = 351, .external_lex_state = 5}, + [1268] = {.lex_state = 352, .external_lex_state = 2}, [1269] = {.lex_state = 352, .external_lex_state = 2}, [1270] = {.lex_state = 352, .external_lex_state = 2}, - [1271] = {.lex_state = 37, .external_lex_state = 2}, - [1272] = {.lex_state = 37, .external_lex_state = 2}, - [1273] = {.lex_state = 37, .external_lex_state = 2}, - [1274] = {.lex_state = 37, .external_lex_state = 2}, - [1275] = {.lex_state = 37, .external_lex_state = 2}, + [1271] = {.lex_state = 352, .external_lex_state = 2}, + [1272] = {.lex_state = 353, .external_lex_state = 2}, + [1273] = {.lex_state = 352, .external_lex_state = 2}, + [1274] = {.lex_state = 351, .external_lex_state = 5}, + [1275] = {.lex_state = 352, .external_lex_state = 2}, [1276] = {.lex_state = 37, .external_lex_state = 2}, [1277] = {.lex_state = 37, .external_lex_state = 2}, - [1278] = {.lex_state = 37, .external_lex_state = 2}, + [1278] = {.lex_state = 352, .external_lex_state = 2}, [1279] = {.lex_state = 37, .external_lex_state = 2}, - [1280] = {.lex_state = 352, .external_lex_state = 2}, - [1281] = {.lex_state = 37, .external_lex_state = 2}, + [1280] = {.lex_state = 351, .external_lex_state = 5}, + [1281] = {.lex_state = 352, .external_lex_state = 2}, [1282] = {.lex_state = 352, .external_lex_state = 2}, - [1283] = {.lex_state = 37, .external_lex_state = 2}, + [1283] = {.lex_state = 352, .external_lex_state = 2}, [1284] = {.lex_state = 352, .external_lex_state = 2}, - [1285] = {.lex_state = 351, .external_lex_state = 5}, + [1285] = {.lex_state = 37, .external_lex_state = 2}, [1286] = {.lex_state = 352, .external_lex_state = 2}, [1287] = {.lex_state = 351, .external_lex_state = 5}, - [1288] = {.lex_state = 351, .external_lex_state = 5}, + [1288] = {.lex_state = 37, .external_lex_state = 2}, [1289] = {.lex_state = 37, .external_lex_state = 2}, - [1290] = {.lex_state = 37, .external_lex_state = 2}, + [1290] = {.lex_state = 352, .external_lex_state = 2}, [1291] = {.lex_state = 37, .external_lex_state = 2}, [1292] = {.lex_state = 352, .external_lex_state = 2}, - [1293] = {.lex_state = 352, .external_lex_state = 2}, + [1293] = {.lex_state = 37, .external_lex_state = 2}, [1294] = {.lex_state = 352, .external_lex_state = 2}, - [1295] = {.lex_state = 37, .external_lex_state = 2}, - [1296] = {.lex_state = 37, .external_lex_state = 2}, - [1297] = {.lex_state = 351, .external_lex_state = 5}, - [1298] = {.lex_state = 352, .external_lex_state = 2}, - [1299] = {.lex_state = 352, .external_lex_state = 2}, - [1300] = {.lex_state = 37, .external_lex_state = 2}, - [1301] = {.lex_state = 37, .external_lex_state = 2}, - [1302] = {.lex_state = 352, .external_lex_state = 2}, + [1295] = {.lex_state = 352, .external_lex_state = 2}, + [1296] = {.lex_state = 352, .external_lex_state = 2}, + [1297] = {.lex_state = 37, .external_lex_state = 2}, + [1298] = {.lex_state = 37, .external_lex_state = 2}, + [1299] = {.lex_state = 37, .external_lex_state = 2}, + [1300] = {.lex_state = 352, .external_lex_state = 2}, + [1301] = {.lex_state = 352, .external_lex_state = 2}, + [1302] = {.lex_state = 37, .external_lex_state = 2}, [1303] = {.lex_state = 37, .external_lex_state = 2}, - [1304] = {.lex_state = 37, .external_lex_state = 2}, - [1305] = {.lex_state = 352, .external_lex_state = 2}, + [1304] = {.lex_state = 351, .external_lex_state = 2}, + [1305] = {.lex_state = 37, .external_lex_state = 2}, [1306] = {.lex_state = 352, .external_lex_state = 2}, [1307] = {.lex_state = 352, .external_lex_state = 2}, [1308] = {.lex_state = 352, .external_lex_state = 2}, - [1309] = {.lex_state = 37, .external_lex_state = 2}, - [1310] = {.lex_state = 37, .external_lex_state = 2}, - [1311] = {.lex_state = 352, .external_lex_state = 2}, + [1309] = {.lex_state = 352, .external_lex_state = 2}, + [1310] = {.lex_state = 351, .external_lex_state = 2}, + [1311] = {.lex_state = 37, .external_lex_state = 2}, [1312] = {.lex_state = 352, .external_lex_state = 2}, [1313] = {.lex_state = 352, .external_lex_state = 2}, [1314] = {.lex_state = 37, .external_lex_state = 2}, - [1315] = {.lex_state = 37, .external_lex_state = 2}, - [1316] = {.lex_state = 353, .external_lex_state = 2}, - [1317] = {.lex_state = 351, .external_lex_state = 2}, - [1318] = {.lex_state = 352, .external_lex_state = 2}, - [1319] = {.lex_state = 352, .external_lex_state = 2}, + [1315] = {.lex_state = 352, .external_lex_state = 2}, + [1316] = {.lex_state = 352, .external_lex_state = 2}, + [1317] = {.lex_state = 37, .external_lex_state = 2}, + [1318] = {.lex_state = 37, .external_lex_state = 2}, + [1319] = {.lex_state = 37, .external_lex_state = 2}, [1320] = {.lex_state = 352, .external_lex_state = 2}, [1321] = {.lex_state = 352, .external_lex_state = 2}, - [1322] = {.lex_state = 37, .external_lex_state = 2}, + [1322] = {.lex_state = 352, .external_lex_state = 2}, [1323] = {.lex_state = 352, .external_lex_state = 2}, - [1324] = {.lex_state = 352, .external_lex_state = 2}, - [1325] = {.lex_state = 352, .external_lex_state = 2}, + [1324] = {.lex_state = 37, .external_lex_state = 2}, + [1325] = {.lex_state = 37, .external_lex_state = 2}, [1326] = {.lex_state = 352, .external_lex_state = 2}, - [1327] = {.lex_state = 37, .external_lex_state = 2}, + [1327] = {.lex_state = 352, .external_lex_state = 2}, [1328] = {.lex_state = 352, .external_lex_state = 2}, [1329] = {.lex_state = 352, .external_lex_state = 2}, [1330] = {.lex_state = 352, .external_lex_state = 2}, [1331] = {.lex_state = 352, .external_lex_state = 2}, - [1332] = {.lex_state = 37, .external_lex_state = 2}, + [1332] = {.lex_state = 352, .external_lex_state = 2}, [1333] = {.lex_state = 37, .external_lex_state = 2}, - [1334] = {.lex_state = 37, .external_lex_state = 2}, - [1335] = {.lex_state = 353, .external_lex_state = 2}, - [1336] = {.lex_state = 37, .external_lex_state = 2}, + [1334] = {.lex_state = 352, .external_lex_state = 2}, + [1335] = {.lex_state = 352, .external_lex_state = 2}, + [1336] = {.lex_state = 352, .external_lex_state = 2}, [1337] = {.lex_state = 352, .external_lex_state = 2}, [1338] = {.lex_state = 352, .external_lex_state = 2}, [1339] = {.lex_state = 352, .external_lex_state = 2}, - [1340] = {.lex_state = 351, .external_lex_state = 5}, - [1341] = {.lex_state = 352, .external_lex_state = 2}, - [1342] = {.lex_state = 353, .external_lex_state = 2}, + [1340] = {.lex_state = 352, .external_lex_state = 2}, + [1341] = {.lex_state = 37, .external_lex_state = 2}, + [1342] = {.lex_state = 352, .external_lex_state = 2}, [1343] = {.lex_state = 352, .external_lex_state = 2}, - [1344] = {.lex_state = 37, .external_lex_state = 2}, + [1344] = {.lex_state = 352, .external_lex_state = 2}, [1345] = {.lex_state = 352, .external_lex_state = 2}, [1346] = {.lex_state = 352, .external_lex_state = 2}, [1347] = {.lex_state = 352, .external_lex_state = 2}, [1348] = {.lex_state = 352, .external_lex_state = 2}, - [1349] = {.lex_state = 37, .external_lex_state = 2}, - [1350] = {.lex_state = 37, .external_lex_state = 2}, + [1349] = {.lex_state = 352, .external_lex_state = 2}, + [1350] = {.lex_state = 352, .external_lex_state = 2}, [1351] = {.lex_state = 352, .external_lex_state = 2}, [1352] = {.lex_state = 37, .external_lex_state = 2}, - [1353] = {.lex_state = 352, .external_lex_state = 2}, - [1354] = {.lex_state = 37, .external_lex_state = 2}, + [1353] = {.lex_state = 37, .external_lex_state = 2}, + [1354] = {.lex_state = 352, .external_lex_state = 2}, [1355] = {.lex_state = 352, .external_lex_state = 2}, - [1356] = {.lex_state = 351, .external_lex_state = 5}, + [1356] = {.lex_state = 352, .external_lex_state = 2}, [1357] = {.lex_state = 352, .external_lex_state = 2}, - [1358] = {.lex_state = 352, .external_lex_state = 2}, - [1359] = {.lex_state = 352, .external_lex_state = 2}, - [1360] = {.lex_state = 352, .external_lex_state = 2}, - [1361] = {.lex_state = 352, .external_lex_state = 2}, - [1362] = {.lex_state = 37, .external_lex_state = 2}, - [1363] = {.lex_state = 352, .external_lex_state = 2}, - [1364] = {.lex_state = 352, .external_lex_state = 2}, + [1358] = {.lex_state = 37, .external_lex_state = 2}, + [1359] = {.lex_state = 37, .external_lex_state = 2}, + [1360] = {.lex_state = 37, .external_lex_state = 2}, + [1361] = {.lex_state = 37, .external_lex_state = 2}, + [1362] = {.lex_state = 352, .external_lex_state = 2}, + [1363] = {.lex_state = 37, .external_lex_state = 2}, + [1364] = {.lex_state = 37, .external_lex_state = 2}, [1365] = {.lex_state = 352, .external_lex_state = 2}, - [1366] = {.lex_state = 37, .external_lex_state = 2}, - [1367] = {.lex_state = 37, .external_lex_state = 2}, - [1368] = {.lex_state = 37, .external_lex_state = 2}, + [1366] = {.lex_state = 352, .external_lex_state = 2}, + [1367] = {.lex_state = 352, .external_lex_state = 2}, + [1368] = {.lex_state = 351, .external_lex_state = 5}, [1369] = {.lex_state = 37, .external_lex_state = 2}, - [1370] = {.lex_state = 351, .external_lex_state = 5}, - [1371] = {.lex_state = 351, .external_lex_state = 5}, - [1372] = {.lex_state = 352, .external_lex_state = 2}, - [1373] = {.lex_state = 352, .external_lex_state = 2}, - [1374] = {.lex_state = 352, .external_lex_state = 2}, - [1375] = {.lex_state = 351, .external_lex_state = 5}, + [1370] = {.lex_state = 37, .external_lex_state = 2}, + [1371] = {.lex_state = 37, .external_lex_state = 2}, + [1372] = {.lex_state = 37, .external_lex_state = 2}, + [1373] = {.lex_state = 37, .external_lex_state = 2}, + [1374] = {.lex_state = 37, .external_lex_state = 2}, + [1375] = {.lex_state = 352, .external_lex_state = 2}, [1376] = {.lex_state = 352, .external_lex_state = 2}, [1377] = {.lex_state = 37, .external_lex_state = 2}, [1378] = {.lex_state = 37, .external_lex_state = 2}, [1379] = {.lex_state = 37, .external_lex_state = 2}, - [1380] = {.lex_state = 351, .external_lex_state = 5}, - [1381] = {.lex_state = 37, .external_lex_state = 2}, - [1382] = {.lex_state = 352, .external_lex_state = 2}, + [1380] = {.lex_state = 37, .external_lex_state = 2}, + [1381] = {.lex_state = 352, .external_lex_state = 2}, + [1382] = {.lex_state = 37, .external_lex_state = 2}, [1383] = {.lex_state = 352, .external_lex_state = 2}, [1384] = {.lex_state = 352, .external_lex_state = 2}, [1385] = {.lex_state = 352, .external_lex_state = 2}, - [1386] = {.lex_state = 352, .external_lex_state = 2}, - [1387] = {.lex_state = 352, .external_lex_state = 2}, + [1386] = {.lex_state = 37, .external_lex_state = 2}, + [1387] = {.lex_state = 37, .external_lex_state = 2}, [1388] = {.lex_state = 352, .external_lex_state = 2}, [1389] = {.lex_state = 352, .external_lex_state = 2}, [1390] = {.lex_state = 37, .external_lex_state = 2}, [1391] = {.lex_state = 352, .external_lex_state = 2}, - [1392] = {.lex_state = 352, .external_lex_state = 2}, + [1392] = {.lex_state = 37, .external_lex_state = 2}, [1393] = {.lex_state = 352, .external_lex_state = 2}, [1394] = {.lex_state = 352, .external_lex_state = 2}, [1395] = {.lex_state = 37, .external_lex_state = 2}, [1396] = {.lex_state = 352, .external_lex_state = 2}, [1397] = {.lex_state = 352, .external_lex_state = 2}, - [1398] = {.lex_state = 352, .external_lex_state = 2}, - [1399] = {.lex_state = 37, .external_lex_state = 2}, + [1398] = {.lex_state = 37, .external_lex_state = 2}, + [1399] = {.lex_state = 352, .external_lex_state = 2}, [1400] = {.lex_state = 37, .external_lex_state = 2}, - [1401] = {.lex_state = 352, .external_lex_state = 2}, - [1402] = {.lex_state = 352, .external_lex_state = 2}, - [1403] = {.lex_state = 37, .external_lex_state = 2}, + [1401] = {.lex_state = 37, .external_lex_state = 2}, + [1402] = {.lex_state = 351, .external_lex_state = 2}, + [1403] = {.lex_state = 352, .external_lex_state = 2}, [1404] = {.lex_state = 352, .external_lex_state = 2}, [1405] = {.lex_state = 352, .external_lex_state = 2}, - [1406] = {.lex_state = 352, .external_lex_state = 2}, - [1407] = {.lex_state = 352, .external_lex_state = 2}, + [1406] = {.lex_state = 37, .external_lex_state = 2}, + [1407] = {.lex_state = 37, .external_lex_state = 2}, [1408] = {.lex_state = 37, .external_lex_state = 2}, [1409] = {.lex_state = 37, .external_lex_state = 2}, - [1410] = {.lex_state = 37, .external_lex_state = 2}, + [1410] = {.lex_state = 352, .external_lex_state = 2}, [1411] = {.lex_state = 37, .external_lex_state = 2}, [1412] = {.lex_state = 37, .external_lex_state = 2}, - [1413] = {.lex_state = 37, .external_lex_state = 2}, - [1414] = {.lex_state = 351, .external_lex_state = 5}, - [1415] = {.lex_state = 37, .external_lex_state = 2}, + [1413] = {.lex_state = 352, .external_lex_state = 2}, + [1414] = {.lex_state = 353, .external_lex_state = 2}, + [1415] = {.lex_state = 352, .external_lex_state = 2}, [1416] = {.lex_state = 37, .external_lex_state = 2}, [1417] = {.lex_state = 37, .external_lex_state = 2}, - [1418] = {.lex_state = 37, .external_lex_state = 2}, - [1419] = {.lex_state = 37, .external_lex_state = 2}, - [1420] = {.lex_state = 37, .external_lex_state = 2}, - [1421] = {.lex_state = 37, .external_lex_state = 2}, - [1422] = {.lex_state = 37, .external_lex_state = 2}, + [1418] = {.lex_state = 352, .external_lex_state = 2}, + [1419] = {.lex_state = 352, .external_lex_state = 2}, + [1420] = {.lex_state = 352, .external_lex_state = 2}, + [1421] = {.lex_state = 352, .external_lex_state = 2}, + [1422] = {.lex_state = 352, .external_lex_state = 2}, [1423] = {.lex_state = 352, .external_lex_state = 2}, - [1424] = {.lex_state = 352, .external_lex_state = 2}, - [1425] = {.lex_state = 352, .external_lex_state = 2}, - [1426] = {.lex_state = 352, .external_lex_state = 2}, - [1427] = {.lex_state = 352, .external_lex_state = 2}, - [1428] = {.lex_state = 37, .external_lex_state = 2}, - [1429] = {.lex_state = 352, .external_lex_state = 2}, - [1430] = {.lex_state = 352, .external_lex_state = 2}, - [1431] = {.lex_state = 37, .external_lex_state = 2}, - [1432] = {.lex_state = 352, .external_lex_state = 2}, - [1433] = {.lex_state = 37, .external_lex_state = 2}, - [1434] = {.lex_state = 37, .external_lex_state = 2}, - [1435] = {.lex_state = 352, .external_lex_state = 2}, - [1436] = {.lex_state = 352, .external_lex_state = 2}, - [1437] = {.lex_state = 37, .external_lex_state = 2}, + [1424] = {.lex_state = 37, .external_lex_state = 2}, + [1425] = {.lex_state = 37, .external_lex_state = 2}, + [1426] = {.lex_state = 351, .external_lex_state = 5}, + [1427] = {.lex_state = 37, .external_lex_state = 2}, + [1428] = {.lex_state = 352, .external_lex_state = 2}, + [1429] = {.lex_state = 37, .external_lex_state = 2}, + [1430] = {.lex_state = 37, .external_lex_state = 2}, + [1431] = {.lex_state = 352, .external_lex_state = 2}, + [1432] = {.lex_state = 37, .external_lex_state = 2}, + [1433] = {.lex_state = 352, .external_lex_state = 2}, + [1434] = {.lex_state = 352, .external_lex_state = 2}, + [1435] = {.lex_state = 351, .external_lex_state = 5}, + [1436] = {.lex_state = 37, .external_lex_state = 2}, + [1437] = {.lex_state = 352, .external_lex_state = 2}, [1438] = {.lex_state = 352, .external_lex_state = 2}, - [1439] = {.lex_state = 352, .external_lex_state = 2}, - [1440] = {.lex_state = 352, .external_lex_state = 2}, + [1439] = {.lex_state = 37, .external_lex_state = 2}, + [1440] = {.lex_state = 37, .external_lex_state = 2}, [1441] = {.lex_state = 37, .external_lex_state = 2}, [1442] = {.lex_state = 37, .external_lex_state = 2}, [1443] = {.lex_state = 37, .external_lex_state = 2}, - [1444] = {.lex_state = 352, .external_lex_state = 2}, - [1445] = {.lex_state = 352, .external_lex_state = 2}, - [1446] = {.lex_state = 352, .external_lex_state = 2}, - [1447] = {.lex_state = 37, .external_lex_state = 2}, + [1444] = {.lex_state = 37, .external_lex_state = 2}, + [1445] = {.lex_state = 37, .external_lex_state = 2}, + [1446] = {.lex_state = 37, .external_lex_state = 2}, + [1447] = {.lex_state = 351, .external_lex_state = 5}, [1448] = {.lex_state = 37, .external_lex_state = 2}, [1449] = {.lex_state = 37, .external_lex_state = 2}, - [1450] = {.lex_state = 37, .external_lex_state = 2}, - [1451] = {.lex_state = 37, .external_lex_state = 2}, - [1452] = {.lex_state = 37, .external_lex_state = 2}, + [1450] = {.lex_state = 353, .external_lex_state = 2}, + [1451] = {.lex_state = 353, .external_lex_state = 2}, + [1452] = {.lex_state = 352, .external_lex_state = 2}, [1453] = {.lex_state = 37, .external_lex_state = 2}, - [1454] = {.lex_state = 37, .external_lex_state = 2}, - [1455] = {.lex_state = 37, .external_lex_state = 2}, + [1454] = {.lex_state = 352, .external_lex_state = 2}, + [1455] = {.lex_state = 352, .external_lex_state = 2}, [1456] = {.lex_state = 37, .external_lex_state = 2}, [1457] = {.lex_state = 37, .external_lex_state = 2}, [1458] = {.lex_state = 37, .external_lex_state = 2}, [1459] = {.lex_state = 37, .external_lex_state = 2}, [1460] = {.lex_state = 37, .external_lex_state = 2}, [1461] = {.lex_state = 37, .external_lex_state = 2}, - [1462] = {.lex_state = 351, .external_lex_state = 5}, + [1462] = {.lex_state = 37, .external_lex_state = 2}, [1463] = {.lex_state = 37, .external_lex_state = 2}, [1464] = {.lex_state = 37, .external_lex_state = 2}, [1465] = {.lex_state = 37, .external_lex_state = 2}, @@ -21737,39 +21801,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1468] = {.lex_state = 37, .external_lex_state = 2}, [1469] = {.lex_state = 37, .external_lex_state = 2}, [1470] = {.lex_state = 352, .external_lex_state = 2}, - [1471] = {.lex_state = 352, .external_lex_state = 2}, + [1471] = {.lex_state = 37, .external_lex_state = 2}, [1472] = {.lex_state = 352, .external_lex_state = 2}, [1473] = {.lex_state = 37, .external_lex_state = 2}, [1474] = {.lex_state = 37, .external_lex_state = 2}, - [1475] = {.lex_state = 37, .external_lex_state = 2}, + [1475] = {.lex_state = 352, .external_lex_state = 2}, [1476] = {.lex_state = 37, .external_lex_state = 2}, - [1477] = {.lex_state = 37, .external_lex_state = 2}, + [1477] = {.lex_state = 352, .external_lex_state = 2}, [1478] = {.lex_state = 37, .external_lex_state = 2}, [1479] = {.lex_state = 37, .external_lex_state = 2}, - [1480] = {.lex_state = 37, .external_lex_state = 2}, - [1481] = {.lex_state = 37, .external_lex_state = 2}, + [1480] = {.lex_state = 351, .external_lex_state = 5}, + [1481] = {.lex_state = 351, .external_lex_state = 5}, [1482] = {.lex_state = 37, .external_lex_state = 2}, - [1483] = {.lex_state = 37, .external_lex_state = 2}, + [1483] = {.lex_state = 351, .external_lex_state = 5}, [1484] = {.lex_state = 37, .external_lex_state = 2}, - [1485] = {.lex_state = 352, .external_lex_state = 2}, - [1486] = {.lex_state = 351, .external_lex_state = 5}, - [1487] = {.lex_state = 353, .external_lex_state = 2}, - [1488] = {.lex_state = 351, .external_lex_state = 5}, - [1489] = {.lex_state = 351, .external_lex_state = 5}, - [1490] = {.lex_state = 351, .external_lex_state = 5}, - [1491] = {.lex_state = 37, .external_lex_state = 2}, + [1485] = {.lex_state = 37, .external_lex_state = 2}, + [1486] = {.lex_state = 37, .external_lex_state = 2}, + [1487] = {.lex_state = 37, .external_lex_state = 2}, + [1488] = {.lex_state = 37, .external_lex_state = 2}, + [1489] = {.lex_state = 37, .external_lex_state = 2}, + [1490] = {.lex_state = 37, .external_lex_state = 2}, + [1491] = {.lex_state = 352, .external_lex_state = 2}, [1492] = {.lex_state = 351, .external_lex_state = 5}, [1493] = {.lex_state = 37, .external_lex_state = 2}, - [1494] = {.lex_state = 352, .external_lex_state = 2}, - [1495] = {.lex_state = 352, .external_lex_state = 2}, - [1496] = {.lex_state = 37, .external_lex_state = 2}, - [1497] = {.lex_state = 37, .external_lex_state = 2}, + [1494] = {.lex_state = 351, .external_lex_state = 5}, + [1495] = {.lex_state = 351, .external_lex_state = 5}, + [1496] = {.lex_state = 351, .external_lex_state = 5}, + [1497] = {.lex_state = 351, .external_lex_state = 5}, [1498] = {.lex_state = 37, .external_lex_state = 2}, - [1499] = {.lex_state = 352, .external_lex_state = 2}, - [1500] = {.lex_state = 352, .external_lex_state = 2}, - [1501] = {.lex_state = 352, .external_lex_state = 2}, - [1502] = {.lex_state = 352, .external_lex_state = 2}, - [1503] = {.lex_state = 352, .external_lex_state = 2}, + [1499] = {.lex_state = 351, .external_lex_state = 5}, + [1500] = {.lex_state = 351, .external_lex_state = 5}, + [1501] = {.lex_state = 37, .external_lex_state = 2}, + [1502] = {.lex_state = 37, .external_lex_state = 2}, + [1503] = {.lex_state = 37, .external_lex_state = 2}, [1504] = {.lex_state = 351, .external_lex_state = 2}, [1505] = {.lex_state = 351, .external_lex_state = 2}, [1506] = {.lex_state = 351, .external_lex_state = 2}, @@ -21899,36 +21963,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1630] = {.lex_state = 351, .external_lex_state = 2}, [1631] = {.lex_state = 351, .external_lex_state = 2}, [1632] = {.lex_state = 48, .external_lex_state = 2}, - [1633] = {.lex_state = 48, .external_lex_state = 2}, - [1634] = {.lex_state = 48, .external_lex_state = 2}, - [1635] = {.lex_state = 48, .external_lex_state = 2}, - [1636] = {.lex_state = 48, .external_lex_state = 2}, - [1637] = {.lex_state = 351, .external_lex_state = 2}, + [1633] = {.lex_state = 351, .external_lex_state = 2}, + [1634] = {.lex_state = 351, .external_lex_state = 2}, + [1635] = {.lex_state = 351, .external_lex_state = 2}, + [1636] = {.lex_state = 351, .external_lex_state = 2}, + [1637] = {.lex_state = 48, .external_lex_state = 2}, [1638] = {.lex_state = 351, .external_lex_state = 2}, - [1639] = {.lex_state = 48, .external_lex_state = 2}, - [1640] = {.lex_state = 48, .external_lex_state = 2}, - [1641] = {.lex_state = 48, .external_lex_state = 2}, - [1642] = {.lex_state = 48, .external_lex_state = 2}, - [1643] = {.lex_state = 48, .external_lex_state = 2}, - [1644] = {.lex_state = 351, .external_lex_state = 2}, + [1639] = {.lex_state = 351, .external_lex_state = 2}, + [1640] = {.lex_state = 351, .external_lex_state = 2}, + [1641] = {.lex_state = 351, .external_lex_state = 2}, + [1642] = {.lex_state = 351, .external_lex_state = 2}, + [1643] = {.lex_state = 351, .external_lex_state = 2}, + [1644] = {.lex_state = 48, .external_lex_state = 2}, [1645] = {.lex_state = 48, .external_lex_state = 2}, [1646] = {.lex_state = 351, .external_lex_state = 2}, [1647] = {.lex_state = 351, .external_lex_state = 2}, - [1648] = {.lex_state = 351, .external_lex_state = 2}, + [1648] = {.lex_state = 48, .external_lex_state = 2}, [1649] = {.lex_state = 351, .external_lex_state = 2}, [1650] = {.lex_state = 48, .external_lex_state = 2}, - [1651] = {.lex_state = 351, .external_lex_state = 2}, - [1652] = {.lex_state = 351, .external_lex_state = 2}, + [1651] = {.lex_state = 48, .external_lex_state = 2}, + [1652] = {.lex_state = 48, .external_lex_state = 2}, [1653] = {.lex_state = 48, .external_lex_state = 2}, [1654] = {.lex_state = 48, .external_lex_state = 2}, - [1655] = {.lex_state = 351, .external_lex_state = 2}, - [1656] = {.lex_state = 351, .external_lex_state = 2}, + [1655] = {.lex_state = 48, .external_lex_state = 2}, + [1656] = {.lex_state = 48, .external_lex_state = 2}, [1657] = {.lex_state = 48, .external_lex_state = 2}, - [1658] = {.lex_state = 351, .external_lex_state = 2}, - [1659] = {.lex_state = 351, .external_lex_state = 2}, - [1660] = {.lex_state = 48, .external_lex_state = 2}, + [1658] = {.lex_state = 48, .external_lex_state = 2}, + [1659] = {.lex_state = 48, .external_lex_state = 2}, + [1660] = {.lex_state = 49, .external_lex_state = 2}, [1661] = {.lex_state = 49, .external_lex_state = 2}, - [1662] = {.lex_state = 49, .external_lex_state = 2}, + [1662] = {.lex_state = 48, .external_lex_state = 2}, [1663] = {.lex_state = 49, .external_lex_state = 2}, [1664] = {.lex_state = 49, .external_lex_state = 2}, [1665] = {.lex_state = 49, .external_lex_state = 2}, @@ -22005,19 +22069,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1736] = {.lex_state = 35, .external_lex_state = 2}, [1737] = {.lex_state = 35, .external_lex_state = 2}, [1738] = {.lex_state = 15, .external_lex_state = 4}, - [1739] = {.lex_state = 48, .external_lex_state = 2}, + [1739] = {.lex_state = 15, .external_lex_state = 4}, [1740] = {.lex_state = 15, .external_lex_state = 4}, [1741] = {.lex_state = 15, .external_lex_state = 4}, - [1742] = {.lex_state = 15, .external_lex_state = 4}, - [1743] = {.lex_state = 48, .external_lex_state = 2}, + [1742] = {.lex_state = 48, .external_lex_state = 2}, + [1743] = {.lex_state = 15, .external_lex_state = 4}, [1744] = {.lex_state = 15, .external_lex_state = 4}, - [1745] = {.lex_state = 48, .external_lex_state = 2}, - [1746] = {.lex_state = 15, .external_lex_state = 4}, + [1745] = {.lex_state = 15, .external_lex_state = 4}, + [1746] = {.lex_state = 48, .external_lex_state = 2}, [1747] = {.lex_state = 48, .external_lex_state = 2}, - [1748] = {.lex_state = 15, .external_lex_state = 4}, - [1749] = {.lex_state = 48, .external_lex_state = 2}, + [1748] = {.lex_state = 48, .external_lex_state = 2}, + [1749] = {.lex_state = 15, .external_lex_state = 4}, [1750] = {.lex_state = 15, .external_lex_state = 4}, - [1751] = {.lex_state = 15, .external_lex_state = 4}, + [1751] = {.lex_state = 48, .external_lex_state = 2}, [1752] = {.lex_state = 48, .external_lex_state = 2}, [1753] = {.lex_state = 48, .external_lex_state = 2}, [1754] = {.lex_state = 48, .external_lex_state = 2}, @@ -22145,281 +22209,281 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1876] = {.lex_state = 15, .external_lex_state = 3}, [1877] = {.lex_state = 35, .external_lex_state = 2}, [1878] = {.lex_state = 35, .external_lex_state = 2}, - [1879] = {.lex_state = 15, .external_lex_state = 4}, - [1880] = {.lex_state = 15, .external_lex_state = 4}, - [1881] = {.lex_state = 15, .external_lex_state = 3}, + [1879] = {.lex_state = 15, .external_lex_state = 3}, + [1880] = {.lex_state = 18, .external_lex_state = 4}, + [1881] = {.lex_state = 15, .external_lex_state = 4}, [1882] = {.lex_state = 15, .external_lex_state = 4}, - [1883] = {.lex_state = 18, .external_lex_state = 4}, + [1883] = {.lex_state = 15, .external_lex_state = 4}, [1884] = {.lex_state = 15, .external_lex_state = 4}, [1885] = {.lex_state = 15, .external_lex_state = 4}, - [1886] = {.lex_state = 18, .external_lex_state = 4}, - [1887] = {.lex_state = 18, .external_lex_state = 4}, - [1888] = {.lex_state = 18, .external_lex_state = 4}, - [1889] = {.lex_state = 15, .external_lex_state = 3}, + [1886] = {.lex_state = 15, .external_lex_state = 4}, + [1887] = {.lex_state = 15, .external_lex_state = 4}, + [1888] = {.lex_state = 15, .external_lex_state = 4}, + [1889] = {.lex_state = 15, .external_lex_state = 4}, [1890] = {.lex_state = 15, .external_lex_state = 4}, - [1891] = {.lex_state = 15, .external_lex_state = 4}, + [1891] = {.lex_state = 15, .external_lex_state = 3}, [1892] = {.lex_state = 15, .external_lex_state = 4}, [1893] = {.lex_state = 15, .external_lex_state = 3}, [1894] = {.lex_state = 15, .external_lex_state = 4}, - [1895] = {.lex_state = 15, .external_lex_state = 4}, + [1895] = {.lex_state = 18, .external_lex_state = 4}, [1896] = {.lex_state = 15, .external_lex_state = 4}, - [1897] = {.lex_state = 15, .external_lex_state = 4}, - [1898] = {.lex_state = 15, .external_lex_state = 3}, - [1899] = {.lex_state = 15, .external_lex_state = 4}, + [1897] = {.lex_state = 18, .external_lex_state = 4}, + [1898] = {.lex_state = 15, .external_lex_state = 4}, + [1899] = {.lex_state = 15, .external_lex_state = 3}, [1900] = {.lex_state = 15, .external_lex_state = 4}, - [1901] = {.lex_state = 15, .external_lex_state = 4}, + [1901] = {.lex_state = 18, .external_lex_state = 4}, [1902] = {.lex_state = 15, .external_lex_state = 4}, [1903] = {.lex_state = 15, .external_lex_state = 4}, - [1904] = {.lex_state = 19, .external_lex_state = 3}, + [1904] = {.lex_state = 15, .external_lex_state = 4}, [1905] = {.lex_state = 15, .external_lex_state = 4}, - [1906] = {.lex_state = 15, .external_lex_state = 4}, - [1907] = {.lex_state = 15, .external_lex_state = 3}, + [1906] = {.lex_state = 15, .external_lex_state = 3}, + [1907] = {.lex_state = 15, .external_lex_state = 4}, [1908] = {.lex_state = 15, .external_lex_state = 3}, - [1909] = {.lex_state = 19, .external_lex_state = 3}, - [1910] = {.lex_state = 15, .external_lex_state = 3}, - [1911] = {.lex_state = 15, .external_lex_state = 4}, + [1909] = {.lex_state = 15, .external_lex_state = 3}, + [1910] = {.lex_state = 19, .external_lex_state = 3}, + [1911] = {.lex_state = 19, .external_lex_state = 3}, [1912] = {.lex_state = 15, .external_lex_state = 3}, [1913] = {.lex_state = 15, .external_lex_state = 4}, [1914] = {.lex_state = 21, .external_lex_state = 4}, [1915] = {.lex_state = 15, .external_lex_state = 4}, - [1916] = {.lex_state = 15, .external_lex_state = 4}, - [1917] = {.lex_state = 15, .external_lex_state = 4}, + [1916] = {.lex_state = 21, .external_lex_state = 3}, + [1917] = {.lex_state = 15, .external_lex_state = 3}, [1918] = {.lex_state = 15, .external_lex_state = 4}, [1919] = {.lex_state = 15, .external_lex_state = 4}, - [1920] = {.lex_state = 21, .external_lex_state = 3}, - [1921] = {.lex_state = 21, .external_lex_state = 4}, - [1922] = {.lex_state = 15, .external_lex_state = 3}, - [1923] = {.lex_state = 21, .external_lex_state = 3}, - [1924] = {.lex_state = 15, .external_lex_state = 4}, - [1925] = {.lex_state = 15, .external_lex_state = 4}, + [1920] = {.lex_state = 34, .external_lex_state = 2}, + [1921] = {.lex_state = 15, .external_lex_state = 4}, + [1922] = {.lex_state = 21, .external_lex_state = 3}, + [1923] = {.lex_state = 15, .external_lex_state = 4}, + [1924] = {.lex_state = 21, .external_lex_state = 3}, + [1925] = {.lex_state = 21, .external_lex_state = 3}, [1926] = {.lex_state = 21, .external_lex_state = 3}, - [1927] = {.lex_state = 21, .external_lex_state = 4}, + [1927] = {.lex_state = 21, .external_lex_state = 3}, [1928] = {.lex_state = 21, .external_lex_state = 4}, [1929] = {.lex_state = 15, .external_lex_state = 4}, [1930] = {.lex_state = 15, .external_lex_state = 4}, - [1931] = {.lex_state = 21, .external_lex_state = 3}, - [1932] = {.lex_state = 21, .external_lex_state = 3}, - [1933] = {.lex_state = 15, .external_lex_state = 4}, + [1931] = {.lex_state = 21, .external_lex_state = 4}, + [1932] = {.lex_state = 15, .external_lex_state = 4}, + [1933] = {.lex_state = 21, .external_lex_state = 3}, [1934] = {.lex_state = 15, .external_lex_state = 4}, [1935] = {.lex_state = 15, .external_lex_state = 4}, - [1936] = {.lex_state = 15, .external_lex_state = 4}, - [1937] = {.lex_state = 21, .external_lex_state = 3}, - [1938] = {.lex_state = 15, .external_lex_state = 4}, + [1936] = {.lex_state = 15, .external_lex_state = 3}, + [1937] = {.lex_state = 15, .external_lex_state = 4}, + [1938] = {.lex_state = 21, .external_lex_state = 4}, [1939] = {.lex_state = 21, .external_lex_state = 4}, [1940] = {.lex_state = 15, .external_lex_state = 4}, - [1941] = {.lex_state = 15, .external_lex_state = 3}, + [1941] = {.lex_state = 15, .external_lex_state = 4}, [1942] = {.lex_state = 21, .external_lex_state = 4}, [1943] = {.lex_state = 15, .external_lex_state = 4}, - [1944] = {.lex_state = 15, .external_lex_state = 3}, - [1945] = {.lex_state = 21, .external_lex_state = 3}, - [1946] = {.lex_state = 21, .external_lex_state = 4}, - [1947] = {.lex_state = 15, .external_lex_state = 4}, - [1948] = {.lex_state = 21, .external_lex_state = 3}, - [1949] = {.lex_state = 21, .external_lex_state = 3}, - [1950] = {.lex_state = 21, .external_lex_state = 4}, - [1951] = {.lex_state = 34, .external_lex_state = 2}, - [1952] = {.lex_state = 15, .external_lex_state = 3}, - [1953] = {.lex_state = 15, .external_lex_state = 3}, - [1954] = {.lex_state = 18, .external_lex_state = 3}, - [1955] = {.lex_state = 18, .external_lex_state = 3}, - [1956] = {.lex_state = 15, .external_lex_state = 3}, - [1957] = {.lex_state = 21, .external_lex_state = 3}, + [1944] = {.lex_state = 15, .external_lex_state = 4}, + [1945] = {.lex_state = 15, .external_lex_state = 4}, + [1946] = {.lex_state = 15, .external_lex_state = 4}, + [1947] = {.lex_state = 15, .external_lex_state = 3}, + [1948] = {.lex_state = 21, .external_lex_state = 4}, + [1949] = {.lex_state = 34, .external_lex_state = 2}, + [1950] = {.lex_state = 34, .external_lex_state = 2}, + [1951] = {.lex_state = 21, .external_lex_state = 4}, + [1952] = {.lex_state = 21, .external_lex_state = 4}, + [1953] = {.lex_state = 21, .external_lex_state = 3}, + [1954] = {.lex_state = 15, .external_lex_state = 3}, + [1955] = {.lex_state = 15, .external_lex_state = 3}, + [1956] = {.lex_state = 18, .external_lex_state = 3}, + [1957] = {.lex_state = 15, .external_lex_state = 3}, [1958] = {.lex_state = 15, .external_lex_state = 3}, [1959] = {.lex_state = 21, .external_lex_state = 3}, - [1960] = {.lex_state = 21, .external_lex_state = 4}, - [1961] = {.lex_state = 18, .external_lex_state = 3}, - [1962] = {.lex_state = 21, .external_lex_state = 4}, - [1963] = {.lex_state = 15, .external_lex_state = 3}, - [1964] = {.lex_state = 21, .external_lex_state = 3}, - [1965] = {.lex_state = 15, .external_lex_state = 3}, - [1966] = {.lex_state = 21, .external_lex_state = 3}, - [1967] = {.lex_state = 21, .external_lex_state = 3}, - [1968] = {.lex_state = 15, .external_lex_state = 3}, + [1960] = {.lex_state = 21, .external_lex_state = 3}, + [1961] = {.lex_state = 21, .external_lex_state = 3}, + [1962] = {.lex_state = 15, .external_lex_state = 3}, + [1963] = {.lex_state = 21, .external_lex_state = 3}, + [1964] = {.lex_state = 21, .external_lex_state = 4}, + [1965] = {.lex_state = 18, .external_lex_state = 3}, + [1966] = {.lex_state = 18, .external_lex_state = 3}, + [1967] = {.lex_state = 15, .external_lex_state = 3}, + [1968] = {.lex_state = 34, .external_lex_state = 2}, [1969] = {.lex_state = 21, .external_lex_state = 3}, - [1970] = {.lex_state = 21, .external_lex_state = 3}, - [1971] = {.lex_state = 15, .external_lex_state = 3}, - [1972] = {.lex_state = 15, .external_lex_state = 3}, - [1973] = {.lex_state = 15, .external_lex_state = 3}, - [1974] = {.lex_state = 15, .external_lex_state = 3}, - [1975] = {.lex_state = 18, .external_lex_state = 3}, - [1976] = {.lex_state = 21, .external_lex_state = 3}, + [1970] = {.lex_state = 21, .external_lex_state = 4}, + [1971] = {.lex_state = 21, .external_lex_state = 3}, + [1972] = {.lex_state = 21, .external_lex_state = 3}, + [1973] = {.lex_state = 21, .external_lex_state = 4}, + [1974] = {.lex_state = 21, .external_lex_state = 3}, + [1975] = {.lex_state = 15, .external_lex_state = 3}, + [1976] = {.lex_state = 15, .external_lex_state = 3}, [1977] = {.lex_state = 21, .external_lex_state = 4}, - [1978] = {.lex_state = 21, .external_lex_state = 3}, + [1978] = {.lex_state = 15, .external_lex_state = 3}, [1979] = {.lex_state = 21, .external_lex_state = 3}, - [1980] = {.lex_state = 21, .external_lex_state = 3}, - [1981] = {.lex_state = 21, .external_lex_state = 4}, + [1980] = {.lex_state = 15, .external_lex_state = 3}, + [1981] = {.lex_state = 34, .external_lex_state = 2}, [1982] = {.lex_state = 21, .external_lex_state = 3}, - [1983] = {.lex_state = 21, .external_lex_state = 4}, - [1984] = {.lex_state = 15, .external_lex_state = 3}, + [1983] = {.lex_state = 21, .external_lex_state = 3}, + [1984] = {.lex_state = 21, .external_lex_state = 3}, [1985] = {.lex_state = 21, .external_lex_state = 3}, [1986] = {.lex_state = 15, .external_lex_state = 3}, - [1987] = {.lex_state = 34, .external_lex_state = 2}, - [1988] = {.lex_state = 21, .external_lex_state = 3}, - [1989] = {.lex_state = 21, .external_lex_state = 3}, - [1990] = {.lex_state = 15, .external_lex_state = 3}, - [1991] = {.lex_state = 21, .external_lex_state = 3}, + [1987] = {.lex_state = 15, .external_lex_state = 3}, + [1988] = {.lex_state = 15, .external_lex_state = 3}, + [1989] = {.lex_state = 15, .external_lex_state = 3}, + [1990] = {.lex_state = 21, .external_lex_state = 3}, + [1991] = {.lex_state = 15, .external_lex_state = 3}, [1992] = {.lex_state = 15, .external_lex_state = 3}, - [1993] = {.lex_state = 15, .external_lex_state = 3}, - [1994] = {.lex_state = 34, .external_lex_state = 2}, + [1993] = {.lex_state = 34, .external_lex_state = 2}, + [1994] = {.lex_state = 21, .external_lex_state = 3}, [1995] = {.lex_state = 21, .external_lex_state = 4}, - [1996] = {.lex_state = 15, .external_lex_state = 4}, + [1996] = {.lex_state = 21, .external_lex_state = 3}, [1997] = {.lex_state = 21, .external_lex_state = 3}, - [1998] = {.lex_state = 21, .external_lex_state = 3}, + [1998] = {.lex_state = 18, .external_lex_state = 3}, [1999] = {.lex_state = 15, .external_lex_state = 4}, - [2000] = {.lex_state = 21, .external_lex_state = 4}, + [2000] = {.lex_state = 21, .external_lex_state = 3}, [2001] = {.lex_state = 21, .external_lex_state = 3}, - [2002] = {.lex_state = 21, .external_lex_state = 3}, - [2003] = {.lex_state = 15, .external_lex_state = 4}, + [2002] = {.lex_state = 34, .external_lex_state = 2}, + [2003] = {.lex_state = 21, .external_lex_state = 3}, [2004] = {.lex_state = 21, .external_lex_state = 3}, - [2005] = {.lex_state = 21, .external_lex_state = 3}, + [2005] = {.lex_state = 34, .external_lex_state = 2}, [2006] = {.lex_state = 21, .external_lex_state = 3}, - [2007] = {.lex_state = 21, .external_lex_state = 4}, + [2007] = {.lex_state = 15, .external_lex_state = 4}, [2008] = {.lex_state = 34, .external_lex_state = 2}, - [2009] = {.lex_state = 15, .external_lex_state = 4}, - [2010] = {.lex_state = 21, .external_lex_state = 3}, - [2011] = {.lex_state = 21, .external_lex_state = 3}, - [2012] = {.lex_state = 15, .external_lex_state = 4}, - [2013] = {.lex_state = 34, .external_lex_state = 2}, + [2009] = {.lex_state = 34, .external_lex_state = 2}, + [2010] = {.lex_state = 34, .external_lex_state = 2}, + [2011] = {.lex_state = 34, .external_lex_state = 2}, + [2012] = {.lex_state = 21, .external_lex_state = 3}, + [2013] = {.lex_state = 21, .external_lex_state = 3}, [2014] = {.lex_state = 21, .external_lex_state = 3}, - [2015] = {.lex_state = 21, .external_lex_state = 4}, + [2015] = {.lex_state = 34, .external_lex_state = 2}, [2016] = {.lex_state = 34, .external_lex_state = 2}, - [2017] = {.lex_state = 21, .external_lex_state = 3}, - [2018] = {.lex_state = 21, .external_lex_state = 3}, + [2017] = {.lex_state = 34, .external_lex_state = 2}, + [2018] = {.lex_state = 34, .external_lex_state = 2}, [2019] = {.lex_state = 21, .external_lex_state = 3}, - [2020] = {.lex_state = 21, .external_lex_state = 3}, + [2020] = {.lex_state = 34, .external_lex_state = 2}, [2021] = {.lex_state = 21, .external_lex_state = 4}, - [2022] = {.lex_state = 34, .external_lex_state = 2}, - [2023] = {.lex_state = 21, .external_lex_state = 4}, - [2024] = {.lex_state = 21, .external_lex_state = 3}, - [2025] = {.lex_state = 21, .external_lex_state = 4}, - [2026] = {.lex_state = 21, .external_lex_state = 4}, - [2027] = {.lex_state = 34, .external_lex_state = 2}, + [2022] = {.lex_state = 21, .external_lex_state = 4}, + [2023] = {.lex_state = 21, .external_lex_state = 3}, + [2024] = {.lex_state = 15, .external_lex_state = 4}, + [2025] = {.lex_state = 21, .external_lex_state = 3}, + [2026] = {.lex_state = 21, .external_lex_state = 3}, + [2027] = {.lex_state = 15, .external_lex_state = 4}, [2028] = {.lex_state = 21, .external_lex_state = 3}, - [2029] = {.lex_state = 21, .external_lex_state = 4}, - [2030] = {.lex_state = 21, .external_lex_state = 4}, + [2029] = {.lex_state = 21, .external_lex_state = 3}, + [2030] = {.lex_state = 15, .external_lex_state = 4}, [2031] = {.lex_state = 21, .external_lex_state = 4}, - [2032] = {.lex_state = 21, .external_lex_state = 3}, - [2033] = {.lex_state = 21, .external_lex_state = 4}, - [2034] = {.lex_state = 34, .external_lex_state = 2}, + [2032] = {.lex_state = 21, .external_lex_state = 4}, + [2033] = {.lex_state = 34, .external_lex_state = 2}, + [2034] = {.lex_state = 21, .external_lex_state = 3}, [2035] = {.lex_state = 21, .external_lex_state = 4}, - [2036] = {.lex_state = 21, .external_lex_state = 3}, + [2036] = {.lex_state = 21, .external_lex_state = 4}, [2037] = {.lex_state = 21, .external_lex_state = 4}, [2038] = {.lex_state = 21, .external_lex_state = 4}, [2039] = {.lex_state = 21, .external_lex_state = 4}, [2040] = {.lex_state = 21, .external_lex_state = 4}, - [2041] = {.lex_state = 21, .external_lex_state = 3}, - [2042] = {.lex_state = 21, .external_lex_state = 4}, - [2043] = {.lex_state = 21, .external_lex_state = 4}, - [2044] = {.lex_state = 21, .external_lex_state = 4}, - [2045] = {.lex_state = 21, .external_lex_state = 3}, - [2046] = {.lex_state = 21, .external_lex_state = 4}, - [2047] = {.lex_state = 21, .external_lex_state = 4}, - [2048] = {.lex_state = 21, .external_lex_state = 3}, - [2049] = {.lex_state = 34, .external_lex_state = 2}, + [2041] = {.lex_state = 21, .external_lex_state = 4}, + [2042] = {.lex_state = 21, .external_lex_state = 3}, + [2043] = {.lex_state = 34, .external_lex_state = 2}, + [2044] = {.lex_state = 34, .external_lex_state = 2}, + [2045] = {.lex_state = 34, .external_lex_state = 2}, + [2046] = {.lex_state = 34, .external_lex_state = 2}, + [2047] = {.lex_state = 34, .external_lex_state = 2}, + [2048] = {.lex_state = 21, .external_lex_state = 4}, + [2049] = {.lex_state = 21, .external_lex_state = 4}, [2050] = {.lex_state = 21, .external_lex_state = 4}, - [2051] = {.lex_state = 21, .external_lex_state = 4}, - [2052] = {.lex_state = 21, .external_lex_state = 4}, - [2053] = {.lex_state = 21, .external_lex_state = 3}, - [2054] = {.lex_state = 21, .external_lex_state = 3}, + [2051] = {.lex_state = 21, .external_lex_state = 3}, + [2052] = {.lex_state = 21, .external_lex_state = 3}, + [2053] = {.lex_state = 21, .external_lex_state = 4}, + [2054] = {.lex_state = 21, .external_lex_state = 4}, [2055] = {.lex_state = 21, .external_lex_state = 4}, - [2056] = {.lex_state = 21, .external_lex_state = 3}, - [2057] = {.lex_state = 34, .external_lex_state = 2}, - [2058] = {.lex_state = 21, .external_lex_state = 3}, - [2059] = {.lex_state = 21, .external_lex_state = 3}, - [2060] = {.lex_state = 21, .external_lex_state = 4}, - [2061] = {.lex_state = 21, .external_lex_state = 4}, - [2062] = {.lex_state = 21, .external_lex_state = 3}, + [2056] = {.lex_state = 21, .external_lex_state = 4}, + [2057] = {.lex_state = 21, .external_lex_state = 4}, + [2058] = {.lex_state = 21, .external_lex_state = 4}, + [2059] = {.lex_state = 21, .external_lex_state = 4}, + [2060] = {.lex_state = 34, .external_lex_state = 2}, + [2061] = {.lex_state = 34, .external_lex_state = 2}, + [2062] = {.lex_state = 34, .external_lex_state = 2}, [2063] = {.lex_state = 21, .external_lex_state = 4}, - [2064] = {.lex_state = 34, .external_lex_state = 2}, - [2065] = {.lex_state = 21, .external_lex_state = 4}, + [2064] = {.lex_state = 21, .external_lex_state = 4}, + [2065] = {.lex_state = 21, .external_lex_state = 3}, [2066] = {.lex_state = 21, .external_lex_state = 3}, - [2067] = {.lex_state = 21, .external_lex_state = 3}, + [2067] = {.lex_state = 21, .external_lex_state = 4}, [2068] = {.lex_state = 21, .external_lex_state = 4}, - [2069] = {.lex_state = 21, .external_lex_state = 4}, - [2070] = {.lex_state = 21, .external_lex_state = 3}, - [2071] = {.lex_state = 21, .external_lex_state = 4}, - [2072] = {.lex_state = 21, .external_lex_state = 4}, + [2069] = {.lex_state = 21, .external_lex_state = 3}, + [2070] = {.lex_state = 21, .external_lex_state = 4}, + [2071] = {.lex_state = 21, .external_lex_state = 3}, + [2072] = {.lex_state = 21, .external_lex_state = 3}, [2073] = {.lex_state = 21, .external_lex_state = 4}, [2074] = {.lex_state = 21, .external_lex_state = 3}, - [2075] = {.lex_state = 21, .external_lex_state = 4}, - [2076] = {.lex_state = 34, .external_lex_state = 2}, - [2077] = {.lex_state = 34, .external_lex_state = 2}, - [2078] = {.lex_state = 34, .external_lex_state = 2}, - [2079] = {.lex_state = 21, .external_lex_state = 3}, + [2075] = {.lex_state = 21, .external_lex_state = 3}, + [2076] = {.lex_state = 21, .external_lex_state = 4}, + [2077] = {.lex_state = 21, .external_lex_state = 3}, + [2078] = {.lex_state = 21, .external_lex_state = 3}, + [2079] = {.lex_state = 21, .external_lex_state = 4}, [2080] = {.lex_state = 21, .external_lex_state = 4}, - [2081] = {.lex_state = 21, .external_lex_state = 4}, + [2081] = {.lex_state = 21, .external_lex_state = 3}, [2082] = {.lex_state = 21, .external_lex_state = 4}, - [2083] = {.lex_state = 34, .external_lex_state = 2}, - [2084] = {.lex_state = 34, .external_lex_state = 2}, + [2083] = {.lex_state = 21, .external_lex_state = 4}, + [2084] = {.lex_state = 21, .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 = 3}, + [2086] = {.lex_state = 21, .external_lex_state = 3}, + [2087] = {.lex_state = 21, .external_lex_state = 4}, [2088] = {.lex_state = 21, .external_lex_state = 3}, - [2089] = {.lex_state = 21, .external_lex_state = 3}, - [2090] = {.lex_state = 21, .external_lex_state = 3}, - [2091] = {.lex_state = 21, .external_lex_state = 3}, - [2092] = {.lex_state = 21, .external_lex_state = 3}, + [2089] = {.lex_state = 21, .external_lex_state = 4}, + [2090] = {.lex_state = 21, .external_lex_state = 4}, + [2091] = {.lex_state = 21, .external_lex_state = 4}, + [2092] = {.lex_state = 21, .external_lex_state = 4}, [2093] = {.lex_state = 21, .external_lex_state = 3}, - [2094] = {.lex_state = 21, .external_lex_state = 3}, + [2094] = {.lex_state = 34, .external_lex_state = 2}, [2095] = {.lex_state = 34, .external_lex_state = 2}, - [2096] = {.lex_state = 21, .external_lex_state = 4}, - [2097] = {.lex_state = 34, .external_lex_state = 2}, - [2098] = {.lex_state = 34, .external_lex_state = 2}, - [2099] = {.lex_state = 15, .external_lex_state = 4}, - [2100] = {.lex_state = 21, .external_lex_state = 3}, + [2096] = {.lex_state = 21, .external_lex_state = 3}, + [2097] = {.lex_state = 21, .external_lex_state = 3}, + [2098] = {.lex_state = 21, .external_lex_state = 3}, + [2099] = {.lex_state = 21, .external_lex_state = 3}, + [2100] = {.lex_state = 21, .external_lex_state = 4}, [2101] = {.lex_state = 21, .external_lex_state = 3}, [2102] = {.lex_state = 21, .external_lex_state = 3}, [2103] = {.lex_state = 21, .external_lex_state = 3}, [2104] = {.lex_state = 21, .external_lex_state = 3}, - [2105] = {.lex_state = 21, .external_lex_state = 3}, + [2105] = {.lex_state = 15, .external_lex_state = 4}, [2106] = {.lex_state = 21, .external_lex_state = 3}, [2107] = {.lex_state = 15, .external_lex_state = 4}, - [2108] = {.lex_state = 21, .external_lex_state = 4}, - [2109] = {.lex_state = 34, .external_lex_state = 2}, + [2108] = {.lex_state = 21, .external_lex_state = 3}, + [2109] = {.lex_state = 15, .external_lex_state = 4}, [2110] = {.lex_state = 21, .external_lex_state = 4}, - [2111] = {.lex_state = 34, .external_lex_state = 2}, - [2112] = {.lex_state = 21, .external_lex_state = 3}, - [2113] = {.lex_state = 34, .external_lex_state = 2}, - [2114] = {.lex_state = 15, .external_lex_state = 4}, - [2115] = {.lex_state = 34, .external_lex_state = 2}, - [2116] = {.lex_state = 34, .external_lex_state = 2}, + [2111] = {.lex_state = 15, .external_lex_state = 4}, + [2112] = {.lex_state = 15, .external_lex_state = 4}, + [2113] = {.lex_state = 21, .external_lex_state = 3}, + [2114] = {.lex_state = 21, .external_lex_state = 3}, + [2115] = {.lex_state = 21, .external_lex_state = 3}, + [2116] = {.lex_state = 21, .external_lex_state = 3}, [2117] = {.lex_state = 21, .external_lex_state = 3}, - [2118] = {.lex_state = 34, .external_lex_state = 2}, - [2119] = {.lex_state = 34, .external_lex_state = 2}, - [2120] = {.lex_state = 34, .external_lex_state = 2}, + [2118] = {.lex_state = 21, .external_lex_state = 3}, + [2119] = {.lex_state = 21, .external_lex_state = 4}, + [2120] = {.lex_state = 21, .external_lex_state = 3}, [2121] = {.lex_state = 21, .external_lex_state = 3}, - [2122] = {.lex_state = 21, .external_lex_state = 3}, + [2122] = {.lex_state = 15, .external_lex_state = 4}, [2123] = {.lex_state = 21, .external_lex_state = 3}, - [2124] = {.lex_state = 15, .external_lex_state = 4}, + [2124] = {.lex_state = 21, .external_lex_state = 3}, [2125] = {.lex_state = 21, .external_lex_state = 3}, - [2126] = {.lex_state = 15, .external_lex_state = 4}, + [2126] = {.lex_state = 21, .external_lex_state = 3}, [2127] = {.lex_state = 21, .external_lex_state = 3}, - [2128] = {.lex_state = 21, .external_lex_state = 3}, + [2128] = {.lex_state = 35, .external_lex_state = 2}, [2129] = {.lex_state = 35, .external_lex_state = 2}, [2130] = {.lex_state = 35, .external_lex_state = 2}, [2131] = {.lex_state = 21, .external_lex_state = 3}, - [2132] = {.lex_state = 21, .external_lex_state = 3}, + [2132] = {.lex_state = 21, .external_lex_state = 4}, [2133] = {.lex_state = 21, .external_lex_state = 4}, - [2134] = {.lex_state = 35, .external_lex_state = 2}, + [2134] = {.lex_state = 21, .external_lex_state = 3}, [2135] = {.lex_state = 21, .external_lex_state = 3}, - [2136] = {.lex_state = 21, .external_lex_state = 3}, - [2137] = {.lex_state = 21, .external_lex_state = 4}, + [2136] = {.lex_state = 35, .external_lex_state = 2}, + [2137] = {.lex_state = 21, .external_lex_state = 3}, [2138] = {.lex_state = 35, .external_lex_state = 2}, - [2139] = {.lex_state = 21, .external_lex_state = 4}, - [2140] = {.lex_state = 35, .external_lex_state = 2}, - [2141] = {.lex_state = 21, .external_lex_state = 3}, + [2139] = {.lex_state = 21, .external_lex_state = 3}, + [2140] = {.lex_state = 21, .external_lex_state = 4}, + [2141] = {.lex_state = 35, .external_lex_state = 2}, [2142] = {.lex_state = 35, .external_lex_state = 2}, - [2143] = {.lex_state = 21, .external_lex_state = 4}, + [2143] = {.lex_state = 35, .external_lex_state = 2}, [2144] = {.lex_state = 21, .external_lex_state = 3}, [2145] = {.lex_state = 21, .external_lex_state = 3}, [2146] = {.lex_state = 21, .external_lex_state = 3}, [2147] = {.lex_state = 35, .external_lex_state = 2}, [2148] = {.lex_state = 21, .external_lex_state = 4}, - [2149] = {.lex_state = 35, .external_lex_state = 2}, + [2149] = {.lex_state = 21, .external_lex_state = 3}, [2150] = {.lex_state = 21, .external_lex_state = 4}, - [2151] = {.lex_state = 35, .external_lex_state = 2}, + [2151] = {.lex_state = 21, .external_lex_state = 4}, [2152] = {.lex_state = 21, .external_lex_state = 3}, - [2153] = {.lex_state = 21, .external_lex_state = 3}, + [2153] = {.lex_state = 21, .external_lex_state = 4}, [2154] = {.lex_state = 21, .external_lex_state = 3}, [2155] = {.lex_state = 21, .external_lex_state = 3}, [2156] = {.lex_state = 21, .external_lex_state = 3}, @@ -22428,7 +22492,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2159] = {.lex_state = 21, .external_lex_state = 3}, [2160] = {.lex_state = 21, .external_lex_state = 3}, [2161] = {.lex_state = 21, .external_lex_state = 3}, - [2162] = {.lex_state = 21, .external_lex_state = 4}, + [2162] = {.lex_state = 21, .external_lex_state = 3}, [2163] = {.lex_state = 21, .external_lex_state = 3}, [2164] = {.lex_state = 21, .external_lex_state = 3}, [2165] = {.lex_state = 21, .external_lex_state = 3}, @@ -22436,59 +22500,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2167] = {.lex_state = 21, .external_lex_state = 3}, [2168] = {.lex_state = 21, .external_lex_state = 3}, [2169] = {.lex_state = 21, .external_lex_state = 3}, - [2170] = {.lex_state = 21, .external_lex_state = 3}, + [2170] = {.lex_state = 35, .external_lex_state = 2}, [2171] = {.lex_state = 35, .external_lex_state = 2}, [2172] = {.lex_state = 35, .external_lex_state = 2}, [2173] = {.lex_state = 21, .external_lex_state = 3}, - [2174] = {.lex_state = 35, .external_lex_state = 2}, + [2174] = {.lex_state = 21, .external_lex_state = 3}, [2175] = {.lex_state = 35, .external_lex_state = 2}, - [2176] = {.lex_state = 21, .external_lex_state = 3}, - [2177] = {.lex_state = 21, .external_lex_state = 3}, - [2178] = {.lex_state = 21, .external_lex_state = 3}, - [2179] = {.lex_state = 21, .external_lex_state = 3}, - [2180] = {.lex_state = 21, .external_lex_state = 3}, - [2181] = {.lex_state = 21, .external_lex_state = 3}, + [2176] = {.lex_state = 35, .external_lex_state = 2}, + [2177] = {.lex_state = 35, .external_lex_state = 2}, + [2178] = {.lex_state = 35, .external_lex_state = 2}, + [2179] = {.lex_state = 35, .external_lex_state = 2}, + [2180] = {.lex_state = 35, .external_lex_state = 2}, + [2181] = {.lex_state = 35, .external_lex_state = 2}, [2182] = {.lex_state = 35, .external_lex_state = 2}, - [2183] = {.lex_state = 21, .external_lex_state = 3}, - [2184] = {.lex_state = 21, .external_lex_state = 3}, + [2183] = {.lex_state = 35, .external_lex_state = 2}, + [2184] = {.lex_state = 35, .external_lex_state = 2}, [2185] = {.lex_state = 35, .external_lex_state = 2}, - [2186] = {.lex_state = 35, .external_lex_state = 2}, + [2186] = {.lex_state = 21, .external_lex_state = 3}, [2187] = {.lex_state = 21, .external_lex_state = 3}, - [2188] = {.lex_state = 21, .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 = 35, .external_lex_state = 2}, + [2188] = {.lex_state = 35, .external_lex_state = 2}, + [2189] = {.lex_state = 35, .external_lex_state = 2}, + [2190] = {.lex_state = 35, .external_lex_state = 2}, + [2191] = {.lex_state = 35, .external_lex_state = 2}, + [2192] = {.lex_state = 21, .external_lex_state = 3}, [2193] = {.lex_state = 35, .external_lex_state = 2}, [2194] = {.lex_state = 21, .external_lex_state = 3}, [2195] = {.lex_state = 21, .external_lex_state = 3}, - [2196] = {.lex_state = 35, .external_lex_state = 2}, - [2197] = {.lex_state = 35, .external_lex_state = 2}, + [2196] = {.lex_state = 21, .external_lex_state = 3}, + [2197] = {.lex_state = 21, .external_lex_state = 3}, [2198] = {.lex_state = 35, .external_lex_state = 2}, - [2199] = {.lex_state = 35, .external_lex_state = 2}, + [2199] = {.lex_state = 21, .external_lex_state = 3}, [2200] = {.lex_state = 21, .external_lex_state = 3}, - [2201] = {.lex_state = 21, .external_lex_state = 3}, + [2201] = {.lex_state = 35, .external_lex_state = 2}, [2202] = {.lex_state = 21, .external_lex_state = 3}, - [2203] = {.lex_state = 21, .external_lex_state = 3}, - [2204] = {.lex_state = 35, .external_lex_state = 2}, - [2205] = {.lex_state = 35, .external_lex_state = 2}, - [2206] = {.lex_state = 35, .external_lex_state = 2}, - [2207] = {.lex_state = 35, .external_lex_state = 2}, + [2203] = {.lex_state = 35, .external_lex_state = 2}, + [2204] = {.lex_state = 21, .external_lex_state = 3}, + [2205] = {.lex_state = 21, .external_lex_state = 3}, + [2206] = {.lex_state = 21, .external_lex_state = 3}, + [2207] = {.lex_state = 21, .external_lex_state = 3}, [2208] = {.lex_state = 21, .external_lex_state = 3}, - [2209] = {.lex_state = 35, .external_lex_state = 2}, - [2210] = {.lex_state = 35, .external_lex_state = 2}, + [2209] = {.lex_state = 21, .external_lex_state = 3}, + [2210] = {.lex_state = 21, .external_lex_state = 3}, [2211] = {.lex_state = 21, .external_lex_state = 3}, [2212] = {.lex_state = 21, .external_lex_state = 3}, [2213] = {.lex_state = 21, .external_lex_state = 3}, - [2214] = {.lex_state = 35, .external_lex_state = 2}, + [2214] = {.lex_state = 21, .external_lex_state = 3}, [2215] = {.lex_state = 35, .external_lex_state = 2}, [2216] = {.lex_state = 21, .external_lex_state = 3}, - [2217] = {.lex_state = 35, .external_lex_state = 2}, - [2218] = {.lex_state = 35, .external_lex_state = 2}, + [2217] = {.lex_state = 21, .external_lex_state = 3}, + [2218] = {.lex_state = 21, .external_lex_state = 3}, [2219] = {.lex_state = 35, .external_lex_state = 2}, [2220] = {.lex_state = 35, .external_lex_state = 2}, - [2221] = {.lex_state = 35, .external_lex_state = 2}, - [2222] = {.lex_state = 21, .external_lex_state = 3}, + [2221] = {.lex_state = 21, .external_lex_state = 3}, + [2222] = {.lex_state = 35, .external_lex_state = 2}, [2223] = {.lex_state = 35, .external_lex_state = 2}, [2224] = {.lex_state = 21, .external_lex_state = 3}, [2225] = {.lex_state = 21, .external_lex_state = 3}, @@ -22517,37 +22581,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2248] = {.lex_state = 45, .external_lex_state = 5}, [2249] = {.lex_state = 35, .external_lex_state = 2}, [2250] = {.lex_state = 35, .external_lex_state = 2}, - [2251] = {.lex_state = 35, .external_lex_state = 2}, + [2251] = {.lex_state = 36, .external_lex_state = 2}, [2252] = {.lex_state = 35, .external_lex_state = 2}, [2253] = {.lex_state = 35, .external_lex_state = 2}, [2254] = {.lex_state = 35, .external_lex_state = 2}, - [2255] = {.lex_state = 35, .external_lex_state = 2}, - [2256] = {.lex_state = 36, .external_lex_state = 2}, + [2255] = {.lex_state = 36, .external_lex_state = 2}, + [2256] = {.lex_state = 35, .external_lex_state = 2}, [2257] = {.lex_state = 35, .external_lex_state = 2}, - [2258] = {.lex_state = 36, .external_lex_state = 2}, - [2259] = {.lex_state = 36, .external_lex_state = 2}, + [2258] = {.lex_state = 35, .external_lex_state = 2}, + [2259] = {.lex_state = 35, .external_lex_state = 2}, [2260] = {.lex_state = 35, .external_lex_state = 2}, [2261] = {.lex_state = 35, .external_lex_state = 2}, [2262] = {.lex_state = 35, .external_lex_state = 2}, [2263] = {.lex_state = 35, .external_lex_state = 2}, - [2264] = {.lex_state = 36, .external_lex_state = 2}, + [2264] = {.lex_state = 35, .external_lex_state = 2}, [2265] = {.lex_state = 35, .external_lex_state = 2}, [2266] = {.lex_state = 35, .external_lex_state = 2}, [2267] = {.lex_state = 35, .external_lex_state = 2}, - [2268] = {.lex_state = 35, .external_lex_state = 2}, + [2268] = {.lex_state = 36, .external_lex_state = 2}, [2269] = {.lex_state = 35, .external_lex_state = 2}, [2270] = {.lex_state = 35, .external_lex_state = 2}, - [2271] = {.lex_state = 35, .external_lex_state = 2}, + [2271] = {.lex_state = 36, .external_lex_state = 2}, [2272] = {.lex_state = 35, .external_lex_state = 2}, [2273] = {.lex_state = 36, .external_lex_state = 2}, - [2274] = {.lex_state = 36, .external_lex_state = 2}, + [2274] = {.lex_state = 35, .external_lex_state = 2}, [2275] = {.lex_state = 35, .external_lex_state = 2}, [2276] = {.lex_state = 35, .external_lex_state = 2}, [2277] = {.lex_state = 35, .external_lex_state = 2}, [2278] = {.lex_state = 35, .external_lex_state = 2}, [2279] = {.lex_state = 36, .external_lex_state = 2}, [2280] = {.lex_state = 35, .external_lex_state = 2}, - [2281] = {.lex_state = 35, .external_lex_state = 2}, + [2281] = {.lex_state = 36, .external_lex_state = 2}, [2282] = {.lex_state = 35, .external_lex_state = 2}, [2283] = {.lex_state = 35, .external_lex_state = 2}, [2284] = {.lex_state = 35, .external_lex_state = 2}, @@ -22559,28 +22623,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2290] = {.lex_state = 26, .external_lex_state = 4}, [2291] = {.lex_state = 45, .external_lex_state = 5}, [2292] = {.lex_state = 26, .external_lex_state = 4}, - [2293] = {.lex_state = 26, .external_lex_state = 3}, + [2293] = {.lex_state = 36, .external_lex_state = 2}, [2294] = {.lex_state = 26, .external_lex_state = 3}, [2295] = {.lex_state = 26, .external_lex_state = 3}, - [2296] = {.lex_state = 36, .external_lex_state = 2}, + [2296] = {.lex_state = 26, .external_lex_state = 3}, [2297] = {.lex_state = 26, .external_lex_state = 3}, [2298] = {.lex_state = 26, .external_lex_state = 3}, - [2299] = {.lex_state = 26, .external_lex_state = 3}, + [2299] = {.lex_state = 26, .external_lex_state = 4}, [2300] = {.lex_state = 26, .external_lex_state = 3}, [2301] = {.lex_state = 26, .external_lex_state = 3}, [2302] = {.lex_state = 26, .external_lex_state = 3}, [2303] = {.lex_state = 26, .external_lex_state = 3}, [2304] = {.lex_state = 26, .external_lex_state = 3}, [2305] = {.lex_state = 26, .external_lex_state = 3}, - [2306] = {.lex_state = 26, .external_lex_state = 3}, + [2306] = {.lex_state = 26, .external_lex_state = 4}, [2307] = {.lex_state = 26, .external_lex_state = 4}, [2308] = {.lex_state = 26, .external_lex_state = 3}, - [2309] = {.lex_state = 26, .external_lex_state = 4}, - [2310] = {.lex_state = 26, .external_lex_state = 3}, + [2309] = {.lex_state = 26, .external_lex_state = 3}, + [2310] = {.lex_state = 26, .external_lex_state = 4}, [2311] = {.lex_state = 26, .external_lex_state = 3}, - [2312] = {.lex_state = 26, .external_lex_state = 4}, + [2312] = {.lex_state = 26, .external_lex_state = 3}, [2313] = {.lex_state = 26, .external_lex_state = 3}, - [2314] = {.lex_state = 26, .external_lex_state = 4}, + [2314] = {.lex_state = 26, .external_lex_state = 3}, [2315] = {.lex_state = 26, .external_lex_state = 3}, [2316] = {.lex_state = 26, .external_lex_state = 3}, [2317] = {.lex_state = 26, .external_lex_state = 3}, @@ -22598,16 +22662,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2329] = {.lex_state = 26, .external_lex_state = 3}, [2330] = {.lex_state = 26, .external_lex_state = 3}, [2331] = {.lex_state = 26, .external_lex_state = 3}, - [2332] = {.lex_state = 26, .external_lex_state = 3}, + [2332] = {.lex_state = 36, .external_lex_state = 5}, [2333] = {.lex_state = 26, .external_lex_state = 3}, [2334] = {.lex_state = 26, .external_lex_state = 3}, [2335] = {.lex_state = 26, .external_lex_state = 3}, [2336] = {.lex_state = 26, .external_lex_state = 3}, [2337] = {.lex_state = 26, .external_lex_state = 3}, - [2338] = {.lex_state = 36, .external_lex_state = 5}, + [2338] = {.lex_state = 26, .external_lex_state = 3}, [2339] = {.lex_state = 26, .external_lex_state = 3}, [2340] = {.lex_state = 26, .external_lex_state = 3}, - [2341] = {.lex_state = 26, .external_lex_state = 4}, + [2341] = {.lex_state = 26, .external_lex_state = 3}, [2342] = {.lex_state = 26, .external_lex_state = 3}, [2343] = {.lex_state = 26, .external_lex_state = 3}, [2344] = {.lex_state = 26, .external_lex_state = 3}, @@ -22621,7 +22685,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2352] = {.lex_state = 26, .external_lex_state = 3}, [2353] = {.lex_state = 26, .external_lex_state = 3}, [2354] = {.lex_state = 26, .external_lex_state = 3}, - [2355] = {.lex_state = 26, .external_lex_state = 4}, + [2355] = {.lex_state = 26, .external_lex_state = 3}, [2356] = {.lex_state = 26, .external_lex_state = 3}, [2357] = {.lex_state = 26, .external_lex_state = 3}, [2358] = {.lex_state = 26, .external_lex_state = 3}, @@ -22635,7 +22699,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2366] = {.lex_state = 26, .external_lex_state = 3}, [2367] = {.lex_state = 26, .external_lex_state = 3}, [2368] = {.lex_state = 26, .external_lex_state = 3}, - [2369] = {.lex_state = 26, .external_lex_state = 3}, + [2369] = {.lex_state = 36, .external_lex_state = 5}, [2370] = {.lex_state = 26, .external_lex_state = 3}, [2371] = {.lex_state = 26, .external_lex_state = 3}, [2372] = {.lex_state = 26, .external_lex_state = 3}, @@ -22657,11 +22721,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2388] = {.lex_state = 26, .external_lex_state = 3}, [2389] = {.lex_state = 26, .external_lex_state = 3}, [2390] = {.lex_state = 26, .external_lex_state = 3}, - [2391] = {.lex_state = 36, .external_lex_state = 5}, - [2392] = {.lex_state = 26, .external_lex_state = 3}, - [2393] = {.lex_state = 26, .external_lex_state = 3}, - [2394] = {.lex_state = 26, .external_lex_state = 3}, - [2395] = {.lex_state = 26, .external_lex_state = 3}, + [2391] = {.lex_state = 26, .external_lex_state = 3}, + [2392] = {.lex_state = 26, .external_lex_state = 4}, + [2393] = {.lex_state = 26, .external_lex_state = 4}, + [2394] = {.lex_state = 26, .external_lex_state = 4}, + [2395] = {.lex_state = 36, .external_lex_state = 5}, [2396] = {.lex_state = 26, .external_lex_state = 3}, [2397] = {.lex_state = 26, .external_lex_state = 3}, [2398] = {.lex_state = 26, .external_lex_state = 3}, @@ -22669,11 +22733,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2400] = {.lex_state = 26, .external_lex_state = 3}, [2401] = {.lex_state = 26, .external_lex_state = 3}, [2402] = {.lex_state = 26, .external_lex_state = 3}, - [2403] = {.lex_state = 26, .external_lex_state = 3}, + [2403] = {.lex_state = 36, .external_lex_state = 5}, [2404] = {.lex_state = 26, .external_lex_state = 3}, [2405] = {.lex_state = 26, .external_lex_state = 3}, [2406] = {.lex_state = 26, .external_lex_state = 3}, - [2407] = {.lex_state = 26, .external_lex_state = 4}, + [2407] = {.lex_state = 26, .external_lex_state = 3}, [2408] = {.lex_state = 26, .external_lex_state = 3}, [2409] = {.lex_state = 26, .external_lex_state = 3}, [2410] = {.lex_state = 26, .external_lex_state = 3}, @@ -22683,8 +22747,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2414] = {.lex_state = 26, .external_lex_state = 3}, [2415] = {.lex_state = 26, .external_lex_state = 3}, [2416] = {.lex_state = 26, .external_lex_state = 3}, - [2417] = {.lex_state = 36, .external_lex_state = 5}, - [2418] = {.lex_state = 36, .external_lex_state = 5}, + [2417] = {.lex_state = 26, .external_lex_state = 4}, + [2418] = {.lex_state = 26, .external_lex_state = 3}, [2419] = {.lex_state = 26, .external_lex_state = 3}, [2420] = {.lex_state = 26, .external_lex_state = 3}, [2421] = {.lex_state = 26, .external_lex_state = 3}, @@ -22709,172 +22773,172 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2440] = {.lex_state = 26, .external_lex_state = 3}, [2441] = {.lex_state = 26, .external_lex_state = 3}, [2442] = {.lex_state = 26, .external_lex_state = 3}, - [2443] = {.lex_state = 26, .external_lex_state = 4}, + [2443] = {.lex_state = 26, .external_lex_state = 3}, [2444] = {.lex_state = 26, .external_lex_state = 3}, [2445] = {.lex_state = 26, .external_lex_state = 3}, [2446] = {.lex_state = 36, .external_lex_state = 5}, - [2447] = {.lex_state = 26, .external_lex_state = 4}, - [2448] = {.lex_state = 26, .external_lex_state = 4}, - [2449] = {.lex_state = 26, .external_lex_state = 3}, + [2447] = {.lex_state = 26, .external_lex_state = 3}, + [2448] = {.lex_state = 26, .external_lex_state = 3}, + [2449] = {.lex_state = 26, .external_lex_state = 4}, [2450] = {.lex_state = 26, .external_lex_state = 4}, - [2451] = {.lex_state = 36, .external_lex_state = 5}, + [2451] = {.lex_state = 26, .external_lex_state = 4}, [2452] = {.lex_state = 26, .external_lex_state = 4}, [2453] = {.lex_state = 26, .external_lex_state = 4}, - [2454] = {.lex_state = 26, .external_lex_state = 3}, + [2454] = {.lex_state = 26, .external_lex_state = 4}, [2455] = {.lex_state = 26, .external_lex_state = 4}, - [2456] = {.lex_state = 26, .external_lex_state = 3}, - [2457] = {.lex_state = 26, .external_lex_state = 3}, - [2458] = {.lex_state = 26, .external_lex_state = 3}, - [2459] = {.lex_state = 26, .external_lex_state = 3}, - [2460] = {.lex_state = 26, .external_lex_state = 3}, - [2461] = {.lex_state = 26, .external_lex_state = 3}, + [2456] = {.lex_state = 26, .external_lex_state = 4}, + [2457] = {.lex_state = 26, .external_lex_state = 4}, + [2458] = {.lex_state = 26, .external_lex_state = 4}, + [2459] = {.lex_state = 26, .external_lex_state = 4}, + [2460] = {.lex_state = 26, .external_lex_state = 4}, + [2461] = {.lex_state = 26, .external_lex_state = 4}, [2462] = {.lex_state = 26, .external_lex_state = 4}, - [2463] = {.lex_state = 26, .external_lex_state = 3}, + [2463] = {.lex_state = 26, .external_lex_state = 4}, [2464] = {.lex_state = 26, .external_lex_state = 4}, - [2465] = {.lex_state = 26, .external_lex_state = 3}, - [2466] = {.lex_state = 26, .external_lex_state = 3}, - [2467] = {.lex_state = 26, .external_lex_state = 3}, - [2468] = {.lex_state = 26, .external_lex_state = 3}, - [2469] = {.lex_state = 36, .external_lex_state = 5}, - [2470] = {.lex_state = 26, .external_lex_state = 4}, + [2465] = {.lex_state = 26, .external_lex_state = 4}, + [2466] = {.lex_state = 26, .external_lex_state = 4}, + [2467] = {.lex_state = 26, .external_lex_state = 4}, + [2468] = {.lex_state = 26, .external_lex_state = 4}, + [2469] = {.lex_state = 26, .external_lex_state = 3}, + [2470] = {.lex_state = 26, .external_lex_state = 3}, [2471] = {.lex_state = 26, .external_lex_state = 4}, [2472] = {.lex_state = 26, .external_lex_state = 4}, [2473] = {.lex_state = 26, .external_lex_state = 4}, [2474] = {.lex_state = 26, .external_lex_state = 4}, [2475] = {.lex_state = 26, .external_lex_state = 4}, - [2476] = {.lex_state = 26, .external_lex_state = 4}, - [2477] = {.lex_state = 26, .external_lex_state = 4}, + [2476] = {.lex_state = 26, .external_lex_state = 3}, + [2477] = {.lex_state = 26, .external_lex_state = 3}, [2478] = {.lex_state = 26, .external_lex_state = 4}, [2479] = {.lex_state = 26, .external_lex_state = 4}, - [2480] = {.lex_state = 26, .external_lex_state = 4}, - [2481] = {.lex_state = 26, .external_lex_state = 4}, - [2482] = {.lex_state = 26, .external_lex_state = 4}, - [2483] = {.lex_state = 26, .external_lex_state = 4}, - [2484] = {.lex_state = 26, .external_lex_state = 3}, + [2480] = {.lex_state = 26, .external_lex_state = 3}, + [2481] = {.lex_state = 26, .external_lex_state = 3}, + [2482] = {.lex_state = 26, .external_lex_state = 3}, + [2483] = {.lex_state = 26, .external_lex_state = 3}, + [2484] = {.lex_state = 26, .external_lex_state = 4}, [2485] = {.lex_state = 26, .external_lex_state = 4}, [2486] = {.lex_state = 26, .external_lex_state = 4}, - [2487] = {.lex_state = 36, .external_lex_state = 5}, - [2488] = {.lex_state = 26, .external_lex_state = 4}, + [2487] = {.lex_state = 26, .external_lex_state = 3}, + [2488] = {.lex_state = 26, .external_lex_state = 3}, [2489] = {.lex_state = 26, .external_lex_state = 4}, [2490] = {.lex_state = 26, .external_lex_state = 4}, [2491] = {.lex_state = 26, .external_lex_state = 4}, [2492] = {.lex_state = 26, .external_lex_state = 4}, [2493] = {.lex_state = 26, .external_lex_state = 4}, - [2494] = {.lex_state = 26, .external_lex_state = 4}, + [2494] = {.lex_state = 26, .external_lex_state = 3}, [2495] = {.lex_state = 26, .external_lex_state = 4}, - [2496] = {.lex_state = 36, .external_lex_state = 5}, + [2496] = {.lex_state = 26, .external_lex_state = 3}, [2497] = {.lex_state = 26, .external_lex_state = 4}, - [2498] = {.lex_state = 26, .external_lex_state = 4}, + [2498] = {.lex_state = 26, .external_lex_state = 3}, [2499] = {.lex_state = 26, .external_lex_state = 4}, [2500] = {.lex_state = 26, .external_lex_state = 4}, - [2501] = {.lex_state = 26, .external_lex_state = 4}, + [2501] = {.lex_state = 26, .external_lex_state = 3}, [2502] = {.lex_state = 26, .external_lex_state = 3}, [2503] = {.lex_state = 26, .external_lex_state = 4}, [2504] = {.lex_state = 26, .external_lex_state = 4}, - [2505] = {.lex_state = 26, .external_lex_state = 4}, - [2506] = {.lex_state = 26, .external_lex_state = 4}, - [2507] = {.lex_state = 36, .external_lex_state = 5}, - [2508] = {.lex_state = 36, .external_lex_state = 5}, - [2509] = {.lex_state = 26, .external_lex_state = 4}, + [2505] = {.lex_state = 26, .external_lex_state = 3}, + [2506] = {.lex_state = 36, .external_lex_state = 5}, + [2507] = {.lex_state = 26, .external_lex_state = 3}, + [2508] = {.lex_state = 26, .external_lex_state = 4}, + [2509] = {.lex_state = 36, .external_lex_state = 5}, [2510] = {.lex_state = 26, .external_lex_state = 3}, [2511] = {.lex_state = 26, .external_lex_state = 4}, - [2512] = {.lex_state = 26, .external_lex_state = 3}, - [2513] = {.lex_state = 26, .external_lex_state = 3}, + [2512] = {.lex_state = 36, .external_lex_state = 5}, + [2513] = {.lex_state = 26, .external_lex_state = 4}, [2514] = {.lex_state = 26, .external_lex_state = 3}, - [2515] = {.lex_state = 36, .external_lex_state = 5}, - [2516] = {.lex_state = 26, .external_lex_state = 3}, - [2517] = {.lex_state = 26, .external_lex_state = 3}, + [2515] = {.lex_state = 26, .external_lex_state = 4}, + [2516] = {.lex_state = 36, .external_lex_state = 5}, + [2517] = {.lex_state = 26, .external_lex_state = 4}, [2518] = {.lex_state = 26, .external_lex_state = 3}, [2519] = {.lex_state = 26, .external_lex_state = 3}, - [2520] = {.lex_state = 26, .external_lex_state = 3}, + [2520] = {.lex_state = 36, .external_lex_state = 5}, [2521] = {.lex_state = 26, .external_lex_state = 3}, - [2522] = {.lex_state = 26, .external_lex_state = 4}, + [2522] = {.lex_state = 36, .external_lex_state = 5}, [2523] = {.lex_state = 26, .external_lex_state = 3}, [2524] = {.lex_state = 26, .external_lex_state = 4}, [2525] = {.lex_state = 26, .external_lex_state = 3}, - [2526] = {.lex_state = 26, .external_lex_state = 4}, - [2527] = {.lex_state = 26, .external_lex_state = 3}, + [2526] = {.lex_state = 26, .external_lex_state = 3}, + [2527] = {.lex_state = 36, .external_lex_state = 5}, [2528] = {.lex_state = 26, .external_lex_state = 3}, - [2529] = {.lex_state = 26, .external_lex_state = 4}, + [2529] = {.lex_state = 26, .external_lex_state = 3}, [2530] = {.lex_state = 26, .external_lex_state = 4}, - [2531] = {.lex_state = 26, .external_lex_state = 3}, - [2532] = {.lex_state = 26, .external_lex_state = 3}, - [2533] = {.lex_state = 36, .external_lex_state = 5}, - [2534] = {.lex_state = 26, .external_lex_state = 3}, - [2535] = {.lex_state = 26, .external_lex_state = 3}, + [2531] = {.lex_state = 36, .external_lex_state = 5}, + [2532] = {.lex_state = 36, .external_lex_state = 5}, + [2533] = {.lex_state = 26, .external_lex_state = 3}, + [2534] = {.lex_state = 36, .external_lex_state = 5}, + [2535] = {.lex_state = 26, .external_lex_state = 4}, [2536] = {.lex_state = 26, .external_lex_state = 3}, - [2537] = {.lex_state = 26, .external_lex_state = 3}, + [2537] = {.lex_state = 26, .external_lex_state = 4}, [2538] = {.lex_state = 26, .external_lex_state = 3}, - [2539] = {.lex_state = 26, .external_lex_state = 3}, - [2540] = {.lex_state = 26, .external_lex_state = 4}, + [2539] = {.lex_state = 26, .external_lex_state = 4}, + [2540] = {.lex_state = 26, .external_lex_state = 3}, [2541] = {.lex_state = 26, .external_lex_state = 4}, [2542] = {.lex_state = 26, .external_lex_state = 4}, - [2543] = {.lex_state = 26, .external_lex_state = 3}, + [2543] = {.lex_state = 26, .external_lex_state = 4}, [2544] = {.lex_state = 26, .external_lex_state = 3}, - [2545] = {.lex_state = 26, .external_lex_state = 4}, + [2545] = {.lex_state = 26, .external_lex_state = 3}, [2546] = {.lex_state = 26, .external_lex_state = 3}, - [2547] = {.lex_state = 26, .external_lex_state = 4}, - [2548] = {.lex_state = 26, .external_lex_state = 3}, + [2547] = {.lex_state = 26, .external_lex_state = 3}, + [2548] = {.lex_state = 26, .external_lex_state = 4}, [2549] = {.lex_state = 26, .external_lex_state = 3}, - [2550] = {.lex_state = 26, .external_lex_state = 3}, + [2550] = {.lex_state = 26, .external_lex_state = 4}, [2551] = {.lex_state = 26, .external_lex_state = 4}, [2552] = {.lex_state = 26, .external_lex_state = 4}, [2553] = {.lex_state = 26, .external_lex_state = 4}, [2554] = {.lex_state = 26, .external_lex_state = 4}, [2555] = {.lex_state = 26, .external_lex_state = 4}, - [2556] = {.lex_state = 26, .external_lex_state = 3}, + [2556] = {.lex_state = 26, .external_lex_state = 4}, [2557] = {.lex_state = 26, .external_lex_state = 4}, [2558] = {.lex_state = 26, .external_lex_state = 3}, - [2559] = {.lex_state = 26, .external_lex_state = 3}, + [2559] = {.lex_state = 26, .external_lex_state = 4}, [2560] = {.lex_state = 26, .external_lex_state = 4}, - [2561] = {.lex_state = 26, .external_lex_state = 4}, + [2561] = {.lex_state = 26, .external_lex_state = 3}, [2562] = {.lex_state = 26, .external_lex_state = 3}, - [2563] = {.lex_state = 26, .external_lex_state = 3}, - [2564] = {.lex_state = 26, .external_lex_state = 4}, - [2565] = {.lex_state = 26, .external_lex_state = 3}, - [2566] = {.lex_state = 26, .external_lex_state = 3}, + [2563] = {.lex_state = 26, .external_lex_state = 4}, + [2564] = {.lex_state = 26, .external_lex_state = 3}, + [2565] = {.lex_state = 26, .external_lex_state = 4}, + [2566] = {.lex_state = 26, .external_lex_state = 4}, [2567] = {.lex_state = 26, .external_lex_state = 3}, - [2568] = {.lex_state = 26, .external_lex_state = 3}, + [2568] = {.lex_state = 26, .external_lex_state = 4}, [2569] = {.lex_state = 26, .external_lex_state = 3}, [2570] = {.lex_state = 26, .external_lex_state = 4}, [2571] = {.lex_state = 26, .external_lex_state = 4}, - [2572] = {.lex_state = 26, .external_lex_state = 3}, - [2573] = {.lex_state = 26, .external_lex_state = 3}, - [2574] = {.lex_state = 26, .external_lex_state = 3}, - [2575] = {.lex_state = 26, .external_lex_state = 3}, - [2576] = {.lex_state = 26, .external_lex_state = 3}, + [2572] = {.lex_state = 26, .external_lex_state = 4}, + [2573] = {.lex_state = 26, .external_lex_state = 4}, + [2574] = {.lex_state = 26, .external_lex_state = 4}, + [2575] = {.lex_state = 26, .external_lex_state = 4}, + [2576] = {.lex_state = 26, .external_lex_state = 4}, [2577] = {.lex_state = 26, .external_lex_state = 3}, [2578] = {.lex_state = 26, .external_lex_state = 3}, - [2579] = {.lex_state = 26, .external_lex_state = 4}, + [2579] = {.lex_state = 26, .external_lex_state = 3}, [2580] = {.lex_state = 26, .external_lex_state = 4}, - [2581] = {.lex_state = 26, .external_lex_state = 4}, - [2582] = {.lex_state = 26, .external_lex_state = 4}, - [2583] = {.lex_state = 26, .external_lex_state = 4}, + [2581] = {.lex_state = 26, .external_lex_state = 3}, + [2582] = {.lex_state = 26, .external_lex_state = 3}, + [2583] = {.lex_state = 26, .external_lex_state = 3}, [2584] = {.lex_state = 26, .external_lex_state = 4}, - [2585] = {.lex_state = 26, .external_lex_state = 4}, - [2586] = {.lex_state = 26, .external_lex_state = 4}, + [2585] = {.lex_state = 26, .external_lex_state = 3}, + [2586] = {.lex_state = 26, .external_lex_state = 3}, [2587] = {.lex_state = 26, .external_lex_state = 3}, [2588] = {.lex_state = 26, .external_lex_state = 4}, [2589] = {.lex_state = 26, .external_lex_state = 4}, - [2590] = {.lex_state = 26, .external_lex_state = 4}, - [2591] = {.lex_state = 36, .external_lex_state = 5}, + [2590] = {.lex_state = 26, .external_lex_state = 3}, + [2591] = {.lex_state = 26, .external_lex_state = 3}, [2592] = {.lex_state = 26, .external_lex_state = 3}, - [2593] = {.lex_state = 26, .external_lex_state = 4}, + [2593] = {.lex_state = 26, .external_lex_state = 3}, [2594] = {.lex_state = 26, .external_lex_state = 4}, - [2595] = {.lex_state = 26, .external_lex_state = 4}, + [2595] = {.lex_state = 26, .external_lex_state = 3}, [2596] = {.lex_state = 26, .external_lex_state = 4}, [2597] = {.lex_state = 26, .external_lex_state = 4}, [2598] = {.lex_state = 26, .external_lex_state = 3}, - [2599] = {.lex_state = 26, .external_lex_state = 4}, - [2600] = {.lex_state = 26, .external_lex_state = 4}, - [2601] = {.lex_state = 26, .external_lex_state = 3}, + [2599] = {.lex_state = 26, .external_lex_state = 3}, + [2600] = {.lex_state = 26, .external_lex_state = 3}, + [2601] = {.lex_state = 26, .external_lex_state = 4}, [2602] = {.lex_state = 26, .external_lex_state = 3}, - [2603] = {.lex_state = 26, .external_lex_state = 4}, - [2604] = {.lex_state = 36, .external_lex_state = 5}, - [2605] = {.lex_state = 36, .external_lex_state = 5}, - [2606] = {.lex_state = 26, .external_lex_state = 3}, - [2607] = {.lex_state = 26, .external_lex_state = 4}, - [2608] = {.lex_state = 26, .external_lex_state = 3}, + [2603] = {.lex_state = 26, .external_lex_state = 3}, + [2604] = {.lex_state = 26, .external_lex_state = 3}, + [2605] = {.lex_state = 26, .external_lex_state = 4}, + [2606] = {.lex_state = 26, .external_lex_state = 4}, + [2607] = {.lex_state = 26, .external_lex_state = 3}, + [2608] = {.lex_state = 26, .external_lex_state = 4}, [2609] = {.lex_state = 26, .external_lex_state = 3}, [2610] = {.lex_state = 26, .external_lex_state = 3}, [2611] = {.lex_state = 26, .external_lex_state = 3}, @@ -22882,43 +22946,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2613] = {.lex_state = 26, .external_lex_state = 3}, [2614] = {.lex_state = 26, .external_lex_state = 3}, [2615] = {.lex_state = 26, .external_lex_state = 3}, - [2616] = {.lex_state = 26, .external_lex_state = 3}, + [2616] = {.lex_state = 26, .external_lex_state = 4}, [2617] = {.lex_state = 26, .external_lex_state = 3}, [2618] = {.lex_state = 26, .external_lex_state = 3}, [2619] = {.lex_state = 26, .external_lex_state = 3}, - [2620] = {.lex_state = 26, .external_lex_state = 3}, + [2620] = {.lex_state = 26, .external_lex_state = 4}, [2621] = {.lex_state = 26, .external_lex_state = 3}, - [2622] = {.lex_state = 26, .external_lex_state = 3}, - [2623] = {.lex_state = 26, .external_lex_state = 4}, - [2624] = {.lex_state = 26, .external_lex_state = 4}, - [2625] = {.lex_state = 26, .external_lex_state = 3}, - [2626] = {.lex_state = 26, .external_lex_state = 4}, + [2622] = {.lex_state = 26, .external_lex_state = 4}, + [2623] = {.lex_state = 26, .external_lex_state = 3}, + [2624] = {.lex_state = 26, .external_lex_state = 3}, + [2625] = {.lex_state = 26, .external_lex_state = 4}, + [2626] = {.lex_state = 26, .external_lex_state = 3}, [2627] = {.lex_state = 26, .external_lex_state = 3}, - [2628] = {.lex_state = 26, .external_lex_state = 4}, + [2628] = {.lex_state = 26, .external_lex_state = 3}, [2629] = {.lex_state = 26, .external_lex_state = 3}, [2630] = {.lex_state = 26, .external_lex_state = 3}, - [2631] = {.lex_state = 26, .external_lex_state = 3}, + [2631] = {.lex_state = 36, .external_lex_state = 5}, [2632] = {.lex_state = 26, .external_lex_state = 4}, - [2633] = {.lex_state = 26, .external_lex_state = 4}, - [2634] = {.lex_state = 26, .external_lex_state = 4}, - [2635] = {.lex_state = 26, .external_lex_state = 3}, - [2636] = {.lex_state = 26, .external_lex_state = 4}, + [2633] = {.lex_state = 26, .external_lex_state = 3}, + [2634] = {.lex_state = 26, .external_lex_state = 3}, + [2635] = {.lex_state = 26, .external_lex_state = 4}, + [2636] = {.lex_state = 26, .external_lex_state = 3}, [2637] = {.lex_state = 26, .external_lex_state = 3}, [2638] = {.lex_state = 26, .external_lex_state = 3}, - [2639] = {.lex_state = 26, .external_lex_state = 4}, + [2639] = {.lex_state = 26, .external_lex_state = 3}, [2640] = {.lex_state = 26, .external_lex_state = 3}, - [2641] = {.lex_state = 26, .external_lex_state = 4}, + [2641] = {.lex_state = 26, .external_lex_state = 3}, [2642] = {.lex_state = 26, .external_lex_state = 3}, [2643] = {.lex_state = 26, .external_lex_state = 3}, - [2644] = {.lex_state = 26, .external_lex_state = 3}, + [2644] = {.lex_state = 26, .external_lex_state = 4}, [2645] = {.lex_state = 26, .external_lex_state = 3}, - [2646] = {.lex_state = 26, .external_lex_state = 3}, + [2646] = {.lex_state = 26, .external_lex_state = 4}, [2647] = {.lex_state = 26, .external_lex_state = 3}, [2648] = {.lex_state = 26, .external_lex_state = 3}, [2649] = {.lex_state = 26, .external_lex_state = 3}, [2650] = {.lex_state = 26, .external_lex_state = 3}, - [2651] = {.lex_state = 26, .external_lex_state = 4}, - [2652] = {.lex_state = 26, .external_lex_state = 4}, + [2651] = {.lex_state = 26, .external_lex_state = 3}, + [2652] = {.lex_state = 26, .external_lex_state = 3}, [2653] = {.lex_state = 26, .external_lex_state = 3}, [2654] = {.lex_state = 26, .external_lex_state = 3}, [2655] = {.lex_state = 26, .external_lex_state = 3}, @@ -22933,16 +22997,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2664] = {.lex_state = 26, .external_lex_state = 3}, [2665] = {.lex_state = 26, .external_lex_state = 3}, [2666] = {.lex_state = 26, .external_lex_state = 3}, - [2667] = {.lex_state = 26, .external_lex_state = 4}, - [2668] = {.lex_state = 26, .external_lex_state = 4}, + [2667] = {.lex_state = 26, .external_lex_state = 3}, + [2668] = {.lex_state = 26, .external_lex_state = 3}, [2669] = {.lex_state = 26, .external_lex_state = 3}, [2670] = {.lex_state = 26, .external_lex_state = 3}, - [2671] = {.lex_state = 26, .external_lex_state = 4}, + [2671] = {.lex_state = 26, .external_lex_state = 3}, [2672] = {.lex_state = 26, .external_lex_state = 3}, - [2673] = {.lex_state = 26, .external_lex_state = 4}, - [2674] = {.lex_state = 26, .external_lex_state = 4}, + [2673] = {.lex_state = 26, .external_lex_state = 3}, + [2674] = {.lex_state = 26, .external_lex_state = 3}, [2675] = {.lex_state = 26, .external_lex_state = 3}, - [2676] = {.lex_state = 36, .external_lex_state = 5}, + [2676] = {.lex_state = 26, .external_lex_state = 3}, [2677] = {.lex_state = 26, .external_lex_state = 3}, [2678] = {.lex_state = 26, .external_lex_state = 3}, [2679] = {.lex_state = 26, .external_lex_state = 3}, @@ -22952,137 +23016,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2683] = {.lex_state = 26, .external_lex_state = 3}, [2684] = {.lex_state = 26, .external_lex_state = 3}, [2685] = {.lex_state = 26, .external_lex_state = 3}, - [2686] = {.lex_state = 36, .external_lex_state = 5}, + [2686] = {.lex_state = 26, .external_lex_state = 3}, [2687] = {.lex_state = 26, .external_lex_state = 3}, - [2688] = {.lex_state = 26, .external_lex_state = 4}, + [2688] = {.lex_state = 26, .external_lex_state = 3}, [2689] = {.lex_state = 26, .external_lex_state = 3}, [2690] = {.lex_state = 26, .external_lex_state = 3}, - [2691] = {.lex_state = 36, .external_lex_state = 5}, - [2692] = {.lex_state = 35, .external_lex_state = 5}, - [2693] = {.lex_state = 26, .external_lex_state = 3}, - [2694] = {.lex_state = 26, .external_lex_state = 4}, - [2695] = {.lex_state = 26, .external_lex_state = 4}, + [2691] = {.lex_state = 26, .external_lex_state = 3}, + [2692] = {.lex_state = 26, .external_lex_state = 3}, + [2693] = {.lex_state = 26, .external_lex_state = 4}, + [2694] = {.lex_state = 26, .external_lex_state = 3}, + [2695] = {.lex_state = 26, .external_lex_state = 3}, [2696] = {.lex_state = 26, .external_lex_state = 3}, [2697] = {.lex_state = 26, .external_lex_state = 3}, [2698] = {.lex_state = 26, .external_lex_state = 3}, - [2699] = {.lex_state = 26, .external_lex_state = 4}, + [2699] = {.lex_state = 26, .external_lex_state = 3}, [2700] = {.lex_state = 26, .external_lex_state = 3}, [2701] = {.lex_state = 26, .external_lex_state = 3}, [2702] = {.lex_state = 26, .external_lex_state = 3}, [2703] = {.lex_state = 26, .external_lex_state = 3}, - [2704] = {.lex_state = 26, .external_lex_state = 4}, - [2705] = {.lex_state = 26, .external_lex_state = 3}, - [2706] = {.lex_state = 26, .external_lex_state = 3}, - [2707] = {.lex_state = 26, .external_lex_state = 4}, - [2708] = {.lex_state = 26, .external_lex_state = 3}, - [2709] = {.lex_state = 26, .external_lex_state = 3}, + [2704] = {.lex_state = 26, .external_lex_state = 3}, + [2705] = {.lex_state = 35, .external_lex_state = 5}, + [2706] = {.lex_state = 26, .external_lex_state = 4}, + [2707] = {.lex_state = 26, .external_lex_state = 3}, + [2708] = {.lex_state = 26, .external_lex_state = 4}, + [2709] = {.lex_state = 26, .external_lex_state = 4}, [2710] = {.lex_state = 26, .external_lex_state = 3}, [2711] = {.lex_state = 26, .external_lex_state = 3}, [2712] = {.lex_state = 26, .external_lex_state = 3}, [2713] = {.lex_state = 26, .external_lex_state = 4}, - [2714] = {.lex_state = 26, .external_lex_state = 4}, + [2714] = {.lex_state = 26, .external_lex_state = 3}, [2715] = {.lex_state = 26, .external_lex_state = 3}, [2716] = {.lex_state = 26, .external_lex_state = 3}, - [2717] = {.lex_state = 36, .external_lex_state = 5}, + [2717] = {.lex_state = 26, .external_lex_state = 3}, [2718] = {.lex_state = 26, .external_lex_state = 3}, - [2719] = {.lex_state = 36, .external_lex_state = 5}, + [2719] = {.lex_state = 26, .external_lex_state = 3}, [2720] = {.lex_state = 26, .external_lex_state = 3}, [2721] = {.lex_state = 26, .external_lex_state = 3}, - [2722] = {.lex_state = 26, .external_lex_state = 4}, - [2723] = {.lex_state = 26, .external_lex_state = 3}, - [2724] = {.lex_state = 26, .external_lex_state = 4}, + [2722] = {.lex_state = 26, .external_lex_state = 3}, + [2723] = {.lex_state = 26, .external_lex_state = 4}, + [2724] = {.lex_state = 36, .external_lex_state = 5}, [2725] = {.lex_state = 26, .external_lex_state = 3}, - [2726] = {.lex_state = 26, .external_lex_state = 3}, + [2726] = {.lex_state = 26, .external_lex_state = 4}, [2727] = {.lex_state = 26, .external_lex_state = 3}, [2728] = {.lex_state = 26, .external_lex_state = 4}, [2729] = {.lex_state = 26, .external_lex_state = 3}, [2730] = {.lex_state = 26, .external_lex_state = 3}, - [2731] = {.lex_state = 26, .external_lex_state = 3}, + [2731] = {.lex_state = 26, .external_lex_state = 4}, [2732] = {.lex_state = 26, .external_lex_state = 3}, - [2733] = {.lex_state = 26, .external_lex_state = 3}, + [2733] = {.lex_state = 26, .external_lex_state = 4}, [2734] = {.lex_state = 26, .external_lex_state = 3}, [2735] = {.lex_state = 26, .external_lex_state = 4}, - [2736] = {.lex_state = 26, .external_lex_state = 4}, + [2736] = {.lex_state = 26, .external_lex_state = 3}, [2737] = {.lex_state = 26, .external_lex_state = 3}, - [2738] = {.lex_state = 26, .external_lex_state = 4}, + [2738] = {.lex_state = 26, .external_lex_state = 3}, [2739] = {.lex_state = 26, .external_lex_state = 3}, [2740] = {.lex_state = 26, .external_lex_state = 3}, [2741] = {.lex_state = 26, .external_lex_state = 3}, [2742] = {.lex_state = 26, .external_lex_state = 4}, - [2743] = {.lex_state = 26, .external_lex_state = 3}, + [2743] = {.lex_state = 26, .external_lex_state = 4}, [2744] = {.lex_state = 36, .external_lex_state = 5}, [2745] = {.lex_state = 26, .external_lex_state = 3}, [2746] = {.lex_state = 26, .external_lex_state = 3}, - [2747] = {.lex_state = 26, .external_lex_state = 3}, + [2747] = {.lex_state = 36, .external_lex_state = 5}, [2748] = {.lex_state = 26, .external_lex_state = 3}, - [2749] = {.lex_state = 26, .external_lex_state = 3}, + [2749] = {.lex_state = 26, .external_lex_state = 4}, [2750] = {.lex_state = 26, .external_lex_state = 3}, - [2751] = {.lex_state = 26, .external_lex_state = 3}, - [2752] = {.lex_state = 26, .external_lex_state = 3}, + [2751] = {.lex_state = 26, .external_lex_state = 4}, + [2752] = {.lex_state = 36, .external_lex_state = 5}, [2753] = {.lex_state = 26, .external_lex_state = 3}, [2754] = {.lex_state = 26, .external_lex_state = 3}, - [2755] = {.lex_state = 26, .external_lex_state = 3}, - [2756] = {.lex_state = 26, .external_lex_state = 3}, - [2757] = {.lex_state = 26, .external_lex_state = 3}, + [2755] = {.lex_state = 26, .external_lex_state = 4}, + [2756] = {.lex_state = 26, .external_lex_state = 4}, + [2757] = {.lex_state = 26, .external_lex_state = 4}, [2758] = {.lex_state = 26, .external_lex_state = 3}, - [2759] = {.lex_state = 26, .external_lex_state = 3}, - [2760] = {.lex_state = 26, .external_lex_state = 3}, + [2759] = {.lex_state = 26, .external_lex_state = 4}, + [2760] = {.lex_state = 36, .external_lex_state = 5}, [2761] = {.lex_state = 26, .external_lex_state = 3}, [2762] = {.lex_state = 26, .external_lex_state = 3}, - [2763] = {.lex_state = 26, .external_lex_state = 3}, - [2764] = {.lex_state = 26, .external_lex_state = 3}, + [2763] = {.lex_state = 36, .external_lex_state = 5}, + [2764] = {.lex_state = 26, .external_lex_state = 4}, [2765] = {.lex_state = 26, .external_lex_state = 3}, - [2766] = {.lex_state = 26, .external_lex_state = 4}, - [2767] = {.lex_state = 26, .external_lex_state = 4}, + [2766] = {.lex_state = 26, .external_lex_state = 3}, + [2767] = {.lex_state = 26, .external_lex_state = 3}, [2768] = {.lex_state = 26, .external_lex_state = 3}, - [2769] = {.lex_state = 26, .external_lex_state = 3}, + [2769] = {.lex_state = 26, .external_lex_state = 4}, [2770] = {.lex_state = 26, .external_lex_state = 3}, [2771] = {.lex_state = 26, .external_lex_state = 3}, - [2772] = {.lex_state = 26, .external_lex_state = 3}, - [2773] = {.lex_state = 35, .external_lex_state = 5}, + [2772] = {.lex_state = 26, .external_lex_state = 4}, + [2773] = {.lex_state = 26, .external_lex_state = 3}, [2774] = {.lex_state = 26, .external_lex_state = 3}, - [2775] = {.lex_state = 26, .external_lex_state = 3}, - [2776] = {.lex_state = 26, .external_lex_state = 3}, + [2775] = {.lex_state = 26, .external_lex_state = 4}, + [2776] = {.lex_state = 35, .external_lex_state = 5}, [2777] = {.lex_state = 26, .external_lex_state = 3}, [2778] = {.lex_state = 26, .external_lex_state = 3}, [2779] = {.lex_state = 26, .external_lex_state = 3}, - [2780] = {.lex_state = 26, .external_lex_state = 4}, + [2780] = {.lex_state = 26, .external_lex_state = 3}, [2781] = {.lex_state = 26, .external_lex_state = 4}, [2782] = {.lex_state = 26, .external_lex_state = 4}, [2783] = {.lex_state = 26, .external_lex_state = 4}, [2784] = {.lex_state = 26, .external_lex_state = 4}, [2785] = {.lex_state = 26, .external_lex_state = 4}, [2786] = {.lex_state = 26, .external_lex_state = 4}, - [2787] = {.lex_state = 36, .external_lex_state = 2}, - [2788] = {.lex_state = 35, .external_lex_state = 5}, - [2789] = {.lex_state = 26, .external_lex_state = 4}, + [2787] = {.lex_state = 26, .external_lex_state = 3}, + [2788] = {.lex_state = 26, .external_lex_state = 4}, + [2789] = {.lex_state = 36, .external_lex_state = 2}, [2790] = {.lex_state = 26, .external_lex_state = 4}, - [2791] = {.lex_state = 36, .external_lex_state = 2}, + [2791] = {.lex_state = 26, .external_lex_state = 4}, [2792] = {.lex_state = 26, .external_lex_state = 4}, - [2793] = {.lex_state = 26, .external_lex_state = 3}, + [2793] = {.lex_state = 26, .external_lex_state = 4}, [2794] = {.lex_state = 26, .external_lex_state = 4}, [2795] = {.lex_state = 26, .external_lex_state = 4}, [2796] = {.lex_state = 26, .external_lex_state = 4}, [2797] = {.lex_state = 26, .external_lex_state = 4}, - [2798] = {.lex_state = 35, .external_lex_state = 5}, + [2798] = {.lex_state = 26, .external_lex_state = 4}, [2799] = {.lex_state = 26, .external_lex_state = 4}, [2800] = {.lex_state = 26, .external_lex_state = 4}, - [2801] = {.lex_state = 35, .external_lex_state = 5}, - [2802] = {.lex_state = 36, .external_lex_state = 5}, + [2801] = {.lex_state = 26, .external_lex_state = 4}, + [2802] = {.lex_state = 26, .external_lex_state = 4}, [2803] = {.lex_state = 26, .external_lex_state = 4}, - [2804] = {.lex_state = 36, .external_lex_state = 2}, - [2805] = {.lex_state = 36, .external_lex_state = 5}, - [2806] = {.lex_state = 36, .external_lex_state = 5}, - [2807] = {.lex_state = 36, .external_lex_state = 2}, + [2804] = {.lex_state = 26, .external_lex_state = 4}, + [2805] = {.lex_state = 26, .external_lex_state = 4}, + [2806] = {.lex_state = 26, .external_lex_state = 4}, + [2807] = {.lex_state = 26, .external_lex_state = 4}, [2808] = {.lex_state = 26, .external_lex_state = 4}, - [2809] = {.lex_state = 26, .external_lex_state = 4}, + [2809] = {.lex_state = 36, .external_lex_state = 2}, [2810] = {.lex_state = 26, .external_lex_state = 4}, [2811] = {.lex_state = 26, .external_lex_state = 4}, [2812] = {.lex_state = 26, .external_lex_state = 4}, [2813] = {.lex_state = 26, .external_lex_state = 4}, [2814] = {.lex_state = 26, .external_lex_state = 4}, - [2815] = {.lex_state = 36, .external_lex_state = 5}, - [2816] = {.lex_state = 26, .external_lex_state = 4}, + [2815] = {.lex_state = 26, .external_lex_state = 4}, + [2816] = {.lex_state = 26, .external_lex_state = 3}, [2817] = {.lex_state = 26, .external_lex_state = 4}, [2818] = {.lex_state = 26, .external_lex_state = 4}, [2819] = {.lex_state = 26, .external_lex_state = 4}, @@ -23090,27 +23154,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2821] = {.lex_state = 26, .external_lex_state = 4}, [2822] = {.lex_state = 26, .external_lex_state = 4}, [2823] = {.lex_state = 26, .external_lex_state = 4}, - [2824] = {.lex_state = 36, .external_lex_state = 2}, - [2825] = {.lex_state = 26, .external_lex_state = 3}, + [2824] = {.lex_state = 26, .external_lex_state = 4}, + [2825] = {.lex_state = 26, .external_lex_state = 4}, [2826] = {.lex_state = 26, .external_lex_state = 4}, [2827] = {.lex_state = 26, .external_lex_state = 4}, - [2828] = {.lex_state = 26, .external_lex_state = 4}, - [2829] = {.lex_state = 26, .external_lex_state = 3}, - [2830] = {.lex_state = 26, .external_lex_state = 3}, - [2831] = {.lex_state = 26, .external_lex_state = 3}, - [2832] = {.lex_state = 26, .external_lex_state = 4}, - [2833] = {.lex_state = 26, .external_lex_state = 4}, - [2834] = {.lex_state = 26, .external_lex_state = 4}, + [2828] = {.lex_state = 36, .external_lex_state = 2}, + [2829] = {.lex_state = 36, .external_lex_state = 5}, + [2830] = {.lex_state = 26, .external_lex_state = 4}, + [2831] = {.lex_state = 26, .external_lex_state = 4}, + [2832] = {.lex_state = 36, .external_lex_state = 2}, + [2833] = {.lex_state = 26, .external_lex_state = 3}, + [2834] = {.lex_state = 26, .external_lex_state = 3}, [2835] = {.lex_state = 26, .external_lex_state = 4}, [2836] = {.lex_state = 26, .external_lex_state = 4}, [2837] = {.lex_state = 26, .external_lex_state = 4}, - [2838] = {.lex_state = 26, .external_lex_state = 4}, + [2838] = {.lex_state = 36, .external_lex_state = 5}, [2839] = {.lex_state = 26, .external_lex_state = 4}, - [2840] = {.lex_state = 26, .external_lex_state = 4}, - [2841] = {.lex_state = 24, .external_lex_state = 3}, + [2840] = {.lex_state = 36, .external_lex_state = 5}, + [2841] = {.lex_state = 26, .external_lex_state = 4}, [2842] = {.lex_state = 26, .external_lex_state = 4}, [2843] = {.lex_state = 26, .external_lex_state = 4}, - [2844] = {.lex_state = 26, .external_lex_state = 4}, + [2844] = {.lex_state = 24, .external_lex_state = 3}, [2845] = {.lex_state = 26, .external_lex_state = 4}, [2846] = {.lex_state = 26, .external_lex_state = 4}, [2847] = {.lex_state = 26, .external_lex_state = 4}, @@ -23120,12 +23184,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2851] = {.lex_state = 26, .external_lex_state = 4}, [2852] = {.lex_state = 26, .external_lex_state = 4}, [2853] = {.lex_state = 26, .external_lex_state = 4}, - [2854] = {.lex_state = 35, .external_lex_state = 5}, - [2855] = {.lex_state = 26, .external_lex_state = 3}, - [2856] = {.lex_state = 26, .external_lex_state = 3}, + [2854] = {.lex_state = 26, .external_lex_state = 4}, + [2855] = {.lex_state = 26, .external_lex_state = 4}, + [2856] = {.lex_state = 26, .external_lex_state = 4}, [2857] = {.lex_state = 26, .external_lex_state = 4}, - [2858] = {.lex_state = 26, .external_lex_state = 4}, - [2859] = {.lex_state = 26, .external_lex_state = 4}, + [2858] = {.lex_state = 26, .external_lex_state = 3}, + [2859] = {.lex_state = 26, .external_lex_state = 3}, [2860] = {.lex_state = 26, .external_lex_state = 4}, [2861] = {.lex_state = 26, .external_lex_state = 4}, [2862] = {.lex_state = 26, .external_lex_state = 4}, @@ -23138,22 +23202,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2869] = {.lex_state = 26, .external_lex_state = 4}, [2870] = {.lex_state = 26, .external_lex_state = 4}, [2871] = {.lex_state = 26, .external_lex_state = 4}, - [2872] = {.lex_state = 26, .external_lex_state = 4}, + [2872] = {.lex_state = 26, .external_lex_state = 3}, [2873] = {.lex_state = 26, .external_lex_state = 4}, - [2874] = {.lex_state = 35, .external_lex_state = 5}, + [2874] = {.lex_state = 26, .external_lex_state = 4}, [2875] = {.lex_state = 26, .external_lex_state = 4}, - [2876] = {.lex_state = 36, .external_lex_state = 5}, + [2876] = {.lex_state = 26, .external_lex_state = 4}, [2877] = {.lex_state = 26, .external_lex_state = 4}, [2878] = {.lex_state = 26, .external_lex_state = 4}, - [2879] = {.lex_state = 26, .external_lex_state = 3}, + [2879] = {.lex_state = 26, .external_lex_state = 4}, [2880] = {.lex_state = 26, .external_lex_state = 4}, [2881] = {.lex_state = 26, .external_lex_state = 4}, [2882] = {.lex_state = 26, .external_lex_state = 4}, - [2883] = {.lex_state = 36, .external_lex_state = 2}, + [2883] = {.lex_state = 35, .external_lex_state = 5}, [2884] = {.lex_state = 26, .external_lex_state = 4}, - [2885] = {.lex_state = 26, .external_lex_state = 4}, + [2885] = {.lex_state = 36, .external_lex_state = 2}, [2886] = {.lex_state = 26, .external_lex_state = 4}, - [2887] = {.lex_state = 26, .external_lex_state = 4}, + [2887] = {.lex_state = 26, .external_lex_state = 3}, [2888] = {.lex_state = 26, .external_lex_state = 4}, [2889] = {.lex_state = 26, .external_lex_state = 4}, [2890] = {.lex_state = 26, .external_lex_state = 4}, @@ -23162,39 +23226,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2893] = {.lex_state = 26, .external_lex_state = 4}, [2894] = {.lex_state = 26, .external_lex_state = 4}, [2895] = {.lex_state = 26, .external_lex_state = 4}, - [2896] = {.lex_state = 26, .external_lex_state = 4}, + [2896] = {.lex_state = 35, .external_lex_state = 5}, [2897] = {.lex_state = 26, .external_lex_state = 4}, - [2898] = {.lex_state = 26, .external_lex_state = 3}, + [2898] = {.lex_state = 35, .external_lex_state = 5}, [2899] = {.lex_state = 26, .external_lex_state = 4}, [2900] = {.lex_state = 26, .external_lex_state = 4}, [2901] = {.lex_state = 26, .external_lex_state = 3}, - [2902] = {.lex_state = 36, .external_lex_state = 2}, + [2902] = {.lex_state = 26, .external_lex_state = 4}, [2903] = {.lex_state = 26, .external_lex_state = 4}, - [2904] = {.lex_state = 26, .external_lex_state = 4}, + [2904] = {.lex_state = 36, .external_lex_state = 5}, [2905] = {.lex_state = 26, .external_lex_state = 4}, - [2906] = {.lex_state = 26, .external_lex_state = 4}, - [2907] = {.lex_state = 36, .external_lex_state = 5}, + [2906] = {.lex_state = 36, .external_lex_state = 5}, + [2907] = {.lex_state = 26, .external_lex_state = 4}, [2908] = {.lex_state = 26, .external_lex_state = 4}, - [2909] = {.lex_state = 26, .external_lex_state = 3}, + [2909] = {.lex_state = 26, .external_lex_state = 4}, [2910] = {.lex_state = 26, .external_lex_state = 4}, - [2911] = {.lex_state = 26, .external_lex_state = 3}, + [2911] = {.lex_state = 26, .external_lex_state = 4}, [2912] = {.lex_state = 26, .external_lex_state = 4}, [2913] = {.lex_state = 26, .external_lex_state = 4}, - [2914] = {.lex_state = 26, .external_lex_state = 4}, - [2915] = {.lex_state = 26, .external_lex_state = 4}, + [2914] = {.lex_state = 26, .external_lex_state = 3}, + [2915] = {.lex_state = 26, .external_lex_state = 3}, [2916] = {.lex_state = 26, .external_lex_state = 3}, - [2917] = {.lex_state = 26, .external_lex_state = 4}, - [2918] = {.lex_state = 26, .external_lex_state = 4}, + [2917] = {.lex_state = 26, .external_lex_state = 3}, + [2918] = {.lex_state = 26, .external_lex_state = 3}, [2919] = {.lex_state = 26, .external_lex_state = 4}, [2920] = {.lex_state = 26, .external_lex_state = 4}, - [2921] = {.lex_state = 26, .external_lex_state = 3}, - [2922] = {.lex_state = 26, .external_lex_state = 3}, + [2921] = {.lex_state = 26, .external_lex_state = 4}, + [2922] = {.lex_state = 26, .external_lex_state = 4}, [2923] = {.lex_state = 26, .external_lex_state = 4}, [2924] = {.lex_state = 26, .external_lex_state = 4}, [2925] = {.lex_state = 26, .external_lex_state = 4}, [2926] = {.lex_state = 26, .external_lex_state = 4}, [2927] = {.lex_state = 26, .external_lex_state = 4}, - [2928] = {.lex_state = 26, .external_lex_state = 3}, + [2928] = {.lex_state = 26, .external_lex_state = 4}, [2929] = {.lex_state = 26, .external_lex_state = 4}, [2930] = {.lex_state = 26, .external_lex_state = 4}, [2931] = {.lex_state = 26, .external_lex_state = 4}, @@ -23202,535 +23266,535 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2933] = {.lex_state = 26, .external_lex_state = 4}, [2934] = {.lex_state = 26, .external_lex_state = 4}, [2935] = {.lex_state = 26, .external_lex_state = 4}, - [2936] = {.lex_state = 36, .external_lex_state = 2}, + [2936] = {.lex_state = 26, .external_lex_state = 3}, [2937] = {.lex_state = 26, .external_lex_state = 4}, [2938] = {.lex_state = 26, .external_lex_state = 4}, [2939] = {.lex_state = 26, .external_lex_state = 4}, [2940] = {.lex_state = 26, .external_lex_state = 4}, - [2941] = {.lex_state = 26, .external_lex_state = 4}, - [2942] = {.lex_state = 26, .external_lex_state = 4}, + [2941] = {.lex_state = 36, .external_lex_state = 2}, + [2942] = {.lex_state = 26, .external_lex_state = 3}, [2943] = {.lex_state = 26, .external_lex_state = 4}, [2944] = {.lex_state = 26, .external_lex_state = 4}, [2945] = {.lex_state = 26, .external_lex_state = 4}, [2946] = {.lex_state = 26, .external_lex_state = 4}, [2947] = {.lex_state = 26, .external_lex_state = 4}, - [2948] = {.lex_state = 26, .external_lex_state = 3}, - [2949] = {.lex_state = 36, .external_lex_state = 5}, + [2948] = {.lex_state = 26, .external_lex_state = 4}, + [2949] = {.lex_state = 26, .external_lex_state = 4}, [2950] = {.lex_state = 36, .external_lex_state = 2}, - [2951] = {.lex_state = 36, .external_lex_state = 5}, - [2952] = {.lex_state = 26, .external_lex_state = 3}, - [2953] = {.lex_state = 26, .external_lex_state = 4}, - [2954] = {.lex_state = 26, .external_lex_state = 3}, + [2951] = {.lex_state = 26, .external_lex_state = 4}, + [2952] = {.lex_state = 26, .external_lex_state = 4}, + [2953] = {.lex_state = 26, .external_lex_state = 3}, + [2954] = {.lex_state = 26, .external_lex_state = 4}, [2955] = {.lex_state = 26, .external_lex_state = 4}, [2956] = {.lex_state = 26, .external_lex_state = 4}, [2957] = {.lex_state = 26, .external_lex_state = 4}, [2958] = {.lex_state = 26, .external_lex_state = 4}, - [2959] = {.lex_state = 26, .external_lex_state = 3}, - [2960] = {.lex_state = 26, .external_lex_state = 3}, - [2961] = {.lex_state = 26, .external_lex_state = 3}, - [2962] = {.lex_state = 35, .external_lex_state = 5}, - [2963] = {.lex_state = 26, .external_lex_state = 4}, + [2959] = {.lex_state = 26, .external_lex_state = 4}, + [2960] = {.lex_state = 26, .external_lex_state = 4}, + [2961] = {.lex_state = 26, .external_lex_state = 4}, + [2962] = {.lex_state = 26, .external_lex_state = 4}, + [2963] = {.lex_state = 26, .external_lex_state = 3}, [2964] = {.lex_state = 26, .external_lex_state = 4}, [2965] = {.lex_state = 26, .external_lex_state = 4}, [2966] = {.lex_state = 26, .external_lex_state = 4}, [2967] = {.lex_state = 26, .external_lex_state = 4}, [2968] = {.lex_state = 26, .external_lex_state = 4}, - [2969] = {.lex_state = 26, .external_lex_state = 4}, - [2970] = {.lex_state = 26, .external_lex_state = 4}, + [2969] = {.lex_state = 26, .external_lex_state = 3}, + [2970] = {.lex_state = 26, .external_lex_state = 3}, [2971] = {.lex_state = 26, .external_lex_state = 4}, [2972] = {.lex_state = 26, .external_lex_state = 4}, - [2973] = {.lex_state = 26, .external_lex_state = 3}, - [2974] = {.lex_state = 26, .external_lex_state = 4}, + [2973] = {.lex_state = 26, .external_lex_state = 4}, + [2974] = {.lex_state = 26, .external_lex_state = 3}, [2975] = {.lex_state = 26, .external_lex_state = 4}, - [2976] = {.lex_state = 26, .external_lex_state = 4}, + [2976] = {.lex_state = 36, .external_lex_state = 5}, [2977] = {.lex_state = 26, .external_lex_state = 4}, [2978] = {.lex_state = 26, .external_lex_state = 4}, [2979] = {.lex_state = 26, .external_lex_state = 4}, [2980] = {.lex_state = 26, .external_lex_state = 4}, - [2981] = {.lex_state = 26, .external_lex_state = 4}, + [2981] = {.lex_state = 26, .external_lex_state = 3}, [2982] = {.lex_state = 26, .external_lex_state = 4}, [2983] = {.lex_state = 26, .external_lex_state = 4}, [2984] = {.lex_state = 26, .external_lex_state = 4}, - [2985] = {.lex_state = 26, .external_lex_state = 4}, - [2986] = {.lex_state = 26, .external_lex_state = 4}, - [2987] = {.lex_state = 26, .external_lex_state = 4}, + [2985] = {.lex_state = 35, .external_lex_state = 5}, + [2986] = {.lex_state = 36, .external_lex_state = 2}, + [2987] = {.lex_state = 36, .external_lex_state = 5}, [2988] = {.lex_state = 26, .external_lex_state = 4}, - [2989] = {.lex_state = 26, .external_lex_state = 4}, - [2990] = {.lex_state = 26, .external_lex_state = 4}, - [2991] = {.lex_state = 26, .external_lex_state = 4}, - [2992] = {.lex_state = 26, .external_lex_state = 4}, - [2993] = {.lex_state = 36, .external_lex_state = 2}, + [2989] = {.lex_state = 26, .external_lex_state = 3}, + [2990] = {.lex_state = 36, .external_lex_state = 2}, + [2991] = {.lex_state = 35, .external_lex_state = 5}, + [2992] = {.lex_state = 36, .external_lex_state = 5}, + [2993] = {.lex_state = 35, .external_lex_state = 5}, [2994] = {.lex_state = 26, .external_lex_state = 3}, [2995] = {.lex_state = 26, .external_lex_state = 3}, [2996] = {.lex_state = 26, .external_lex_state = 3}, [2997] = {.lex_state = 26, .external_lex_state = 3}, - [2998] = {.lex_state = 26, .external_lex_state = 4}, + [2998] = {.lex_state = 36, .external_lex_state = 5}, [2999] = {.lex_state = 26, .external_lex_state = 3}, - [3000] = {.lex_state = 26, .external_lex_state = 4}, - [3001] = {.lex_state = 26, .external_lex_state = 3}, - [3002] = {.lex_state = 26, .external_lex_state = 3}, - [3003] = {.lex_state = 26, .external_lex_state = 3}, - [3004] = {.lex_state = 26, .external_lex_state = 3}, - [3005] = {.lex_state = 26, .external_lex_state = 3}, - [3006] = {.lex_state = 26, .external_lex_state = 3}, - [3007] = {.lex_state = 26, .external_lex_state = 3}, - [3008] = {.lex_state = 26, .external_lex_state = 4}, - [3009] = {.lex_state = 26, .external_lex_state = 3}, + [3000] = {.lex_state = 26, .external_lex_state = 3}, + [3001] = {.lex_state = 26, .external_lex_state = 4}, + [3002] = {.lex_state = 36, .external_lex_state = 5}, + [3003] = {.lex_state = 26, .external_lex_state = 4}, + [3004] = {.lex_state = 26, .external_lex_state = 4}, + [3005] = {.lex_state = 26, .external_lex_state = 4}, + [3006] = {.lex_state = 26, .external_lex_state = 4}, + [3007] = {.lex_state = 26, .external_lex_state = 4}, + [3008] = {.lex_state = 36, .external_lex_state = 2}, + [3009] = {.lex_state = 36, .external_lex_state = 2}, [3010] = {.lex_state = 26, .external_lex_state = 4}, [3011] = {.lex_state = 26, .external_lex_state = 4}, - [3012] = {.lex_state = 26, .external_lex_state = 3}, + [3012] = {.lex_state = 26, .external_lex_state = 4}, [3013] = {.lex_state = 26, .external_lex_state = 4}, - [3014] = {.lex_state = 26, .external_lex_state = 3}, - [3015] = {.lex_state = 26, .external_lex_state = 3}, - [3016] = {.lex_state = 26, .external_lex_state = 3}, - [3017] = {.lex_state = 26, .external_lex_state = 4}, - [3018] = {.lex_state = 36, .external_lex_state = 5}, + [3014] = {.lex_state = 26, .external_lex_state = 4}, + [3015] = {.lex_state = 36, .external_lex_state = 5}, + [3016] = {.lex_state = 36, .external_lex_state = 5}, + [3017] = {.lex_state = 36, .external_lex_state = 5}, + [3018] = {.lex_state = 26, .external_lex_state = 4}, [3019] = {.lex_state = 26, .external_lex_state = 4}, - [3020] = {.lex_state = 26, .external_lex_state = 4}, - [3021] = {.lex_state = 26, .external_lex_state = 4}, + [3020] = {.lex_state = 26, .external_lex_state = 3}, + [3021] = {.lex_state = 36, .external_lex_state = 2}, [3022] = {.lex_state = 26, .external_lex_state = 3}, [3023] = {.lex_state = 26, .external_lex_state = 4}, [3024] = {.lex_state = 26, .external_lex_state = 3}, - [3025] = {.lex_state = 36, .external_lex_state = 5}, - [3026] = {.lex_state = 26, .external_lex_state = 3}, - [3027] = {.lex_state = 26, .external_lex_state = 3}, - [3028] = {.lex_state = 36, .external_lex_state = 5}, + [3025] = {.lex_state = 26, .external_lex_state = 4}, + [3026] = {.lex_state = 26, .external_lex_state = 4}, + [3027] = {.lex_state = 26, .external_lex_state = 4}, + [3028] = {.lex_state = 26, .external_lex_state = 3}, [3029] = {.lex_state = 26, .external_lex_state = 3}, - [3030] = {.lex_state = 36, .external_lex_state = 5}, + [3030] = {.lex_state = 26, .external_lex_state = 3}, [3031] = {.lex_state = 26, .external_lex_state = 3}, [3032] = {.lex_state = 26, .external_lex_state = 3}, [3033] = {.lex_state = 26, .external_lex_state = 3}, [3034] = {.lex_state = 26, .external_lex_state = 3}, [3035] = {.lex_state = 26, .external_lex_state = 3}, [3036] = {.lex_state = 26, .external_lex_state = 3}, - [3037] = {.lex_state = 26, .external_lex_state = 3}, - [3038] = {.lex_state = 26, .external_lex_state = 3}, - [3039] = {.lex_state = 36, .external_lex_state = 5}, + [3037] = {.lex_state = 36, .external_lex_state = 5}, + [3038] = {.lex_state = 36, .external_lex_state = 5}, + [3039] = {.lex_state = 26, .external_lex_state = 3}, [3040] = {.lex_state = 26, .external_lex_state = 3}, - [3041] = {.lex_state = 36, .external_lex_state = 5}, - [3042] = {.lex_state = 26, .external_lex_state = 3}, + [3041] = {.lex_state = 26, .external_lex_state = 3}, + [3042] = {.lex_state = 26, .external_lex_state = 4}, [3043] = {.lex_state = 26, .external_lex_state = 3}, [3044] = {.lex_state = 26, .external_lex_state = 3}, - [3045] = {.lex_state = 26, .external_lex_state = 3}, + [3045] = {.lex_state = 26, .external_lex_state = 4}, [3046] = {.lex_state = 26, .external_lex_state = 3}, [3047] = {.lex_state = 26, .external_lex_state = 3}, - [3048] = {.lex_state = 26, .external_lex_state = 3}, + [3048] = {.lex_state = 36, .external_lex_state = 5}, [3049] = {.lex_state = 26, .external_lex_state = 3}, [3050] = {.lex_state = 26, .external_lex_state = 3}, - [3051] = {.lex_state = 26, .external_lex_state = 3}, + [3051] = {.lex_state = 26, .external_lex_state = 4}, [3052] = {.lex_state = 26, .external_lex_state = 4}, - [3053] = {.lex_state = 26, .external_lex_state = 3}, + [3053] = {.lex_state = 36, .external_lex_state = 5}, [3054] = {.lex_state = 26, .external_lex_state = 3}, - [3055] = {.lex_state = 36, .external_lex_state = 5}, + [3055] = {.lex_state = 26, .external_lex_state = 4}, [3056] = {.lex_state = 26, .external_lex_state = 3}, [3057] = {.lex_state = 26, .external_lex_state = 3}, [3058] = {.lex_state = 26, .external_lex_state = 3}, - [3059] = {.lex_state = 26, .external_lex_state = 3}, - [3060] = {.lex_state = 36, .external_lex_state = 5}, - [3061] = {.lex_state = 26, .external_lex_state = 3}, - [3062] = {.lex_state = 36, .external_lex_state = 5}, + [3059] = {.lex_state = 36, .external_lex_state = 5}, + [3060] = {.lex_state = 26, .external_lex_state = 3}, + [3061] = {.lex_state = 26, .external_lex_state = 4}, + [3062] = {.lex_state = 26, .external_lex_state = 4}, [3063] = {.lex_state = 26, .external_lex_state = 4}, [3064] = {.lex_state = 26, .external_lex_state = 3}, [3065] = {.lex_state = 26, .external_lex_state = 3}, - [3066] = {.lex_state = 26, .external_lex_state = 3}, - [3067] = {.lex_state = 26, .external_lex_state = 4}, - [3068] = {.lex_state = 36, .external_lex_state = 5}, + [3066] = {.lex_state = 26, .external_lex_state = 4}, + [3067] = {.lex_state = 26, .external_lex_state = 3}, + [3068] = {.lex_state = 26, .external_lex_state = 3}, [3069] = {.lex_state = 26, .external_lex_state = 3}, [3070] = {.lex_state = 26, .external_lex_state = 3}, - [3071] = {.lex_state = 26, .external_lex_state = 4}, + [3071] = {.lex_state = 26, .external_lex_state = 3}, [3072] = {.lex_state = 26, .external_lex_state = 3}, - [3073] = {.lex_state = 26, .external_lex_state = 3}, - [3074] = {.lex_state = 26, .external_lex_state = 3}, - [3075] = {.lex_state = 26, .external_lex_state = 3}, + [3073] = {.lex_state = 26, .external_lex_state = 4}, + [3074] = {.lex_state = 26, .external_lex_state = 4}, + [3075] = {.lex_state = 26, .external_lex_state = 4}, [3076] = {.lex_state = 26, .external_lex_state = 3}, [3077] = {.lex_state = 36, .external_lex_state = 5}, - [3078] = {.lex_state = 26, .external_lex_state = 3}, - [3079] = {.lex_state = 26, .external_lex_state = 3}, - [3080] = {.lex_state = 36, .external_lex_state = 2}, - [3081] = {.lex_state = 26, .external_lex_state = 3}, - [3082] = {.lex_state = 26, .external_lex_state = 3}, + [3078] = {.lex_state = 36, .external_lex_state = 5}, + [3079] = {.lex_state = 26, .external_lex_state = 4}, + [3080] = {.lex_state = 36, .external_lex_state = 5}, + [3081] = {.lex_state = 36, .external_lex_state = 5}, + [3082] = {.lex_state = 26, .external_lex_state = 4}, [3083] = {.lex_state = 26, .external_lex_state = 3}, - [3084] = {.lex_state = 26, .external_lex_state = 3}, + [3084] = {.lex_state = 26, .external_lex_state = 4}, [3085] = {.lex_state = 26, .external_lex_state = 4}, - [3086] = {.lex_state = 26, .external_lex_state = 4}, - [3087] = {.lex_state = 26, .external_lex_state = 3}, - [3088] = {.lex_state = 26, .external_lex_state = 3}, - [3089] = {.lex_state = 26, .external_lex_state = 4}, - [3090] = {.lex_state = 36, .external_lex_state = 5}, - [3091] = {.lex_state = 36, .external_lex_state = 5}, + [3086] = {.lex_state = 26, .external_lex_state = 3}, + [3087] = {.lex_state = 26, .external_lex_state = 4}, + [3088] = {.lex_state = 36, .external_lex_state = 5}, + [3089] = {.lex_state = 26, .external_lex_state = 3}, + [3090] = {.lex_state = 26, .external_lex_state = 3}, + [3091] = {.lex_state = 26, .external_lex_state = 3}, [3092] = {.lex_state = 26, .external_lex_state = 4}, - [3093] = {.lex_state = 36, .external_lex_state = 5}, + [3093] = {.lex_state = 26, .external_lex_state = 3}, [3094] = {.lex_state = 26, .external_lex_state = 4}, - [3095] = {.lex_state = 36, .external_lex_state = 2}, - [3096] = {.lex_state = 36, .external_lex_state = 2}, + [3095] = {.lex_state = 26, .external_lex_state = 3}, + [3096] = {.lex_state = 26, .external_lex_state = 3}, [3097] = {.lex_state = 26, .external_lex_state = 3}, [3098] = {.lex_state = 26, .external_lex_state = 3}, - [3099] = {.lex_state = 27, .external_lex_state = 4}, + [3099] = {.lex_state = 26, .external_lex_state = 3}, [3100] = {.lex_state = 26, .external_lex_state = 3}, - [3101] = {.lex_state = 26, .external_lex_state = 4}, - [3102] = {.lex_state = 36, .external_lex_state = 5}, + [3101] = {.lex_state = 26, .external_lex_state = 3}, + [3102] = {.lex_state = 26, .external_lex_state = 3}, [3103] = {.lex_state = 26, .external_lex_state = 4}, - [3104] = {.lex_state = 36, .external_lex_state = 5}, + [3104] = {.lex_state = 26, .external_lex_state = 4}, [3105] = {.lex_state = 26, .external_lex_state = 4}, - [3106] = {.lex_state = 36, .external_lex_state = 5}, - [3107] = {.lex_state = 26, .external_lex_state = 4}, - [3108] = {.lex_state = 26, .external_lex_state = 4}, - [3109] = {.lex_state = 26, .external_lex_state = 4}, - [3110] = {.lex_state = 26, .external_lex_state = 3}, + [3106] = {.lex_state = 26, .external_lex_state = 4}, + [3107] = {.lex_state = 26, .external_lex_state = 3}, + [3108] = {.lex_state = 26, .external_lex_state = 3}, + [3109] = {.lex_state = 26, .external_lex_state = 3}, + [3110] = {.lex_state = 26, .external_lex_state = 4}, [3111] = {.lex_state = 26, .external_lex_state = 4}, - [3112] = {.lex_state = 26, .external_lex_state = 4}, + [3112] = {.lex_state = 26, .external_lex_state = 3}, [3113] = {.lex_state = 26, .external_lex_state = 3}, - [3114] = {.lex_state = 26, .external_lex_state = 4}, - [3115] = {.lex_state = 26, .external_lex_state = 4}, - [3116] = {.lex_state = 36, .external_lex_state = 5}, + [3114] = {.lex_state = 26, .external_lex_state = 3}, + [3115] = {.lex_state = 26, .external_lex_state = 3}, + [3116] = {.lex_state = 26, .external_lex_state = 3}, [3117] = {.lex_state = 26, .external_lex_state = 3}, - [3118] = {.lex_state = 26, .external_lex_state = 3}, - [3119] = {.lex_state = 26, .external_lex_state = 3}, + [3118] = {.lex_state = 36, .external_lex_state = 5}, + [3119] = {.lex_state = 26, .external_lex_state = 4}, [3120] = {.lex_state = 26, .external_lex_state = 3}, - [3121] = {.lex_state = 26, .external_lex_state = 4}, + [3121] = {.lex_state = 26, .external_lex_state = 3}, [3122] = {.lex_state = 26, .external_lex_state = 3}, - [3123] = {.lex_state = 26, .external_lex_state = 4}, + [3123] = {.lex_state = 36, .external_lex_state = 5}, [3124] = {.lex_state = 26, .external_lex_state = 4}, [3125] = {.lex_state = 26, .external_lex_state = 4}, - [3126] = {.lex_state = 36, .external_lex_state = 2}, - [3127] = {.lex_state = 26, .external_lex_state = 4}, - [3128] = {.lex_state = 26, .external_lex_state = 4}, + [3126] = {.lex_state = 26, .external_lex_state = 3}, + [3127] = {.lex_state = 26, .external_lex_state = 3}, + [3128] = {.lex_state = 26, .external_lex_state = 3}, [3129] = {.lex_state = 26, .external_lex_state = 3}, - [3130] = {.lex_state = 36, .external_lex_state = 5}, - [3131] = {.lex_state = 36, .external_lex_state = 5}, - [3132] = {.lex_state = 26, .external_lex_state = 4}, + [3130] = {.lex_state = 26, .external_lex_state = 3}, + [3131] = {.lex_state = 26, .external_lex_state = 4}, + [3132] = {.lex_state = 26, .external_lex_state = 3}, [3133] = {.lex_state = 26, .external_lex_state = 3}, [3134] = {.lex_state = 26, .external_lex_state = 3}, - [3135] = {.lex_state = 26, .external_lex_state = 3}, - [3136] = {.lex_state = 36, .external_lex_state = 5}, + [3135] = {.lex_state = 26, .external_lex_state = 4}, + [3136] = {.lex_state = 26, .external_lex_state = 3}, [3137] = {.lex_state = 26, .external_lex_state = 3}, [3138] = {.lex_state = 26, .external_lex_state = 3}, - [3139] = {.lex_state = 26, .external_lex_state = 3}, + [3139] = {.lex_state = 36, .external_lex_state = 5}, [3140] = {.lex_state = 26, .external_lex_state = 4}, - [3141] = {.lex_state = 36, .external_lex_state = 5}, - [3142] = {.lex_state = 36, .external_lex_state = 2}, - [3143] = {.lex_state = 26, .external_lex_state = 3}, - [3144] = {.lex_state = 26, .external_lex_state = 3}, - [3145] = {.lex_state = 26, .external_lex_state = 4}, - [3146] = {.lex_state = 36, .external_lex_state = 2}, - [3147] = {.lex_state = 36, .external_lex_state = 5}, - [3148] = {.lex_state = 26, .external_lex_state = 3}, + [3141] = {.lex_state = 26, .external_lex_state = 3}, + [3142] = {.lex_state = 27, .external_lex_state = 4}, + [3143] = {.lex_state = 26, .external_lex_state = 4}, + [3144] = {.lex_state = 26, .external_lex_state = 4}, + [3145] = {.lex_state = 36, .external_lex_state = 5}, + [3146] = {.lex_state = 36, .external_lex_state = 5}, + [3147] = {.lex_state = 26, .external_lex_state = 3}, + [3148] = {.lex_state = 36, .external_lex_state = 5}, [3149] = {.lex_state = 36, .external_lex_state = 5}, - [3150] = {.lex_state = 36, .external_lex_state = 5}, - [3151] = {.lex_state = 26, .external_lex_state = 3}, - [3152] = {.lex_state = 26, .external_lex_state = 4}, + [3150] = {.lex_state = 36, .external_lex_state = 2}, + [3151] = {.lex_state = 36, .external_lex_state = 5}, + [3152] = {.lex_state = 36, .external_lex_state = 2}, [3153] = {.lex_state = 26, .external_lex_state = 3}, - [3154] = {.lex_state = 26, .external_lex_state = 4}, - [3155] = {.lex_state = 36, .external_lex_state = 5}, + [3154] = {.lex_state = 36, .external_lex_state = 5}, + [3155] = {.lex_state = 24, .external_lex_state = 4}, [3156] = {.lex_state = 26, .external_lex_state = 4}, - [3157] = {.lex_state = 24, .external_lex_state = 4}, + [3157] = {.lex_state = 26, .external_lex_state = 4}, [3158] = {.lex_state = 26, .external_lex_state = 4}, - [3159] = {.lex_state = 36, .external_lex_state = 5}, - [3160] = {.lex_state = 36, .external_lex_state = 5}, - [3161] = {.lex_state = 36, .external_lex_state = 2}, - [3162] = {.lex_state = 36, .external_lex_state = 2}, + [3159] = {.lex_state = 26, .external_lex_state = 4}, + [3160] = {.lex_state = 26, .external_lex_state = 4}, + [3161] = {.lex_state = 26, .external_lex_state = 4}, + [3162] = {.lex_state = 26, .external_lex_state = 4}, [3163] = {.lex_state = 26, .external_lex_state = 4}, [3164] = {.lex_state = 26, .external_lex_state = 4}, - [3165] = {.lex_state = 36, .external_lex_state = 2}, + [3165] = {.lex_state = 26, .external_lex_state = 3}, [3166] = {.lex_state = 26, .external_lex_state = 4}, - [3167] = {.lex_state = 36, .external_lex_state = 5}, - [3168] = {.lex_state = 36, .external_lex_state = 5}, - [3169] = {.lex_state = 26, .external_lex_state = 4}, - [3170] = {.lex_state = 26, .external_lex_state = 4}, - [3171] = {.lex_state = 26, .external_lex_state = 4}, + [3167] = {.lex_state = 26, .external_lex_state = 4}, + [3168] = {.lex_state = 26, .external_lex_state = 3}, + [3169] = {.lex_state = 26, .external_lex_state = 3}, + [3170] = {.lex_state = 26, .external_lex_state = 3}, + [3171] = {.lex_state = 36, .external_lex_state = 5}, [3172] = {.lex_state = 26, .external_lex_state = 3}, - [3173] = {.lex_state = 26, .external_lex_state = 4}, - [3174] = {.lex_state = 36, .external_lex_state = 2}, - [3175] = {.lex_state = 26, .external_lex_state = 3}, + [3173] = {.lex_state = 36, .external_lex_state = 5}, + [3174] = {.lex_state = 26, .external_lex_state = 4}, + [3175] = {.lex_state = 26, .external_lex_state = 4}, [3176] = {.lex_state = 26, .external_lex_state = 4}, [3177] = {.lex_state = 26, .external_lex_state = 3}, - [3178] = {.lex_state = 26, .external_lex_state = 3}, + [3178] = {.lex_state = 26, .external_lex_state = 4}, [3179] = {.lex_state = 26, .external_lex_state = 4}, [3180] = {.lex_state = 26, .external_lex_state = 4}, - [3181] = {.lex_state = 36, .external_lex_state = 5}, + [3181] = {.lex_state = 26, .external_lex_state = 4}, [3182] = {.lex_state = 26, .external_lex_state = 3}, - [3183] = {.lex_state = 26, .external_lex_state = 3}, + [3183] = {.lex_state = 26, .external_lex_state = 4}, [3184] = {.lex_state = 26, .external_lex_state = 3}, - [3185] = {.lex_state = 26, .external_lex_state = 4}, + [3185] = {.lex_state = 26, .external_lex_state = 3}, [3186] = {.lex_state = 26, .external_lex_state = 4}, - [3187] = {.lex_state = 36, .external_lex_state = 5}, - [3188] = {.lex_state = 36, .external_lex_state = 5}, - [3189] = {.lex_state = 36, .external_lex_state = 5}, - [3190] = {.lex_state = 26, .external_lex_state = 4}, - [3191] = {.lex_state = 36, .external_lex_state = 5}, - [3192] = {.lex_state = 26, .external_lex_state = 4}, - [3193] = {.lex_state = 26, .external_lex_state = 3}, - [3194] = {.lex_state = 26, .external_lex_state = 3}, - [3195] = {.lex_state = 26, .external_lex_state = 3}, - [3196] = {.lex_state = 36, .external_lex_state = 5}, - [3197] = {.lex_state = 36, .external_lex_state = 5}, + [3187] = {.lex_state = 26, .external_lex_state = 3}, + [3188] = {.lex_state = 26, .external_lex_state = 4}, + [3189] = {.lex_state = 26, .external_lex_state = 3}, + [3190] = {.lex_state = 26, .external_lex_state = 3}, + [3191] = {.lex_state = 26, .external_lex_state = 3}, + [3192] = {.lex_state = 26, .external_lex_state = 3}, + [3193] = {.lex_state = 26, .external_lex_state = 4}, + [3194] = {.lex_state = 36, .external_lex_state = 5}, + [3195] = {.lex_state = 36, .external_lex_state = 5}, + [3196] = {.lex_state = 26, .external_lex_state = 4}, + [3197] = {.lex_state = 26, .external_lex_state = 4}, [3198] = {.lex_state = 26, .external_lex_state = 4}, [3199] = {.lex_state = 26, .external_lex_state = 4}, - [3200] = {.lex_state = 26, .external_lex_state = 3}, - [3201] = {.lex_state = 26, .external_lex_state = 3}, - [3202] = {.lex_state = 26, .external_lex_state = 4}, + [3200] = {.lex_state = 36, .external_lex_state = 2}, + [3201] = {.lex_state = 36, .external_lex_state = 2}, + [3202] = {.lex_state = 36, .external_lex_state = 5}, [3203] = {.lex_state = 26, .external_lex_state = 3}, - [3204] = {.lex_state = 26, .external_lex_state = 3}, - [3205] = {.lex_state = 26, .external_lex_state = 4}, - [3206] = {.lex_state = 36, .external_lex_state = 2}, - [3207] = {.lex_state = 36, .external_lex_state = 5}, + [3204] = {.lex_state = 36, .external_lex_state = 2}, + [3205] = {.lex_state = 36, .external_lex_state = 2}, + [3206] = {.lex_state = 26, .external_lex_state = 4}, + [3207] = {.lex_state = 26, .external_lex_state = 3}, [3208] = {.lex_state = 36, .external_lex_state = 5}, - [3209] = {.lex_state = 36, .external_lex_state = 2}, - [3210] = {.lex_state = 26, .external_lex_state = 4}, - [3211] = {.lex_state = 26, .external_lex_state = 4}, - [3212] = {.lex_state = 36, .external_lex_state = 5}, - [3213] = {.lex_state = 36, .external_lex_state = 5}, - [3214] = {.lex_state = 36, .external_lex_state = 5}, - [3215] = {.lex_state = 26, .external_lex_state = 4}, - [3216] = {.lex_state = 26, .external_lex_state = 4}, + [3209] = {.lex_state = 26, .external_lex_state = 3}, + [3210] = {.lex_state = 26, .external_lex_state = 3}, + [3211] = {.lex_state = 26, .external_lex_state = 3}, + [3212] = {.lex_state = 26, .external_lex_state = 3}, + [3213] = {.lex_state = 26, .external_lex_state = 4}, + [3214] = {.lex_state = 26, .external_lex_state = 3}, + [3215] = {.lex_state = 26, .external_lex_state = 3}, + [3216] = {.lex_state = 26, .external_lex_state = 3}, [3217] = {.lex_state = 26, .external_lex_state = 3}, - [3218] = {.lex_state = 26, .external_lex_state = 4}, - [3219] = {.lex_state = 26, .external_lex_state = 4}, + [3218] = {.lex_state = 26, .external_lex_state = 3}, + [3219] = {.lex_state = 26, .external_lex_state = 3}, [3220] = {.lex_state = 26, .external_lex_state = 3}, - [3221] = {.lex_state = 26, .external_lex_state = 4}, - [3222] = {.lex_state = 26, .external_lex_state = 4}, - [3223] = {.lex_state = 26, .external_lex_state = 3}, - [3224] = {.lex_state = 26, .external_lex_state = 3}, - [3225] = {.lex_state = 26, .external_lex_state = 3}, + [3221] = {.lex_state = 36, .external_lex_state = 5}, + [3222] = {.lex_state = 36, .external_lex_state = 5}, + [3223] = {.lex_state = 26, .external_lex_state = 4}, + [3224] = {.lex_state = 36, .external_lex_state = 5}, + [3225] = {.lex_state = 36, .external_lex_state = 5}, [3226] = {.lex_state = 26, .external_lex_state = 3}, - [3227] = {.lex_state = 26, .external_lex_state = 3}, - [3228] = {.lex_state = 26, .external_lex_state = 3}, - [3229] = {.lex_state = 26, .external_lex_state = 3}, - [3230] = {.lex_state = 36, .external_lex_state = 5}, + [3227] = {.lex_state = 36, .external_lex_state = 2}, + [3228] = {.lex_state = 36, .external_lex_state = 2}, + [3229] = {.lex_state = 36, .external_lex_state = 2}, + [3230] = {.lex_state = 36, .external_lex_state = 2}, [3231] = {.lex_state = 26, .external_lex_state = 3}, - [3232] = {.lex_state = 26, .external_lex_state = 3}, + [3232] = {.lex_state = 36, .external_lex_state = 5}, [3233] = {.lex_state = 26, .external_lex_state = 3}, - [3234] = {.lex_state = 26, .external_lex_state = 4}, - [3235] = {.lex_state = 26, .external_lex_state = 4}, + [3234] = {.lex_state = 26, .external_lex_state = 3}, + [3235] = {.lex_state = 26, .external_lex_state = 3}, [3236] = {.lex_state = 26, .external_lex_state = 4}, - [3237] = {.lex_state = 26, .external_lex_state = 4}, - [3238] = {.lex_state = 26, .external_lex_state = 4}, + [3237] = {.lex_state = 36, .external_lex_state = 5}, + [3238] = {.lex_state = 26, .external_lex_state = 3}, [3239] = {.lex_state = 26, .external_lex_state = 4}, [3240] = {.lex_state = 26, .external_lex_state = 4}, - [3241] = {.lex_state = 36, .external_lex_state = 5}, + [3241] = {.lex_state = 26, .external_lex_state = 3}, [3242] = {.lex_state = 36, .external_lex_state = 2}, - [3243] = {.lex_state = 26, .external_lex_state = 4}, + [3243] = {.lex_state = 26, .external_lex_state = 3}, [3244] = {.lex_state = 26, .external_lex_state = 3}, - [3245] = {.lex_state = 26, .external_lex_state = 3}, + [3245] = {.lex_state = 26, .external_lex_state = 4}, [3246] = {.lex_state = 26, .external_lex_state = 3}, - [3247] = {.lex_state = 26, .external_lex_state = 4}, - [3248] = {.lex_state = 26, .external_lex_state = 4}, - [3249] = {.lex_state = 26, .external_lex_state = 4}, - [3250] = {.lex_state = 26, .external_lex_state = 4}, - [3251] = {.lex_state = 26, .external_lex_state = 3}, - [3252] = {.lex_state = 26, .external_lex_state = 3}, - [3253] = {.lex_state = 26, .external_lex_state = 3}, + [3247] = {.lex_state = 26, .external_lex_state = 3}, + [3248] = {.lex_state = 26, .external_lex_state = 3}, + [3249] = {.lex_state = 36, .external_lex_state = 5}, + [3250] = {.lex_state = 26, .external_lex_state = 3}, + [3251] = {.lex_state = 36, .external_lex_state = 5}, + [3252] = {.lex_state = 26, .external_lex_state = 4}, + [3253] = {.lex_state = 36, .external_lex_state = 5}, [3254] = {.lex_state = 26, .external_lex_state = 3}, [3255] = {.lex_state = 26, .external_lex_state = 3}, - [3256] = {.lex_state = 26, .external_lex_state = 3}, - [3257] = {.lex_state = 26, .external_lex_state = 3}, - [3258] = {.lex_state = 26, .external_lex_state = 3}, - [3259] = {.lex_state = 26, .external_lex_state = 3}, + [3256] = {.lex_state = 36, .external_lex_state = 5}, + [3257] = {.lex_state = 36, .external_lex_state = 5}, + [3258] = {.lex_state = 36, .external_lex_state = 2}, + [3259] = {.lex_state = 26, .external_lex_state = 4}, [3260] = {.lex_state = 26, .external_lex_state = 4}, [3261] = {.lex_state = 26, .external_lex_state = 4}, - [3262] = {.lex_state = 26, .external_lex_state = 4}, - [3263] = {.lex_state = 26, .external_lex_state = 4}, - [3264] = {.lex_state = 26, .external_lex_state = 3}, + [3262] = {.lex_state = 36, .external_lex_state = 2}, + [3263] = {.lex_state = 26, .external_lex_state = 3}, + [3264] = {.lex_state = 26, .external_lex_state = 4}, [3265] = {.lex_state = 26, .external_lex_state = 4}, [3266] = {.lex_state = 36, .external_lex_state = 5}, - [3267] = {.lex_state = 36, .external_lex_state = 2}, - [3268] = {.lex_state = 26, .external_lex_state = 4}, - [3269] = {.lex_state = 36, .external_lex_state = 5}, + [3267] = {.lex_state = 26, .external_lex_state = 4}, + [3268] = {.lex_state = 26, .external_lex_state = 3}, + [3269] = {.lex_state = 26, .external_lex_state = 3}, [3270] = {.lex_state = 26, .external_lex_state = 3}, - [3271] = {.lex_state = 36, .external_lex_state = 2}, + [3271] = {.lex_state = 26, .external_lex_state = 3}, [3272] = {.lex_state = 26, .external_lex_state = 3}, - [3273] = {.lex_state = 26, .external_lex_state = 4}, + [3273] = {.lex_state = 26, .external_lex_state = 3}, [3274] = {.lex_state = 26, .external_lex_state = 3}, [3275] = {.lex_state = 26, .external_lex_state = 3}, [3276] = {.lex_state = 26, .external_lex_state = 3}, - [3277] = {.lex_state = 26, .external_lex_state = 3}, - [3278] = {.lex_state = 26, .external_lex_state = 3}, - [3279] = {.lex_state = 26, .external_lex_state = 3}, - [3280] = {.lex_state = 26, .external_lex_state = 4}, - [3281] = {.lex_state = 26, .external_lex_state = 4}, - [3282] = {.lex_state = 26, .external_lex_state = 4}, - [3283] = {.lex_state = 26, .external_lex_state = 3}, - [3284] = {.lex_state = 26, .external_lex_state = 3}, - [3285] = {.lex_state = 36, .external_lex_state = 2}, - [3286] = {.lex_state = 36, .external_lex_state = 5}, - [3287] = {.lex_state = 36, .external_lex_state = 2}, + [3277] = {.lex_state = 36, .external_lex_state = 5}, + [3278] = {.lex_state = 36, .external_lex_state = 5}, + [3279] = {.lex_state = 26, .external_lex_state = 4}, + [3280] = {.lex_state = 26, .external_lex_state = 3}, + [3281] = {.lex_state = 36, .external_lex_state = 5}, + [3282] = {.lex_state = 26, .external_lex_state = 3}, + [3283] = {.lex_state = 36, .external_lex_state = 5}, + [3284] = {.lex_state = 36, .external_lex_state = 2}, + [3285] = {.lex_state = 26, .external_lex_state = 3}, + [3286] = {.lex_state = 29, .external_lex_state = 3}, + [3287] = {.lex_state = 36, .external_lex_state = 5}, [3288] = {.lex_state = 36, .external_lex_state = 5}, - [3289] = {.lex_state = 36, .external_lex_state = 5}, + [3289] = {.lex_state = 26, .external_lex_state = 3}, [3290] = {.lex_state = 26, .external_lex_state = 3}, - [3291] = {.lex_state = 26, .external_lex_state = 4}, - [3292] = {.lex_state = 26, .external_lex_state = 3}, + [3291] = {.lex_state = 26, .external_lex_state = 3}, + [3292] = {.lex_state = 36, .external_lex_state = 5}, [3293] = {.lex_state = 26, .external_lex_state = 3}, - [3294] = {.lex_state = 36, .external_lex_state = 2}, + [3294] = {.lex_state = 26, .external_lex_state = 3}, [3295] = {.lex_state = 26, .external_lex_state = 3}, - [3296] = {.lex_state = 26, .external_lex_state = 3}, - [3297] = {.lex_state = 36, .external_lex_state = 5}, - [3298] = {.lex_state = 26, .external_lex_state = 4}, - [3299] = {.lex_state = 26, .external_lex_state = 3}, + [3296] = {.lex_state = 36, .external_lex_state = 5}, + [3297] = {.lex_state = 26, .external_lex_state = 3}, + [3298] = {.lex_state = 26, .external_lex_state = 3}, + [3299] = {.lex_state = 36, .external_lex_state = 5}, [3300] = {.lex_state = 36, .external_lex_state = 2}, - [3301] = {.lex_state = 36, .external_lex_state = 2}, + [3301] = {.lex_state = 26, .external_lex_state = 3}, [3302] = {.lex_state = 26, .external_lex_state = 3}, - [3303] = {.lex_state = 26, .external_lex_state = 3}, - [3304] = {.lex_state = 36, .external_lex_state = 5}, + [3303] = {.lex_state = 36, .external_lex_state = 5}, + [3304] = {.lex_state = 26, .external_lex_state = 3}, [3305] = {.lex_state = 26, .external_lex_state = 3}, [3306] = {.lex_state = 26, .external_lex_state = 3}, - [3307] = {.lex_state = 26, .external_lex_state = 3}, - [3308] = {.lex_state = 29, .external_lex_state = 3}, + [3307] = {.lex_state = 36, .external_lex_state = 5}, + [3308] = {.lex_state = 26, .external_lex_state = 3}, [3309] = {.lex_state = 26, .external_lex_state = 3}, [3310] = {.lex_state = 26, .external_lex_state = 3}, - [3311] = {.lex_state = 26, .external_lex_state = 3}, - [3312] = {.lex_state = 26, .external_lex_state = 3}, + [3311] = {.lex_state = 36, .external_lex_state = 2}, + [3312] = {.lex_state = 36, .external_lex_state = 5}, [3313] = {.lex_state = 26, .external_lex_state = 3}, - [3314] = {.lex_state = 26, .external_lex_state = 3}, + [3314] = {.lex_state = 36, .external_lex_state = 2}, [3315] = {.lex_state = 26, .external_lex_state = 3}, - [3316] = {.lex_state = 26, .external_lex_state = 3}, + [3316] = {.lex_state = 36, .external_lex_state = 2}, [3317] = {.lex_state = 36, .external_lex_state = 5}, - [3318] = {.lex_state = 36, .external_lex_state = 5}, + [3318] = {.lex_state = 26, .external_lex_state = 3}, [3319] = {.lex_state = 26, .external_lex_state = 3}, [3320] = {.lex_state = 26, .external_lex_state = 3}, - [3321] = {.lex_state = 26, .external_lex_state = 4}, - [3322] = {.lex_state = 26, .external_lex_state = 3}, + [3321] = {.lex_state = 26, .external_lex_state = 3}, + [3322] = {.lex_state = 36, .external_lex_state = 5}, [3323] = {.lex_state = 26, .external_lex_state = 3}, [3324] = {.lex_state = 26, .external_lex_state = 3}, - [3325] = {.lex_state = 26, .external_lex_state = 3}, + [3325] = {.lex_state = 26, .external_lex_state = 4}, [3326] = {.lex_state = 26, .external_lex_state = 3}, - [3327] = {.lex_state = 26, .external_lex_state = 3}, - [3328] = {.lex_state = 36, .external_lex_state = 2}, + [3327] = {.lex_state = 36, .external_lex_state = 5}, + [3328] = {.lex_state = 26, .external_lex_state = 3}, [3329] = {.lex_state = 36, .external_lex_state = 5}, - [3330] = {.lex_state = 36, .external_lex_state = 5}, + [3330] = {.lex_state = 36, .external_lex_state = 2}, [3331] = {.lex_state = 36, .external_lex_state = 5}, - [3332] = {.lex_state = 26, .external_lex_state = 3}, + [3332] = {.lex_state = 26, .external_lex_state = 4}, [3333] = {.lex_state = 26, .external_lex_state = 3}, - [3334] = {.lex_state = 36, .external_lex_state = 5}, - [3335] = {.lex_state = 26, .external_lex_state = 3}, - [3336] = {.lex_state = 36, .external_lex_state = 2}, - [3337] = {.lex_state = 36, .external_lex_state = 5}, - [3338] = {.lex_state = 36, .external_lex_state = 5}, - [3339] = {.lex_state = 26, .external_lex_state = 3}, - [3340] = {.lex_state = 36, .external_lex_state = 2}, - [3341] = {.lex_state = 26, .external_lex_state = 3}, - [3342] = {.lex_state = 36, .external_lex_state = 5}, + [3334] = {.lex_state = 26, .external_lex_state = 3}, + [3335] = {.lex_state = 36, .external_lex_state = 5}, + [3336] = {.lex_state = 26, .external_lex_state = 3}, + [3337] = {.lex_state = 26, .external_lex_state = 3}, + [3338] = {.lex_state = 36, .external_lex_state = 2}, + [3339] = {.lex_state = 36, .external_lex_state = 2}, + [3340] = {.lex_state = 36, .external_lex_state = 5}, + [3341] = {.lex_state = 36, .external_lex_state = 5}, + [3342] = {.lex_state = 26, .external_lex_state = 3}, [3343] = {.lex_state = 26, .external_lex_state = 3}, [3344] = {.lex_state = 26, .external_lex_state = 3}, [3345] = {.lex_state = 26, .external_lex_state = 3}, - [3346] = {.lex_state = 26, .external_lex_state = 3}, + [3346] = {.lex_state = 26, .external_lex_state = 4}, [3347] = {.lex_state = 36, .external_lex_state = 5}, [3348] = {.lex_state = 36, .external_lex_state = 5}, - [3349] = {.lex_state = 26, .external_lex_state = 3}, + [3349] = {.lex_state = 36, .external_lex_state = 5}, [3350] = {.lex_state = 26, .external_lex_state = 3}, - [3351] = {.lex_state = 26, .external_lex_state = 3}, + [3351] = {.lex_state = 36, .external_lex_state = 5}, [3352] = {.lex_state = 26, .external_lex_state = 3}, [3353] = {.lex_state = 36, .external_lex_state = 5}, - [3354] = {.lex_state = 36, .external_lex_state = 5}, - [3355] = {.lex_state = 36, .external_lex_state = 5}, + [3354] = {.lex_state = 26, .external_lex_state = 3}, + [3355] = {.lex_state = 26, .external_lex_state = 3}, [3356] = {.lex_state = 26, .external_lex_state = 3}, - [3357] = {.lex_state = 36, .external_lex_state = 5}, - [3358] = {.lex_state = 26, .external_lex_state = 3}, - [3359] = {.lex_state = 36, .external_lex_state = 2}, - [3360] = {.lex_state = 36, .external_lex_state = 5}, - [3361] = {.lex_state = 36, .external_lex_state = 5}, - [3362] = {.lex_state = 36, .external_lex_state = 5}, + [3357] = {.lex_state = 26, .external_lex_state = 3}, + [3358] = {.lex_state = 36, .external_lex_state = 5}, + [3359] = {.lex_state = 26, .external_lex_state = 4}, + [3360] = {.lex_state = 26, .external_lex_state = 3}, + [3361] = {.lex_state = 36, .external_lex_state = 2}, + [3362] = {.lex_state = 26, .external_lex_state = 3}, [3363] = {.lex_state = 26, .external_lex_state = 3}, - [3364] = {.lex_state = 36, .external_lex_state = 5}, - [3365] = {.lex_state = 26, .external_lex_state = 3}, - [3366] = {.lex_state = 36, .external_lex_state = 2}, - [3367] = {.lex_state = 26, .external_lex_state = 3}, + [3364] = {.lex_state = 26, .external_lex_state = 3}, + [3365] = {.lex_state = 36, .external_lex_state = 5}, + [3366] = {.lex_state = 26, .external_lex_state = 3}, + [3367] = {.lex_state = 36, .external_lex_state = 5}, [3368] = {.lex_state = 26, .external_lex_state = 3}, - [3369] = {.lex_state = 26, .external_lex_state = 3}, + [3369] = {.lex_state = 36, .external_lex_state = 2}, [3370] = {.lex_state = 36, .external_lex_state = 5}, [3371] = {.lex_state = 26, .external_lex_state = 3}, - [3372] = {.lex_state = 26, .external_lex_state = 3}, + [3372] = {.lex_state = 36, .external_lex_state = 5}, [3373] = {.lex_state = 36, .external_lex_state = 5}, - [3374] = {.lex_state = 35, .external_lex_state = 5}, - [3375] = {.lex_state = 36, .external_lex_state = 5}, - [3376] = {.lex_state = 36, .external_lex_state = 5}, + [3374] = {.lex_state = 36, .external_lex_state = 5}, + [3375] = {.lex_state = 26, .external_lex_state = 3}, + [3376] = {.lex_state = 26, .external_lex_state = 3}, [3377] = {.lex_state = 35, .external_lex_state = 5}, [3378] = {.lex_state = 35, .external_lex_state = 5}, - [3379] = {.lex_state = 36, .external_lex_state = 5}, - [3380] = {.lex_state = 36, .external_lex_state = 2}, - [3381] = {.lex_state = 36, .external_lex_state = 5}, - [3382] = {.lex_state = 36, .external_lex_state = 2}, + [3379] = {.lex_state = 26, .external_lex_state = 3}, + [3380] = {.lex_state = 26, .external_lex_state = 3}, + [3381] = {.lex_state = 26, .external_lex_state = 3}, + [3382] = {.lex_state = 26, .external_lex_state = 3}, [3383] = {.lex_state = 26, .external_lex_state = 3}, - [3384] = {.lex_state = 36, .external_lex_state = 5}, - [3385] = {.lex_state = 26, .external_lex_state = 4}, - [3386] = {.lex_state = 35, .external_lex_state = 5}, - [3387] = {.lex_state = 35, .external_lex_state = 2}, - [3388] = {.lex_state = 26, .external_lex_state = 3}, - [3389] = {.lex_state = 35, .external_lex_state = 5}, - [3390] = {.lex_state = 36, .external_lex_state = 2}, + [3384] = {.lex_state = 26, .external_lex_state = 3}, + [3385] = {.lex_state = 36, .external_lex_state = 2}, + [3386] = {.lex_state = 26, .external_lex_state = 3}, + [3387] = {.lex_state = 36, .external_lex_state = 2}, + [3388] = {.lex_state = 35, .external_lex_state = 5}, + [3389] = {.lex_state = 26, .external_lex_state = 3}, + [3390] = {.lex_state = 36, .external_lex_state = 5}, [3391] = {.lex_state = 26, .external_lex_state = 3}, - [3392] = {.lex_state = 26, .external_lex_state = 3}, + [3392] = {.lex_state = 35, .external_lex_state = 2}, [3393] = {.lex_state = 26, .external_lex_state = 3}, - [3394] = {.lex_state = 26, .external_lex_state = 4}, - [3395] = {.lex_state = 26, .external_lex_state = 3}, - [3396] = {.lex_state = 26, .external_lex_state = 3}, + [3394] = {.lex_state = 26, .external_lex_state = 3}, + [3395] = {.lex_state = 36, .external_lex_state = 2}, + [3396] = {.lex_state = 36, .external_lex_state = 2}, [3397] = {.lex_state = 26, .external_lex_state = 3}, - [3398] = {.lex_state = 26, .external_lex_state = 3}, + [3398] = {.lex_state = 36, .external_lex_state = 2}, [3399] = {.lex_state = 26, .external_lex_state = 3}, - [3400] = {.lex_state = 26, .external_lex_state = 3}, - [3401] = {.lex_state = 36, .external_lex_state = 2}, - [3402] = {.lex_state = 26, .external_lex_state = 3}, - [3403] = {.lex_state = 26, .external_lex_state = 3}, - [3404] = {.lex_state = 26, .external_lex_state = 3}, - [3405] = {.lex_state = 36, .external_lex_state = 2}, - [3406] = {.lex_state = 35, .external_lex_state = 5}, - [3407] = {.lex_state = 26, .external_lex_state = 3}, - [3408] = {.lex_state = 36, .external_lex_state = 2}, + [3400] = {.lex_state = 35, .external_lex_state = 5}, + [3401] = {.lex_state = 26, .external_lex_state = 3}, + [3402] = {.lex_state = 35, .external_lex_state = 5}, + [3403] = {.lex_state = 26, .external_lex_state = 4}, + [3404] = {.lex_state = 36, .external_lex_state = 5}, + [3405] = {.lex_state = 36, .external_lex_state = 5}, + [3406] = {.lex_state = 26, .external_lex_state = 3}, + [3407] = {.lex_state = 26, .external_lex_state = 4}, + [3408] = {.lex_state = 35, .external_lex_state = 5}, [3409] = {.lex_state = 36, .external_lex_state = 5}, - [3410] = {.lex_state = 36, .external_lex_state = 2}, - [3411] = {.lex_state = 36, .external_lex_state = 2}, + [3410] = {.lex_state = 26, .external_lex_state = 3}, + [3411] = {.lex_state = 36, .external_lex_state = 5}, [3412] = {.lex_state = 36, .external_lex_state = 5}, - [3413] = {.lex_state = 36, .external_lex_state = 2}, + [3413] = {.lex_state = 36, .external_lex_state = 5}, [3414] = {.lex_state = 36, .external_lex_state = 2}, - [3415] = {.lex_state = 36, .external_lex_state = 5}, - [3416] = {.lex_state = 36, .external_lex_state = 5}, + [3415] = {.lex_state = 36, .external_lex_state = 2}, + [3416] = {.lex_state = 26, .external_lex_state = 3}, [3417] = {.lex_state = 36, .external_lex_state = 2}, - [3418] = {.lex_state = 26, .external_lex_state = 3}, + [3418] = {.lex_state = 36, .external_lex_state = 2}, [3419] = {.lex_state = 36, .external_lex_state = 2}, - [3420] = {.lex_state = 36, .external_lex_state = 5}, - [3421] = {.lex_state = 26, .external_lex_state = 3}, - [3422] = {.lex_state = 36, .external_lex_state = 2}, - [3423] = {.lex_state = 36, .external_lex_state = 2}, - [3424] = {.lex_state = 36, .external_lex_state = 2}, - [3425] = {.lex_state = 36, .external_lex_state = 2}, + [3420] = {.lex_state = 36, .external_lex_state = 2}, + [3421] = {.lex_state = 36, .external_lex_state = 2}, + [3422] = {.lex_state = 36, .external_lex_state = 5}, + [3423] = {.lex_state = 36, .external_lex_state = 5}, + [3424] = {.lex_state = 27, .external_lex_state = 3}, + [3425] = {.lex_state = 36, .external_lex_state = 5}, [3426] = {.lex_state = 26, .external_lex_state = 3}, [3427] = {.lex_state = 36, .external_lex_state = 2}, [3428] = {.lex_state = 36, .external_lex_state = 2}, [3429] = {.lex_state = 36, .external_lex_state = 2}, - [3430] = {.lex_state = 26, .external_lex_state = 3}, - [3431] = {.lex_state = 36, .external_lex_state = 2}, - [3432] = {.lex_state = 36, .external_lex_state = 2}, - [3433] = {.lex_state = 26, .external_lex_state = 3}, - [3434] = {.lex_state = 36, .external_lex_state = 5}, + [3430] = {.lex_state = 36, .external_lex_state = 2}, + [3431] = {.lex_state = 36, .external_lex_state = 5}, + [3432] = {.lex_state = 36, .external_lex_state = 5}, + [3433] = {.lex_state = 36, .external_lex_state = 5}, + [3434] = {.lex_state = 36, .external_lex_state = 2}, [3435] = {.lex_state = 26, .external_lex_state = 3}, [3436] = {.lex_state = 36, .external_lex_state = 5}, - [3437] = {.lex_state = 36, .external_lex_state = 5}, - [3438] = {.lex_state = 36, .external_lex_state = 5}, - [3439] = {.lex_state = 27, .external_lex_state = 3}, - [3440] = {.lex_state = 36, .external_lex_state = 5}, + [3437] = {.lex_state = 26, .external_lex_state = 3}, + [3438] = {.lex_state = 36, .external_lex_state = 2}, + [3439] = {.lex_state = 26, .external_lex_state = 3}, + [3440] = {.lex_state = 26, .external_lex_state = 3}, [3441] = {.lex_state = 36, .external_lex_state = 5}, - [3442] = {.lex_state = 36, .external_lex_state = 2}, - [3443] = {.lex_state = 36, .external_lex_state = 5}, - [3444] = {.lex_state = 36, .external_lex_state = 5}, - [3445] = {.lex_state = 26, .external_lex_state = 3}, + [3442] = {.lex_state = 26, .external_lex_state = 3}, + [3443] = {.lex_state = 36, .external_lex_state = 2}, + [3444] = {.lex_state = 36, .external_lex_state = 2}, + [3445] = {.lex_state = 36, .external_lex_state = 5}, [3446] = {.lex_state = 36, .external_lex_state = 5}, - [3447] = {.lex_state = 36, .external_lex_state = 5}, - [3448] = {.lex_state = 36, .external_lex_state = 5}, + [3447] = {.lex_state = 36, .external_lex_state = 2}, + [3448] = {.lex_state = 36, .external_lex_state = 2}, [3449] = {.lex_state = 36, .external_lex_state = 5}, - [3450] = {.lex_state = 36, .external_lex_state = 2}, - [3451] = {.lex_state = 36, .external_lex_state = 2}, - [3452] = {.lex_state = 26, .external_lex_state = 3}, + [3450] = {.lex_state = 36, .external_lex_state = 5}, + [3451] = {.lex_state = 36, .external_lex_state = 5}, + [3452] = {.lex_state = 36, .external_lex_state = 2}, [3453] = {.lex_state = 26, .external_lex_state = 3}, [3454] = {.lex_state = 26, .external_lex_state = 3}, [3455] = {.lex_state = 26, .external_lex_state = 3}, [3456] = {.lex_state = 26, .external_lex_state = 3}, [3457] = {.lex_state = 26, .external_lex_state = 3}, [3458] = {.lex_state = 26, .external_lex_state = 3}, - [3459] = {.lex_state = 26, .external_lex_state = 3}, + [3459] = {.lex_state = 36, .external_lex_state = 2}, [3460] = {.lex_state = 26, .external_lex_state = 3}, [3461] = {.lex_state = 26, .external_lex_state = 3}, - [3462] = {.lex_state = 35, .external_lex_state = 5}, - [3463] = {.lex_state = 35, .external_lex_state = 5}, - [3464] = {.lex_state = 35, .external_lex_state = 5}, + [3462] = {.lex_state = 26, .external_lex_state = 3}, + [3463] = {.lex_state = 26, .external_lex_state = 3}, + [3464] = {.lex_state = 36, .external_lex_state = 2}, [3465] = {.lex_state = 35, .external_lex_state = 5}, [3466] = {.lex_state = 35, .external_lex_state = 5}, [3467] = {.lex_state = 35, .external_lex_state = 5}, @@ -23740,14 +23804,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3471] = {.lex_state = 35, .external_lex_state = 5}, [3472] = {.lex_state = 35, .external_lex_state = 5}, [3473] = {.lex_state = 35, .external_lex_state = 5}, - [3474] = {.lex_state = 35, .external_lex_state = 5}, + [3474] = {.lex_state = 35, .external_lex_state = 2}, [3475] = {.lex_state = 35, .external_lex_state = 5}, [3476] = {.lex_state = 35, .external_lex_state = 5}, [3477] = {.lex_state = 35, .external_lex_state = 5}, [3478] = {.lex_state = 35, .external_lex_state = 5}, [3479] = {.lex_state = 35, .external_lex_state = 5}, [3480] = {.lex_state = 35, .external_lex_state = 5}, - [3481] = {.lex_state = 35, .external_lex_state = 2}, + [3481] = {.lex_state = 35, .external_lex_state = 5}, [3482] = {.lex_state = 35, .external_lex_state = 5}, [3483] = {.lex_state = 35, .external_lex_state = 5}, [3484] = {.lex_state = 35, .external_lex_state = 5}, @@ -23755,9 +23819,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3486] = {.lex_state = 35, .external_lex_state = 5}, [3487] = {.lex_state = 35, .external_lex_state = 5}, [3488] = {.lex_state = 35, .external_lex_state = 5}, - [3489] = {.lex_state = 35, .external_lex_state = 5}, + [3489] = {.lex_state = 36, .external_lex_state = 2}, [3490] = {.lex_state = 35, .external_lex_state = 5}, - [3491] = {.lex_state = 36, .external_lex_state = 2}, + [3491] = {.lex_state = 35, .external_lex_state = 5}, [3492] = {.lex_state = 35, .external_lex_state = 5}, [3493] = {.lex_state = 36, .external_lex_state = 2}, [3494] = {.lex_state = 35, .external_lex_state = 5}, @@ -23768,34 +23832,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3499] = {.lex_state = 35, .external_lex_state = 5}, [3500] = {.lex_state = 35, .external_lex_state = 5}, [3501] = {.lex_state = 35, .external_lex_state = 5}, - [3502] = {.lex_state = 36, .external_lex_state = 2}, + [3502] = {.lex_state = 35, .external_lex_state = 5}, [3503] = {.lex_state = 35, .external_lex_state = 5}, [3504] = {.lex_state = 35, .external_lex_state = 5}, - [3505] = {.lex_state = 35, .external_lex_state = 5}, - [3506] = {.lex_state = 35, .external_lex_state = 5}, + [3505] = {.lex_state = 36, .external_lex_state = 2}, + [3506] = {.lex_state = 36, .external_lex_state = 2}, [3507] = {.lex_state = 35, .external_lex_state = 5}, [3508] = {.lex_state = 35, .external_lex_state = 5}, [3509] = {.lex_state = 35, .external_lex_state = 5}, - [3510] = {.lex_state = 36, .external_lex_state = 2}, + [3510] = {.lex_state = 35, .external_lex_state = 5}, [3511] = {.lex_state = 35, .external_lex_state = 5}, [3512] = {.lex_state = 35, .external_lex_state = 5}, - [3513] = {.lex_state = 36, .external_lex_state = 2}, + [3513] = {.lex_state = 35, .external_lex_state = 5}, [3514] = {.lex_state = 35, .external_lex_state = 5}, [3515] = {.lex_state = 35, .external_lex_state = 5}, [3516] = {.lex_state = 35, .external_lex_state = 5}, [3517] = {.lex_state = 35, .external_lex_state = 5}, [3518] = {.lex_state = 35, .external_lex_state = 5}, [3519] = {.lex_state = 35, .external_lex_state = 5}, - [3520] = {.lex_state = 36, .external_lex_state = 2}, - [3521] = {.lex_state = 36, .external_lex_state = 2}, + [3520] = {.lex_state = 35, .external_lex_state = 5}, + [3521] = {.lex_state = 35, .external_lex_state = 5}, [3522] = {.lex_state = 36, .external_lex_state = 2}, [3523] = {.lex_state = 35, .external_lex_state = 2}, [3524] = {.lex_state = 35, .external_lex_state = 2}, - [3525] = {.lex_state = 35, .external_lex_state = 2}, - [3526] = {.lex_state = 35, .external_lex_state = 2}, - [3527] = {.lex_state = 36, .external_lex_state = 2}, + [3525] = {.lex_state = 36, .external_lex_state = 2}, + [3526] = {.lex_state = 36, .external_lex_state = 2}, + [3527] = {.lex_state = 35, .external_lex_state = 2}, [3528] = {.lex_state = 35, .external_lex_state = 2}, - [3529] = {.lex_state = 36, .external_lex_state = 2}, + [3529] = {.lex_state = 35, .external_lex_state = 2}, [3530] = {.lex_state = 36, .external_lex_state = 2}, [3531] = {.lex_state = 35, .external_lex_state = 2}, [3532] = {.lex_state = 36, .external_lex_state = 2}, @@ -23803,10 +23867,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3534] = {.lex_state = 36, .external_lex_state = 2}, [3535] = {.lex_state = 36, .external_lex_state = 2}, [3536] = {.lex_state = 35, .external_lex_state = 2}, - [3537] = {.lex_state = 35, .external_lex_state = 2}, + [3537] = {.lex_state = 36, .external_lex_state = 2}, [3538] = {.lex_state = 36, .external_lex_state = 2}, - [3539] = {.lex_state = 36, .external_lex_state = 2}, - [3540] = {.lex_state = 35, .external_lex_state = 2}, + [3539] = {.lex_state = 35, .external_lex_state = 2}, + [3540] = {.lex_state = 36, .external_lex_state = 2}, [3541] = {.lex_state = 36, .external_lex_state = 2}, [3542] = {.lex_state = 36, .external_lex_state = 2}, [3543] = {.lex_state = 36, .external_lex_state = 2}, @@ -23823,11 +23887,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3554] = {.lex_state = 36, .external_lex_state = 2}, [3555] = {.lex_state = 36, .external_lex_state = 2}, [3556] = {.lex_state = 36, .external_lex_state = 2}, - [3557] = {.lex_state = 36, .external_lex_state = 2}, - [3558] = {.lex_state = 35, .external_lex_state = 2}, + [3557] = {.lex_state = 35, .external_lex_state = 2}, + [3558] = {.lex_state = 36, .external_lex_state = 2}, [3559] = {.lex_state = 36, .external_lex_state = 2}, [3560] = {.lex_state = 36, .external_lex_state = 2}, - [3561] = {.lex_state = 36, .external_lex_state = 2}, + [3561] = {.lex_state = 35, .external_lex_state = 2}, [3562] = {.lex_state = 36, .external_lex_state = 2}, [3563] = {.lex_state = 36, .external_lex_state = 2}, [3564] = {.lex_state = 36, .external_lex_state = 2}, @@ -23836,52 +23900,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3567] = {.lex_state = 36, .external_lex_state = 2}, [3568] = {.lex_state = 36, .external_lex_state = 2}, [3569] = {.lex_state = 36, .external_lex_state = 2}, - [3570] = {.lex_state = 349, .external_lex_state = 2}, - [3571] = {.lex_state = 349, .external_lex_state = 2}, + [3570] = {.lex_state = 36, .external_lex_state = 2}, + [3571] = {.lex_state = 36, .external_lex_state = 2}, [3572] = {.lex_state = 36, .external_lex_state = 2}, - [3573] = {.lex_state = 349, .external_lex_state = 2}, - [3574] = {.lex_state = 349, .external_lex_state = 2}, + [3573] = {.lex_state = 36, .external_lex_state = 2}, + [3574] = {.lex_state = 36, .external_lex_state = 2}, [3575] = {.lex_state = 35, .external_lex_state = 2}, [3576] = {.lex_state = 36, .external_lex_state = 2}, - [3577] = {.lex_state = 349, .external_lex_state = 2}, - [3578] = {.lex_state = 36, .external_lex_state = 2}, - [3579] = {.lex_state = 35, .external_lex_state = 2}, + [3577] = {.lex_state = 36, .external_lex_state = 2}, + [3578] = {.lex_state = 349, .external_lex_state = 2}, + [3579] = {.lex_state = 36, .external_lex_state = 2}, [3580] = {.lex_state = 36, .external_lex_state = 2}, [3581] = {.lex_state = 36, .external_lex_state = 2}, - [3582] = {.lex_state = 36, .external_lex_state = 2}, + [3582] = {.lex_state = 349, .external_lex_state = 2}, [3583] = {.lex_state = 36, .external_lex_state = 2}, - [3584] = {.lex_state = 36, .external_lex_state = 2}, + [3584] = {.lex_state = 349, .external_lex_state = 2}, [3585] = {.lex_state = 36, .external_lex_state = 2}, - [3586] = {.lex_state = 349, .external_lex_state = 2}, - [3587] = {.lex_state = 36, .external_lex_state = 2}, - [3588] = {.lex_state = 35, .external_lex_state = 2}, + [3586] = {.lex_state = 36, .external_lex_state = 2}, + [3587] = {.lex_state = 349, .external_lex_state = 2}, + [3588] = {.lex_state = 36, .external_lex_state = 2}, [3589] = {.lex_state = 36, .external_lex_state = 2}, - [3590] = {.lex_state = 349, .external_lex_state = 2}, - [3591] = {.lex_state = 36, .external_lex_state = 2}, - [3592] = {.lex_state = 36, .external_lex_state = 2}, - [3593] = {.lex_state = 36, .external_lex_state = 2}, - [3594] = {.lex_state = 36, .external_lex_state = 2}, + [3590] = {.lex_state = 36, .external_lex_state = 2}, + [3591] = {.lex_state = 35, .external_lex_state = 2}, + [3592] = {.lex_state = 349, .external_lex_state = 2}, + [3593] = {.lex_state = 349, .external_lex_state = 2}, + [3594] = {.lex_state = 349, .external_lex_state = 2}, [3595] = {.lex_state = 36, .external_lex_state = 2}, - [3596] = {.lex_state = 349, .external_lex_state = 2}, + [3596] = {.lex_state = 36, .external_lex_state = 2}, [3597] = {.lex_state = 36, .external_lex_state = 2}, - [3598] = {.lex_state = 349, .external_lex_state = 2}, - [3599] = {.lex_state = 36, .external_lex_state = 2}, + [3598] = {.lex_state = 36, .external_lex_state = 2}, + [3599] = {.lex_state = 349, .external_lex_state = 2}, [3600] = {.lex_state = 36, .external_lex_state = 2}, - [3601] = {.lex_state = 36, .external_lex_state = 2}, + [3601] = {.lex_state = 349, .external_lex_state = 2}, [3602] = {.lex_state = 36, .external_lex_state = 2}, - [3603] = {.lex_state = 349, .external_lex_state = 2}, + [3603] = {.lex_state = 36, .external_lex_state = 2}, [3604] = {.lex_state = 36, .external_lex_state = 2}, [3605] = {.lex_state = 36, .external_lex_state = 2}, [3606] = {.lex_state = 36, .external_lex_state = 2}, [3607] = {.lex_state = 36, .external_lex_state = 2}, - [3608] = {.lex_state = 36, .external_lex_state = 2}, - [3609] = {.lex_state = 36, .external_lex_state = 2}, - [3610] = {.lex_state = 36, .external_lex_state = 2}, - [3611] = {.lex_state = 349, .external_lex_state = 2}, + [3608] = {.lex_state = 349, .external_lex_state = 2}, + [3609] = {.lex_state = 349, .external_lex_state = 2}, + [3610] = {.lex_state = 349, .external_lex_state = 2}, + [3611] = {.lex_state = 35, .external_lex_state = 2}, [3612] = {.lex_state = 36, .external_lex_state = 2}, [3613] = {.lex_state = 36, .external_lex_state = 2}, [3614] = {.lex_state = 36, .external_lex_state = 2}, - [3615] = {.lex_state = 349, .external_lex_state = 2}, + [3615] = {.lex_state = 36, .external_lex_state = 2}, [3616] = {.lex_state = 36, .external_lex_state = 2}, [3617] = {.lex_state = 36, .external_lex_state = 2}, [3618] = {.lex_state = 36, .external_lex_state = 2}, @@ -23906,7 +23970,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3637] = {.lex_state = 36, .external_lex_state = 2}, [3638] = {.lex_state = 36, .external_lex_state = 2}, [3639] = {.lex_state = 36, .external_lex_state = 2}, - [3640] = {.lex_state = 35, .external_lex_state = 2}, + [3640] = {.lex_state = 36, .external_lex_state = 2}, [3641] = {.lex_state = 36, .external_lex_state = 2}, [3642] = {.lex_state = 36, .external_lex_state = 2}, [3643] = {.lex_state = 36, .external_lex_state = 2}, @@ -23915,10 +23979,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3646] = {.lex_state = 36, .external_lex_state = 2}, [3647] = {.lex_state = 36, .external_lex_state = 2}, [3648] = {.lex_state = 36, .external_lex_state = 2}, - [3649] = {.lex_state = 36, .external_lex_state = 2}, - [3650] = {.lex_state = 36, .external_lex_state = 2}, + [3649] = {.lex_state = 35, .external_lex_state = 2}, + [3650] = {.lex_state = 35, .external_lex_state = 2}, [3651] = {.lex_state = 36, .external_lex_state = 2}, - [3652] = {.lex_state = 36, .external_lex_state = 2}, + [3652] = {.lex_state = 35, .external_lex_state = 2}, [3653] = {.lex_state = 36, .external_lex_state = 2}, [3654] = {.lex_state = 36, .external_lex_state = 2}, [3655] = {.lex_state = 36, .external_lex_state = 2}, @@ -23929,23 +23993,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3660] = {.lex_state = 36, .external_lex_state = 2}, [3661] = {.lex_state = 36, .external_lex_state = 2}, [3662] = {.lex_state = 36, .external_lex_state = 2}, - [3663] = {.lex_state = 35, .external_lex_state = 2}, + [3663] = {.lex_state = 36, .external_lex_state = 2}, [3664] = {.lex_state = 36, .external_lex_state = 2}, [3665] = {.lex_state = 36, .external_lex_state = 2}, [3666] = {.lex_state = 36, .external_lex_state = 2}, - [3667] = {.lex_state = 35, .external_lex_state = 2}, + [3667] = {.lex_state = 36, .external_lex_state = 2}, [3668] = {.lex_state = 36, .external_lex_state = 2}, - [3669] = {.lex_state = 35, .external_lex_state = 2}, + [3669] = {.lex_state = 36, .external_lex_state = 2}, [3670] = {.lex_state = 36, .external_lex_state = 2}, [3671] = {.lex_state = 36, .external_lex_state = 2}, [3672] = {.lex_state = 36, .external_lex_state = 2}, [3673] = {.lex_state = 36, .external_lex_state = 2}, - [3674] = {.lex_state = 35, .external_lex_state = 2}, - [3675] = {.lex_state = 36, .external_lex_state = 2}, + [3674] = {.lex_state = 36, .external_lex_state = 2}, + [3675] = {.lex_state = 35, .external_lex_state = 2}, [3676] = {.lex_state = 36, .external_lex_state = 2}, - [3677] = {.lex_state = 36, .external_lex_state = 2}, + [3677] = {.lex_state = 35, .external_lex_state = 2}, [3678] = {.lex_state = 35, .external_lex_state = 2}, - [3679] = {.lex_state = 35, .external_lex_state = 2}, + [3679] = {.lex_state = 36, .external_lex_state = 2}, [3680] = {.lex_state = 36, .external_lex_state = 2}, [3681] = {.lex_state = 36, .external_lex_state = 2}, [3682] = {.lex_state = 36, .external_lex_state = 2}, @@ -23965,19 +24029,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3696] = {.lex_state = 36, .external_lex_state = 2}, [3697] = {.lex_state = 36, .external_lex_state = 2}, [3698] = {.lex_state = 36, .external_lex_state = 2}, - [3699] = {.lex_state = 36, .external_lex_state = 2}, - [3700] = {.lex_state = 72, .external_lex_state = 2}, - [3701] = {.lex_state = 46, .external_lex_state = 2}, - [3702] = {.lex_state = 46, .external_lex_state = 2}, + [3699] = {.lex_state = 35, .external_lex_state = 2}, + [3700] = {.lex_state = 36, .external_lex_state = 2}, + [3701] = {.lex_state = 36, .external_lex_state = 2}, + [3702] = {.lex_state = 72, .external_lex_state = 2}, [3703] = {.lex_state = 46, .external_lex_state = 2}, [3704] = {.lex_state = 46, .external_lex_state = 2}, [3705] = {.lex_state = 46, .external_lex_state = 2}, [3706] = {.lex_state = 46, .external_lex_state = 2}, - [3707] = {.lex_state = 55, .external_lex_state = 2}, - [3708] = {.lex_state = 55, .external_lex_state = 2}, - [3709] = {.lex_state = 46, .external_lex_state = 2}, + [3707] = {.lex_state = 46, .external_lex_state = 2}, + [3708] = {.lex_state = 46, .external_lex_state = 2}, + [3709] = {.lex_state = 55, .external_lex_state = 2}, [3710] = {.lex_state = 55, .external_lex_state = 2}, - [3711] = {.lex_state = 46, .external_lex_state = 2}, + [3711] = {.lex_state = 55, .external_lex_state = 2}, [3712] = {.lex_state = 46, .external_lex_state = 2}, [3713] = {.lex_state = 46, .external_lex_state = 2}, [3714] = {.lex_state = 46, .external_lex_state = 2}, @@ -24010,269 +24074,269 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3741] = {.lex_state = 46, .external_lex_state = 2}, [3742] = {.lex_state = 46, .external_lex_state = 2}, [3743] = {.lex_state = 46, .external_lex_state = 2}, - [3744] = {.lex_state = 50, .external_lex_state = 2}, - [3745] = {.lex_state = 55, .external_lex_state = 2}, + [3744] = {.lex_state = 46, .external_lex_state = 2}, + [3745] = {.lex_state = 46, .external_lex_state = 2}, [3746] = {.lex_state = 50, .external_lex_state = 2}, [3747] = {.lex_state = 50, .external_lex_state = 2}, [3748] = {.lex_state = 50, .external_lex_state = 2}, - [3749] = {.lex_state = 50, .external_lex_state = 2}, - [3750] = {.lex_state = 55, .external_lex_state = 2}, - [3751] = {.lex_state = 55, .external_lex_state = 2}, + [3749] = {.lex_state = 55, .external_lex_state = 2}, + [3750] = {.lex_state = 50, .external_lex_state = 2}, + [3751] = {.lex_state = 50, .external_lex_state = 2}, [3752] = {.lex_state = 55, .external_lex_state = 2}, [3753] = {.lex_state = 55, .external_lex_state = 2}, [3754] = {.lex_state = 55, .external_lex_state = 2}, - [3755] = {.lex_state = 55, .external_lex_state = 2}, - [3756] = {.lex_state = 55, .external_lex_state = 2}, + [3755] = {.lex_state = 45, .external_lex_state = 5}, + [3756] = {.lex_state = 46, .external_lex_state = 2}, [3757] = {.lex_state = 55, .external_lex_state = 2}, - [3758] = {.lex_state = 46, .external_lex_state = 2}, - [3759] = {.lex_state = 46, .external_lex_state = 2}, + [3758] = {.lex_state = 55, .external_lex_state = 2}, + [3759] = {.lex_state = 55, .external_lex_state = 2}, [3760] = {.lex_state = 46, .external_lex_state = 5}, - [3761] = {.lex_state = 45, .external_lex_state = 5}, + [3761] = {.lex_state = 55, .external_lex_state = 2}, [3762] = {.lex_state = 55, .external_lex_state = 2}, [3763] = {.lex_state = 55, .external_lex_state = 2}, - [3764] = {.lex_state = 46, .external_lex_state = 2}, - [3765] = {.lex_state = 46, .external_lex_state = 5}, + [3764] = {.lex_state = 55, .external_lex_state = 2}, + [3765] = {.lex_state = 55, .external_lex_state = 2}, [3766] = {.lex_state = 55, .external_lex_state = 2}, - [3767] = {.lex_state = 46, .external_lex_state = 2}, + [3767] = {.lex_state = 55, .external_lex_state = 2}, [3768] = {.lex_state = 55, .external_lex_state = 2}, - [3769] = {.lex_state = 55, .external_lex_state = 2}, - [3770] = {.lex_state = 45, .external_lex_state = 5}, + [3769] = {.lex_state = 46, .external_lex_state = 5}, + [3770] = {.lex_state = 55, .external_lex_state = 2}, [3771] = {.lex_state = 55, .external_lex_state = 2}, - [3772] = {.lex_state = 55, .external_lex_state = 2}, - [3773] = {.lex_state = 55, .external_lex_state = 2}, - [3774] = {.lex_state = 55, .external_lex_state = 2}, + [3772] = {.lex_state = 45, .external_lex_state = 5}, + [3773] = {.lex_state = 46, .external_lex_state = 2}, + [3774] = {.lex_state = 46, .external_lex_state = 5}, [3775] = {.lex_state = 55, .external_lex_state = 2}, [3776] = {.lex_state = 55, .external_lex_state = 2}, - [3777] = {.lex_state = 46, .external_lex_state = 5}, - [3778] = {.lex_state = 55, .external_lex_state = 2}, - [3779] = {.lex_state = 55, .external_lex_state = 2}, + [3777] = {.lex_state = 55, .external_lex_state = 2}, + [3778] = {.lex_state = 46, .external_lex_state = 2}, + [3779] = {.lex_state = 46, .external_lex_state = 2}, [3780] = {.lex_state = 55, .external_lex_state = 2}, [3781] = {.lex_state = 55, .external_lex_state = 2}, [3782] = {.lex_state = 55, .external_lex_state = 2}, [3783] = {.lex_state = 55, .external_lex_state = 2}, [3784] = {.lex_state = 55, .external_lex_state = 2}, - [3785] = {.lex_state = 55, .external_lex_state = 2}, - [3786] = {.lex_state = 55, .external_lex_state = 2}, - [3787] = {.lex_state = 55, .external_lex_state = 2}, - [3788] = {.lex_state = 349, .external_lex_state = 2}, + [3785] = {.lex_state = 349, .external_lex_state = 2}, + [3786] = {.lex_state = 46, .external_lex_state = 5}, + [3787] = {.lex_state = 349, .external_lex_state = 2}, + [3788] = {.lex_state = 55, .external_lex_state = 2}, [3789] = {.lex_state = 349, .external_lex_state = 2}, [3790] = {.lex_state = 55, .external_lex_state = 2}, - [3791] = {.lex_state = 55, .external_lex_state = 2}, - [3792] = {.lex_state = 55, .external_lex_state = 2}, - [3793] = {.lex_state = 349, .external_lex_state = 2}, - [3794] = {.lex_state = 349, .external_lex_state = 2}, - [3795] = {.lex_state = 45, .external_lex_state = 5}, + [3791] = {.lex_state = 46, .external_lex_state = 5}, + [3792] = {.lex_state = 46, .external_lex_state = 5}, + [3793] = {.lex_state = 55, .external_lex_state = 2}, + [3794] = {.lex_state = 55, .external_lex_state = 2}, + [3795] = {.lex_state = 349, .external_lex_state = 2}, [3796] = {.lex_state = 55, .external_lex_state = 2}, - [3797] = {.lex_state = 349, .external_lex_state = 2}, + [3797] = {.lex_state = 55, .external_lex_state = 2}, [3798] = {.lex_state = 55, .external_lex_state = 2}, - [3799] = {.lex_state = 349, .external_lex_state = 2}, + [3799] = {.lex_state = 55, .external_lex_state = 2}, [3800] = {.lex_state = 55, .external_lex_state = 2}, [3801] = {.lex_state = 349, .external_lex_state = 2}, - [3802] = {.lex_state = 349, .external_lex_state = 2}, - [3803] = {.lex_state = 55, .external_lex_state = 2}, - [3804] = {.lex_state = 55, .external_lex_state = 2}, - [3805] = {.lex_state = 55, .external_lex_state = 2}, - [3806] = {.lex_state = 349, .external_lex_state = 2}, + [3802] = {.lex_state = 55, .external_lex_state = 2}, + [3803] = {.lex_state = 349, .external_lex_state = 2}, + [3804] = {.lex_state = 46, .external_lex_state = 5}, + [3805] = {.lex_state = 349, .external_lex_state = 2}, + [3806] = {.lex_state = 55, .external_lex_state = 2}, [3807] = {.lex_state = 55, .external_lex_state = 2}, - [3808] = {.lex_state = 55, .external_lex_state = 2}, + [3808] = {.lex_state = 349, .external_lex_state = 2}, [3809] = {.lex_state = 349, .external_lex_state = 2}, [3810] = {.lex_state = 55, .external_lex_state = 2}, - [3811] = {.lex_state = 55, .external_lex_state = 2}, + [3811] = {.lex_state = 349, .external_lex_state = 2}, [3812] = {.lex_state = 55, .external_lex_state = 2}, - [3813] = {.lex_state = 349, .external_lex_state = 2}, - [3814] = {.lex_state = 349, .external_lex_state = 2}, - [3815] = {.lex_state = 349, .external_lex_state = 2}, + [3813] = {.lex_state = 55, .external_lex_state = 2}, + [3814] = {.lex_state = 46, .external_lex_state = 5}, + [3815] = {.lex_state = 46, .external_lex_state = 5}, [3816] = {.lex_state = 349, .external_lex_state = 2}, - [3817] = {.lex_state = 55, .external_lex_state = 2}, - [3818] = {.lex_state = 349, .external_lex_state = 2}, + [3817] = {.lex_state = 46, .external_lex_state = 5}, + [3818] = {.lex_state = 46, .external_lex_state = 5}, [3819] = {.lex_state = 349, .external_lex_state = 2}, [3820] = {.lex_state = 349, .external_lex_state = 2}, - [3821] = {.lex_state = 349, .external_lex_state = 2}, + [3821] = {.lex_state = 46, .external_lex_state = 5}, [3822] = {.lex_state = 46, .external_lex_state = 5}, - [3823] = {.lex_state = 349, .external_lex_state = 2}, + [3823] = {.lex_state = 46, .external_lex_state = 5}, [3824] = {.lex_state = 349, .external_lex_state = 2}, - [3825] = {.lex_state = 46, .external_lex_state = 5}, - [3826] = {.lex_state = 55, .external_lex_state = 2}, + [3825] = {.lex_state = 55, .external_lex_state = 2}, + [3826] = {.lex_state = 349, .external_lex_state = 2}, [3827] = {.lex_state = 349, .external_lex_state = 2}, [3828] = {.lex_state = 349, .external_lex_state = 2}, - [3829] = {.lex_state = 349, .external_lex_state = 2}, - [3830] = {.lex_state = 46, .external_lex_state = 5}, - [3831] = {.lex_state = 46, .external_lex_state = 5}, + [3829] = {.lex_state = 46, .external_lex_state = 5}, + [3830] = {.lex_state = 46, .external_lex_state = 6}, + [3831] = {.lex_state = 349, .external_lex_state = 2}, [3832] = {.lex_state = 349, .external_lex_state = 2}, - [3833] = {.lex_state = 46, .external_lex_state = 5}, - [3834] = {.lex_state = 46, .external_lex_state = 5}, - [3835] = {.lex_state = 46, .external_lex_state = 5}, - [3836] = {.lex_state = 46, .external_lex_state = 5}, + [3833] = {.lex_state = 46, .external_lex_state = 6}, + [3834] = {.lex_state = 46, .external_lex_state = 6}, + [3835] = {.lex_state = 349, .external_lex_state = 2}, + [3836] = {.lex_state = 55, .external_lex_state = 2}, [3837] = {.lex_state = 46, .external_lex_state = 5}, [3838] = {.lex_state = 55, .external_lex_state = 2}, - [3839] = {.lex_state = 46, .external_lex_state = 5}, - [3840] = {.lex_state = 46, .external_lex_state = 5}, - [3841] = {.lex_state = 46, .external_lex_state = 6}, + [3839] = {.lex_state = 55, .external_lex_state = 2}, + [3840] = {.lex_state = 55, .external_lex_state = 2}, + [3841] = {.lex_state = 46, .external_lex_state = 5}, [3842] = {.lex_state = 46, .external_lex_state = 5}, - [3843] = {.lex_state = 46, .external_lex_state = 6}, - [3844] = {.lex_state = 46, .external_lex_state = 5}, - [3845] = {.lex_state = 46, .external_lex_state = 5}, - [3846] = {.lex_state = 46, .external_lex_state = 5}, - [3847] = {.lex_state = 46, .external_lex_state = 5}, + [3843] = {.lex_state = 46, .external_lex_state = 5}, + [3844] = {.lex_state = 349, .external_lex_state = 2}, + [3845] = {.lex_state = 55, .external_lex_state = 2}, + [3846] = {.lex_state = 55, .external_lex_state = 2}, + [3847] = {.lex_state = 55, .external_lex_state = 2}, [3848] = {.lex_state = 46, .external_lex_state = 5}, - [3849] = {.lex_state = 46, .external_lex_state = 5}, + [3849] = {.lex_state = 349, .external_lex_state = 2}, [3850] = {.lex_state = 46, .external_lex_state = 5}, - [3851] = {.lex_state = 46, .external_lex_state = 5}, + [3851] = {.lex_state = 55, .external_lex_state = 2}, [3852] = {.lex_state = 46, .external_lex_state = 5}, - [3853] = {.lex_state = 55, .external_lex_state = 2}, + [3853] = {.lex_state = 46, .external_lex_state = 5}, [3854] = {.lex_state = 46, .external_lex_state = 5}, - [3855] = {.lex_state = 46, .external_lex_state = 6}, - [3856] = {.lex_state = 46, .external_lex_state = 5}, + [3855] = {.lex_state = 55, .external_lex_state = 2}, + [3856] = {.lex_state = 55, .external_lex_state = 2}, [3857] = {.lex_state = 46, .external_lex_state = 5}, - [3858] = {.lex_state = 55, .external_lex_state = 2}, - [3859] = {.lex_state = 349, .external_lex_state = 2}, - [3860] = {.lex_state = 349, .external_lex_state = 2}, + [3858] = {.lex_state = 349, .external_lex_state = 2}, + [3859] = {.lex_state = 46, .external_lex_state = 5}, + [3860] = {.lex_state = 55, .external_lex_state = 2}, [3861] = {.lex_state = 55, .external_lex_state = 2}, - [3862] = {.lex_state = 55, .external_lex_state = 2}, - [3863] = {.lex_state = 55, .external_lex_state = 2}, - [3864] = {.lex_state = 55, .external_lex_state = 2}, - [3865] = {.lex_state = 55, .external_lex_state = 2}, - [3866] = {.lex_state = 55, .external_lex_state = 2}, + [3862] = {.lex_state = 349, .external_lex_state = 2}, + [3863] = {.lex_state = 46, .external_lex_state = 5}, + [3864] = {.lex_state = 349, .external_lex_state = 2}, + [3865] = {.lex_state = 46, .external_lex_state = 5}, + [3866] = {.lex_state = 46, .external_lex_state = 5}, [3867] = {.lex_state = 55, .external_lex_state = 2}, [3868] = {.lex_state = 55, .external_lex_state = 2}, - [3869] = {.lex_state = 46, .external_lex_state = 5}, - [3870] = {.lex_state = 46, .external_lex_state = 5}, - [3871] = {.lex_state = 55, .external_lex_state = 2}, - [3872] = {.lex_state = 46, .external_lex_state = 5}, + [3869] = {.lex_state = 349, .external_lex_state = 2}, + [3870] = {.lex_state = 349, .external_lex_state = 2}, + [3871] = {.lex_state = 349, .external_lex_state = 2}, + [3872] = {.lex_state = 55, .external_lex_state = 2}, [3873] = {.lex_state = 46, .external_lex_state = 5}, - [3874] = {.lex_state = 55, .external_lex_state = 2}, - [3875] = {.lex_state = 46, .external_lex_state = 5}, + [3874] = {.lex_state = 349, .external_lex_state = 2}, + [3875] = {.lex_state = 55, .external_lex_state = 2}, [3876] = {.lex_state = 55, .external_lex_state = 2}, [3877] = {.lex_state = 46, .external_lex_state = 5}, [3878] = {.lex_state = 46, .external_lex_state = 5}, - [3879] = {.lex_state = 46, .external_lex_state = 5}, - [3880] = {.lex_state = 55, .external_lex_state = 2}, + [3879] = {.lex_state = 55, .external_lex_state = 2}, + [3880] = {.lex_state = 46, .external_lex_state = 5}, [3881] = {.lex_state = 46, .external_lex_state = 5}, [3882] = {.lex_state = 55, .external_lex_state = 2}, - [3883] = {.lex_state = 349, .external_lex_state = 2}, + [3883] = {.lex_state = 55, .external_lex_state = 2}, [3884] = {.lex_state = 46, .external_lex_state = 5}, [3885] = {.lex_state = 55, .external_lex_state = 2}, - [3886] = {.lex_state = 55, .external_lex_state = 2}, - [3887] = {.lex_state = 349, .external_lex_state = 2}, - [3888] = {.lex_state = 349, .external_lex_state = 2}, + [3886] = {.lex_state = 46, .external_lex_state = 5}, + [3887] = {.lex_state = 55, .external_lex_state = 2}, + [3888] = {.lex_state = 55, .external_lex_state = 2}, [3889] = {.lex_state = 55, .external_lex_state = 2}, [3890] = {.lex_state = 55, .external_lex_state = 2}, - [3891] = {.lex_state = 349, .external_lex_state = 2}, + [3891] = {.lex_state = 45, .external_lex_state = 5}, [3892] = {.lex_state = 55, .external_lex_state = 2}, [3893] = {.lex_state = 55, .external_lex_state = 2}, - [3894] = {.lex_state = 55, .external_lex_state = 2}, - [3895] = {.lex_state = 51, .external_lex_state = 2}, - [3896] = {.lex_state = 45, .external_lex_state = 5}, - [3897] = {.lex_state = 45, .external_lex_state = 5}, + [3894] = {.lex_state = 349, .external_lex_state = 2}, + [3895] = {.lex_state = 46, .external_lex_state = 5}, + [3896] = {.lex_state = 55, .external_lex_state = 2}, + [3897] = {.lex_state = 51, .external_lex_state = 2}, [3898] = {.lex_state = 45, .external_lex_state = 5}, - [3899] = {.lex_state = 51, .external_lex_state = 2}, - [3900] = {.lex_state = 73, .external_lex_state = 2}, + [3899] = {.lex_state = 73, .external_lex_state = 2}, + [3900] = {.lex_state = 45, .external_lex_state = 5}, [3901] = {.lex_state = 45, .external_lex_state = 5}, [3902] = {.lex_state = 73, .external_lex_state = 2}, - [3903] = {.lex_state = 45, .external_lex_state = 5}, + [3903] = {.lex_state = 73, .external_lex_state = 2}, [3904] = {.lex_state = 45, .external_lex_state = 5}, [3905] = {.lex_state = 45, .external_lex_state = 5}, [3906] = {.lex_state = 45, .external_lex_state = 5}, [3907] = {.lex_state = 45, .external_lex_state = 5}, - [3908] = {.lex_state = 45, .external_lex_state = 2}, + [3908] = {.lex_state = 45, .external_lex_state = 5}, [3909] = {.lex_state = 45, .external_lex_state = 5}, [3910] = {.lex_state = 45, .external_lex_state = 5}, [3911] = {.lex_state = 45, .external_lex_state = 5}, [3912] = {.lex_state = 51, .external_lex_state = 2}, [3913] = {.lex_state = 45, .external_lex_state = 5}, - [3914] = {.lex_state = 73, .external_lex_state = 2}, - [3915] = {.lex_state = 45, .external_lex_state = 5}, + [3914] = {.lex_state = 45, .external_lex_state = 5}, + [3915] = {.lex_state = 51, .external_lex_state = 2}, [3916] = {.lex_state = 45, .external_lex_state = 5}, [3917] = {.lex_state = 45, .external_lex_state = 5}, [3918] = {.lex_state = 45, .external_lex_state = 5}, - [3919] = {.lex_state = 73, .external_lex_state = 2}, + [3919] = {.lex_state = 45, .external_lex_state = 5}, [3920] = {.lex_state = 45, .external_lex_state = 5}, - [3921] = {.lex_state = 45, .external_lex_state = 5}, - [3922] = {.lex_state = 51, .external_lex_state = 2}, - [3923] = {.lex_state = 73, .external_lex_state = 2}, - [3924] = {.lex_state = 45, .external_lex_state = 5}, + [3921] = {.lex_state = 73, .external_lex_state = 2}, + [3922] = {.lex_state = 45, .external_lex_state = 5}, + [3923] = {.lex_state = 45, .external_lex_state = 5}, + [3924] = {.lex_state = 73, .external_lex_state = 2}, [3925] = {.lex_state = 45, .external_lex_state = 5}, [3926] = {.lex_state = 45, .external_lex_state = 5}, - [3927] = {.lex_state = 45, .external_lex_state = 5}, + [3927] = {.lex_state = 51, .external_lex_state = 2}, [3928] = {.lex_state = 45, .external_lex_state = 5}, [3929] = {.lex_state = 45, .external_lex_state = 5}, - [3930] = {.lex_state = 45, .external_lex_state = 5}, + [3930] = {.lex_state = 45, .external_lex_state = 2}, [3931] = {.lex_state = 45, .external_lex_state = 5}, - [3932] = {.lex_state = 51, .external_lex_state = 2}, - [3933] = {.lex_state = 45, .external_lex_state = 5}, + [3932] = {.lex_state = 45, .external_lex_state = 5}, + [3933] = {.lex_state = 51, .external_lex_state = 2}, [3934] = {.lex_state = 45, .external_lex_state = 5}, [3935] = {.lex_state = 45, .external_lex_state = 5}, - [3936] = {.lex_state = 46, .external_lex_state = 6}, + [3936] = {.lex_state = 45, .external_lex_state = 5}, [3937] = {.lex_state = 46, .external_lex_state = 6}, [3938] = {.lex_state = 46, .external_lex_state = 6}, - [3939] = {.lex_state = 46, .external_lex_state = 6}, - [3940] = {.lex_state = 46, .external_lex_state = 6}, - [3941] = {.lex_state = 46, .external_lex_state = 6}, - [3942] = {.lex_state = 46, .external_lex_state = 6}, - [3943] = {.lex_state = 45, .external_lex_state = 6}, - [3944] = {.lex_state = 46, .external_lex_state = 6}, - [3945] = {.lex_state = 45, .external_lex_state = 5}, - [3946] = {.lex_state = 46, .external_lex_state = 5}, + [3939] = {.lex_state = 46, .external_lex_state = 5}, + [3940] = {.lex_state = 45, .external_lex_state = 5}, + [3941] = {.lex_state = 45, .external_lex_state = 5}, + [3942] = {.lex_state = 45, .external_lex_state = 5}, + [3943] = {.lex_state = 45, .external_lex_state = 5}, + [3944] = {.lex_state = 45, .external_lex_state = 5}, + [3945] = {.lex_state = 46, .external_lex_state = 5}, + [3946] = {.lex_state = 45, .external_lex_state = 5}, [3947] = {.lex_state = 45, .external_lex_state = 5}, - [3948] = {.lex_state = 46, .external_lex_state = 6}, - [3949] = {.lex_state = 45, .external_lex_state = 5}, + [3948] = {.lex_state = 45, .external_lex_state = 5}, + [3949] = {.lex_state = 46, .external_lex_state = 6}, [3950] = {.lex_state = 46, .external_lex_state = 6}, [3951] = {.lex_state = 45, .external_lex_state = 5}, [3952] = {.lex_state = 46, .external_lex_state = 6}, - [3953] = {.lex_state = 46, .external_lex_state = 5}, - [3954] = {.lex_state = 46, .external_lex_state = 6}, + [3953] = {.lex_state = 45, .external_lex_state = 5}, + [3954] = {.lex_state = 45, .external_lex_state = 6}, [3955] = {.lex_state = 46, .external_lex_state = 6}, [3956] = {.lex_state = 45, .external_lex_state = 5}, - [3957] = {.lex_state = 46, .external_lex_state = 6}, - [3958] = {.lex_state = 46, .external_lex_state = 6}, + [3957] = {.lex_state = 45, .external_lex_state = 2}, + [3958] = {.lex_state = 45, .external_lex_state = 5}, [3959] = {.lex_state = 45, .external_lex_state = 5}, [3960] = {.lex_state = 46, .external_lex_state = 6}, - [3961] = {.lex_state = 46, .external_lex_state = 6}, + [3961] = {.lex_state = 45, .external_lex_state = 5}, [3962] = {.lex_state = 46, .external_lex_state = 6}, [3963] = {.lex_state = 46, .external_lex_state = 5}, - [3964] = {.lex_state = 46, .external_lex_state = 6}, + [3964] = {.lex_state = 46, .external_lex_state = 5}, [3965] = {.lex_state = 46, .external_lex_state = 6}, - [3966] = {.lex_state = 46, .external_lex_state = 6}, - [3967] = {.lex_state = 46, .external_lex_state = 6}, - [3968] = {.lex_state = 46, .external_lex_state = 5}, - [3969] = {.lex_state = 45, .external_lex_state = 5}, + [3966] = {.lex_state = 45, .external_lex_state = 5}, + [3967] = {.lex_state = 45, .external_lex_state = 5}, + [3968] = {.lex_state = 45, .external_lex_state = 5}, + [3969] = {.lex_state = 46, .external_lex_state = 5}, [3970] = {.lex_state = 46, .external_lex_state = 6}, - [3971] = {.lex_state = 46, .external_lex_state = 6}, - [3972] = {.lex_state = 45, .external_lex_state = 2}, - [3973] = {.lex_state = 46, .external_lex_state = 6}, + [3971] = {.lex_state = 45, .external_lex_state = 5}, + [3972] = {.lex_state = 45, .external_lex_state = 5}, + [3973] = {.lex_state = 45, .external_lex_state = 5}, [3974] = {.lex_state = 46, .external_lex_state = 6}, [3975] = {.lex_state = 46, .external_lex_state = 6}, [3976] = {.lex_state = 46, .external_lex_state = 6}, - [3977] = {.lex_state = 45, .external_lex_state = 5}, - [3978] = {.lex_state = 46, .external_lex_state = 6}, + [3977] = {.lex_state = 46, .external_lex_state = 6}, + [3978] = {.lex_state = 46, .external_lex_state = 5}, [3979] = {.lex_state = 46, .external_lex_state = 5}, - [3980] = {.lex_state = 45, .external_lex_state = 5}, - [3981] = {.lex_state = 45, .external_lex_state = 5}, - [3982] = {.lex_state = 46, .external_lex_state = 5}, + [3980] = {.lex_state = 46, .external_lex_state = 6}, + [3981] = {.lex_state = 46, .external_lex_state = 6}, + [3982] = {.lex_state = 45, .external_lex_state = 5}, [3983] = {.lex_state = 45, .external_lex_state = 5}, - [3984] = {.lex_state = 46, .external_lex_state = 5}, + [3984] = {.lex_state = 46, .external_lex_state = 6}, [3985] = {.lex_state = 46, .external_lex_state = 6}, [3986] = {.lex_state = 45, .external_lex_state = 5}, - [3987] = {.lex_state = 45, .external_lex_state = 5}, + [3987] = {.lex_state = 46, .external_lex_state = 6}, [3988] = {.lex_state = 46, .external_lex_state = 6}, - [3989] = {.lex_state = 45, .external_lex_state = 5}, + [3989] = {.lex_state = 46, .external_lex_state = 6}, [3990] = {.lex_state = 46, .external_lex_state = 6}, - [3991] = {.lex_state = 45, .external_lex_state = 5}, - [3992] = {.lex_state = 45, .external_lex_state = 5}, - [3993] = {.lex_state = 45, .external_lex_state = 5}, - [3994] = {.lex_state = 46, .external_lex_state = 6}, - [3995] = {.lex_state = 45, .external_lex_state = 5}, - [3996] = {.lex_state = 45, .external_lex_state = 5}, - [3997] = {.lex_state = 45, .external_lex_state = 5}, - [3998] = {.lex_state = 45, .external_lex_state = 5}, - [3999] = {.lex_state = 45, .external_lex_state = 5}, - [4000] = {.lex_state = 45, .external_lex_state = 5}, + [3991] = {.lex_state = 46, .external_lex_state = 6}, + [3992] = {.lex_state = 46, .external_lex_state = 6}, + [3993] = {.lex_state = 46, .external_lex_state = 6}, + [3994] = {.lex_state = 45, .external_lex_state = 5}, + [3995] = {.lex_state = 46, .external_lex_state = 6}, + [3996] = {.lex_state = 46, .external_lex_state = 6}, + [3997] = {.lex_state = 46, .external_lex_state = 6}, + [3998] = {.lex_state = 46, .external_lex_state = 6}, + [3999] = {.lex_state = 46, .external_lex_state = 6}, + [4000] = {.lex_state = 46, .external_lex_state = 6}, [4001] = {.lex_state = 46, .external_lex_state = 6}, - [4002] = {.lex_state = 45, .external_lex_state = 5}, + [4002] = {.lex_state = 46, .external_lex_state = 6}, [4003] = {.lex_state = 45, .external_lex_state = 5}, - [4004] = {.lex_state = 45, .external_lex_state = 5}, + [4004] = {.lex_state = 46, .external_lex_state = 6}, [4005] = {.lex_state = 45, .external_lex_state = 5}, - [4006] = {.lex_state = 45, .external_lex_state = 5}, + [4006] = {.lex_state = 50, .external_lex_state = 2}, [4007] = {.lex_state = 45, .external_lex_state = 5}, [4008] = {.lex_state = 45, .external_lex_state = 5}, [4009] = {.lex_state = 45, .external_lex_state = 5}, @@ -24281,16 +24345,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4012] = {.lex_state = 45, .external_lex_state = 5}, [4013] = {.lex_state = 45, .external_lex_state = 5}, [4014] = {.lex_state = 45, .external_lex_state = 5}, - [4015] = {.lex_state = 45, .external_lex_state = 5}, + [4015] = {.lex_state = 50, .external_lex_state = 2}, [4016] = {.lex_state = 45, .external_lex_state = 5}, - [4017] = {.lex_state = 50, .external_lex_state = 2}, + [4017] = {.lex_state = 45, .external_lex_state = 5}, [4018] = {.lex_state = 45, .external_lex_state = 5}, [4019] = {.lex_state = 45, .external_lex_state = 5}, [4020] = {.lex_state = 45, .external_lex_state = 5}, [4021] = {.lex_state = 45, .external_lex_state = 5}, [4022] = {.lex_state = 45, .external_lex_state = 5}, [4023] = {.lex_state = 45, .external_lex_state = 5}, - [4024] = {.lex_state = 50, .external_lex_state = 2}, + [4024] = {.lex_state = 45, .external_lex_state = 5}, [4025] = {.lex_state = 45, .external_lex_state = 5}, [4026] = {.lex_state = 45, .external_lex_state = 5}, [4027] = {.lex_state = 45, .external_lex_state = 5}, @@ -24305,30 +24369,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4036] = {.lex_state = 45, .external_lex_state = 5}, [4037] = {.lex_state = 45, .external_lex_state = 5}, [4038] = {.lex_state = 45, .external_lex_state = 5}, - [4039] = {.lex_state = 50, .external_lex_state = 2}, - [4040] = {.lex_state = 45, .external_lex_state = 5}, - [4041] = {.lex_state = 50, .external_lex_state = 2}, - [4042] = {.lex_state = 45, .external_lex_state = 5}, + [4039] = {.lex_state = 45, .external_lex_state = 5}, + [4040] = {.lex_state = 50, .external_lex_state = 2}, + [4041] = {.lex_state = 45, .external_lex_state = 5}, + [4042] = {.lex_state = 45, .external_lex_state = 2}, [4043] = {.lex_state = 45, .external_lex_state = 5}, [4044] = {.lex_state = 45, .external_lex_state = 5}, [4045] = {.lex_state = 45, .external_lex_state = 5}, - [4046] = {.lex_state = 45, .external_lex_state = 2}, + [4046] = {.lex_state = 45, .external_lex_state = 5}, [4047] = {.lex_state = 45, .external_lex_state = 5}, [4048] = {.lex_state = 45, .external_lex_state = 5}, - [4049] = {.lex_state = 50, .external_lex_state = 2}, + [4049] = {.lex_state = 45, .external_lex_state = 5}, [4050] = {.lex_state = 45, .external_lex_state = 5}, [4051] = {.lex_state = 45, .external_lex_state = 5}, [4052] = {.lex_state = 45, .external_lex_state = 5}, [4053] = {.lex_state = 45, .external_lex_state = 5}, - [4054] = {.lex_state = 45, .external_lex_state = 5}, - [4055] = {.lex_state = 45, .external_lex_state = 5}, + [4054] = {.lex_state = 50, .external_lex_state = 2}, + [4055] = {.lex_state = 50, .external_lex_state = 2}, [4056] = {.lex_state = 45, .external_lex_state = 5}, [4057] = {.lex_state = 45, .external_lex_state = 5}, [4058] = {.lex_state = 45, .external_lex_state = 5}, [4059] = {.lex_state = 45, .external_lex_state = 5}, [4060] = {.lex_state = 45, .external_lex_state = 5}, [4061] = {.lex_state = 45, .external_lex_state = 5}, - [4062] = {.lex_state = 46, .external_lex_state = 6}, + [4062] = {.lex_state = 45, .external_lex_state = 5}, [4063] = {.lex_state = 45, .external_lex_state = 5}, [4064] = {.lex_state = 45, .external_lex_state = 5}, [4065] = {.lex_state = 45, .external_lex_state = 5}, @@ -24336,148 +24400,148 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4067] = {.lex_state = 45, .external_lex_state = 5}, [4068] = {.lex_state = 45, .external_lex_state = 5}, [4069] = {.lex_state = 45, .external_lex_state = 5}, - [4070] = {.lex_state = 46, .external_lex_state = 6}, - [4071] = {.lex_state = 46, .external_lex_state = 6}, + [4070] = {.lex_state = 45, .external_lex_state = 5}, + [4071] = {.lex_state = 45, .external_lex_state = 5}, [4072] = {.lex_state = 45, .external_lex_state = 5}, - [4073] = {.lex_state = 45, .external_lex_state = 5}, + [4073] = {.lex_state = 46, .external_lex_state = 6}, [4074] = {.lex_state = 45, .external_lex_state = 5}, [4075] = {.lex_state = 45, .external_lex_state = 5}, - [4076] = {.lex_state = 45, .external_lex_state = 5}, + [4076] = {.lex_state = 50, .external_lex_state = 2}, [4077] = {.lex_state = 45, .external_lex_state = 5}, - [4078] = {.lex_state = 50, .external_lex_state = 2}, + [4078] = {.lex_state = 45, .external_lex_state = 5}, [4079] = {.lex_state = 45, .external_lex_state = 5}, [4080] = {.lex_state = 45, .external_lex_state = 5}, [4081] = {.lex_state = 45, .external_lex_state = 5}, [4082] = {.lex_state = 45, .external_lex_state = 5}, [4083] = {.lex_state = 45, .external_lex_state = 5}, - [4084] = {.lex_state = 45, .external_lex_state = 5}, - [4085] = {.lex_state = 45, .external_lex_state = 5}, + [4084] = {.lex_state = 46, .external_lex_state = 6}, + [4085] = {.lex_state = 46, .external_lex_state = 6}, [4086] = {.lex_state = 45, .external_lex_state = 5}, [4087] = {.lex_state = 45, .external_lex_state = 5}, [4088] = {.lex_state = 45, .external_lex_state = 5}, - [4089] = {.lex_state = 45, .external_lex_state = 5}, - [4090] = {.lex_state = 45, .external_lex_state = 5}, + [4089] = {.lex_state = 45, .external_lex_state = 6}, + [4090] = {.lex_state = 45, .external_lex_state = 6}, [4091] = {.lex_state = 45, .external_lex_state = 5}, - [4092] = {.lex_state = 45, .external_lex_state = 5}, + [4092] = {.lex_state = 46, .external_lex_state = 6}, [4093] = {.lex_state = 45, .external_lex_state = 5}, [4094] = {.lex_state = 45, .external_lex_state = 5}, [4095] = {.lex_state = 45, .external_lex_state = 5}, [4096] = {.lex_state = 45, .external_lex_state = 5}, [4097] = {.lex_state = 45, .external_lex_state = 5}, - [4098] = {.lex_state = 46, .external_lex_state = 6}, + [4098] = {.lex_state = 45, .external_lex_state = 6}, [4099] = {.lex_state = 45, .external_lex_state = 5}, - [4100] = {.lex_state = 45, .external_lex_state = 6}, + [4100] = {.lex_state = 45, .external_lex_state = 5}, [4101] = {.lex_state = 45, .external_lex_state = 5}, - [4102] = {.lex_state = 46, .external_lex_state = 6}, + [4102] = {.lex_state = 45, .external_lex_state = 5}, [4103] = {.lex_state = 45, .external_lex_state = 5}, [4104] = {.lex_state = 45, .external_lex_state = 5}, - [4105] = {.lex_state = 45, .external_lex_state = 5}, + [4105] = {.lex_state = 46, .external_lex_state = 6}, [4106] = {.lex_state = 45, .external_lex_state = 5}, - [4107] = {.lex_state = 46, .external_lex_state = 6}, - [4108] = {.lex_state = 45, .external_lex_state = 5}, + [4107] = {.lex_state = 45, .external_lex_state = 5}, + [4108] = {.lex_state = 46, .external_lex_state = 6}, [4109] = {.lex_state = 45, .external_lex_state = 5}, [4110] = {.lex_state = 45, .external_lex_state = 5}, - [4111] = {.lex_state = 46, .external_lex_state = 6}, - [4112] = {.lex_state = 45, .external_lex_state = 6}, - [4113] = {.lex_state = 45, .external_lex_state = 5}, + [4111] = {.lex_state = 45, .external_lex_state = 5}, + [4112] = {.lex_state = 45, .external_lex_state = 5}, + [4113] = {.lex_state = 46, .external_lex_state = 6}, [4114] = {.lex_state = 45, .external_lex_state = 5}, [4115] = {.lex_state = 45, .external_lex_state = 5}, - [4116] = {.lex_state = 45, .external_lex_state = 6}, + [4116] = {.lex_state = 45, .external_lex_state = 5}, [4117] = {.lex_state = 45, .external_lex_state = 5}, - [4118] = {.lex_state = 69, .external_lex_state = 2}, - [4119] = {.lex_state = 349, .external_lex_state = 5}, - [4120] = {.lex_state = 69, .external_lex_state = 2}, - [4121] = {.lex_state = 45, .external_lex_state = 2}, - [4122] = {.lex_state = 45, .external_lex_state = 6}, + [4118] = {.lex_state = 45, .external_lex_state = 5}, + [4119] = {.lex_state = 45, .external_lex_state = 5}, + [4120] = {.lex_state = 45, .external_lex_state = 5}, + [4121] = {.lex_state = 69, .external_lex_state = 2}, + [4122] = {.lex_state = 52, .external_lex_state = 2}, [4123] = {.lex_state = 69, .external_lex_state = 2}, [4124] = {.lex_state = 45, .external_lex_state = 6}, - [4125] = {.lex_state = 45, .external_lex_state = 5}, - [4126] = {.lex_state = 349, .external_lex_state = 5}, + [4125] = {.lex_state = 69, .external_lex_state = 2}, + [4126] = {.lex_state = 45, .external_lex_state = 2}, [4127] = {.lex_state = 45, .external_lex_state = 6}, [4128] = {.lex_state = 69, .external_lex_state = 2}, [4129] = {.lex_state = 69, .external_lex_state = 2}, [4130] = {.lex_state = 69, .external_lex_state = 2}, - [4131] = {.lex_state = 45, .external_lex_state = 6}, + [4131] = {.lex_state = 69, .external_lex_state = 2}, [4132] = {.lex_state = 69, .external_lex_state = 2}, [4133] = {.lex_state = 45, .external_lex_state = 5}, - [4134] = {.lex_state = 69, .external_lex_state = 2}, + [4134] = {.lex_state = 50, .external_lex_state = 2}, [4135] = {.lex_state = 69, .external_lex_state = 2}, - [4136] = {.lex_state = 50, .external_lex_state = 2}, - [4137] = {.lex_state = 52, .external_lex_state = 2}, - [4138] = {.lex_state = 69, .external_lex_state = 2}, - [4139] = {.lex_state = 69, .external_lex_state = 2}, - [4140] = {.lex_state = 50, .external_lex_state = 2}, - [4141] = {.lex_state = 46, .external_lex_state = 5}, - [4142] = {.lex_state = 69, .external_lex_state = 2}, - [4143] = {.lex_state = 69, .external_lex_state = 2}, - [4144] = {.lex_state = 45, .external_lex_state = 6}, + [4136] = {.lex_state = 45, .external_lex_state = 6}, + [4137] = {.lex_state = 69, .external_lex_state = 2}, + [4138] = {.lex_state = 349, .external_lex_state = 5}, + [4139] = {.lex_state = 50, .external_lex_state = 2}, + [4140] = {.lex_state = 69, .external_lex_state = 2}, + [4141] = {.lex_state = 45, .external_lex_state = 6}, + [4142] = {.lex_state = 349, .external_lex_state = 5}, + [4143] = {.lex_state = 45, .external_lex_state = 6}, + [4144] = {.lex_state = 69, .external_lex_state = 2}, [4145] = {.lex_state = 46, .external_lex_state = 5}, - [4146] = {.lex_state = 50, .external_lex_state = 2}, - [4147] = {.lex_state = 69, .external_lex_state = 2}, + [4146] = {.lex_state = 46, .external_lex_state = 5}, + [4147] = {.lex_state = 50, .external_lex_state = 2}, [4148] = {.lex_state = 69, .external_lex_state = 2}, [4149] = {.lex_state = 69, .external_lex_state = 2}, - [4150] = {.lex_state = 349, .external_lex_state = 5}, - [4151] = {.lex_state = 69, .external_lex_state = 2}, - [4152] = {.lex_state = 45, .external_lex_state = 6}, - [4153] = {.lex_state = 46, .external_lex_state = 2}, - [4154] = {.lex_state = 45, .external_lex_state = 2}, - [4155] = {.lex_state = 55, .external_lex_state = 2}, - [4156] = {.lex_state = 46, .external_lex_state = 2}, - [4157] = {.lex_state = 45, .external_lex_state = 2}, + [4150] = {.lex_state = 69, .external_lex_state = 2}, + [4151] = {.lex_state = 349, .external_lex_state = 5}, + [4152] = {.lex_state = 69, .external_lex_state = 2}, + [4153] = {.lex_state = 69, .external_lex_state = 2}, + [4154] = {.lex_state = 45, .external_lex_state = 6}, + [4155] = {.lex_state = 45, .external_lex_state = 2}, + [4156] = {.lex_state = 45, .external_lex_state = 2}, + [4157] = {.lex_state = 45, .external_lex_state = 6}, [4158] = {.lex_state = 45, .external_lex_state = 2}, [4159] = {.lex_state = 45, .external_lex_state = 2}, [4160] = {.lex_state = 45, .external_lex_state = 2}, - [4161] = {.lex_state = 45, .external_lex_state = 5}, - [4162] = {.lex_state = 45, .external_lex_state = 5}, - [4163] = {.lex_state = 45, .external_lex_state = 5}, - [4164] = {.lex_state = 45, .external_lex_state = 5}, - [4165] = {.lex_state = 45, .external_lex_state = 5}, - [4166] = {.lex_state = 45, .external_lex_state = 5}, - [4167] = {.lex_state = 45, .external_lex_state = 5}, - [4168] = {.lex_state = 45, .external_lex_state = 5}, + [4161] = {.lex_state = 45, .external_lex_state = 6}, + [4162] = {.lex_state = 45, .external_lex_state = 6}, + [4163] = {.lex_state = 45, .external_lex_state = 6}, + [4164] = {.lex_state = 50, .external_lex_state = 2}, + [4165] = {.lex_state = 46, .external_lex_state = 2}, + [4166] = {.lex_state = 55, .external_lex_state = 2}, + [4167] = {.lex_state = 45, .external_lex_state = 2}, + [4168] = {.lex_state = 45, .external_lex_state = 2}, [4169] = {.lex_state = 45, .external_lex_state = 5}, - [4170] = {.lex_state = 45, .external_lex_state = 6}, - [4171] = {.lex_state = 45, .external_lex_state = 2}, - [4172] = {.lex_state = 45, .external_lex_state = 2}, - [4173] = {.lex_state = 45, .external_lex_state = 5}, + [4170] = {.lex_state = 55, .external_lex_state = 2}, + [4171] = {.lex_state = 45, .external_lex_state = 6}, + [4172] = {.lex_state = 45, .external_lex_state = 6}, + [4173] = {.lex_state = 45, .external_lex_state = 6}, [4174] = {.lex_state = 45, .external_lex_state = 6}, - [4175] = {.lex_state = 46, .external_lex_state = 5}, - [4176] = {.lex_state = 45, .external_lex_state = 5}, - [4177] = {.lex_state = 45, .external_lex_state = 2}, + [4175] = {.lex_state = 46, .external_lex_state = 2}, + [4176] = {.lex_state = 55, .external_lex_state = 2}, + [4177] = {.lex_state = 45, .external_lex_state = 5}, [4178] = {.lex_state = 45, .external_lex_state = 2}, - [4179] = {.lex_state = 45, .external_lex_state = 6}, - [4180] = {.lex_state = 55, .external_lex_state = 2}, - [4181] = {.lex_state = 46, .external_lex_state = 5}, - [4182] = {.lex_state = 45, .external_lex_state = 2}, - [4183] = {.lex_state = 45, .external_lex_state = 2}, - [4184] = {.lex_state = 45, .external_lex_state = 2}, - [4185] = {.lex_state = 45, .external_lex_state = 2}, - [4186] = {.lex_state = 45, .external_lex_state = 2}, - [4187] = {.lex_state = 45, .external_lex_state = 5}, - [4188] = {.lex_state = 45, .external_lex_state = 5}, - [4189] = {.lex_state = 55, .external_lex_state = 2}, - [4190] = {.lex_state = 45, .external_lex_state = 5}, - [4191] = {.lex_state = 45, .external_lex_state = 6}, + [4179] = {.lex_state = 349, .external_lex_state = 5}, + [4180] = {.lex_state = 349, .external_lex_state = 5}, + [4181] = {.lex_state = 349, .external_lex_state = 2}, + [4182] = {.lex_state = 45, .external_lex_state = 6}, + [4183] = {.lex_state = 45, .external_lex_state = 6}, + [4184] = {.lex_state = 349, .external_lex_state = 5}, + [4185] = {.lex_state = 349, .external_lex_state = 5}, + [4186] = {.lex_state = 45, .external_lex_state = 6}, + [4187] = {.lex_state = 349, .external_lex_state = 5}, + [4188] = {.lex_state = 349, .external_lex_state = 5}, + [4189] = {.lex_state = 45, .external_lex_state = 6}, + [4190] = {.lex_state = 46, .external_lex_state = 2}, + [4191] = {.lex_state = 45, .external_lex_state = 2}, [4192] = {.lex_state = 45, .external_lex_state = 2}, - [4193] = {.lex_state = 45, .external_lex_state = 6}, - [4194] = {.lex_state = 45, .external_lex_state = 6}, + [4193] = {.lex_state = 45, .external_lex_state = 2}, + [4194] = {.lex_state = 45, .external_lex_state = 2}, [4195] = {.lex_state = 45, .external_lex_state = 5}, [4196] = {.lex_state = 45, .external_lex_state = 5}, - [4197] = {.lex_state = 55, .external_lex_state = 2}, - [4198] = {.lex_state = 45, .external_lex_state = 6}, - [4199] = {.lex_state = 45, .external_lex_state = 5}, - [4200] = {.lex_state = 50, .external_lex_state = 2}, - [4201] = {.lex_state = 45, .external_lex_state = 5}, + [4197] = {.lex_state = 45, .external_lex_state = 6}, + [4198] = {.lex_state = 46, .external_lex_state = 2}, + [4199] = {.lex_state = 45, .external_lex_state = 2}, + [4200] = {.lex_state = 45, .external_lex_state = 2}, + [4201] = {.lex_state = 46, .external_lex_state = 2}, [4202] = {.lex_state = 45, .external_lex_state = 6}, - [4203] = {.lex_state = 45, .external_lex_state = 6}, - [4204] = {.lex_state = 46, .external_lex_state = 2}, + [4203] = {.lex_state = 45, .external_lex_state = 2}, + [4204] = {.lex_state = 45, .external_lex_state = 2}, [4205] = {.lex_state = 45, .external_lex_state = 5}, - [4206] = {.lex_state = 45, .external_lex_state = 5}, - [4207] = {.lex_state = 45, .external_lex_state = 6}, + [4206] = {.lex_state = 45, .external_lex_state = 2}, + [4207] = {.lex_state = 45, .external_lex_state = 5}, [4208] = {.lex_state = 45, .external_lex_state = 6}, - [4209] = {.lex_state = 50, .external_lex_state = 2}, + [4209] = {.lex_state = 45, .external_lex_state = 5}, [4210] = {.lex_state = 45, .external_lex_state = 6}, - [4211] = {.lex_state = 45, .external_lex_state = 2}, + [4211] = {.lex_state = 45, .external_lex_state = 6}, [4212] = {.lex_state = 45, .external_lex_state = 6}, [4213] = {.lex_state = 45, .external_lex_state = 6}, [4214] = {.lex_state = 45, .external_lex_state = 6}, @@ -24486,680 +24550,680 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4217] = {.lex_state = 45, .external_lex_state = 6}, [4218] = {.lex_state = 45, .external_lex_state = 6}, [4219] = {.lex_state = 45, .external_lex_state = 6}, - [4220] = {.lex_state = 45, .external_lex_state = 6}, - [4221] = {.lex_state = 45, .external_lex_state = 6}, + [4220] = {.lex_state = 46, .external_lex_state = 2}, + [4221] = {.lex_state = 50, .external_lex_state = 2}, [4222] = {.lex_state = 45, .external_lex_state = 6}, - [4223] = {.lex_state = 45, .external_lex_state = 6}, + [4223] = {.lex_state = 46, .external_lex_state = 2}, [4224] = {.lex_state = 45, .external_lex_state = 6}, [4225] = {.lex_state = 45, .external_lex_state = 6}, - [4226] = {.lex_state = 349, .external_lex_state = 6}, - [4227] = {.lex_state = 45, .external_lex_state = 5}, - [4228] = {.lex_state = 45, .external_lex_state = 2}, - [4229] = {.lex_state = 45, .external_lex_state = 5}, - [4230] = {.lex_state = 46, .external_lex_state = 2}, - [4231] = {.lex_state = 45, .external_lex_state = 5}, - [4232] = {.lex_state = 45, .external_lex_state = 2}, - [4233] = {.lex_state = 45, .external_lex_state = 5}, + [4226] = {.lex_state = 45, .external_lex_state = 2}, + [4227] = {.lex_state = 45, .external_lex_state = 2}, + [4228] = {.lex_state = 46, .external_lex_state = 5}, + [4229] = {.lex_state = 46, .external_lex_state = 5}, + [4230] = {.lex_state = 45, .external_lex_state = 2}, + [4231] = {.lex_state = 45, .external_lex_state = 2}, + [4232] = {.lex_state = 46, .external_lex_state = 2}, + [4233] = {.lex_state = 45, .external_lex_state = 2}, [4234] = {.lex_state = 45, .external_lex_state = 5}, - [4235] = {.lex_state = 45, .external_lex_state = 5}, - [4236] = {.lex_state = 45, .external_lex_state = 2}, + [4235] = {.lex_state = 45, .external_lex_state = 6}, + [4236] = {.lex_state = 45, .external_lex_state = 6}, [4237] = {.lex_state = 45, .external_lex_state = 2}, - [4238] = {.lex_state = 45, .external_lex_state = 2}, - [4239] = {.lex_state = 46, .external_lex_state = 2}, - [4240] = {.lex_state = 45, .external_lex_state = 2}, + [4238] = {.lex_state = 45, .external_lex_state = 5}, + [4239] = {.lex_state = 45, .external_lex_state = 5}, + [4240] = {.lex_state = 45, .external_lex_state = 5}, [4241] = {.lex_state = 45, .external_lex_state = 2}, - [4242] = {.lex_state = 46, .external_lex_state = 2}, - [4243] = {.lex_state = 46, .external_lex_state = 2}, + [4242] = {.lex_state = 45, .external_lex_state = 6}, + [4243] = {.lex_state = 45, .external_lex_state = 2}, [4244] = {.lex_state = 45, .external_lex_state = 2}, [4245] = {.lex_state = 45, .external_lex_state = 2}, - [4246] = {.lex_state = 45, .external_lex_state = 2}, - [4247] = {.lex_state = 45, .external_lex_state = 2}, + [4246] = {.lex_state = 45, .external_lex_state = 6}, + [4247] = {.lex_state = 45, .external_lex_state = 5}, [4248] = {.lex_state = 45, .external_lex_state = 5}, - [4249] = {.lex_state = 45, .external_lex_state = 2}, + [4249] = {.lex_state = 46, .external_lex_state = 2}, [4250] = {.lex_state = 45, .external_lex_state = 5}, - [4251] = {.lex_state = 45, .external_lex_state = 5}, - [4252] = {.lex_state = 45, .external_lex_state = 6}, - [4253] = {.lex_state = 45, .external_lex_state = 6}, - [4254] = {.lex_state = 45, .external_lex_state = 6}, - [4255] = {.lex_state = 50, .external_lex_state = 2}, - [4256] = {.lex_state = 349, .external_lex_state = 2}, - [4257] = {.lex_state = 45, .external_lex_state = 2}, - [4258] = {.lex_state = 45, .external_lex_state = 6}, - [4259] = {.lex_state = 55, .external_lex_state = 2}, - [4260] = {.lex_state = 46, .external_lex_state = 2}, + [4251] = {.lex_state = 45, .external_lex_state = 2}, + [4252] = {.lex_state = 46, .external_lex_state = 2}, + [4253] = {.lex_state = 45, .external_lex_state = 5}, + [4254] = {.lex_state = 45, .external_lex_state = 5}, + [4255] = {.lex_state = 45, .external_lex_state = 2}, + [4256] = {.lex_state = 45, .external_lex_state = 6}, + [4257] = {.lex_state = 46, .external_lex_state = 2}, + [4258] = {.lex_state = 45, .external_lex_state = 2}, + [4259] = {.lex_state = 45, .external_lex_state = 2}, + [4260] = {.lex_state = 45, .external_lex_state = 5}, [4261] = {.lex_state = 45, .external_lex_state = 5}, - [4262] = {.lex_state = 45, .external_lex_state = 2}, + [4262] = {.lex_state = 45, .external_lex_state = 5}, [4263] = {.lex_state = 45, .external_lex_state = 5}, - [4264] = {.lex_state = 45, .external_lex_state = 2}, - [4265] = {.lex_state = 45, .external_lex_state = 6}, - [4266] = {.lex_state = 45, .external_lex_state = 2}, - [4267] = {.lex_state = 45, .external_lex_state = 6}, - [4268] = {.lex_state = 45, .external_lex_state = 6}, - [4269] = {.lex_state = 45, .external_lex_state = 5}, - [4270] = {.lex_state = 45, .external_lex_state = 6}, - [4271] = {.lex_state = 45, .external_lex_state = 5}, - [4272] = {.lex_state = 45, .external_lex_state = 6}, - [4273] = {.lex_state = 45, .external_lex_state = 5}, + [4264] = {.lex_state = 349, .external_lex_state = 6}, + [4265] = {.lex_state = 45, .external_lex_state = 5}, + [4266] = {.lex_state = 45, .external_lex_state = 5}, + [4267] = {.lex_state = 45, .external_lex_state = 5}, + [4268] = {.lex_state = 45, .external_lex_state = 5}, + [4269] = {.lex_state = 45, .external_lex_state = 2}, + [4270] = {.lex_state = 45, .external_lex_state = 2}, + [4271] = {.lex_state = 45, .external_lex_state = 6}, + [4272] = {.lex_state = 45, .external_lex_state = 5}, + [4273] = {.lex_state = 45, .external_lex_state = 2}, [4274] = {.lex_state = 45, .external_lex_state = 2}, - [4275] = {.lex_state = 45, .external_lex_state = 2}, - [4276] = {.lex_state = 45, .external_lex_state = 2}, - [4277] = {.lex_state = 46, .external_lex_state = 2}, - [4278] = {.lex_state = 45, .external_lex_state = 5}, - [4279] = {.lex_state = 45, .external_lex_state = 5}, - [4280] = {.lex_state = 45, .external_lex_state = 2}, - [4281] = {.lex_state = 45, .external_lex_state = 2}, + [4275] = {.lex_state = 45, .external_lex_state = 5}, + [4276] = {.lex_state = 45, .external_lex_state = 5}, + [4277] = {.lex_state = 45, .external_lex_state = 2}, + [4278] = {.lex_state = 45, .external_lex_state = 6}, + [4279] = {.lex_state = 46, .external_lex_state = 2}, + [4280] = {.lex_state = 45, .external_lex_state = 6}, + [4281] = {.lex_state = 45, .external_lex_state = 6}, [4282] = {.lex_state = 45, .external_lex_state = 2}, - [4283] = {.lex_state = 349, .external_lex_state = 5}, - [4284] = {.lex_state = 45, .external_lex_state = 2}, - [4285] = {.lex_state = 45, .external_lex_state = 6}, - [4286] = {.lex_state = 45, .external_lex_state = 6}, - [4287] = {.lex_state = 45, .external_lex_state = 6}, + [4283] = {.lex_state = 45, .external_lex_state = 5}, + [4284] = {.lex_state = 45, .external_lex_state = 5}, + [4285] = {.lex_state = 349, .external_lex_state = 6}, + [4286] = {.lex_state = 55, .external_lex_state = 2}, + [4287] = {.lex_state = 45, .external_lex_state = 5}, [4288] = {.lex_state = 45, .external_lex_state = 2}, - [4289] = {.lex_state = 46, .external_lex_state = 2}, - [4290] = {.lex_state = 46, .external_lex_state = 2}, - [4291] = {.lex_state = 45, .external_lex_state = 2}, - [4292] = {.lex_state = 349, .external_lex_state = 5}, - [4293] = {.lex_state = 45, .external_lex_state = 5}, - [4294] = {.lex_state = 55, .external_lex_state = 2}, - [4295] = {.lex_state = 349, .external_lex_state = 5}, + [4289] = {.lex_state = 45, .external_lex_state = 5}, + [4290] = {.lex_state = 45, .external_lex_state = 2}, + [4291] = {.lex_state = 45, .external_lex_state = 5}, + [4292] = {.lex_state = 45, .external_lex_state = 2}, + [4293] = {.lex_state = 45, .external_lex_state = 6}, + [4294] = {.lex_state = 45, .external_lex_state = 5}, + [4295] = {.lex_state = 46, .external_lex_state = 2}, [4296] = {.lex_state = 45, .external_lex_state = 2}, - [4297] = {.lex_state = 45, .external_lex_state = 5}, + [4297] = {.lex_state = 45, .external_lex_state = 6}, [4298] = {.lex_state = 45, .external_lex_state = 6}, [4299] = {.lex_state = 45, .external_lex_state = 6}, - [4300] = {.lex_state = 45, .external_lex_state = 6}, - [4301] = {.lex_state = 349, .external_lex_state = 5}, - [4302] = {.lex_state = 45, .external_lex_state = 6}, - [4303] = {.lex_state = 45, .external_lex_state = 5}, - [4304] = {.lex_state = 45, .external_lex_state = 2}, - [4305] = {.lex_state = 45, .external_lex_state = 5}, - [4306] = {.lex_state = 45, .external_lex_state = 2}, - [4307] = {.lex_state = 46, .external_lex_state = 2}, - [4308] = {.lex_state = 45, .external_lex_state = 6}, - [4309] = {.lex_state = 45, .external_lex_state = 6}, - [4310] = {.lex_state = 45, .external_lex_state = 2}, + [4300] = {.lex_state = 45, .external_lex_state = 2}, + [4301] = {.lex_state = 45, .external_lex_state = 6}, + [4302] = {.lex_state = 45, .external_lex_state = 5}, + [4303] = {.lex_state = 45, .external_lex_state = 6}, + [4304] = {.lex_state = 45, .external_lex_state = 6}, + [4305] = {.lex_state = 45, .external_lex_state = 6}, + [4306] = {.lex_state = 45, .external_lex_state = 6}, + [4307] = {.lex_state = 45, .external_lex_state = 6}, + [4308] = {.lex_state = 55, .external_lex_state = 2}, + [4309] = {.lex_state = 45, .external_lex_state = 5}, + [4310] = {.lex_state = 45, .external_lex_state = 5}, [4311] = {.lex_state = 45, .external_lex_state = 6}, - [4312] = {.lex_state = 45, .external_lex_state = 2}, - [4313] = {.lex_state = 349, .external_lex_state = 5}, - [4314] = {.lex_state = 45, .external_lex_state = 2}, - [4315] = {.lex_state = 45, .external_lex_state = 6}, + [4312] = {.lex_state = 45, .external_lex_state = 6}, + [4313] = {.lex_state = 45, .external_lex_state = 5}, + [4314] = {.lex_state = 45, .external_lex_state = 6}, + [4315] = {.lex_state = 45, .external_lex_state = 5}, [4316] = {.lex_state = 45, .external_lex_state = 6}, - [4317] = {.lex_state = 349, .external_lex_state = 6}, + [4317] = {.lex_state = 45, .external_lex_state = 2}, [4318] = {.lex_state = 45, .external_lex_state = 6}, [4319] = {.lex_state = 45, .external_lex_state = 6}, - [4320] = {.lex_state = 45, .external_lex_state = 6}, + [4320] = {.lex_state = 45, .external_lex_state = 2}, [4321] = {.lex_state = 45, .external_lex_state = 2}, - [4322] = {.lex_state = 45, .external_lex_state = 6}, - [4323] = {.lex_state = 45, .external_lex_state = 6}, - [4324] = {.lex_state = 45, .external_lex_state = 6}, - [4325] = {.lex_state = 45, .external_lex_state = 2}, + [4322] = {.lex_state = 45, .external_lex_state = 2}, + [4323] = {.lex_state = 45, .external_lex_state = 2}, + [4324] = {.lex_state = 45, .external_lex_state = 5}, + [4325] = {.lex_state = 45, .external_lex_state = 6}, [4326] = {.lex_state = 45, .external_lex_state = 6}, - [4327] = {.lex_state = 45, .external_lex_state = 2}, - [4328] = {.lex_state = 45, .external_lex_state = 6}, - [4329] = {.lex_state = 45, .external_lex_state = 5}, - [4330] = {.lex_state = 45, .external_lex_state = 2}, - [4331] = {.lex_state = 45, .external_lex_state = 5}, - [4332] = {.lex_state = 46, .external_lex_state = 2}, - [4333] = {.lex_state = 46, .external_lex_state = 2}, + [4327] = {.lex_state = 45, .external_lex_state = 6}, + [4328] = {.lex_state = 46, .external_lex_state = 2}, + [4329] = {.lex_state = 45, .external_lex_state = 2}, + [4330] = {.lex_state = 45, .external_lex_state = 6}, + [4331] = {.lex_state = 45, .external_lex_state = 6}, + [4332] = {.lex_state = 45, .external_lex_state = 6}, + [4333] = {.lex_state = 45, .external_lex_state = 2}, [4334] = {.lex_state = 45, .external_lex_state = 2}, - [4335] = {.lex_state = 349, .external_lex_state = 5}, - [4336] = {.lex_state = 45, .external_lex_state = 2}, - [4337] = {.lex_state = 45, .external_lex_state = 6}, + [4335] = {.lex_state = 45, .external_lex_state = 5}, + [4336] = {.lex_state = 45, .external_lex_state = 5}, + [4337] = {.lex_state = 50, .external_lex_state = 2}, [4338] = {.lex_state = 45, .external_lex_state = 2}, - [4339] = {.lex_state = 45, .external_lex_state = 2}, - [4340] = {.lex_state = 45, .external_lex_state = 6}, - [4341] = {.lex_state = 45, .external_lex_state = 6}, - [4342] = {.lex_state = 45, .external_lex_state = 5}, + [4339] = {.lex_state = 45, .external_lex_state = 5}, + [4340] = {.lex_state = 45, .external_lex_state = 5}, + [4341] = {.lex_state = 45, .external_lex_state = 2}, + [4342] = {.lex_state = 45, .external_lex_state = 2}, [4343] = {.lex_state = 45, .external_lex_state = 6}, - [4344] = {.lex_state = 45, .external_lex_state = 5}, + [4344] = {.lex_state = 55, .external_lex_state = 2}, [4345] = {.lex_state = 45, .external_lex_state = 6}, - [4346] = {.lex_state = 45, .external_lex_state = 6}, + [4346] = {.lex_state = 45, .external_lex_state = 5}, [4347] = {.lex_state = 45, .external_lex_state = 2}, - [4348] = {.lex_state = 62, .external_lex_state = 2}, - [4349] = {.lex_state = 71, .external_lex_state = 2}, - [4350] = {.lex_state = 349, .external_lex_state = 7}, - [4351] = {.lex_state = 349, .external_lex_state = 7}, - [4352] = {.lex_state = 62, .external_lex_state = 2}, - [4353] = {.lex_state = 62, .external_lex_state = 2}, + [4348] = {.lex_state = 45, .external_lex_state = 2}, + [4349] = {.lex_state = 45, .external_lex_state = 2}, + [4350] = {.lex_state = 62, .external_lex_state = 2}, + [4351] = {.lex_state = 71, .external_lex_state = 2}, + [4352] = {.lex_state = 349, .external_lex_state = 7}, + [4353] = {.lex_state = 71, .external_lex_state = 2}, [4354] = {.lex_state = 62, .external_lex_state = 2}, - [4355] = {.lex_state = 62, .external_lex_state = 2}, - [4356] = {.lex_state = 349, .external_lex_state = 5}, - [4357] = {.lex_state = 349, .external_lex_state = 5}, - [4358] = {.lex_state = 45, .external_lex_state = 5}, - [4359] = {.lex_state = 45, .external_lex_state = 5}, - [4360] = {.lex_state = 45, .external_lex_state = 5}, - [4361] = {.lex_state = 62, .external_lex_state = 2}, - [4362] = {.lex_state = 71, .external_lex_state = 2}, - [4363] = {.lex_state = 45, .external_lex_state = 6}, - [4364] = {.lex_state = 71, .external_lex_state = 2}, - [4365] = {.lex_state = 71, .external_lex_state = 2}, + [4355] = {.lex_state = 45, .external_lex_state = 5}, + [4356] = {.lex_state = 45, .external_lex_state = 5}, + [4357] = {.lex_state = 45, .external_lex_state = 5}, + [4358] = {.lex_state = 45, .external_lex_state = 2}, + [4359] = {.lex_state = 62, .external_lex_state = 2}, + [4360] = {.lex_state = 62, .external_lex_state = 2}, + [4361] = {.lex_state = 45, .external_lex_state = 6}, + [4362] = {.lex_state = 349, .external_lex_state = 7}, + [4363] = {.lex_state = 45, .external_lex_state = 2}, + [4364] = {.lex_state = 349, .external_lex_state = 7}, + [4365] = {.lex_state = 349, .external_lex_state = 6}, [4366] = {.lex_state = 349, .external_lex_state = 7}, - [4367] = {.lex_state = 45, .external_lex_state = 2}, - [4368] = {.lex_state = 45, .external_lex_state = 2}, - [4369] = {.lex_state = 349, .external_lex_state = 5}, - [4370] = {.lex_state = 62, .external_lex_state = 2}, - [4371] = {.lex_state = 62, .external_lex_state = 2}, - [4372] = {.lex_state = 349, .external_lex_state = 7}, - [4373] = {.lex_state = 349, .external_lex_state = 7}, - [4374] = {.lex_state = 349, .external_lex_state = 7}, - [4375] = {.lex_state = 349, .external_lex_state = 6}, - [4376] = {.lex_state = 349, .external_lex_state = 7}, - [4377] = {.lex_state = 71, .external_lex_state = 2}, + [4367] = {.lex_state = 349, .external_lex_state = 7}, + [4368] = {.lex_state = 349, .external_lex_state = 7}, + [4369] = {.lex_state = 71, .external_lex_state = 2}, + [4370] = {.lex_state = 50, .external_lex_state = 2}, + [4371] = {.lex_state = 349, .external_lex_state = 7}, + [4372] = {.lex_state = 62, .external_lex_state = 2}, + [4373] = {.lex_state = 349, .external_lex_state = 5}, + [4374] = {.lex_state = 349, .external_lex_state = 5}, + [4375] = {.lex_state = 349, .external_lex_state = 5}, + [4376] = {.lex_state = 349, .external_lex_state = 5}, + [4377] = {.lex_state = 45, .external_lex_state = 5}, [4378] = {.lex_state = 71, .external_lex_state = 2}, - [4379] = {.lex_state = 50, .external_lex_state = 2}, - [4380] = {.lex_state = 62, .external_lex_state = 2}, - [4381] = {.lex_state = 349, .external_lex_state = 5}, - [4382] = {.lex_state = 349, .external_lex_state = 5}, - [4383] = {.lex_state = 45, .external_lex_state = 5}, - [4384] = {.lex_state = 349, .external_lex_state = 7}, - [4385] = {.lex_state = 349, .external_lex_state = 5}, - [4386] = {.lex_state = 46, .external_lex_state = 5}, + [4379] = {.lex_state = 71, .external_lex_state = 2}, + [4380] = {.lex_state = 349, .external_lex_state = 5}, + [4381] = {.lex_state = 349, .external_lex_state = 7}, + [4382] = {.lex_state = 62, .external_lex_state = 2}, + [4383] = {.lex_state = 62, .external_lex_state = 2}, + [4384] = {.lex_state = 62, .external_lex_state = 2}, + [4385] = {.lex_state = 62, .external_lex_state = 2}, + [4386] = {.lex_state = 71, .external_lex_state = 2}, [4387] = {.lex_state = 349, .external_lex_state = 5}, - [4388] = {.lex_state = 47, .external_lex_state = 2}, - [4389] = {.lex_state = 349, .external_lex_state = 5}, - [4390] = {.lex_state = 46, .external_lex_state = 5}, - [4391] = {.lex_state = 349, .external_lex_state = 2}, - [4392] = {.lex_state = 47, .external_lex_state = 2}, + [4388] = {.lex_state = 349, .external_lex_state = 2}, + [4389] = {.lex_state = 349, .external_lex_state = 2}, + [4390] = {.lex_state = 349, .external_lex_state = 5}, + [4391] = {.lex_state = 47, .external_lex_state = 2}, + [4392] = {.lex_state = 349, .external_lex_state = 5}, [4393] = {.lex_state = 349, .external_lex_state = 2}, - [4394] = {.lex_state = 46, .external_lex_state = 5}, - [4395] = {.lex_state = 349, .external_lex_state = 2}, - [4396] = {.lex_state = 349, .external_lex_state = 2}, + [4394] = {.lex_state = 349, .external_lex_state = 2}, + [4395] = {.lex_state = 349, .external_lex_state = 5}, + [4396] = {.lex_state = 349, .external_lex_state = 5}, [4397] = {.lex_state = 349, .external_lex_state = 5}, - [4398] = {.lex_state = 349, .external_lex_state = 2}, - [4399] = {.lex_state = 349, .external_lex_state = 5}, - [4400] = {.lex_state = 349, .external_lex_state = 5}, + [4398] = {.lex_state = 349, .external_lex_state = 5}, + [4399] = {.lex_state = 46, .external_lex_state = 5}, + [4400] = {.lex_state = 46, .external_lex_state = 5}, [4401] = {.lex_state = 349, .external_lex_state = 5}, - [4402] = {.lex_state = 349, .external_lex_state = 5}, - [4403] = {.lex_state = 46, .external_lex_state = 5}, - [4404] = {.lex_state = 74, .external_lex_state = 2}, + [4402] = {.lex_state = 47, .external_lex_state = 2}, + [4403] = {.lex_state = 349, .external_lex_state = 5}, + [4404] = {.lex_state = 349, .external_lex_state = 5}, [4405] = {.lex_state = 47, .external_lex_state = 2}, [4406] = {.lex_state = 349, .external_lex_state = 5}, [4407] = {.lex_state = 349, .external_lex_state = 5}, - [4408] = {.lex_state = 349, .external_lex_state = 5}, - [4409] = {.lex_state = 45, .external_lex_state = 2}, - [4410] = {.lex_state = 349, .external_lex_state = 2}, + [4408] = {.lex_state = 349, .external_lex_state = 2}, + [4409] = {.lex_state = 349, .external_lex_state = 2}, + [4410] = {.lex_state = 349, .external_lex_state = 5}, [4411] = {.lex_state = 349, .external_lex_state = 2}, - [4412] = {.lex_state = 349, .external_lex_state = 5}, - [4413] = {.lex_state = 46, .external_lex_state = 5}, + [4412] = {.lex_state = 349, .external_lex_state = 2}, + [4413] = {.lex_state = 349, .external_lex_state = 5}, [4414] = {.lex_state = 47, .external_lex_state = 2}, - [4415] = {.lex_state = 349, .external_lex_state = 5}, - [4416] = {.lex_state = 62, .external_lex_state = 2}, - [4417] = {.lex_state = 47, .external_lex_state = 2}, - [4418] = {.lex_state = 349, .external_lex_state = 2}, - [4419] = {.lex_state = 349, .external_lex_state = 5}, - [4420] = {.lex_state = 47, .external_lex_state = 2}, + [4415] = {.lex_state = 349, .external_lex_state = 2}, + [4416] = {.lex_state = 349, .external_lex_state = 2}, + [4417] = {.lex_state = 349, .external_lex_state = 2}, + [4418] = {.lex_state = 349, .external_lex_state = 5}, + [4419] = {.lex_state = 349, .external_lex_state = 2}, + [4420] = {.lex_state = 349, .external_lex_state = 2}, [4421] = {.lex_state = 349, .external_lex_state = 2}, - [4422] = {.lex_state = 349, .external_lex_state = 5}, + [4422] = {.lex_state = 47, .external_lex_state = 2}, [4423] = {.lex_state = 349, .external_lex_state = 2}, - [4424] = {.lex_state = 47, .external_lex_state = 2}, - [4425] = {.lex_state = 349, .external_lex_state = 5}, + [4424] = {.lex_state = 349, .external_lex_state = 5}, + [4425] = {.lex_state = 45, .external_lex_state = 2}, [4426] = {.lex_state = 349, .external_lex_state = 5}, [4427] = {.lex_state = 349, .external_lex_state = 5}, [4428] = {.lex_state = 349, .external_lex_state = 5}, - [4429] = {.lex_state = 349, .external_lex_state = 5}, + [4429] = {.lex_state = 349, .external_lex_state = 2}, [4430] = {.lex_state = 349, .external_lex_state = 5}, [4431] = {.lex_state = 349, .external_lex_state = 5}, - [4432] = {.lex_state = 349, .external_lex_state = 2}, - [4433] = {.lex_state = 349, .external_lex_state = 2}, + [4432] = {.lex_state = 349, .external_lex_state = 5}, + [4433] = {.lex_state = 349, .external_lex_state = 5}, [4434] = {.lex_state = 349, .external_lex_state = 5}, - [4435] = {.lex_state = 47, .external_lex_state = 2}, - [4436] = {.lex_state = 47, .external_lex_state = 2}, - [4437] = {.lex_state = 45, .external_lex_state = 2}, - [4438] = {.lex_state = 349, .external_lex_state = 5}, - [4439] = {.lex_state = 349, .external_lex_state = 5}, - [4440] = {.lex_state = 47, .external_lex_state = 2}, + [4435] = {.lex_state = 349, .external_lex_state = 5}, + [4436] = {.lex_state = 349, .external_lex_state = 5}, + [4437] = {.lex_state = 349, .external_lex_state = 5}, + [4438] = {.lex_state = 349, .external_lex_state = 2}, + [4439] = {.lex_state = 45, .external_lex_state = 2}, + [4440] = {.lex_state = 349, .external_lex_state = 5}, [4441] = {.lex_state = 349, .external_lex_state = 2}, - [4442] = {.lex_state = 47, .external_lex_state = 2}, - [4443] = {.lex_state = 46, .external_lex_state = 5}, - [4444] = {.lex_state = 349, .external_lex_state = 2}, + [4442] = {.lex_state = 349, .external_lex_state = 5}, + [4443] = {.lex_state = 349, .external_lex_state = 5}, + [4444] = {.lex_state = 45, .external_lex_state = 2}, [4445] = {.lex_state = 349, .external_lex_state = 5}, - [4446] = {.lex_state = 349, .external_lex_state = 5}, + [4446] = {.lex_state = 45, .external_lex_state = 2}, [4447] = {.lex_state = 349, .external_lex_state = 5}, - [4448] = {.lex_state = 349, .external_lex_state = 2}, - [4449] = {.lex_state = 349, .external_lex_state = 2}, + [4448] = {.lex_state = 46, .external_lex_state = 5}, + [4449] = {.lex_state = 349, .external_lex_state = 5}, [4450] = {.lex_state = 349, .external_lex_state = 5}, [4451] = {.lex_state = 349, .external_lex_state = 5}, - [4452] = {.lex_state = 349, .external_lex_state = 5}, + [4452] = {.lex_state = 62, .external_lex_state = 2}, [4453] = {.lex_state = 47, .external_lex_state = 2}, - [4454] = {.lex_state = 45, .external_lex_state = 2}, - [4455] = {.lex_state = 349, .external_lex_state = 5}, + [4454] = {.lex_state = 349, .external_lex_state = 5}, + [4455] = {.lex_state = 47, .external_lex_state = 2}, [4456] = {.lex_state = 349, .external_lex_state = 5}, - [4457] = {.lex_state = 349, .external_lex_state = 5}, - [4458] = {.lex_state = 47, .external_lex_state = 2}, - [4459] = {.lex_state = 45, .external_lex_state = 2}, - [4460] = {.lex_state = 349, .external_lex_state = 5}, + [4457] = {.lex_state = 74, .external_lex_state = 2}, + [4458] = {.lex_state = 349, .external_lex_state = 5}, + [4459] = {.lex_state = 349, .external_lex_state = 5}, + [4460] = {.lex_state = 74, .external_lex_state = 2}, [4461] = {.lex_state = 47, .external_lex_state = 2}, - [4462] = {.lex_state = 45, .external_lex_state = 2}, - [4463] = {.lex_state = 47, .external_lex_state = 2}, + [4462] = {.lex_state = 349, .external_lex_state = 5}, + [4463] = {.lex_state = 349, .external_lex_state = 5}, [4464] = {.lex_state = 349, .external_lex_state = 5}, [4465] = {.lex_state = 349, .external_lex_state = 5}, [4466] = {.lex_state = 47, .external_lex_state = 2}, - [4467] = {.lex_state = 349, .external_lex_state = 5}, - [4468] = {.lex_state = 349, .external_lex_state = 5}, - [4469] = {.lex_state = 349, .external_lex_state = 2}, - [4470] = {.lex_state = 46, .external_lex_state = 5}, - [4471] = {.lex_state = 45, .external_lex_state = 2}, - [4472] = {.lex_state = 349, .external_lex_state = 5}, + [4467] = {.lex_state = 349, .external_lex_state = 2}, + [4468] = {.lex_state = 47, .external_lex_state = 2}, + [4469] = {.lex_state = 349, .external_lex_state = 5}, + [4470] = {.lex_state = 349, .external_lex_state = 5}, + [4471] = {.lex_state = 349, .external_lex_state = 2}, + [4472] = {.lex_state = 62, .external_lex_state = 2}, [4473] = {.lex_state = 349, .external_lex_state = 5}, - [4474] = {.lex_state = 349, .external_lex_state = 5}, - [4475] = {.lex_state = 349, .external_lex_state = 5}, + [4474] = {.lex_state = 45, .external_lex_state = 2}, + [4475] = {.lex_state = 47, .external_lex_state = 2}, [4476] = {.lex_state = 349, .external_lex_state = 5}, - [4477] = {.lex_state = 349, .external_lex_state = 5}, - [4478] = {.lex_state = 349, .external_lex_state = 5}, + [4477] = {.lex_state = 349, .external_lex_state = 2}, + [4478] = {.lex_state = 349, .external_lex_state = 2}, [4479] = {.lex_state = 349, .external_lex_state = 5}, - [4480] = {.lex_state = 349, .external_lex_state = 5}, + [4480] = {.lex_state = 47, .external_lex_state = 2}, [4481] = {.lex_state = 349, .external_lex_state = 5}, [4482] = {.lex_state = 349, .external_lex_state = 5}, - [4483] = {.lex_state = 349, .external_lex_state = 5}, - [4484] = {.lex_state = 349, .external_lex_state = 5}, - [4485] = {.lex_state = 349, .external_lex_state = 5}, - [4486] = {.lex_state = 349, .external_lex_state = 5}, - [4487] = {.lex_state = 349, .external_lex_state = 2}, + [4483] = {.lex_state = 349, .external_lex_state = 2}, + [4484] = {.lex_state = 45, .external_lex_state = 2}, + [4485] = {.lex_state = 47, .external_lex_state = 2}, + [4486] = {.lex_state = 47, .external_lex_state = 2}, + [4487] = {.lex_state = 45, .external_lex_state = 2}, [4488] = {.lex_state = 349, .external_lex_state = 5}, - [4489] = {.lex_state = 349, .external_lex_state = 5}, + [4489] = {.lex_state = 349, .external_lex_state = 2}, [4490] = {.lex_state = 349, .external_lex_state = 5}, [4491] = {.lex_state = 349, .external_lex_state = 5}, - [4492] = {.lex_state = 349, .external_lex_state = 5}, - [4493] = {.lex_state = 349, .external_lex_state = 5}, - [4494] = {.lex_state = 349, .external_lex_state = 5}, - [4495] = {.lex_state = 349, .external_lex_state = 5}, - [4496] = {.lex_state = 349, .external_lex_state = 2}, - [4497] = {.lex_state = 349, .external_lex_state = 5}, + [4492] = {.lex_state = 47, .external_lex_state = 2}, + [4493] = {.lex_state = 349, .external_lex_state = 2}, + [4494] = {.lex_state = 46, .external_lex_state = 5}, + [4495] = {.lex_state = 46, .external_lex_state = 5}, + [4496] = {.lex_state = 47, .external_lex_state = 2}, + [4497] = {.lex_state = 47, .external_lex_state = 2}, [4498] = {.lex_state = 349, .external_lex_state = 5}, - [4499] = {.lex_state = 349, .external_lex_state = 5}, - [4500] = {.lex_state = 349, .external_lex_state = 5}, - [4501] = {.lex_state = 349, .external_lex_state = 5}, + [4499] = {.lex_state = 47, .external_lex_state = 2}, + [4500] = {.lex_state = 349, .external_lex_state = 2}, + [4501] = {.lex_state = 45, .external_lex_state = 2}, [4502] = {.lex_state = 47, .external_lex_state = 2}, [4503] = {.lex_state = 349, .external_lex_state = 5}, - [4504] = {.lex_state = 349, .external_lex_state = 5}, + [4504] = {.lex_state = 349, .external_lex_state = 2}, [4505] = {.lex_state = 349, .external_lex_state = 5}, - [4506] = {.lex_state = 349, .external_lex_state = 5}, + [4506] = {.lex_state = 47, .external_lex_state = 2}, [4507] = {.lex_state = 47, .external_lex_state = 2}, [4508] = {.lex_state = 349, .external_lex_state = 2}, - [4509] = {.lex_state = 349, .external_lex_state = 5}, - [4510] = {.lex_state = 47, .external_lex_state = 2}, - [4511] = {.lex_state = 47, .external_lex_state = 2}, + [4509] = {.lex_state = 349, .external_lex_state = 2}, + [4510] = {.lex_state = 62, .external_lex_state = 2}, + [4511] = {.lex_state = 50, .external_lex_state = 2}, [4512] = {.lex_state = 349, .external_lex_state = 2}, [4513] = {.lex_state = 349, .external_lex_state = 5}, - [4514] = {.lex_state = 349, .external_lex_state = 2}, - [4515] = {.lex_state = 349, .external_lex_state = 5}, - [4516] = {.lex_state = 349, .external_lex_state = 5}, - [4517] = {.lex_state = 349, .external_lex_state = 5}, + [4514] = {.lex_state = 47, .external_lex_state = 2}, + [4515] = {.lex_state = 74, .external_lex_state = 2}, + [4516] = {.lex_state = 74, .external_lex_state = 2}, + [4517] = {.lex_state = 47, .external_lex_state = 2}, [4518] = {.lex_state = 349, .external_lex_state = 5}, - [4519] = {.lex_state = 47, .external_lex_state = 2}, + [4519] = {.lex_state = 349, .external_lex_state = 2}, [4520] = {.lex_state = 349, .external_lex_state = 5}, [4521] = {.lex_state = 349, .external_lex_state = 6}, - [4522] = {.lex_state = 46, .external_lex_state = 5}, - [4523] = {.lex_state = 349, .external_lex_state = 2}, - [4524] = {.lex_state = 349, .external_lex_state = 5}, - [4525] = {.lex_state = 349, .external_lex_state = 5}, - [4526] = {.lex_state = 349, .external_lex_state = 5}, - [4527] = {.lex_state = 45, .external_lex_state = 2}, - [4528] = {.lex_state = 349, .external_lex_state = 2}, + [4522] = {.lex_state = 349, .external_lex_state = 6}, + [4523] = {.lex_state = 349, .external_lex_state = 5}, + [4524] = {.lex_state = 349, .external_lex_state = 6}, + [4525] = {.lex_state = 349, .external_lex_state = 6}, + [4526] = {.lex_state = 349, .external_lex_state = 6}, + [4527] = {.lex_state = 349, .external_lex_state = 6}, + [4528] = {.lex_state = 47, .external_lex_state = 2}, [4529] = {.lex_state = 349, .external_lex_state = 5}, - [4530] = {.lex_state = 349, .external_lex_state = 2}, - [4531] = {.lex_state = 62, .external_lex_state = 2}, - [4532] = {.lex_state = 50, .external_lex_state = 2}, + [4530] = {.lex_state = 349, .external_lex_state = 5}, + [4531] = {.lex_state = 47, .external_lex_state = 2}, + [4532] = {.lex_state = 47, .external_lex_state = 2}, [4533] = {.lex_state = 349, .external_lex_state = 5}, - [4534] = {.lex_state = 349, .external_lex_state = 5}, - [4535] = {.lex_state = 349, .external_lex_state = 5}, + [4534] = {.lex_state = 47, .external_lex_state = 2}, + [4535] = {.lex_state = 62, .external_lex_state = 2}, [4536] = {.lex_state = 349, .external_lex_state = 5}, [4537] = {.lex_state = 349, .external_lex_state = 5}, - [4538] = {.lex_state = 349, .external_lex_state = 6}, - [4539] = {.lex_state = 62, .external_lex_state = 2}, - [4540] = {.lex_state = 47, .external_lex_state = 2}, - [4541] = {.lex_state = 349, .external_lex_state = 5}, + [4538] = {.lex_state = 349, .external_lex_state = 5}, + [4539] = {.lex_state = 349, .external_lex_state = 5}, + [4540] = {.lex_state = 349, .external_lex_state = 5}, + [4541] = {.lex_state = 46, .external_lex_state = 5}, [4542] = {.lex_state = 349, .external_lex_state = 5}, - [4543] = {.lex_state = 45, .external_lex_state = 2}, - [4544] = {.lex_state = 349, .external_lex_state = 5}, - [4545] = {.lex_state = 45, .external_lex_state = 2}, + [4543] = {.lex_state = 349, .external_lex_state = 5}, + [4544] = {.lex_state = 349, .external_lex_state = 2}, + [4545] = {.lex_state = 349, .external_lex_state = 2}, [4546] = {.lex_state = 349, .external_lex_state = 5}, - [4547] = {.lex_state = 47, .external_lex_state = 2}, + [4547] = {.lex_state = 349, .external_lex_state = 5}, [4548] = {.lex_state = 349, .external_lex_state = 5}, - [4549] = {.lex_state = 349, .external_lex_state = 6}, - [4550] = {.lex_state = 349, .external_lex_state = 6}, + [4549] = {.lex_state = 45, .external_lex_state = 2}, + [4550] = {.lex_state = 45, .external_lex_state = 2}, [4551] = {.lex_state = 349, .external_lex_state = 2}, - [4552] = {.lex_state = 349, .external_lex_state = 2}, - [4553] = {.lex_state = 349, .external_lex_state = 6}, - [4554] = {.lex_state = 47, .external_lex_state = 2}, + [4552] = {.lex_state = 45, .external_lex_state = 2}, + [4553] = {.lex_state = 349, .external_lex_state = 5}, + [4554] = {.lex_state = 46, .external_lex_state = 5}, [4555] = {.lex_state = 349, .external_lex_state = 5}, [4556] = {.lex_state = 349, .external_lex_state = 5}, - [4557] = {.lex_state = 349, .external_lex_state = 6}, + [4557] = {.lex_state = 349, .external_lex_state = 5}, [4558] = {.lex_state = 349, .external_lex_state = 5}, - [4559] = {.lex_state = 47, .external_lex_state = 2}, - [4560] = {.lex_state = 349, .external_lex_state = 5}, - [4561] = {.lex_state = 349, .external_lex_state = 2}, - [4562] = {.lex_state = 349, .external_lex_state = 2}, - [4563] = {.lex_state = 349, .external_lex_state = 2}, - [4564] = {.lex_state = 349, .external_lex_state = 2}, + [4559] = {.lex_state = 349, .external_lex_state = 5}, + [4560] = {.lex_state = 47, .external_lex_state = 2}, + [4561] = {.lex_state = 349, .external_lex_state = 5}, + [4562] = {.lex_state = 349, .external_lex_state = 5}, + [4563] = {.lex_state = 62, .external_lex_state = 2}, + [4564] = {.lex_state = 349, .external_lex_state = 5}, [4565] = {.lex_state = 349, .external_lex_state = 5}, [4566] = {.lex_state = 349, .external_lex_state = 2}, - [4567] = {.lex_state = 349, .external_lex_state = 5}, - [4568] = {.lex_state = 349, .external_lex_state = 5}, - [4569] = {.lex_state = 349, .external_lex_state = 5}, - [4570] = {.lex_state = 349, .external_lex_state = 5}, - [4571] = {.lex_state = 349, .external_lex_state = 2}, + [4567] = {.lex_state = 47, .external_lex_state = 2}, + [4568] = {.lex_state = 349, .external_lex_state = 2}, + [4569] = {.lex_state = 47, .external_lex_state = 2}, + [4570] = {.lex_state = 349, .external_lex_state = 2}, + [4571] = {.lex_state = 47, .external_lex_state = 2}, [4572] = {.lex_state = 349, .external_lex_state = 5}, - [4573] = {.lex_state = 74, .external_lex_state = 2}, - [4574] = {.lex_state = 47, .external_lex_state = 2}, - [4575] = {.lex_state = 349, .external_lex_state = 5}, - [4576] = {.lex_state = 349, .external_lex_state = 2}, - [4577] = {.lex_state = 47, .external_lex_state = 2}, - [4578] = {.lex_state = 349, .external_lex_state = 2}, - [4579] = {.lex_state = 349, .external_lex_state = 2}, - [4580] = {.lex_state = 349, .external_lex_state = 5}, + [4573] = {.lex_state = 349, .external_lex_state = 5}, + [4574] = {.lex_state = 349, .external_lex_state = 5}, + [4575] = {.lex_state = 46, .external_lex_state = 5}, + [4576] = {.lex_state = 349, .external_lex_state = 5}, + [4577] = {.lex_state = 349, .external_lex_state = 5}, + [4578] = {.lex_state = 349, .external_lex_state = 5}, + [4579] = {.lex_state = 45, .external_lex_state = 2}, + [4580] = {.lex_state = 349, .external_lex_state = 2}, [4581] = {.lex_state = 349, .external_lex_state = 5}, [4582] = {.lex_state = 349, .external_lex_state = 2}, - [4583] = {.lex_state = 47, .external_lex_state = 2}, + [4583] = {.lex_state = 349, .external_lex_state = 2}, [4584] = {.lex_state = 349, .external_lex_state = 5}, - [4585] = {.lex_state = 349, .external_lex_state = 5}, + [4585] = {.lex_state = 47, .external_lex_state = 2}, [4586] = {.lex_state = 349, .external_lex_state = 5}, [4587] = {.lex_state = 349, .external_lex_state = 2}, - [4588] = {.lex_state = 45, .external_lex_state = 2}, - [4589] = {.lex_state = 349, .external_lex_state = 5}, - [4590] = {.lex_state = 349, .external_lex_state = 5}, + [4588] = {.lex_state = 349, .external_lex_state = 5}, + [4589] = {.lex_state = 45, .external_lex_state = 2}, + [4590] = {.lex_state = 349, .external_lex_state = 2}, [4591] = {.lex_state = 349, .external_lex_state = 5}, [4592] = {.lex_state = 349, .external_lex_state = 5}, [4593] = {.lex_state = 349, .external_lex_state = 5}, [4594] = {.lex_state = 349, .external_lex_state = 5}, [4595] = {.lex_state = 349, .external_lex_state = 5}, - [4596] = {.lex_state = 62, .external_lex_state = 2}, - [4597] = {.lex_state = 74, .external_lex_state = 2}, - [4598] = {.lex_state = 74, .external_lex_state = 2}, - [4599] = {.lex_state = 62, .external_lex_state = 2}, + [4596] = {.lex_state = 349, .external_lex_state = 5}, + [4597] = {.lex_state = 349, .external_lex_state = 5}, + [4598] = {.lex_state = 349, .external_lex_state = 5}, + [4599] = {.lex_state = 47, .external_lex_state = 2}, [4600] = {.lex_state = 349, .external_lex_state = 5}, [4601] = {.lex_state = 349, .external_lex_state = 5}, [4602] = {.lex_state = 349, .external_lex_state = 5}, - [4603] = {.lex_state = 349, .external_lex_state = 2}, - [4604] = {.lex_state = 349, .external_lex_state = 5}, - [4605] = {.lex_state = 47, .external_lex_state = 2}, - [4606] = {.lex_state = 45, .external_lex_state = 2}, + [4603] = {.lex_state = 349, .external_lex_state = 5}, + [4604] = {.lex_state = 56, .external_lex_state = 2}, + [4605] = {.lex_state = 349, .external_lex_state = 5}, + [4606] = {.lex_state = 349, .external_lex_state = 5}, [4607] = {.lex_state = 349, .external_lex_state = 5}, - [4608] = {.lex_state = 47, .external_lex_state = 2}, - [4609] = {.lex_state = 62, .external_lex_state = 2}, - [4610] = {.lex_state = 47, .external_lex_state = 2}, + [4608] = {.lex_state = 349, .external_lex_state = 5}, + [4609] = {.lex_state = 349, .external_lex_state = 5}, + [4610] = {.lex_state = 349, .external_lex_state = 5}, [4611] = {.lex_state = 349, .external_lex_state = 5}, - [4612] = {.lex_state = 349, .external_lex_state = 2}, - [4613] = {.lex_state = 349, .external_lex_state = 5}, - [4614] = {.lex_state = 349, .external_lex_state = 5}, - [4615] = {.lex_state = 47, .external_lex_state = 2}, - [4616] = {.lex_state = 349, .external_lex_state = 5}, - [4617] = {.lex_state = 349, .external_lex_state = 5}, + [4612] = {.lex_state = 349, .external_lex_state = 5}, + [4613] = {.lex_state = 47, .external_lex_state = 2}, + [4614] = {.lex_state = 349, .external_lex_state = 2}, + [4615] = {.lex_state = 349, .external_lex_state = 5}, + [4616] = {.lex_state = 47, .external_lex_state = 2}, + [4617] = {.lex_state = 47, .external_lex_state = 2}, [4618] = {.lex_state = 349, .external_lex_state = 5}, [4619] = {.lex_state = 349, .external_lex_state = 5}, - [4620] = {.lex_state = 45, .external_lex_state = 2}, - [4621] = {.lex_state = 349, .external_lex_state = 2}, - [4622] = {.lex_state = 349, .external_lex_state = 5}, - [4623] = {.lex_state = 47, .external_lex_state = 2}, - [4624] = {.lex_state = 349, .external_lex_state = 2}, + [4620] = {.lex_state = 349, .external_lex_state = 2}, + [4621] = {.lex_state = 349, .external_lex_state = 5}, + [4622] = {.lex_state = 62, .external_lex_state = 2}, + [4623] = {.lex_state = 349, .external_lex_state = 5}, + [4624] = {.lex_state = 47, .external_lex_state = 2}, [4625] = {.lex_state = 349, .external_lex_state = 5}, - [4626] = {.lex_state = 74, .external_lex_state = 2}, - [4627] = {.lex_state = 349, .external_lex_state = 5}, + [4626] = {.lex_state = 349, .external_lex_state = 5}, + [4627] = {.lex_state = 349, .external_lex_state = 2}, [4628] = {.lex_state = 349, .external_lex_state = 5}, - [4629] = {.lex_state = 349, .external_lex_state = 5}, - [4630] = {.lex_state = 56, .external_lex_state = 2}, - [4631] = {.lex_state = 45, .external_lex_state = 2}, - [4632] = {.lex_state = 47, .external_lex_state = 2}, + [4629] = {.lex_state = 62, .external_lex_state = 2}, + [4630] = {.lex_state = 349, .external_lex_state = 5}, + [4631] = {.lex_state = 47, .external_lex_state = 2}, + [4632] = {.lex_state = 349, .external_lex_state = 5}, [4633] = {.lex_state = 349, .external_lex_state = 5}, - [4634] = {.lex_state = 47, .external_lex_state = 2}, + [4634] = {.lex_state = 349, .external_lex_state = 5}, [4635] = {.lex_state = 349, .external_lex_state = 5}, - [4636] = {.lex_state = 349, .external_lex_state = 2}, + [4636] = {.lex_state = 349, .external_lex_state = 5}, [4637] = {.lex_state = 349, .external_lex_state = 5}, - [4638] = {.lex_state = 62, .external_lex_state = 2}, - [4639] = {.lex_state = 47, .external_lex_state = 2}, - [4640] = {.lex_state = 47, .external_lex_state = 2}, - [4641] = {.lex_state = 47, .external_lex_state = 2}, - [4642] = {.lex_state = 349, .external_lex_state = 2}, - [4643] = {.lex_state = 349, .external_lex_state = 5}, - [4644] = {.lex_state = 349, .external_lex_state = 5}, + [4638] = {.lex_state = 349, .external_lex_state = 5}, + [4639] = {.lex_state = 349, .external_lex_state = 2}, + [4640] = {.lex_state = 349, .external_lex_state = 5}, + [4641] = {.lex_state = 349, .external_lex_state = 5}, + [4642] = {.lex_state = 349, .external_lex_state = 5}, + [4643] = {.lex_state = 74, .external_lex_state = 2}, + [4644] = {.lex_state = 47, .external_lex_state = 2}, [4645] = {.lex_state = 349, .external_lex_state = 5}, [4646] = {.lex_state = 349, .external_lex_state = 5}, - [4647] = {.lex_state = 349, .external_lex_state = 2}, + [4647] = {.lex_state = 349, .external_lex_state = 5}, [4648] = {.lex_state = 349, .external_lex_state = 5}, [4649] = {.lex_state = 349, .external_lex_state = 5}, [4650] = {.lex_state = 349, .external_lex_state = 2}, - [4651] = {.lex_state = 349, .external_lex_state = 2}, - [4652] = {.lex_state = 47, .external_lex_state = 2}, + [4651] = {.lex_state = 349, .external_lex_state = 5}, + [4652] = {.lex_state = 46, .external_lex_state = 5}, [4653] = {.lex_state = 349, .external_lex_state = 5}, - [4654] = {.lex_state = 46, .external_lex_state = 5}, + [4654] = {.lex_state = 349, .external_lex_state = 5}, [4655] = {.lex_state = 349, .external_lex_state = 5}, - [4656] = {.lex_state = 349, .external_lex_state = 6}, - [4657] = {.lex_state = 349, .external_lex_state = 2}, - [4658] = {.lex_state = 349, .external_lex_state = 5}, - [4659] = {.lex_state = 349, .external_lex_state = 7}, - [4660] = {.lex_state = 47, .external_lex_state = 2}, - [4661] = {.lex_state = 349, .external_lex_state = 6}, - [4662] = {.lex_state = 45, .external_lex_state = 2}, - [4663] = {.lex_state = 45, .external_lex_state = 2}, - [4664] = {.lex_state = 349, .external_lex_state = 2}, - [4665] = {.lex_state = 349, .external_lex_state = 7}, - [4666] = {.lex_state = 349, .external_lex_state = 2}, - [4667] = {.lex_state = 349, .external_lex_state = 5}, + [4656] = {.lex_state = 349, .external_lex_state = 5}, + [4657] = {.lex_state = 45, .external_lex_state = 2}, + [4658] = {.lex_state = 45, .external_lex_state = 2}, + [4659] = {.lex_state = 47, .external_lex_state = 2}, + [4660] = {.lex_state = 349, .external_lex_state = 2}, + [4661] = {.lex_state = 349, .external_lex_state = 2}, + [4662] = {.lex_state = 349, .external_lex_state = 5}, + [4663] = {.lex_state = 349, .external_lex_state = 5}, + [4664] = {.lex_state = 45, .external_lex_state = 2}, + [4665] = {.lex_state = 45, .external_lex_state = 2}, + [4666] = {.lex_state = 45, .external_lex_state = 2}, + [4667] = {.lex_state = 47, .external_lex_state = 2}, [4668] = {.lex_state = 349, .external_lex_state = 5}, - [4669] = {.lex_state = 45, .external_lex_state = 2}, - [4670] = {.lex_state = 349, .external_lex_state = 2}, - [4671] = {.lex_state = 45, .external_lex_state = 2}, - [4672] = {.lex_state = 349, .external_lex_state = 5}, - [4673] = {.lex_state = 45, .external_lex_state = 2}, - [4674] = {.lex_state = 45, .external_lex_state = 2}, - [4675] = {.lex_state = 349, .external_lex_state = 2}, - [4676] = {.lex_state = 349, .external_lex_state = 2}, - [4677] = {.lex_state = 349, .external_lex_state = 6}, - [4678] = {.lex_state = 349, .external_lex_state = 2}, - [4679] = {.lex_state = 45, .external_lex_state = 2}, - [4680] = {.lex_state = 47, .external_lex_state = 2}, - [4681] = {.lex_state = 349, .external_lex_state = 5}, - [4682] = {.lex_state = 349, .external_lex_state = 6}, + [4669] = {.lex_state = 349, .external_lex_state = 5}, + [4670] = {.lex_state = 47, .external_lex_state = 2}, + [4671] = {.lex_state = 349, .external_lex_state = 5}, + [4672] = {.lex_state = 349, .external_lex_state = 7}, + [4673] = {.lex_state = 349, .external_lex_state = 2}, + [4674] = {.lex_state = 349, .external_lex_state = 2}, + [4675] = {.lex_state = 47, .external_lex_state = 2}, + [4676] = {.lex_state = 349, .external_lex_state = 5}, + [4677] = {.lex_state = 349, .external_lex_state = 2}, + [4678] = {.lex_state = 47, .external_lex_state = 2}, + [4679] = {.lex_state = 349, .external_lex_state = 2}, + [4680] = {.lex_state = 45, .external_lex_state = 2}, + [4681] = {.lex_state = 45, .external_lex_state = 2}, + [4682] = {.lex_state = 349, .external_lex_state = 5}, [4683] = {.lex_state = 349, .external_lex_state = 2}, - [4684] = {.lex_state = 349, .external_lex_state = 2}, - [4685] = {.lex_state = 349, .external_lex_state = 6}, - [4686] = {.lex_state = 45, .external_lex_state = 2}, - [4687] = {.lex_state = 45, .external_lex_state = 2}, - [4688] = {.lex_state = 349, .external_lex_state = 5}, - [4689] = {.lex_state = 45, .external_lex_state = 2}, + [4684] = {.lex_state = 45, .external_lex_state = 2}, + [4685] = {.lex_state = 349, .external_lex_state = 5}, + [4686] = {.lex_state = 47, .external_lex_state = 2}, + [4687] = {.lex_state = 349, .external_lex_state = 7}, + [4688] = {.lex_state = 349, .external_lex_state = 2}, + [4689] = {.lex_state = 349, .external_lex_state = 5}, [4690] = {.lex_state = 45, .external_lex_state = 2}, - [4691] = {.lex_state = 45, .external_lex_state = 2}, + [4691] = {.lex_state = 349, .external_lex_state = 7}, [4692] = {.lex_state = 349, .external_lex_state = 6}, [4693] = {.lex_state = 45, .external_lex_state = 2}, - [4694] = {.lex_state = 45, .external_lex_state = 2}, - [4695] = {.lex_state = 45, .external_lex_state = 2}, - [4696] = {.lex_state = 45, .external_lex_state = 2}, - [4697] = {.lex_state = 45, .external_lex_state = 2}, - [4698] = {.lex_state = 45, .external_lex_state = 2}, - [4699] = {.lex_state = 349, .external_lex_state = 5}, - [4700] = {.lex_state = 349, .external_lex_state = 5}, - [4701] = {.lex_state = 45, .external_lex_state = 2}, - [4702] = {.lex_state = 45, .external_lex_state = 2}, - [4703] = {.lex_state = 47, .external_lex_state = 2}, - [4704] = {.lex_state = 349, .external_lex_state = 6}, - [4705] = {.lex_state = 349, .external_lex_state = 6}, - [4706] = {.lex_state = 349, .external_lex_state = 6}, - [4707] = {.lex_state = 349, .external_lex_state = 7}, + [4694] = {.lex_state = 349, .external_lex_state = 5}, + [4695] = {.lex_state = 349, .external_lex_state = 5}, + [4696] = {.lex_state = 349, .external_lex_state = 6}, + [4697] = {.lex_state = 47, .external_lex_state = 2}, + [4698] = {.lex_state = 349, .external_lex_state = 6}, + [4699] = {.lex_state = 349, .external_lex_state = 7}, + [4700] = {.lex_state = 47, .external_lex_state = 2}, + [4701] = {.lex_state = 47, .external_lex_state = 2}, + [4702] = {.lex_state = 349, .external_lex_state = 5}, + [4703] = {.lex_state = 62, .external_lex_state = 2}, + [4704] = {.lex_state = 47, .external_lex_state = 2}, + [4705] = {.lex_state = 349, .external_lex_state = 5}, + [4706] = {.lex_state = 45, .external_lex_state = 2}, + [4707] = {.lex_state = 45, .external_lex_state = 2}, [4708] = {.lex_state = 349, .external_lex_state = 6}, - [4709] = {.lex_state = 349, .external_lex_state = 6}, - [4710] = {.lex_state = 349, .external_lex_state = 6}, - [4711] = {.lex_state = 45, .external_lex_state = 2}, - [4712] = {.lex_state = 349, .external_lex_state = 6}, - [4713] = {.lex_state = 45, .external_lex_state = 2}, + [4709] = {.lex_state = 47, .external_lex_state = 2}, + [4710] = {.lex_state = 349, .external_lex_state = 5}, + [4711] = {.lex_state = 349, .external_lex_state = 2}, + [4712] = {.lex_state = 349, .external_lex_state = 2}, + [4713] = {.lex_state = 349, .external_lex_state = 6}, [4714] = {.lex_state = 349, .external_lex_state = 5}, [4715] = {.lex_state = 349, .external_lex_state = 5}, - [4716] = {.lex_state = 349, .external_lex_state = 6}, + [4716] = {.lex_state = 349, .external_lex_state = 5}, [4717] = {.lex_state = 349, .external_lex_state = 5}, [4718] = {.lex_state = 349, .external_lex_state = 5}, - [4719] = {.lex_state = 349, .external_lex_state = 6}, - [4720] = {.lex_state = 349, .external_lex_state = 6}, - [4721] = {.lex_state = 45, .external_lex_state = 2}, + [4719] = {.lex_state = 349, .external_lex_state = 5}, + [4720] = {.lex_state = 45, .external_lex_state = 2}, + [4721] = {.lex_state = 349, .external_lex_state = 6}, [4722] = {.lex_state = 47, .external_lex_state = 2}, - [4723] = {.lex_state = 47, .external_lex_state = 2}, - [4724] = {.lex_state = 47, .external_lex_state = 2}, - [4725] = {.lex_state = 349, .external_lex_state = 6}, - [4726] = {.lex_state = 349, .external_lex_state = 7}, - [4727] = {.lex_state = 349, .external_lex_state = 6}, - [4728] = {.lex_state = 349, .external_lex_state = 5}, + [4723] = {.lex_state = 45, .external_lex_state = 2}, + [4724] = {.lex_state = 349, .external_lex_state = 5}, + [4725] = {.lex_state = 47, .external_lex_state = 2}, + [4726] = {.lex_state = 47, .external_lex_state = 2}, + [4727] = {.lex_state = 45, .external_lex_state = 2}, + [4728] = {.lex_state = 45, .external_lex_state = 2}, [4729] = {.lex_state = 349, .external_lex_state = 6}, - [4730] = {.lex_state = 47, .external_lex_state = 2}, + [4730] = {.lex_state = 349, .external_lex_state = 5}, [4731] = {.lex_state = 45, .external_lex_state = 2}, - [4732] = {.lex_state = 47, .external_lex_state = 2}, - [4733] = {.lex_state = 47, .external_lex_state = 2}, - [4734] = {.lex_state = 47, .external_lex_state = 2}, + [4732] = {.lex_state = 45, .external_lex_state = 2}, + [4733] = {.lex_state = 349, .external_lex_state = 5}, + [4734] = {.lex_state = 349, .external_lex_state = 5}, [4735] = {.lex_state = 47, .external_lex_state = 2}, - [4736] = {.lex_state = 45, .external_lex_state = 2}, - [4737] = {.lex_state = 47, .external_lex_state = 2}, - [4738] = {.lex_state = 45, .external_lex_state = 2}, - [4739] = {.lex_state = 349, .external_lex_state = 6}, - [4740] = {.lex_state = 45, .external_lex_state = 2}, - [4741] = {.lex_state = 62, .external_lex_state = 2}, - [4742] = {.lex_state = 349, .external_lex_state = 2}, - [4743] = {.lex_state = 349, .external_lex_state = 6}, - [4744] = {.lex_state = 349, .external_lex_state = 6}, - [4745] = {.lex_state = 349, .external_lex_state = 5}, - [4746] = {.lex_state = 45, .external_lex_state = 2}, - [4747] = {.lex_state = 45, .external_lex_state = 2}, - [4748] = {.lex_state = 349, .external_lex_state = 2}, - [4749] = {.lex_state = 349, .external_lex_state = 6}, - [4750] = {.lex_state = 349, .external_lex_state = 5}, - [4751] = {.lex_state = 349, .external_lex_state = 5}, - [4752] = {.lex_state = 349, .external_lex_state = 5}, - [4753] = {.lex_state = 349, .external_lex_state = 2}, - [4754] = {.lex_state = 349, .external_lex_state = 2}, + [4736] = {.lex_state = 349, .external_lex_state = 2}, + [4737] = {.lex_state = 45, .external_lex_state = 2}, + [4738] = {.lex_state = 349, .external_lex_state = 6}, + [4739] = {.lex_state = 45, .external_lex_state = 2}, + [4740] = {.lex_state = 349, .external_lex_state = 6}, + [4741] = {.lex_state = 45, .external_lex_state = 2}, + [4742] = {.lex_state = 349, .external_lex_state = 5}, + [4743] = {.lex_state = 45, .external_lex_state = 2}, + [4744] = {.lex_state = 45, .external_lex_state = 2}, + [4745] = {.lex_state = 45, .external_lex_state = 2}, + [4746] = {.lex_state = 349, .external_lex_state = 6}, + [4747] = {.lex_state = 47, .external_lex_state = 2}, + [4748] = {.lex_state = 349, .external_lex_state = 6}, + [4749] = {.lex_state = 45, .external_lex_state = 2}, + [4750] = {.lex_state = 349, .external_lex_state = 6}, + [4751] = {.lex_state = 349, .external_lex_state = 6}, + [4752] = {.lex_state = 45, .external_lex_state = 2}, + [4753] = {.lex_state = 45, .external_lex_state = 2}, + [4754] = {.lex_state = 47, .external_lex_state = 2}, [4755] = {.lex_state = 349, .external_lex_state = 5}, - [4756] = {.lex_state = 349, .external_lex_state = 6}, - [4757] = {.lex_state = 349, .external_lex_state = 2}, - [4758] = {.lex_state = 45, .external_lex_state = 2}, + [4756] = {.lex_state = 47, .external_lex_state = 2}, + [4757] = {.lex_state = 47, .external_lex_state = 2}, + [4758] = {.lex_state = 349, .external_lex_state = 6}, [4759] = {.lex_state = 47, .external_lex_state = 2}, - [4760] = {.lex_state = 349, .external_lex_state = 5}, - [4761] = {.lex_state = 349, .external_lex_state = 5}, - [4762] = {.lex_state = 47, .external_lex_state = 2}, - [4763] = {.lex_state = 349, .external_lex_state = 5}, - [4764] = {.lex_state = 47, .external_lex_state = 2}, - [4765] = {.lex_state = 47, .external_lex_state = 2}, - [4766] = {.lex_state = 349, .external_lex_state = 5}, - [4767] = {.lex_state = 349, .external_lex_state = 5}, - [4768] = {.lex_state = 45, .external_lex_state = 2}, - [4769] = {.lex_state = 349, .external_lex_state = 2}, + [4760] = {.lex_state = 47, .external_lex_state = 2}, + [4761] = {.lex_state = 45, .external_lex_state = 2}, + [4762] = {.lex_state = 349, .external_lex_state = 6}, + [4763] = {.lex_state = 47, .external_lex_state = 2}, + [4764] = {.lex_state = 45, .external_lex_state = 2}, + [4765] = {.lex_state = 349, .external_lex_state = 6}, + [4766] = {.lex_state = 349, .external_lex_state = 2}, + [4767] = {.lex_state = 47, .external_lex_state = 2}, + [4768] = {.lex_state = 349, .external_lex_state = 2}, + [4769] = {.lex_state = 349, .external_lex_state = 5}, [4770] = {.lex_state = 47, .external_lex_state = 2}, - [4771] = {.lex_state = 349, .external_lex_state = 5}, - [4772] = {.lex_state = 349, .external_lex_state = 2}, - [4773] = {.lex_state = 45, .external_lex_state = 2}, - [4774] = {.lex_state = 62, .external_lex_state = 2}, - [4775] = {.lex_state = 349, .external_lex_state = 2}, - [4776] = {.lex_state = 45, .external_lex_state = 2}, + [4771] = {.lex_state = 45, .external_lex_state = 2}, + [4772] = {.lex_state = 349, .external_lex_state = 6}, + [4773] = {.lex_state = 349, .external_lex_state = 6}, + [4774] = {.lex_state = 349, .external_lex_state = 2}, + [4775] = {.lex_state = 45, .external_lex_state = 2}, + [4776] = {.lex_state = 349, .external_lex_state = 6}, [4777] = {.lex_state = 45, .external_lex_state = 2}, - [4778] = {.lex_state = 47, .external_lex_state = 2}, - [4779] = {.lex_state = 47, .external_lex_state = 2}, - [4780] = {.lex_state = 45, .external_lex_state = 2}, - [4781] = {.lex_state = 349, .external_lex_state = 5}, - [4782] = {.lex_state = 45, .external_lex_state = 2}, - [4783] = {.lex_state = 47, .external_lex_state = 2}, - [4784] = {.lex_state = 47, .external_lex_state = 2}, - [4785] = {.lex_state = 47, .external_lex_state = 2}, + [4778] = {.lex_state = 349, .external_lex_state = 6}, + [4779] = {.lex_state = 349, .external_lex_state = 2}, + [4780] = {.lex_state = 349, .external_lex_state = 5}, + [4781] = {.lex_state = 45, .external_lex_state = 2}, + [4782] = {.lex_state = 47, .external_lex_state = 2}, + [4783] = {.lex_state = 45, .external_lex_state = 2}, + [4784] = {.lex_state = 45, .external_lex_state = 2}, + [4785] = {.lex_state = 349, .external_lex_state = 6}, [4786] = {.lex_state = 47, .external_lex_state = 2}, - [4787] = {.lex_state = 47, .external_lex_state = 2}, - [4788] = {.lex_state = 349, .external_lex_state = 6}, - [4789] = {.lex_state = 47, .external_lex_state = 2}, - [4790] = {.lex_state = 45, .external_lex_state = 2}, + [4787] = {.lex_state = 349, .external_lex_state = 2}, + [4788] = {.lex_state = 45, .external_lex_state = 2}, + [4789] = {.lex_state = 45, .external_lex_state = 2}, + [4790] = {.lex_state = 349, .external_lex_state = 5}, [4791] = {.lex_state = 47, .external_lex_state = 2}, - [4792] = {.lex_state = 349, .external_lex_state = 5}, - [4793] = {.lex_state = 45, .external_lex_state = 2}, - [4794] = {.lex_state = 45, .external_lex_state = 2}, + [4792] = {.lex_state = 47, .external_lex_state = 2}, + [4793] = {.lex_state = 47, .external_lex_state = 2}, + [4794] = {.lex_state = 47, .external_lex_state = 2}, [4795] = {.lex_state = 349, .external_lex_state = 5}, - [4796] = {.lex_state = 349, .external_lex_state = 2}, + [4796] = {.lex_state = 47, .external_lex_state = 2}, [4797] = {.lex_state = 47, .external_lex_state = 2}, - [4798] = {.lex_state = 47, .external_lex_state = 2}, - [4799] = {.lex_state = 349, .external_lex_state = 2}, - [4800] = {.lex_state = 349, .external_lex_state = 2}, - [4801] = {.lex_state = 47, .external_lex_state = 2}, - [4802] = {.lex_state = 349, .external_lex_state = 5}, - [4803] = {.lex_state = 45, .external_lex_state = 2}, - [4804] = {.lex_state = 47, .external_lex_state = 2}, - [4805] = {.lex_state = 349, .external_lex_state = 5}, - [4806] = {.lex_state = 349, .external_lex_state = 6}, - [4807] = {.lex_state = 45, .external_lex_state = 2}, + [4798] = {.lex_state = 45, .external_lex_state = 2}, + [4799] = {.lex_state = 47, .external_lex_state = 2}, + [4800] = {.lex_state = 45, .external_lex_state = 2}, + [4801] = {.lex_state = 62, .external_lex_state = 2}, + [4802] = {.lex_state = 349, .external_lex_state = 2}, + [4803] = {.lex_state = 47, .external_lex_state = 2}, + [4804] = {.lex_state = 45, .external_lex_state = 2}, + [4805] = {.lex_state = 45, .external_lex_state = 2}, + [4806] = {.lex_state = 45, .external_lex_state = 2}, + [4807] = {.lex_state = 47, .external_lex_state = 2}, [4808] = {.lex_state = 47, .external_lex_state = 2}, - [4809] = {.lex_state = 47, .external_lex_state = 2}, - [4810] = {.lex_state = 349, .external_lex_state = 5}, - [4811] = {.lex_state = 47, .external_lex_state = 2}, - [4812] = {.lex_state = 349, .external_lex_state = 5}, - [4813] = {.lex_state = 45, .external_lex_state = 2}, + [4809] = {.lex_state = 45, .external_lex_state = 2}, + [4810] = {.lex_state = 349, .external_lex_state = 2}, + [4811] = {.lex_state = 349, .external_lex_state = 6}, + [4812] = {.lex_state = 349, .external_lex_state = 2}, + [4813] = {.lex_state = 349, .external_lex_state = 5}, [4814] = {.lex_state = 349, .external_lex_state = 5}, - [4815] = {.lex_state = 349, .external_lex_state = 2}, - [4816] = {.lex_state = 349, .external_lex_state = 5}, - [4817] = {.lex_state = 349, .external_lex_state = 2}, - [4818] = {.lex_state = 47, .external_lex_state = 2}, - [4819] = {.lex_state = 349, .external_lex_state = 5}, - [4820] = {.lex_state = 47, .external_lex_state = 2}, + [4815] = {.lex_state = 45, .external_lex_state = 2}, + [4816] = {.lex_state = 349, .external_lex_state = 6}, + [4817] = {.lex_state = 349, .external_lex_state = 6}, + [4818] = {.lex_state = 45, .external_lex_state = 2}, + [4819] = {.lex_state = 349, .external_lex_state = 2}, + [4820] = {.lex_state = 349, .external_lex_state = 6}, [4821] = {.lex_state = 45, .external_lex_state = 2}, [4822] = {.lex_state = 45, .external_lex_state = 2}, [4823] = {.lex_state = 349, .external_lex_state = 5}, [4824] = {.lex_state = 45, .external_lex_state = 2}, - [4825] = {.lex_state = 349, .external_lex_state = 5}, - [4826] = {.lex_state = 47, .external_lex_state = 2}, - [4827] = {.lex_state = 349, .external_lex_state = 5}, - [4828] = {.lex_state = 45, .external_lex_state = 2}, - [4829] = {.lex_state = 45, .external_lex_state = 2}, - [4830] = {.lex_state = 45, .external_lex_state = 2}, - [4831] = {.lex_state = 47, .external_lex_state = 2}, - [4832] = {.lex_state = 45, .external_lex_state = 2}, - [4833] = {.lex_state = 349, .external_lex_state = 5}, + [4825] = {.lex_state = 45, .external_lex_state = 2}, + [4826] = {.lex_state = 45, .external_lex_state = 2}, + [4827] = {.lex_state = 349, .external_lex_state = 6}, + [4828] = {.lex_state = 47, .external_lex_state = 2}, + [4829] = {.lex_state = 349, .external_lex_state = 6}, + [4830] = {.lex_state = 349, .external_lex_state = 5}, + [4831] = {.lex_state = 349, .external_lex_state = 2}, + [4832] = {.lex_state = 47, .external_lex_state = 2}, + [4833] = {.lex_state = 349, .external_lex_state = 2}, [4834] = {.lex_state = 349, .external_lex_state = 5}, - [4835] = {.lex_state = 349, .external_lex_state = 7}, - [4836] = {.lex_state = 45, .external_lex_state = 2}, - [4837] = {.lex_state = 349, .external_lex_state = 6}, - [4838] = {.lex_state = 349, .external_lex_state = 6}, - [4839] = {.lex_state = 45, .external_lex_state = 2}, - [4840] = {.lex_state = 47, .external_lex_state = 2}, - [4841] = {.lex_state = 47, .external_lex_state = 2}, - [4842] = {.lex_state = 349, .external_lex_state = 2}, + [4835] = {.lex_state = 349, .external_lex_state = 2}, + [4836] = {.lex_state = 349, .external_lex_state = 7}, + [4837] = {.lex_state = 349, .external_lex_state = 5}, + [4838] = {.lex_state = 349, .external_lex_state = 5}, + [4839] = {.lex_state = 349, .external_lex_state = 5}, + [4840] = {.lex_state = 349, .external_lex_state = 6}, + [4841] = {.lex_state = 349, .external_lex_state = 5}, + [4842] = {.lex_state = 47, .external_lex_state = 2}, [4843] = {.lex_state = 47, .external_lex_state = 2}, [4844] = {.lex_state = 47, .external_lex_state = 2}, - [4845] = {.lex_state = 45, .external_lex_state = 2}, - [4846] = {.lex_state = 349, .external_lex_state = 5}, - [4847] = {.lex_state = 349, .external_lex_state = 6}, - [4848] = {.lex_state = 349, .external_lex_state = 5}, + [4845] = {.lex_state = 349, .external_lex_state = 5}, + [4846] = {.lex_state = 349, .external_lex_state = 6}, + [4847] = {.lex_state = 349, .external_lex_state = 5}, + [4848] = {.lex_state = 45, .external_lex_state = 2}, [4849] = {.lex_state = 45, .external_lex_state = 2}, [4850] = {.lex_state = 349, .external_lex_state = 5}, - [4851] = {.lex_state = 349, .external_lex_state = 5}, - [4852] = {.lex_state = 349, .external_lex_state = 2}, - [4853] = {.lex_state = 349, .external_lex_state = 2}, - [4854] = {.lex_state = 55, .external_lex_state = 2}, + [4851] = {.lex_state = 45, .external_lex_state = 2}, + [4852] = {.lex_state = 349, .external_lex_state = 5}, + [4853] = {.lex_state = 349, .external_lex_state = 6}, + [4854] = {.lex_state = 349, .external_lex_state = 5}, [4855] = {.lex_state = 349, .external_lex_state = 5}, - [4856] = {.lex_state = 349, .external_lex_state = 5}, - [4857] = {.lex_state = 45, .external_lex_state = 5}, - [4858] = {.lex_state = 45, .external_lex_state = 2}, - [4859] = {.lex_state = 45, .external_lex_state = 5}, + [4856] = {.lex_state = 45, .external_lex_state = 5}, + [4857] = {.lex_state = 45, .external_lex_state = 2}, + [4858] = {.lex_state = 45, .external_lex_state = 5}, + [4859] = {.lex_state = 349, .external_lex_state = 2}, [4860] = {.lex_state = 349, .external_lex_state = 5}, - [4861] = {.lex_state = 349, .external_lex_state = 5}, + [4861] = {.lex_state = 349, .external_lex_state = 2}, [4862] = {.lex_state = 349, .external_lex_state = 2}, - [4863] = {.lex_state = 46, .external_lex_state = 2}, - [4864] = {.lex_state = 349, .external_lex_state = 5}, - [4865] = {.lex_state = 62, .external_lex_state = 2}, - [4866] = {.lex_state = 62, .external_lex_state = 2}, - [4867] = {.lex_state = 349, .external_lex_state = 2}, - [4868] = {.lex_state = 349, .external_lex_state = 5}, + [4863] = {.lex_state = 55, .external_lex_state = 2}, + [4864] = {.lex_state = 349, .external_lex_state = 2}, + [4865] = {.lex_state = 46, .external_lex_state = 2}, + [4866] = {.lex_state = 349, .external_lex_state = 5}, + [4867] = {.lex_state = 62, .external_lex_state = 2}, + [4868] = {.lex_state = 62, .external_lex_state = 2}, [4869] = {.lex_state = 349, .external_lex_state = 5}, [4870] = {.lex_state = 349, .external_lex_state = 5}, [4871] = {.lex_state = 349, .external_lex_state = 5}, [4872] = {.lex_state = 45, .external_lex_state = 2}, [4873] = {.lex_state = 349, .external_lex_state = 5}, [4874] = {.lex_state = 349, .external_lex_state = 5}, - [4875] = {.lex_state = 349, .external_lex_state = 2}, + [4875] = {.lex_state = 349, .external_lex_state = 5}, [4876] = {.lex_state = 349, .external_lex_state = 5}, - [4877] = {.lex_state = 349, .external_lex_state = 5}, + [4877] = {.lex_state = 349, .external_lex_state = 2}, [4878] = {.lex_state = 349, .external_lex_state = 5}, [4879] = {.lex_state = 349, .external_lex_state = 5}, - [4880] = {.lex_state = 349, .external_lex_state = 2}, + [4880] = {.lex_state = 349, .external_lex_state = 5}, [4881] = {.lex_state = 349, .external_lex_state = 5}, - [4882] = {.lex_state = 349, .external_lex_state = 5}, + [4882] = {.lex_state = 349, .external_lex_state = 2}, [4883] = {.lex_state = 349, .external_lex_state = 5}, [4884] = {.lex_state = 349, .external_lex_state = 5}, [4885] = {.lex_state = 349, .external_lex_state = 5}, [4886] = {.lex_state = 349, .external_lex_state = 5}, [4887] = {.lex_state = 349, .external_lex_state = 5}, [4888] = {.lex_state = 349, .external_lex_state = 5}, - [4889] = {.lex_state = 349, .external_lex_state = 2}, - [4890] = {.lex_state = 45, .external_lex_state = 2}, - [4891] = {.lex_state = 45, .external_lex_state = 2}, - [4892] = {.lex_state = 349, .external_lex_state = 5}, - [4893] = {.lex_state = 349, .external_lex_state = 5}, + [4889] = {.lex_state = 349, .external_lex_state = 5}, + [4890] = {.lex_state = 349, .external_lex_state = 5}, + [4891] = {.lex_state = 349, .external_lex_state = 2}, + [4892] = {.lex_state = 45, .external_lex_state = 2}, + [4893] = {.lex_state = 45, .external_lex_state = 2}, [4894] = {.lex_state = 349, .external_lex_state = 5}, [4895] = {.lex_state = 349, .external_lex_state = 5}, [4896] = {.lex_state = 349, .external_lex_state = 5}, @@ -25168,9 +25232,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4899] = {.lex_state = 349, .external_lex_state = 5}, [4900] = {.lex_state = 349, .external_lex_state = 5}, [4901] = {.lex_state = 349, .external_lex_state = 5}, - [4902] = {.lex_state = 349, .external_lex_state = 2}, + [4902] = {.lex_state = 349, .external_lex_state = 5}, [4903] = {.lex_state = 349, .external_lex_state = 5}, - [4904] = {.lex_state = 349, .external_lex_state = 5}, + [4904] = {.lex_state = 349, .external_lex_state = 2}, [4905] = {.lex_state = 349, .external_lex_state = 5}, [4906] = {.lex_state = 349, .external_lex_state = 5}, [4907] = {.lex_state = 349, .external_lex_state = 5}, @@ -25180,10 +25244,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4911] = {.lex_state = 349, .external_lex_state = 5}, [4912] = {.lex_state = 349, .external_lex_state = 5}, [4913] = {.lex_state = 349, .external_lex_state = 5}, - [4914] = {.lex_state = 45, .external_lex_state = 2}, - [4915] = {.lex_state = 349, .external_lex_state = 8}, + [4914] = {.lex_state = 349, .external_lex_state = 5}, + [4915] = {.lex_state = 45, .external_lex_state = 2}, [4916] = {.lex_state = 349, .external_lex_state = 5}, - [4917] = {.lex_state = 349, .external_lex_state = 5}, + [4917] = {.lex_state = 349, .external_lex_state = 8}, [4918] = {.lex_state = 349, .external_lex_state = 5}, [4919] = {.lex_state = 349, .external_lex_state = 5}, [4920] = {.lex_state = 349, .external_lex_state = 5}, @@ -25217,42 +25281,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4948] = {.lex_state = 349, .external_lex_state = 5}, [4949] = {.lex_state = 349, .external_lex_state = 5}, [4950] = {.lex_state = 349, .external_lex_state = 5}, - [4951] = {.lex_state = 349, .external_lex_state = 5}, + [4951] = {.lex_state = 349, .external_lex_state = 6}, [4952] = {.lex_state = 349, .external_lex_state = 5}, [4953] = {.lex_state = 349, .external_lex_state = 5}, - [4954] = {.lex_state = 349, .external_lex_state = 6}, - [4955] = {.lex_state = 47, .external_lex_state = 2}, + [4954] = {.lex_state = 349, .external_lex_state = 5}, + [4955] = {.lex_state = 349, .external_lex_state = 5}, [4956] = {.lex_state = 349, .external_lex_state = 5}, - [4957] = {.lex_state = 349, .external_lex_state = 2}, - [4958] = {.lex_state = 349, .external_lex_state = 5}, + [4957] = {.lex_state = 47, .external_lex_state = 2}, + [4958] = {.lex_state = 349, .external_lex_state = 2}, [4959] = {.lex_state = 349, .external_lex_state = 5}, [4960] = {.lex_state = 349, .external_lex_state = 5}, [4961] = {.lex_state = 47, .external_lex_state = 2}, [4962] = {.lex_state = 349, .external_lex_state = 5}, [4963] = {.lex_state = 349, .external_lex_state = 5}, - [4964] = {.lex_state = 45, .external_lex_state = 2}, - [4965] = {.lex_state = 349, .external_lex_state = 5}, + [4964] = {.lex_state = 349, .external_lex_state = 5}, + [4965] = {.lex_state = 45, .external_lex_state = 2}, [4966] = {.lex_state = 349, .external_lex_state = 5}, [4967] = {.lex_state = 349, .external_lex_state = 5}, [4968] = {.lex_state = 349, .external_lex_state = 5}, [4969] = {.lex_state = 45, .external_lex_state = 5}, [4970] = {.lex_state = 349, .external_lex_state = 5}, - [4971] = {.lex_state = 349, .external_lex_state = 6}, - [4972] = {.lex_state = 349, .external_lex_state = 2}, - [4973] = {.lex_state = 45, .external_lex_state = 2}, + [4971] = {.lex_state = 349, .external_lex_state = 5}, + [4972] = {.lex_state = 349, .external_lex_state = 6}, + [4973] = {.lex_state = 349, .external_lex_state = 2}, [4974] = {.lex_state = 349, .external_lex_state = 5}, - [4975] = {.lex_state = 349, .external_lex_state = 5}, - [4976] = {.lex_state = 349, .external_lex_state = 5}, + [4975] = {.lex_state = 45, .external_lex_state = 2}, + [4976] = {.lex_state = 45, .external_lex_state = 2}, [4977] = {.lex_state = 349, .external_lex_state = 5}, - [4978] = {.lex_state = 45, .external_lex_state = 2}, + [4978] = {.lex_state = 349, .external_lex_state = 5}, [4979] = {.lex_state = 349, .external_lex_state = 5}, [4980] = {.lex_state = 349, .external_lex_state = 5}, - [4981] = {.lex_state = 349, .external_lex_state = 8}, + [4981] = {.lex_state = 349, .external_lex_state = 5}, [4982] = {.lex_state = 349, .external_lex_state = 5}, - [4983] = {.lex_state = 349, .external_lex_state = 2}, + [4983] = {.lex_state = 349, .external_lex_state = 8}, [4984] = {.lex_state = 349, .external_lex_state = 5}, [4985] = {.lex_state = 349, .external_lex_state = 5}, - [4986] = {.lex_state = 349, .external_lex_state = 5}, + [4986] = {.lex_state = 349, .external_lex_state = 2}, [4987] = {.lex_state = 349, .external_lex_state = 5}, [4988] = {.lex_state = 349, .external_lex_state = 5}, [4989] = {.lex_state = 349, .external_lex_state = 5}, @@ -25263,247 +25327,247 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4994] = {.lex_state = 349, .external_lex_state = 5}, [4995] = {.lex_state = 349, .external_lex_state = 5}, [4996] = {.lex_state = 349, .external_lex_state = 5}, - [4997] = {.lex_state = 349, .external_lex_state = 5}, - [4998] = {.lex_state = 349, .external_lex_state = 2}, - [4999] = {.lex_state = 349, .external_lex_state = 8}, - [5000] = {.lex_state = 62, .external_lex_state = 2}, - [5001] = {.lex_state = 45, .external_lex_state = 2}, - [5002] = {.lex_state = 349, .external_lex_state = 2}, + [4997] = {.lex_state = 62, .external_lex_state = 2}, + [4998] = {.lex_state = 349, .external_lex_state = 5}, + [4999] = {.lex_state = 349, .external_lex_state = 5}, + [5000] = {.lex_state = 45, .external_lex_state = 2}, + [5001] = {.lex_state = 349, .external_lex_state = 2}, + [5002] = {.lex_state = 349, .external_lex_state = 8}, [5003] = {.lex_state = 349, .external_lex_state = 5}, - [5004] = {.lex_state = 349, .external_lex_state = 5}, - [5005] = {.lex_state = 349, .external_lex_state = 6}, + [5004] = {.lex_state = 45, .external_lex_state = 2}, + [5005] = {.lex_state = 349, .external_lex_state = 2}, [5006] = {.lex_state = 349, .external_lex_state = 5}, - [5007] = {.lex_state = 349, .external_lex_state = 5}, - [5008] = {.lex_state = 45, .external_lex_state = 2}, - [5009] = {.lex_state = 45, .external_lex_state = 2}, - [5010] = {.lex_state = 349, .external_lex_state = 6}, - [5011] = {.lex_state = 349, .external_lex_state = 5}, - [5012] = {.lex_state = 349, .external_lex_state = 5}, - [5013] = {.lex_state = 349, .external_lex_state = 5}, - [5014] = {.lex_state = 45, .external_lex_state = 2}, - [5015] = {.lex_state = 349, .external_lex_state = 8}, + [5007] = {.lex_state = 349, .external_lex_state = 6}, + [5008] = {.lex_state = 349, .external_lex_state = 5}, + [5009] = {.lex_state = 349, .external_lex_state = 5}, + [5010] = {.lex_state = 349, .external_lex_state = 5}, + [5011] = {.lex_state = 45, .external_lex_state = 2}, + [5012] = {.lex_state = 45, .external_lex_state = 2}, + [5013] = {.lex_state = 349, .external_lex_state = 6}, + [5014] = {.lex_state = 349, .external_lex_state = 5}, + [5015] = {.lex_state = 349, .external_lex_state = 5}, [5016] = {.lex_state = 349, .external_lex_state = 8}, [5017] = {.lex_state = 349, .external_lex_state = 5}, - [5018] = {.lex_state = 62, .external_lex_state = 2}, - [5019] = {.lex_state = 349, .external_lex_state = 5}, + [5018] = {.lex_state = 349, .external_lex_state = 8}, + [5019] = {.lex_state = 62, .external_lex_state = 2}, [5020] = {.lex_state = 349, .external_lex_state = 5}, [5021] = {.lex_state = 349, .external_lex_state = 5}, - [5022] = {.lex_state = 349, .external_lex_state = 2}, - [5023] = {.lex_state = 349, .external_lex_state = 8}, - [5024] = {.lex_state = 349, .external_lex_state = 6}, - [5025] = {.lex_state = 62, .external_lex_state = 2}, - [5026] = {.lex_state = 45, .external_lex_state = 5}, - [5027] = {.lex_state = 349, .external_lex_state = 2}, - [5028] = {.lex_state = 349, .external_lex_state = 2}, - [5029] = {.lex_state = 47, .external_lex_state = 2}, - [5030] = {.lex_state = 349, .external_lex_state = 5}, - [5031] = {.lex_state = 45, .external_lex_state = 2}, + [5022] = {.lex_state = 349, .external_lex_state = 8}, + [5023] = {.lex_state = 349, .external_lex_state = 5}, + [5024] = {.lex_state = 349, .external_lex_state = 2}, + [5025] = {.lex_state = 349, .external_lex_state = 6}, + [5026] = {.lex_state = 349, .external_lex_state = 5}, + [5027] = {.lex_state = 62, .external_lex_state = 2}, + [5028] = {.lex_state = 45, .external_lex_state = 5}, + [5029] = {.lex_state = 349, .external_lex_state = 2}, + [5030] = {.lex_state = 349, .external_lex_state = 2}, + [5031] = {.lex_state = 47, .external_lex_state = 2}, [5032] = {.lex_state = 45, .external_lex_state = 2}, - [5033] = {.lex_state = 349, .external_lex_state = 6}, - [5034] = {.lex_state = 45, .external_lex_state = 5}, - [5035] = {.lex_state = 45, .external_lex_state = 2}, - [5036] = {.lex_state = 349, .external_lex_state = 6}, + [5033] = {.lex_state = 349, .external_lex_state = 5}, + [5034] = {.lex_state = 45, .external_lex_state = 2}, + [5035] = {.lex_state = 349, .external_lex_state = 6}, + [5036] = {.lex_state = 45, .external_lex_state = 5}, [5037] = {.lex_state = 45, .external_lex_state = 2}, [5038] = {.lex_state = 45, .external_lex_state = 2}, [5039] = {.lex_state = 45, .external_lex_state = 2}, - [5040] = {.lex_state = 45, .external_lex_state = 2}, + [5040] = {.lex_state = 349, .external_lex_state = 5}, [5041] = {.lex_state = 45, .external_lex_state = 2}, [5042] = {.lex_state = 45, .external_lex_state = 2}, [5043] = {.lex_state = 45, .external_lex_state = 2}, - [5044] = {.lex_state = 349, .external_lex_state = 2}, + [5044] = {.lex_state = 45, .external_lex_state = 2}, [5045] = {.lex_state = 45, .external_lex_state = 2}, - [5046] = {.lex_state = 45, .external_lex_state = 2}, - [5047] = {.lex_state = 349, .external_lex_state = 5}, - [5048] = {.lex_state = 349, .external_lex_state = 5}, - [5049] = {.lex_state = 349, .external_lex_state = 5}, - [5050] = {.lex_state = 45, .external_lex_state = 2}, + [5046] = {.lex_state = 349, .external_lex_state = 2}, + [5047] = {.lex_state = 45, .external_lex_state = 2}, + [5048] = {.lex_state = 45, .external_lex_state = 2}, + [5049] = {.lex_state = 45, .external_lex_state = 2}, + [5050] = {.lex_state = 349, .external_lex_state = 5}, [5051] = {.lex_state = 349, .external_lex_state = 5}, - [5052] = {.lex_state = 349, .external_lex_state = 2}, - [5053] = {.lex_state = 349, .external_lex_state = 5}, - [5054] = {.lex_state = 349, .external_lex_state = 6}, - [5055] = {.lex_state = 45, .external_lex_state = 2}, - [5056] = {.lex_state = 45, .external_lex_state = 2}, - [5057] = {.lex_state = 45, .external_lex_state = 2}, + [5052] = {.lex_state = 349, .external_lex_state = 6}, + [5053] = {.lex_state = 349, .external_lex_state = 6}, + [5054] = {.lex_state = 45, .external_lex_state = 2}, + [5055] = {.lex_state = 349, .external_lex_state = 2}, + [5056] = {.lex_state = 349, .external_lex_state = 5}, + [5057] = {.lex_state = 349, .external_lex_state = 5}, [5058] = {.lex_state = 45, .external_lex_state = 2}, - [5059] = {.lex_state = 349, .external_lex_state = 5}, + [5059] = {.lex_state = 45, .external_lex_state = 2}, [5060] = {.lex_state = 45, .external_lex_state = 2}, - [5061] = {.lex_state = 45, .external_lex_state = 2}, + [5061] = {.lex_state = 349, .external_lex_state = 5}, [5062] = {.lex_state = 45, .external_lex_state = 2}, - [5063] = {.lex_state = 349, .external_lex_state = 2}, - [5064] = {.lex_state = 349, .external_lex_state = 5}, + [5063] = {.lex_state = 45, .external_lex_state = 2}, + [5064] = {.lex_state = 45, .external_lex_state = 2}, [5065] = {.lex_state = 349, .external_lex_state = 2}, - [5066] = {.lex_state = 45, .external_lex_state = 2}, + [5066] = {.lex_state = 349, .external_lex_state = 5}, [5067] = {.lex_state = 45, .external_lex_state = 2}, [5068] = {.lex_state = 349, .external_lex_state = 5}, [5069] = {.lex_state = 45, .external_lex_state = 2}, - [5070] = {.lex_state = 45, .external_lex_state = 2}, + [5070] = {.lex_state = 349, .external_lex_state = 2}, [5071] = {.lex_state = 45, .external_lex_state = 2}, - [5072] = {.lex_state = 349, .external_lex_state = 5}, - [5073] = {.lex_state = 349, .external_lex_state = 6}, - [5074] = {.lex_state = 349, .external_lex_state = 6}, - [5075] = {.lex_state = 45, .external_lex_state = 5}, - [5076] = {.lex_state = 45, .external_lex_state = 2}, + [5072] = {.lex_state = 45, .external_lex_state = 2}, + [5073] = {.lex_state = 45, .external_lex_state = 2}, + [5074] = {.lex_state = 349, .external_lex_state = 5}, + [5075] = {.lex_state = 349, .external_lex_state = 5}, + [5076] = {.lex_state = 349, .external_lex_state = 6}, [5077] = {.lex_state = 45, .external_lex_state = 2}, - [5078] = {.lex_state = 45, .external_lex_state = 2}, + [5078] = {.lex_state = 349, .external_lex_state = 6}, [5079] = {.lex_state = 45, .external_lex_state = 2}, - [5080] = {.lex_state = 349, .external_lex_state = 5}, - [5081] = {.lex_state = 349, .external_lex_state = 6}, + [5080] = {.lex_state = 45, .external_lex_state = 2}, + [5081] = {.lex_state = 45, .external_lex_state = 2}, [5082] = {.lex_state = 45, .external_lex_state = 2}, - [5083] = {.lex_state = 349, .external_lex_state = 2}, - [5084] = {.lex_state = 349, .external_lex_state = 5}, + [5083] = {.lex_state = 45, .external_lex_state = 5}, + [5084] = {.lex_state = 45, .external_lex_state = 2}, [5085] = {.lex_state = 45, .external_lex_state = 2}, - [5086] = {.lex_state = 45, .external_lex_state = 2}, - [5087] = {.lex_state = 45, .external_lex_state = 2}, - [5088] = {.lex_state = 349, .external_lex_state = 8}, - [5089] = {.lex_state = 349, .external_lex_state = 2}, - [5090] = {.lex_state = 349, .external_lex_state = 5}, - [5091] = {.lex_state = 349, .external_lex_state = 5}, + [5086] = {.lex_state = 349, .external_lex_state = 2}, + [5087] = {.lex_state = 349, .external_lex_state = 5}, + [5088] = {.lex_state = 349, .external_lex_state = 6}, + [5089] = {.lex_state = 45, .external_lex_state = 2}, + [5090] = {.lex_state = 349, .external_lex_state = 2}, + [5091] = {.lex_state = 349, .external_lex_state = 8}, [5092] = {.lex_state = 349, .external_lex_state = 5}, - [5093] = {.lex_state = 45, .external_lex_state = 5}, - [5094] = {.lex_state = 45, .external_lex_state = 2}, + [5093] = {.lex_state = 349, .external_lex_state = 5}, + [5094] = {.lex_state = 349, .external_lex_state = 5}, [5095] = {.lex_state = 349, .external_lex_state = 5}, - [5096] = {.lex_state = 349, .external_lex_state = 2}, - [5097] = {.lex_state = 349, .external_lex_state = 2}, - [5098] = {.lex_state = 349, .external_lex_state = 5}, + [5096] = {.lex_state = 45, .external_lex_state = 2}, + [5097] = {.lex_state = 45, .external_lex_state = 5}, + [5098] = {.lex_state = 349, .external_lex_state = 2}, [5099] = {.lex_state = 349, .external_lex_state = 2}, - [5100] = {.lex_state = 45, .external_lex_state = 2}, - [5101] = {.lex_state = 45, .external_lex_state = 2}, - [5102] = {.lex_state = 349, .external_lex_state = 5}, - [5103] = {.lex_state = 349, .external_lex_state = 5}, - [5104] = {.lex_state = 349, .external_lex_state = 8}, - [5105] = {.lex_state = 45, .external_lex_state = 2}, - [5106] = {.lex_state = 45, .external_lex_state = 2}, + [5100] = {.lex_state = 349, .external_lex_state = 5}, + [5101] = {.lex_state = 349, .external_lex_state = 2}, + [5102] = {.lex_state = 45, .external_lex_state = 2}, + [5103] = {.lex_state = 45, .external_lex_state = 2}, + [5104] = {.lex_state = 349, .external_lex_state = 5}, + [5105] = {.lex_state = 349, .external_lex_state = 8}, + [5106] = {.lex_state = 349, .external_lex_state = 5}, [5107] = {.lex_state = 45, .external_lex_state = 2}, - [5108] = {.lex_state = 349, .external_lex_state = 5}, - [5109] = {.lex_state = 349, .external_lex_state = 5}, - [5110] = {.lex_state = 349, .external_lex_state = 2}, + [5108] = {.lex_state = 45, .external_lex_state = 2}, + [5109] = {.lex_state = 45, .external_lex_state = 2}, + [5110] = {.lex_state = 349, .external_lex_state = 5}, [5111] = {.lex_state = 349, .external_lex_state = 5}, - [5112] = {.lex_state = 62, .external_lex_state = 2}, + [5112] = {.lex_state = 349, .external_lex_state = 2}, [5113] = {.lex_state = 349, .external_lex_state = 5}, [5114] = {.lex_state = 349, .external_lex_state = 5}, - [5115] = {.lex_state = 349, .external_lex_state = 2}, - [5116] = {.lex_state = 47, .external_lex_state = 2}, - [5117] = {.lex_state = 45, .external_lex_state = 2}, - [5118] = {.lex_state = 349, .external_lex_state = 6}, - [5119] = {.lex_state = 45, .external_lex_state = 5}, - [5120] = {.lex_state = 45, .external_lex_state = 2}, - [5121] = {.lex_state = 45, .external_lex_state = 2}, + [5115] = {.lex_state = 62, .external_lex_state = 2}, + [5116] = {.lex_state = 349, .external_lex_state = 5}, + [5117] = {.lex_state = 349, .external_lex_state = 2}, + [5118] = {.lex_state = 47, .external_lex_state = 2}, + [5119] = {.lex_state = 45, .external_lex_state = 2}, + [5120] = {.lex_state = 349, .external_lex_state = 6}, + [5121] = {.lex_state = 45, .external_lex_state = 5}, [5122] = {.lex_state = 45, .external_lex_state = 2}, [5123] = {.lex_state = 45, .external_lex_state = 2}, [5124] = {.lex_state = 45, .external_lex_state = 2}, [5125] = {.lex_state = 45, .external_lex_state = 2}, - [5126] = {.lex_state = 349, .external_lex_state = 5}, + [5126] = {.lex_state = 45, .external_lex_state = 2}, [5127] = {.lex_state = 349, .external_lex_state = 5}, - [5128] = {.lex_state = 45, .external_lex_state = 2}, + [5128] = {.lex_state = 349, .external_lex_state = 5}, [5129] = {.lex_state = 45, .external_lex_state = 2}, [5130] = {.lex_state = 45, .external_lex_state = 2}, - [5131] = {.lex_state = 349, .external_lex_state = 2}, - [5132] = {.lex_state = 349, .external_lex_state = 5}, - [5133] = {.lex_state = 45, .external_lex_state = 2}, - [5134] = {.lex_state = 46, .external_lex_state = 5}, + [5131] = {.lex_state = 45, .external_lex_state = 2}, + [5132] = {.lex_state = 349, .external_lex_state = 2}, + [5133] = {.lex_state = 349, .external_lex_state = 5}, + [5134] = {.lex_state = 45, .external_lex_state = 2}, [5135] = {.lex_state = 46, .external_lex_state = 5}, - [5136] = {.lex_state = 349, .external_lex_state = 5}, - [5137] = {.lex_state = 45, .external_lex_state = 2}, + [5136] = {.lex_state = 46, .external_lex_state = 5}, + [5137] = {.lex_state = 349, .external_lex_state = 5}, [5138] = {.lex_state = 45, .external_lex_state = 2}, [5139] = {.lex_state = 45, .external_lex_state = 2}, [5140] = {.lex_state = 45, .external_lex_state = 2}, [5141] = {.lex_state = 45, .external_lex_state = 2}, - [5142] = {.lex_state = 349, .external_lex_state = 5}, - [5143] = {.lex_state = 349, .external_lex_state = 6}, + [5142] = {.lex_state = 45, .external_lex_state = 2}, + [5143] = {.lex_state = 45, .external_lex_state = 2}, [5144] = {.lex_state = 349, .external_lex_state = 5}, - [5145] = {.lex_state = 45, .external_lex_state = 5}, - [5146] = {.lex_state = 349, .external_lex_state = 5}, - [5147] = {.lex_state = 45, .external_lex_state = 2}, - [5148] = {.lex_state = 45, .external_lex_state = 2}, - [5149] = {.lex_state = 45, .external_lex_state = 2}, - [5150] = {.lex_state = 349, .external_lex_state = 5}, - [5151] = {.lex_state = 349, .external_lex_state = 5}, + [5145] = {.lex_state = 349, .external_lex_state = 5}, + [5146] = {.lex_state = 349, .external_lex_state = 6}, + [5147] = {.lex_state = 349, .external_lex_state = 5}, + [5148] = {.lex_state = 45, .external_lex_state = 5}, + [5149] = {.lex_state = 349, .external_lex_state = 5}, + [5150] = {.lex_state = 45, .external_lex_state = 2}, + [5151] = {.lex_state = 45, .external_lex_state = 2}, [5152] = {.lex_state = 349, .external_lex_state = 5}, - [5153] = {.lex_state = 45, .external_lex_state = 2}, + [5153] = {.lex_state = 349, .external_lex_state = 5}, [5154] = {.lex_state = 349, .external_lex_state = 5}, [5155] = {.lex_state = 349, .external_lex_state = 5}, - [5156] = {.lex_state = 349, .external_lex_state = 5}, + [5156] = {.lex_state = 45, .external_lex_state = 2}, [5157] = {.lex_state = 349, .external_lex_state = 5}, - [5158] = {.lex_state = 349, .external_lex_state = 2}, - [5159] = {.lex_state = 349, .external_lex_state = 2}, - [5160] = {.lex_state = 349, .external_lex_state = 5}, - [5161] = {.lex_state = 349, .external_lex_state = 5}, + [5158] = {.lex_state = 349, .external_lex_state = 5}, + [5159] = {.lex_state = 349, .external_lex_state = 5}, + [5160] = {.lex_state = 349, .external_lex_state = 2}, + [5161] = {.lex_state = 349, .external_lex_state = 2}, [5162] = {.lex_state = 349, .external_lex_state = 8}, - [5163] = {.lex_state = 349, .external_lex_state = 5}, - [5164] = {.lex_state = 45, .external_lex_state = 2}, - [5165] = {.lex_state = 45, .external_lex_state = 2}, - [5166] = {.lex_state = 349, .external_lex_state = 6}, - [5167] = {.lex_state = 349, .external_lex_state = 5}, - [5168] = {.lex_state = 46, .external_lex_state = 2}, - [5169] = {.lex_state = 349, .external_lex_state = 8}, - [5170] = {.lex_state = 349, .external_lex_state = 5}, - [5171] = {.lex_state = 45, .external_lex_state = 2}, + [5163] = {.lex_state = 45, .external_lex_state = 2}, + [5164] = {.lex_state = 349, .external_lex_state = 5}, + [5165] = {.lex_state = 349, .external_lex_state = 5}, + [5166] = {.lex_state = 45, .external_lex_state = 2}, + [5167] = {.lex_state = 45, .external_lex_state = 2}, + [5168] = {.lex_state = 349, .external_lex_state = 5}, + [5169] = {.lex_state = 349, .external_lex_state = 6}, + [5170] = {.lex_state = 46, .external_lex_state = 2}, + [5171] = {.lex_state = 349, .external_lex_state = 5}, [5172] = {.lex_state = 45, .external_lex_state = 2}, - [5173] = {.lex_state = 45, .external_lex_state = 2}, - [5174] = {.lex_state = 349, .external_lex_state = 5}, + [5173] = {.lex_state = 349, .external_lex_state = 5}, + [5174] = {.lex_state = 45, .external_lex_state = 2}, [5175] = {.lex_state = 45, .external_lex_state = 2}, [5176] = {.lex_state = 349, .external_lex_state = 5}, [5177] = {.lex_state = 45, .external_lex_state = 2}, - [5178] = {.lex_state = 45, .external_lex_state = 2}, + [5178] = {.lex_state = 349, .external_lex_state = 5}, [5179] = {.lex_state = 45, .external_lex_state = 2}, - [5180] = {.lex_state = 349, .external_lex_state = 5}, + [5180] = {.lex_state = 45, .external_lex_state = 2}, [5181] = {.lex_state = 45, .external_lex_state = 2}, [5182] = {.lex_state = 45, .external_lex_state = 2}, [5183] = {.lex_state = 45, .external_lex_state = 2}, [5184] = {.lex_state = 349, .external_lex_state = 5}, - [5185] = {.lex_state = 349, .external_lex_state = 5}, - [5186] = {.lex_state = 45, .external_lex_state = 2}, - [5187] = {.lex_state = 349, .external_lex_state = 5}, - [5188] = {.lex_state = 349, .external_lex_state = 2}, - [5189] = {.lex_state = 349, .external_lex_state = 2}, - [5190] = {.lex_state = 45, .external_lex_state = 2}, - [5191] = {.lex_state = 349, .external_lex_state = 5}, - [5192] = {.lex_state = 45, .external_lex_state = 2}, + [5185] = {.lex_state = 45, .external_lex_state = 2}, + [5186] = {.lex_state = 349, .external_lex_state = 5}, + [5187] = {.lex_state = 45, .external_lex_state = 2}, + [5188] = {.lex_state = 45, .external_lex_state = 2}, + [5189] = {.lex_state = 349, .external_lex_state = 5}, + [5190] = {.lex_state = 349, .external_lex_state = 5}, + [5191] = {.lex_state = 349, .external_lex_state = 2}, + [5192] = {.lex_state = 349, .external_lex_state = 2}, [5193] = {.lex_state = 45, .external_lex_state = 2}, - [5194] = {.lex_state = 45, .external_lex_state = 2}, - [5195] = {.lex_state = 349, .external_lex_state = 5}, - [5196] = {.lex_state = 349, .external_lex_state = 5}, + [5194] = {.lex_state = 349, .external_lex_state = 5}, + [5195] = {.lex_state = 45, .external_lex_state = 2}, + [5196] = {.lex_state = 45, .external_lex_state = 2}, [5197] = {.lex_state = 349, .external_lex_state = 5}, - [5198] = {.lex_state = 45, .external_lex_state = 2}, + [5198] = {.lex_state = 349, .external_lex_state = 5}, [5199] = {.lex_state = 349, .external_lex_state = 5}, - [5200] = {.lex_state = 349, .external_lex_state = 5}, - [5201] = {.lex_state = 349, .external_lex_state = 5}, - [5202] = {.lex_state = 349, .external_lex_state = 2}, + [5200] = {.lex_state = 349, .external_lex_state = 8}, + [5201] = {.lex_state = 45, .external_lex_state = 2}, + [5202] = {.lex_state = 349, .external_lex_state = 5}, [5203] = {.lex_state = 45, .external_lex_state = 2}, [5204] = {.lex_state = 349, .external_lex_state = 5}, - [5205] = {.lex_state = 45, .external_lex_state = 2}, - [5206] = {.lex_state = 45, .external_lex_state = 2}, - [5207] = {.lex_state = 349, .external_lex_state = 5}, - [5208] = {.lex_state = 349, .external_lex_state = 5}, - [5209] = {.lex_state = 46, .external_lex_state = 2}, + [5205] = {.lex_state = 349, .external_lex_state = 2}, + [5206] = {.lex_state = 349, .external_lex_state = 5}, + [5207] = {.lex_state = 45, .external_lex_state = 2}, + [5208] = {.lex_state = 45, .external_lex_state = 2}, + [5209] = {.lex_state = 349, .external_lex_state = 5}, [5210] = {.lex_state = 349, .external_lex_state = 5}, [5211] = {.lex_state = 45, .external_lex_state = 2}, - [5212] = {.lex_state = 349, .external_lex_state = 5}, + [5212] = {.lex_state = 46, .external_lex_state = 2}, [5213] = {.lex_state = 349, .external_lex_state = 5}, [5214] = {.lex_state = 349, .external_lex_state = 5}, - [5215] = {.lex_state = 349, .external_lex_state = 6}, + [5215] = {.lex_state = 349, .external_lex_state = 5}, [5216] = {.lex_state = 349, .external_lex_state = 5}, - [5217] = {.lex_state = 45, .external_lex_state = 2}, - [5218] = {.lex_state = 349, .external_lex_state = 2}, - [5219] = {.lex_state = 45, .external_lex_state = 5}, - [5220] = {.lex_state = 349, .external_lex_state = 5}, - [5221] = {.lex_state = 45, .external_lex_state = 5}, - [5222] = {.lex_state = 62, .external_lex_state = 2}, - [5223] = {.lex_state = 349, .external_lex_state = 5}, - [5224] = {.lex_state = 349, .external_lex_state = 5}, + [5217] = {.lex_state = 349, .external_lex_state = 5}, + [5218] = {.lex_state = 349, .external_lex_state = 6}, + [5219] = {.lex_state = 45, .external_lex_state = 2}, + [5220] = {.lex_state = 349, .external_lex_state = 2}, + [5221] = {.lex_state = 349, .external_lex_state = 5}, + [5222] = {.lex_state = 45, .external_lex_state = 5}, + [5223] = {.lex_state = 45, .external_lex_state = 5}, + [5224] = {.lex_state = 62, .external_lex_state = 2}, [5225] = {.lex_state = 349, .external_lex_state = 5}, - [5226] = {.lex_state = 45, .external_lex_state = 2}, - [5227] = {.lex_state = 349, .external_lex_state = 6}, - [5228] = {.lex_state = 349, .external_lex_state = 5}, + [5226] = {.lex_state = 349, .external_lex_state = 5}, + [5227] = {.lex_state = 349, .external_lex_state = 5}, + [5228] = {.lex_state = 45, .external_lex_state = 2}, [5229] = {.lex_state = 349, .external_lex_state = 5}, - [5230] = {.lex_state = 45, .external_lex_state = 2}, + [5230] = {.lex_state = 349, .external_lex_state = 5}, [5231] = {.lex_state = 349, .external_lex_state = 5}, [5232] = {.lex_state = 349, .external_lex_state = 5}, - [5233] = {.lex_state = 349, .external_lex_state = 5}, + [5233] = {.lex_state = 45, .external_lex_state = 2}, [5234] = {.lex_state = 349, .external_lex_state = 5}, - [5235] = {.lex_state = 45, .external_lex_state = 2}, + [5235] = {.lex_state = 349, .external_lex_state = 5}, [5236] = {.lex_state = 349, .external_lex_state = 5}, - [5237] = {.lex_state = 349, .external_lex_state = 5}, + [5237] = {.lex_state = 45, .external_lex_state = 2}, [5238] = {.lex_state = 349, .external_lex_state = 5}, [5239] = {.lex_state = 349, .external_lex_state = 5}, [5240] = {.lex_state = 349, .external_lex_state = 5}, @@ -25512,122 +25576,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5243] = {.lex_state = 349, .external_lex_state = 5}, [5244] = {.lex_state = 349, .external_lex_state = 5}, [5245] = {.lex_state = 349, .external_lex_state = 5}, - [5246] = {.lex_state = 349, .external_lex_state = 2}, + [5246] = {.lex_state = 349, .external_lex_state = 5}, [5247] = {.lex_state = 349, .external_lex_state = 5}, [5248] = {.lex_state = 349, .external_lex_state = 5}, - [5249] = {.lex_state = 349, .external_lex_state = 5}, + [5249] = {.lex_state = 349, .external_lex_state = 2}, [5250] = {.lex_state = 349, .external_lex_state = 5}, - [5251] = {.lex_state = 349, .external_lex_state = 6}, - [5252] = {.lex_state = 349, .external_lex_state = 5}, + [5251] = {.lex_state = 349, .external_lex_state = 5}, + [5252] = {.lex_state = 349, .external_lex_state = 6}, [5253] = {.lex_state = 349, .external_lex_state = 5}, [5254] = {.lex_state = 349, .external_lex_state = 5}, [5255] = {.lex_state = 349, .external_lex_state = 5}, [5256] = {.lex_state = 349, .external_lex_state = 5}, - [5257] = {.lex_state = 349, .external_lex_state = 8}, - [5258] = {.lex_state = 349, .external_lex_state = 5}, - [5259] = {.lex_state = 62, .external_lex_state = 2}, + [5257] = {.lex_state = 349, .external_lex_state = 5}, + [5258] = {.lex_state = 349, .external_lex_state = 8}, + [5259] = {.lex_state = 349, .external_lex_state = 5}, [5260] = {.lex_state = 349, .external_lex_state = 5}, [5261] = {.lex_state = 349, .external_lex_state = 5}, - [5262] = {.lex_state = 349, .external_lex_state = 5}, + [5262] = {.lex_state = 62, .external_lex_state = 2}, [5263] = {.lex_state = 349, .external_lex_state = 5}, [5264] = {.lex_state = 349, .external_lex_state = 5}, - [5265] = {.lex_state = 45, .external_lex_state = 2}, - [5266] = {.lex_state = 349, .external_lex_state = 6}, + [5265] = {.lex_state = 349, .external_lex_state = 5}, + [5266] = {.lex_state = 349, .external_lex_state = 5}, [5267] = {.lex_state = 349, .external_lex_state = 6}, - [5268] = {.lex_state = 349, .external_lex_state = 5}, - [5269] = {.lex_state = 45, .external_lex_state = 2}, - [5270] = {.lex_state = 349, .external_lex_state = 5}, - [5271] = {.lex_state = 45, .external_lex_state = 5}, - [5272] = {.lex_state = 349, .external_lex_state = 5}, + [5268] = {.lex_state = 45, .external_lex_state = 2}, + [5269] = {.lex_state = 349, .external_lex_state = 5}, + [5270] = {.lex_state = 349, .external_lex_state = 6}, + [5271] = {.lex_state = 349, .external_lex_state = 5}, + [5272] = {.lex_state = 45, .external_lex_state = 2}, [5273] = {.lex_state = 349, .external_lex_state = 5}, - [5274] = {.lex_state = 349, .external_lex_state = 5}, + [5274] = {.lex_state = 45, .external_lex_state = 5}, [5275] = {.lex_state = 349, .external_lex_state = 5}, [5276] = {.lex_state = 349, .external_lex_state = 5}, [5277] = {.lex_state = 349, .external_lex_state = 5}, - [5278] = {.lex_state = 349, .external_lex_state = 6}, - [5279] = {.lex_state = 45, .external_lex_state = 5}, - [5280] = {.lex_state = 349, .external_lex_state = 6}, + [5278] = {.lex_state = 349, .external_lex_state = 5}, + [5279] = {.lex_state = 349, .external_lex_state = 5}, + [5280] = {.lex_state = 349, .external_lex_state = 5}, [5281] = {.lex_state = 349, .external_lex_state = 6}, - [5282] = {.lex_state = 349, .external_lex_state = 5}, - [5283] = {.lex_state = 349, .external_lex_state = 5}, - [5284] = {.lex_state = 349, .external_lex_state = 5}, + [5282] = {.lex_state = 45, .external_lex_state = 5}, + [5283] = {.lex_state = 349, .external_lex_state = 6}, + [5284] = {.lex_state = 349, .external_lex_state = 6}, [5285] = {.lex_state = 349, .external_lex_state = 5}, - [5286] = {.lex_state = 45, .external_lex_state = 2}, + [5286] = {.lex_state = 349, .external_lex_state = 5}, [5287] = {.lex_state = 349, .external_lex_state = 5}, [5288] = {.lex_state = 349, .external_lex_state = 5}, - [5289] = {.lex_state = 349, .external_lex_state = 5}, - [5290] = {.lex_state = 45, .external_lex_state = 2}, + [5289] = {.lex_state = 45, .external_lex_state = 2}, + [5290] = {.lex_state = 349, .external_lex_state = 5}, [5291] = {.lex_state = 349, .external_lex_state = 5}, - [5292] = {.lex_state = 45, .external_lex_state = 2}, - [5293] = {.lex_state = 349, .external_lex_state = 5}, - [5294] = {.lex_state = 45, .external_lex_state = 2}, + [5292] = {.lex_state = 349, .external_lex_state = 5}, + [5293] = {.lex_state = 45, .external_lex_state = 2}, + [5294] = {.lex_state = 349, .external_lex_state = 5}, [5295] = {.lex_state = 349, .external_lex_state = 5}, - [5296] = {.lex_state = 349, .external_lex_state = 5}, + [5296] = {.lex_state = 45, .external_lex_state = 2}, [5297] = {.lex_state = 45, .external_lex_state = 2}, [5298] = {.lex_state = 349, .external_lex_state = 5}, [5299] = {.lex_state = 349, .external_lex_state = 5}, - [5300] = {.lex_state = 349, .external_lex_state = 5}, - [5301] = {.lex_state = 45, .external_lex_state = 2}, + [5300] = {.lex_state = 45, .external_lex_state = 2}, + [5301] = {.lex_state = 349, .external_lex_state = 5}, [5302] = {.lex_state = 349, .external_lex_state = 5}, [5303] = {.lex_state = 349, .external_lex_state = 5}, [5304] = {.lex_state = 349, .external_lex_state = 5}, - [5305] = {.lex_state = 349, .external_lex_state = 2}, + [5305] = {.lex_state = 45, .external_lex_state = 2}, [5306] = {.lex_state = 349, .external_lex_state = 5}, [5307] = {.lex_state = 349, .external_lex_state = 5}, - [5308] = {.lex_state = 349, .external_lex_state = 6}, - [5309] = {.lex_state = 349, .external_lex_state = 5}, - [5310] = {.lex_state = 45, .external_lex_state = 5}, + [5308] = {.lex_state = 349, .external_lex_state = 5}, + [5309] = {.lex_state = 349, .external_lex_state = 2}, + [5310] = {.lex_state = 349, .external_lex_state = 5}, [5311] = {.lex_state = 349, .external_lex_state = 5}, [5312] = {.lex_state = 349, .external_lex_state = 5}, - [5313] = {.lex_state = 46, .external_lex_state = 2}, - [5314] = {.lex_state = 46, .external_lex_state = 2}, - [5315] = {.lex_state = 45, .external_lex_state = 2}, - [5316] = {.lex_state = 349, .external_lex_state = 5}, - [5317] = {.lex_state = 349, .external_lex_state = 5}, + [5313] = {.lex_state = 349, .external_lex_state = 6}, + [5314] = {.lex_state = 349, .external_lex_state = 5}, + [5315] = {.lex_state = 349, .external_lex_state = 5}, + [5316] = {.lex_state = 46, .external_lex_state = 2}, + [5317] = {.lex_state = 46, .external_lex_state = 2}, [5318] = {.lex_state = 45, .external_lex_state = 2}, [5319] = {.lex_state = 349, .external_lex_state = 5}, [5320] = {.lex_state = 349, .external_lex_state = 5}, - [5321] = {.lex_state = 349, .external_lex_state = 6}, + [5321] = {.lex_state = 45, .external_lex_state = 2}, [5322] = {.lex_state = 349, .external_lex_state = 5}, - [5323] = {.lex_state = 45, .external_lex_state = 2}, - [5324] = {.lex_state = 349, .external_lex_state = 5}, - [5325] = {.lex_state = 349, .external_lex_state = 5}, + [5323] = {.lex_state = 349, .external_lex_state = 5}, + [5324] = {.lex_state = 349, .external_lex_state = 6}, + [5325] = {.lex_state = 45, .external_lex_state = 5}, [5326] = {.lex_state = 349, .external_lex_state = 5}, [5327] = {.lex_state = 349, .external_lex_state = 5}, - [5328] = {.lex_state = 45, .external_lex_state = 5}, + [5328] = {.lex_state = 45, .external_lex_state = 2}, [5329] = {.lex_state = 349, .external_lex_state = 5}, [5330] = {.lex_state = 349, .external_lex_state = 5}, [5331] = {.lex_state = 349, .external_lex_state = 5}, [5332] = {.lex_state = 349, .external_lex_state = 5}, - [5333] = {.lex_state = 349, .external_lex_state = 5}, + [5333] = {.lex_state = 45, .external_lex_state = 5}, [5334] = {.lex_state = 349, .external_lex_state = 5}, [5335] = {.lex_state = 349, .external_lex_state = 5}, - [5336] = {.lex_state = 45, .external_lex_state = 5}, + [5336] = {.lex_state = 349, .external_lex_state = 5}, [5337] = {.lex_state = 349, .external_lex_state = 5}, [5338] = {.lex_state = 349, .external_lex_state = 5}, - [5339] = {.lex_state = 349, .external_lex_state = 5}, - [5340] = {.lex_state = 45, .external_lex_state = 5}, - [5341] = {.lex_state = 349, .external_lex_state = 5}, + [5339] = {.lex_state = 45, .external_lex_state = 5}, + [5340] = {.lex_state = 349, .external_lex_state = 5}, + [5341] = {.lex_state = 45, .external_lex_state = 5}, [5342] = {.lex_state = 349, .external_lex_state = 5}, [5343] = {.lex_state = 349, .external_lex_state = 5}, - [5344] = {.lex_state = 349, .external_lex_state = 6}, - [5345] = {.lex_state = 349, .external_lex_state = 5}, + [5344] = {.lex_state = 349, .external_lex_state = 5}, + [5345] = {.lex_state = 349, .external_lex_state = 6}, [5346] = {.lex_state = 349, .external_lex_state = 5}, [5347] = {.lex_state = 349, .external_lex_state = 5}, - [5348] = {.lex_state = 349, .external_lex_state = 2}, + [5348] = {.lex_state = 349, .external_lex_state = 5}, [5349] = {.lex_state = 349, .external_lex_state = 5}, - [5350] = {.lex_state = 349, .external_lex_state = 5}, + [5350] = {.lex_state = 349, .external_lex_state = 2}, [5351] = {.lex_state = 349, .external_lex_state = 5}, [5352] = {.lex_state = 349, .external_lex_state = 5}, - [5353] = {.lex_state = 349, .external_lex_state = 6}, - [5354] = {.lex_state = 349, .external_lex_state = 5}, + [5353] = {.lex_state = 349, .external_lex_state = 5}, + [5354] = {.lex_state = 349, .external_lex_state = 6}, [5355] = {.lex_state = 45, .external_lex_state = 5}, - [5356] = {.lex_state = 349, .external_lex_state = 5}, + [5356] = {.lex_state = 349, .external_lex_state = 6}, [5357] = {.lex_state = 349, .external_lex_state = 5}, - [5358] = {.lex_state = 349, .external_lex_state = 6}, + [5358] = {.lex_state = 349, .external_lex_state = 5}, [5359] = {.lex_state = 349, .external_lex_state = 5}, - [5360] = {.lex_state = 62, .external_lex_state = 2}, - [5361] = {.lex_state = 349, .external_lex_state = 5}, + [5360] = {.lex_state = 349, .external_lex_state = 5}, + [5361] = {.lex_state = 62, .external_lex_state = 2}, [5362] = {.lex_state = 349, .external_lex_state = 5}, [5363] = {.lex_state = 349, .external_lex_state = 5}, [5364] = {.lex_state = 349, .external_lex_state = 5}, @@ -25641,284 +25705,284 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5372] = {.lex_state = 349, .external_lex_state = 5}, [5373] = {.lex_state = 349, .external_lex_state = 5}, [5374] = {.lex_state = 349, .external_lex_state = 5}, - [5375] = {.lex_state = 45, .external_lex_state = 2}, + [5375] = {.lex_state = 349, .external_lex_state = 5}, [5376] = {.lex_state = 349, .external_lex_state = 5}, [5377] = {.lex_state = 58, .external_lex_state = 9}, - [5378] = {.lex_state = 349, .external_lex_state = 5}, - [5379] = {.lex_state = 54, .external_lex_state = 9}, - [5380] = {.lex_state = 58, .external_lex_state = 9}, - [5381] = {.lex_state = 54, .external_lex_state = 9}, + [5378] = {.lex_state = 54, .external_lex_state = 9}, + [5379] = {.lex_state = 45, .external_lex_state = 2}, + [5380] = {.lex_state = 349, .external_lex_state = 5}, + [5381] = {.lex_state = 349, .external_lex_state = 5}, [5382] = {.lex_state = 349, .external_lex_state = 5}, - [5383] = {.lex_state = 349, .external_lex_state = 5}, - [5384] = {.lex_state = 349, .external_lex_state = 5}, - [5385] = {.lex_state = 54, .external_lex_state = 9}, + [5383] = {.lex_state = 54, .external_lex_state = 9}, + [5384] = {.lex_state = 58, .external_lex_state = 9}, + [5385] = {.lex_state = 349, .external_lex_state = 5}, [5386] = {.lex_state = 349, .external_lex_state = 5}, - [5387] = {.lex_state = 58, .external_lex_state = 9}, - [5388] = {.lex_state = 58, .external_lex_state = 9}, - [5389] = {.lex_state = 54, .external_lex_state = 9}, - [5390] = {.lex_state = 349, .external_lex_state = 5}, - [5391] = {.lex_state = 349, .external_lex_state = 5}, - [5392] = {.lex_state = 54, .external_lex_state = 9}, - [5393] = {.lex_state = 58, .external_lex_state = 9}, + [5387] = {.lex_state = 349, .external_lex_state = 5}, + [5388] = {.lex_state = 54, .external_lex_state = 9}, + [5389] = {.lex_state = 58, .external_lex_state = 9}, + [5390] = {.lex_state = 54, .external_lex_state = 9}, + [5391] = {.lex_state = 58, .external_lex_state = 9}, + [5392] = {.lex_state = 349, .external_lex_state = 5}, + [5393] = {.lex_state = 349, .external_lex_state = 5}, [5394] = {.lex_state = 45, .external_lex_state = 2}, - [5395] = {.lex_state = 45, .external_lex_state = 2}, - [5396] = {.lex_state = 349, .external_lex_state = 5}, - [5397] = {.lex_state = 349, .external_lex_state = 5}, - [5398] = {.lex_state = 1, .external_lex_state = 2}, - [5399] = {.lex_state = 45, .external_lex_state = 2}, - [5400] = {.lex_state = 45, .external_lex_state = 2}, - [5401] = {.lex_state = 349, .external_lex_state = 5}, - [5402] = {.lex_state = 54, .external_lex_state = 9}, - [5403] = {.lex_state = 58, .external_lex_state = 9}, - [5404] = {.lex_state = 45, .external_lex_state = 2}, - [5405] = {.lex_state = 349, .external_lex_state = 2}, + [5395] = {.lex_state = 54, .external_lex_state = 9}, + [5396] = {.lex_state = 58, .external_lex_state = 9}, + [5397] = {.lex_state = 45, .external_lex_state = 2}, + [5398] = {.lex_state = 349, .external_lex_state = 5}, + [5399] = {.lex_state = 349, .external_lex_state = 5}, + [5400] = {.lex_state = 1, .external_lex_state = 2}, + [5401] = {.lex_state = 45, .external_lex_state = 2}, + [5402] = {.lex_state = 45, .external_lex_state = 2}, + [5403] = {.lex_state = 54, .external_lex_state = 9}, + [5404] = {.lex_state = 58, .external_lex_state = 9}, + [5405] = {.lex_state = 349, .external_lex_state = 5}, [5406] = {.lex_state = 45, .external_lex_state = 2}, [5407] = {.lex_state = 54, .external_lex_state = 9}, - [5408] = {.lex_state = 58, .external_lex_state = 9}, - [5409] = {.lex_state = 54, .external_lex_state = 9}, - [5410] = {.lex_state = 58, .external_lex_state = 9}, - [5411] = {.lex_state = 54, .external_lex_state = 9}, - [5412] = {.lex_state = 58, .external_lex_state = 9}, - [5413] = {.lex_state = 45, .external_lex_state = 2}, - [5414] = {.lex_state = 54, .external_lex_state = 9}, - [5415] = {.lex_state = 58, .external_lex_state = 9}, - [5416] = {.lex_state = 54, .external_lex_state = 9}, - [5417] = {.lex_state = 349, .external_lex_state = 5}, - [5418] = {.lex_state = 58, .external_lex_state = 9}, - [5419] = {.lex_state = 54, .external_lex_state = 9}, - [5420] = {.lex_state = 58, .external_lex_state = 9}, - [5421] = {.lex_state = 54, .external_lex_state = 9}, - [5422] = {.lex_state = 58, .external_lex_state = 9}, - [5423] = {.lex_state = 349, .external_lex_state = 5}, - [5424] = {.lex_state = 349, .external_lex_state = 5}, - [5425] = {.lex_state = 349, .external_lex_state = 5}, - [5426] = {.lex_state = 349, .external_lex_state = 5}, - [5427] = {.lex_state = 54, .external_lex_state = 9}, - [5428] = {.lex_state = 58, .external_lex_state = 9}, - [5429] = {.lex_state = 54, .external_lex_state = 9}, - [5430] = {.lex_state = 58, .external_lex_state = 9}, - [5431] = {.lex_state = 45, .external_lex_state = 2}, - [5432] = {.lex_state = 54, .external_lex_state = 9}, - [5433] = {.lex_state = 58, .external_lex_state = 9}, + [5408] = {.lex_state = 45, .external_lex_state = 2}, + [5409] = {.lex_state = 58, .external_lex_state = 9}, + [5410] = {.lex_state = 54, .external_lex_state = 9}, + [5411] = {.lex_state = 58, .external_lex_state = 9}, + [5412] = {.lex_state = 54, .external_lex_state = 9}, + [5413] = {.lex_state = 58, .external_lex_state = 9}, + [5414] = {.lex_state = 45, .external_lex_state = 2}, + [5415] = {.lex_state = 54, .external_lex_state = 9}, + [5416] = {.lex_state = 349, .external_lex_state = 5}, + [5417] = {.lex_state = 58, .external_lex_state = 9}, + [5418] = {.lex_state = 54, .external_lex_state = 9}, + [5419] = {.lex_state = 58, .external_lex_state = 9}, + [5420] = {.lex_state = 54, .external_lex_state = 9}, + [5421] = {.lex_state = 58, .external_lex_state = 9}, + [5422] = {.lex_state = 54, .external_lex_state = 9}, + [5423] = {.lex_state = 58, .external_lex_state = 9}, + [5424] = {.lex_state = 54, .external_lex_state = 9}, + [5425] = {.lex_state = 58, .external_lex_state = 9}, + [5426] = {.lex_state = 349, .external_lex_state = 2}, + [5427] = {.lex_state = 349, .external_lex_state = 5}, + [5428] = {.lex_state = 349, .external_lex_state = 5}, + [5429] = {.lex_state = 349, .external_lex_state = 5}, + [5430] = {.lex_state = 349, .external_lex_state = 5}, + [5431] = {.lex_state = 54, .external_lex_state = 9}, + [5432] = {.lex_state = 58, .external_lex_state = 9}, + [5433] = {.lex_state = 45, .external_lex_state = 2}, [5434] = {.lex_state = 54, .external_lex_state = 9}, - [5435] = {.lex_state = 45, .external_lex_state = 2}, - [5436] = {.lex_state = 58, .external_lex_state = 9}, + [5435] = {.lex_state = 58, .external_lex_state = 9}, + [5436] = {.lex_state = 54, .external_lex_state = 9}, [5437] = {.lex_state = 45, .external_lex_state = 2}, - [5438] = {.lex_state = 349, .external_lex_state = 5}, - [5439] = {.lex_state = 349, .external_lex_state = 5}, - [5440] = {.lex_state = 54, .external_lex_state = 9}, - [5441] = {.lex_state = 58, .external_lex_state = 9}, + [5438] = {.lex_state = 58, .external_lex_state = 9}, + [5439] = {.lex_state = 45, .external_lex_state = 2}, + [5440] = {.lex_state = 349, .external_lex_state = 5}, + [5441] = {.lex_state = 349, .external_lex_state = 5}, [5442] = {.lex_state = 45, .external_lex_state = 2}, [5443] = {.lex_state = 349, .external_lex_state = 5}, - [5444] = {.lex_state = 349, .external_lex_state = 5}, - [5445] = {.lex_state = 349, .external_lex_state = 5}, - [5446] = {.lex_state = 349, .external_lex_state = 2}, - [5447] = {.lex_state = 45, .external_lex_state = 2}, + [5444] = {.lex_state = 54, .external_lex_state = 9}, + [5445] = {.lex_state = 58, .external_lex_state = 9}, + [5446] = {.lex_state = 349, .external_lex_state = 5}, + [5447] = {.lex_state = 349, .external_lex_state = 2}, [5448] = {.lex_state = 349, .external_lex_state = 5}, - [5449] = {.lex_state = 349, .external_lex_state = 2}, - [5450] = {.lex_state = 24, .external_lex_state = 2}, - [5451] = {.lex_state = 45, .external_lex_state = 2}, - [5452] = {.lex_state = 45, .external_lex_state = 2}, - [5453] = {.lex_state = 70, .external_lex_state = 2}, - [5454] = {.lex_state = 45, .external_lex_state = 2}, + [5449] = {.lex_state = 45, .external_lex_state = 2}, + [5450] = {.lex_state = 349, .external_lex_state = 5}, + [5451] = {.lex_state = 349, .external_lex_state = 2}, + [5452] = {.lex_state = 24, .external_lex_state = 2}, + [5453] = {.lex_state = 45, .external_lex_state = 2}, + [5454] = {.lex_state = 70, .external_lex_state = 2}, [5455] = {.lex_state = 45, .external_lex_state = 2}, - [5456] = {.lex_state = 349, .external_lex_state = 5}, + [5456] = {.lex_state = 45, .external_lex_state = 2}, [5457] = {.lex_state = 45, .external_lex_state = 2}, - [5458] = {.lex_state = 45, .external_lex_state = 2}, - [5459] = {.lex_state = 24, .external_lex_state = 2}, - [5460] = {.lex_state = 24, .external_lex_state = 2}, + [5458] = {.lex_state = 349, .external_lex_state = 5}, + [5459] = {.lex_state = 45, .external_lex_state = 2}, + [5460] = {.lex_state = 45, .external_lex_state = 2}, [5461] = {.lex_state = 24, .external_lex_state = 2}, - [5462] = {.lex_state = 47, .external_lex_state = 2}, - [5463] = {.lex_state = 349, .external_lex_state = 5}, - [5464] = {.lex_state = 349, .external_lex_state = 2}, - [5465] = {.lex_state = 46, .external_lex_state = 2}, - [5466] = {.lex_state = 45, .external_lex_state = 2}, - [5467] = {.lex_state = 45, .external_lex_state = 2}, - [5468] = {.lex_state = 58, .external_lex_state = 9}, - [5469] = {.lex_state = 54, .external_lex_state = 9}, - [5470] = {.lex_state = 24, .external_lex_state = 2}, - [5471] = {.lex_state = 349, .external_lex_state = 5}, + [5462] = {.lex_state = 24, .external_lex_state = 2}, + [5463] = {.lex_state = 24, .external_lex_state = 2}, + [5464] = {.lex_state = 47, .external_lex_state = 2}, + [5465] = {.lex_state = 349, .external_lex_state = 5}, + [5466] = {.lex_state = 349, .external_lex_state = 2}, + [5467] = {.lex_state = 58, .external_lex_state = 9}, + [5468] = {.lex_state = 54, .external_lex_state = 9}, + [5469] = {.lex_state = 46, .external_lex_state = 2}, + [5470] = {.lex_state = 45, .external_lex_state = 2}, + [5471] = {.lex_state = 45, .external_lex_state = 2}, [5472] = {.lex_state = 349, .external_lex_state = 5}, [5473] = {.lex_state = 349, .external_lex_state = 5}, [5474] = {.lex_state = 349, .external_lex_state = 5}, - [5475] = {.lex_state = 45, .external_lex_state = 2}, - [5476] = {.lex_state = 349, .external_lex_state = 2}, - [5477] = {.lex_state = 349, .external_lex_state = 5}, - [5478] = {.lex_state = 349, .external_lex_state = 7}, - [5479] = {.lex_state = 349, .external_lex_state = 5}, - [5480] = {.lex_state = 70, .external_lex_state = 2}, - [5481] = {.lex_state = 45, .external_lex_state = 2}, + [5475] = {.lex_state = 349, .external_lex_state = 5}, + [5476] = {.lex_state = 24, .external_lex_state = 2}, + [5477] = {.lex_state = 45, .external_lex_state = 2}, + [5478] = {.lex_state = 349, .external_lex_state = 5}, + [5479] = {.lex_state = 349, .external_lex_state = 2}, + [5480] = {.lex_state = 349, .external_lex_state = 7}, + [5481] = {.lex_state = 70, .external_lex_state = 2}, [5482] = {.lex_state = 58, .external_lex_state = 9}, - [5483] = {.lex_state = 54, .external_lex_state = 9}, - [5484] = {.lex_state = 45, .external_lex_state = 2}, - [5485] = {.lex_state = 70, .external_lex_state = 2}, + [5483] = {.lex_state = 349, .external_lex_state = 5}, + [5484] = {.lex_state = 54, .external_lex_state = 9}, + [5485] = {.lex_state = 45, .external_lex_state = 2}, [5486] = {.lex_state = 45, .external_lex_state = 2}, - [5487] = {.lex_state = 349, .external_lex_state = 7}, - [5488] = {.lex_state = 349, .external_lex_state = 5}, - [5489] = {.lex_state = 349, .external_lex_state = 5}, - [5490] = {.lex_state = 349, .external_lex_state = 5}, + [5487] = {.lex_state = 70, .external_lex_state = 2}, + [5488] = {.lex_state = 45, .external_lex_state = 2}, + [5489] = {.lex_state = 349, .external_lex_state = 7}, + [5490] = {.lex_state = 45, .external_lex_state = 2}, [5491] = {.lex_state = 45, .external_lex_state = 2}, - [5492] = {.lex_state = 45, .external_lex_state = 2}, + [5492] = {.lex_state = 349, .external_lex_state = 5}, [5493] = {.lex_state = 349, .external_lex_state = 5}, [5494] = {.lex_state = 349, .external_lex_state = 5}, [5495] = {.lex_state = 45, .external_lex_state = 2}, [5496] = {.lex_state = 45, .external_lex_state = 2}, - [5497] = {.lex_state = 45, .external_lex_state = 2}, - [5498] = {.lex_state = 45, .external_lex_state = 2}, + [5497] = {.lex_state = 349, .external_lex_state = 5}, + [5498] = {.lex_state = 349, .external_lex_state = 5}, [5499] = {.lex_state = 45, .external_lex_state = 2}, - [5500] = {.lex_state = 349, .external_lex_state = 2}, - [5501] = {.lex_state = 349, .external_lex_state = 2}, - [5502] = {.lex_state = 349, .external_lex_state = 5}, - [5503] = {.lex_state = 45, .external_lex_state = 2}, + [5500] = {.lex_state = 45, .external_lex_state = 2}, + [5501] = {.lex_state = 45, .external_lex_state = 2}, + [5502] = {.lex_state = 349, .external_lex_state = 2}, + [5503] = {.lex_state = 349, .external_lex_state = 2}, [5504] = {.lex_state = 45, .external_lex_state = 2}, - [5505] = {.lex_state = 45, .external_lex_state = 2}, - [5506] = {.lex_state = 349, .external_lex_state = 5}, - [5507] = {.lex_state = 349, .external_lex_state = 5}, - [5508] = {.lex_state = 45, .external_lex_state = 2}, + [5505] = {.lex_state = 349, .external_lex_state = 5}, + [5506] = {.lex_state = 45, .external_lex_state = 2}, + [5507] = {.lex_state = 45, .external_lex_state = 2}, + [5508] = {.lex_state = 349, .external_lex_state = 5}, [5509] = {.lex_state = 349, .external_lex_state = 5}, [5510] = {.lex_state = 349, .external_lex_state = 5}, [5511] = {.lex_state = 349, .external_lex_state = 5}, - [5512] = {.lex_state = 349, .external_lex_state = 5}, - [5513] = {.lex_state = 349, .external_lex_state = 2}, + [5512] = {.lex_state = 45, .external_lex_state = 2}, + [5513] = {.lex_state = 349, .external_lex_state = 5}, [5514] = {.lex_state = 349, .external_lex_state = 5}, - [5515] = {.lex_state = 45, .external_lex_state = 2}, + [5515] = {.lex_state = 349, .external_lex_state = 2}, [5516] = {.lex_state = 349, .external_lex_state = 5}, [5517] = {.lex_state = 349, .external_lex_state = 5}, - [5518] = {.lex_state = 47, .external_lex_state = 2}, - [5519] = {.lex_state = 349, .external_lex_state = 2}, - [5520] = {.lex_state = 70, .external_lex_state = 2}, - [5521] = {.lex_state = 45, .external_lex_state = 2}, - [5522] = {.lex_state = 45, .external_lex_state = 2}, + [5518] = {.lex_state = 349, .external_lex_state = 5}, + [5519] = {.lex_state = 45, .external_lex_state = 2}, + [5520] = {.lex_state = 47, .external_lex_state = 2}, + [5521] = {.lex_state = 349, .external_lex_state = 2}, + [5522] = {.lex_state = 70, .external_lex_state = 2}, [5523] = {.lex_state = 45, .external_lex_state = 2}, - [5524] = {.lex_state = 349, .external_lex_state = 2}, - [5525] = {.lex_state = 45, .external_lex_state = 2}, + [5524] = {.lex_state = 45, .external_lex_state = 2}, + [5525] = {.lex_state = 349, .external_lex_state = 2}, [5526] = {.lex_state = 45, .external_lex_state = 2}, [5527] = {.lex_state = 45, .external_lex_state = 2}, - [5528] = {.lex_state = 349, .external_lex_state = 2}, - [5529] = {.lex_state = 349, .external_lex_state = 2}, - [5530] = {.lex_state = 349, .external_lex_state = 6}, - [5531] = {.lex_state = 45, .external_lex_state = 2}, - [5532] = {.lex_state = 45, .external_lex_state = 2}, - [5533] = {.lex_state = 58, .external_lex_state = 9}, - [5534] = {.lex_state = 349, .external_lex_state = 5}, - [5535] = {.lex_state = 349, .external_lex_state = 5}, + [5528] = {.lex_state = 45, .external_lex_state = 2}, + [5529] = {.lex_state = 45, .external_lex_state = 2}, + [5530] = {.lex_state = 349, .external_lex_state = 2}, + [5531] = {.lex_state = 349, .external_lex_state = 2}, + [5532] = {.lex_state = 349, .external_lex_state = 6}, + [5533] = {.lex_state = 45, .external_lex_state = 2}, + [5534] = {.lex_state = 45, .external_lex_state = 2}, + [5535] = {.lex_state = 58, .external_lex_state = 9}, [5536] = {.lex_state = 54, .external_lex_state = 9}, - [5537] = {.lex_state = 349, .external_lex_state = 5}, - [5538] = {.lex_state = 349, .external_lex_state = 2}, + [5537] = {.lex_state = 349, .external_lex_state = 2}, + [5538] = {.lex_state = 349, .external_lex_state = 5}, [5539] = {.lex_state = 349, .external_lex_state = 5}, [5540] = {.lex_state = 349, .external_lex_state = 5}, - [5541] = {.lex_state = 45, .external_lex_state = 2}, + [5541] = {.lex_state = 349, .external_lex_state = 5}, [5542] = {.lex_state = 349, .external_lex_state = 5}, [5543] = {.lex_state = 349, .external_lex_state = 5}, [5544] = {.lex_state = 349, .external_lex_state = 5}, [5545] = {.lex_state = 349, .external_lex_state = 5}, [5546] = {.lex_state = 45, .external_lex_state = 2}, - [5547] = {.lex_state = 349, .external_lex_state = 5}, + [5547] = {.lex_state = 45, .external_lex_state = 2}, [5548] = {.lex_state = 349, .external_lex_state = 5}, - [5549] = {.lex_state = 58, .external_lex_state = 9}, - [5550] = {.lex_state = 54, .external_lex_state = 9}, - [5551] = {.lex_state = 349, .external_lex_state = 2}, - [5552] = {.lex_state = 45, .external_lex_state = 2}, - [5553] = {.lex_state = 45, .external_lex_state = 2}, - [5554] = {.lex_state = 349, .external_lex_state = 5}, - [5555] = {.lex_state = 58, .external_lex_state = 9}, + [5549] = {.lex_state = 349, .external_lex_state = 5}, + [5550] = {.lex_state = 349, .external_lex_state = 5}, + [5551] = {.lex_state = 58, .external_lex_state = 9}, + [5552] = {.lex_state = 54, .external_lex_state = 9}, + [5553] = {.lex_state = 349, .external_lex_state = 2}, + [5554] = {.lex_state = 58, .external_lex_state = 9}, + [5555] = {.lex_state = 45, .external_lex_state = 2}, [5556] = {.lex_state = 54, .external_lex_state = 9}, [5557] = {.lex_state = 45, .external_lex_state = 2}, - [5558] = {.lex_state = 21, .external_lex_state = 2}, - [5559] = {.lex_state = 349, .external_lex_state = 5}, - [5560] = {.lex_state = 349, .external_lex_state = 5}, + [5558] = {.lex_state = 349, .external_lex_state = 5}, + [5559] = {.lex_state = 45, .external_lex_state = 2}, + [5560] = {.lex_state = 21, .external_lex_state = 2}, [5561] = {.lex_state = 349, .external_lex_state = 5}, [5562] = {.lex_state = 349, .external_lex_state = 5}, [5563] = {.lex_state = 349, .external_lex_state = 5}, - [5564] = {.lex_state = 1, .external_lex_state = 2}, + [5564] = {.lex_state = 349, .external_lex_state = 5}, [5565] = {.lex_state = 349, .external_lex_state = 5}, [5566] = {.lex_state = 349, .external_lex_state = 5}, [5567] = {.lex_state = 349, .external_lex_state = 5}, [5568] = {.lex_state = 349, .external_lex_state = 5}, [5569] = {.lex_state = 349, .external_lex_state = 5}, [5570] = {.lex_state = 349, .external_lex_state = 5}, - [5571] = {.lex_state = 349, .external_lex_state = 2}, - [5572] = {.lex_state = 349, .external_lex_state = 2}, - [5573] = {.lex_state = 349, .external_lex_state = 7}, - [5574] = {.lex_state = 349, .external_lex_state = 5}, - [5575] = {.lex_state = 58, .external_lex_state = 9}, - [5576] = {.lex_state = 54, .external_lex_state = 9}, - [5577] = {.lex_state = 45, .external_lex_state = 2}, - [5578] = {.lex_state = 58, .external_lex_state = 9}, - [5579] = {.lex_state = 1, .external_lex_state = 2}, - [5580] = {.lex_state = 54, .external_lex_state = 9}, + [5571] = {.lex_state = 1, .external_lex_state = 2}, + [5572] = {.lex_state = 349, .external_lex_state = 5}, + [5573] = {.lex_state = 349, .external_lex_state = 2}, + [5574] = {.lex_state = 349, .external_lex_state = 2}, + [5575] = {.lex_state = 349, .external_lex_state = 5}, + [5576] = {.lex_state = 58, .external_lex_state = 9}, + [5577] = {.lex_state = 54, .external_lex_state = 9}, + [5578] = {.lex_state = 349, .external_lex_state = 7}, + [5579] = {.lex_state = 45, .external_lex_state = 2}, + [5580] = {.lex_state = 1, .external_lex_state = 2}, [5581] = {.lex_state = 58, .external_lex_state = 9}, [5582] = {.lex_state = 54, .external_lex_state = 9}, - [5583] = {.lex_state = 349, .external_lex_state = 2}, - [5584] = {.lex_state = 45, .external_lex_state = 2}, - [5585] = {.lex_state = 349, .external_lex_state = 5}, - [5586] = {.lex_state = 349, .external_lex_state = 5}, - [5587] = {.lex_state = 349, .external_lex_state = 2}, + [5583] = {.lex_state = 58, .external_lex_state = 9}, + [5584] = {.lex_state = 54, .external_lex_state = 9}, + [5585] = {.lex_state = 349, .external_lex_state = 2}, + [5586] = {.lex_state = 45, .external_lex_state = 2}, + [5587] = {.lex_state = 349, .external_lex_state = 5}, [5588] = {.lex_state = 349, .external_lex_state = 5}, [5589] = {.lex_state = 349, .external_lex_state = 2}, - [5590] = {.lex_state = 349, .external_lex_state = 2}, - [5591] = {.lex_state = 45, .external_lex_state = 2}, - [5592] = {.lex_state = 349, .external_lex_state = 5}, - [5593] = {.lex_state = 45, .external_lex_state = 2}, - [5594] = {.lex_state = 349, .external_lex_state = 2}, - [5595] = {.lex_state = 349, .external_lex_state = 5}, - [5596] = {.lex_state = 349, .external_lex_state = 5}, - [5597] = {.lex_state = 45, .external_lex_state = 2}, - [5598] = {.lex_state = 349, .external_lex_state = 5}, - [5599] = {.lex_state = 349, .external_lex_state = 2}, - [5600] = {.lex_state = 45, .external_lex_state = 2}, - [5601] = {.lex_state = 1, .external_lex_state = 2}, - [5602] = {.lex_state = 349, .external_lex_state = 2}, - [5603] = {.lex_state = 58, .external_lex_state = 9}, - [5604] = {.lex_state = 54, .external_lex_state = 9}, - [5605] = {.lex_state = 75, .external_lex_state = 2}, - [5606] = {.lex_state = 349, .external_lex_state = 5}, - [5607] = {.lex_state = 349, .external_lex_state = 5}, - [5608] = {.lex_state = 349, .external_lex_state = 2}, - [5609] = {.lex_state = 47, .external_lex_state = 5}, - [5610] = {.lex_state = 47, .external_lex_state = 5}, - [5611] = {.lex_state = 24, .external_lex_state = 2}, - [5612] = {.lex_state = 349, .external_lex_state = 5}, - [5613] = {.lex_state = 47, .external_lex_state = 2}, - [5614] = {.lex_state = 24, .external_lex_state = 2}, - [5615] = {.lex_state = 349, .external_lex_state = 5}, + [5590] = {.lex_state = 349, .external_lex_state = 5}, + [5591] = {.lex_state = 349, .external_lex_state = 2}, + [5592] = {.lex_state = 349, .external_lex_state = 2}, + [5593] = {.lex_state = 349, .external_lex_state = 5}, + [5594] = {.lex_state = 349, .external_lex_state = 5}, + [5595] = {.lex_state = 45, .external_lex_state = 2}, + [5596] = {.lex_state = 45, .external_lex_state = 2}, + [5597] = {.lex_state = 349, .external_lex_state = 5}, + [5598] = {.lex_state = 349, .external_lex_state = 2}, + [5599] = {.lex_state = 45, .external_lex_state = 2}, + [5600] = {.lex_state = 349, .external_lex_state = 5}, + [5601] = {.lex_state = 349, .external_lex_state = 2}, + [5602] = {.lex_state = 45, .external_lex_state = 2}, + [5603] = {.lex_state = 1, .external_lex_state = 2}, + [5604] = {.lex_state = 349, .external_lex_state = 2}, + [5605] = {.lex_state = 58, .external_lex_state = 9}, + [5606] = {.lex_state = 54, .external_lex_state = 9}, + [5607] = {.lex_state = 349, .external_lex_state = 2}, + [5608] = {.lex_state = 349, .external_lex_state = 5}, + [5609] = {.lex_state = 349, .external_lex_state = 2}, + [5610] = {.lex_state = 349, .external_lex_state = 5}, + [5611] = {.lex_state = 47, .external_lex_state = 5}, + [5612] = {.lex_state = 47, .external_lex_state = 5}, + [5613] = {.lex_state = 24, .external_lex_state = 2}, + [5614] = {.lex_state = 349, .external_lex_state = 5}, + [5615] = {.lex_state = 47, .external_lex_state = 2}, [5616] = {.lex_state = 24, .external_lex_state = 2}, [5617] = {.lex_state = 24, .external_lex_state = 2}, - [5618] = {.lex_state = 21, .external_lex_state = 2}, - [5619] = {.lex_state = 47, .external_lex_state = 2}, - [5620] = {.lex_state = 45, .external_lex_state = 2}, - [5621] = {.lex_state = 24, .external_lex_state = 2}, - [5622] = {.lex_state = 24, .external_lex_state = 2}, - [5623] = {.lex_state = 24, .external_lex_state = 2}, + [5618] = {.lex_state = 349, .external_lex_state = 5}, + [5619] = {.lex_state = 349, .external_lex_state = 5}, + [5620] = {.lex_state = 24, .external_lex_state = 2}, + [5621] = {.lex_state = 21, .external_lex_state = 2}, + [5622] = {.lex_state = 47, .external_lex_state = 2}, + [5623] = {.lex_state = 45, .external_lex_state = 2}, [5624] = {.lex_state = 24, .external_lex_state = 2}, - [5625] = {.lex_state = 45, .external_lex_state = 2}, - [5626] = {.lex_state = 349, .external_lex_state = 5}, + [5625] = {.lex_state = 24, .external_lex_state = 2}, + [5626] = {.lex_state = 24, .external_lex_state = 2}, [5627] = {.lex_state = 24, .external_lex_state = 2}, - [5628] = {.lex_state = 349, .external_lex_state = 2}, - [5629] = {.lex_state = 349, .external_lex_state = 5}, - [5630] = {.lex_state = 349, .external_lex_state = 2}, - [5631] = {.lex_state = 349, .external_lex_state = 5}, + [5628] = {.lex_state = 45, .external_lex_state = 2}, + [5629] = {.lex_state = 24, .external_lex_state = 2}, + [5630] = {.lex_state = 349, .external_lex_state = 5}, + [5631] = {.lex_state = 349, .external_lex_state = 2}, [5632] = {.lex_state = 349, .external_lex_state = 2}, - [5633] = {.lex_state = 349, .external_lex_state = 2}, + [5633] = {.lex_state = 349, .external_lex_state = 5}, [5634] = {.lex_state = 349, .external_lex_state = 2}, [5635] = {.lex_state = 349, .external_lex_state = 5}, [5636] = {.lex_state = 349, .external_lex_state = 2}, - [5637] = {.lex_state = 45, .external_lex_state = 2}, - [5638] = {.lex_state = 24, .external_lex_state = 2}, - [5639] = {.lex_state = 349, .external_lex_state = 5}, - [5640] = {.lex_state = 24, .external_lex_state = 2}, + [5637] = {.lex_state = 349, .external_lex_state = 2}, + [5638] = {.lex_state = 45, .external_lex_state = 2}, + [5639] = {.lex_state = 24, .external_lex_state = 2}, + [5640] = {.lex_state = 349, .external_lex_state = 2}, [5641] = {.lex_state = 24, .external_lex_state = 2}, [5642] = {.lex_state = 349, .external_lex_state = 2}, - [5643] = {.lex_state = 349, .external_lex_state = 2}, - [5644] = {.lex_state = 349, .external_lex_state = 2}, - [5645] = {.lex_state = 45, .external_lex_state = 2}, + [5643] = {.lex_state = 349, .external_lex_state = 5}, + [5644] = {.lex_state = 24, .external_lex_state = 2}, + [5645] = {.lex_state = 349, .external_lex_state = 2}, [5646] = {.lex_state = 349, .external_lex_state = 2}, - [5647] = {.lex_state = 349, .external_lex_state = 2}, - [5648] = {.lex_state = 47, .external_lex_state = 5}, - [5649] = {.lex_state = 47, .external_lex_state = 5}, - [5650] = {.lex_state = 349, .external_lex_state = 2}, - [5651] = {.lex_state = 349, .external_lex_state = 5}, - [5652] = {.lex_state = 349, .external_lex_state = 5}, + [5647] = {.lex_state = 45, .external_lex_state = 2}, + [5648] = {.lex_state = 349, .external_lex_state = 2}, + [5649] = {.lex_state = 349, .external_lex_state = 2}, + [5650] = {.lex_state = 47, .external_lex_state = 5}, + [5651] = {.lex_state = 47, .external_lex_state = 5}, + [5652] = {.lex_state = 349, .external_lex_state = 2}, [5653] = {.lex_state = 349, .external_lex_state = 2}, [5654] = {.lex_state = 349, .external_lex_state = 2}, [5655] = {.lex_state = 349, .external_lex_state = 2}, @@ -25926,31 +25990,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5657] = {.lex_state = 349, .external_lex_state = 5}, [5658] = {.lex_state = 349, .external_lex_state = 2}, [5659] = {.lex_state = 349, .external_lex_state = 2}, - [5660] = {.lex_state = 349, .external_lex_state = 2}, + [5660] = {.lex_state = 349, .external_lex_state = 5}, [5661] = {.lex_state = 349, .external_lex_state = 2}, - [5662] = {.lex_state = 45, .external_lex_state = 2}, - [5663] = {.lex_state = 349, .external_lex_state = 2}, - [5664] = {.lex_state = 24, .external_lex_state = 2}, - [5665] = {.lex_state = 349, .external_lex_state = 5}, - [5666] = {.lex_state = 54, .external_lex_state = 9}, + [5662] = {.lex_state = 349, .external_lex_state = 2}, + [5663] = {.lex_state = 45, .external_lex_state = 2}, + [5664] = {.lex_state = 349, .external_lex_state = 2}, + [5665] = {.lex_state = 54, .external_lex_state = 9}, + [5666] = {.lex_state = 24, .external_lex_state = 2}, [5667] = {.lex_state = 349, .external_lex_state = 5}, - [5668] = {.lex_state = 349, .external_lex_state = 5}, + [5668] = {.lex_state = 58, .external_lex_state = 9}, [5669] = {.lex_state = 349, .external_lex_state = 5}, [5670] = {.lex_state = 349, .external_lex_state = 5}, [5671] = {.lex_state = 349, .external_lex_state = 5}, [5672] = {.lex_state = 349, .external_lex_state = 5}, [5673] = {.lex_state = 349, .external_lex_state = 5}, [5674] = {.lex_state = 349, .external_lex_state = 5}, - [5675] = {.lex_state = 58, .external_lex_state = 9}, + [5675] = {.lex_state = 349, .external_lex_state = 5}, [5676] = {.lex_state = 349, .external_lex_state = 5}, [5677] = {.lex_state = 349, .external_lex_state = 5}, - [5678] = {.lex_state = 349, .external_lex_state = 5}, - [5679] = {.lex_state = 349, .external_lex_state = 5}, + [5678] = {.lex_state = 70, .external_lex_state = 2}, + [5679] = {.lex_state = 349, .external_lex_state = 2}, [5680] = {.lex_state = 349, .external_lex_state = 5}, - [5681] = {.lex_state = 70, .external_lex_state = 2}, + [5681] = {.lex_state = 349, .external_lex_state = 5}, [5682] = {.lex_state = 349, .external_lex_state = 5}, - [5683] = {.lex_state = 349, .external_lex_state = 2}, - [5684] = {.lex_state = 349, .external_lex_state = 5}, + [5683] = {.lex_state = 349, .external_lex_state = 5}, + [5684] = {.lex_state = 349, .external_lex_state = 2}, [5685] = {.lex_state = 349, .external_lex_state = 5}, [5686] = {.lex_state = 349, .external_lex_state = 2}, [5687] = {.lex_state = 349, .external_lex_state = 5}, @@ -25964,287 +26028,287 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5695] = {.lex_state = 349, .external_lex_state = 5}, [5696] = {.lex_state = 349, .external_lex_state = 5}, [5697] = {.lex_state = 349, .external_lex_state = 5}, - [5698] = {.lex_state = 349, .external_lex_state = 2}, + [5698] = {.lex_state = 349, .external_lex_state = 5}, [5699] = {.lex_state = 349, .external_lex_state = 5}, - [5700] = {.lex_state = 349, .external_lex_state = 2}, + [5700] = {.lex_state = 349, .external_lex_state = 5}, [5701] = {.lex_state = 349, .external_lex_state = 5}, - [5702] = {.lex_state = 349, .external_lex_state = 2}, - [5703] = {.lex_state = 45, .external_lex_state = 2}, - [5704] = {.lex_state = 47, .external_lex_state = 5}, - [5705] = {.lex_state = 47, .external_lex_state = 5}, + [5702] = {.lex_state = 45, .external_lex_state = 2}, + [5703] = {.lex_state = 47, .external_lex_state = 2}, + [5704] = {.lex_state = 349, .external_lex_state = 2}, + [5705] = {.lex_state = 349, .external_lex_state = 5}, [5706] = {.lex_state = 349, .external_lex_state = 2}, - [5707] = {.lex_state = 349, .external_lex_state = 5}, - [5708] = {.lex_state = 349, .external_lex_state = 5}, - [5709] = {.lex_state = 349, .external_lex_state = 5}, + [5707] = {.lex_state = 349, .external_lex_state = 2}, + [5708] = {.lex_state = 47, .external_lex_state = 5}, + [5709] = {.lex_state = 47, .external_lex_state = 5}, [5710] = {.lex_state = 47, .external_lex_state = 2}, - [5711] = {.lex_state = 349, .external_lex_state = 2}, - [5712] = {.lex_state = 349, .external_lex_state = 5}, + [5711] = {.lex_state = 349, .external_lex_state = 5}, + [5712] = {.lex_state = 349, .external_lex_state = 2}, [5713] = {.lex_state = 47, .external_lex_state = 2}, [5714] = {.lex_state = 47, .external_lex_state = 2}, [5715] = {.lex_state = 349, .external_lex_state = 5}, - [5716] = {.lex_state = 349, .external_lex_state = 2}, + [5716] = {.lex_state = 47, .external_lex_state = 2}, [5717] = {.lex_state = 349, .external_lex_state = 5}, - [5718] = {.lex_state = 47, .external_lex_state = 2}, - [5719] = {.lex_state = 47, .external_lex_state = 2}, + [5718] = {.lex_state = 349, .external_lex_state = 2}, + [5719] = {.lex_state = 349, .external_lex_state = 2}, [5720] = {.lex_state = 349, .external_lex_state = 5}, - [5721] = {.lex_state = 349, .external_lex_state = 2}, - [5722] = {.lex_state = 349, .external_lex_state = 2}, - [5723] = {.lex_state = 349, .external_lex_state = 5}, + [5721] = {.lex_state = 47, .external_lex_state = 2}, + [5722] = {.lex_state = 349, .external_lex_state = 5}, + [5723] = {.lex_state = 349, .external_lex_state = 2}, [5724] = {.lex_state = 349, .external_lex_state = 5}, [5725] = {.lex_state = 349, .external_lex_state = 5}, - [5726] = {.lex_state = 47, .external_lex_state = 2}, - [5727] = {.lex_state = 349, .external_lex_state = 2}, + [5726] = {.lex_state = 349, .external_lex_state = 2}, + [5727] = {.lex_state = 21, .external_lex_state = 2}, [5728] = {.lex_state = 349, .external_lex_state = 5}, [5729] = {.lex_state = 349, .external_lex_state = 5}, [5730] = {.lex_state = 349, .external_lex_state = 5}, [5731] = {.lex_state = 349, .external_lex_state = 5}, - [5732] = {.lex_state = 21, .external_lex_state = 2}, - [5733] = {.lex_state = 349, .external_lex_state = 2}, + [5732] = {.lex_state = 349, .external_lex_state = 2}, + [5733] = {.lex_state = 349, .external_lex_state = 5}, [5734] = {.lex_state = 349, .external_lex_state = 5}, [5735] = {.lex_state = 349, .external_lex_state = 5}, - [5736] = {.lex_state = 349, .external_lex_state = 5}, - [5737] = {.lex_state = 349, .external_lex_state = 2}, + [5736] = {.lex_state = 349, .external_lex_state = 2}, + [5737] = {.lex_state = 349, .external_lex_state = 5}, [5738] = {.lex_state = 349, .external_lex_state = 2}, [5739] = {.lex_state = 349, .external_lex_state = 5}, - [5740] = {.lex_state = 349, .external_lex_state = 2}, + [5740] = {.lex_state = 349, .external_lex_state = 5}, [5741] = {.lex_state = 349, .external_lex_state = 2}, [5742] = {.lex_state = 349, .external_lex_state = 2}, - [5743] = {.lex_state = 349, .external_lex_state = 2}, - [5744] = {.lex_state = 349, .external_lex_state = 5}, - [5745] = {.lex_state = 349, .external_lex_state = 2}, - [5746] = {.lex_state = 349, .external_lex_state = 5}, - [5747] = {.lex_state = 47, .external_lex_state = 2}, - [5748] = {.lex_state = 349, .external_lex_state = 5}, + [5743] = {.lex_state = 349, .external_lex_state = 5}, + [5744] = {.lex_state = 349, .external_lex_state = 2}, + [5745] = {.lex_state = 349, .external_lex_state = 5}, + [5746] = {.lex_state = 349, .external_lex_state = 2}, + [5747] = {.lex_state = 349, .external_lex_state = 2}, + [5748] = {.lex_state = 349, .external_lex_state = 2}, [5749] = {.lex_state = 349, .external_lex_state = 2}, [5750] = {.lex_state = 349, .external_lex_state = 5}, - [5751] = {.lex_state = 349, .external_lex_state = 5}, + [5751] = {.lex_state = 47, .external_lex_state = 2}, [5752] = {.lex_state = 349, .external_lex_state = 2}, - [5753] = {.lex_state = 349, .external_lex_state = 2}, - [5754] = {.lex_state = 349, .external_lex_state = 2}, - [5755] = {.lex_state = 21, .external_lex_state = 2}, - [5756] = {.lex_state = 349, .external_lex_state = 5}, - [5757] = {.lex_state = 349, .external_lex_state = 2}, - [5758] = {.lex_state = 349, .external_lex_state = 5}, + [5753] = {.lex_state = 349, .external_lex_state = 5}, + [5754] = {.lex_state = 349, .external_lex_state = 5}, + [5755] = {.lex_state = 349, .external_lex_state = 5}, + [5756] = {.lex_state = 349, .external_lex_state = 2}, + [5757] = {.lex_state = 21, .external_lex_state = 2}, + [5758] = {.lex_state = 349, .external_lex_state = 2}, [5759] = {.lex_state = 349, .external_lex_state = 5}, [5760] = {.lex_state = 75, .external_lex_state = 2}, [5761] = {.lex_state = 349, .external_lex_state = 5}, [5762] = {.lex_state = 349, .external_lex_state = 5}, [5763] = {.lex_state = 349, .external_lex_state = 5}, - [5764] = {.lex_state = 46, .external_lex_state = 2}, - [5765] = {.lex_state = 349, .external_lex_state = 5}, - [5766] = {.lex_state = 349, .external_lex_state = 5}, + [5764] = {.lex_state = 349, .external_lex_state = 5}, + [5765] = {.lex_state = 349, .external_lex_state = 2}, + [5766] = {.lex_state = 349, .external_lex_state = 2}, [5767] = {.lex_state = 349, .external_lex_state = 2}, - [5768] = {.lex_state = 349, .external_lex_state = 2}, - [5769] = {.lex_state = 349, .external_lex_state = 2}, - [5770] = {.lex_state = 349, .external_lex_state = 2}, + [5768] = {.lex_state = 349, .external_lex_state = 5}, + [5769] = {.lex_state = 349, .external_lex_state = 5}, + [5770] = {.lex_state = 349, .external_lex_state = 5}, [5771] = {.lex_state = 349, .external_lex_state = 2}, - [5772] = {.lex_state = 349, .external_lex_state = 5}, + [5772] = {.lex_state = 349, .external_lex_state = 2}, [5773] = {.lex_state = 349, .external_lex_state = 2}, - [5774] = {.lex_state = 349, .external_lex_state = 5}, - [5775] = {.lex_state = 349, .external_lex_state = 5}, - [5776] = {.lex_state = 349, .external_lex_state = 2}, - [5777] = {.lex_state = 349, .external_lex_state = 2}, - [5778] = {.lex_state = 349, .external_lex_state = 2}, - [5779] = {.lex_state = 349, .external_lex_state = 5}, - [5780] = {.lex_state = 349, .external_lex_state = 5}, - [5781] = {.lex_state = 349, .external_lex_state = 2}, + [5774] = {.lex_state = 349, .external_lex_state = 2}, + [5775] = {.lex_state = 349, .external_lex_state = 2}, + [5776] = {.lex_state = 349, .external_lex_state = 5}, + [5777] = {.lex_state = 349, .external_lex_state = 5}, + [5778] = {.lex_state = 349, .external_lex_state = 5}, + [5779] = {.lex_state = 349, .external_lex_state = 2}, + [5780] = {.lex_state = 349, .external_lex_state = 2}, + [5781] = {.lex_state = 349, .external_lex_state = 5}, [5782] = {.lex_state = 349, .external_lex_state = 5}, [5783] = {.lex_state = 349, .external_lex_state = 5}, [5784] = {.lex_state = 349, .external_lex_state = 5}, - [5785] = {.lex_state = 349, .external_lex_state = 5}, + [5785] = {.lex_state = 45, .external_lex_state = 2}, [5786] = {.lex_state = 349, .external_lex_state = 5}, [5787] = {.lex_state = 349, .external_lex_state = 5}, - [5788] = {.lex_state = 349, .external_lex_state = 2}, + [5788] = {.lex_state = 349, .external_lex_state = 5}, [5789] = {.lex_state = 349, .external_lex_state = 5}, - [5790] = {.lex_state = 45, .external_lex_state = 2}, + [5790] = {.lex_state = 349, .external_lex_state = 2}, [5791] = {.lex_state = 349, .external_lex_state = 2}, - [5792] = {.lex_state = 349, .external_lex_state = 8}, - [5793] = {.lex_state = 349, .external_lex_state = 2}, - [5794] = {.lex_state = 349, .external_lex_state = 5}, - [5795] = {.lex_state = 349, .external_lex_state = 5}, + [5792] = {.lex_state = 349, .external_lex_state = 5}, + [5793] = {.lex_state = 46, .external_lex_state = 2}, + [5794] = {.lex_state = 349, .external_lex_state = 2}, + [5795] = {.lex_state = 349, .external_lex_state = 8}, [5796] = {.lex_state = 45, .external_lex_state = 2}, - [5797] = {.lex_state = 47, .external_lex_state = 2}, - [5798] = {.lex_state = 24, .external_lex_state = 2}, - [5799] = {.lex_state = 45, .external_lex_state = 2}, + [5797] = {.lex_state = 349, .external_lex_state = 5}, + [5798] = {.lex_state = 349, .external_lex_state = 5}, + [5799] = {.lex_state = 24, .external_lex_state = 2}, [5800] = {.lex_state = 45, .external_lex_state = 2}, - [5801] = {.lex_state = 349, .external_lex_state = 5}, - [5802] = {.lex_state = 45, .external_lex_state = 2}, + [5801] = {.lex_state = 45, .external_lex_state = 2}, + [5802] = {.lex_state = 349, .external_lex_state = 5}, [5803] = {.lex_state = 349, .external_lex_state = 2}, - [5804] = {.lex_state = 349, .external_lex_state = 2}, - [5805] = {.lex_state = 349, .external_lex_state = 2}, - [5806] = {.lex_state = 45, .external_lex_state = 2}, - [5807] = {.lex_state = 24, .external_lex_state = 2}, - [5808] = {.lex_state = 349, .external_lex_state = 5}, - [5809] = {.lex_state = 349, .external_lex_state = 2}, + [5804] = {.lex_state = 45, .external_lex_state = 2}, + [5805] = {.lex_state = 47, .external_lex_state = 2}, + [5806] = {.lex_state = 349, .external_lex_state = 2}, + [5807] = {.lex_state = 45, .external_lex_state = 2}, + [5808] = {.lex_state = 349, .external_lex_state = 2}, + [5809] = {.lex_state = 24, .external_lex_state = 2}, [5810] = {.lex_state = 349, .external_lex_state = 5}, - [5811] = {.lex_state = 349, .external_lex_state = 5}, - [5812] = {.lex_state = 45, .external_lex_state = 2}, - [5813] = {.lex_state = 349, .external_lex_state = 5}, + [5811] = {.lex_state = 349, .external_lex_state = 2}, + [5812] = {.lex_state = 349, .external_lex_state = 5}, + [5813] = {.lex_state = 349, .external_lex_state = 2}, [5814] = {.lex_state = 45, .external_lex_state = 2}, [5815] = {.lex_state = 349, .external_lex_state = 5}, - [5816] = {.lex_state = 349, .external_lex_state = 2}, - [5817] = {.lex_state = 349, .external_lex_state = 5}, - [5818] = {.lex_state = 1, .external_lex_state = 2}, - [5819] = {.lex_state = 349, .external_lex_state = 2}, - [5820] = {.lex_state = 349, .external_lex_state = 2}, + [5816] = {.lex_state = 349, .external_lex_state = 5}, + [5817] = {.lex_state = 45, .external_lex_state = 2}, + [5818] = {.lex_state = 349, .external_lex_state = 5}, + [5819] = {.lex_state = 1, .external_lex_state = 2}, + [5820] = {.lex_state = 349, .external_lex_state = 5}, [5821] = {.lex_state = 45, .external_lex_state = 2}, - [5822] = {.lex_state = 349, .external_lex_state = 5}, - [5823] = {.lex_state = 45, .external_lex_state = 2}, + [5822] = {.lex_state = 349, .external_lex_state = 2}, + [5823] = {.lex_state = 349, .external_lex_state = 2}, [5824] = {.lex_state = 45, .external_lex_state = 2}, [5825] = {.lex_state = 349, .external_lex_state = 5}, - [5826] = {.lex_state = 45, .external_lex_state = 2}, - [5827] = {.lex_state = 349, .external_lex_state = 5}, - [5828] = {.lex_state = 45, .external_lex_state = 2}, + [5826] = {.lex_state = 21, .external_lex_state = 2}, + [5827] = {.lex_state = 45, .external_lex_state = 2}, + [5828] = {.lex_state = 349, .external_lex_state = 5}, [5829] = {.lex_state = 349, .external_lex_state = 5}, [5830] = {.lex_state = 45, .external_lex_state = 2}, [5831] = {.lex_state = 349, .external_lex_state = 5}, - [5832] = {.lex_state = 21, .external_lex_state = 2}, + [5832] = {.lex_state = 45, .external_lex_state = 2}, [5833] = {.lex_state = 349, .external_lex_state = 5}, - [5834] = {.lex_state = 24, .external_lex_state = 2}, + [5834] = {.lex_state = 45, .external_lex_state = 2}, [5835] = {.lex_state = 349, .external_lex_state = 5}, - [5836] = {.lex_state = 349, .external_lex_state = 5}, - [5837] = {.lex_state = 349, .external_lex_state = 2}, - [5838] = {.lex_state = 349, .external_lex_state = 2}, + [5836] = {.lex_state = 349, .external_lex_state = 2}, + [5837] = {.lex_state = 349, .external_lex_state = 5}, + [5838] = {.lex_state = 24, .external_lex_state = 2}, [5839] = {.lex_state = 349, .external_lex_state = 2}, - [5840] = {.lex_state = 349, .external_lex_state = 5}, - [5841] = {.lex_state = 349, .external_lex_state = 2}, - [5842] = {.lex_state = 349, .external_lex_state = 5}, - [5843] = {.lex_state = 349, .external_lex_state = 5}, - [5844] = {.lex_state = 349, .external_lex_state = 2}, - [5845] = {.lex_state = 349, .external_lex_state = 2}, - [5846] = {.lex_state = 349, .external_lex_state = 2}, - [5847] = {.lex_state = 45, .external_lex_state = 2}, + [5840] = {.lex_state = 349, .external_lex_state = 2}, + [5841] = {.lex_state = 349, .external_lex_state = 5}, + [5842] = {.lex_state = 349, .external_lex_state = 2}, + [5843] = {.lex_state = 349, .external_lex_state = 2}, + [5844] = {.lex_state = 45, .external_lex_state = 2}, + [5845] = {.lex_state = 349, .external_lex_state = 5}, + [5846] = {.lex_state = 349, .external_lex_state = 5}, + [5847] = {.lex_state = 349, .external_lex_state = 2}, [5848] = {.lex_state = 349, .external_lex_state = 2}, - [5849] = {.lex_state = 349, .external_lex_state = 5}, + [5849] = {.lex_state = 349, .external_lex_state = 2}, [5850] = {.lex_state = 349, .external_lex_state = 5}, - [5851] = {.lex_state = 349, .external_lex_state = 2}, + [5851] = {.lex_state = 349, .external_lex_state = 5}, [5852] = {.lex_state = 349, .external_lex_state = 5}, - [5853] = {.lex_state = 47, .external_lex_state = 2}, - [5854] = {.lex_state = 349, .external_lex_state = 5}, + [5853] = {.lex_state = 349, .external_lex_state = 2}, + [5854] = {.lex_state = 47, .external_lex_state = 2}, [5855] = {.lex_state = 349, .external_lex_state = 5}, [5856] = {.lex_state = 21, .external_lex_state = 2}, [5857] = {.lex_state = 21, .external_lex_state = 2}, [5858] = {.lex_state = 349, .external_lex_state = 5}, - [5859] = {.lex_state = 50, .external_lex_state = 2}, - [5860] = {.lex_state = 349, .external_lex_state = 5}, - [5861] = {.lex_state = 50, .external_lex_state = 2}, + [5859] = {.lex_state = 349, .external_lex_state = 5}, + [5860] = {.lex_state = 50, .external_lex_state = 2}, + [5861] = {.lex_state = 349, .external_lex_state = 5}, [5862] = {.lex_state = 349, .external_lex_state = 5}, - [5863] = {.lex_state = 349, .external_lex_state = 5}, + [5863] = {.lex_state = 50, .external_lex_state = 2}, [5864] = {.lex_state = 349, .external_lex_state = 5}, [5865] = {.lex_state = 349, .external_lex_state = 2}, [5866] = {.lex_state = 349, .external_lex_state = 5}, - [5867] = {.lex_state = 349, .external_lex_state = 2}, + [5867] = {.lex_state = 349, .external_lex_state = 5}, [5868] = {.lex_state = 349, .external_lex_state = 5}, [5869] = {.lex_state = 349, .external_lex_state = 5}, - [5870] = {.lex_state = 349, .external_lex_state = 5}, + [5870] = {.lex_state = 349, .external_lex_state = 2}, [5871] = {.lex_state = 349, .external_lex_state = 5}, - [5872] = {.lex_state = 349, .external_lex_state = 5}, + [5872] = {.lex_state = 349, .external_lex_state = 2}, [5873] = {.lex_state = 349, .external_lex_state = 5}, [5874] = {.lex_state = 349, .external_lex_state = 5}, - [5875] = {.lex_state = 349, .external_lex_state = 2}, - [5876] = {.lex_state = 349, .external_lex_state = 5}, - [5877] = {.lex_state = 349, .external_lex_state = 2}, - [5878] = {.lex_state = 349, .external_lex_state = 2}, - [5879] = {.lex_state = 75, .external_lex_state = 2}, + [5875] = {.lex_state = 349, .external_lex_state = 5}, + [5876] = {.lex_state = 75, .external_lex_state = 2}, + [5877] = {.lex_state = 349, .external_lex_state = 5}, + [5878] = {.lex_state = 349, .external_lex_state = 5}, + [5879] = {.lex_state = 349, .external_lex_state = 5}, [5880] = {.lex_state = 349, .external_lex_state = 5}, - [5881] = {.lex_state = 349, .external_lex_state = 5}, - [5882] = {.lex_state = 349, .external_lex_state = 5}, + [5881] = {.lex_state = 349, .external_lex_state = 2}, + [5882] = {.lex_state = 349, .external_lex_state = 2}, [5883] = {.lex_state = 349, .external_lex_state = 5}, [5884] = {.lex_state = 349, .external_lex_state = 5}, [5885] = {.lex_state = 349, .external_lex_state = 5}, - [5886] = {.lex_state = 24, .external_lex_state = 2}, - [5887] = {.lex_state = 349, .external_lex_state = 5}, - [5888] = {.lex_state = 349, .external_lex_state = 2}, - [5889] = {.lex_state = 349, .external_lex_state = 2}, - [5890] = {.lex_state = 349, .external_lex_state = 5}, + [5886] = {.lex_state = 349, .external_lex_state = 5}, + [5887] = {.lex_state = 349, .external_lex_state = 2}, + [5888] = {.lex_state = 349, .external_lex_state = 5}, + [5889] = {.lex_state = 349, .external_lex_state = 5}, + [5890] = {.lex_state = 24, .external_lex_state = 2}, [5891] = {.lex_state = 349, .external_lex_state = 2}, - [5892] = {.lex_state = 349, .external_lex_state = 5}, + [5892] = {.lex_state = 349, .external_lex_state = 2}, [5893] = {.lex_state = 349, .external_lex_state = 2}, [5894] = {.lex_state = 349, .external_lex_state = 2}, - [5895] = {.lex_state = 349, .external_lex_state = 5}, + [5895] = {.lex_state = 349, .external_lex_state = 2}, [5896] = {.lex_state = 349, .external_lex_state = 2}, [5897] = {.lex_state = 349, .external_lex_state = 2}, - [5898] = {.lex_state = 47, .external_lex_state = 2}, - [5899] = {.lex_state = 21, .external_lex_state = 2}, - [5900] = {.lex_state = 349, .external_lex_state = 5}, + [5898] = {.lex_state = 349, .external_lex_state = 5}, + [5899] = {.lex_state = 349, .external_lex_state = 5}, + [5900] = {.lex_state = 47, .external_lex_state = 2}, [5901] = {.lex_state = 349, .external_lex_state = 5}, - [5902] = {.lex_state = 349, .external_lex_state = 2}, - [5903] = {.lex_state = 349, .external_lex_state = 5}, - [5904] = {.lex_state = 349, .external_lex_state = 2}, - [5905] = {.lex_state = 349, .external_lex_state = 2}, - [5906] = {.lex_state = 349, .external_lex_state = 5}, - [5907] = {.lex_state = 349, .external_lex_state = 2}, + [5902] = {.lex_state = 21, .external_lex_state = 2}, + [5903] = {.lex_state = 349, .external_lex_state = 2}, + [5904] = {.lex_state = 349, .external_lex_state = 5}, + [5905] = {.lex_state = 349, .external_lex_state = 5}, + [5906] = {.lex_state = 349, .external_lex_state = 2}, + [5907] = {.lex_state = 349, .external_lex_state = 5}, [5908] = {.lex_state = 349, .external_lex_state = 2}, [5909] = {.lex_state = 75, .external_lex_state = 2}, - [5910] = {.lex_state = 45, .external_lex_state = 2}, - [5911] = {.lex_state = 349, .external_lex_state = 2}, - [5912] = {.lex_state = 45, .external_lex_state = 2}, - [5913] = {.lex_state = 47, .external_lex_state = 2}, - [5914] = {.lex_state = 47, .external_lex_state = 2}, + [5910] = {.lex_state = 349, .external_lex_state = 5}, + [5911] = {.lex_state = 349, .external_lex_state = 5}, + [5912] = {.lex_state = 349, .external_lex_state = 2}, + [5913] = {.lex_state = 349, .external_lex_state = 2}, + [5914] = {.lex_state = 45, .external_lex_state = 2}, [5915] = {.lex_state = 47, .external_lex_state = 2}, [5916] = {.lex_state = 47, .external_lex_state = 2}, - [5917] = {.lex_state = 21, .external_lex_state = 2}, - [5918] = {.lex_state = 349, .external_lex_state = 5}, + [5917] = {.lex_state = 47, .external_lex_state = 2}, + [5918] = {.lex_state = 21, .external_lex_state = 2}, [5919] = {.lex_state = 47, .external_lex_state = 2}, - [5920] = {.lex_state = 45, .external_lex_state = 2}, - [5921] = {.lex_state = 349, .external_lex_state = 5}, - [5922] = {.lex_state = 349, .external_lex_state = 2}, + [5920] = {.lex_state = 47, .external_lex_state = 2}, + [5921] = {.lex_state = 45, .external_lex_state = 2}, + [5922] = {.lex_state = 45, .external_lex_state = 2}, [5923] = {.lex_state = 349, .external_lex_state = 5}, - [5924] = {.lex_state = 349, .external_lex_state = 2}, + [5924] = {.lex_state = 45, .external_lex_state = 2}, [5925] = {.lex_state = 349, .external_lex_state = 5}, - [5926] = {.lex_state = 45, .external_lex_state = 2}, + [5926] = {.lex_state = 349, .external_lex_state = 2}, [5927] = {.lex_state = 349, .external_lex_state = 5}, - [5928] = {.lex_state = 349, .external_lex_state = 5}, + [5928] = {.lex_state = 349, .external_lex_state = 2}, [5929] = {.lex_state = 349, .external_lex_state = 2}, - [5930] = {.lex_state = 45, .external_lex_state = 2}, - [5931] = {.lex_state = 349, .external_lex_state = 5}, + [5930] = {.lex_state = 349, .external_lex_state = 5}, + [5931] = {.lex_state = 45, .external_lex_state = 2}, [5932] = {.lex_state = 349, .external_lex_state = 5}, [5933] = {.lex_state = 45, .external_lex_state = 2}, - [5934] = {.lex_state = 45, .external_lex_state = 2}, - [5935] = {.lex_state = 24, .external_lex_state = 2}, + [5934] = {.lex_state = 349, .external_lex_state = 5}, + [5935] = {.lex_state = 349, .external_lex_state = 5}, [5936] = {.lex_state = 45, .external_lex_state = 2}, - [5937] = {.lex_state = 349, .external_lex_state = 2}, - [5938] = {.lex_state = 24, .external_lex_state = 2}, - [5939] = {.lex_state = 349, .external_lex_state = 2}, + [5937] = {.lex_state = 24, .external_lex_state = 2}, + [5938] = {.lex_state = 45, .external_lex_state = 2}, + [5939] = {.lex_state = 24, .external_lex_state = 2}, [5940] = {.lex_state = 349, .external_lex_state = 2}, [5941] = {.lex_state = 349, .external_lex_state = 2}, - [5942] = {.lex_state = 349, .external_lex_state = 5}, - [5943] = {.lex_state = 349, .external_lex_state = 5}, - [5944] = {.lex_state = 349, .external_lex_state = 2}, + [5942] = {.lex_state = 349, .external_lex_state = 2}, + [5943] = {.lex_state = 349, .external_lex_state = 2}, + [5944] = {.lex_state = 349, .external_lex_state = 5}, [5945] = {.lex_state = 349, .external_lex_state = 2}, - [5946] = {.lex_state = 62, .external_lex_state = 2}, - [5947] = {.lex_state = 24, .external_lex_state = 2}, - [5948] = {.lex_state = 349, .external_lex_state = 5}, - [5949] = {.lex_state = 349, .external_lex_state = 2}, - [5950] = {.lex_state = 349, .external_lex_state = 5}, + [5946] = {.lex_state = 349, .external_lex_state = 2}, + [5947] = {.lex_state = 349, .external_lex_state = 2}, + [5948] = {.lex_state = 349, .external_lex_state = 2}, + [5949] = {.lex_state = 62, .external_lex_state = 2}, + [5950] = {.lex_state = 75, .external_lex_state = 2}, [5951] = {.lex_state = 349, .external_lex_state = 5}, - [5952] = {.lex_state = 349, .external_lex_state = 5}, + [5952] = {.lex_state = 50, .external_lex_state = 2}, [5953] = {.lex_state = 349, .external_lex_state = 5}, - [5954] = {.lex_state = 349, .external_lex_state = 2}, - [5955] = {.lex_state = 50, .external_lex_state = 2}, + [5954] = {.lex_state = 349, .external_lex_state = 5}, + [5955] = {.lex_state = 349, .external_lex_state = 5}, [5956] = {.lex_state = 349, .external_lex_state = 5}, - [5957] = {.lex_state = 349, .external_lex_state = 2}, - [5958] = {.lex_state = 50, .external_lex_state = 2}, + [5957] = {.lex_state = 50, .external_lex_state = 2}, + [5958] = {.lex_state = 349, .external_lex_state = 5}, [5959] = {.lex_state = 349, .external_lex_state = 5}, [5960] = {.lex_state = 349, .external_lex_state = 2}, - [5961] = {.lex_state = 47, .external_lex_state = 5}, - [5962] = {.lex_state = 47, .external_lex_state = 5}, + [5961] = {.lex_state = 349, .external_lex_state = 2}, + [5962] = {.lex_state = 349, .external_lex_state = 5}, [5963] = {.lex_state = 349, .external_lex_state = 2}, - [5964] = {.lex_state = 349, .external_lex_state = 5}, - [5965] = {.lex_state = 349, .external_lex_state = 5}, - [5966] = {.lex_state = 47, .external_lex_state = 2}, + [5964] = {.lex_state = 47, .external_lex_state = 2}, + [5965] = {.lex_state = 47, .external_lex_state = 5}, + [5966] = {.lex_state = 47, .external_lex_state = 5}, [5967] = {.lex_state = 21, .external_lex_state = 2}, [5968] = {.lex_state = 349, .external_lex_state = 5}, [5969] = {.lex_state = 349, .external_lex_state = 5}, [5970] = {.lex_state = 349, .external_lex_state = 5}, - [5971] = {.lex_state = 349, .external_lex_state = 2}, + [5971] = {.lex_state = 349, .external_lex_state = 5}, [5972] = {.lex_state = 349, .external_lex_state = 5}, - [5973] = {.lex_state = 349, .external_lex_state = 2}, + [5973] = {.lex_state = 349, .external_lex_state = 5}, [5974] = {.lex_state = 349, .external_lex_state = 5}, - [5975] = {.lex_state = 349, .external_lex_state = 5}, + [5975] = {.lex_state = 349, .external_lex_state = 2}, [5976] = {.lex_state = 349, .external_lex_state = 5}, [5977] = {.lex_state = 349, .external_lex_state = 5}, - [5978] = {.lex_state = 349, .external_lex_state = 5}, + [5978] = {.lex_state = 349, .external_lex_state = 2}, [5979] = {.lex_state = 349, .external_lex_state = 5}, [5980] = {.lex_state = 349, .external_lex_state = 5}, [5981] = {.lex_state = 349, .external_lex_state = 5}, @@ -26260,35 +26324,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5991] = {.lex_state = 349, .external_lex_state = 5}, [5992] = {.lex_state = 349, .external_lex_state = 5}, [5993] = {.lex_state = 349, .external_lex_state = 5}, - [5994] = {.lex_state = 349, .external_lex_state = 2}, + [5994] = {.lex_state = 349, .external_lex_state = 5}, [5995] = {.lex_state = 349, .external_lex_state = 5}, [5996] = {.lex_state = 349, .external_lex_state = 2}, [5997] = {.lex_state = 349, .external_lex_state = 5}, - [5998] = {.lex_state = 349, .external_lex_state = 5}, + [5998] = {.lex_state = 349, .external_lex_state = 2}, [5999] = {.lex_state = 349, .external_lex_state = 5}, [6000] = {.lex_state = 349, .external_lex_state = 5}, - [6001] = {.lex_state = 349, .external_lex_state = 2}, + [6001] = {.lex_state = 349, .external_lex_state = 5}, [6002] = {.lex_state = 349, .external_lex_state = 5}, - [6003] = {.lex_state = 349, .external_lex_state = 5}, + [6003] = {.lex_state = 349, .external_lex_state = 2}, [6004] = {.lex_state = 349, .external_lex_state = 5}, - [6005] = {.lex_state = 349, .external_lex_state = 5}, - [6006] = {.lex_state = 349, .external_lex_state = 8}, + [6005] = {.lex_state = 349, .external_lex_state = 8}, + [6006] = {.lex_state = 349, .external_lex_state = 5}, [6007] = {.lex_state = 349, .external_lex_state = 5}, - [6008] = {.lex_state = 70, .external_lex_state = 2}, + [6008] = {.lex_state = 349, .external_lex_state = 2}, [6009] = {.lex_state = 349, .external_lex_state = 5}, [6010] = {.lex_state = 349, .external_lex_state = 5}, - [6011] = {.lex_state = 349, .external_lex_state = 5}, + [6011] = {.lex_state = 70, .external_lex_state = 2}, [6012] = {.lex_state = 349, .external_lex_state = 5}, - [6013] = {.lex_state = 349, .external_lex_state = 2}, + [6013] = {.lex_state = 349, .external_lex_state = 5}, [6014] = {.lex_state = 349, .external_lex_state = 2}, - [6015] = {.lex_state = 349, .external_lex_state = 5}, + [6015] = {.lex_state = 349, .external_lex_state = 2}, [6016] = {.lex_state = 349, .external_lex_state = 5}, [6017] = {.lex_state = 349, .external_lex_state = 5}, - [6018] = {.lex_state = 349, .external_lex_state = 2}, + [6018] = {.lex_state = 349, .external_lex_state = 5}, [6019] = {.lex_state = 349, .external_lex_state = 5}, [6020] = {.lex_state = 349, .external_lex_state = 5}, [6021] = {.lex_state = 349, .external_lex_state = 5}, - [6022] = {.lex_state = 62, .external_lex_state = 2}, + [6022] = {.lex_state = 349, .external_lex_state = 5}, [6023] = {.lex_state = 349, .external_lex_state = 5}, [6024] = {.lex_state = 349, .external_lex_state = 5}, [6025] = {.lex_state = 349, .external_lex_state = 5}, @@ -26300,83 +26364,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6031] = {.lex_state = 349, .external_lex_state = 5}, [6032] = {.lex_state = 349, .external_lex_state = 5}, [6033] = {.lex_state = 349, .external_lex_state = 5}, - [6034] = {.lex_state = 349, .external_lex_state = 5}, - [6035] = {.lex_state = 349, .external_lex_state = 2}, - [6036] = {.lex_state = 349, .external_lex_state = 5}, + [6034] = {.lex_state = 349, .external_lex_state = 2}, + [6035] = {.lex_state = 349, .external_lex_state = 5}, + [6036] = {.lex_state = 62, .external_lex_state = 2}, [6037] = {.lex_state = 349, .external_lex_state = 5}, [6038] = {.lex_state = 349, .external_lex_state = 5}, [6039] = {.lex_state = 349, .external_lex_state = 5}, [6040] = {.lex_state = 349, .external_lex_state = 5}, [6041] = {.lex_state = 349, .external_lex_state = 5}, [6042] = {.lex_state = 349, .external_lex_state = 5}, - [6043] = {.lex_state = 349, .external_lex_state = 2}, - [6044] = {.lex_state = 349, .external_lex_state = 2}, + [6043] = {.lex_state = 349, .external_lex_state = 5}, + [6044] = {.lex_state = 349, .external_lex_state = 5}, [6045] = {.lex_state = 349, .external_lex_state = 5}, - [6046] = {.lex_state = 349, .external_lex_state = 5}, + [6046] = {.lex_state = 349, .external_lex_state = 2}, [6047] = {.lex_state = 349, .external_lex_state = 5}, - [6048] = {.lex_state = 349, .external_lex_state = 5}, + [6048] = {.lex_state = 349, .external_lex_state = 2}, [6049] = {.lex_state = 349, .external_lex_state = 5}, - [6050] = {.lex_state = 24, .external_lex_state = 2}, + [6050] = {.lex_state = 349, .external_lex_state = 5}, [6051] = {.lex_state = 349, .external_lex_state = 5}, [6052] = {.lex_state = 349, .external_lex_state = 5}, - [6053] = {.lex_state = 349, .external_lex_state = 2}, + [6053] = {.lex_state = 349, .external_lex_state = 5}, [6054] = {.lex_state = 349, .external_lex_state = 5}, - [6055] = {.lex_state = 349, .external_lex_state = 2}, - [6056] = {.lex_state = 75, .external_lex_state = 2}, + [6055] = {.lex_state = 24, .external_lex_state = 2}, + [6056] = {.lex_state = 349, .external_lex_state = 2}, [6057] = {.lex_state = 349, .external_lex_state = 2}, - [6058] = {.lex_state = 24, .external_lex_state = 2}, - [6059] = {.lex_state = 349, .external_lex_state = 5}, - [6060] = {.lex_state = 349, .external_lex_state = 2}, - [6061] = {.lex_state = 349, .external_lex_state = 5}, - [6062] = {.lex_state = 70, .external_lex_state = 2}, + [6058] = {.lex_state = 349, .external_lex_state = 5}, + [6059] = {.lex_state = 75, .external_lex_state = 2}, + [6060] = {.lex_state = 24, .external_lex_state = 2}, + [6061] = {.lex_state = 349, .external_lex_state = 2}, + [6062] = {.lex_state = 349, .external_lex_state = 2}, [6063] = {.lex_state = 349, .external_lex_state = 5}, [6064] = {.lex_state = 349, .external_lex_state = 5}, [6065] = {.lex_state = 349, .external_lex_state = 5}, - [6066] = {.lex_state = 349, .external_lex_state = 5}, + [6066] = {.lex_state = 70, .external_lex_state = 2}, [6067] = {.lex_state = 349, .external_lex_state = 5}, [6068] = {.lex_state = 349, .external_lex_state = 5}, [6069] = {.lex_state = 349, .external_lex_state = 5}, [6070] = {.lex_state = 349, .external_lex_state = 5}, [6071] = {.lex_state = 349, .external_lex_state = 5}, - [6072] = {.lex_state = 349, .external_lex_state = 2}, + [6072] = {.lex_state = 349, .external_lex_state = 5}, [6073] = {.lex_state = 349, .external_lex_state = 5}, [6074] = {.lex_state = 349, .external_lex_state = 2}, [6075] = {.lex_state = 349, .external_lex_state = 5}, - [6076] = {.lex_state = 45, .external_lex_state = 2}, - [6077] = {.lex_state = 47, .external_lex_state = 2}, - [6078] = {.lex_state = 21, .external_lex_state = 2}, - [6079] = {.lex_state = 45, .external_lex_state = 2}, - [6080] = {.lex_state = 349, .external_lex_state = 5}, - [6081] = {.lex_state = 45, .external_lex_state = 2}, + [6076] = {.lex_state = 349, .external_lex_state = 2}, + [6077] = {.lex_state = 349, .external_lex_state = 5}, + [6078] = {.lex_state = 47, .external_lex_state = 2}, + [6079] = {.lex_state = 21, .external_lex_state = 2}, + [6080] = {.lex_state = 45, .external_lex_state = 2}, + [6081] = {.lex_state = 349, .external_lex_state = 5}, [6082] = {.lex_state = 349, .external_lex_state = 5}, [6083] = {.lex_state = 45, .external_lex_state = 2}, [6084] = {.lex_state = 349, .external_lex_state = 5}, - [6085] = {.lex_state = 349, .external_lex_state = 5}, + [6085] = {.lex_state = 45, .external_lex_state = 2}, [6086] = {.lex_state = 349, .external_lex_state = 5}, - [6087] = {.lex_state = 24, .external_lex_state = 2}, + [6087] = {.lex_state = 45, .external_lex_state = 2}, [6088] = {.lex_state = 349, .external_lex_state = 5}, [6089] = {.lex_state = 349, .external_lex_state = 5}, [6090] = {.lex_state = 349, .external_lex_state = 5}, - [6091] = {.lex_state = 349, .external_lex_state = 2}, - [6092] = {.lex_state = 349, .external_lex_state = 2}, + [6091] = {.lex_state = 24, .external_lex_state = 2}, + [6092] = {.lex_state = 349, .external_lex_state = 5}, [6093] = {.lex_state = 349, .external_lex_state = 5}, [6094] = {.lex_state = 349, .external_lex_state = 5}, - [6095] = {.lex_state = 349, .external_lex_state = 5}, - [6096] = {.lex_state = 349, .external_lex_state = 5}, + [6095] = {.lex_state = 349, .external_lex_state = 2}, + [6096] = {.lex_state = 349, .external_lex_state = 2}, [6097] = {.lex_state = 349, .external_lex_state = 5}, [6098] = {.lex_state = 349, .external_lex_state = 5}, - [6099] = {.lex_state = 349, .external_lex_state = 5}, + [6099] = {.lex_state = 349, .external_lex_state = 2}, [6100] = {.lex_state = 349, .external_lex_state = 5}, [6101] = {.lex_state = 349, .external_lex_state = 5}, [6102] = {.lex_state = 349, .external_lex_state = 5}, - [6103] = {.lex_state = 349, .external_lex_state = 2}, + [6103] = {.lex_state = 349, .external_lex_state = 5}, [6104] = {.lex_state = 349, .external_lex_state = 5}, [6105] = {.lex_state = 349, .external_lex_state = 5}, - [6106] = {.lex_state = 349, .external_lex_state = 5}, + [6106] = {.lex_state = 349, .external_lex_state = 2}, [6107] = {.lex_state = 349, .external_lex_state = 5}, [6108] = {.lex_state = 349, .external_lex_state = 5}, [6109] = {.lex_state = 349, .external_lex_state = 5}, - [6110] = {.lex_state = 349, .external_lex_state = 2}, + [6110] = {.lex_state = 349, .external_lex_state = 5}, [6111] = {.lex_state = 349, .external_lex_state = 5}, [6112] = {.lex_state = 349, .external_lex_state = 5}, [6113] = {.lex_state = 349, .external_lex_state = 5}, @@ -26385,46 +26449,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6116] = {.lex_state = 349, .external_lex_state = 5}, [6117] = {.lex_state = 349, .external_lex_state = 5}, [6118] = {.lex_state = 349, .external_lex_state = 5}, - [6119] = {.lex_state = 47, .external_lex_state = 2}, + [6119] = {.lex_state = 349, .external_lex_state = 5}, [6120] = {.lex_state = 349, .external_lex_state = 5}, - [6121] = {.lex_state = 47, .external_lex_state = 2}, + [6121] = {.lex_state = 349, .external_lex_state = 5}, [6122] = {.lex_state = 349, .external_lex_state = 5}, [6123] = {.lex_state = 47, .external_lex_state = 2}, [6124] = {.lex_state = 349, .external_lex_state = 5}, [6125] = {.lex_state = 47, .external_lex_state = 2}, [6126] = {.lex_state = 349, .external_lex_state = 5}, - [6127] = {.lex_state = 349, .external_lex_state = 5}, - [6128] = {.lex_state = 349, .external_lex_state = 2}, - [6129] = {.lex_state = 349, .external_lex_state = 5}, + [6127] = {.lex_state = 47, .external_lex_state = 2}, + [6128] = {.lex_state = 349, .external_lex_state = 5}, + [6129] = {.lex_state = 47, .external_lex_state = 2}, [6130] = {.lex_state = 349, .external_lex_state = 5}, [6131] = {.lex_state = 349, .external_lex_state = 5}, - [6132] = {.lex_state = 349, .external_lex_state = 5}, + [6132] = {.lex_state = 349, .external_lex_state = 2}, [6133] = {.lex_state = 349, .external_lex_state = 5}, [6134] = {.lex_state = 349, .external_lex_state = 5}, [6135] = {.lex_state = 349, .external_lex_state = 5}, [6136] = {.lex_state = 349, .external_lex_state = 5}, - [6137] = {.lex_state = 24, .external_lex_state = 2}, + [6137] = {.lex_state = 349, .external_lex_state = 5}, [6138] = {.lex_state = 349, .external_lex_state = 5}, - [6139] = {.lex_state = 349, .external_lex_state = 2}, - [6140] = {.lex_state = 349, .external_lex_state = 2}, - [6141] = {.lex_state = 349, .external_lex_state = 5}, + [6139] = {.lex_state = 349, .external_lex_state = 5}, + [6140] = {.lex_state = 349, .external_lex_state = 5}, + [6141] = {.lex_state = 24, .external_lex_state = 2}, [6142] = {.lex_state = 349, .external_lex_state = 5}, - [6143] = {.lex_state = 349, .external_lex_state = 5}, - [6144] = {.lex_state = 349, .external_lex_state = 5}, + [6143] = {.lex_state = 24, .external_lex_state = 2}, + [6144] = {.lex_state = 349, .external_lex_state = 2}, [6145] = {.lex_state = 349, .external_lex_state = 5}, [6146] = {.lex_state = 349, .external_lex_state = 5}, [6147] = {.lex_state = 349, .external_lex_state = 5}, [6148] = {.lex_state = 349, .external_lex_state = 5}, [6149] = {.lex_state = 349, .external_lex_state = 5}, - [6150] = {.lex_state = 349, .external_lex_state = 2}, + [6150] = {.lex_state = 349, .external_lex_state = 5}, [6151] = {.lex_state = 349, .external_lex_state = 5}, [6152] = {.lex_state = 349, .external_lex_state = 5}, - [6153] = {.lex_state = 349, .external_lex_state = 2}, - [6154] = {.lex_state = 349, .external_lex_state = 5}, + [6153] = {.lex_state = 349, .external_lex_state = 5}, + [6154] = {.lex_state = 349, .external_lex_state = 2}, [6155] = {.lex_state = 349, .external_lex_state = 5}, [6156] = {.lex_state = 349, .external_lex_state = 5}, [6157] = {.lex_state = 349, .external_lex_state = 5}, - [6158] = {.lex_state = 349, .external_lex_state = 5}, + [6158] = {.lex_state = 349, .external_lex_state = 2}, [6159] = {.lex_state = 349, .external_lex_state = 5}, [6160] = {.lex_state = 349, .external_lex_state = 5}, [6161] = {.lex_state = 349, .external_lex_state = 5}, @@ -26438,14 +26502,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6169] = {.lex_state = 349, .external_lex_state = 5}, [6170] = {.lex_state = 349, .external_lex_state = 5}, [6171] = {.lex_state = 349, .external_lex_state = 5}, - [6172] = {.lex_state = 349, .external_lex_state = 5}, - [6173] = {.lex_state = 349, .external_lex_state = 2}, - [6174] = {.lex_state = 349, .external_lex_state = 2}, - [6175] = {.lex_state = 349, .external_lex_state = 2}, + [6172] = {.lex_state = 349, .external_lex_state = 2}, + [6173] = {.lex_state = 349, .external_lex_state = 5}, + [6174] = {.lex_state = 349, .external_lex_state = 5}, + [6175] = {.lex_state = 349, .external_lex_state = 5}, [6176] = {.lex_state = 349, .external_lex_state = 5}, - [6177] = {.lex_state = 349, .external_lex_state = 5}, + [6177] = {.lex_state = 349, .external_lex_state = 2}, [6178] = {.lex_state = 349, .external_lex_state = 5}, - [6179] = {.lex_state = 349, .external_lex_state = 5}, + [6179] = {.lex_state = 349, .external_lex_state = 2}, [6180] = {.lex_state = 62, .external_lex_state = 2}, [6181] = {.lex_state = 46, .external_lex_state = 2}, [6182] = {.lex_state = 349, .external_lex_state = 2}, @@ -26455,9 +26519,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6186] = {.lex_state = 349, .external_lex_state = 5}, [6187] = {.lex_state = 349, .external_lex_state = 5}, [6188] = {.lex_state = 349, .external_lex_state = 5}, - [6189] = {.lex_state = 349, .external_lex_state = 2}, + [6189] = {.lex_state = 349, .external_lex_state = 5}, [6190] = {.lex_state = 349, .external_lex_state = 2}, - [6191] = {.lex_state = 349, .external_lex_state = 5}, + [6191] = {.lex_state = 349, .external_lex_state = 2}, [6192] = {.lex_state = 45, .external_lex_state = 2}, [6193] = {.lex_state = 349, .external_lex_state = 5}, [6194] = {.lex_state = 45, .external_lex_state = 2}, @@ -26467,19 +26531,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6198] = {.lex_state = 349, .external_lex_state = 5}, [6199] = {.lex_state = 349, .external_lex_state = 5}, [6200] = {.lex_state = 349, .external_lex_state = 5}, - [6201] = {.lex_state = 349, .external_lex_state = 2}, - [6202] = {.lex_state = 349, .external_lex_state = 5}, + [6201] = {.lex_state = 349, .external_lex_state = 5}, + [6202] = {.lex_state = 349, .external_lex_state = 2}, [6203] = {.lex_state = 349, .external_lex_state = 5}, [6204] = {.lex_state = 349, .external_lex_state = 5}, [6205] = {.lex_state = 349, .external_lex_state = 5}, [6206] = {.lex_state = 349, .external_lex_state = 5}, [6207] = {.lex_state = 349, .external_lex_state = 5}, - [6208] = {.lex_state = 349, .external_lex_state = 5}, + [6208] = {.lex_state = 47, .external_lex_state = 2}, [6209] = {.lex_state = 349, .external_lex_state = 5}, [6210] = {.lex_state = 349, .external_lex_state = 5}, [6211] = {.lex_state = 349, .external_lex_state = 5}, [6212] = {.lex_state = 349, .external_lex_state = 5}, - [6213] = {.lex_state = 47, .external_lex_state = 2}, + [6213] = {.lex_state = 349, .external_lex_state = 5}, [6214] = {.lex_state = 349, .external_lex_state = 5}, [6215] = {.lex_state = 349, .external_lex_state = 5}, [6216] = {.lex_state = 349, .external_lex_state = 5}, @@ -26489,33 +26553,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6220] = {.lex_state = 349, .external_lex_state = 5}, [6221] = {.lex_state = 349, .external_lex_state = 5}, [6222] = {.lex_state = 349, .external_lex_state = 5}, - [6223] = {.lex_state = 349, .external_lex_state = 5}, - [6224] = {.lex_state = 349, .external_lex_state = 5}, - [6225] = {.lex_state = 47, .external_lex_state = 5}, - [6226] = {.lex_state = 47, .external_lex_state = 5}, + [6223] = {.lex_state = 47, .external_lex_state = 5}, + [6224] = {.lex_state = 47, .external_lex_state = 5}, + [6225] = {.lex_state = 349, .external_lex_state = 5}, + [6226] = {.lex_state = 349, .external_lex_state = 5}, [6227] = {.lex_state = 349, .external_lex_state = 5}, [6228] = {.lex_state = 349, .external_lex_state = 5}, [6229] = {.lex_state = 349, .external_lex_state = 5}, [6230] = {.lex_state = 349, .external_lex_state = 5}, - [6231] = {.lex_state = 349, .external_lex_state = 5}, + [6231] = {.lex_state = 349, .external_lex_state = 2}, [6232] = {.lex_state = 349, .external_lex_state = 5}, [6233] = {.lex_state = 349, .external_lex_state = 5}, [6234] = {.lex_state = 349, .external_lex_state = 5}, [6235] = {.lex_state = 349, .external_lex_state = 5}, [6236] = {.lex_state = 349, .external_lex_state = 5}, - [6237] = {.lex_state = 349, .external_lex_state = 2}, + [6237] = {.lex_state = 349, .external_lex_state = 5}, [6238] = {.lex_state = 349, .external_lex_state = 5}, [6239] = {.lex_state = 349, .external_lex_state = 5}, [6240] = {.lex_state = 349, .external_lex_state = 5}, [6241] = {.lex_state = 349, .external_lex_state = 5}, [6242] = {.lex_state = 349, .external_lex_state = 5}, [6243] = {.lex_state = 349, .external_lex_state = 5}, - [6244] = {.lex_state = 349, .external_lex_state = 2}, - [6245] = {.lex_state = 349, .external_lex_state = 5}, - [6246] = {.lex_state = 349, .external_lex_state = 2}, + [6244] = {.lex_state = 349, .external_lex_state = 5}, + [6245] = {.lex_state = 349, .external_lex_state = 2}, + [6246] = {.lex_state = 349, .external_lex_state = 5}, [6247] = {.lex_state = 349, .external_lex_state = 5}, [6248] = {.lex_state = 349, .external_lex_state = 5}, - [6249] = {.lex_state = 349, .external_lex_state = 5}, + [6249] = {.lex_state = 349, .external_lex_state = 2}, [6250] = {.lex_state = 349, .external_lex_state = 5}, [6251] = {.lex_state = 349, .external_lex_state = 5}, [6252] = {.lex_state = 349, .external_lex_state = 5}, @@ -26526,22 +26590,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6257] = {.lex_state = 349, .external_lex_state = 5}, [6258] = {.lex_state = 349, .external_lex_state = 5}, [6259] = {.lex_state = 349, .external_lex_state = 5}, - [6260] = {.lex_state = 45, .external_lex_state = 2}, + [6260] = {.lex_state = 349, .external_lex_state = 5}, [6261] = {.lex_state = 349, .external_lex_state = 5}, - [6262] = {.lex_state = 45, .external_lex_state = 2}, + [6262] = {.lex_state = 349, .external_lex_state = 5}, [6263] = {.lex_state = 349, .external_lex_state = 5}, [6264] = {.lex_state = 45, .external_lex_state = 2}, [6265] = {.lex_state = 349, .external_lex_state = 5}, - [6266] = {.lex_state = 24, .external_lex_state = 2}, + [6266] = {.lex_state = 45, .external_lex_state = 2}, [6267] = {.lex_state = 349, .external_lex_state = 5}, - [6268] = {.lex_state = 349, .external_lex_state = 5}, + [6268] = {.lex_state = 45, .external_lex_state = 2}, [6269] = {.lex_state = 349, .external_lex_state = 5}, - [6270] = {.lex_state = 349, .external_lex_state = 2}, - [6271] = {.lex_state = 349, .external_lex_state = 2}, + [6270] = {.lex_state = 24, .external_lex_state = 2}, + [6271] = {.lex_state = 349, .external_lex_state = 5}, [6272] = {.lex_state = 349, .external_lex_state = 5}, [6273] = {.lex_state = 349, .external_lex_state = 5}, - [6274] = {.lex_state = 349, .external_lex_state = 5}, - [6275] = {.lex_state = 349, .external_lex_state = 5}, + [6274] = {.lex_state = 349, .external_lex_state = 2}, + [6275] = {.lex_state = 349, .external_lex_state = 2}, [6276] = {.lex_state = 349, .external_lex_state = 5}, [6277] = {.lex_state = 349, .external_lex_state = 5}, [6278] = {.lex_state = 349, .external_lex_state = 5}, @@ -26554,25 +26618,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6285] = {.lex_state = 349, .external_lex_state = 5}, [6286] = {.lex_state = 349, .external_lex_state = 5}, [6287] = {.lex_state = 349, .external_lex_state = 5}, - [6288] = {.lex_state = 24, .external_lex_state = 2}, + [6288] = {.lex_state = 349, .external_lex_state = 5}, [6289] = {.lex_state = 349, .external_lex_state = 5}, - [6290] = {.lex_state = 349, .external_lex_state = 2}, - [6291] = {.lex_state = 349, .external_lex_state = 2}, + [6290] = {.lex_state = 349, .external_lex_state = 5}, + [6291] = {.lex_state = 24, .external_lex_state = 2}, [6292] = {.lex_state = 349, .external_lex_state = 5}, - [6293] = {.lex_state = 349, .external_lex_state = 5}, - [6294] = {.lex_state = 349, .external_lex_state = 5}, + [6293] = {.lex_state = 349, .external_lex_state = 2}, + [6294] = {.lex_state = 349, .external_lex_state = 2}, [6295] = {.lex_state = 349, .external_lex_state = 5}, - [6296] = {.lex_state = 349, .external_lex_state = 2}, - [6297] = {.lex_state = 349, .external_lex_state = 2}, + [6296] = {.lex_state = 349, .external_lex_state = 5}, + [6297] = {.lex_state = 349, .external_lex_state = 5}, [6298] = {.lex_state = 349, .external_lex_state = 2}, [6299] = {.lex_state = 349, .external_lex_state = 2}, - [6300] = {.lex_state = 349, .external_lex_state = 2}, - [6301] = {.lex_state = 349, .external_lex_state = 5}, + [6300] = {.lex_state = 349, .external_lex_state = 5}, + [6301] = {.lex_state = 349, .external_lex_state = 2}, [6302] = {.lex_state = 349, .external_lex_state = 2}, [6303] = {.lex_state = 349, .external_lex_state = 2}, [6304] = {.lex_state = 349, .external_lex_state = 2}, - [6305] = {.lex_state = 349, .external_lex_state = 2}, - [6306] = {.lex_state = 349, .external_lex_state = 5}, + [6305] = {.lex_state = 349, .external_lex_state = 5}, + [6306] = {.lex_state = 349, .external_lex_state = 2}, [6307] = {.lex_state = 349, .external_lex_state = 2}, [6308] = {.lex_state = 349, .external_lex_state = 2}, [6309] = {.lex_state = 349, .external_lex_state = 2}, @@ -26589,12 +26653,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6320] = {.lex_state = 349, .external_lex_state = 2}, [6321] = {.lex_state = 349, .external_lex_state = 2}, [6322] = {.lex_state = 349, .external_lex_state = 2}, - [6323] = {.lex_state = 349, .external_lex_state = 5}, - [6324] = {.lex_state = 349, .external_lex_state = 5}, - [6325] = {.lex_state = 349, .external_lex_state = 2}, - [6326] = {.lex_state = 349, .external_lex_state = 2}, - [6327] = {.lex_state = 349, .external_lex_state = 5}, - [6328] = {.lex_state = 349, .external_lex_state = 2}, + [6323] = {.lex_state = 349, .external_lex_state = 2}, + [6324] = {.lex_state = 349, .external_lex_state = 2}, + [6325] = {.lex_state = 349, .external_lex_state = 5}, + [6326] = {.lex_state = 349, .external_lex_state = 5}, + [6327] = {.lex_state = 349, .external_lex_state = 2}, + [6328] = {.lex_state = 349, .external_lex_state = 5}, [6329] = {.lex_state = 349, .external_lex_state = 2}, [6330] = {.lex_state = 349, .external_lex_state = 2}, [6331] = {.lex_state = 349, .external_lex_state = 2}, @@ -26607,38 +26671,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6338] = {.lex_state = 349, .external_lex_state = 2}, [6339] = {.lex_state = 349, .external_lex_state = 2}, [6340] = {.lex_state = 349, .external_lex_state = 2}, - [6341] = {.lex_state = 349, .external_lex_state = 5}, + [6341] = {.lex_state = 349, .external_lex_state = 2}, [6342] = {.lex_state = 349, .external_lex_state = 2}, [6343] = {.lex_state = 349, .external_lex_state = 2}, - [6344] = {.lex_state = 349, .external_lex_state = 2}, - [6345] = {.lex_state = 349, .external_lex_state = 5}, - [6346] = {.lex_state = 349, .external_lex_state = 5}, + [6344] = {.lex_state = 349, .external_lex_state = 5}, + [6345] = {.lex_state = 349, .external_lex_state = 2}, + [6346] = {.lex_state = 349, .external_lex_state = 2}, [6347] = {.lex_state = 349, .external_lex_state = 2}, [6348] = {.lex_state = 349, .external_lex_state = 2}, - [6349] = {.lex_state = 1, .external_lex_state = 2}, - [6350] = {.lex_state = 349, .external_lex_state = 2}, - [6351] = {.lex_state = 349, .external_lex_state = 5}, + [6349] = {.lex_state = 349, .external_lex_state = 5}, + [6350] = {.lex_state = 1, .external_lex_state = 2}, + [6351] = {.lex_state = 349, .external_lex_state = 2}, [6352] = {.lex_state = 349, .external_lex_state = 2}, [6353] = {.lex_state = 349, .external_lex_state = 2}, - [6354] = {.lex_state = 349, .external_lex_state = 2}, + [6354] = {.lex_state = 349, .external_lex_state = 5}, [6355] = {.lex_state = 349, .external_lex_state = 2}, [6356] = {.lex_state = 349, .external_lex_state = 2}, [6357] = {.lex_state = 349, .external_lex_state = 2}, [6358] = {.lex_state = 349, .external_lex_state = 2}, [6359] = {.lex_state = 349, .external_lex_state = 2}, [6360] = {.lex_state = 349, .external_lex_state = 2}, - [6361] = {.lex_state = 349, .external_lex_state = 5}, + [6361] = {.lex_state = 349, .external_lex_state = 2}, [6362] = {.lex_state = 349, .external_lex_state = 5}, [6363] = {.lex_state = 349, .external_lex_state = 2}, - [6364] = {.lex_state = 47, .external_lex_state = 2}, - [6365] = {.lex_state = 47, .external_lex_state = 2}, + [6364] = {.lex_state = 349, .external_lex_state = 2}, + [6365] = {.lex_state = 349, .external_lex_state = 5}, [6366] = {.lex_state = 349, .external_lex_state = 2}, [6367] = {.lex_state = 349, .external_lex_state = 2}, [6368] = {.lex_state = 47, .external_lex_state = 2}, - [6369] = {.lex_state = 349, .external_lex_state = 2}, - [6370] = {.lex_state = 349, .external_lex_state = 2}, - [6371] = {.lex_state = 47, .external_lex_state = 2}, - [6372] = {.lex_state = 349, .external_lex_state = 2}, + [6369] = {.lex_state = 47, .external_lex_state = 2}, + [6370] = {.lex_state = 47, .external_lex_state = 2}, + [6371] = {.lex_state = 349, .external_lex_state = 2}, + [6372] = {.lex_state = 47, .external_lex_state = 2}, [6373] = {.lex_state = 349, .external_lex_state = 2}, [6374] = {.lex_state = 349, .external_lex_state = 2}, [6375] = {.lex_state = 349, .external_lex_state = 2}, @@ -26654,13 +26718,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6385] = {.lex_state = 349, .external_lex_state = 2}, [6386] = {.lex_state = 349, .external_lex_state = 2}, [6387] = {.lex_state = 349, .external_lex_state = 2}, - [6388] = {.lex_state = 47, .external_lex_state = 2}, + [6388] = {.lex_state = 349, .external_lex_state = 2}, [6389] = {.lex_state = 349, .external_lex_state = 2}, [6390] = {.lex_state = 349, .external_lex_state = 2}, [6391] = {.lex_state = 349, .external_lex_state = 2}, - [6392] = {.lex_state = 349, .external_lex_state = 2}, + [6392] = {.lex_state = 349, .external_lex_state = 5}, [6393] = {.lex_state = 349, .external_lex_state = 2}, - [6394] = {.lex_state = 349, .external_lex_state = 2}, + [6394] = {.lex_state = 47, .external_lex_state = 2}, [6395] = {.lex_state = 349, .external_lex_state = 2}, [6396] = {.lex_state = 349, .external_lex_state = 2}, [6397] = {.lex_state = 349, .external_lex_state = 2}, @@ -26668,10 +26732,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6399] = {.lex_state = 349, .external_lex_state = 2}, [6400] = {.lex_state = 349, .external_lex_state = 2}, [6401] = {.lex_state = 349, .external_lex_state = 2}, - [6402] = {.lex_state = 47, .external_lex_state = 2}, + [6402] = {.lex_state = 349, .external_lex_state = 2}, [6403] = {.lex_state = 349, .external_lex_state = 2}, [6404] = {.lex_state = 349, .external_lex_state = 2}, - [6405] = {.lex_state = 349, .external_lex_state = 2}, + [6405] = {.lex_state = 47, .external_lex_state = 2}, [6406] = {.lex_state = 349, .external_lex_state = 2}, [6407] = {.lex_state = 349, .external_lex_state = 2}, [6408] = {.lex_state = 349, .external_lex_state = 2}, @@ -26680,33 +26744,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6411] = {.lex_state = 349, .external_lex_state = 2}, [6412] = {.lex_state = 349, .external_lex_state = 2}, [6413] = {.lex_state = 349, .external_lex_state = 2}, - [6414] = {.lex_state = 47, .external_lex_state = 2}, + [6414] = {.lex_state = 349, .external_lex_state = 2}, [6415] = {.lex_state = 349, .external_lex_state = 2}, [6416] = {.lex_state = 349, .external_lex_state = 2}, [6417] = {.lex_state = 349, .external_lex_state = 2}, [6418] = {.lex_state = 349, .external_lex_state = 2}, - [6419] = {.lex_state = 349, .external_lex_state = 2}, + [6419] = {.lex_state = 47, .external_lex_state = 2}, [6420] = {.lex_state = 349, .external_lex_state = 2}, [6421] = {.lex_state = 349, .external_lex_state = 2}, [6422] = {.lex_state = 349, .external_lex_state = 2}, [6423] = {.lex_state = 349, .external_lex_state = 2}, - [6424] = {.lex_state = 47, .external_lex_state = 2}, + [6424] = {.lex_state = 349, .external_lex_state = 2}, [6425] = {.lex_state = 349, .external_lex_state = 2}, [6426] = {.lex_state = 349, .external_lex_state = 2}, [6427] = {.lex_state = 349, .external_lex_state = 2}, [6428] = {.lex_state = 349, .external_lex_state = 2}, [6429] = {.lex_state = 349, .external_lex_state = 2}, - [6430] = {.lex_state = 349, .external_lex_state = 5}, - [6431] = {.lex_state = 349, .external_lex_state = 5}, - [6432] = {.lex_state = 349, .external_lex_state = 5}, - [6433] = {.lex_state = 349, .external_lex_state = 5}, - [6434] = {.lex_state = 47, .external_lex_state = 2}, - [6435] = {.lex_state = 349, .external_lex_state = 2}, - [6436] = {.lex_state = 349, .external_lex_state = 2}, + [6430] = {.lex_state = 47, .external_lex_state = 2}, + [6431] = {.lex_state = 349, .external_lex_state = 2}, + [6432] = {.lex_state = 349, .external_lex_state = 2}, + [6433] = {.lex_state = 349, .external_lex_state = 2}, + [6434] = {.lex_state = 349, .external_lex_state = 5}, + [6435] = {.lex_state = 349, .external_lex_state = 5}, + [6436] = {.lex_state = 349, .external_lex_state = 5}, [6437] = {.lex_state = 47, .external_lex_state = 2}, - [6438] = {.lex_state = 349, .external_lex_state = 2}, + [6438] = {.lex_state = 349, .external_lex_state = 5}, [6439] = {.lex_state = 349, .external_lex_state = 2}, - [6440] = {.lex_state = 349, .external_lex_state = 2}, + [6440] = {.lex_state = 47, .external_lex_state = 2}, [6441] = {.lex_state = 349, .external_lex_state = 2}, [6442] = {.lex_state = 349, .external_lex_state = 2}, [6443] = {.lex_state = 349, .external_lex_state = 2}, @@ -26714,28 +26778,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6445] = {.lex_state = 349, .external_lex_state = 2}, [6446] = {.lex_state = 349, .external_lex_state = 2}, [6447] = {.lex_state = 349, .external_lex_state = 2}, - [6448] = {.lex_state = 47, .external_lex_state = 2}, + [6448] = {.lex_state = 349, .external_lex_state = 2}, [6449] = {.lex_state = 349, .external_lex_state = 2}, [6450] = {.lex_state = 349, .external_lex_state = 2}, [6451] = {.lex_state = 349, .external_lex_state = 2}, - [6452] = {.lex_state = 349, .external_lex_state = 2}, + [6452] = {.lex_state = 47, .external_lex_state = 2}, [6453] = {.lex_state = 349, .external_lex_state = 2}, [6454] = {.lex_state = 349, .external_lex_state = 2}, [6455] = {.lex_state = 349, .external_lex_state = 2}, [6456] = {.lex_state = 349, .external_lex_state = 2}, - [6457] = {.lex_state = 349, .external_lex_state = 2}, - [6458] = {.lex_state = 349, .external_lex_state = 5}, + [6457] = {.lex_state = 349, .external_lex_state = 5}, + [6458] = {.lex_state = 349, .external_lex_state = 2}, [6459] = {.lex_state = 349, .external_lex_state = 2}, - [6460] = {.lex_state = 349, .external_lex_state = 5}, + [6460] = {.lex_state = 349, .external_lex_state = 2}, [6461] = {.lex_state = 349, .external_lex_state = 2}, [6462] = {.lex_state = 349, .external_lex_state = 2}, [6463] = {.lex_state = 349, .external_lex_state = 2}, [6464] = {.lex_state = 349, .external_lex_state = 2}, [6465] = {.lex_state = 349, .external_lex_state = 2}, [6466] = {.lex_state = 349, .external_lex_state = 2}, - [6467] = {.lex_state = 349, .external_lex_state = 5}, + [6467] = {.lex_state = 349, .external_lex_state = 2}, [6468] = {.lex_state = 349, .external_lex_state = 2}, - [6469] = {.lex_state = 349, .external_lex_state = 2}, + [6469] = {.lex_state = 349, .external_lex_state = 5}, [6470] = {.lex_state = 349, .external_lex_state = 2}, [6471] = {.lex_state = 349, .external_lex_state = 2}, [6472] = {.lex_state = 349, .external_lex_state = 2}, @@ -26743,100 +26807,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6474] = {.lex_state = 349, .external_lex_state = 2}, [6475] = {.lex_state = 349, .external_lex_state = 2}, [6476] = {.lex_state = 349, .external_lex_state = 2}, - [6477] = {.lex_state = 47, .external_lex_state = 2}, - [6478] = {.lex_state = 349, .external_lex_state = 2}, + [6477] = {.lex_state = 349, .external_lex_state = 2}, + [6478] = {.lex_state = 349, .external_lex_state = 5}, [6479] = {.lex_state = 349, .external_lex_state = 2}, - [6480] = {.lex_state = 349, .external_lex_state = 2}, + [6480] = {.lex_state = 47, .external_lex_state = 2}, [6481] = {.lex_state = 349, .external_lex_state = 5}, - [6482] = {.lex_state = 47, .external_lex_state = 2}, - [6483] = {.lex_state = 47, .external_lex_state = 2}, + [6482] = {.lex_state = 349, .external_lex_state = 2}, + [6483] = {.lex_state = 349, .external_lex_state = 2}, [6484] = {.lex_state = 349, .external_lex_state = 2}, - [6485] = {.lex_state = 47, .external_lex_state = 2}, - [6486] = {.lex_state = 349, .external_lex_state = 2}, + [6485] = {.lex_state = 349, .external_lex_state = 2}, + [6486] = {.lex_state = 47, .external_lex_state = 2}, [6487] = {.lex_state = 349, .external_lex_state = 2}, - [6488] = {.lex_state = 349, .external_lex_state = 5}, - [6489] = {.lex_state = 47, .external_lex_state = 2}, - [6490] = {.lex_state = 47, .external_lex_state = 2}, + [6488] = {.lex_state = 47, .external_lex_state = 2}, + [6489] = {.lex_state = 349, .external_lex_state = 2}, + [6490] = {.lex_state = 349, .external_lex_state = 2}, [6491] = {.lex_state = 47, .external_lex_state = 2}, - [6492] = {.lex_state = 349, .external_lex_state = 2}, - [6493] = {.lex_state = 349, .external_lex_state = 2}, + [6492] = {.lex_state = 349, .external_lex_state = 5}, + [6493] = {.lex_state = 349, .external_lex_state = 5}, [6494] = {.lex_state = 349, .external_lex_state = 2}, - [6495] = {.lex_state = 47, .external_lex_state = 2}, - [6496] = {.lex_state = 349, .external_lex_state = 5}, + [6495] = {.lex_state = 349, .external_lex_state = 2}, + [6496] = {.lex_state = 349, .external_lex_state = 2}, [6497] = {.lex_state = 349, .external_lex_state = 2}, [6498] = {.lex_state = 349, .external_lex_state = 2}, [6499] = {.lex_state = 349, .external_lex_state = 5}, - [6500] = {.lex_state = 1, .external_lex_state = 2}, - [6501] = {.lex_state = 349, .external_lex_state = 5}, - [6502] = {.lex_state = 349, .external_lex_state = 2}, - [6503] = {.lex_state = 349, .external_lex_state = 2}, - [6504] = {.lex_state = 349, .external_lex_state = 2}, + [6500] = {.lex_state = 349, .external_lex_state = 2}, + [6501] = {.lex_state = 47, .external_lex_state = 2}, + [6502] = {.lex_state = 349, .external_lex_state = 5}, + [6503] = {.lex_state = 47, .external_lex_state = 2}, + [6504] = {.lex_state = 349, .external_lex_state = 5}, [6505] = {.lex_state = 349, .external_lex_state = 2}, - [6506] = {.lex_state = 349, .external_lex_state = 5}, - [6507] = {.lex_state = 349, .external_lex_state = 5}, + [6506] = {.lex_state = 349, .external_lex_state = 2}, + [6507] = {.lex_state = 349, .external_lex_state = 2}, [6508] = {.lex_state = 349, .external_lex_state = 2}, - [6509] = {.lex_state = 349, .external_lex_state = 2}, + [6509] = {.lex_state = 349, .external_lex_state = 5}, [6510] = {.lex_state = 349, .external_lex_state = 5}, [6511] = {.lex_state = 47, .external_lex_state = 2}, - [6512] = {.lex_state = 349, .external_lex_state = 2}, - [6513] = {.lex_state = 349, .external_lex_state = 2}, - [6514] = {.lex_state = 349, .external_lex_state = 5}, + [6512] = {.lex_state = 47, .external_lex_state = 2}, + [6513] = {.lex_state = 47, .external_lex_state = 2}, + [6514] = {.lex_state = 1, .external_lex_state = 2}, [6515] = {.lex_state = 349, .external_lex_state = 2}, [6516] = {.lex_state = 349, .external_lex_state = 2}, [6517] = {.lex_state = 349, .external_lex_state = 2}, - [6518] = {.lex_state = 349, .external_lex_state = 5}, - [6519] = {.lex_state = 349, .external_lex_state = 5}, + [6518] = {.lex_state = 349, .external_lex_state = 2}, + [6519] = {.lex_state = 349, .external_lex_state = 2}, [6520] = {.lex_state = 349, .external_lex_state = 2}, [6521] = {.lex_state = 349, .external_lex_state = 2}, - [6522] = {.lex_state = 47, .external_lex_state = 2}, - [6523] = {.lex_state = 349, .external_lex_state = 5}, + [6522] = {.lex_state = 349, .external_lex_state = 5}, + [6523] = {.lex_state = 349, .external_lex_state = 2}, [6524] = {.lex_state = 349, .external_lex_state = 2}, [6525] = {.lex_state = 349, .external_lex_state = 2}, - [6526] = {.lex_state = 349, .external_lex_state = 2}, - [6527] = {.lex_state = 47, .external_lex_state = 2}, - [6528] = {.lex_state = 349, .external_lex_state = 5}, + [6526] = {.lex_state = 349, .external_lex_state = 5}, + [6527] = {.lex_state = 349, .external_lex_state = 5}, + [6528] = {.lex_state = 349, .external_lex_state = 2}, [6529] = {.lex_state = 349, .external_lex_state = 5}, - [6530] = {.lex_state = 349, .external_lex_state = 2}, - [6531] = {.lex_state = 349, .external_lex_state = 5}, + [6530] = {.lex_state = 47, .external_lex_state = 2}, + [6531] = {.lex_state = 349, .external_lex_state = 2}, [6532] = {.lex_state = 349, .external_lex_state = 2}, [6533] = {.lex_state = 349, .external_lex_state = 2}, [6534] = {.lex_state = 349, .external_lex_state = 2}, - [6535] = {.lex_state = 349, .external_lex_state = 2}, + [6535] = {.lex_state = 47, .external_lex_state = 2}, [6536] = {.lex_state = 349, .external_lex_state = 2}, - [6537] = {.lex_state = 349, .external_lex_state = 2}, + [6537] = {.lex_state = 349, .external_lex_state = 5}, [6538] = {.lex_state = 349, .external_lex_state = 5}, - [6539] = {.lex_state = 349, .external_lex_state = 2}, + [6539] = {.lex_state = 349, .external_lex_state = 5}, [6540] = {.lex_state = 349, .external_lex_state = 2}, - [6541] = {.lex_state = 349, .external_lex_state = 2}, - [6542] = {.lex_state = 349, .external_lex_state = 5}, - [6543] = {.lex_state = 349, .external_lex_state = 2}, - [6544] = {.lex_state = 349, .external_lex_state = 5}, + [6541] = {.lex_state = 349, .external_lex_state = 5}, + [6542] = {.lex_state = 349, .external_lex_state = 2}, + [6543] = {.lex_state = 349, .external_lex_state = 5}, + [6544] = {.lex_state = 349, .external_lex_state = 2}, [6545] = {.lex_state = 349, .external_lex_state = 2}, [6546] = {.lex_state = 349, .external_lex_state = 2}, [6547] = {.lex_state = 349, .external_lex_state = 2}, [6548] = {.lex_state = 349, .external_lex_state = 2}, [6549] = {.lex_state = 349, .external_lex_state = 2}, - [6550] = {.lex_state = 349, .external_lex_state = 5}, - [6551] = {.lex_state = 349, .external_lex_state = 5}, + [6550] = {.lex_state = 349, .external_lex_state = 2}, + [6551] = {.lex_state = 349, .external_lex_state = 2}, [6552] = {.lex_state = 349, .external_lex_state = 2}, - [6553] = {.lex_state = 349, .external_lex_state = 2}, + [6553] = {.lex_state = 349, .external_lex_state = 5}, [6554] = {.lex_state = 349, .external_lex_state = 2}, [6555] = {.lex_state = 349, .external_lex_state = 2}, [6556] = {.lex_state = 349, .external_lex_state = 2}, [6557] = {.lex_state = 349, .external_lex_state = 2}, [6558] = {.lex_state = 349, .external_lex_state = 2}, - [6559] = {.lex_state = 349, .external_lex_state = 5}, - [6560] = {.lex_state = 349, .external_lex_state = 5}, - [6561] = {.lex_state = 349, .external_lex_state = 5}, - [6562] = {.lex_state = 349, .external_lex_state = 5}, + [6559] = {.lex_state = 349, .external_lex_state = 2}, + [6560] = {.lex_state = 349, .external_lex_state = 2}, + [6561] = {.lex_state = 349, .external_lex_state = 2}, + [6562] = {.lex_state = 349, .external_lex_state = 2}, [6563] = {.lex_state = 349, .external_lex_state = 2}, - [6564] = {.lex_state = 349, .external_lex_state = 5}, - [6565] = {.lex_state = 349, .external_lex_state = 2}, - [6566] = {.lex_state = 349, .external_lex_state = 2}, - [6567] = {.lex_state = 349, .external_lex_state = 2}, + [6564] = {.lex_state = 349, .external_lex_state = 2}, + [6565] = {.lex_state = 349, .external_lex_state = 5}, + [6566] = {.lex_state = 349, .external_lex_state = 5}, + [6567] = {.lex_state = 349, .external_lex_state = 5}, [6568] = {.lex_state = 349, .external_lex_state = 2}, - [6569] = {.lex_state = 349, .external_lex_state = 2}, - [6570] = {.lex_state = 349, .external_lex_state = 2}, + [6569] = {.lex_state = 349, .external_lex_state = 5}, + [6570] = {.lex_state = 349, .external_lex_state = 5}, [6571] = {.lex_state = 349, .external_lex_state = 2}, [6572] = {.lex_state = 349, .external_lex_state = 2}, [6573] = {.lex_state = 349, .external_lex_state = 2}, @@ -26849,39 +26913,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6580] = {.lex_state = 349, .external_lex_state = 2}, [6581] = {.lex_state = 349, .external_lex_state = 2}, [6582] = {.lex_state = 349, .external_lex_state = 2}, - [6583] = {.lex_state = 349, .external_lex_state = 5}, + [6583] = {.lex_state = 349, .external_lex_state = 2}, [6584] = {.lex_state = 349, .external_lex_state = 2}, - [6585] = {.lex_state = 47, .external_lex_state = 2}, + [6585] = {.lex_state = 349, .external_lex_state = 5}, [6586] = {.lex_state = 349, .external_lex_state = 2}, - [6587] = {.lex_state = 349, .external_lex_state = 5}, + [6587] = {.lex_state = 47, .external_lex_state = 2}, [6588] = {.lex_state = 349, .external_lex_state = 2}, [6589] = {.lex_state = 349, .external_lex_state = 2}, [6590] = {.lex_state = 349, .external_lex_state = 5}, [6591] = {.lex_state = 349, .external_lex_state = 5}, [6592] = {.lex_state = 349, .external_lex_state = 2}, - [6593] = {.lex_state = 349, .external_lex_state = 5}, - [6594] = {.lex_state = 349, .external_lex_state = 2}, + [6593] = {.lex_state = 349, .external_lex_state = 2}, + [6594] = {.lex_state = 349, .external_lex_state = 5}, [6595] = {.lex_state = 349, .external_lex_state = 2}, - [6596] = {.lex_state = 349, .external_lex_state = 2}, + [6596] = {.lex_state = 349, .external_lex_state = 5}, [6597] = {.lex_state = 349, .external_lex_state = 2}, [6598] = {.lex_state = 349, .external_lex_state = 2}, [6599] = {.lex_state = 349, .external_lex_state = 2}, [6600] = {.lex_state = 349, .external_lex_state = 2}, - [6601] = {.lex_state = 47, .external_lex_state = 2}, + [6601] = {.lex_state = 349, .external_lex_state = 2}, [6602] = {.lex_state = 349, .external_lex_state = 2}, - [6603] = {.lex_state = 349, .external_lex_state = 2}, + [6603] = {.lex_state = 349, .external_lex_state = 5}, [6604] = {.lex_state = 349, .external_lex_state = 2}, - [6605] = {.lex_state = 349, .external_lex_state = 5}, + [6605] = {.lex_state = 47, .external_lex_state = 2}, [6606] = {.lex_state = 349, .external_lex_state = 2}, - [6607] = {.lex_state = 349, .external_lex_state = 2}, + [6607] = {.lex_state = 349, .external_lex_state = 5}, [6608] = {.lex_state = 349, .external_lex_state = 2}, [6609] = {.lex_state = 349, .external_lex_state = 2}, - [6610] = {.lex_state = 349, .external_lex_state = 2}, - [6611] = {.lex_state = 349, .external_lex_state = 5}, - [6612] = {.lex_state = 349, .external_lex_state = 2}, + [6610] = {.lex_state = 349, .external_lex_state = 5}, + [6611] = {.lex_state = 349, .external_lex_state = 2}, + [6612] = {.lex_state = 349, .external_lex_state = 5}, [6613] = {.lex_state = 349, .external_lex_state = 2}, - [6614] = {.lex_state = 349, .external_lex_state = 2}, - [6615] = {.lex_state = 349, .external_lex_state = 5}, + [6614] = {.lex_state = 349, .external_lex_state = 5}, + [6615] = {.lex_state = 349, .external_lex_state = 2}, [6616] = {.lex_state = 349, .external_lex_state = 2}, [6617] = {.lex_state = 349, .external_lex_state = 2}, [6618] = {.lex_state = 349, .external_lex_state = 2}, @@ -26889,32 +26953,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6620] = {.lex_state = 349, .external_lex_state = 2}, [6621] = {.lex_state = 349, .external_lex_state = 2}, [6622] = {.lex_state = 349, .external_lex_state = 2}, - [6623] = {.lex_state = 349, .external_lex_state = 5}, + [6623] = {.lex_state = 349, .external_lex_state = 2}, [6624] = {.lex_state = 349, .external_lex_state = 2}, - [6625] = {.lex_state = 349, .external_lex_state = 2}, + [6625] = {.lex_state = 349, .external_lex_state = 5}, [6626] = {.lex_state = 349, .external_lex_state = 2}, [6627] = {.lex_state = 349, .external_lex_state = 2}, - [6628] = {.lex_state = 349, .external_lex_state = 5}, + [6628] = {.lex_state = 349, .external_lex_state = 2}, [6629] = {.lex_state = 349, .external_lex_state = 2}, [6630] = {.lex_state = 349, .external_lex_state = 2}, - [6631] = {.lex_state = 349, .external_lex_state = 2}, - [6632] = {.lex_state = 47, .external_lex_state = 2}, - [6633] = {.lex_state = 349, .external_lex_state = 5}, - [6634] = {.lex_state = 349, .external_lex_state = 5}, - [6635] = {.lex_state = 349, .external_lex_state = 5}, - [6636] = {.lex_state = 349, .external_lex_state = 5}, - [6637] = {.lex_state = 47, .external_lex_state = 2}, - [6638] = {.lex_state = 47, .external_lex_state = 2}, + [6631] = {.lex_state = 349, .external_lex_state = 5}, + [6632] = {.lex_state = 349, .external_lex_state = 2}, + [6633] = {.lex_state = 349, .external_lex_state = 2}, + [6634] = {.lex_state = 47, .external_lex_state = 2}, + [6635] = {.lex_state = 349, .external_lex_state = 2}, + [6636] = {.lex_state = 47, .external_lex_state = 2}, + [6637] = {.lex_state = 349, .external_lex_state = 2}, + [6638] = {.lex_state = 349, .external_lex_state = 2}, [6639] = {.lex_state = 349, .external_lex_state = 5}, [6640] = {.lex_state = 47, .external_lex_state = 2}, - [6641] = {.lex_state = 349, .external_lex_state = 2}, - [6642] = {.lex_state = 349, .external_lex_state = 5}, + [6641] = {.lex_state = 349, .external_lex_state = 5}, + [6642] = {.lex_state = 47, .external_lex_state = 2}, [6643] = {.lex_state = 349, .external_lex_state = 2}, - [6644] = {.lex_state = 46, .external_lex_state = 2}, - [6645] = {.lex_state = 349, .external_lex_state = 2}, - [6646] = {.lex_state = 349, .external_lex_state = 2}, + [6644] = {.lex_state = 349, .external_lex_state = 2}, + [6645] = {.lex_state = 349, .external_lex_state = 5}, + [6646] = {.lex_state = 46, .external_lex_state = 2}, [6647] = {.lex_state = 349, .external_lex_state = 2}, - [6648] = {.lex_state = 349, .external_lex_state = 2}, + [6648] = {.lex_state = 349, .external_lex_state = 5}, [6649] = {.lex_state = 349, .external_lex_state = 2}, [6650] = {.lex_state = 349, .external_lex_state = 2}, [6651] = {.lex_state = 349, .external_lex_state = 2}, @@ -26922,12 +26986,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6653] = {.lex_state = 349, .external_lex_state = 2}, [6654] = {.lex_state = 349, .external_lex_state = 2}, [6655] = {.lex_state = 349, .external_lex_state = 2}, - [6656] = {.lex_state = 46, .external_lex_state = 2}, + [6656] = {.lex_state = 349, .external_lex_state = 2}, [6657] = {.lex_state = 349, .external_lex_state = 2}, - [6658] = {.lex_state = 349, .external_lex_state = 5}, - [6659] = {.lex_state = 349, .external_lex_state = 2}, - [6660] = {.lex_state = 349, .external_lex_state = 2}, - [6661] = {.lex_state = 349, .external_lex_state = 2}, + [6658] = {.lex_state = 349, .external_lex_state = 2}, + [6659] = {.lex_state = 46, .external_lex_state = 2}, + [6660] = {.lex_state = 349, .external_lex_state = 5}, + [6661] = {.lex_state = 349, .external_lex_state = 5}, [6662] = {.lex_state = 349, .external_lex_state = 2}, [6663] = {.lex_state = 349, .external_lex_state = 2}, [6664] = {.lex_state = 349, .external_lex_state = 2}, @@ -26952,109 +27016,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6683] = {.lex_state = 349, .external_lex_state = 2}, [6684] = {.lex_state = 349, .external_lex_state = 2}, [6685] = {.lex_state = 349, .external_lex_state = 2}, - [6686] = {.lex_state = 47, .external_lex_state = 2}, - [6687] = {.lex_state = 47, .external_lex_state = 2}, + [6686] = {.lex_state = 349, .external_lex_state = 2}, + [6687] = {.lex_state = 349, .external_lex_state = 2}, [6688] = {.lex_state = 349, .external_lex_state = 2}, [6689] = {.lex_state = 349, .external_lex_state = 2}, - [6690] = {.lex_state = 349, .external_lex_state = 2}, + [6690] = {.lex_state = 349, .external_lex_state = 5}, [6691] = {.lex_state = 349, .external_lex_state = 5}, - [6692] = {.lex_state = 45, .external_lex_state = 2}, + [6692] = {.lex_state = 349, .external_lex_state = 2}, [6693] = {.lex_state = 349, .external_lex_state = 2}, - [6694] = {.lex_state = 349, .external_lex_state = 2}, - [6695] = {.lex_state = 349, .external_lex_state = 2}, - [6696] = {.lex_state = 349, .external_lex_state = 5}, + [6694] = {.lex_state = 349, .external_lex_state = 5}, + [6695] = {.lex_state = 45, .external_lex_state = 2}, + [6696] = {.lex_state = 47, .external_lex_state = 2}, [6697] = {.lex_state = 349, .external_lex_state = 2}, - [6698] = {.lex_state = 45, .external_lex_state = 2}, + [6698] = {.lex_state = 349, .external_lex_state = 2}, [6699] = {.lex_state = 349, .external_lex_state = 2}, [6700] = {.lex_state = 349, .external_lex_state = 2}, - [6701] = {.lex_state = 349, .external_lex_state = 5}, - [6702] = {.lex_state = 349, .external_lex_state = 2}, - [6703] = {.lex_state = 349, .external_lex_state = 5}, - [6704] = {.lex_state = 349, .external_lex_state = 5}, + [6701] = {.lex_state = 47, .external_lex_state = 2}, + [6702] = {.lex_state = 45, .external_lex_state = 2}, + [6703] = {.lex_state = 349, .external_lex_state = 2}, + [6704] = {.lex_state = 349, .external_lex_state = 2}, [6705] = {.lex_state = 349, .external_lex_state = 2}, - [6706] = {.lex_state = 349, .external_lex_state = 2}, + [6706] = {.lex_state = 349, .external_lex_state = 5}, [6707] = {.lex_state = 349, .external_lex_state = 5}, [6708] = {.lex_state = 349, .external_lex_state = 5}, [6709] = {.lex_state = 349, .external_lex_state = 2}, - [6710] = {.lex_state = 349, .external_lex_state = 2}, + [6710] = {.lex_state = 349, .external_lex_state = 5}, [6711] = {.lex_state = 349, .external_lex_state = 2}, [6712] = {.lex_state = 349, .external_lex_state = 2}, - [6713] = {.lex_state = 349, .external_lex_state = 5}, + [6713] = {.lex_state = 349, .external_lex_state = 2}, [6714] = {.lex_state = 349, .external_lex_state = 2}, [6715] = {.lex_state = 349, .external_lex_state = 2}, [6716] = {.lex_state = 349, .external_lex_state = 5}, [6717] = {.lex_state = 349, .external_lex_state = 2}, [6718] = {.lex_state = 349, .external_lex_state = 2}, - [6719] = {.lex_state = 47, .external_lex_state = 2}, + [6719] = {.lex_state = 349, .external_lex_state = 5}, [6720] = {.lex_state = 349, .external_lex_state = 2}, [6721] = {.lex_state = 349, .external_lex_state = 2}, - [6722] = {.lex_state = 349, .external_lex_state = 5}, + [6722] = {.lex_state = 349, .external_lex_state = 2}, [6723] = {.lex_state = 349, .external_lex_state = 2}, - [6724] = {.lex_state = 349, .external_lex_state = 5}, - [6725] = {.lex_state = 47, .external_lex_state = 2}, - [6726] = {.lex_state = 349, .external_lex_state = 2}, - [6727] = {.lex_state = 47, .external_lex_state = 2}, + [6724] = {.lex_state = 349, .external_lex_state = 2}, + [6725] = {.lex_state = 349, .external_lex_state = 2}, + [6726] = {.lex_state = 349, .external_lex_state = 5}, + [6727] = {.lex_state = 349, .external_lex_state = 5}, [6728] = {.lex_state = 349, .external_lex_state = 2}, - [6729] = {.lex_state = 349, .external_lex_state = 2}, + [6729] = {.lex_state = 47, .external_lex_state = 2}, [6730] = {.lex_state = 349, .external_lex_state = 2}, - [6731] = {.lex_state = 349, .external_lex_state = 2}, - [6732] = {.lex_state = 349, .external_lex_state = 2}, - [6733] = {.lex_state = 349, .external_lex_state = 2}, + [6731] = {.lex_state = 47, .external_lex_state = 2}, + [6732] = {.lex_state = 349, .external_lex_state = 5}, + [6733] = {.lex_state = 47, .external_lex_state = 2}, [6734] = {.lex_state = 349, .external_lex_state = 2}, [6735] = {.lex_state = 349, .external_lex_state = 2}, [6736] = {.lex_state = 349, .external_lex_state = 2}, [6737] = {.lex_state = 349, .external_lex_state = 2}, - [6738] = {.lex_state = 349, .external_lex_state = 5}, - [6739] = {.lex_state = 349, .external_lex_state = 5}, - [6740] = {.lex_state = 349, .external_lex_state = 2}, - [6741] = {.lex_state = 349, .external_lex_state = 2}, - [6742] = {.lex_state = 349, .external_lex_state = 5}, + [6738] = {.lex_state = 349, .external_lex_state = 2}, + [6739] = {.lex_state = 349, .external_lex_state = 2}, + [6740] = {.lex_state = 349, .external_lex_state = 5}, + [6741] = {.lex_state = 349, .external_lex_state = 5}, + [6742] = {.lex_state = 349, .external_lex_state = 2}, [6743] = {.lex_state = 349, .external_lex_state = 2}, [6744] = {.lex_state = 349, .external_lex_state = 2}, - [6745] = {.lex_state = 349, .external_lex_state = 5}, - [6746] = {.lex_state = 46, .external_lex_state = 2}, + [6745] = {.lex_state = 349, .external_lex_state = 2}, + [6746] = {.lex_state = 349, .external_lex_state = 2}, [6747] = {.lex_state = 349, .external_lex_state = 2}, - [6748] = {.lex_state = 47, .external_lex_state = 2}, - [6749] = {.lex_state = 349, .external_lex_state = 2}, + [6748] = {.lex_state = 349, .external_lex_state = 2}, + [6749] = {.lex_state = 46, .external_lex_state = 2}, [6750] = {.lex_state = 349, .external_lex_state = 2}, [6751] = {.lex_state = 349, .external_lex_state = 2}, - [6752] = {.lex_state = 349, .external_lex_state = 2}, + [6752] = {.lex_state = 47, .external_lex_state = 2}, [6753] = {.lex_state = 349, .external_lex_state = 2}, - [6754] = {.lex_state = 47, .external_lex_state = 2}, + [6754] = {.lex_state = 349, .external_lex_state = 2}, [6755] = {.lex_state = 349, .external_lex_state = 2}, [6756] = {.lex_state = 349, .external_lex_state = 2}, [6757] = {.lex_state = 349, .external_lex_state = 2}, [6758] = {.lex_state = 349, .external_lex_state = 2}, - [6759] = {.lex_state = 349, .external_lex_state = 2}, - [6760] = {.lex_state = 349, .external_lex_state = 5}, - [6761] = {.lex_state = 349, .external_lex_state = 5}, - [6762] = {.lex_state = 349, .external_lex_state = 2}, + [6759] = {.lex_state = 349, .external_lex_state = 5}, + [6760] = {.lex_state = 47, .external_lex_state = 2}, + [6761] = {.lex_state = 349, .external_lex_state = 2}, + [6762] = {.lex_state = 349, .external_lex_state = 5}, [6763] = {.lex_state = 349, .external_lex_state = 2}, - [6764] = {.lex_state = 349, .external_lex_state = 2}, - [6765] = {.lex_state = 349, .external_lex_state = 5}, + [6764] = {.lex_state = 349, .external_lex_state = 5}, + [6765] = {.lex_state = 349, .external_lex_state = 2}, [6766] = {.lex_state = 349, .external_lex_state = 2}, [6767] = {.lex_state = 349, .external_lex_state = 2}, - [6768] = {.lex_state = 47, .external_lex_state = 2}, - [6769] = {.lex_state = 349, .external_lex_state = 5}, + [6768] = {.lex_state = 349, .external_lex_state = 2}, + [6769] = {.lex_state = 349, .external_lex_state = 2}, [6770] = {.lex_state = 349, .external_lex_state = 2}, [6771] = {.lex_state = 349, .external_lex_state = 2}, [6772] = {.lex_state = 349, .external_lex_state = 2}, [6773] = {.lex_state = 349, .external_lex_state = 2}, - [6774] = {.lex_state = 47, .external_lex_state = 2}, - [6775] = {.lex_state = 349, .external_lex_state = 2}, + [6774] = {.lex_state = 349, .external_lex_state = 2}, + [6775] = {.lex_state = 349, .external_lex_state = 5}, [6776] = {.lex_state = 349, .external_lex_state = 2}, [6777] = {.lex_state = 349, .external_lex_state = 2}, - [6778] = {.lex_state = 349, .external_lex_state = 2}, + [6778] = {.lex_state = 47, .external_lex_state = 2}, [6779] = {.lex_state = 349, .external_lex_state = 2}, [6780] = {.lex_state = 349, .external_lex_state = 2}, - [6781] = {.lex_state = 47, .external_lex_state = 2}, + [6781] = {.lex_state = 349, .external_lex_state = 2}, [6782] = {.lex_state = 349, .external_lex_state = 2}, - [6783] = {.lex_state = 349, .external_lex_state = 2}, + [6783] = {.lex_state = 349, .external_lex_state = 5}, [6784] = {.lex_state = 349, .external_lex_state = 2}, - [6785] = {.lex_state = 349, .external_lex_state = 2}, + [6785] = {.lex_state = 47, .external_lex_state = 2}, [6786] = {.lex_state = 349, .external_lex_state = 2}, [6787] = {.lex_state = 349, .external_lex_state = 5}, - [6788] = {.lex_state = 349, .external_lex_state = 2}, + [6788] = {.lex_state = 349, .external_lex_state = 5}, [6789] = {.lex_state = 349, .external_lex_state = 2}, [6790] = {.lex_state = 349, .external_lex_state = 2}, [6791] = {.lex_state = 349, .external_lex_state = 2}, @@ -27062,22 +27126,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6793] = {.lex_state = 349, .external_lex_state = 2}, [6794] = {.lex_state = 349, .external_lex_state = 2}, [6795] = {.lex_state = 349, .external_lex_state = 2}, - [6796] = {.lex_state = 47, .external_lex_state = 2}, + [6796] = {.lex_state = 349, .external_lex_state = 2}, [6797] = {.lex_state = 349, .external_lex_state = 2}, [6798] = {.lex_state = 349, .external_lex_state = 2}, [6799] = {.lex_state = 349, .external_lex_state = 2}, - [6800] = {.lex_state = 349, .external_lex_state = 2}, + [6800] = {.lex_state = 47, .external_lex_state = 2}, [6801] = {.lex_state = 349, .external_lex_state = 2}, [6802] = {.lex_state = 349, .external_lex_state = 2}, [6803] = {.lex_state = 349, .external_lex_state = 2}, [6804] = {.lex_state = 349, .external_lex_state = 2}, [6805] = {.lex_state = 349, .external_lex_state = 2}, [6806] = {.lex_state = 349, .external_lex_state = 2}, - [6807] = {.lex_state = 349, .external_lex_state = 2}, + [6807] = {.lex_state = 47, .external_lex_state = 2}, [6808] = {.lex_state = 349, .external_lex_state = 2}, [6809] = {.lex_state = 349, .external_lex_state = 2}, - [6810] = {.lex_state = 349, .external_lex_state = 5}, - [6811] = {.lex_state = 349, .external_lex_state = 5}, + [6810] = {.lex_state = 349, .external_lex_state = 2}, + [6811] = {.lex_state = 349, .external_lex_state = 2}, [6812] = {.lex_state = 349, .external_lex_state = 2}, [6813] = {.lex_state = 349, .external_lex_state = 2}, [6814] = {.lex_state = 349, .external_lex_state = 2}, @@ -27086,93 +27150,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6817] = {.lex_state = 349, .external_lex_state = 2}, [6818] = {.lex_state = 349, .external_lex_state = 2}, [6819] = {.lex_state = 349, .external_lex_state = 2}, - [6820] = {.lex_state = 349, .external_lex_state = 5}, + [6820] = {.lex_state = 349, .external_lex_state = 2}, [6821] = {.lex_state = 349, .external_lex_state = 2}, [6822] = {.lex_state = 349, .external_lex_state = 2}, [6823] = {.lex_state = 349, .external_lex_state = 2}, - [6824] = {.lex_state = 349, .external_lex_state = 5}, + [6824] = {.lex_state = 47, .external_lex_state = 2}, [6825] = {.lex_state = 349, .external_lex_state = 2}, - [6826] = {.lex_state = 47, .external_lex_state = 2}, - [6827] = {.lex_state = 349, .external_lex_state = 2}, - [6828] = {.lex_state = 349, .external_lex_state = 2}, - [6829] = {.lex_state = 349, .external_lex_state = 5}, + [6826] = {.lex_state = 349, .external_lex_state = 2}, + [6827] = {.lex_state = 349, .external_lex_state = 5}, + [6828] = {.lex_state = 349, .external_lex_state = 5}, + [6829] = {.lex_state = 47, .external_lex_state = 2}, [6830] = {.lex_state = 349, .external_lex_state = 2}, [6831] = {.lex_state = 349, .external_lex_state = 2}, - [6832] = {.lex_state = 349, .external_lex_state = 2}, + [6832] = {.lex_state = 47, .external_lex_state = 2}, [6833] = {.lex_state = 349, .external_lex_state = 2}, - [6834] = {.lex_state = 47, .external_lex_state = 2}, + [6834] = {.lex_state = 349, .external_lex_state = 2}, [6835] = {.lex_state = 349, .external_lex_state = 2}, - [6836] = {.lex_state = 349, .external_lex_state = 2}, + [6836] = {.lex_state = 349, .external_lex_state = 5}, [6837] = {.lex_state = 349, .external_lex_state = 2}, - [6838] = {.lex_state = 45, .external_lex_state = 2}, - [6839] = {.lex_state = 349, .external_lex_state = 2}, + [6838] = {.lex_state = 349, .external_lex_state = 2}, + [6839] = {.lex_state = 349, .external_lex_state = 5}, [6840] = {.lex_state = 349, .external_lex_state = 2}, - [6841] = {.lex_state = 349, .external_lex_state = 2}, - [6842] = {.lex_state = 349, .external_lex_state = 5}, - [6843] = {.lex_state = 349, .external_lex_state = 5}, + [6841] = {.lex_state = 45, .external_lex_state = 2}, + [6842] = {.lex_state = 349, .external_lex_state = 2}, + [6843] = {.lex_state = 349, .external_lex_state = 2}, [6844] = {.lex_state = 349, .external_lex_state = 2}, [6845] = {.lex_state = 349, .external_lex_state = 2}, [6846] = {.lex_state = 349, .external_lex_state = 2}, [6847] = {.lex_state = 349, .external_lex_state = 2}, - [6848] = {.lex_state = 45, .external_lex_state = 2}, - [6849] = {.lex_state = 47, .external_lex_state = 2}, - [6850] = {.lex_state = 349, .external_lex_state = 5}, - [6851] = {.lex_state = 349, .external_lex_state = 5}, + [6848] = {.lex_state = 349, .external_lex_state = 2}, + [6849] = {.lex_state = 349, .external_lex_state = 2}, + [6850] = {.lex_state = 349, .external_lex_state = 2}, + [6851] = {.lex_state = 45, .external_lex_state = 2}, [6852] = {.lex_state = 349, .external_lex_state = 2}, [6853] = {.lex_state = 349, .external_lex_state = 2}, - [6854] = {.lex_state = 349, .external_lex_state = 5}, - [6855] = {.lex_state = 349, .external_lex_state = 2}, + [6854] = {.lex_state = 349, .external_lex_state = 2}, + [6855] = {.lex_state = 349, .external_lex_state = 5}, [6856] = {.lex_state = 349, .external_lex_state = 5}, [6857] = {.lex_state = 349, .external_lex_state = 5}, [6858] = {.lex_state = 349, .external_lex_state = 2}, - [6859] = {.lex_state = 349, .external_lex_state = 2}, - [6860] = {.lex_state = 349, .external_lex_state = 2}, - [6861] = {.lex_state = 349, .external_lex_state = 2}, + [6859] = {.lex_state = 349, .external_lex_state = 5}, + [6860] = {.lex_state = 349, .external_lex_state = 5}, + [6861] = {.lex_state = 349, .external_lex_state = 5}, [6862] = {.lex_state = 349, .external_lex_state = 2}, [6863] = {.lex_state = 349, .external_lex_state = 2}, [6864] = {.lex_state = 349, .external_lex_state = 2}, [6865] = {.lex_state = 349, .external_lex_state = 2}, [6866] = {.lex_state = 349, .external_lex_state = 2}, - [6867] = {.lex_state = 349, .external_lex_state = 2}, + [6867] = {.lex_state = 349, .external_lex_state = 5}, [6868] = {.lex_state = 349, .external_lex_state = 2}, - [6869] = {.lex_state = 47, .external_lex_state = 2}, + [6869] = {.lex_state = 349, .external_lex_state = 5}, [6870] = {.lex_state = 349, .external_lex_state = 2}, - [6871] = {.lex_state = 349, .external_lex_state = 2}, + [6871] = {.lex_state = 47, .external_lex_state = 2}, [6872] = {.lex_state = 349, .external_lex_state = 2}, - [6873] = {.lex_state = 45, .external_lex_state = 2}, + [6873] = {.lex_state = 349, .external_lex_state = 2}, [6874] = {.lex_state = 349, .external_lex_state = 2}, [6875] = {.lex_state = 349, .external_lex_state = 2}, - [6876] = {.lex_state = 47, .external_lex_state = 2}, - [6877] = {.lex_state = 47, .external_lex_state = 2}, + [6876] = {.lex_state = 45, .external_lex_state = 2}, + [6877] = {.lex_state = 349, .external_lex_state = 2}, [6878] = {.lex_state = 47, .external_lex_state = 2}, - [6879] = {.lex_state = 47, .external_lex_state = 2}, + [6879] = {.lex_state = 349, .external_lex_state = 2}, [6880] = {.lex_state = 47, .external_lex_state = 2}, - [6881] = {.lex_state = 349, .external_lex_state = 2}, + [6881] = {.lex_state = 47, .external_lex_state = 2}, [6882] = {.lex_state = 47, .external_lex_state = 2}, [6883] = {.lex_state = 349, .external_lex_state = 2}, [6884] = {.lex_state = 349, .external_lex_state = 2}, - [6885] = {.lex_state = 349, .external_lex_state = 2}, - [6886] = {.lex_state = 47, .external_lex_state = 2}, + [6885] = {.lex_state = 47, .external_lex_state = 2}, + [6886] = {.lex_state = 349, .external_lex_state = 2}, [6887] = {.lex_state = 349, .external_lex_state = 2}, - [6888] = {.lex_state = 349, .external_lex_state = 5}, - [6889] = {.lex_state = 349, .external_lex_state = 2}, + [6888] = {.lex_state = 349, .external_lex_state = 2}, + [6889] = {.lex_state = 47, .external_lex_state = 2}, [6890] = {.lex_state = 47, .external_lex_state = 2}, [6891] = {.lex_state = 349, .external_lex_state = 2}, [6892] = {.lex_state = 47, .external_lex_state = 2}, - [6893] = {.lex_state = 47, .external_lex_state = 2}, - [6894] = {.lex_state = 349, .external_lex_state = 5}, - [6895] = {.lex_state = 349, .external_lex_state = 2}, + [6893] = {.lex_state = 349, .external_lex_state = 2}, + [6894] = {.lex_state = 349, .external_lex_state = 2}, + [6895] = {.lex_state = 47, .external_lex_state = 2}, [6896] = {.lex_state = 349, .external_lex_state = 2}, - [6897] = {.lex_state = 349, .external_lex_state = 2}, - [6898] = {.lex_state = 349, .external_lex_state = 5}, + [6897] = {.lex_state = 47, .external_lex_state = 2}, + [6898] = {.lex_state = 349, .external_lex_state = 2}, [6899] = {.lex_state = 349, .external_lex_state = 2}, [6900] = {.lex_state = 349, .external_lex_state = 2}, - [6901] = {.lex_state = 349, .external_lex_state = 2}, - [6902] = {.lex_state = 349, .external_lex_state = 2}, + [6901] = {.lex_state = 47, .external_lex_state = 2}, + [6902] = {.lex_state = 349, .external_lex_state = 5}, [6903] = {.lex_state = 349, .external_lex_state = 2}, - [6904] = {.lex_state = 47, .external_lex_state = 2}, + [6904] = {.lex_state = 349, .external_lex_state = 5}, [6905] = {.lex_state = 349, .external_lex_state = 2}, - [6906] = {.lex_state = 349, .external_lex_state = 2}, + [6906] = {.lex_state = 349, .external_lex_state = 5}, [6907] = {.lex_state = 349, .external_lex_state = 2}, [6908] = {.lex_state = 349, .external_lex_state = 2}, [6909] = {.lex_state = 349, .external_lex_state = 2}, @@ -27180,26 +27244,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6911] = {.lex_state = 349, .external_lex_state = 2}, [6912] = {.lex_state = 349, .external_lex_state = 2}, [6913] = {.lex_state = 349, .external_lex_state = 2}, - [6914] = {.lex_state = 47, .external_lex_state = 2}, + [6914] = {.lex_state = 349, .external_lex_state = 2}, [6915] = {.lex_state = 349, .external_lex_state = 2}, [6916] = {.lex_state = 349, .external_lex_state = 2}, [6917] = {.lex_state = 349, .external_lex_state = 2}, - [6918] = {.lex_state = 349, .external_lex_state = 2}, + [6918] = {.lex_state = 47, .external_lex_state = 2}, [6919] = {.lex_state = 349, .external_lex_state = 2}, [6920] = {.lex_state = 349, .external_lex_state = 2}, - [6921] = {.lex_state = 47, .external_lex_state = 2}, + [6921] = {.lex_state = 349, .external_lex_state = 2}, [6922] = {.lex_state = 349, .external_lex_state = 2}, [6923] = {.lex_state = 349, .external_lex_state = 2}, [6924] = {.lex_state = 349, .external_lex_state = 2}, [6925] = {.lex_state = 349, .external_lex_state = 2}, - [6926] = {.lex_state = 349, .external_lex_state = 2}, - [6927] = {.lex_state = 349, .external_lex_state = 5}, - [6928] = {.lex_state = 349, .external_lex_state = 5}, + [6926] = {.lex_state = 47, .external_lex_state = 2}, + [6927] = {.lex_state = 349, .external_lex_state = 2}, + [6928] = {.lex_state = 349, .external_lex_state = 2}, [6929] = {.lex_state = 349, .external_lex_state = 2}, - [6930] = {.lex_state = 349, .external_lex_state = 2}, + [6930] = {.lex_state = 349, .external_lex_state = 5}, [6931] = {.lex_state = 349, .external_lex_state = 2}, [6932] = {.lex_state = 349, .external_lex_state = 2}, - [6933] = {.lex_state = 349, .external_lex_state = 2}, + [6933] = {.lex_state = 349, .external_lex_state = 5}, [6934] = {.lex_state = 349, .external_lex_state = 2}, [6935] = {.lex_state = 349, .external_lex_state = 2}, [6936] = {.lex_state = 349, .external_lex_state = 2}, @@ -27212,178 +27276,178 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6943] = {.lex_state = 349, .external_lex_state = 2}, [6944] = {.lex_state = 349, .external_lex_state = 2}, [6945] = {.lex_state = 349, .external_lex_state = 2}, - [6946] = {.lex_state = 47, .external_lex_state = 2}, - [6947] = {.lex_state = 2, .external_lex_state = 10}, - [6948] = {.lex_state = 47, .external_lex_state = 2}, - [6949] = {.lex_state = 349, .external_lex_state = 2}, - [6950] = {.lex_state = 349, .external_lex_state = 2}, - [6951] = {.lex_state = 349, .external_lex_state = 2}, - [6952] = {.lex_state = 349, .external_lex_state = 2}, - [6953] = {.lex_state = 349, .external_lex_state = 2}, - [6954] = {.lex_state = 47, .external_lex_state = 2}, + [6946] = {.lex_state = 349, .external_lex_state = 2}, + [6947] = {.lex_state = 349, .external_lex_state = 2}, + [6948] = {.lex_state = 349, .external_lex_state = 2}, + [6949] = {.lex_state = 47, .external_lex_state = 2}, + [6950] = {.lex_state = 47, .external_lex_state = 2}, + [6951] = {.lex_state = 47, .external_lex_state = 2}, + [6952] = {.lex_state = 47, .external_lex_state = 2}, + [6953] = {.lex_state = 2, .external_lex_state = 10}, + [6954] = {.lex_state = 349, .external_lex_state = 2}, [6955] = {.lex_state = 349, .external_lex_state = 2}, - [6956] = {.lex_state = 47, .external_lex_state = 2}, + [6956] = {.lex_state = 349, .external_lex_state = 2}, [6957] = {.lex_state = 349, .external_lex_state = 2}, - [6958] = {.lex_state = 349, .external_lex_state = 2}, + [6958] = {.lex_state = 47, .external_lex_state = 2}, [6959] = {.lex_state = 349, .external_lex_state = 2}, [6960] = {.lex_state = 349, .external_lex_state = 2}, [6961] = {.lex_state = 47, .external_lex_state = 2}, [6962] = {.lex_state = 349, .external_lex_state = 2}, [6963] = {.lex_state = 349, .external_lex_state = 2}, - [6964] = {.lex_state = 47, .external_lex_state = 2}, + [6964] = {.lex_state = 349, .external_lex_state = 2}, [6965] = {.lex_state = 47, .external_lex_state = 2}, - [6966] = {.lex_state = 349, .external_lex_state = 2}, - [6967] = {.lex_state = 47, .external_lex_state = 2}, - [6968] = {.lex_state = 47, .external_lex_state = 2}, - [6969] = {.lex_state = 349, .external_lex_state = 2}, + [6966] = {.lex_state = 47, .external_lex_state = 2}, + [6967] = {.lex_state = 349, .external_lex_state = 2}, + [6968] = {.lex_state = 349, .external_lex_state = 2}, + [6969] = {.lex_state = 47, .external_lex_state = 2}, [6970] = {.lex_state = 349, .external_lex_state = 2}, [6971] = {.lex_state = 349, .external_lex_state = 2}, [6972] = {.lex_state = 47, .external_lex_state = 2}, [6973] = {.lex_state = 349, .external_lex_state = 2}, - [6974] = {.lex_state = 47, .external_lex_state = 2}, + [6974] = {.lex_state = 349, .external_lex_state = 2}, [6975] = {.lex_state = 349, .external_lex_state = 2}, [6976] = {.lex_state = 349, .external_lex_state = 2}, - [6977] = {.lex_state = 349, .external_lex_state = 2}, - [6978] = {.lex_state = 47, .external_lex_state = 2}, - [6979] = {.lex_state = 349, .external_lex_state = 2}, - [6980] = {.lex_state = 47, .external_lex_state = 2}, - [6981] = {.lex_state = 349, .external_lex_state = 2}, - [6982] = {.lex_state = 349, .external_lex_state = 2}, + [6977] = {.lex_state = 47, .external_lex_state = 2}, + [6978] = {.lex_state = 349, .external_lex_state = 2}, + [6979] = {.lex_state = 47, .external_lex_state = 2}, + [6980] = {.lex_state = 349, .external_lex_state = 2}, + [6981] = {.lex_state = 47, .external_lex_state = 2}, + [6982] = {.lex_state = 47, .external_lex_state = 2}, [6983] = {.lex_state = 349, .external_lex_state = 2}, - [6984] = {.lex_state = 47, .external_lex_state = 2}, - [6985] = {.lex_state = 349, .external_lex_state = 2}, + [6984] = {.lex_state = 349, .external_lex_state = 2}, + [6985] = {.lex_state = 47, .external_lex_state = 2}, [6986] = {.lex_state = 349, .external_lex_state = 2}, [6987] = {.lex_state = 349, .external_lex_state = 2}, [6988] = {.lex_state = 349, .external_lex_state = 2}, - [6989] = {.lex_state = 47, .external_lex_state = 2}, - [6990] = {.lex_state = 47, .external_lex_state = 2}, - [6991] = {.lex_state = 349, .external_lex_state = 2}, - [6992] = {.lex_state = 2, .external_lex_state = 10}, - [6993] = {.lex_state = 349, .external_lex_state = 2}, - [6994] = {.lex_state = 21, .external_lex_state = 2}, - [6995] = {.lex_state = 349, .external_lex_state = 2}, - [6996] = {.lex_state = 349, .external_lex_state = 2}, + [6989] = {.lex_state = 349, .external_lex_state = 2}, + [6990] = {.lex_state = 349, .external_lex_state = 2}, + [6991] = {.lex_state = 47, .external_lex_state = 2}, + [6992] = {.lex_state = 47, .external_lex_state = 2}, + [6993] = {.lex_state = 47, .external_lex_state = 2}, + [6994] = {.lex_state = 349, .external_lex_state = 2}, + [6995] = {.lex_state = 2, .external_lex_state = 10}, + [6996] = {.lex_state = 21, .external_lex_state = 2}, [6997] = {.lex_state = 349, .external_lex_state = 2}, [6998] = {.lex_state = 349, .external_lex_state = 2}, [6999] = {.lex_state = 349, .external_lex_state = 2}, [7000] = {.lex_state = 349, .external_lex_state = 2}, [7001] = {.lex_state = 349, .external_lex_state = 2}, - [7002] = {.lex_state = 47, .external_lex_state = 2}, - [7003] = {.lex_state = 47, .external_lex_state = 2}, + [7002] = {.lex_state = 349, .external_lex_state = 2}, + [7003] = {.lex_state = 349, .external_lex_state = 2}, [7004] = {.lex_state = 349, .external_lex_state = 2}, [7005] = {.lex_state = 349, .external_lex_state = 2}, - [7006] = {.lex_state = 349, .external_lex_state = 2}, + [7006] = {.lex_state = 47, .external_lex_state = 2}, [7007] = {.lex_state = 47, .external_lex_state = 2}, [7008] = {.lex_state = 349, .external_lex_state = 2}, [7009] = {.lex_state = 349, .external_lex_state = 2}, - [7010] = {.lex_state = 47, .external_lex_state = 2}, - [7011] = {.lex_state = 46, .external_lex_state = 2}, - [7012] = {.lex_state = 349, .external_lex_state = 2}, + [7010] = {.lex_state = 349, .external_lex_state = 2}, + [7011] = {.lex_state = 47, .external_lex_state = 2}, + [7012] = {.lex_state = 46, .external_lex_state = 2}, [7013] = {.lex_state = 47, .external_lex_state = 2}, - [7014] = {.lex_state = 349, .external_lex_state = 2}, + [7014] = {.lex_state = 47, .external_lex_state = 2}, [7015] = {.lex_state = 349, .external_lex_state = 2}, [7016] = {.lex_state = 349, .external_lex_state = 2}, [7017] = {.lex_state = 47, .external_lex_state = 2}, - [7018] = {.lex_state = 47, .external_lex_state = 2}, + [7018] = {.lex_state = 349, .external_lex_state = 2}, [7019] = {.lex_state = 349, .external_lex_state = 2}, - [7020] = {.lex_state = 47, .external_lex_state = 2}, + [7020] = {.lex_state = 349, .external_lex_state = 2}, [7021] = {.lex_state = 349, .external_lex_state = 2}, - [7022] = {.lex_state = 349, .external_lex_state = 2}, - [7023] = {.lex_state = 349, .external_lex_state = 2}, + [7022] = {.lex_state = 47, .external_lex_state = 2}, + [7023] = {.lex_state = 47, .external_lex_state = 2}, [7024] = {.lex_state = 47, .external_lex_state = 2}, - [7025] = {.lex_state = 47, .external_lex_state = 2}, + [7025] = {.lex_state = 349, .external_lex_state = 2}, [7026] = {.lex_state = 349, .external_lex_state = 2}, - [7027] = {.lex_state = 47, .external_lex_state = 2}, + [7027] = {.lex_state = 349, .external_lex_state = 2}, [7028] = {.lex_state = 349, .external_lex_state = 2}, - [7029] = {.lex_state = 349, .external_lex_state = 2}, + [7029] = {.lex_state = 47, .external_lex_state = 2}, [7030] = {.lex_state = 349, .external_lex_state = 2}, [7031] = {.lex_state = 47, .external_lex_state = 2}, [7032] = {.lex_state = 47, .external_lex_state = 2}, - [7033] = {.lex_state = 349, .external_lex_state = 2}, - [7034] = {.lex_state = 349, .external_lex_state = 2}, + [7033] = {.lex_state = 47, .external_lex_state = 2}, + [7034] = {.lex_state = 47, .external_lex_state = 2}, [7035] = {.lex_state = 349, .external_lex_state = 2}, [7036] = {.lex_state = 349, .external_lex_state = 2}, [7037] = {.lex_state = 349, .external_lex_state = 2}, - [7038] = {.lex_state = 47, .external_lex_state = 2}, - [7039] = {.lex_state = 47, .external_lex_state = 2}, + [7038] = {.lex_state = 349, .external_lex_state = 2}, + [7039] = {.lex_state = 349, .external_lex_state = 2}, [7040] = {.lex_state = 349, .external_lex_state = 2}, - [7041] = {.lex_state = 47, .external_lex_state = 2}, + [7041] = {.lex_state = 349, .external_lex_state = 2}, [7042] = {.lex_state = 47, .external_lex_state = 2}, - [7043] = {.lex_state = 47, .external_lex_state = 2}, + [7043] = {.lex_state = 349, .external_lex_state = 2}, [7044] = {.lex_state = 349, .external_lex_state = 2}, [7045] = {.lex_state = 47, .external_lex_state = 2}, - [7046] = {.lex_state = 46, .external_lex_state = 2}, + [7046] = {.lex_state = 47, .external_lex_state = 2}, [7047] = {.lex_state = 349, .external_lex_state = 2}, [7048] = {.lex_state = 349, .external_lex_state = 2}, - [7049] = {.lex_state = 349, .external_lex_state = 2}, - [7050] = {.lex_state = 349, .external_lex_state = 2}, + [7049] = {.lex_state = 47, .external_lex_state = 2}, + [7050] = {.lex_state = 46, .external_lex_state = 2}, [7051] = {.lex_state = 47, .external_lex_state = 2}, [7052] = {.lex_state = 349, .external_lex_state = 2}, - [7053] = {.lex_state = 349, .external_lex_state = 2}, + [7053] = {.lex_state = 47, .external_lex_state = 2}, [7054] = {.lex_state = 349, .external_lex_state = 2}, [7055] = {.lex_state = 47, .external_lex_state = 2}, [7056] = {.lex_state = 349, .external_lex_state = 2}, - [7057] = {.lex_state = 47, .external_lex_state = 2}, - [7058] = {.lex_state = 349, .external_lex_state = 2}, + [7057] = {.lex_state = 349, .external_lex_state = 2}, + [7058] = {.lex_state = 47, .external_lex_state = 2}, [7059] = {.lex_state = 47, .external_lex_state = 2}, - [7060] = {.lex_state = 47, .external_lex_state = 2}, - [7061] = {.lex_state = 47, .external_lex_state = 2}, - [7062] = {.lex_state = 349, .external_lex_state = 2}, - [7063] = {.lex_state = 46, .external_lex_state = 2}, + [7060] = {.lex_state = 349, .external_lex_state = 2}, + [7061] = {.lex_state = 349, .external_lex_state = 2}, + [7062] = {.lex_state = 47, .external_lex_state = 2}, + [7063] = {.lex_state = 349, .external_lex_state = 2}, [7064] = {.lex_state = 349, .external_lex_state = 2}, - [7065] = {.lex_state = 349, .external_lex_state = 2}, + [7065] = {.lex_state = 47, .external_lex_state = 2}, [7066] = {.lex_state = 349, .external_lex_state = 2}, - [7067] = {.lex_state = 47, .external_lex_state = 2}, + [7067] = {.lex_state = 349, .external_lex_state = 2}, [7068] = {.lex_state = 349, .external_lex_state = 2}, - [7069] = {.lex_state = 47, .external_lex_state = 2}, - [7070] = {.lex_state = 2, .external_lex_state = 10}, + [7069] = {.lex_state = 349, .external_lex_state = 2}, + [7070] = {.lex_state = 47, .external_lex_state = 2}, [7071] = {.lex_state = 349, .external_lex_state = 2}, - [7072] = {.lex_state = 349, .external_lex_state = 2}, - [7073] = {.lex_state = 349, .external_lex_state = 2}, + [7072] = {.lex_state = 46, .external_lex_state = 2}, + [7073] = {.lex_state = 47, .external_lex_state = 2}, [7074] = {.lex_state = 349, .external_lex_state = 2}, - [7075] = {.lex_state = 349, .external_lex_state = 2}, - [7076] = {.lex_state = 47, .external_lex_state = 2}, - [7077] = {.lex_state = 349, .external_lex_state = 2}, + [7075] = {.lex_state = 47, .external_lex_state = 2}, + [7076] = {.lex_state = 349, .external_lex_state = 2}, + [7077] = {.lex_state = 2, .external_lex_state = 10}, [7078] = {.lex_state = 349, .external_lex_state = 2}, [7079] = {.lex_state = 349, .external_lex_state = 2}, - [7080] = {.lex_state = 349, .external_lex_state = 2}, + [7080] = {.lex_state = 47, .external_lex_state = 2}, [7081] = {.lex_state = 349, .external_lex_state = 2}, - [7082] = {.lex_state = 47, .external_lex_state = 2}, + [7082] = {.lex_state = 349, .external_lex_state = 2}, [7083] = {.lex_state = 349, .external_lex_state = 2}, [7084] = {.lex_state = 349, .external_lex_state = 2}, - [7085] = {.lex_state = 47, .external_lex_state = 2}, - [7086] = {.lex_state = 349, .external_lex_state = 2}, + [7085] = {.lex_state = 349, .external_lex_state = 2}, + [7086] = {.lex_state = 47, .external_lex_state = 2}, [7087] = {.lex_state = 349, .external_lex_state = 2}, [7088] = {.lex_state = 47, .external_lex_state = 2}, [7089] = {.lex_state = 349, .external_lex_state = 2}, [7090] = {.lex_state = 349, .external_lex_state = 2}, - [7091] = {.lex_state = 349, .external_lex_state = 2}, - [7092] = {.lex_state = 47, .external_lex_state = 2}, + [7091] = {.lex_state = 47, .external_lex_state = 2}, + [7092] = {.lex_state = 349, .external_lex_state = 2}, [7093] = {.lex_state = 349, .external_lex_state = 2}, [7094] = {.lex_state = 349, .external_lex_state = 2}, [7095] = {.lex_state = 349, .external_lex_state = 2}, [7096] = {.lex_state = 349, .external_lex_state = 2}, - [7097] = {.lex_state = 46, .external_lex_state = 2}, - [7098] = {.lex_state = 47, .external_lex_state = 2}, + [7097] = {.lex_state = 47, .external_lex_state = 2}, + [7098] = {.lex_state = 349, .external_lex_state = 2}, [7099] = {.lex_state = 349, .external_lex_state = 2}, [7100] = {.lex_state = 349, .external_lex_state = 2}, - [7101] = {.lex_state = 47, .external_lex_state = 2}, + [7101] = {.lex_state = 349, .external_lex_state = 2}, [7102] = {.lex_state = 47, .external_lex_state = 2}, - [7103] = {.lex_state = 349, .external_lex_state = 2}, - [7104] = {.lex_state = 349, .external_lex_state = 2}, + [7103] = {.lex_state = 46, .external_lex_state = 2}, + [7104] = {.lex_state = 47, .external_lex_state = 2}, [7105] = {.lex_state = 349, .external_lex_state = 2}, [7106] = {.lex_state = 349, .external_lex_state = 2}, [7107] = {.lex_state = 349, .external_lex_state = 2}, [7108] = {.lex_state = 349, .external_lex_state = 2}, - [7109] = {.lex_state = 47, .external_lex_state = 2}, + [7109] = {.lex_state = 349, .external_lex_state = 2}, [7110] = {.lex_state = 349, .external_lex_state = 2}, [7111] = {.lex_state = 349, .external_lex_state = 2}, - [7112] = {.lex_state = 349, .external_lex_state = 2}, + [7112] = {.lex_state = 47, .external_lex_state = 2}, [7113] = {.lex_state = 349, .external_lex_state = 2}, [7114] = {.lex_state = 47, .external_lex_state = 2}, [7115] = {.lex_state = 349, .external_lex_state = 2}, [7116] = {.lex_state = 349, .external_lex_state = 2}, - [7117] = {.lex_state = 349, .external_lex_state = 2}, + [7117] = {.lex_state = 47, .external_lex_state = 2}, [7118] = {.lex_state = 349, .external_lex_state = 2}, [7119] = {.lex_state = 349, .external_lex_state = 2}, [7120] = {.lex_state = 349, .external_lex_state = 2}, @@ -27395,52 +27459,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7126] = {.lex_state = 349, .external_lex_state = 2}, [7127] = {.lex_state = 349, .external_lex_state = 2}, [7128] = {.lex_state = 349, .external_lex_state = 2}, - [7129] = {.lex_state = 349, .external_lex_state = 2}, + [7129] = {.lex_state = 47, .external_lex_state = 2}, [7130] = {.lex_state = 349, .external_lex_state = 2}, [7131] = {.lex_state = 349, .external_lex_state = 2}, [7132] = {.lex_state = 349, .external_lex_state = 2}, - [7133] = {.lex_state = 68, .external_lex_state = 2}, - [7134] = {.lex_state = 47, .external_lex_state = 2}, - [7135] = {.lex_state = 47, .external_lex_state = 2}, + [7133] = {.lex_state = 349, .external_lex_state = 2}, + [7134] = {.lex_state = 349, .external_lex_state = 2}, + [7135] = {.lex_state = 349, .external_lex_state = 2}, [7136] = {.lex_state = 349, .external_lex_state = 2}, - [7137] = {.lex_state = 349, .external_lex_state = 2}, - [7138] = {.lex_state = 47, .external_lex_state = 2}, + [7137] = {.lex_state = 47, .external_lex_state = 2}, + [7138] = {.lex_state = 349, .external_lex_state = 2}, [7139] = {.lex_state = 349, .external_lex_state = 2}, [7140] = {.lex_state = 349, .external_lex_state = 2}, [7141] = {.lex_state = 349, .external_lex_state = 2}, [7142] = {.lex_state = 349, .external_lex_state = 2}, - [7143] = {.lex_state = 47, .external_lex_state = 2}, + [7143] = {.lex_state = 349, .external_lex_state = 2}, [7144] = {.lex_state = 349, .external_lex_state = 2}, - [7145] = {.lex_state = 349, .external_lex_state = 2}, + [7145] = {.lex_state = 68, .external_lex_state = 2}, [7146] = {.lex_state = 68, .external_lex_state = 2}, [7147] = {.lex_state = 349, .external_lex_state = 2}, - [7148] = {.lex_state = 47, .external_lex_state = 2}, - [7149] = {.lex_state = 349, .external_lex_state = 2}, - [7150] = {.lex_state = 47, .external_lex_state = 2}, + [7148] = {.lex_state = 349, .external_lex_state = 2}, + [7149] = {.lex_state = 47, .external_lex_state = 2}, + [7150] = {.lex_state = 349, .external_lex_state = 2}, [7151] = {.lex_state = 349, .external_lex_state = 2}, - [7152] = {.lex_state = 349, .external_lex_state = 2}, + [7152] = {.lex_state = 47, .external_lex_state = 2}, [7153] = {.lex_state = 349, .external_lex_state = 2}, - [7154] = {.lex_state = 47, .external_lex_state = 2}, + [7154] = {.lex_state = 349, .external_lex_state = 2}, [7155] = {.lex_state = 349, .external_lex_state = 2}, [7156] = {.lex_state = 349, .external_lex_state = 2}, - [7157] = {.lex_state = 349, .external_lex_state = 2}, + [7157] = {.lex_state = 68, .external_lex_state = 2}, [7158] = {.lex_state = 349, .external_lex_state = 2}, [7159] = {.lex_state = 349, .external_lex_state = 2}, [7160] = {.lex_state = 349, .external_lex_state = 2}, [7161] = {.lex_state = 349, .external_lex_state = 2}, [7162] = {.lex_state = 47, .external_lex_state = 2}, - [7163] = {.lex_state = 68, .external_lex_state = 2}, + [7163] = {.lex_state = 47, .external_lex_state = 2}, [7164] = {.lex_state = 349, .external_lex_state = 2}, - [7165] = {.lex_state = 68, .external_lex_state = 2}, - [7166] = {.lex_state = 349, .external_lex_state = 2}, - [7167] = {.lex_state = 46, .external_lex_state = 2}, + [7165] = {.lex_state = 349, .external_lex_state = 2}, + [7166] = {.lex_state = 68, .external_lex_state = 2}, + [7167] = {.lex_state = 349, .external_lex_state = 2}, [7168] = {.lex_state = 349, .external_lex_state = 2}, - [7169] = {.lex_state = 349, .external_lex_state = 2}, + [7169] = {.lex_state = 47, .external_lex_state = 2}, [7170] = {.lex_state = 349, .external_lex_state = 2}, - [7171] = {.lex_state = 349, .external_lex_state = 2}, + [7171] = {.lex_state = 46, .external_lex_state = 2}, [7172] = {.lex_state = 349, .external_lex_state = 2}, [7173] = {.lex_state = 349, .external_lex_state = 2}, - [7174] = {.lex_state = 47, .external_lex_state = 2}, + [7174] = {.lex_state = 349, .external_lex_state = 2}, [7175] = {.lex_state = 349, .external_lex_state = 2}, [7176] = {.lex_state = 349, .external_lex_state = 2}, [7177] = {.lex_state = 349, .external_lex_state = 2}, @@ -27448,95 +27512,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7179] = {.lex_state = 349, .external_lex_state = 2}, [7180] = {.lex_state = 47, .external_lex_state = 2}, [7181] = {.lex_state = 349, .external_lex_state = 2}, - [7182] = {.lex_state = 47, .external_lex_state = 2}, + [7182] = {.lex_state = 349, .external_lex_state = 2}, [7183] = {.lex_state = 349, .external_lex_state = 2}, - [7184] = {.lex_state = 21, .external_lex_state = 2}, + [7184] = {.lex_state = 349, .external_lex_state = 2}, [7185] = {.lex_state = 349, .external_lex_state = 2}, - [7186] = {.lex_state = 349, .external_lex_state = 2}, - [7187] = {.lex_state = 349, .external_lex_state = 2}, - [7188] = {.lex_state = 47, .external_lex_state = 2}, + [7186] = {.lex_state = 47, .external_lex_state = 2}, + [7187] = {.lex_state = 21, .external_lex_state = 2}, + [7188] = {.lex_state = 349, .external_lex_state = 2}, [7189] = {.lex_state = 349, .external_lex_state = 2}, [7190] = {.lex_state = 349, .external_lex_state = 2}, [7191] = {.lex_state = 349, .external_lex_state = 2}, - [7192] = {.lex_state = 349, .external_lex_state = 2}, - [7193] = {.lex_state = 47, .external_lex_state = 2}, + [7192] = {.lex_state = 47, .external_lex_state = 2}, + [7193] = {.lex_state = 349, .external_lex_state = 2}, [7194] = {.lex_state = 349, .external_lex_state = 2}, [7195] = {.lex_state = 349, .external_lex_state = 2}, - [7196] = {.lex_state = 349, .external_lex_state = 2}, + [7196] = {.lex_state = 47, .external_lex_state = 2}, [7197] = {.lex_state = 349, .external_lex_state = 2}, [7198] = {.lex_state = 349, .external_lex_state = 2}, [7199] = {.lex_state = 349, .external_lex_state = 2}, [7200] = {.lex_state = 349, .external_lex_state = 2}, [7201] = {.lex_state = 349, .external_lex_state = 2}, - [7202] = {.lex_state = 47, .external_lex_state = 2}, + [7202] = {.lex_state = 349, .external_lex_state = 2}, [7203] = {.lex_state = 349, .external_lex_state = 2}, [7204] = {.lex_state = 349, .external_lex_state = 2}, [7205] = {.lex_state = 349, .external_lex_state = 2}, [7206] = {.lex_state = 349, .external_lex_state = 2}, [7207] = {.lex_state = 349, .external_lex_state = 2}, - [7208] = {.lex_state = 47, .external_lex_state = 2}, + [7208] = {.lex_state = 349, .external_lex_state = 2}, [7209] = {.lex_state = 47, .external_lex_state = 2}, - [7210] = {.lex_state = 47, .external_lex_state = 2}, + [7210] = {.lex_state = 349, .external_lex_state = 2}, [7211] = {.lex_state = 349, .external_lex_state = 2}, [7212] = {.lex_state = 47, .external_lex_state = 2}, - [7213] = {.lex_state = 349, .external_lex_state = 2}, + [7213] = {.lex_state = 47, .external_lex_state = 2}, [7214] = {.lex_state = 349, .external_lex_state = 2}, [7215] = {.lex_state = 349, .external_lex_state = 2}, - [7216] = {.lex_state = 47, .external_lex_state = 2}, - [7217] = {.lex_state = 349, .external_lex_state = 2}, + [7216] = {.lex_state = 349, .external_lex_state = 2}, + [7217] = {.lex_state = 47, .external_lex_state = 2}, [7218] = {.lex_state = 349, .external_lex_state = 2}, - [7219] = {.lex_state = 349, .external_lex_state = 2}, + [7219] = {.lex_state = 47, .external_lex_state = 2}, [7220] = {.lex_state = 349, .external_lex_state = 2}, [7221] = {.lex_state = 349, .external_lex_state = 2}, [7222] = {.lex_state = 349, .external_lex_state = 2}, - [7223] = {.lex_state = 47, .external_lex_state = 2}, + [7223] = {.lex_state = 349, .external_lex_state = 2}, [7224] = {.lex_state = 349, .external_lex_state = 2}, - [7225] = {.lex_state = 47, .external_lex_state = 2}, - [7226] = {.lex_state = 47, .external_lex_state = 2}, - [7227] = {.lex_state = 47, .external_lex_state = 2}, + [7225] = {.lex_state = 349, .external_lex_state = 2}, + [7226] = {.lex_state = 349, .external_lex_state = 2}, + [7227] = {.lex_state = 349, .external_lex_state = 2}, [7228] = {.lex_state = 349, .external_lex_state = 2}, - [7229] = {.lex_state = 349, .external_lex_state = 2}, - [7230] = {.lex_state = 47, .external_lex_state = 2}, - [7231] = {.lex_state = 47, .external_lex_state = 2}, - [7232] = {.lex_state = 349, .external_lex_state = 2}, - [7233] = {.lex_state = 2, .external_lex_state = 10}, - [7234] = {.lex_state = 349, .external_lex_state = 2}, + [7229] = {.lex_state = 47, .external_lex_state = 2}, + [7230] = {.lex_state = 349, .external_lex_state = 2}, + [7231] = {.lex_state = 349, .external_lex_state = 2}, + [7232] = {.lex_state = 47, .external_lex_state = 2}, + [7233] = {.lex_state = 349, .external_lex_state = 2}, + [7234] = {.lex_state = 47, .external_lex_state = 2}, [7235] = {.lex_state = 349, .external_lex_state = 2}, - [7236] = {.lex_state = 349, .external_lex_state = 2}, - [7237] = {.lex_state = 349, .external_lex_state = 2}, - [7238] = {.lex_state = 349, .external_lex_state = 2}, - [7239] = {.lex_state = 349, .external_lex_state = 2}, - [7240] = {.lex_state = 349, .external_lex_state = 2}, + [7236] = {.lex_state = 47, .external_lex_state = 2}, + [7237] = {.lex_state = 47, .external_lex_state = 2}, + [7238] = {.lex_state = 47, .external_lex_state = 2}, + [7239] = {.lex_state = 2, .external_lex_state = 10}, + [7240] = {.lex_state = 46, .external_lex_state = 2}, [7241] = {.lex_state = 349, .external_lex_state = 2}, [7242] = {.lex_state = 349, .external_lex_state = 2}, - [7243] = {.lex_state = 47, .external_lex_state = 2}, + [7243] = {.lex_state = 349, .external_lex_state = 2}, [7244] = {.lex_state = 349, .external_lex_state = 2}, - [7245] = {.lex_state = 47, .external_lex_state = 2}, - [7246] = {.lex_state = 46, .external_lex_state = 2}, + [7245] = {.lex_state = 349, .external_lex_state = 2}, + [7246] = {.lex_state = 47, .external_lex_state = 2}, [7247] = {.lex_state = 349, .external_lex_state = 2}, - [7248] = {.lex_state = 349, .external_lex_state = 2}, + [7248] = {.lex_state = 47, .external_lex_state = 2}, [7249] = {.lex_state = 349, .external_lex_state = 2}, [7250] = {.lex_state = 349, .external_lex_state = 2}, [7251] = {.lex_state = 349, .external_lex_state = 2}, [7252] = {.lex_state = 349, .external_lex_state = 2}, [7253] = {.lex_state = 349, .external_lex_state = 2}, [7254] = {.lex_state = 349, .external_lex_state = 2}, - [7255] = {.lex_state = 46, .external_lex_state = 2}, + [7255] = {.lex_state = 349, .external_lex_state = 2}, [7256] = {.lex_state = 349, .external_lex_state = 2}, - [7257] = {.lex_state = 47, .external_lex_state = 2}, - [7258] = {.lex_state = 349, .external_lex_state = 2}, - [7259] = {.lex_state = 349, .external_lex_state = 2}, + [7257] = {.lex_state = 349, .external_lex_state = 2}, + [7258] = {.lex_state = 47, .external_lex_state = 2}, + [7259] = {.lex_state = 46, .external_lex_state = 2}, [7260] = {.lex_state = 349, .external_lex_state = 2}, [7261] = {.lex_state = 349, .external_lex_state = 2}, [7262] = {.lex_state = 349, .external_lex_state = 2}, [7263] = {.lex_state = 349, .external_lex_state = 2}, [7264] = {.lex_state = 349, .external_lex_state = 2}, - [7265] = {.lex_state = 68, .external_lex_state = 2}, + [7265] = {.lex_state = 349, .external_lex_state = 2}, [7266] = {.lex_state = 349, .external_lex_state = 2}, [7267] = {.lex_state = 349, .external_lex_state = 2}, - [7268] = {.lex_state = 349, .external_lex_state = 2}, - [7269] = {.lex_state = 47, .external_lex_state = 2}, - [7270] = {.lex_state = 47, .external_lex_state = 2}, + [7268] = {.lex_state = 68, .external_lex_state = 2}, + [7269] = {.lex_state = 349, .external_lex_state = 2}, + [7270] = {.lex_state = 349, .external_lex_state = 2}, [7271] = {.lex_state = 349, .external_lex_state = 2}, [7272] = {.lex_state = 349, .external_lex_state = 2}, [7273] = {.lex_state = 349, .external_lex_state = 2}, @@ -27548,31 +27612,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7279] = {.lex_state = 349, .external_lex_state = 2}, [7280] = {.lex_state = 349, .external_lex_state = 2}, [7281] = {.lex_state = 349, .external_lex_state = 2}, - [7282] = {.lex_state = 349, .external_lex_state = 2}, - [7283] = {.lex_state = 349, .external_lex_state = 2}, - [7284] = {.lex_state = 47, .external_lex_state = 2}, - [7285] = {.lex_state = 47, .external_lex_state = 2}, + [7282] = {.lex_state = 47, .external_lex_state = 2}, + [7283] = {.lex_state = 47, .external_lex_state = 2}, + [7284] = {.lex_state = 349, .external_lex_state = 2}, + [7285] = {.lex_state = 349, .external_lex_state = 2}, [7286] = {.lex_state = 349, .external_lex_state = 2}, [7287] = {.lex_state = 349, .external_lex_state = 2}, - [7288] = {.lex_state = 349, .external_lex_state = 2}, - [7289] = {.lex_state = 349, .external_lex_state = 2}, + [7288] = {.lex_state = 47, .external_lex_state = 2}, + [7289] = {.lex_state = 47, .external_lex_state = 2}, [7290] = {.lex_state = 349, .external_lex_state = 2}, - [7291] = {.lex_state = 46, .external_lex_state = 2}, + [7291] = {.lex_state = 349, .external_lex_state = 2}, [7292] = {.lex_state = 349, .external_lex_state = 2}, - [7293] = {.lex_state = 47, .external_lex_state = 2}, - [7294] = {.lex_state = 349, .external_lex_state = 2}, + [7293] = {.lex_state = 349, .external_lex_state = 2}, + [7294] = {.lex_state = 46, .external_lex_state = 2}, [7295] = {.lex_state = 47, .external_lex_state = 2}, - [7296] = {.lex_state = 47, .external_lex_state = 2}, - [7297] = {.lex_state = 349, .external_lex_state = 2}, + [7296] = {.lex_state = 349, .external_lex_state = 2}, + [7297] = {.lex_state = 47, .external_lex_state = 2}, [7298] = {.lex_state = 349, .external_lex_state = 2}, [7299] = {.lex_state = 47, .external_lex_state = 2}, [7300] = {.lex_state = 349, .external_lex_state = 2}, [7301] = {.lex_state = 349, .external_lex_state = 2}, - [7302] = {.lex_state = 47, .external_lex_state = 2}, - [7303] = {.lex_state = 349, .external_lex_state = 2}, + [7302] = {.lex_state = 349, .external_lex_state = 2}, + [7303] = {.lex_state = 47, .external_lex_state = 2}, [7304] = {.lex_state = 349, .external_lex_state = 2}, [7305] = {.lex_state = 349, .external_lex_state = 2}, - [7306] = {.lex_state = 349, .external_lex_state = 2}, + [7306] = {.lex_state = 47, .external_lex_state = 2}, [7307] = {.lex_state = 349, .external_lex_state = 2}, [7308] = {.lex_state = 349, .external_lex_state = 2}, [7309] = {.lex_state = 349, .external_lex_state = 2}, @@ -27587,55 +27651,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7318] = {.lex_state = 349, .external_lex_state = 2}, [7319] = {.lex_state = 349, .external_lex_state = 2}, [7320] = {.lex_state = 349, .external_lex_state = 2}, - [7321] = {.lex_state = 349, .external_lex_state = 2}, + [7321] = {.lex_state = 47, .external_lex_state = 2}, [7322] = {.lex_state = 349, .external_lex_state = 2}, [7323] = {.lex_state = 349, .external_lex_state = 2}, - [7324] = {.lex_state = 47, .external_lex_state = 2}, + [7324] = {.lex_state = 349, .external_lex_state = 2}, [7325] = {.lex_state = 349, .external_lex_state = 2}, [7326] = {.lex_state = 349, .external_lex_state = 2}, [7327] = {.lex_state = 349, .external_lex_state = 2}, - [7328] = {.lex_state = 47, .external_lex_state = 2}, + [7328] = {.lex_state = 349, .external_lex_state = 2}, [7329] = {.lex_state = 349, .external_lex_state = 2}, [7330] = {.lex_state = 349, .external_lex_state = 2}, - [7331] = {.lex_state = 47, .external_lex_state = 2}, - [7332] = {.lex_state = 349, .external_lex_state = 2}, - [7333] = {.lex_state = 47, .external_lex_state = 2}, - [7334] = {.lex_state = 47, .external_lex_state = 2}, + [7331] = {.lex_state = 349, .external_lex_state = 2}, + [7332] = {.lex_state = 47, .external_lex_state = 2}, + [7333] = {.lex_state = 349, .external_lex_state = 2}, + [7334] = {.lex_state = 349, .external_lex_state = 2}, [7335] = {.lex_state = 349, .external_lex_state = 2}, [7336] = {.lex_state = 349, .external_lex_state = 2}, [7337] = {.lex_state = 47, .external_lex_state = 2}, - [7338] = {.lex_state = 349, .external_lex_state = 2}, + [7338] = {.lex_state = 47, .external_lex_state = 2}, [7339] = {.lex_state = 349, .external_lex_state = 2}, [7340] = {.lex_state = 349, .external_lex_state = 2}, [7341] = {.lex_state = 47, .external_lex_state = 2}, - [7342] = {.lex_state = 349, .external_lex_state = 2}, - [7343] = {.lex_state = 21, .external_lex_state = 2}, + [7342] = {.lex_state = 47, .external_lex_state = 2}, + [7343] = {.lex_state = 349, .external_lex_state = 2}, [7344] = {.lex_state = 349, .external_lex_state = 2}, [7345] = {.lex_state = 349, .external_lex_state = 2}, - [7346] = {.lex_state = 349, .external_lex_state = 2}, + [7346] = {.lex_state = 21, .external_lex_state = 2}, [7347] = {.lex_state = 349, .external_lex_state = 2}, - [7348] = {.lex_state = 47, .external_lex_state = 2}, + [7348] = {.lex_state = 349, .external_lex_state = 2}, [7349] = {.lex_state = 349, .external_lex_state = 2}, [7350] = {.lex_state = 349, .external_lex_state = 2}, [7351] = {.lex_state = 349, .external_lex_state = 2}, [7352] = {.lex_state = 349, .external_lex_state = 2}, [7353] = {.lex_state = 47, .external_lex_state = 2}, - [7354] = {.lex_state = 349, .external_lex_state = 2}, + [7354] = {.lex_state = 47, .external_lex_state = 2}, [7355] = {.lex_state = 349, .external_lex_state = 2}, [7356] = {.lex_state = 47, .external_lex_state = 2}, [7357] = {.lex_state = 349, .external_lex_state = 2}, [7358] = {.lex_state = 349, .external_lex_state = 2}, [7359] = {.lex_state = 349, .external_lex_state = 2}, - [7360] = {.lex_state = 349, .external_lex_state = 2}, + [7360] = {.lex_state = 47, .external_lex_state = 2}, [7361] = {.lex_state = 349, .external_lex_state = 2}, - [7362] = {.lex_state = 47, .external_lex_state = 2}, + [7362] = {.lex_state = 349, .external_lex_state = 2}, [7363] = {.lex_state = 349, .external_lex_state = 2}, [7364] = {.lex_state = 349, .external_lex_state = 2}, - [7365] = {.lex_state = 47, .external_lex_state = 2}, - [7366] = {.lex_state = 349, .external_lex_state = 2}, + [7365] = {.lex_state = 349, .external_lex_state = 2}, + [7366] = {.lex_state = 47, .external_lex_state = 2}, [7367] = {.lex_state = 349, .external_lex_state = 2}, [7368] = {.lex_state = 349, .external_lex_state = 2}, - [7369] = {.lex_state = 349, .external_lex_state = 2}, + [7369] = {.lex_state = 47, .external_lex_state = 2}, [7370] = {.lex_state = 349, .external_lex_state = 2}, [7371] = {.lex_state = 349, .external_lex_state = 2}, [7372] = {.lex_state = 349, .external_lex_state = 2}, @@ -27644,61 +27708,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7375] = {.lex_state = 349, .external_lex_state = 2}, [7376] = {.lex_state = 349, .external_lex_state = 2}, [7377] = {.lex_state = 349, .external_lex_state = 2}, - [7378] = {.lex_state = 47, .external_lex_state = 2}, + [7378] = {.lex_state = 349, .external_lex_state = 2}, [7379] = {.lex_state = 349, .external_lex_state = 2}, [7380] = {.lex_state = 349, .external_lex_state = 2}, - [7381] = {.lex_state = 47, .external_lex_state = 2}, - [7382] = {.lex_state = 349, .external_lex_state = 2}, + [7381] = {.lex_state = 349, .external_lex_state = 2}, + [7382] = {.lex_state = 47, .external_lex_state = 2}, [7383] = {.lex_state = 349, .external_lex_state = 2}, [7384] = {.lex_state = 47, .external_lex_state = 2}, - [7385] = {.lex_state = 349, .external_lex_state = 2}, - [7386] = {.lex_state = 47, .external_lex_state = 2}, - [7387] = {.lex_state = 47, .external_lex_state = 2}, - [7388] = {.lex_state = 349, .external_lex_state = 2}, + [7385] = {.lex_state = 47, .external_lex_state = 2}, + [7386] = {.lex_state = 349, .external_lex_state = 2}, + [7387] = {.lex_state = 349, .external_lex_state = 2}, + [7388] = {.lex_state = 47, .external_lex_state = 2}, [7389] = {.lex_state = 349, .external_lex_state = 2}, [7390] = {.lex_state = 349, .external_lex_state = 2}, - [7391] = {.lex_state = 349, .external_lex_state = 2}, + [7391] = {.lex_state = 47, .external_lex_state = 2}, [7392] = {.lex_state = 349, .external_lex_state = 2}, - [7393] = {.lex_state = 47, .external_lex_state = 2}, + [7393] = {.lex_state = 349, .external_lex_state = 2}, [7394] = {.lex_state = 349, .external_lex_state = 2}, [7395] = {.lex_state = 349, .external_lex_state = 2}, [7396] = {.lex_state = 349, .external_lex_state = 2}, - [7397] = {.lex_state = 349, .external_lex_state = 2}, + [7397] = {.lex_state = 47, .external_lex_state = 2}, [7398] = {.lex_state = 349, .external_lex_state = 2}, [7399] = {.lex_state = 349, .external_lex_state = 2}, [7400] = {.lex_state = 349, .external_lex_state = 2}, - [7401] = {.lex_state = 47, .external_lex_state = 2}, + [7401] = {.lex_state = 349, .external_lex_state = 2}, [7402] = {.lex_state = 349, .external_lex_state = 2}, - [7403] = {.lex_state = 47, .external_lex_state = 2}, - [7404] = {.lex_state = 349, .external_lex_state = 2}, - [7405] = {.lex_state = 349, .external_lex_state = 2}, - [7406] = {.lex_state = 47, .external_lex_state = 2}, - [7407] = {.lex_state = 46, .external_lex_state = 2}, - [7408] = {.lex_state = 2, .external_lex_state = 10}, + [7403] = {.lex_state = 349, .external_lex_state = 2}, + [7404] = {.lex_state = 47, .external_lex_state = 2}, + [7405] = {.lex_state = 47, .external_lex_state = 2}, + [7406] = {.lex_state = 349, .external_lex_state = 2}, + [7407] = {.lex_state = 349, .external_lex_state = 2}, + [7408] = {.lex_state = 349, .external_lex_state = 2}, [7409] = {.lex_state = 349, .external_lex_state = 2}, - [7410] = {.lex_state = 46, .external_lex_state = 2}, - [7411] = {.lex_state = 349, .external_lex_state = 2}, - [7412] = {.lex_state = 47, .external_lex_state = 2}, - [7413] = {.lex_state = 47, .external_lex_state = 2}, - [7414] = {.lex_state = 47, .external_lex_state = 2}, - [7415] = {.lex_state = 349, .external_lex_state = 2}, - [7416] = {.lex_state = 349, .external_lex_state = 2}, - [7417] = {.lex_state = 349, .external_lex_state = 2}, + [7410] = {.lex_state = 47, .external_lex_state = 2}, + [7411] = {.lex_state = 46, .external_lex_state = 2}, + [7412] = {.lex_state = 2, .external_lex_state = 10}, + [7413] = {.lex_state = 349, .external_lex_state = 2}, + [7414] = {.lex_state = 349, .external_lex_state = 2}, + [7415] = {.lex_state = 47, .external_lex_state = 2}, + [7416] = {.lex_state = 47, .external_lex_state = 2}, + [7417] = {.lex_state = 46, .external_lex_state = 2}, [7418] = {.lex_state = 47, .external_lex_state = 2}, - [7419] = {.lex_state = 47, .external_lex_state = 2}, + [7419] = {.lex_state = 349, .external_lex_state = 2}, [7420] = {.lex_state = 349, .external_lex_state = 2}, - [7421] = {.lex_state = 47, .external_lex_state = 2}, + [7421] = {.lex_state = 349, .external_lex_state = 2}, [7422] = {.lex_state = 47, .external_lex_state = 2}, [7423] = {.lex_state = 47, .external_lex_state = 2}, - [7424] = {.lex_state = 47, .external_lex_state = 2}, - [7425] = {.lex_state = 349, .external_lex_state = 2}, - [7426] = {.lex_state = 349, .external_lex_state = 2}, + [7424] = {.lex_state = 349, .external_lex_state = 2}, + [7425] = {.lex_state = 47, .external_lex_state = 2}, + [7426] = {.lex_state = 47, .external_lex_state = 2}, [7427] = {.lex_state = 47, .external_lex_state = 2}, [7428] = {.lex_state = 47, .external_lex_state = 2}, - [7429] = {.lex_state = 47, .external_lex_state = 2}, + [7429] = {.lex_state = 349, .external_lex_state = 2}, [7430] = {.lex_state = 349, .external_lex_state = 2}, [7431] = {.lex_state = 47, .external_lex_state = 2}, - [7432] = {(TSStateId)(-1)}, + [7432] = {.lex_state = 47, .external_lex_state = 2}, + [7433] = {.lex_state = 47, .external_lex_state = 2}, + [7434] = {.lex_state = 349, .external_lex_state = 2}, + [7435] = {.lex_state = 47, .external_lex_state = 2}, + [7436] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -27838,11 +27906,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1), [anon_sym_object] = ACTIONS(1), [anon_sym_abstract] = ACTIONS(1), + [anon_sym_global] = ACTIONS(1), [anon_sym_satisfies] = ACTIONS(1), [anon_sym_require] = ACTIONS(1), [anon_sym_extends] = ACTIONS(1), [anon_sym_implements] = ACTIONS(1), - [anon_sym_global] = ACTIONS(1), [anon_sym_interface] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_DASH_QMARK_COLON] = ACTIONS(1), @@ -27864,88 +27932,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(7400), - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_program] = STATE(7403), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(1), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(40), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(70), + [aux_sym_export_statement_repeat1] = STATE(4810), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -28021,493 +28090,499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(2), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5014), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5000), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(157), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(185), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(189), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(191), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(195), - [anon_sym_number] = ACTIONS(195), - [anon_sym_boolean] = ACTIONS(195), - [anon_sym_string] = ACTIONS(195), - [anon_sym_symbol] = ACTIONS(195), - [anon_sym_object] = ACTIONS(195), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(193), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(3), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5014), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5000), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(157), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(185), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(189), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(191), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(195), - [anon_sym_number] = ACTIONS(195), - [anon_sym_boolean] = ACTIONS(195), - [anon_sym_string] = ACTIONS(195), - [anon_sym_symbol] = ACTIONS(195), - [anon_sym_object] = ACTIONS(195), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(193), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), [sym__destructuring_pattern] = STATE(7358), - [sym_spread_element] = STATE(5633), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3052), + [sym_spread_element] = STATE(5632), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3045), [sym_comment] = STATE(4), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5633), - [sym_pair] = STATE(5633), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(4454), - [sym_computed_property_name] = STATE(4459), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_accessibility_modifier] = STATE(3599), - [sym_override_modifier] = STATE(3625), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(4815), - [aux_sym_object_repeat1] = STATE(5650), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5632), + [sym_pair] = STATE(5632), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(4487), + [sym_computed_property_name] = STATE(4552), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_accessibility_modifier] = STATE(3581), + [sym_override_modifier] = STATE(3636), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(61), + [aux_sym_export_statement_repeat1] = STATE(4810), + [aux_sym_object_repeat1] = STATE(5652), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(223), + [anon_sym_export] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_type] = ACTIONS(229), + [anon_sym_namespace] = ACTIONS(231), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(235), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(237), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -28525,16 +28600,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(241), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(243), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -28546,8 +28621,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(243), - [sym_private_property_identifier] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [sym_private_property_identifier] = ACTIONS(249), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -28555,134 +28630,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(251), + [anon_sym_readonly] = ACTIONS(253), + [anon_sym_get] = ACTIONS(255), + [anon_sym_set] = ACTIONS(255), + [anon_sym_declare] = ACTIONS(257), + [anon_sym_public] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_override] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_any] = ACTIONS(265), + [anon_sym_number] = ACTIONS(265), + [anon_sym_boolean] = ACTIONS(265), + [anon_sym_string] = ACTIONS(265), + [anon_sym_symbol] = ACTIONS(265), + [anon_sym_object] = ACTIONS(265), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), [sym__destructuring_pattern] = STATE(7358), - [sym_spread_element] = STATE(5706), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3052), + [sym_spread_element] = STATE(5707), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3045), [sym_comment] = STATE(5), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(4454), - [sym_computed_property_name] = STATE(4459), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_accessibility_modifier] = STATE(3599), - [sym_override_modifier] = STATE(3625), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_export_statement_repeat1] = STATE(4815), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(263), - [anon_sym_export] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(267), - [anon_sym_namespace] = ACTIONS(269), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(4487), + [sym_computed_property_name] = STATE(4552), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_accessibility_modifier] = STATE(3581), + [sym_override_modifier] = STATE(3636), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_export_statement_repeat1] = STATE(4810), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(267), + [anon_sym_export] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_type] = ACTIONS(271), + [anon_sym_namespace] = ACTIONS(273), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(275), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(273), + [anon_sym_let] = ACTIONS(277), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -28700,16 +28777,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(275), + [anon_sym_async] = ACTIONS(279), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(277), + [anon_sym_new] = ACTIONS(281), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -28721,8 +28798,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(243), - [sym_private_property_identifier] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [sym_private_property_identifier] = ACTIONS(249), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -28730,134 +28807,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(279), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_get] = ACTIONS(283), - [anon_sym_set] = ACTIONS(283), - [anon_sym_declare] = ACTIONS(285), - [anon_sym_public] = ACTIONS(287), - [anon_sym_private] = ACTIONS(287), - [anon_sym_protected] = ACTIONS(287), - [anon_sym_override] = ACTIONS(289), - [anon_sym_module] = ACTIONS(291), - [anon_sym_any] = ACTIONS(293), - [anon_sym_number] = ACTIONS(293), - [anon_sym_boolean] = ACTIONS(293), - [anon_sym_string] = ACTIONS(293), - [anon_sym_symbol] = ACTIONS(293), - [anon_sym_object] = ACTIONS(293), + [anon_sym_static] = ACTIONS(283), + [anon_sym_readonly] = ACTIONS(285), + [anon_sym_get] = ACTIONS(287), + [anon_sym_set] = ACTIONS(287), + [anon_sym_declare] = ACTIONS(289), + [anon_sym_public] = ACTIONS(291), + [anon_sym_private] = ACTIONS(291), + [anon_sym_protected] = ACTIONS(291), + [anon_sym_override] = ACTIONS(293), + [anon_sym_module] = ACTIONS(295), + [anon_sym_any] = ACTIONS(297), + [anon_sym_number] = ACTIONS(297), + [anon_sym_boolean] = ACTIONS(297), + [anon_sym_string] = ACTIONS(297), + [anon_sym_symbol] = ACTIONS(297), + [anon_sym_object] = ACTIONS(297), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), [sym__destructuring_pattern] = STATE(7358), - [sym_spread_element] = STATE(5633), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3052), + [sym_spread_element] = STATE(5632), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3045), [sym_comment] = STATE(6), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5633), - [sym_pair] = STATE(5633), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(4454), - [sym_computed_property_name] = STATE(4459), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_accessibility_modifier] = STATE(3599), - [sym_override_modifier] = STATE(3625), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(49), - [aux_sym_export_statement_repeat1] = STATE(4815), - [aux_sym_object_repeat1] = STATE(5650), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5632), + [sym_pair] = STATE(5632), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(4487), + [sym_computed_property_name] = STATE(4552), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_accessibility_modifier] = STATE(3581), + [sym_override_modifier] = STATE(3636), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(4810), + [aux_sym_object_repeat1] = STATE(5652), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(223), + [anon_sym_export] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_type] = ACTIONS(229), + [anon_sym_namespace] = ACTIONS(231), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(237), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -28875,16 +28954,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(241), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(243), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -28896,8 +28975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(243), - [sym_private_property_identifier] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [sym_private_property_identifier] = ACTIONS(249), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -28905,134 +28984,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(251), + [anon_sym_readonly] = ACTIONS(253), + [anon_sym_get] = ACTIONS(255), + [anon_sym_set] = ACTIONS(255), + [anon_sym_declare] = ACTIONS(257), + [anon_sym_public] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_override] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_any] = ACTIONS(265), + [anon_sym_number] = ACTIONS(265), + [anon_sym_boolean] = ACTIONS(265), + [anon_sym_string] = ACTIONS(265), + [anon_sym_symbol] = ACTIONS(265), + [anon_sym_object] = ACTIONS(265), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), [sym__destructuring_pattern] = STATE(7358), - [sym_spread_element] = STATE(5633), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3052), + [sym_spread_element] = STATE(5632), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3045), [sym_comment] = STATE(7), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5633), - [sym_pair] = STATE(5633), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(4454), - [sym_computed_property_name] = STATE(4459), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_accessibility_modifier] = STATE(3599), - [sym_override_modifier] = STATE(3625), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(67), - [aux_sym_export_statement_repeat1] = STATE(4815), - [aux_sym_object_repeat1] = STATE(5650), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5632), + [sym_pair] = STATE(5632), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(4487), + [sym_computed_property_name] = STATE(4552), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_accessibility_modifier] = STATE(3581), + [sym_override_modifier] = STATE(3636), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_export_statement_repeat1] = STATE(4810), + [aux_sym_object_repeat1] = STATE(5652), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(223), + [anon_sym_export] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_type] = ACTIONS(229), + [anon_sym_namespace] = ACTIONS(231), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(237), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29050,16 +29131,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(241), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(243), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -29071,8 +29152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(243), - [sym_private_property_identifier] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [sym_private_property_identifier] = ACTIONS(249), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -29080,134 +29161,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(251), + [anon_sym_readonly] = ACTIONS(253), + [anon_sym_get] = ACTIONS(255), + [anon_sym_set] = ACTIONS(255), + [anon_sym_declare] = ACTIONS(257), + [anon_sym_public] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_override] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_any] = ACTIONS(265), + [anon_sym_number] = ACTIONS(265), + [anon_sym_boolean] = ACTIONS(265), + [anon_sym_string] = ACTIONS(265), + [anon_sym_symbol] = ACTIONS(265), + [anon_sym_object] = ACTIONS(265), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), [sym__destructuring_pattern] = STATE(7358), - [sym_spread_element] = STATE(5706), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3052), + [sym_spread_element] = STATE(5632), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3045), [sym_comment] = STATE(8), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(4454), - [sym_computed_property_name] = STATE(4459), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_accessibility_modifier] = STATE(3599), - [sym_override_modifier] = STATE(3625), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_export_statement_repeat1] = STATE(4815), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(303), - [anon_sym_namespace] = ACTIONS(305), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5632), + [sym_pair] = STATE(5632), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(4487), + [sym_computed_property_name] = STATE(4552), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_accessibility_modifier] = STATE(3581), + [sym_override_modifier] = STATE(3636), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(4810), + [aux_sym_object_repeat1] = STATE(5652), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(223), + [anon_sym_export] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_type] = ACTIONS(229), + [anon_sym_namespace] = ACTIONS(231), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(307), + [anon_sym_let] = ACTIONS(237), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29225,16 +29308,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(309), + [anon_sym_async] = ACTIONS(241), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(311), + [anon_sym_new] = ACTIONS(243), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -29246,8 +29329,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(243), - [sym_private_property_identifier] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [sym_private_property_identifier] = ACTIONS(249), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -29255,134 +29338,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(313), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_get] = ACTIONS(317), - [anon_sym_set] = ACTIONS(317), - [anon_sym_declare] = ACTIONS(319), - [anon_sym_public] = ACTIONS(321), - [anon_sym_private] = ACTIONS(321), - [anon_sym_protected] = ACTIONS(321), - [anon_sym_override] = ACTIONS(323), - [anon_sym_module] = ACTIONS(325), - [anon_sym_any] = ACTIONS(327), - [anon_sym_number] = ACTIONS(327), - [anon_sym_boolean] = ACTIONS(327), - [anon_sym_string] = ACTIONS(327), - [anon_sym_symbol] = ACTIONS(327), - [anon_sym_object] = ACTIONS(327), + [anon_sym_static] = ACTIONS(251), + [anon_sym_readonly] = ACTIONS(253), + [anon_sym_get] = ACTIONS(255), + [anon_sym_set] = ACTIONS(255), + [anon_sym_declare] = ACTIONS(257), + [anon_sym_public] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_override] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_any] = ACTIONS(265), + [anon_sym_number] = ACTIONS(265), + [anon_sym_boolean] = ACTIONS(265), + [anon_sym_string] = ACTIONS(265), + [anon_sym_symbol] = ACTIONS(265), + [anon_sym_object] = ACTIONS(265), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), [sym__destructuring_pattern] = STATE(7358), - [sym_spread_element] = STATE(5633), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3052), + [sym_spread_element] = STATE(5707), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3045), [sym_comment] = STATE(9), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5633), - [sym_pair] = STATE(5633), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(4454), - [sym_computed_property_name] = STATE(4459), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_accessibility_modifier] = STATE(3599), - [sym_override_modifier] = STATE(3625), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(4815), - [aux_sym_object_repeat1] = STATE(5650), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(4487), + [sym_computed_property_name] = STATE(4552), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_accessibility_modifier] = STATE(3581), + [sym_override_modifier] = STATE(3636), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_export_statement_repeat1] = STATE(4810), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(305), + [anon_sym_export] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_type] = ACTIONS(309), + [anon_sym_namespace] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(275), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(313), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29400,16 +29485,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(315), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(317), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -29421,8 +29506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(243), - [sym_private_property_identifier] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [sym_private_property_identifier] = ACTIONS(249), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -29430,134 +29515,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(319), + [anon_sym_readonly] = ACTIONS(321), + [anon_sym_get] = ACTIONS(323), + [anon_sym_set] = ACTIONS(323), + [anon_sym_declare] = ACTIONS(325), + [anon_sym_public] = ACTIONS(327), + [anon_sym_private] = ACTIONS(327), + [anon_sym_protected] = ACTIONS(327), + [anon_sym_override] = ACTIONS(329), + [anon_sym_module] = ACTIONS(331), + [anon_sym_any] = ACTIONS(333), + [anon_sym_number] = ACTIONS(333), + [anon_sym_boolean] = ACTIONS(333), + [anon_sym_string] = ACTIONS(333), + [anon_sym_symbol] = ACTIONS(333), + [anon_sym_object] = ACTIONS(333), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), [sym__destructuring_pattern] = STATE(7358), - [sym_spread_element] = STATE(5633), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3052), + [sym_spread_element] = STATE(5632), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3045), [sym_comment] = STATE(10), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5633), - [sym_pair] = STATE(5633), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(4454), - [sym_computed_property_name] = STATE(4459), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_accessibility_modifier] = STATE(3599), - [sym_override_modifier] = STATE(3625), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5632), + [sym_pair] = STATE(5632), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(4487), + [sym_computed_property_name] = STATE(4552), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_accessibility_modifier] = STATE(3581), + [sym_override_modifier] = STATE(3636), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(4815), - [aux_sym_object_repeat1] = STATE(5650), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [aux_sym_export_statement_repeat1] = STATE(4810), + [aux_sym_object_repeat1] = STATE(5652), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(223), + [anon_sym_export] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_type] = ACTIONS(229), + [anon_sym_namespace] = ACTIONS(231), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(237), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29575,16 +29662,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(241), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(243), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -29596,8 +29683,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(243), - [sym_private_property_identifier] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [sym_private_property_identifier] = ACTIONS(249), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -29605,134 +29692,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(251), + [anon_sym_readonly] = ACTIONS(253), + [anon_sym_get] = ACTIONS(255), + [anon_sym_set] = ACTIONS(255), + [anon_sym_declare] = ACTIONS(257), + [anon_sym_public] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_override] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_any] = ACTIONS(265), + [anon_sym_number] = ACTIONS(265), + [anon_sym_boolean] = ACTIONS(265), + [anon_sym_string] = ACTIONS(265), + [anon_sym_symbol] = ACTIONS(265), + [anon_sym_object] = ACTIONS(265), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), [sym__destructuring_pattern] = STATE(7358), - [sym_spread_element] = STATE(5633), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3052), + [sym_spread_element] = STATE(5632), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3045), [sym_comment] = STATE(11), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5633), - [sym_pair] = STATE(5633), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(4454), - [sym_computed_property_name] = STATE(4459), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_accessibility_modifier] = STATE(3599), - [sym_override_modifier] = STATE(3625), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_export_statement_repeat1] = STATE(4815), - [aux_sym_object_repeat1] = STATE(5650), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5632), + [sym_pair] = STATE(5632), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(4487), + [sym_computed_property_name] = STATE(4552), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_accessibility_modifier] = STATE(3581), + [sym_override_modifier] = STATE(3636), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_export_statement_repeat1] = STATE(4810), + [aux_sym_object_repeat1] = STATE(5652), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(223), + [anon_sym_export] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_type] = ACTIONS(229), + [anon_sym_namespace] = ACTIONS(231), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(237), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29750,16 +29839,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(241), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(243), [anon_sym_using] = ACTIONS(79), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -29771,8 +29860,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(243), - [sym_private_property_identifier] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [sym_private_property_identifier] = ACTIONS(249), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -29780,309 +29869,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(251), + [anon_sym_readonly] = ACTIONS(253), + [anon_sym_get] = ACTIONS(255), + [anon_sym_set] = ACTIONS(255), + [anon_sym_declare] = ACTIONS(257), + [anon_sym_public] = ACTIONS(259), + [anon_sym_private] = ACTIONS(259), + [anon_sym_protected] = ACTIONS(259), + [anon_sym_override] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_any] = ACTIONS(265), + [anon_sym_number] = ACTIONS(265), + [anon_sym_boolean] = ACTIONS(265), + [anon_sym_string] = ACTIONS(265), + [anon_sym_symbol] = ACTIONS(265), + [anon_sym_object] = ACTIONS(265), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1334), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1484), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), [sym_comment] = STATE(12), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(338), - [anon_sym_default] = ACTIONS(341), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(346), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_default] = ACTIONS(343), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_typeof] = ACTIONS(352), - [anon_sym_import] = ACTIONS(355), - [anon_sym_with] = ACTIONS(358), - [anon_sym_var] = ACTIONS(361), - [anon_sym_let] = ACTIONS(364), - [anon_sym_const] = ACTIONS(367), - [anon_sym_BANG] = ACTIONS(352), - [anon_sym_if] = ACTIONS(370), - [anon_sym_switch] = ACTIONS(373), - [anon_sym_for] = ACTIONS(376), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_await] = ACTIONS(382), - [anon_sym_while] = ACTIONS(385), - [anon_sym_do] = ACTIONS(388), - [anon_sym_try] = ACTIONS(391), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_debugger] = ACTIONS(400), - [anon_sym_return] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(406), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_case] = ACTIONS(341), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_LTtemplate_GT] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(424), - [anon_sym_class] = ACTIONS(427), - [anon_sym_async] = ACTIONS(430), - [anon_sym_function] = ACTIONS(433), - [anon_sym_new] = ACTIONS(436), - [anon_sym_using] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_TILDE] = ACTIONS(352), - [anon_sym_void] = ACTIONS(352), - [anon_sym_delete] = ACTIONS(352), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(451), - [sym_number] = ACTIONS(454), - [sym_private_property_identifier] = ACTIONS(457), - [sym_this] = ACTIONS(454), - [sym_super] = ACTIONS(454), - [sym_true] = ACTIONS(454), - [sym_false] = ACTIONS(454), - [sym_null] = ACTIONS(454), - [sym_undefined] = ACTIONS(460), - [anon_sym_AT] = ACTIONS(463), - [anon_sym_static] = ACTIONS(466), - [anon_sym_readonly] = ACTIONS(466), - [anon_sym_get] = ACTIONS(466), - [anon_sym_set] = ACTIONS(466), - [anon_sym_declare] = ACTIONS(469), - [anon_sym_public] = ACTIONS(466), - [anon_sym_private] = ACTIONS(466), - [anon_sym_protected] = ACTIONS(466), - [anon_sym_override] = ACTIONS(466), - [anon_sym_module] = ACTIONS(472), - [anon_sym_any] = ACTIONS(466), - [anon_sym_number] = ACTIONS(466), - [anon_sym_boolean] = ACTIONS(466), - [anon_sym_string] = ACTIONS(466), - [anon_sym_symbol] = ACTIONS(466), - [anon_sym_object] = ACTIONS(466), - [anon_sym_abstract] = ACTIONS(475), - [anon_sym_interface] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(481), - [sym_html_comment] = ACTIONS(5), - }, - [13] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1334), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), - [sym_comment] = STATE(13), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_default] = ACTIONS(488), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(343), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_case] = ACTIONS(488), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_case] = ACTIONS(343), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30104,147 +30033,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, - [14] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1334), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), - [sym_comment] = STATE(14), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_default] = ACTIONS(550), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(550), + [13] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1484), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(13), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_default] = ACTIONS(405), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_case] = ACTIONS(550), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_case] = ACTIONS(405), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30266,147 +30197,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), + [sym_html_comment] = ACTIONS(5), + }, + [14] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1484), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(14), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(407), + [anon_sym_export] = ACTIONS(410), + [anon_sym_default] = ACTIONS(413), + [anon_sym_type] = ACTIONS(415), + [anon_sym_namespace] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_typeof] = ACTIONS(424), + [anon_sym_import] = ACTIONS(427), + [anon_sym_with] = ACTIONS(430), + [anon_sym_var] = ACTIONS(433), + [anon_sym_let] = ACTIONS(436), + [anon_sym_const] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(445), + [anon_sym_for] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_await] = ACTIONS(454), + [anon_sym_while] = ACTIONS(457), + [anon_sym_do] = ACTIONS(460), + [anon_sym_try] = ACTIONS(463), + [anon_sym_break] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_debugger] = ACTIONS(472), + [anon_sym_return] = ACTIONS(475), + [anon_sym_throw] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_case] = ACTIONS(413), + [anon_sym_yield] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_LTtemplate_GT] = ACTIONS(490), + [anon_sym_DQUOTE] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_class] = ACTIONS(499), + [anon_sym_async] = ACTIONS(502), + [anon_sym_function] = ACTIONS(505), + [anon_sym_new] = ACTIONS(508), + [anon_sym_using] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_void] = ACTIONS(424), + [anon_sym_delete] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(520), + [anon_sym_DASH_DASH] = ACTIONS(520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(523), + [sym_number] = ACTIONS(526), + [sym_private_property_identifier] = ACTIONS(529), + [sym_this] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_true] = ACTIONS(526), + [sym_false] = ACTIONS(526), + [sym_null] = ACTIONS(526), + [sym_undefined] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(535), [anon_sym_static] = ACTIONS(538), [anon_sym_readonly] = ACTIONS(538), [anon_sym_get] = ACTIONS(538), [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(541), [anon_sym_public] = ACTIONS(538), [anon_sym_private] = ACTIONS(538), [anon_sym_protected] = ACTIONS(538), [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), + [anon_sym_module] = ACTIONS(544), [anon_sym_any] = ACTIONS(538), [anon_sym_number] = ACTIONS(538), [anon_sym_boolean] = ACTIONS(538), [anon_sym_string] = ACTIONS(538), [anon_sym_symbol] = ACTIONS(538), [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_abstract] = ACTIONS(547), + [anon_sym_global] = ACTIONS(550), + [anon_sym_interface] = ACTIONS(553), + [anon_sym_enum] = ACTIONS(556), [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1334), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1484), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), [sym_comment] = STATE(15), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_default] = ACTIONS(552), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(552), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_default] = ACTIONS(559), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(559), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_case] = ACTIONS(552), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_case] = ACTIONS(559), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30428,147 +30525,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1334), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1484), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), [sym_comment] = STATE(16), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_default] = ACTIONS(554), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(554), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_default] = ACTIONS(561), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(561), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_case] = ACTIONS(554), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_case] = ACTIONS(561), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30590,276 +30689,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(17), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), - [ts_builtin_sym_end] = ACTIONS(556), - [sym_identifier] = ACTIONS(558), - [anon_sym_export] = ACTIONS(561), - [anon_sym_type] = ACTIONS(564), - [anon_sym_namespace] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_typeof] = ACTIONS(352), - [anon_sym_import] = ACTIONS(573), - [anon_sym_with] = ACTIONS(576), - [anon_sym_var] = ACTIONS(579), - [anon_sym_let] = ACTIONS(582), - [anon_sym_const] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(352), - [anon_sym_if] = ACTIONS(588), - [anon_sym_switch] = ACTIONS(591), - [anon_sym_for] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_await] = ACTIONS(382), - [anon_sym_while] = ACTIONS(597), - [anon_sym_do] = ACTIONS(600), - [anon_sym_try] = ACTIONS(603), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(609), - [anon_sym_debugger] = ACTIONS(612), - [anon_sym_return] = ACTIONS(615), - [anon_sym_throw] = ACTIONS(618), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_LTtemplate_GT] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(424), - [anon_sym_class] = ACTIONS(624), - [anon_sym_async] = ACTIONS(627), - [anon_sym_function] = ACTIONS(630), - [anon_sym_new] = ACTIONS(633), - [anon_sym_using] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_TILDE] = ACTIONS(352), - [anon_sym_void] = ACTIONS(352), - [anon_sym_delete] = ACTIONS(352), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(451), - [sym_number] = ACTIONS(454), - [sym_private_property_identifier] = ACTIONS(457), - [sym_this] = ACTIONS(454), - [sym_super] = ACTIONS(454), - [sym_true] = ACTIONS(454), - [sym_false] = ACTIONS(454), - [sym_null] = ACTIONS(454), - [sym_undefined] = ACTIONS(460), - [anon_sym_AT] = ACTIONS(463), - [anon_sym_static] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(639), - [anon_sym_public] = ACTIONS(636), - [anon_sym_private] = ACTIONS(636), - [anon_sym_protected] = ACTIONS(636), - [anon_sym_override] = ACTIONS(636), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(636), - [anon_sym_number] = ACTIONS(636), - [anon_sym_boolean] = ACTIONS(636), - [anon_sym_string] = ACTIONS(636), - [anon_sym_symbol] = ACTIONS(636), - [anon_sym_object] = ACTIONS(636), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_interface] = ACTIONS(648), - [anon_sym_enum] = ACTIONS(651), + [aux_sym_export_statement_repeat1] = STATE(4810), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(565), + [anon_sym_export] = ACTIONS(568), + [anon_sym_type] = ACTIONS(571), + [anon_sym_namespace] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(577), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_typeof] = ACTIONS(424), + [anon_sym_import] = ACTIONS(580), + [anon_sym_with] = ACTIONS(583), + [anon_sym_var] = ACTIONS(586), + [anon_sym_let] = ACTIONS(589), + [anon_sym_const] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_for] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_await] = ACTIONS(454), + [anon_sym_while] = ACTIONS(604), + [anon_sym_do] = ACTIONS(607), + [anon_sym_try] = ACTIONS(610), + [anon_sym_break] = ACTIONS(613), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_debugger] = ACTIONS(619), + [anon_sym_return] = ACTIONS(622), + [anon_sym_throw] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_LTtemplate_GT] = ACTIONS(490), + [anon_sym_DQUOTE] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_class] = ACTIONS(631), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(637), + [anon_sym_new] = ACTIONS(640), + [anon_sym_using] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_void] = ACTIONS(424), + [anon_sym_delete] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(520), + [anon_sym_DASH_DASH] = ACTIONS(520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(523), + [sym_number] = ACTIONS(526), + [sym_private_property_identifier] = ACTIONS(529), + [sym_this] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_true] = ACTIONS(526), + [sym_false] = ACTIONS(526), + [sym_null] = ACTIONS(526), + [sym_undefined] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(535), + [anon_sym_static] = ACTIONS(643), + [anon_sym_readonly] = ACTIONS(643), + [anon_sym_get] = ACTIONS(643), + [anon_sym_set] = ACTIONS(643), + [anon_sym_declare] = ACTIONS(646), + [anon_sym_public] = ACTIONS(643), + [anon_sym_private] = ACTIONS(643), + [anon_sym_protected] = ACTIONS(643), + [anon_sym_override] = ACTIONS(643), + [anon_sym_module] = ACTIONS(649), + [anon_sym_any] = ACTIONS(643), + [anon_sym_number] = ACTIONS(643), + [anon_sym_boolean] = ACTIONS(643), + [anon_sym_string] = ACTIONS(643), + [anon_sym_symbol] = ACTIONS(643), + [anon_sym_object] = ACTIONS(643), + [anon_sym_abstract] = ACTIONS(652), + [anon_sym_global] = ACTIONS(550), + [anon_sym_interface] = ACTIONS(655), + [anon_sym_enum] = ACTIONS(658), [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(18), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(661), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -30928,98 +31031,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(19), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(663), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31088,98 +31193,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(20), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_RBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31248,98 +31355,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(21), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31408,98 +31517,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(22), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(669), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31568,98 +31679,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(23), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(49), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(671), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31728,98 +31841,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(24), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(673), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31888,98 +32003,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(25), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(675), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -32048,98 +32165,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(26), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(677), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -32208,98 +32327,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(27), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(679), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -32368,98 +32489,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(28), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(681), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -32528,98 +32651,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(29), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(683), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -32688,98 +32813,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(30), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(685), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -32848,98 +32975,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(31), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(687), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33008,98 +33137,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(32), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(689), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33168,98 +33299,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(33), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(691), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33328,98 +33461,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(34), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(693), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33488,98 +33623,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(35), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(37), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33648,98 +33785,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(36), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(35), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(67), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33808,98 +33947,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(37), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(70), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33968,98 +34109,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(38), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(701), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34128,98 +34271,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(39), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(42), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(703), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34288,98 +34433,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(40), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), - [ts_builtin_sym_end] = ACTIONS(698), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(705), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34448,98 +34595,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(41), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(707), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34608,98 +34757,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(42), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(709), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34768,98 +34919,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(43), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(57), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(711), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34928,98 +35081,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(44), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(58), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(48), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(713), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35088,98 +35243,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(45), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(715), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35248,98 +35405,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(46), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(47), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(717), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35408,98 +35567,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(47), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(38), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(719), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35568,98 +35729,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(48), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(52), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(721), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35728,98 +35891,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(49), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_RBRACE] = ACTIONS(723), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35888,98 +36053,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(50), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(42), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36048,98 +36215,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(51), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(57), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36208,98 +36377,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(52), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(46), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(729), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36368,418 +36539,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), [sym_comment] = STATE(53), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(67), - [aux_sym_export_statement_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [54] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(54), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [55] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(55), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(731), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36848,98 +36701,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(56), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [54] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(54), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(72), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(733), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37008,98 +36863,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(57), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [55] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(55), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_RBRACE] = ACTIONS(735), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37168,98 +37025,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(58), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [56] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(56), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(737), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37328,98 +37187,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(59), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(72), - [aux_sym_export_statement_repeat1] = STATE(4815), + [57] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(57), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37488,98 +37349,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(60), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_export_statement_repeat1] = STATE(4815), + [58] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(58), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37648,98 +37511,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [61] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(61), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(65), - [aux_sym_export_statement_repeat1] = STATE(4815), + [59] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(59), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(743), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37808,98 +37673,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [62] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(62), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_export_statement_repeat1] = STATE(4815), + [60] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(60), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(745), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37968,98 +37835,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [63] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(63), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [61] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(61), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38128,98 +37997,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(64), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(50), - [aux_sym_export_statement_repeat1] = STATE(4815), + [62] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(62), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(53), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(749), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38288,98 +38159,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [65] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(65), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [63] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(63), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(751), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38448,98 +38321,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(66), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [64] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(64), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(63), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(753), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38608,98 +38483,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(67), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [65] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(65), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(61), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(755), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38768,93 +38645,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(68), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [66] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(66), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(71), - [aux_sym_export_statement_repeat1] = STATE(4815), - [ts_builtin_sym_end] = ACTIONS(698), + [aux_sym_export_statement_repeat1] = STATE(4810), + [ts_builtin_sym_end] = ACTIONS(757), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38928,98 +38807,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [69] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(69), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(55), - [aux_sym_export_statement_repeat1] = STATE(4815), + [67] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(67), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(759), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39088,98 +38969,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [70] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(70), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [68] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(68), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(761), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39248,98 +39131,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [71] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(71), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), - [ts_builtin_sym_end] = ACTIONS(758), + [69] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(69), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(763), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39408,98 +39293,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [72] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(72), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), + [70] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(70), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_export_statement_repeat1] = STATE(4810), + [ts_builtin_sym_end] = ACTIONS(757), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(760), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39568,126 +39455,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [73] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1258), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), - [sym_comment] = STATE(73), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), + [71] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(71), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), + [ts_builtin_sym_end] = ACTIONS(765), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -39709,143 +39600,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(1067), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(74), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [72] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(72), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4810), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(767), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -39867,108 +39762,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1571), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(75), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4815), + [73] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(73), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -40042,126 +39939,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6912), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(76), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [74] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6182), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(74), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40183,143 +40082,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(1070), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(77), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [75] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1017), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(75), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40341,143 +40242,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6825), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(78), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [76] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1319), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(76), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40499,143 +40402,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(7049), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(79), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [77] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1468), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(77), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40657,143 +40562,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6609), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(80), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [78] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1608), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(78), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4810), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40815,143 +40722,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(1072), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(81), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [79] = { + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1093), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), + [sym_comment] = STATE(79), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40973,143 +40882,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(1111), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(82), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [80] = { + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1404), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), + [sym_comment] = STATE(80), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -41131,143 +41042,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(1148), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(83), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [81] = { + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1066), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), + [sym_comment] = STATE(81), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -41289,143 +41202,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(1190), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(84), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [82] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6980), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(82), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -41447,108 +41362,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1564), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(85), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4815), + [83] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1058), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), + [sym_html_comment] = ACTIONS(5), + }, + [84] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1555), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -41622,442 +41699,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [86] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(7204), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(86), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), - [sym_html_comment] = ACTIONS(5), - }, - [87] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1121), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), - [sym_comment] = STATE(87), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6383), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(88), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [85] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1116), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(85), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42079,108 +41842,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1619), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(89), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4815), + [86] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1626), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(86), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -42254,126 +42019,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1445), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), - [sym_comment] = STATE(90), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [87] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(7215), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(87), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42395,143 +42162,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [91] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1563), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(91), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [88] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1333), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(88), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42553,266 +42322,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, - [92] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6955), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(92), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), - [sym_html_comment] = ACTIONS(5), - }, - [93] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1545), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(93), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4815), + [89] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1588), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(89), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -42886,126 +42499,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [94] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(7308), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(94), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [90] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1188), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(90), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43027,143 +42642,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1438), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), - [sym_comment] = STATE(95), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [91] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1080), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(91), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43185,143 +42802,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6381), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(96), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [92] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(968), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(92), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43343,143 +42962,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(995), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(97), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [93] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1025), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(93), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43501,143 +43122,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1430), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), - [sym_comment] = STATE(98), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [94] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1031), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(94), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43659,143 +43282,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(1196), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(99), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [95] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1568), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(95), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4810), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43817,143 +43442,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6375), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(100), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [96] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1050), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(96), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43975,143 +43602,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1429), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), - [sym_comment] = STATE(101), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [97] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1122), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1122), + [sym_statement] = STATE(1070), + [sym_expression_statement] = STATE(1122), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_statement_block] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_for_in_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_with_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_debugger_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_empty_statement] = STATE(1122), + [sym_labeled_statement] = STATE(1122), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(3003), + [sym_comment] = STATE(97), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4679), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_type] = ACTIONS(837), + [anon_sym_namespace] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(843), + [anon_sym_with] = ACTIONS(845), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(853), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_for] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_debugger] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(875), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44133,143 +43762,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(885), + [anon_sym_readonly] = ACTIONS(885), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [anon_sym_declare] = ACTIONS(887), + [anon_sym_public] = ACTIONS(885), + [anon_sym_private] = ACTIONS(885), + [anon_sym_protected] = ACTIONS(885), + [anon_sym_override] = ACTIONS(885), + [anon_sym_module] = ACTIONS(889), + [anon_sym_any] = ACTIONS(885), + [anon_sym_number] = ACTIONS(885), + [anon_sym_boolean] = ACTIONS(885), + [anon_sym_string] = ACTIONS(885), + [anon_sym_symbol] = ACTIONS(885), + [anon_sym_object] = ACTIONS(885), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6359), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(102), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [98] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6361), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(98), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44291,143 +43922,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(975), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(103), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [99] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6378), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(99), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44449,143 +44082,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1372), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), - [sym_comment] = STATE(104), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [100] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6384), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(100), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44607,143 +44242,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1333), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), - [sym_comment] = STATE(105), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), + [101] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6385), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(101), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44765,143 +44402,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1319), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), - [sym_comment] = STATE(106), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [102] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(7064), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(102), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44923,143 +44562,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1115), - [sym_statement] = STATE(1061), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6351), - [sym_string] = STATE(3008), - [sym_comment] = STATE(107), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4799), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [103] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1616), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4810), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45081,143 +44722,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1560), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(108), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [104] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1395), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(104), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45239,143 +44882,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1266), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), - [sym_comment] = STATE(109), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [105] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1400), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(105), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45397,143 +45042,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6643), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(110), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [106] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1408), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(106), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45555,143 +45202,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1517), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(111), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [107] = { + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1416), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), + [sym_comment] = STATE(107), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45713,143 +45362,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1332), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), - [sym_comment] = STATE(112), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), + [108] = { + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1278), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), + [sym_comment] = STATE(108), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45871,143 +45522,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1310), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), - [sym_comment] = STATE(113), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), + [109] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6959), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46029,143 +45682,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6979), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(114), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [110] = { + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1284), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46187,143 +45842,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_export_statement] = STATE(6329), - [sym_declaration] = STATE(6329), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(6329), - [sym_statement] = STATE(6182), - [sym_expression_statement] = STATE(6329), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_statement_block] = STATE(6329), - [sym_if_statement] = STATE(6329), - [sym_switch_statement] = STATE(6329), - [sym_for_statement] = STATE(6329), - [sym_for_in_statement] = STATE(6329), - [sym_while_statement] = STATE(6329), - [sym_do_statement] = STATE(6329), - [sym_try_statement] = STATE(6329), - [sym_with_statement] = STATE(6329), - [sym_break_statement] = STATE(6329), - [sym_continue_statement] = STATE(6329), - [sym_debugger_statement] = STATE(6329), - [sym_return_statement] = STATE(6329), - [sym_throw_statement] = STATE(6329), - [sym_empty_statement] = STATE(6329), - [sym_labeled_statement] = STATE(6329), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6458), - [sym_string] = STATE(3008), - [sym_comment] = STATE(115), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4670), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [111] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6611), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46345,108 +46002,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_export_statement] = STATE(1616), - [sym_declaration] = STATE(1616), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1616), - [sym_statement] = STATE(1554), - [sym_expression_statement] = STATE(1616), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_statement_block] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_for_in_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_do_statement] = STATE(1616), - [sym_try_statement] = STATE(1616), - [sym_with_statement] = STATE(1616), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_debugger_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_throw_statement] = STATE(1616), - [sym_empty_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6361), - [sym_string] = STATE(3008), - [sym_comment] = STATE(116), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4815), + [112] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6753), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [sym_html_comment] = ACTIONS(5), + }, + [113] = { + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1264), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), + [sym_html_comment] = ACTIONS(5), + }, + [114] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6916), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [sym_html_comment] = ACTIONS(5), + }, + [115] = { + [sym_export_statement] = STATE(1560), + [sym_declaration] = STATE(1560), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1560), + [sym_statement] = STATE(1551), + [sym_expression_statement] = STATE(1560), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_statement_block] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_switch_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym_for_in_statement] = STATE(1560), + [sym_while_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_try_statement] = STATE(1560), + [sym_with_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_debugger_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_throw_statement] = STATE(1560), + [sym_empty_statement] = STATE(1560), + [sym_labeled_statement] = STATE(1560), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6365), + [sym_string] = STATE(3003), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4810), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -46520,126 +46659,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(97), [anon_sym_object] = ACTIONS(97), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [116] = { + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(7311), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), + [sym_comment] = STATE(116), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1084), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1326), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), [sym_comment] = STATE(117), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46661,143 +46962,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_export_statement] = STATE(1328), - [sym_declaration] = STATE(1328), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1328), - [sym_statement] = STATE(1228), - [sym_expression_statement] = STATE(1328), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_statement_block] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_with_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_debugger_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_empty_statement] = STATE(1328), - [sym_labeled_statement] = STATE(1328), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6362), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1442), + [sym_declaration] = STATE(1442), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1442), + [sym_statement] = STATE(1380), + [sym_expression_statement] = STATE(1442), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_statement_block] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_for_in_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_try_statement] = STATE(1442), + [sym_with_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_debugger_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_throw_statement] = STATE(1442), + [sym_empty_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6727), + [sym_string] = STATE(3003), [sym_comment] = STATE(118), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(341), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(351), + [anon_sym_with] = ACTIONS(353), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_const] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_try] = ACTIONS(371), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_debugger] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(391), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46819,143 +47122,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(393), + [anon_sym_readonly] = ACTIONS(393), + [anon_sym_get] = ACTIONS(393), + [anon_sym_set] = ACTIONS(393), + [anon_sym_declare] = ACTIONS(395), + [anon_sym_public] = ACTIONS(393), + [anon_sym_private] = ACTIONS(393), + [anon_sym_protected] = ACTIONS(393), + [anon_sym_override] = ACTIONS(393), + [anon_sym_module] = ACTIONS(397), + [anon_sym_any] = ACTIONS(393), + [anon_sym_number] = ACTIONS(393), + [anon_sym_boolean] = ACTIONS(393), + [anon_sym_string] = ACTIONS(393), + [anon_sym_symbol] = ACTIONS(393), + [anon_sym_object] = ACTIONS(393), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1245), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(6332), + [sym_declaration] = STATE(6332), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(6332), + [sym_statement] = STATE(6831), + [sym_expression_statement] = STATE(6332), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_statement_block] = STATE(6332), + [sym_if_statement] = STATE(6332), + [sym_switch_statement] = STATE(6332), + [sym_for_statement] = STATE(6332), + [sym_for_in_statement] = STATE(6332), + [sym_while_statement] = STATE(6332), + [sym_do_statement] = STATE(6332), + [sym_try_statement] = STATE(6332), + [sym_with_statement] = STATE(6332), + [sym_break_statement] = STATE(6332), + [sym_continue_statement] = STATE(6332), + [sym_debugger_statement] = STATE(6332), + [sym_return_statement] = STATE(6332), + [sym_throw_statement] = STATE(6332), + [sym_empty_statement] = STATE(6332), + [sym_labeled_statement] = STATE(6332), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6481), + [sym_string] = STATE(3003), [sym_comment] = STATE(119), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_namespace] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(779), + [anon_sym_with] = ACTIONS(781), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(785), + [anon_sym_const] = ACTIONS(787), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(797), + [anon_sym_try] = ACTIONS(799), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_debugger] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46977,143 +47282,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(821), + [anon_sym_readonly] = ACTIONS(821), + [anon_sym_get] = ACTIONS(821), + [anon_sym_set] = ACTIONS(821), + [anon_sym_declare] = ACTIONS(823), + [anon_sym_public] = ACTIONS(821), + [anon_sym_private] = ACTIONS(821), + [anon_sym_protected] = ACTIONS(821), + [anon_sym_override] = ACTIONS(821), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_object] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1244), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1388), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), [sym_comment] = STATE(120), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47135,143 +47442,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1256), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1389), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), [sym_comment] = STATE(121), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47293,143 +47602,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4289), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1279), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6724), - [sym_string] = STATE(3008), + [sym_export_statement] = STATE(1472), + [sym_declaration] = STATE(1472), + [sym_import] = STATE(4165), + [sym_import_statement] = STATE(1472), + [sym_statement] = STATE(1396), + [sym_expression_statement] = STATE(1472), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [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(2100), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6457), + [sym_string] = STATE(3003), [sym_comment] = STATE(122), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4842), - [sym_identifier] = ACTIONS(484), - [anon_sym_export] = ACTIONS(486), - [anon_sym_type] = ACTIONS(490), - [anon_sym_namespace] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(494), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(899), + [anon_sym_type] = ACTIONS(901), + [anon_sym_namespace] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(496), - [anon_sym_with] = ACTIONS(498), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(502), - [anon_sym_const] = ACTIONS(504), + [anon_sym_import] = ACTIONS(907), + [anon_sym_with] = ACTIONS(909), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_for] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(512), - [anon_sym_do] = ACTIONS(514), - [anon_sym_try] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(532), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47451,15928 +47762,16003 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(949), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(949), + [anon_sym_private] = ACTIONS(949), + [anon_sym_protected] = ACTIONS(949), + [anon_sym_override] = ACTIONS(949), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(949), + [anon_sym_number] = ACTIONS(949), + [anon_sym_boolean] = ACTIONS(949), + [anon_sym_string] = ACTIONS(949), + [anon_sym_symbol] = ACTIONS(949), + [anon_sym_object] = ACTIONS(949), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5654), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(123), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5655), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(974), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(124), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1002), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5853), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1014), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(125), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5658), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1044), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(126), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1037), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1046), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(127), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1048), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5654), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(128), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5655), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1041), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1050), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(129), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1043), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1052), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(130), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1045), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1054), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(131), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5851), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1049), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(132), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1051), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(133), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1053), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1060), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(134), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(5096), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1055), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1062), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(135), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(5098), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5658), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(994), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1064), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1036), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1040), + [anon_sym_number] = ACTIONS(1040), + [anon_sym_boolean] = ACTIONS(1040), + [anon_sym_string] = ACTIONS(1040), + [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_object] = ACTIONS(1040), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(136), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5138), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1066), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5140), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1073), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1084), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(137), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1066), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5167), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1073), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1081), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1088), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(138), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5014), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1066), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5069), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1073), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1090), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(139), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5165), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1066), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5138), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1073), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1085), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1092), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(140), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5137), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1066), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5000), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1073), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1094), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(141), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5069), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1066), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5000), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1073), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1089), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1094), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(142), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5014), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1066), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5071), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1073), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1096), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(143), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5067), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1066), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5142), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1073), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(176), - [anon_sym_DASH_DASH] = ACTIONS(176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1091), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(178), + [anon_sym_DASH_DASH] = ACTIONS(178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1098), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(144), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(124), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1110), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(1110), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(145), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(1117), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(1117), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), [sym_expression] = STATE(2401), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4890), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7311), - [sym_string] = STATE(3051), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2098), + [sym_subscript_expression] = STATE(2098), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4892), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7204), + [sym_string] = STATE(3022), [sym_comment] = STATE(146), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2125), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym__type] = STATE(5525), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(638), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1137), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2098), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym__type] = STATE(5527), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(705), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1126), + [anon_sym_export] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_namespace] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_typeof] = ACTIONS(1134), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1144), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1151), - [sym_number] = ACTIONS(1153), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(1157), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [sym_null] = ACTIONS(1153), - [sym_undefined] = ACTIONS(1159), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_readonly] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_override] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1169), - [anon_sym_number] = ACTIONS(1169), - [anon_sym_boolean] = ACTIONS(1169), - [anon_sym_string] = ACTIONS(1169), - [anon_sym_symbol] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1154), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1158), + [sym_number] = ACTIONS(1160), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(1164), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1160), + [sym_false] = ACTIONS(1160), + [sym_null] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_readonly] = ACTIONS(1170), + [anon_sym_get] = ACTIONS(1128), + [anon_sym_set] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1128), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_override] = ACTIONS(1174), + [anon_sym_module] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1176), + [anon_sym_number] = ACTIONS(1176), + [anon_sym_boolean] = ACTIONS(1176), + [anon_sym_string] = ACTIONS(1176), + [anon_sym_symbol] = ACTIONS(1176), + [anon_sym_object] = ACTIONS(1176), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4890), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7207), - [sym_string] = STATE(3051), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2098), + [sym_subscript_expression] = STATE(2098), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4892), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7204), + [sym_string] = STATE(3022), [sym_comment] = STATE(147), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2125), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym__type] = STATE(5525), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(638), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1137), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2098), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym__type] = STATE(5519), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(705), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1126), + [anon_sym_export] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_namespace] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_typeof] = ACTIONS(1134), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1144), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1151), - [sym_number] = ACTIONS(1153), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(1157), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [sym_null] = ACTIONS(1153), - [sym_undefined] = ACTIONS(1159), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_readonly] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_override] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1169), - [anon_sym_number] = ACTIONS(1169), - [anon_sym_boolean] = ACTIONS(1169), - [anon_sym_string] = ACTIONS(1169), - [anon_sym_symbol] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1154), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1158), + [sym_number] = ACTIONS(1160), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(1164), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1160), + [sym_false] = ACTIONS(1160), + [sym_null] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_readonly] = ACTIONS(1170), + [anon_sym_get] = ACTIONS(1128), + [anon_sym_set] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1128), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_override] = ACTIONS(1174), + [anon_sym_module] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1176), + [anon_sym_number] = ACTIONS(1176), + [anon_sym_boolean] = ACTIONS(1176), + [anon_sym_string] = ACTIONS(1176), + [anon_sym_symbol] = ACTIONS(1176), + [anon_sym_object] = ACTIONS(1176), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4890), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7207), - [sym_string] = STATE(3051), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2098), + [sym_subscript_expression] = STATE(2098), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4892), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7314), + [sym_string] = STATE(3022), [sym_comment] = STATE(148), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2125), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym__type] = STATE(5515), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(638), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1137), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2098), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym__type] = STATE(5527), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(705), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1126), + [anon_sym_export] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_namespace] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_typeof] = ACTIONS(1134), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1144), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1151), - [sym_number] = ACTIONS(1153), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(1157), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [sym_null] = ACTIONS(1153), - [sym_undefined] = ACTIONS(1159), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_readonly] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_override] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1169), - [anon_sym_number] = ACTIONS(1169), - [anon_sym_boolean] = ACTIONS(1169), - [anon_sym_string] = ACTIONS(1169), - [anon_sym_symbol] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1154), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1158), + [sym_number] = ACTIONS(1160), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(1164), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1160), + [sym_false] = ACTIONS(1160), + [sym_null] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_readonly] = ACTIONS(1170), + [anon_sym_get] = ACTIONS(1128), + [anon_sym_set] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1128), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_override] = ACTIONS(1174), + [anon_sym_module] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1176), + [anon_sym_number] = ACTIONS(1176), + [anon_sym_boolean] = ACTIONS(1176), + [anon_sym_string] = ACTIONS(1176), + [anon_sym_symbol] = ACTIONS(1176), + [anon_sym_object] = ACTIONS(1176), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(149), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym__type] = STATE(5526), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(189), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(195), - [anon_sym_number] = ACTIONS(195), - [anon_sym_boolean] = ACTIONS(195), - [anon_sym_string] = ACTIONS(195), - [anon_sym_symbol] = ACTIONS(195), - [anon_sym_object] = ACTIONS(195), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(990), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(150), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1189), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1191), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_get] = ACTIONS(1184), + [anon_sym_set] = ACTIONS(1184), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_protected] = ACTIONS(1184), + [anon_sym_override] = ACTIONS(1184), + [anon_sym_module] = ACTIONS(1184), + [anon_sym_any] = ACTIONS(1184), + [anon_sym_number] = ACTIONS(1184), + [anon_sym_boolean] = ACTIONS(1184), + [anon_sym_string] = ACTIONS(1184), + [anon_sym_symbol] = ACTIONS(1184), + [anon_sym_object] = ACTIONS(1184), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(151), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [152] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(152), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_get] = ACTIONS(1184), + [anon_sym_set] = ACTIONS(1184), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_protected] = ACTIONS(1184), + [anon_sym_override] = ACTIONS(1184), + [anon_sym_module] = ACTIONS(1184), + [anon_sym_any] = ACTIONS(1184), + [anon_sym_number] = ACTIONS(1184), + [anon_sym_boolean] = ACTIONS(1184), + [anon_sym_string] = ACTIONS(1184), + [anon_sym_symbol] = ACTIONS(1184), + [anon_sym_object] = ACTIONS(1184), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [153] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(153), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(154), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym__type] = STATE(5499), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(157), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(155), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym__type] = STATE(5527), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(157), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [156] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), + [sym_comment] = STATE(156), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(156), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(118), + [157] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(157), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), - [sym_comment] = STATE(157), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), + [158] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), + [sym_comment] = STATE(158), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1205), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), - [sym_comment] = STATE(158), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym__type] = STATE(5431), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [159] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), + [sym_comment] = STATE(159), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym__type] = STATE(5529), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(157), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(189), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(195), - [anon_sym_number] = ACTIONS(195), - [anon_sym_boolean] = ACTIONS(195), - [anon_sym_string] = ACTIONS(195), - [anon_sym_symbol] = ACTIONS(195), - [anon_sym_object] = ACTIONS(195), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), - [sym_comment] = STATE(159), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym__type] = STATE(5525), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [160] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), + [sym_comment] = STATE(160), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym__type] = STATE(5433), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(157), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [161] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(161), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(189), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(195), - [anon_sym_number] = ACTIONS(195), - [anon_sym_boolean] = ACTIONS(195), - [anon_sym_string] = ACTIONS(195), - [anon_sym_symbol] = ACTIONS(195), - [anon_sym_object] = ACTIONS(195), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_readonly] = ACTIONS(1215), + [anon_sym_get] = ACTIONS(1215), + [anon_sym_set] = ACTIONS(1215), + [anon_sym_declare] = ACTIONS(1215), + [anon_sym_public] = ACTIONS(1215), + [anon_sym_private] = ACTIONS(1215), + [anon_sym_protected] = ACTIONS(1215), + [anon_sym_override] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_any] = ACTIONS(1215), + [anon_sym_number] = ACTIONS(1215), + [anon_sym_boolean] = ACTIONS(1215), + [anon_sym_string] = ACTIONS(1215), + [anon_sym_symbol] = ACTIONS(1215), + [anon_sym_object] = ACTIONS(1215), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), - [sym_comment] = STATE(160), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1207), - [anon_sym_export] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_EQ] = ACTIONS(1211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(172), + [162] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), + [sym_comment] = STATE(162), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1227), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_readonly] = ACTIONS(1209), - [anon_sym_get] = ACTIONS(1209), - [anon_sym_set] = ACTIONS(1209), - [anon_sym_declare] = ACTIONS(1209), - [anon_sym_public] = ACTIONS(1209), - [anon_sym_private] = ACTIONS(1209), - [anon_sym_protected] = ACTIONS(1209), - [anon_sym_override] = ACTIONS(1209), - [anon_sym_module] = ACTIONS(1209), - [anon_sym_any] = ACTIONS(1209), - [anon_sym_number] = ACTIONS(1209), - [anon_sym_boolean] = ACTIONS(1209), - [anon_sym_string] = ACTIONS(1209), - [anon_sym_symbol] = ACTIONS(1209), - [anon_sym_object] = ACTIONS(1209), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), - [sym_comment] = STATE(161), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), + [163] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), + [sym_comment] = STATE(163), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [162] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(162), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1231), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [163] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(163), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1231), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(164), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1233), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(1233), - [anon_sym_of] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1241), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_readonly] = ACTIONS(1233), + [anon_sym_get] = ACTIONS(1233), + [anon_sym_set] = ACTIONS(1233), + [anon_sym_declare] = ACTIONS(1233), + [anon_sym_public] = ACTIONS(1233), + [anon_sym_private] = ACTIONS(1233), + [anon_sym_protected] = ACTIONS(1233), + [anon_sym_override] = ACTIONS(1233), + [anon_sym_module] = ACTIONS(1233), + [anon_sym_any] = ACTIONS(1233), + [anon_sym_number] = ACTIONS(1233), + [anon_sym_boolean] = ACTIONS(1233), + [anon_sym_string] = ACTIONS(1233), + [anon_sym_symbol] = ACTIONS(1233), + [anon_sym_object] = ACTIONS(1233), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(165), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1189), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1191), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [166] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), - [sym_comment] = STATE(166), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(172), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1245), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [sym_undefined] = ACTIONS(990), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), + [sym_html_comment] = ACTIONS(5), + }, + [166] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(166), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_readonly] = ACTIONS(1006), - [anon_sym_get] = ACTIONS(1006), - [anon_sym_set] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [anon_sym_public] = ACTIONS(1006), - [anon_sym_private] = ACTIONS(1006), - [anon_sym_protected] = ACTIONS(1006), - [anon_sym_override] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_any] = ACTIONS(1006), - [anon_sym_number] = ACTIONS(1006), - [anon_sym_boolean] = ACTIONS(1006), - [anon_sym_string] = ACTIONS(1006), - [anon_sym_symbol] = ACTIONS(1006), - [anon_sym_object] = ACTIONS(1006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_readonly] = ACTIONS(1215), + [anon_sym_get] = ACTIONS(1215), + [anon_sym_set] = ACTIONS(1215), + [anon_sym_declare] = ACTIONS(1215), + [anon_sym_public] = ACTIONS(1215), + [anon_sym_private] = ACTIONS(1215), + [anon_sym_protected] = ACTIONS(1215), + [anon_sym_override] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_any] = ACTIONS(1215), + [anon_sym_number] = ACTIONS(1215), + [anon_sym_boolean] = ACTIONS(1215), + [anon_sym_string] = ACTIONS(1215), + [anon_sym_symbol] = ACTIONS(1215), + [anon_sym_object] = ACTIONS(1215), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(167), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym__type] = STATE(5497), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(189), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(195), - [anon_sym_number] = ACTIONS(195), - [anon_sym_boolean] = ACTIONS(195), - [anon_sym_string] = ACTIONS(195), - [anon_sym_symbol] = ACTIONS(195), - [anon_sym_object] = ACTIONS(195), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(168), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1207), - [anon_sym_export] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_EQ] = ACTIONS(1211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(5029), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym__type] = STATE(5519), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(157), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_readonly] = ACTIONS(1209), - [anon_sym_get] = ACTIONS(1209), - [anon_sym_set] = ACTIONS(1209), - [anon_sym_declare] = ACTIONS(1209), - [anon_sym_public] = ACTIONS(1209), - [anon_sym_private] = ACTIONS(1209), - [anon_sym_protected] = ACTIONS(1209), - [anon_sym_override] = ACTIONS(1209), - [anon_sym_module] = ACTIONS(1209), - [anon_sym_any] = ACTIONS(1209), - [anon_sym_number] = ACTIONS(1209), - [anon_sym_boolean] = ACTIONS(1209), - [anon_sym_string] = ACTIONS(1209), - [anon_sym_symbol] = ACTIONS(1209), - [anon_sym_object] = ACTIONS(1209), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1200), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(169), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(170), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(5027), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym__type] = STATE(5515), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1233), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1241), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(189), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(195), - [anon_sym_number] = ACTIONS(195), - [anon_sym_boolean] = ACTIONS(195), - [anon_sym_string] = ACTIONS(195), - [anon_sym_symbol] = ACTIONS(195), - [anon_sym_object] = ACTIONS(195), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(990), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_readonly] = ACTIONS(1233), + [anon_sym_get] = ACTIONS(1233), + [anon_sym_set] = ACTIONS(1233), + [anon_sym_declare] = ACTIONS(1233), + [anon_sym_public] = ACTIONS(1233), + [anon_sym_private] = ACTIONS(1233), + [anon_sym_protected] = ACTIONS(1233), + [anon_sym_override] = ACTIONS(1233), + [anon_sym_module] = ACTIONS(1233), + [anon_sym_any] = ACTIONS(1233), + [anon_sym_number] = ACTIONS(1233), + [anon_sym_boolean] = ACTIONS(1233), + [anon_sym_string] = ACTIONS(1233), + [anon_sym_symbol] = ACTIONS(1233), + [anon_sym_object] = ACTIONS(1233), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(171), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(980), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(986), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(963), + [anon_sym_readonly] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_override] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_object] = ACTIONS(963), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(172), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(214), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1247), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(1247), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1231), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_readonly] = ACTIONS(1215), + [anon_sym_get] = ACTIONS(1215), + [anon_sym_set] = ACTIONS(1215), + [anon_sym_declare] = ACTIONS(1215), + [anon_sym_public] = ACTIONS(1215), + [anon_sym_private] = ACTIONS(1215), + [anon_sym_protected] = ACTIONS(1215), + [anon_sym_override] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_any] = ACTIONS(1215), + [anon_sym_number] = ACTIONS(1215), + [anon_sym_boolean] = ACTIONS(1215), + [anon_sym_string] = ACTIONS(1215), + [anon_sym_symbol] = ACTIONS(1215), + [anon_sym_object] = ACTIONS(1215), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(173), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_get] = ACTIONS(1184), + [anon_sym_set] = ACTIONS(1184), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_protected] = ACTIONS(1184), + [anon_sym_override] = ACTIONS(1184), + [anon_sym_module] = ACTIONS(1184), + [anon_sym_any] = ACTIONS(1184), + [anon_sym_number] = ACTIONS(1184), + [anon_sym_boolean] = ACTIONS(1184), + [anon_sym_string] = ACTIONS(1184), + [anon_sym_symbol] = ACTIONS(1184), + [anon_sym_object] = ACTIONS(1184), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(174), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(218), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1189), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1191), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_readonly] = ACTIONS(1254), + [anon_sym_get] = ACTIONS(1254), + [anon_sym_set] = ACTIONS(1254), + [anon_sym_declare] = ACTIONS(1254), + [anon_sym_public] = ACTIONS(1254), + [anon_sym_private] = ACTIONS(1254), + [anon_sym_protected] = ACTIONS(1254), + [anon_sym_override] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_any] = ACTIONS(1254), + [anon_sym_number] = ACTIONS(1254), + [anon_sym_boolean] = ACTIONS(1254), + [anon_sym_string] = ACTIONS(1254), + [anon_sym_symbol] = ACTIONS(1254), + [anon_sym_object] = ACTIONS(1254), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(175), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1189), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1191), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_get] = ACTIONS(1184), + [anon_sym_set] = ACTIONS(1184), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_protected] = ACTIONS(1184), + [anon_sym_override] = ACTIONS(1184), + [anon_sym_module] = ACTIONS(1184), + [anon_sym_any] = ACTIONS(1184), + [anon_sym_number] = ACTIONS(1184), + [anon_sym_boolean] = ACTIONS(1184), + [anon_sym_string] = ACTIONS(1184), + [anon_sym_symbol] = ACTIONS(1184), + [anon_sym_object] = ACTIONS(1184), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(176), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1245), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(218), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1231), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_readonly] = ACTIONS(1215), + [anon_sym_get] = ACTIONS(1215), + [anon_sym_set] = ACTIONS(1215), + [anon_sym_declare] = ACTIONS(1215), + [anon_sym_public] = ACTIONS(1215), + [anon_sym_private] = ACTIONS(1215), + [anon_sym_protected] = ACTIONS(1215), + [anon_sym_override] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_any] = ACTIONS(1215), + [anon_sym_number] = ACTIONS(1215), + [anon_sym_boolean] = ACTIONS(1215), + [anon_sym_string] = ACTIONS(1215), + [anon_sym_symbol] = ACTIONS(1215), + [anon_sym_object] = ACTIONS(1215), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(177), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(214), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(1247), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_readonly] = ACTIONS(1215), + [anon_sym_get] = ACTIONS(1215), + [anon_sym_set] = ACTIONS(1215), + [anon_sym_declare] = ACTIONS(1215), + [anon_sym_public] = ACTIONS(1215), + [anon_sym_private] = ACTIONS(1215), + [anon_sym_protected] = ACTIONS(1215), + [anon_sym_override] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_any] = ACTIONS(1215), + [anon_sym_number] = ACTIONS(1215), + [anon_sym_boolean] = ACTIONS(1215), + [anon_sym_string] = ACTIONS(1215), + [anon_sym_symbol] = ACTIONS(1215), + [anon_sym_object] = ACTIONS(1215), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(178), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1245), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1231), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(179), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1267), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5191), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6618), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1215), [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1277), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_readonly] = ACTIONS(1267), - [anon_sym_get] = ACTIONS(1267), - [anon_sym_set] = ACTIONS(1267), - [anon_sym_declare] = ACTIONS(1267), - [anon_sym_public] = ACTIONS(1267), - [anon_sym_private] = ACTIONS(1267), - [anon_sym_protected] = ACTIONS(1267), - [anon_sym_override] = ACTIONS(1267), - [anon_sym_module] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_number] = ACTIONS(1267), - [anon_sym_boolean] = ACTIONS(1267), - [anon_sym_string] = ACTIONS(1267), - [anon_sym_symbol] = ACTIONS(1267), - [anon_sym_object] = ACTIONS(1267), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_readonly] = ACTIONS(1215), + [anon_sym_get] = ACTIONS(1215), + [anon_sym_set] = ACTIONS(1215), + [anon_sym_declare] = ACTIONS(1215), + [anon_sym_public] = ACTIONS(1215), + [anon_sym_private] = ACTIONS(1215), + [anon_sym_protected] = ACTIONS(1215), + [anon_sym_override] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_any] = ACTIONS(1215), + [anon_sym_number] = ACTIONS(1215), + [anon_sym_boolean] = ACTIONS(1215), + [anon_sym_string] = ACTIONS(1215), + [anon_sym_symbol] = ACTIONS(1215), + [anon_sym_object] = ACTIONS(1215), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(180), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1283), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1284), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(181), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(218), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_readonly] = ACTIONS(1215), + [anon_sym_get] = ACTIONS(1215), + [anon_sym_set] = ACTIONS(1215), + [anon_sym_declare] = ACTIONS(1215), + [anon_sym_public] = ACTIONS(1215), + [anon_sym_private] = ACTIONS(1215), + [anon_sym_protected] = ACTIONS(1215), + [anon_sym_override] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_any] = ACTIONS(1215), + [anon_sym_number] = ACTIONS(1215), + [anon_sym_boolean] = ACTIONS(1215), + [anon_sym_string] = ACTIONS(1215), + [anon_sym_symbol] = ACTIONS(1215), + [anon_sym_object] = ACTIONS(1215), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(182), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(214), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1286), + [anon_sym_export] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_readonly] = ACTIONS(1288), + [anon_sym_get] = ACTIONS(1288), + [anon_sym_set] = ACTIONS(1288), + [anon_sym_declare] = ACTIONS(1288), + [anon_sym_public] = ACTIONS(1288), + [anon_sym_private] = ACTIONS(1288), + [anon_sym_protected] = ACTIONS(1288), + [anon_sym_override] = ACTIONS(1288), + [anon_sym_module] = ACTIONS(1288), + [anon_sym_any] = ACTIONS(1288), + [anon_sym_number] = ACTIONS(1288), + [anon_sym_boolean] = ACTIONS(1288), + [anon_sym_string] = ACTIONS(1288), + [anon_sym_symbol] = ACTIONS(1288), + [anon_sym_object] = ACTIONS(1288), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2039), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2588), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2039), + [sym_subscript_expression] = STATE(2039), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3003), [sym_comment] = STATE(183), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1285), - [anon_sym_export] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1287), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(172), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2039), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1284), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [sym_undefined] = ACTIONS(990), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_readonly] = ACTIONS(1287), - [anon_sym_get] = ACTIONS(1287), - [anon_sym_set] = ACTIONS(1287), - [anon_sym_declare] = ACTIONS(1287), - [anon_sym_public] = ACTIONS(1287), - [anon_sym_private] = ACTIONS(1287), - [anon_sym_protected] = ACTIONS(1287), - [anon_sym_override] = ACTIONS(1287), - [anon_sym_module] = ACTIONS(1287), - [anon_sym_any] = ACTIONS(1287), - [anon_sym_number] = ACTIONS(1287), - [anon_sym_boolean] = ACTIONS(1287), - [anon_sym_string] = ACTIONS(1287), - [anon_sym_symbol] = ACTIONS(1287), - [anon_sym_object] = ACTIONS(1287), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(184), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1286), + [anon_sym_export] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_readonly] = ACTIONS(1288), + [anon_sym_get] = ACTIONS(1288), + [anon_sym_set] = ACTIONS(1288), + [anon_sym_declare] = ACTIONS(1288), + [anon_sym_public] = ACTIONS(1288), + [anon_sym_private] = ACTIONS(1288), + [anon_sym_protected] = ACTIONS(1288), + [anon_sym_override] = ACTIONS(1288), + [anon_sym_module] = ACTIONS(1288), + [anon_sym_any] = ACTIONS(1288), + [anon_sym_number] = ACTIONS(1288), + [anon_sym_boolean] = ACTIONS(1288), + [anon_sym_string] = ACTIONS(1288), + [anon_sym_symbol] = ACTIONS(1288), + [anon_sym_object] = ACTIONS(1288), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(185), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(186), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5188), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6614), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1304), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1231), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_readonly] = ACTIONS(1254), + [anon_sym_get] = ACTIONS(1254), + [anon_sym_set] = ACTIONS(1254), + [anon_sym_declare] = ACTIONS(1254), + [anon_sym_public] = ACTIONS(1254), + [anon_sym_private] = ACTIONS(1254), + [anon_sym_protected] = ACTIONS(1254), + [anon_sym_override] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_any] = ACTIONS(1254), + [anon_sym_number] = ACTIONS(1254), + [anon_sym_boolean] = ACTIONS(1254), + [anon_sym_string] = ACTIONS(1254), + [anon_sym_symbol] = ACTIONS(1254), + [anon_sym_object] = ACTIONS(1254), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(187), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1267), - [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1277), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_readonly] = ACTIONS(1267), - [anon_sym_get] = ACTIONS(1267), - [anon_sym_set] = ACTIONS(1267), - [anon_sym_declare] = ACTIONS(1267), - [anon_sym_public] = ACTIONS(1267), - [anon_sym_private] = ACTIONS(1267), - [anon_sym_protected] = ACTIONS(1267), - [anon_sym_override] = ACTIONS(1267), - [anon_sym_module] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_number] = ACTIONS(1267), - [anon_sym_boolean] = ACTIONS(1267), - [anon_sym_string] = ACTIONS(1267), - [anon_sym_symbol] = ACTIONS(1267), - [anon_sym_object] = ACTIONS(1267), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_readonly] = ACTIONS(1254), + [anon_sym_get] = ACTIONS(1254), + [anon_sym_set] = ACTIONS(1254), + [anon_sym_declare] = ACTIONS(1254), + [anon_sym_public] = ACTIONS(1254), + [anon_sym_private] = ACTIONS(1254), + [anon_sym_protected] = ACTIONS(1254), + [anon_sym_override] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_any] = ACTIONS(1254), + [anon_sym_number] = ACTIONS(1254), + [anon_sym_boolean] = ACTIONS(1254), + [anon_sym_string] = ACTIONS(1254), + [anon_sym_symbol] = ACTIONS(1254), + [anon_sym_object] = ACTIONS(1254), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(188), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(214), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(218), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1231), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_readonly] = ACTIONS(1254), + [anon_sym_get] = ACTIONS(1254), + [anon_sym_set] = ACTIONS(1254), + [anon_sym_declare] = ACTIONS(1254), + [anon_sym_public] = ACTIONS(1254), + [anon_sym_private] = ACTIONS(1254), + [anon_sym_protected] = ACTIONS(1254), + [anon_sym_override] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_any] = ACTIONS(1254), + [anon_sym_number] = ACTIONS(1254), + [anon_sym_boolean] = ACTIONS(1254), + [anon_sym_string] = ACTIONS(1254), + [anon_sym_symbol] = ACTIONS(1254), + [anon_sym_object] = ACTIONS(1254), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2524), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(189), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1285), - [anon_sym_export] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1287), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_readonly] = ACTIONS(1287), - [anon_sym_get] = ACTIONS(1287), - [anon_sym_set] = ACTIONS(1287), - [anon_sym_declare] = ACTIONS(1287), - [anon_sym_public] = ACTIONS(1287), - [anon_sym_private] = ACTIONS(1287), - [anon_sym_protected] = ACTIONS(1287), - [anon_sym_override] = ACTIONS(1287), - [anon_sym_module] = ACTIONS(1287), - [anon_sym_any] = ACTIONS(1287), - [anon_sym_number] = ACTIONS(1287), - [anon_sym_boolean] = ACTIONS(1287), - [anon_sym_string] = ACTIONS(1287), - [anon_sym_symbol] = ACTIONS(1287), - [anon_sym_object] = ACTIONS(1287), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(190), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1299), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(191), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1306), + [anon_sym_export] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1301), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1318), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1308), + [anon_sym_get] = ACTIONS(1308), + [anon_sym_set] = ACTIONS(1308), + [anon_sym_declare] = ACTIONS(1308), + [anon_sym_public] = ACTIONS(1308), + [anon_sym_private] = ACTIONS(1308), + [anon_sym_protected] = ACTIONS(1308), + [anon_sym_override] = ACTIONS(1308), + [anon_sym_module] = ACTIONS(1308), + [anon_sym_any] = ACTIONS(1308), + [anon_sym_number] = ACTIONS(1308), + [anon_sym_boolean] = ACTIONS(1308), + [anon_sym_string] = ACTIONS(1308), + [anon_sym_symbol] = ACTIONS(1308), + [anon_sym_object] = ACTIONS(1308), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(192), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_readonly] = ACTIONS(1254), + [anon_sym_get] = ACTIONS(1254), + [anon_sym_set] = ACTIONS(1254), + [anon_sym_declare] = ACTIONS(1254), + [anon_sym_public] = ACTIONS(1254), + [anon_sym_private] = ACTIONS(1254), + [anon_sym_protected] = ACTIONS(1254), + [anon_sym_override] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_any] = ACTIONS(1254), + [anon_sym_number] = ACTIONS(1254), + [anon_sym_boolean] = ACTIONS(1254), + [anon_sym_string] = ACTIONS(1254), + [anon_sym_symbol] = ACTIONS(1254), + [anon_sym_object] = ACTIONS(1254), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(193), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1303), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1305), - [anon_sym_EQ] = ACTIONS(1307), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1322), + [anon_sym_export] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1324), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1301), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1332), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_get] = ACTIONS(1305), - [anon_sym_set] = ACTIONS(1305), - [anon_sym_declare] = ACTIONS(1305), - [anon_sym_public] = ACTIONS(1305), - [anon_sym_private] = ACTIONS(1305), - [anon_sym_protected] = ACTIONS(1305), - [anon_sym_override] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_any] = ACTIONS(1305), - [anon_sym_number] = ACTIONS(1305), - [anon_sym_boolean] = ACTIONS(1305), - [anon_sym_string] = ACTIONS(1305), - [anon_sym_symbol] = ACTIONS(1305), - [anon_sym_object] = ACTIONS(1305), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_readonly] = ACTIONS(1324), + [anon_sym_get] = ACTIONS(1324), + [anon_sym_set] = ACTIONS(1324), + [anon_sym_declare] = ACTIONS(1324), + [anon_sym_public] = ACTIONS(1324), + [anon_sym_private] = ACTIONS(1324), + [anon_sym_protected] = ACTIONS(1324), + [anon_sym_override] = ACTIONS(1324), + [anon_sym_module] = ACTIONS(1324), + [anon_sym_any] = ACTIONS(1324), + [anon_sym_number] = ACTIONS(1324), + [anon_sym_boolean] = ACTIONS(1324), + [anon_sym_string] = ACTIONS(1324), + [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_object] = ACTIONS(1324), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(194), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1325), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1299), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1327), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(195), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(1233), - [anon_sym_of] = ACTIONS(1236), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1332), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(196), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1306), + [anon_sym_export] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1318), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1308), + [anon_sym_get] = ACTIONS(1308), + [anon_sym_set] = ACTIONS(1308), + [anon_sym_declare] = ACTIONS(1308), + [anon_sym_public] = ACTIONS(1308), + [anon_sym_private] = ACTIONS(1308), + [anon_sym_protected] = ACTIONS(1308), + [anon_sym_override] = ACTIONS(1308), + [anon_sym_module] = ACTIONS(1308), + [anon_sym_any] = ACTIONS(1308), + [anon_sym_number] = ACTIONS(1308), + [anon_sym_boolean] = ACTIONS(1308), + [anon_sym_string] = ACTIONS(1308), + [anon_sym_symbol] = ACTIONS(1308), + [anon_sym_object] = ACTIONS(1308), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(197), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1303), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1305), - [anon_sym_EQ] = ACTIONS(1307), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1301), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_get] = ACTIONS(1305), - [anon_sym_set] = ACTIONS(1305), - [anon_sym_declare] = ACTIONS(1305), - [anon_sym_public] = ACTIONS(1305), - [anon_sym_private] = ACTIONS(1305), - [anon_sym_protected] = ACTIONS(1305), - [anon_sym_override] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_any] = ACTIONS(1305), - [anon_sym_number] = ACTIONS(1305), - [anon_sym_boolean] = ACTIONS(1305), - [anon_sym_string] = ACTIONS(1305), - [anon_sym_symbol] = ACTIONS(1305), - [anon_sym_object] = ACTIONS(1305), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(198), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(118), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(199), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1322), + [anon_sym_export] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1324), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1332), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_readonly] = ACTIONS(1324), + [anon_sym_get] = ACTIONS(1324), + [anon_sym_set] = ACTIONS(1324), + [anon_sym_declare] = ACTIONS(1324), + [anon_sym_public] = ACTIONS(1324), + [anon_sym_private] = ACTIONS(1324), + [anon_sym_protected] = ACTIONS(1324), + [anon_sym_override] = ACTIONS(1324), + [anon_sym_module] = ACTIONS(1324), + [anon_sym_any] = ACTIONS(1324), + [anon_sym_number] = ACTIONS(1324), + [anon_sym_boolean] = ACTIONS(1324), + [anon_sym_string] = ACTIONS(1324), + [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_object] = ACTIONS(1324), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(200), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1325), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1299), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1327), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_readonly] = ACTIONS(1254), + [anon_sym_get] = ACTIONS(1254), + [anon_sym_set] = ACTIONS(1254), + [anon_sym_declare] = ACTIONS(1254), + [anon_sym_public] = ACTIONS(1254), + [anon_sym_private] = ACTIONS(1254), + [anon_sym_protected] = ACTIONS(1254), + [anon_sym_override] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_any] = ACTIONS(1254), + [anon_sym_number] = ACTIONS(1254), + [anon_sym_boolean] = ACTIONS(1254), + [anon_sym_string] = ACTIONS(1254), + [anon_sym_symbol] = ACTIONS(1254), + [anon_sym_object] = ACTIONS(1254), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(201), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(4230), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2928), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(6830), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7047), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2800), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(202), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5083), - [sym_pattern] = STATE(5846), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3949), - [sym__type_query_member_expression_in_type_annotation] = STATE(4126), - [sym__type_query_call_expression_in_type_annotation] = STATE(4369), - [sym__type] = STATE(4125), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6594), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1331), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_typeof] = ACTIONS(1337), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1341), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1343), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1338), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1345), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(1353), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1355), - [sym_number] = ACTIONS(1357), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(1359), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [sym_null] = ACTIONS(1357), - [sym_undefined] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4279), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2953), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(6833), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7060), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2811), [sym_comment] = STATE(203), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1381), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5086), + [sym_pattern] = STATE(5849), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3972), + [sym__type_query_member_expression_in_type_annotation] = STATE(4151), + [sym__type_query_call_expression_in_type_annotation] = STATE(4380), + [sym__type] = STATE(4120), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6598), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1340), + [anon_sym_export] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1346), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1352), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1354), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1362), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1364), + [sym_number] = ACTIONS(1366), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1368), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [sym_null] = ACTIONS(1366), + [sym_undefined] = ACTIONS(1370), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), + [anon_sym_object] = ACTIONS(1376), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(204), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1383), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(205), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5099), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6870), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(206), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1387), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(207), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5097), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6867), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1394), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(208), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(209), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1398), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(210), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(211), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(212), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2296), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(213), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(4239), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3037), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3087), + [sym_import] = STATE(4232), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3366), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3141), [sym_comment] = STATE(214), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4836), - [sym__type_query_call_expression_in_type_annotation] = STATE(5546), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(623), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1399), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_typeof] = ACTIONS(1407), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1415), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5547), + [sym__type] = STATE(4745), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1410), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1412), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1419), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1414), + [anon_sym_using] = ACTIONS(159), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1437), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1418), + [sym_number] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1422), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [sym_null] = ACTIONS(1420), + [sym_undefined] = ACTIONS(1424), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1439), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [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_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1426), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1428), + [anon_sym_number] = ACTIONS(1428), + [anon_sym_boolean] = ACTIONS(1428), + [anon_sym_string] = ACTIONS(1428), + [anon_sym_symbol] = ACTIONS(1428), + [anon_sym_object] = ACTIONS(1428), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(4153), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(2853), + [sym_import] = STATE(4198), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2605), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(2856), [sym_comment] = STATE(215), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4702), - [sym__type_query_call_expression_in_type_annotation] = STATE(5466), - [sym__type] = STATE(4701), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(715), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1451), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(130), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4806), + [sym__type_query_call_expression_in_type_annotation] = STATE(5470), + [sym__type] = STATE(4809), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(655), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1430), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_typeof] = ACTIONS(1438), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1440), [anon_sym_await] = ACTIONS(41), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1442), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1459), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1446), [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1450), [anon_sym_delete] = ACTIONS(21), [anon_sym_PLUS_PLUS] = ACTIONS(85), [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_number] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1452), + [sym_number] = ACTIONS(1454), [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1469), + [sym_this] = ACTIONS(1456), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1467), - [sym_false] = ACTIONS(1467), - [sym_null] = ACTIONS(1467), - [sym_undefined] = ACTIONS(1471), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_null] = ACTIONS(1454), + [sym_undefined] = ACTIONS(1458), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1473), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [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_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1460), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1462), + [anon_sym_number] = ACTIONS(1462), + [anon_sym_boolean] = ACTIONS(1462), + [anon_sym_string] = ACTIONS(1462), + [anon_sym_symbol] = ACTIONS(1462), + [anon_sym_object] = ACTIONS(1462), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(105), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(4333), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2769), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2468), + [sym_import] = STATE(4232), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3029), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3141), [sym_comment] = STATE(216), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4836), - [sym__type_query_call_expression_in_type_annotation] = STATE(5546), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(732), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1477), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_typeof] = ACTIONS(1485), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1493), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5547), + [sym__type] = STATE(4745), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(860), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1464), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1412), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1480), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1507), - [sym_number] = ACTIONS(1509), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(1513), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1509), - [sym_false] = ACTIONS(1509), - [sym_null] = ACTIONS(1509), - [sym_undefined] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1486), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1418), + [sym_number] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(1422), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [sym_null] = ACTIONS(1420), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1517), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_number] = ACTIONS(1519), - [anon_sym_boolean] = ACTIONS(1519), - [anon_sym_string] = ACTIONS(1519), - [anon_sym_symbol] = ACTIONS(1519), - [anon_sym_object] = ACTIONS(1519), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1494), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1496), + [anon_sym_number] = ACTIONS(1496), + [anon_sym_boolean] = ACTIONS(1496), + [anon_sym_string] = ACTIONS(1496), + [anon_sym_symbol] = ACTIONS(1496), + [anon_sym_object] = ACTIONS(1496), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(4239), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3306), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3087), + [sym_import] = STATE(4295), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2813), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3325), [sym_comment] = STATE(217), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4836), - [sym__type_query_call_expression_in_type_annotation] = STATE(5546), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_typeof] = ACTIONS(1525), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1415), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4806), + [sym__type_query_call_expression_in_type_annotation] = STATE(5470), + [sym__type] = STATE(4809), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(666), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1514), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1527), - [anon_sym_using] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1528), + [sym_number] = ACTIONS(1530), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(1534), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [sym_null] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1536), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1533), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1538), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1540), + [anon_sym_number] = ACTIONS(1540), + [anon_sym_boolean] = ACTIONS(1540), + [anon_sym_string] = ACTIONS(1540), + [anon_sym_symbol] = ACTIONS(1540), + [anon_sym_object] = ACTIONS(1540), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(105), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(4333), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2601), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2468), + [sym_import] = STATE(4201), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2593), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2645), [sym_comment] = STATE(218), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4836), - [sym__type_query_call_expression_in_type_annotation] = STATE(5546), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1493), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5547), + [sym__type] = STATE(4745), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1542), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_typeof] = ACTIONS(1550), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1552), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1547), - [anon_sym_using] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1556), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1507), - [sym_number] = ACTIONS(1509), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(1513), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1509), - [sym_false] = ACTIONS(1509), - [sym_null] = ACTIONS(1509), - [sym_undefined] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1560), + [sym_number] = ACTIONS(1562), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1564), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [sym_null] = ACTIONS(1562), + [sym_undefined] = ACTIONS(1566), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1555), - [anon_sym_number] = ACTIONS(1555), - [anon_sym_boolean] = ACTIONS(1555), - [anon_sym_string] = ACTIONS(1555), - [anon_sym_symbol] = ACTIONS(1555), - [anon_sym_object] = ACTIONS(1555), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1570), + [anon_sym_number] = ACTIONS(1570), + [anon_sym_boolean] = ACTIONS(1570), + [anon_sym_string] = ACTIONS(1570), + [anon_sym_symbol] = ACTIONS(1570), + [anon_sym_object] = ACTIONS(1570), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(4239), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3087), + [sym_import] = STATE(4201), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2645), [sym_comment] = STATE(219), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4836), - [sym__type_query_call_expression_in_type_annotation] = STATE(5546), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(723), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1557), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_typeof] = ACTIONS(1563), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1415), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5547), + [sym__type] = STATE(4745), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(705), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1572), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1552), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1573), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1582), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1154), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1560), + [sym_number] = ACTIONS(1562), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(1564), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [sym_null] = ACTIONS(1562), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1587), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1589), - [anon_sym_number] = ACTIONS(1589), - [anon_sym_boolean] = ACTIONS(1589), - [anon_sym_string] = ACTIONS(1589), - [anon_sym_symbol] = ACTIONS(1589), - [anon_sym_object] = ACTIONS(1589), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1588), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1590), + [anon_sym_number] = ACTIONS(1590), + [anon_sym_boolean] = ACTIONS(1590), + [anon_sym_string] = ACTIONS(1590), + [anon_sym_symbol] = ACTIONS(1590), + [anon_sym_object] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(4239), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3257), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3087), + [sym_import] = STATE(4232), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3220), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3141), [sym_comment] = STATE(220), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4836), - [sym__type_query_call_expression_in_type_annotation] = STATE(5546), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(768), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1591), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_typeof] = ACTIONS(1597), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1415), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5547), + [sym__type] = STATE(4745), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(680), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1592), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_typeof] = ACTIONS(1600), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1412), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1610), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1613), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1616), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1418), + [sym_number] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(1422), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [sym_null] = ACTIONS(1420), + [sym_undefined] = ACTIONS(1622), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1621), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1623), - [anon_sym_number] = ACTIONS(1623), - [anon_sym_boolean] = ACTIONS(1623), - [anon_sym_string] = ACTIONS(1623), - [anon_sym_symbol] = ACTIONS(1623), - [anon_sym_object] = ACTIONS(1623), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1626), + [anon_sym_number] = ACTIONS(1626), + [anon_sym_boolean] = ACTIONS(1626), + [anon_sym_string] = ACTIONS(1626), + [anon_sym_symbol] = ACTIONS(1626), + [anon_sym_object] = ACTIONS(1626), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(4307), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2906), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3282), + [sym_import] = STATE(4201), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2645), [sym_comment] = STATE(221), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4702), - [sym__type_query_call_expression_in_type_annotation] = STATE(5466), - [sym__type] = STATE(4701), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(607), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1625), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_typeof] = ACTIONS(1633), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5547), + [sym__type] = STATE(4745), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(837), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1628), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_typeof] = ACTIONS(1634), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1552), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1644), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1651), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_number] = ACTIONS(1657), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1657), - [sym_false] = ACTIONS(1657), - [sym_null] = ACTIONS(1657), - [sym_undefined] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1650), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1560), + [sym_number] = ACTIONS(1562), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(1564), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [sym_null] = ACTIONS(1562), + [sym_undefined] = ACTIONS(1656), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1665), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1667), - [anon_sym_number] = ACTIONS(1667), - [anon_sym_boolean] = ACTIONS(1667), - [anon_sym_string] = ACTIONS(1667), - [anon_sym_symbol] = ACTIONS(1667), - [anon_sym_object] = ACTIONS(1667), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1658), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1660), + [anon_sym_number] = ACTIONS(1660), + [anon_sym_boolean] = ACTIONS(1660), + [anon_sym_string] = ACTIONS(1660), + [anon_sym_symbol] = ACTIONS(1660), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(4333), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2677), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2468), + [sym_import] = STATE(4232), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3141), [sym_comment] = STATE(222), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4836), - [sym__type_query_call_expression_in_type_annotation] = STATE(5546), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(638), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1669), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_typeof] = ACTIONS(1675), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1493), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5547), + [sym__type] = STATE(4745), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(673), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1662), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_typeof] = ACTIONS(1668), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1412), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1679), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1507), - [sym_number] = ACTIONS(1509), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(1513), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1509), - [sym_false] = ACTIONS(1509), - [sym_null] = ACTIONS(1509), - [sym_undefined] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1684), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1418), + [sym_number] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(1422), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [sym_null] = ACTIONS(1420), + [sym_undefined] = ACTIONS(1690), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1685), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1687), - [anon_sym_number] = ACTIONS(1687), - [anon_sym_boolean] = ACTIONS(1687), - [anon_sym_string] = ACTIONS(1687), - [anon_sym_symbol] = ACTIONS(1687), - [anon_sym_object] = ACTIONS(1687), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1694), + [anon_sym_number] = ACTIONS(1694), + [anon_sym_boolean] = ACTIONS(1694), + [anon_sym_string] = ACTIONS(1694), + [anon_sym_symbol] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(4153), + [sym_import] = STATE(4198), [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), [sym_member_expression] = STATE(2110), [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(2853), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(2856), [sym_comment] = STATE(223), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(3011), [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4702), - [sym__type_query_call_expression_in_type_annotation] = STATE(5466), - [sym__type] = STATE(4701), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(594), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1695), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1455), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4806), + [sym__type_query_call_expression_in_type_annotation] = STATE(5470), + [sym__type] = STATE(4809), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(633), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_typeof] = ACTIONS(1702), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1442), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1712), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_number] = ACTIONS(1467), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1452), + [sym_number] = ACTIONS(1454), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(1456), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1467), - [sym_false] = ACTIONS(1467), - [sym_null] = ACTIONS(1467), - [sym_undefined] = ACTIONS(1717), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_null] = ACTIONS(1454), + [sym_undefined] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1721), - [anon_sym_number] = ACTIONS(1721), - [anon_sym_boolean] = ACTIONS(1721), - [anon_sym_string] = ACTIONS(1721), - [anon_sym_symbol] = ACTIONS(1721), - [anon_sym_object] = ACTIONS(1721), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1726), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1728), + [anon_sym_number] = ACTIONS(1728), + [anon_sym_boolean] = ACTIONS(1728), + [anon_sym_string] = ACTIONS(1728), + [anon_sym_symbol] = ACTIONS(1728), + [anon_sym_object] = ACTIONS(1728), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(105), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7089), - [sym_string] = STATE(3051), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2697), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7092), + [sym_string] = STATE(3022), [sym_comment] = STATE(224), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), [sym__type] = STATE(5796), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(5101), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(5486), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1723), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1729), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(5103), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(5488), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_typeof] = ACTIONS(1734), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1736), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1547), - [anon_sym_using] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1556), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1151), - [sym_number] = ACTIONS(1153), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(1733), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [sym_null] = ACTIONS(1153), - [sym_undefined] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1158), + [sym_number] = ACTIONS(1160), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1740), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1160), + [sym_false] = ACTIONS(1160), + [sym_null] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1742), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1737), - [anon_sym_number] = ACTIONS(1737), - [anon_sym_boolean] = ACTIONS(1737), - [anon_sym_string] = ACTIONS(1737), - [anon_sym_symbol] = ACTIONS(1737), - [anon_sym_object] = ACTIONS(1737), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4972), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3088), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2206), + [sym_subscript_expression] = STATE(2206), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4579), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3371), [sym_comment] = STATE(225), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5100), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1739), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_typeof] = ACTIONS(964), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2206), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5102), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(779), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1748), + [anon_sym_namespace] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(1754), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1756), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1749), - [anon_sym_using] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_using] = ACTIONS(159), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(179), - [sym_number] = ACTIONS(181), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_undefined] = ACTIONS(1751), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1766), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1768), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1770), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_override] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1755), - [anon_sym_number] = ACTIONS(1755), - [anon_sym_boolean] = ACTIONS(1755), - [anon_sym_string] = ACTIONS(1755), - [anon_sym_symbol] = ACTIONS(1755), - [anon_sym_object] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_readonly] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_protected] = ACTIONS(1748), + [anon_sym_override] = ACTIONS(1748), + [anon_sym_module] = ACTIONS(1748), + [anon_sym_any] = ACTIONS(1774), + [anon_sym_number] = ACTIONS(1774), + [anon_sym_boolean] = ACTIONS(1774), + [anon_sym_string] = ACTIONS(1774), + [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_nested_identifier] = STATE(7252), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2173), - [sym_subscript_expression] = STATE(2173), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4437), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(3396), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2738), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_nested_identifier] = STATE(7255), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2097), + [sym_subscript_expression] = STATE(2097), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4973), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(3089), [sym_comment] = STATE(226), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(5027), - [sym_non_null_expression] = STATE(2173), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5100), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_type_arguments] = STATE(714), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6688), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1757), - [anon_sym_export] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_typeof] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1767), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(5029), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2097), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5102), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_type_arguments] = STATE(652), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6697), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1776), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_namespace] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1012), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1775), - [sym_number] = ACTIONS(1777), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1779), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_null] = ACTIONS(1777), - [sym_undefined] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1759), - [anon_sym_set] = ACTIONS(1759), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_declare] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [anon_sym_override] = ACTIONS(1759), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_any] = ACTIONS(1785), - [anon_sym_number] = ACTIONS(1785), - [anon_sym_boolean] = ACTIONS(1785), - [anon_sym_string] = ACTIONS(1785), - [anon_sym_symbol] = ACTIONS(1785), - [anon_sym_object] = ACTIONS(1785), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(1778), + [anon_sym_set] = ACTIONS(1778), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_number] = ACTIONS(1792), + [anon_sym_boolean] = ACTIONS(1792), + [anon_sym_string] = ACTIONS(1792), + [anon_sym_symbol] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1792), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_global] = ACTIONS(201), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(227), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_of] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1797), - [sym__ternary_qmark] = ACTIONS(1797), - [sym_html_comment] = ACTIONS(5), - }, - [228] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2488), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(228), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), @@ -63389,6815 +63775,6806 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1797), - [sym__ternary_qmark] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1802), + [sym__ternary_qmark] = ACTIONS(1802), + [sym_html_comment] = ACTIONS(5), + }, + [228] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(228), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(229), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1791), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_of] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1802), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2698), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2700), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(230), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2757), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2909), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(231), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), - [anon_sym_satisfies] = ACTIONS(1791), - [anon_sym_implements] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1797), - [sym_html_comment] = ACTIONS(5), - }, - [232] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2810), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(232), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1797), - [sym__ternary_qmark] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1802), + [sym__ternary_qmark] = ACTIONS(1802), + [sym_html_comment] = ACTIONS(5), + }, + [232] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2778), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(232), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(1798), + [anon_sym_implements] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3252), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(233), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_of] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3026), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3273), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(234), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_of] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(1798), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3182), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3190), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(235), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1791), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3299), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3355), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(236), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_as] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_GT_GT_GT] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_STAR_STAR] = ACTIONS(1798), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_QMARK_QMARK] = ACTIONS(1798), + [anon_sym_instanceof] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_satisfies] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_declaration] = STATE(1446), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2967), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(1073), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2935), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(237), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5046), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_namespace] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2873), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(1286), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2988), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(238), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5218), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5132), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1884), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1888), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(1883), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(1892), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1894), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1896), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_declaration] = STATE(1368), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2816), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(1614), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2782), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(239), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5063), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1893), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4958), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_namespace] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1902), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1908), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1910), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_declaration] = STATE(1177), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2783), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(1432), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2905), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(240), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1907), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5065), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1912), + [anon_sym_namespace] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1916), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1913), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1924), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_declaration] = STATE(1562), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2833), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(1117), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2815), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1042), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1042), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1042), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(241), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4957), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_namespace] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1921), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(1042), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5046), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_namespace] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(847), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_declaration] = STATE(1128), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1204), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1204), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1204), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(4993), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(4991), + [sym_lexical_declaration] = STATE(4991), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2975), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(4991), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(4991), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(4991), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(242), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(1204), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(323), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1907), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(4991), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(4991), + [sym_abstract_class_declaration] = STATE(4991), + [sym_module] = STATE(4991), + [sym_internal_module] = STATE(3174), + [sym_import_alias] = STATE(4991), + [sym_interface_declaration] = STATE(4991), + [sym_enum_declaration] = STATE(4991), + [sym_type_alias_declaration] = STATE(4991), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5090), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1928), + [anon_sym_var] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1913), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1942), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1944), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(1946), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1950), [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_declaration] = STATE(1521), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1618), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1618), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1618), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(1589), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2945), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1544), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1544), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1544), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(243), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(1618), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(411), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(4957), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_namespace] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1921), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(1544), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(466), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(4958), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_namespace] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1902), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1904), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1906), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1908), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1910), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_declaration] = STATE(6649), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2958), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(6330), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(6330), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(6330), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(6651), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2961), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(244), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(6330), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(3198), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5218), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5220), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1954), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(1883), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(1958), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1960), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1962), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_declaration] = STATE(4990), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(4988), - [sym_lexical_declaration] = STATE(4988), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2908), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(4988), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(4988), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(4988), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(1405), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2956), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1470), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1470), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1470), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(245), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(4988), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(4988), - [sym_abstract_class_declaration] = STATE(4988), - [sym_module] = STATE(4988), - [sym_internal_module] = STATE(3261), - [sym_import_alias] = STATE(4988), - [sym_interface_declaration] = STATE(4988), - [sym_enum_declaration] = STATE(4988), - [sym_type_alias_declaration] = STATE(4988), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5089), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1933), - [anon_sym_var] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(1470), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(358), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5132), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1884), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1888), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1941), - [anon_sym_async] = ACTIONS(1943), - [anon_sym_function] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(1892), + [anon_sym_function] = ACTIONS(945), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1947), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(1951), - [anon_sym_interface] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1955), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1894), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1896), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(959), [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_declaration] = STATE(1428), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2796), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1344), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1344), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1344), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(1440), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2940), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(1436), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(1436), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(1436), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(246), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(1344), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(384), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5063), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1893), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(1436), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(409), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5065), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1912), + [anon_sym_namespace] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1916), + [anon_sym_var] = ACTIONS(355), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(534), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(385), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_function] = ACTIONS(389), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(548), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1922), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1924), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(399), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(403), [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_declaration] = STATE(4942), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(4988), - [sym_lexical_declaration] = STATE(4988), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2878), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(4988), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(4988), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(4988), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(6358), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2817), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(6333), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(6333), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(6333), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(247), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(4988), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(4988), - [sym_abstract_class_declaration] = STATE(4988), - [sym_module] = STATE(4988), - [sym_internal_module] = STATE(3261), - [sym_import_alias] = STATE(4988), - [sym_interface_declaration] = STATE(4988), - [sym_enum_declaration] = STATE(4988), - [sym_type_alias_declaration] = STATE(4988), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5089), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1933), - [anon_sym_var] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(6333), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(3245), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5220), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1954), + [anon_sym_var] = ACTIONS(783), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1941), - [anon_sym_async] = ACTIONS(1943), - [anon_sym_function] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(813), + [anon_sym_async] = ACTIONS(1958), + [anon_sym_function] = ACTIONS(817), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1947), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(1951), - [anon_sym_interface] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1955), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1960), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1962), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_declaration] = STATE(1341), - [sym_import] = STATE(4289), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2981), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_class_declaration] = STATE(1331), - [sym_function_expression] = STATE(3008), - [sym_function_declaration] = STATE(1331), - [sym_generator_function] = STATE(3008), - [sym_generator_function_declaration] = STATE(1331), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_declaration] = STATE(4945), + [sym_import] = STATE(4165), + [sym_variable_declaration] = STATE(4991), + [sym_lexical_declaration] = STATE(4991), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2964), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_class_declaration] = STATE(4991), + [sym_function_expression] = STATE(3003), + [sym_function_declaration] = STATE(4991), + [sym_generator_function] = STATE(3003), + [sym_generator_function_declaration] = STATE(4991), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(248), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_function_signature] = STATE(1331), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(405), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_function_signature] = STATE(4991), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_ambient_declaration] = STATE(4991), + [sym_abstract_class_declaration] = STATE(4991), + [sym_module] = STATE(4991), + [sym_internal_module] = STATE(3174), + [sym_import_alias] = STATE(4991), + [sym_interface_declaration] = STATE(4991), + [sym_enum_declaration] = STATE(4991), + [sym_type_alias_declaration] = STATE(4991), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5090), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(1928), + [anon_sym_var] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1942), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1944), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(1946), + [anon_sym_global] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1950), [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(249), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(250), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(251), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(252), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(1247), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(253), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(254), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2098), + [sym_subscript_expression] = STATE(2098), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4892), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7314), + [sym_string] = STATE(2648), [sym_comment] = STATE(255), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2098), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1990), + [anon_sym_export] = ACTIONS(1128), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_namespace] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(1994), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1996), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_readonly] = ACTIONS(1998), + [anon_sym_get] = ACTIONS(1128), + [anon_sym_set] = ACTIONS(1128), + [anon_sym_declare] = ACTIONS(1128), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_override] = ACTIONS(1174), + [anon_sym_module] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1128), + [anon_sym_number] = ACTIONS(1128), + [anon_sym_boolean] = ACTIONS(1128), + [anon_sym_string] = ACTIONS(1128), + [anon_sym_symbol] = ACTIONS(1128), + [anon_sym_object] = ACTIONS(1128), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2098), + [sym_subscript_expression] = STATE(2098), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4892), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7204), + [sym_string] = STATE(2648), [sym_comment] = STATE(256), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4096), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2098), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1990), + [anon_sym_export] = ACTIONS(1128), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_namespace] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(1994), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1996), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_readonly] = ACTIONS(1998), + [anon_sym_get] = ACTIONS(1128), + [anon_sym_set] = ACTIONS(1128), + [anon_sym_declare] = ACTIONS(1128), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_override] = ACTIONS(1174), + [anon_sym_module] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1128), + [anon_sym_number] = ACTIONS(1128), + [anon_sym_boolean] = ACTIONS(1128), + [anon_sym_string] = ACTIONS(1128), + [anon_sym_symbol] = ACTIONS(1128), + [anon_sym_object] = ACTIONS(1128), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [257] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(5649), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(257), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(6946), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(258), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(6074), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(259), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4890), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7207), - [sym_string] = STATE(2646), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(260), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2125), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(2007), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(2011), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2013), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_readonly] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_override] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1121), - [anon_sym_number] = ACTIONS(1121), - [anon_sym_boolean] = ACTIONS(1121), - [anon_sym_string] = ACTIONS(1121), - [anon_sym_symbol] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(1121), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4117), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(6946), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(261), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1299), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [262] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2401), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4890), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7311), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(5723), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(262), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2125), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(2007), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(2011), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2013), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_readonly] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_override] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1121), - [anon_sym_number] = ACTIONS(1121), - [anon_sym_boolean] = ACTIONS(1121), - [anon_sym_string] = ACTIONS(1121), - [anon_sym_symbol] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(6946), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(263), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2038), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(6946), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(264), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1307), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1301), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(5721), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(265), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(6940), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(6946), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(266), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2042), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(6074), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(6946), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(267), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(6940), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(268), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(6940), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(269), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [270] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(6940), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(270), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2050), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(6940), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym__formal_parameter] = STATE(6946), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(271), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(4893), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(427), + [sym_override_modifier] = STATE(436), + [sym_required_parameter] = STATE(6433), + [sym_optional_parameter] = STATE(6433), + [sym__parameter_name] = STATE(4550), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2002), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(5647), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(272), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2056), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(273), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(205), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), - [sym__ternary_qmark] = ACTIONS(209), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5658), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2058), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(6940), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(274), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(275), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2043), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2733), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5654), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(276), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5655), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2049), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2060), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(277), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2051), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5654), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(278), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5655), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2049), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2062), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(279), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2053), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5658), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2058), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5741), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(280), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2055), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5742), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2064), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym__formal_parameter] = STATE(6940), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(281), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(4891), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(453), - [sym_override_modifier] = STATE(465), - [sym_required_parameter] = STATE(6429), - [sym_optional_parameter] = STATE(6429), - [sym__parameter_name] = STATE(4545), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5658), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2066), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5654), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(282), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5655), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1332), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(412), + [sym_variable_declaration] = STATE(412), + [sym_lexical_declaration] = STATE(412), + [sym_empty_statement] = STATE(412), + [sym_parenthesized_expression] = STATE(2119), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2119), + [sym_subscript_expression] = STATE(2119), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(5793), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), [sym_comment] = STATE(283), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5741), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2059), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), - [sym_html_comment] = ACTIONS(5), - }, - [284] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(284), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [anon_sym_extends] = ACTIONS(2061), - [anon_sym_PIPE_RBRACE] = ACTIONS(2061), - [sym__automatic_semicolon] = ACTIONS(2063), - [sym_html_comment] = ACTIONS(5), - }, - [285] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(416), - [sym_variable_declaration] = STATE(416), - [sym_lexical_declaration] = STATE(416), - [sym_empty_statement] = STATE(416), - [sym_parenthesized_expression] = STATE(2108), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(285), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2108), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(2065), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2071), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2119), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_var] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2080), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2082), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2084), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(2088), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -70217,439 +70594,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [sym_html_comment] = ACTIONS(5), - }, - [286] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(286), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [sym_undefined] = ACTIONS(2090), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [anon_sym_extends] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_readonly] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(2070), + [anon_sym_set] = ACTIONS(2070), + [anon_sym_declare] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_protected] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_any] = ACTIONS(2070), + [anon_sym_number] = ACTIONS(2070), + [anon_sym_boolean] = ACTIONS(2070), + [anon_sym_string] = ACTIONS(2070), + [anon_sym_symbol] = ACTIONS(2070), + [anon_sym_object] = ACTIONS(2070), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(457), - [sym_variable_declaration] = STATE(457), - [sym_lexical_declaration] = STATE(457), - [sym_empty_statement] = STATE(457), - [sym_parenthesized_expression] = STATE(2108), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(287), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2108), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(2065), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_var] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2081), + [284] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(284), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(2092), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [anon_sym_extends] = ACTIONS(2092), + [anon_sym_PIPE_RBRACE] = ACTIONS(2092), + [sym__automatic_semicolon] = ACTIONS(2094), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2169), - [sym_subscript_expression] = STATE(2169), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5658), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(288), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2169), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_mapped_type_clause] = STATE(6949), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2101), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_readonly] = ACTIONS(2091), - [anon_sym_get] = ACTIONS(2091), - [anon_sym_set] = ACTIONS(2091), - [anon_sym_declare] = ACTIONS(2091), - [anon_sym_public] = ACTIONS(2091), - [anon_sym_private] = ACTIONS(2091), - [anon_sym_protected] = ACTIONS(2091), - [anon_sym_override] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_any] = ACTIONS(2091), - [anon_sym_number] = ACTIONS(2091), - [anon_sym_boolean] = ACTIONS(2091), - [anon_sym_string] = ACTIONS(2091), - [anon_sym_symbol] = ACTIONS(2091), - [anon_sym_object] = ACTIONS(2091), + [285] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), + [sym_comment] = STATE(285), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(433), - [sym_variable_declaration] = STATE(433), - [sym_lexical_declaration] = STATE(433), - [sym_empty_statement] = STATE(433), - [sym_parenthesized_expression] = STATE(2108), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(289), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2108), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(2065), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2071), + [286] = { + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(401), + [sym_variable_declaration] = STATE(401), + [sym_lexical_declaration] = STATE(401), + [sym_empty_statement] = STATE(401), + [sym_parenthesized_expression] = STATE(2119), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2119), + [sym_subscript_expression] = STATE(2119), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(5793), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), + [sym_comment] = STATE(286), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2119), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_var] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2080), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2082), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2084), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(2088), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -70669,100 +70939,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2087), + [sym_undefined] = ACTIONS(2090), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_readonly] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(2070), + [anon_sym_set] = ACTIONS(2070), + [anon_sym_declare] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_protected] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_any] = ACTIONS(2070), + [anon_sym_number] = ACTIONS(2070), + [anon_sym_boolean] = ACTIONS(2070), + [anon_sym_string] = ACTIONS(2070), + [anon_sym_symbol] = ACTIONS(2070), + [anon_sym_object] = ACTIONS(2070), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(419), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_empty_statement] = STATE(419), - [sym_parenthesized_expression] = STATE(2108), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(290), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2108), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(2065), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2071), + [287] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3086), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2166), + [sym_subscript_expression] = STATE(2166), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5655), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(287), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2166), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_mapped_type_clause] = STATE(6954), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2096), + [anon_sym_export] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_namespace] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_COMMA] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_RBRACK] = ACTIONS(2108), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2114), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_readonly] = ACTIONS(2098), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_declare] = ACTIONS(2098), + [anon_sym_public] = ACTIONS(2098), + [anon_sym_private] = ACTIONS(2098), + [anon_sym_protected] = ACTIONS(2098), + [anon_sym_override] = ACTIONS(2098), + [anon_sym_module] = ACTIONS(2098), + [anon_sym_any] = ACTIONS(2098), + [anon_sym_number] = ACTIONS(2098), + [anon_sym_boolean] = ACTIONS(2098), + [anon_sym_string] = ACTIONS(2098), + [anon_sym_symbol] = ACTIONS(2098), + [anon_sym_object] = ACTIONS(2098), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [288] = { + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(424), + [sym_variable_declaration] = STATE(424), + [sym_lexical_declaration] = STATE(424), + [sym_empty_statement] = STATE(424), + [sym_parenthesized_expression] = STATE(2119), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2119), + [sym_subscript_expression] = STATE(2119), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(5793), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), + [sym_comment] = STATE(288), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2119), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_var] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2080), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2082), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2084), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(2088), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -70782,100 +71169,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2087), + [sym_undefined] = ACTIONS(2090), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_readonly] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(2070), + [anon_sym_set] = ACTIONS(2070), + [anon_sym_declare] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_protected] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_any] = ACTIONS(2070), + [anon_sym_number] = ACTIONS(2070), + [anon_sym_boolean] = ACTIONS(2070), + [anon_sym_string] = ACTIONS(2070), + [anon_sym_symbol] = ACTIONS(2070), + [anon_sym_object] = ACTIONS(2070), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(415), - [sym_variable_declaration] = STATE(415), - [sym_lexical_declaration] = STATE(415), - [sym_empty_statement] = STATE(415), - [sym_parenthesized_expression] = STATE(2108), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(291), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2108), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(2065), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2071), + [289] = { + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(387), + [sym_variable_declaration] = STATE(387), + [sym_lexical_declaration] = STATE(387), + [sym_empty_statement] = STATE(387), + [sym_parenthesized_expression] = STATE(2119), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2119), + [sym_subscript_expression] = STATE(2119), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(5793), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), + [sym_comment] = STATE(289), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2119), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(2088), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_readonly] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(2070), + [anon_sym_set] = ACTIONS(2070), + [anon_sym_declare] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_protected] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_any] = ACTIONS(2070), + [anon_sym_number] = ACTIONS(2070), + [anon_sym_boolean] = ACTIONS(2070), + [anon_sym_string] = ACTIONS(2070), + [anon_sym_symbol] = ACTIONS(2070), + [anon_sym_object] = ACTIONS(2070), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [290] = { + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(413), + [sym_variable_declaration] = STATE(413), + [sym_lexical_declaration] = STATE(413), + [sym_empty_statement] = STATE(413), + [sym_parenthesized_expression] = STATE(2119), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2119), + [sym_subscript_expression] = STATE(2119), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(5793), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), + [sym_comment] = STATE(290), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2119), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_var] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2080), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2082), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2084), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(2088), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -70895,11924 +71399,12394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2087), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_readonly] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(2070), + [anon_sym_set] = ACTIONS(2070), + [anon_sym_declare] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_protected] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_any] = ACTIONS(2070), + [anon_sym_number] = ACTIONS(2070), + [anon_sym_boolean] = ACTIONS(2070), + [anon_sym_string] = ACTIONS(2070), + [anon_sym_symbol] = ACTIONS(2070), + [anon_sym_object] = ACTIONS(2070), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [291] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(291), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_RBRACK] = ACTIONS(2092), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2092), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2901), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(6627), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5771), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(292), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5773), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2109), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_RBRACK] = ACTIONS(2108), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3081), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2169), - [sym_subscript_expression] = STATE(2169), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5658), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2166), + [sym_subscript_expression] = STATE(2166), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5655), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(293), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2169), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(2112), - [anon_sym_export] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_namespace] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2101), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5585), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2166), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_pattern_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2118), + [anon_sym_type] = ACTIONS(2118), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_COMMA] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_RBRACK] = ACTIONS(2108), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2120), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2114), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_readonly] = ACTIONS(2114), - [anon_sym_get] = ACTIONS(2114), - [anon_sym_set] = ACTIONS(2114), - [anon_sym_declare] = ACTIONS(2114), - [anon_sym_public] = ACTIONS(2114), - [anon_sym_private] = ACTIONS(2114), - [anon_sym_protected] = ACTIONS(2114), - [anon_sym_override] = ACTIONS(2114), - [anon_sym_module] = ACTIONS(2114), - [anon_sym_any] = ACTIONS(2114), - [anon_sym_number] = ACTIONS(2114), - [anon_sym_boolean] = ACTIONS(2114), - [anon_sym_string] = ACTIONS(2114), - [anon_sym_symbol] = ACTIONS(2114), - [anon_sym_object] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_readonly] = ACTIONS(2118), + [anon_sym_get] = ACTIONS(2118), + [anon_sym_set] = ACTIONS(2118), + [anon_sym_declare] = ACTIONS(2118), + [anon_sym_public] = ACTIONS(2118), + [anon_sym_private] = ACTIONS(2118), + [anon_sym_protected] = ACTIONS(2118), + [anon_sym_override] = ACTIONS(2118), + [anon_sym_module] = ACTIONS(2118), + [anon_sym_any] = ACTIONS(2118), + [anon_sym_number] = ACTIONS(2118), + [anon_sym_boolean] = ACTIONS(2118), + [anon_sym_string] = ACTIONS(2118), + [anon_sym_symbol] = ACTIONS(2118), + [anon_sym_object] = ACTIONS(2118), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(294), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_RBRACK] = ACTIONS(2061), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_RBRACK] = ACTIONS(2092), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_extends] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [295] = { - [sym_statement_block] = STATE(333), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(6633), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5772), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(295), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5773), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [296] = { - [sym_statement_block] = STATE(333), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(6633), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5772), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(296), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2130), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5773), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2133), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2901), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(6627), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5771), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(5738), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(297), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5773), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2132), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5553), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_pattern_repeat1] = STATE(5747), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_RBRACK] = ACTIONS(2137), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5733), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(6633), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_spread_element] = STATE(5772), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(298), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5551), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_pattern_repeat1] = STATE(5742), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_RBRACK] = ACTIONS(2136), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5773), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(2126), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [299] = { + [sym_statement_block] = STATE(328), [sym_comment] = STATE(299), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_instanceof] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_satisfies] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2144), - [sym__ternary_qmark] = ACTIONS(2146), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(5653), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(300), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5583), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_pattern_repeat1] = STATE(5660), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_RBRACK] = ACTIONS(2101), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_GT_GT_GT] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_STAR_STAR] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2149), + [anon_sym_EQ_EQ] = ACTIONS(2149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2149), + [anon_sym_GT_EQ] = ACTIONS(2149), + [anon_sym_QMARK_QMARK] = ACTIONS(2149), + [anon_sym_instanceof] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_satisfies] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2153), + [sym__ternary_qmark] = ACTIONS(2155), [sym_html_comment] = ACTIONS(5), }, [301] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2901), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(6627), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_spread_element] = STATE(5771), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(6633), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(301), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), [sym_pattern] = STATE(5773), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2148), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(2157), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_RBRACK] = ACTIONS(2157), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_statement_block] = STATE(333), + [sym_statement_block] = STATE(328), [sym_comment] = STATE(302), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [303] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(303), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2152), - [anon_sym_PIPE_PIPE] = ACTIONS(2152), - [anon_sym_GT_GT] = ACTIONS(2152), - [anon_sym_GT_GT_GT] = ACTIONS(2152), - [anon_sym_LT_LT] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2152), - [anon_sym_STAR_STAR] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2152), - [anon_sym_EQ_EQ] = ACTIONS(2152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2152), - [anon_sym_GT_EQ] = ACTIONS(2152), - [anon_sym_QMARK_QMARK] = ACTIONS(2152), - [anon_sym_instanceof] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2154), - [sym__ternary_qmark] = ACTIONS(2154), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [304] = { + [sym_statement_block] = STATE(328), [sym_comment] = STATE(304), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LTtemplate_GT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_DOT] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_PIPE_PIPE] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(2158), - [anon_sym_GT_GT_GT] = ACTIONS(2158), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_CARET] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_STAR_STAR] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), - [anon_sym_GT_EQ] = ACTIONS(2158), - [anon_sym_QMARK_QMARK] = ACTIONS(2158), - [anon_sym_instanceof] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_private_property_identifier] = ACTIONS(2156), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_satisfies] = ACTIONS(2158), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [sym__automatic_semicolon] = ACTIONS(2160), - [sym__ternary_qmark] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [305] = { [sym_comment] = STATE(305), - [sym_identifier] = ACTIONS(2164), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_with] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_else] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_do] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_debugger] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_case] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LTtemplate_GT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_QMARK_QMARK] = ACTIONS(2166), - [anon_sym_instanceof] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_void] = ACTIONS(2164), - [anon_sym_delete] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_number] = ACTIONS(2164), - [sym_private_property_identifier] = ACTIONS(2164), - [sym_this] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_satisfies] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2168), - [sym__ternary_qmark] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_var] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_else] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_debugger] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_case] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(2161), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_QMARK_QMARK] = ACTIONS(2163), + [anon_sym_instanceof] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2161), + [anon_sym_delete] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_number] = ACTIONS(2161), + [sym_private_property_identifier] = ACTIONS(2161), + [sym_this] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [sym_undefined] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_get] = ACTIONS(2161), + [anon_sym_set] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_private] = ACTIONS(2161), + [anon_sym_protected] = ACTIONS(2161), + [anon_sym_override] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_any] = ACTIONS(2161), + [anon_sym_number] = ACTIONS(2161), + [anon_sym_boolean] = ACTIONS(2161), + [anon_sym_string] = ACTIONS(2161), + [anon_sym_symbol] = ACTIONS(2161), + [anon_sym_object] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_satisfies] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym__automatic_semicolon] = ACTIONS(2165), + [sym__ternary_qmark] = ACTIONS(2167), [sym_html_comment] = ACTIONS(5), }, [306] = { [sym_comment] = STATE(306), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_as] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_in] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_case] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_QMARK_DOT] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(2172), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_GT_GT] = ACTIONS(2172), - [anon_sym_GT_GT_GT] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_STAR_STAR] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_LT_EQ] = ACTIONS(2172), - [anon_sym_EQ_EQ] = ACTIONS(2172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2172), - [anon_sym_GT_EQ] = ACTIONS(2172), - [anon_sym_QMARK_QMARK] = ACTIONS(2172), - [anon_sym_instanceof] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_satisfies] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [sym__automatic_semicolon] = ACTIONS(2174), - [sym__ternary_qmark] = ACTIONS(2174), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_GT_GT_GT] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_STAR_STAR] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2149), + [anon_sym_EQ_EQ] = ACTIONS(2149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2149), + [anon_sym_GT_EQ] = ACTIONS(2149), + [anon_sym_QMARK_QMARK] = ACTIONS(2149), + [anon_sym_instanceof] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_satisfies] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2171), + [sym__ternary_qmark] = ACTIONS(2155), [sym_html_comment] = ACTIONS(5), }, [307] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2761), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_spread_element] = STATE(6191), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(307), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2180), - [sym__ternary_qmark] = ACTIONS(2182), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(6190), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [308] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2707), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_spread_element] = STATE(5811), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(308), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [sym__automatic_semicolon] = ACTIONS(2186), - [sym__ternary_qmark] = ACTIONS(2186), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5813), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [309] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_spread_element] = STATE(6274), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(309), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_as] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_DOT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_GT_GT] = ACTIONS(2138), - [anon_sym_GT_GT_GT] = ACTIONS(2138), - [anon_sym_LT_LT] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_CARET] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2138), - [anon_sym_STAR_STAR] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), - [anon_sym_GT_EQ] = ACTIONS(2138), - [anon_sym_QMARK_QMARK] = ACTIONS(2138), - [anon_sym_instanceof] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_satisfies] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2188), - [sym__ternary_qmark] = ACTIONS(2190), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(6275), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [310] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3282), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(310), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_typeof] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_with] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_else] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_in] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_debugger] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_case] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LTtemplate_GT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_QMARK_DOT] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2194), - [anon_sym_GT_GT_GT] = ACTIONS(2194), - [anon_sym_LT_LT] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_STAR_STAR] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2194), - [anon_sym_QMARK_QMARK] = ACTIONS(2194), - [anon_sym_instanceof] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_void] = ACTIONS(2192), - [anon_sym_delete] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [sym_private_property_identifier] = ACTIONS(2192), - [sym_this] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_undefined] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_satisfies] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2196), - [sym__ternary_qmark] = ACTIONS(2198), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [311] = { [sym_comment] = STATE(311), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_case] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_DOT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_QMARK_DOT] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_PIPE_PIPE] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2200), - [anon_sym_GT_GT_GT] = ACTIONS(2200), - [anon_sym_LT_LT] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2200), - [anon_sym_STAR_STAR] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_LT_EQ] = ACTIONS(2200), - [anon_sym_EQ_EQ] = ACTIONS(2200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2200), - [anon_sym_GT_EQ] = ACTIONS(2200), - [anon_sym_QMARK_QMARK] = ACTIONS(2200), - [anon_sym_instanceof] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_satisfies] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [sym__automatic_semicolon] = ACTIONS(2202), - [sym__ternary_qmark] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2183), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_STAR_STAR] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_QMARK_QMARK] = ACTIONS(2183), + [anon_sym_instanceof] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_satisfies] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [312] = { [sym_comment] = STATE(312), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_instanceof] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_satisfies] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2204), - [sym__ternary_qmark] = ACTIONS(2146), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_case] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_STAR_STAR] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_QMARK_QMARK] = ACTIONS(2187), + [anon_sym_instanceof] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_satisfies] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [sym__automatic_semicolon] = ACTIONS(2189), + [sym__ternary_qmark] = ACTIONS(2189), [sym_html_comment] = ACTIONS(5), }, [313] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(6627), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(313), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5773), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(2206), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_RBRACK] = ACTIONS(2206), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2193), + [sym__ternary_qmark] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [314] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2704), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_spread_element] = STATE(6095), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(314), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_STAR_STAR] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_instanceof] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2210), - [sym__ternary_qmark] = ACTIONS(2212), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(6096), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [315] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(315), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), - [anon_sym_extends] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_satisfies] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2201), + [sym__ternary_qmark] = ACTIONS(2201), [sym_html_comment] = ACTIONS(5), }, [316] = { + [sym_statement_block] = STATE(410), [sym_comment] = STATE(316), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_STAR_STAR] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_instanceof] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), - [sym__ternary_qmark] = ACTIONS(2212), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [317] = { + [sym_statement_block] = STATE(410), [sym_comment] = STATE(317), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_with] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_debugger] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_case] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LTtemplate_GT] = ACTIONS(2214), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_QMARK_DOT] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_STAR_STAR] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_instanceof] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2214), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_private_property_identifier] = ACTIONS(2214), - [sym_this] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_readonly] = ACTIONS(2214), - [anon_sym_get] = ACTIONS(2214), - [anon_sym_set] = ACTIONS(2214), - [anon_sym_declare] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_protected] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_any] = ACTIONS(2214), - [anon_sym_number] = ACTIONS(2214), - [anon_sym_boolean] = ACTIONS(2214), - [anon_sym_string] = ACTIONS(2214), - [anon_sym_symbol] = ACTIONS(2214), - [anon_sym_object] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_satisfies] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [sym__automatic_semicolon] = ACTIONS(2218), - [sym__ternary_qmark] = ACTIONS(2220), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [318] = { + [sym_statement_block] = STATE(410), [sym_comment] = STATE(318), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_with] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_debugger] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LTtemplate_GT] = ACTIONS(2222), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_DOT] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_QMARK_DOT] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_STAR_STAR] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_QMARK_QMARK] = ACTIONS(2224), - [anon_sym_instanceof] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2222), - [anon_sym_delete] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_private_property_identifier] = ACTIONS(2222), - [sym_this] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_undefined] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_readonly] = ACTIONS(2222), - [anon_sym_get] = ACTIONS(2222), - [anon_sym_set] = ACTIONS(2222), - [anon_sym_declare] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_protected] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_any] = ACTIONS(2222), - [anon_sym_number] = ACTIONS(2222), - [anon_sym_boolean] = ACTIONS(2222), - [anon_sym_string] = ACTIONS(2222), - [anon_sym_symbol] = ACTIONS(2222), - [anon_sym_object] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_satisfies] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [sym__automatic_semicolon] = ACTIONS(2226), - [sym__ternary_qmark] = ACTIONS(2228), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [319] = { [sym_comment] = STATE(319), - [sym_identifier] = ACTIONS(2230), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2232), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2230), - [anon_sym_import] = ACTIONS(2230), - [anon_sym_with] = ACTIONS(2230), - [anon_sym_var] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LTtemplate_GT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_DOT] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_PIPE_PIPE] = ACTIONS(2232), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2232), - [anon_sym_STAR_STAR] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2232), - [anon_sym_EQ_EQ] = ACTIONS(2232), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2232), - [anon_sym_QMARK_QMARK] = ACTIONS(2232), - [anon_sym_instanceof] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_private_property_identifier] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_undefined] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_satisfies] = ACTIONS(2232), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2234), - [sym__ternary_qmark] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_typeof] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_in] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_case] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2209), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_STAR_STAR] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_QMARK_QMARK] = ACTIONS(2209), + [anon_sym_instanceof] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2209), + [anon_sym_delete] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(2209), + [sym_this] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_null] = ACTIONS(2209), + [sym_undefined] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_declare] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_protected] = ACTIONS(2209), + [anon_sym_override] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_any] = ACTIONS(2209), + [anon_sym_number] = ACTIONS(2209), + [anon_sym_boolean] = ACTIONS(2209), + [anon_sym_string] = ACTIONS(2209), + [anon_sym_symbol] = ACTIONS(2209), + [anon_sym_object] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_satisfies] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [sym__automatic_semicolon] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, [320] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2745), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_spread_element] = STATE(5842), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(320), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_QMARK_DOT] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_satisfies] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2242), - [sym__ternary_qmark] = ACTIONS(2244), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5843), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [321] = { - [sym_statement_block] = STATE(351), [sym_comment] = STATE(321), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2217), + [sym__ternary_qmark] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, [322] = { [sym_comment] = STATE(322), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_as] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_else] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_QMARK_DOT] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2250), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_QMARK_QMARK] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_satisfies] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2252), - [sym__ternary_qmark] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_debugger] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_case] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_STAR_STAR] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_QMARK_QMARK] = ACTIONS(2219), + [anon_sym_instanceof] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_delete] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_private_property_identifier] = ACTIONS(2219), + [sym_this] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_null] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_abstract] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_satisfies] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [sym__automatic_semicolon] = ACTIONS(2221), + [sym__ternary_qmark] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, [323] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(323), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_as] = ACTIONS(2256), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_COMMA] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_in] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_case] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_QMARK_DOT] = ACTIONS(2256), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2256), - [anon_sym_PIPE_PIPE] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_GT_GT_GT] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2256), - [anon_sym_CARET] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2256), - [anon_sym_STAR_STAR] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_LT_EQ] = ACTIONS(2256), - [anon_sym_EQ_EQ] = ACTIONS(2256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2256), - [anon_sym_GT_EQ] = ACTIONS(2256), - [anon_sym_QMARK_QMARK] = ACTIONS(2256), - [anon_sym_instanceof] = ACTIONS(2256), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_satisfies] = ACTIONS(2256), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), - [sym__automatic_semicolon] = ACTIONS(2258), - [sym__ternary_qmark] = ACTIONS(2258), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_statement_block] = STATE(362), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2773), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_spread_element] = STATE(5940), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5943), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_statement_block] = STATE(351), [sym_comment] = STATE(325), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2264), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2225), + [anon_sym_PIPE_PIPE] = ACTIONS(2225), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2225), + [anon_sym_STAR_STAR] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2225), + [anon_sym_QMARK_QMARK] = ACTIONS(2225), + [anon_sym_instanceof] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_satisfies] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2227), + [sym__ternary_qmark] = ACTIONS(2227), [sym_html_comment] = ACTIONS(5), }, [326] = { - [sym_statement_block] = STATE(362), [sym_comment] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2229), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_debugger] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_case] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LTtemplate_GT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_STAR_STAR] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2229), + [anon_sym_QMARK_QMARK] = ACTIONS(2229), + [anon_sym_instanceof] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_number] = ACTIONS(2229), + [sym_private_property_identifier] = ACTIONS(2229), + [sym_this] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_undefined] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_global] = ACTIONS(2229), + [anon_sym_satisfies] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [sym__automatic_semicolon] = ACTIONS(2231), + [sym__ternary_qmark] = ACTIONS(2231), [sym_html_comment] = ACTIONS(5), }, [327] = { - [sym_statement_block] = STATE(351), [sym_comment] = STATE(327), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_GT_GT_GT] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_STAR_STAR] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2149), + [anon_sym_EQ_EQ] = ACTIONS(2149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2149), + [anon_sym_GT_EQ] = ACTIONS(2149), + [anon_sym_QMARK_QMARK] = ACTIONS(2149), + [anon_sym_instanceof] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_satisfies] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2233), + [sym__ternary_qmark] = ACTIONS(2155), [sym_html_comment] = ACTIONS(5), }, [328] = { [sym_comment] = STATE(328), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_as] = ACTIONS(2270), - [anon_sym_namespace] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_COMMA] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_typeof] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_with] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_else] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(2268), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_debugger] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_case] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LTtemplate_GT] = ACTIONS(2268), - [anon_sym_GT] = ACTIONS(2270), - [anon_sym_DOT] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_QMARK_DOT] = ACTIONS(2270), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2270), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_PERCENT] = ACTIONS(2270), - [anon_sym_STAR_STAR] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_LT_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), - [anon_sym_GT_EQ] = ACTIONS(2270), - [anon_sym_QMARK_QMARK] = ACTIONS(2270), - [anon_sym_instanceof] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2268), - [anon_sym_void] = ACTIONS(2268), - [anon_sym_delete] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2268), - [sym_number] = ACTIONS(2268), - [sym_private_property_identifier] = ACTIONS(2268), - [sym_this] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_readonly] = ACTIONS(2268), - [anon_sym_get] = ACTIONS(2268), - [anon_sym_set] = ACTIONS(2268), - [anon_sym_declare] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_protected] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_any] = ACTIONS(2268), - [anon_sym_number] = ACTIONS(2268), - [anon_sym_boolean] = ACTIONS(2268), - [anon_sym_string] = ACTIONS(2268), - [anon_sym_symbol] = ACTIONS(2268), - [anon_sym_object] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_satisfies] = ACTIONS(2270), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [sym__automatic_semicolon] = ACTIONS(2272), - [sym__ternary_qmark] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_var] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_debugger] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_case] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_GT] = ACTIONS(2235), + [anon_sym_DOT] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_QMARK_DOT] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_GT_GT] = ACTIONS(2235), + [anon_sym_GT_GT_GT] = ACTIONS(2235), + [anon_sym_LT_LT] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_CARET] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_PERCENT] = ACTIONS(2235), + [anon_sym_STAR_STAR] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2235), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_QMARK_QMARK] = ACTIONS(2235), + [anon_sym_instanceof] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_delete] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [sym_private_property_identifier] = ACTIONS(2235), + [sym_this] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_null] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), + [anon_sym_abstract] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_satisfies] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [sym__automatic_semicolon] = ACTIONS(2237), + [sym__ternary_qmark] = ACTIONS(2237), [sym_html_comment] = ACTIONS(5), }, [329] = { - [sym_statement_block] = STATE(362), [sym_comment] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_var] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_else] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_switch] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_in] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_debugger] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_GT] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(2239), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_using] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2239), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_delete] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_private_property_identifier] = ACTIONS(2239), + [sym_this] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_null] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_get] = ACTIONS(2239), + [anon_sym_set] = ACTIONS(2239), + [anon_sym_declare] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_private] = ACTIONS(2239), + [anon_sym_protected] = ACTIONS(2239), + [anon_sym_override] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_any] = ACTIONS(2239), + [anon_sym_number] = ACTIONS(2239), + [anon_sym_boolean] = ACTIONS(2239), + [anon_sym_string] = ACTIONS(2239), + [anon_sym_symbol] = ACTIONS(2239), + [anon_sym_object] = ACTIONS(2239), + [anon_sym_abstract] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_satisfies] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [sym__automatic_semicolon] = ACTIONS(2241), + [sym__ternary_qmark] = ACTIONS(2241), [sym_html_comment] = ACTIONS(5), }, [330] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2780), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(330), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_case] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LTtemplate_GT] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2278), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_QMARK_DOT] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2278), - [anon_sym_PIPE_PIPE] = ACTIONS(2278), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2278), - [anon_sym_LT_LT] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_PERCENT] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_LT_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), - [anon_sym_GT_EQ] = ACTIONS(2278), - [anon_sym_QMARK_QMARK] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2276), - [sym_number] = ACTIONS(2276), - [sym_private_property_identifier] = ACTIONS(2276), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_object] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_satisfies] = ACTIONS(2278), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2280), - [sym__ternary_qmark] = ACTIONS(2282), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [331] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3138), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(331), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LTtemplate_GT] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_QMARK_DOT] = ACTIONS(2286), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2284), - [sym_number] = ACTIONS(2284), - [sym_private_property_identifier] = ACTIONS(2284), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_object] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_satisfies] = ACTIONS(2286), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2288), - [sym__ternary_qmark] = ACTIONS(2290), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [332] = { [sym_comment] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_instanceof] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_satisfies] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2292), - [sym__ternary_qmark] = ACTIONS(2146), + [sym_identifier] = ACTIONS(2243), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_var] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_else] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_debugger] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_case] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_function] = ACTIONS(2243), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_using] = ACTIONS(2243), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_STAR_STAR] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_QMARK_QMARK] = ACTIONS(2245), + [anon_sym_instanceof] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_void] = ACTIONS(2243), + [anon_sym_delete] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [sym_private_property_identifier] = ACTIONS(2243), + [sym_this] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_null] = ACTIONS(2243), + [sym_undefined] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [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_abstract] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_satisfies] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2247), + [sym__ternary_qmark] = ACTIONS(2249), [sym_html_comment] = ACTIONS(5), }, [333] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2748), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_spread_element] = STATE(5791), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(333), - [sym_identifier] = ACTIONS(2294), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_default] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2294), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_with] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2294), - [anon_sym_in] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_debugger] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_case] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LTtemplate_GT] = ACTIONS(2294), - [anon_sym_GT] = ACTIONS(2294), - [anon_sym_DOT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_class] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_function] = ACTIONS(2294), - [anon_sym_QMARK_DOT] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_using] = ACTIONS(2294), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(2294), - [anon_sym_GT_GT_GT] = ACTIONS(2294), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_STAR_STAR] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_LT_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), - [anon_sym_GT_EQ] = ACTIONS(2294), - [anon_sym_QMARK_QMARK] = ACTIONS(2294), - [anon_sym_instanceof] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2294), - [anon_sym_delete] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_private_property_identifier] = ACTIONS(2294), - [sym_this] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_true] = ACTIONS(2294), - [sym_false] = ACTIONS(2294), - [sym_null] = ACTIONS(2294), - [sym_undefined] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_readonly] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2294), - [anon_sym_set] = ACTIONS(2294), - [anon_sym_declare] = ACTIONS(2294), - [anon_sym_public] = ACTIONS(2294), - [anon_sym_private] = ACTIONS(2294), - [anon_sym_protected] = ACTIONS(2294), - [anon_sym_override] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_any] = ACTIONS(2294), - [anon_sym_number] = ACTIONS(2294), - [anon_sym_boolean] = ACTIONS(2294), - [anon_sym_string] = ACTIONS(2294), - [anon_sym_symbol] = ACTIONS(2294), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_abstract] = ACTIONS(2294), - [anon_sym_satisfies] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), - [sym__automatic_semicolon] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2296), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [aux_sym_array_repeat1] = STATE(5790), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [334] = { [sym_comment] = STATE(334), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_in] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2298), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_QMARK_DOT] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = 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_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_satisfies] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2300), - [sym__ternary_qmark] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2253), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_debugger] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_case] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LTtemplate_GT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2255), + [anon_sym_DOT] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_QMARK_DOT] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2255), + [anon_sym_GT_GT] = ACTIONS(2255), + [anon_sym_GT_GT_GT] = ACTIONS(2255), + [anon_sym_LT_LT] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_CARET] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2255), + [anon_sym_STAR_STAR] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_LT_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2255), + [anon_sym_GT_EQ] = ACTIONS(2255), + [anon_sym_QMARK_QMARK] = ACTIONS(2255), + [anon_sym_instanceof] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2253), + [sym_number] = ACTIONS(2253), + [sym_private_property_identifier] = ACTIONS(2253), + [sym_this] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_null] = ACTIONS(2253), + [sym_undefined] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_satisfies] = ACTIONS(2255), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [sym__automatic_semicolon] = ACTIONS(2257), + [sym__ternary_qmark] = ACTIONS(2259), [sym_html_comment] = ACTIONS(5), }, [335] = { + [sym_statement_block] = STATE(432), [sym_comment] = STATE(335), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2308), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [336] = { [sym_comment] = STATE(336), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_in] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2310), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_QMARK_DOT] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2310), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_object] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_satisfies] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_var] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_switch] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_debugger] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_throw] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_case] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(2263), + [anon_sym_QMARK_DOT] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_using] = ACTIONS(2263), + [anon_sym_AMP_AMP] = ACTIONS(2265), + [anon_sym_PIPE_PIPE] = ACTIONS(2265), + [anon_sym_GT_GT] = ACTIONS(2265), + [anon_sym_GT_GT_GT] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_PERCENT] = ACTIONS(2265), + [anon_sym_STAR_STAR] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_LT_EQ] = ACTIONS(2265), + [anon_sym_EQ_EQ] = ACTIONS(2265), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2265), + [anon_sym_QMARK_QMARK] = ACTIONS(2265), + [anon_sym_instanceof] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2263), + [anon_sym_delete] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_private_property_identifier] = ACTIONS(2263), + [sym_this] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_undefined] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_get] = ACTIONS(2263), + [anon_sym_set] = ACTIONS(2263), + [anon_sym_declare] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_private] = ACTIONS(2263), + [anon_sym_protected] = ACTIONS(2263), + [anon_sym_override] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_any] = ACTIONS(2263), + [anon_sym_number] = ACTIONS(2263), + [anon_sym_boolean] = ACTIONS(2263), + [anon_sym_string] = ACTIONS(2263), + [anon_sym_symbol] = ACTIONS(2263), + [anon_sym_object] = ACTIONS(2263), + [anon_sym_abstract] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_satisfies] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [sym__automatic_semicolon] = ACTIONS(2267), + [sym__ternary_qmark] = ACTIONS(2269), [sym_html_comment] = ACTIONS(5), }, [337] = { + [sym_statement_block] = STATE(432), [sym_comment] = STATE(337), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_default] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_as] = ACTIONS(2314), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_typeof] = ACTIONS(2314), - [anon_sym_import] = ACTIONS(2314), - [anon_sym_with] = ACTIONS(2314), - [anon_sym_var] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_else] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(2314), - [anon_sym_in] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_debugger] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_throw] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_case] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LTtemplate_GT] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2314), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_function] = ACTIONS(2314), - [anon_sym_QMARK_DOT] = ACTIONS(2314), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_using] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2314), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2314), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_instanceof] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_void] = ACTIONS(2314), - [anon_sym_delete] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2314), - [sym_number] = ACTIONS(2314), - [sym_private_property_identifier] = ACTIONS(2314), - [sym_this] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_undefined] = ACTIONS(2314), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_public] = ACTIONS(2314), - [anon_sym_private] = ACTIONS(2314), - [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_any] = ACTIONS(2314), - [anon_sym_number] = ACTIONS(2314), - [anon_sym_boolean] = ACTIONS(2314), - [anon_sym_string] = ACTIONS(2314), - [anon_sym_symbol] = ACTIONS(2314), - [anon_sym_object] = ACTIONS(2314), - [anon_sym_abstract] = ACTIONS(2314), - [anon_sym_satisfies] = ACTIONS(2314), - [anon_sym_interface] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), - [sym__automatic_semicolon] = ACTIONS(2316), - [sym__ternary_qmark] = ACTIONS(2316), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2271), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [338] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_with] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_debugger] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LTtemplate_GT] = ACTIONS(2214), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_QMARK_DOT] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_STAR_STAR] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_instanceof] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2214), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_private_property_identifier] = ACTIONS(2214), - [sym_this] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_readonly] = ACTIONS(2214), - [anon_sym_get] = ACTIONS(2214), - [anon_sym_set] = ACTIONS(2214), - [anon_sym_declare] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_protected] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_any] = ACTIONS(2214), - [anon_sym_number] = ACTIONS(2214), - [anon_sym_boolean] = ACTIONS(2214), - [anon_sym_string] = ACTIONS(2214), - [anon_sym_symbol] = ACTIONS(2214), - [anon_sym_object] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_satisfies] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [sym__automatic_semicolon] = ACTIONS(2320), - [sym__ternary_qmark] = ACTIONS(2220), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [339] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_spread_element] = STATE(5793), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(339), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5788), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2324), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [sym_identifier] = ACTIONS(2273), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_debugger] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_case] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LTtemplate_GT] = ACTIONS(2273), + [anon_sym_GT] = ACTIONS(2275), + [anon_sym_DOT] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_QMARK_DOT] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2275), + [anon_sym_PIPE_PIPE] = ACTIONS(2275), + [anon_sym_GT_GT] = ACTIONS(2275), + [anon_sym_GT_GT_GT] = ACTIONS(2275), + [anon_sym_LT_LT] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_PERCENT] = ACTIONS(2275), + [anon_sym_STAR_STAR] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_LT_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2275), + [anon_sym_GT_EQ] = ACTIONS(2275), + [anon_sym_QMARK_QMARK] = ACTIONS(2275), + [anon_sym_instanceof] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_number] = ACTIONS(2273), + [sym_private_property_identifier] = ACTIONS(2273), + [sym_this] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_get] = ACTIONS(2273), + [anon_sym_set] = ACTIONS(2273), + [anon_sym_declare] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_private] = ACTIONS(2273), + [anon_sym_protected] = ACTIONS(2273), + [anon_sym_override] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_any] = ACTIONS(2273), + [anon_sym_number] = ACTIONS(2273), + [anon_sym_boolean] = ACTIONS(2273), + [anon_sym_string] = ACTIONS(2273), + [anon_sym_symbol] = ACTIONS(2273), + [anon_sym_object] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_satisfies] = ACTIONS(2275), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [sym__automatic_semicolon] = ACTIONS(2277), + [sym__ternary_qmark] = ACTIONS(2279), [sym_html_comment] = ACTIONS(5), }, [340] = { [sym_comment] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2182), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_debugger] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_case] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LTtemplate_GT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_QMARK_DOT] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_GT_GT] = ACTIONS(2283), + [anon_sym_GT_GT_GT] = ACTIONS(2283), + [anon_sym_LT_LT] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_SLASH] = ACTIONS(2281), + [anon_sym_PERCENT] = ACTIONS(2283), + [anon_sym_STAR_STAR] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_QMARK_QMARK] = ACTIONS(2283), + [anon_sym_instanceof] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_number] = ACTIONS(2281), + [sym_private_property_identifier] = ACTIONS(2281), + [sym_this] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_null] = ACTIONS(2281), + [sym_undefined] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_get] = ACTIONS(2281), + [anon_sym_set] = ACTIONS(2281), + [anon_sym_declare] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_private] = ACTIONS(2281), + [anon_sym_protected] = ACTIONS(2281), + [anon_sym_override] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_any] = ACTIONS(2281), + [anon_sym_number] = ACTIONS(2281), + [anon_sym_boolean] = ACTIONS(2281), + [anon_sym_string] = ACTIONS(2281), + [anon_sym_symbol] = ACTIONS(2281), + [anon_sym_object] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_satisfies] = ACTIONS(2283), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [sym__automatic_semicolon] = ACTIONS(2285), + [sym__ternary_qmark] = ACTIONS(2287), [sym_html_comment] = ACTIONS(5), }, [341] = { [sym_comment] = STATE(341), - [ts_builtin_sym_end] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_typeof] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_with] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_else] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_in] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_debugger] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LTtemplate_GT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_QMARK_DOT] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2194), - [anon_sym_GT_GT_GT] = ACTIONS(2194), - [anon_sym_LT_LT] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_STAR_STAR] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2194), - [anon_sym_QMARK_QMARK] = ACTIONS(2194), - [anon_sym_instanceof] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_void] = ACTIONS(2192), - [anon_sym_delete] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [sym_private_property_identifier] = ACTIONS(2192), - [sym_this] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_undefined] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_satisfies] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2334), - [sym__ternary_qmark] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_case] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LTtemplate_GT] = ACTIONS(2289), + [anon_sym_GT] = ACTIONS(2291), + [anon_sym_DOT] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_QMARK_DOT] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2291), + [anon_sym_PIPE_PIPE] = ACTIONS(2291), + [anon_sym_GT_GT] = ACTIONS(2291), + [anon_sym_GT_GT_GT] = ACTIONS(2291), + [anon_sym_LT_LT] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2291), + [anon_sym_STAR_STAR] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2291), + [anon_sym_GT_EQ] = ACTIONS(2291), + [anon_sym_QMARK_QMARK] = ACTIONS(2291), + [anon_sym_instanceof] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = 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), + [sym_number] = ACTIONS(2289), + [sym_private_property_identifier] = ACTIONS(2289), + [sym_this] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [sym_undefined] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_override] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_object] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_satisfies] = ACTIONS(2291), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2293), + [sym__ternary_qmark] = ACTIONS(2295), [sym_html_comment] = ACTIONS(5), }, [342] = { + [sym_statement_block] = STATE(432), [sym_comment] = STATE(342), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_as] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_in] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_case] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_QMARK_DOT] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(2172), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_GT_GT] = ACTIONS(2172), - [anon_sym_GT_GT_GT] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_STAR_STAR] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_LT_EQ] = ACTIONS(2172), - [anon_sym_EQ_EQ] = ACTIONS(2172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2172), - [anon_sym_GT_EQ] = ACTIONS(2172), - [anon_sym_QMARK_QMARK] = ACTIONS(2172), - [anon_sym_instanceof] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_satisfies] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [sym__automatic_semicolon] = ACTIONS(2174), - [sym__ternary_qmark] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [343] = { [sym_comment] = STATE(343), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_as] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_QMARK_DOT] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2250), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_QMARK_QMARK] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_satisfies] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2252), - [sym__ternary_qmark] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_COMMA] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_in] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_debugger] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_QMARK_DOT] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_PIPE_PIPE] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2301), + [anon_sym_GT_GT_GT] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_CARET] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_PERCENT] = ACTIONS(2301), + [anon_sym_STAR_STAR] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2301), + [anon_sym_GT_EQ] = ACTIONS(2301), + [anon_sym_QMARK_QMARK] = ACTIONS(2301), + [anon_sym_instanceof] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_private_property_identifier] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_undefined] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_declare] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_private] = ACTIONS(2299), + [anon_sym_protected] = ACTIONS(2299), + [anon_sym_override] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_any] = ACTIONS(2299), + [anon_sym_number] = ACTIONS(2299), + [anon_sym_boolean] = ACTIONS(2299), + [anon_sym_string] = ACTIONS(2299), + [anon_sym_symbol] = ACTIONS(2299), + [anon_sym_object] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_satisfies] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [sym__automatic_semicolon] = ACTIONS(2303), + [sym__ternary_qmark] = ACTIONS(2305), [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3254), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(344), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [anon_sym_extends] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_var] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_debugger] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2309), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_instanceof] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_private_property_identifier] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_undefined] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_abstract] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_satisfies] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [sym__automatic_semicolon] = ACTIONS(2311), + [sym__ternary_qmark] = ACTIONS(2313), [sym_html_comment] = ACTIONS(5), }, [345] = { [sym_comment] = STATE(345), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_STAR_STAR] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_instanceof] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2315), + [sym__ternary_qmark] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [346] = { [sym_comment] = STATE(346), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2152), - [anon_sym_PIPE_PIPE] = ACTIONS(2152), - [anon_sym_GT_GT] = ACTIONS(2152), - [anon_sym_GT_GT_GT] = ACTIONS(2152), - [anon_sym_LT_LT] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2152), - [anon_sym_STAR_STAR] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2152), - [anon_sym_EQ_EQ] = ACTIONS(2152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2152), - [anon_sym_GT_EQ] = ACTIONS(2152), - [anon_sym_QMARK_QMARK] = ACTIONS(2152), - [anon_sym_instanceof] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2154), - [sym__ternary_qmark] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_in] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_debugger] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LTtemplate_GT] = ACTIONS(2317), + [anon_sym_GT] = ACTIONS(2319), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_QMARK_DOT] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_GT_GT] = ACTIONS(2319), + [anon_sym_GT_GT_GT] = ACTIONS(2319), + [anon_sym_LT_LT] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_CARET] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_SLASH] = ACTIONS(2317), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_STAR_STAR] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_LT_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2319), + [anon_sym_GT_EQ] = ACTIONS(2319), + [anon_sym_QMARK_QMARK] = ACTIONS(2319), + [anon_sym_instanceof] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_undefined] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_get] = ACTIONS(2317), + [anon_sym_set] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_override] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_any] = ACTIONS(2317), + [anon_sym_number] = ACTIONS(2317), + [anon_sym_boolean] = ACTIONS(2317), + [anon_sym_string] = ACTIONS(2317), + [anon_sym_symbol] = ACTIONS(2317), + [anon_sym_object] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_satisfies] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [sym__automatic_semicolon] = ACTIONS(2321), + [sym__ternary_qmark] = ACTIONS(2323), [sym_html_comment] = ACTIONS(5), }, [347] = { [sym_comment] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_instanceof] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_satisfies] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2338), - [sym__ternary_qmark] = ACTIONS(2146), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_STAR_STAR] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_QMARK_QMARK] = ACTIONS(2147), + [anon_sym_instanceof] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_satisfies] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2325), + [sym__ternary_qmark] = ACTIONS(2169), [sym_html_comment] = ACTIONS(5), }, [348] = { [sym_comment] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_in] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2298), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_QMARK_DOT] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = 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_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_satisfies] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2300), - [sym__ternary_qmark] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2329), + [anon_sym_DOT] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_QMARK_DOT] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2329), + [anon_sym_PIPE_PIPE] = ACTIONS(2329), + [anon_sym_GT_GT] = ACTIONS(2329), + [anon_sym_GT_GT_GT] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_CARET] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2329), + [anon_sym_STAR_STAR] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_LT_EQ] = ACTIONS(2329), + [anon_sym_EQ_EQ] = ACTIONS(2329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2329), + [anon_sym_GT_EQ] = ACTIONS(2329), + [anon_sym_QMARK_QMARK] = ACTIONS(2329), + [anon_sym_instanceof] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_satisfies] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [sym__automatic_semicolon] = ACTIONS(2331), + [sym__ternary_qmark] = ACTIONS(2333), [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_statement_block] = STATE(428), [sym_comment] = STATE(349), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_case] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_QMARK_DOT] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2337), + [anon_sym_PIPE_PIPE] = ACTIONS(2337), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_GT_GT_GT] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2337), + [anon_sym_STAR_STAR] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_EQ_EQ] = ACTIONS(2337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2337), + [anon_sym_GT_EQ] = ACTIONS(2337), + [anon_sym_QMARK_QMARK] = ACTIONS(2337), + [anon_sym_instanceof] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_private_property_identifier] = ACTIONS(2335), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_satisfies] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2339), + [sym__ternary_qmark] = ACTIONS(2341), [sym_html_comment] = ACTIONS(5), }, [350] = { - [sym_statement_block] = STATE(428), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3192), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), + [anon_sym_extends] = ACTIONS(2092), [sym_html_comment] = ACTIONS(5), }, [351] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2573), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(351), - [sym_identifier] = ACTIONS(2294), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_default] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2294), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_with] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2294), - [anon_sym_in] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_debugger] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_case] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LTtemplate_GT] = ACTIONS(2294), - [anon_sym_GT] = ACTIONS(2294), - [anon_sym_DOT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_class] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_function] = ACTIONS(2294), - [anon_sym_QMARK_DOT] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_using] = ACTIONS(2294), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(2294), - [anon_sym_GT_GT_GT] = ACTIONS(2294), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_STAR_STAR] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_LT_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), - [anon_sym_GT_EQ] = ACTIONS(2294), - [anon_sym_QMARK_QMARK] = ACTIONS(2294), - [anon_sym_instanceof] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2294), - [anon_sym_delete] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_private_property_identifier] = ACTIONS(2294), - [sym_this] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_true] = ACTIONS(2294), - [sym_false] = ACTIONS(2294), - [sym_null] = ACTIONS(2294), - [sym_undefined] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_readonly] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2294), - [anon_sym_set] = ACTIONS(2294), - [anon_sym_declare] = ACTIONS(2294), - [anon_sym_public] = ACTIONS(2294), - [anon_sym_private] = ACTIONS(2294), - [anon_sym_protected] = ACTIONS(2294), - [anon_sym_override] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_any] = ACTIONS(2294), - [anon_sym_number] = ACTIONS(2294), - [anon_sym_boolean] = ACTIONS(2294), - [anon_sym_string] = ACTIONS(2294), - [anon_sym_symbol] = ACTIONS(2294), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_abstract] = ACTIONS(2294), - [anon_sym_satisfies] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), - [sym__automatic_semicolon] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2296), - [sym_html_comment] = ACTIONS(5), - }, - [352] = { - [sym_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LTtemplate_GT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_DOT] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_PIPE_PIPE] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(2158), - [anon_sym_GT_GT_GT] = ACTIONS(2158), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_CARET] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_STAR_STAR] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), - [anon_sym_GT_EQ] = ACTIONS(2158), - [anon_sym_QMARK_QMARK] = ACTIONS(2158), - [anon_sym_instanceof] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_private_property_identifier] = ACTIONS(2156), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_satisfies] = ACTIONS(2158), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [sym__automatic_semicolon] = ACTIONS(2346), - [sym__ternary_qmark] = ACTIONS(2162), - [sym_html_comment] = ACTIONS(5), - }, - [353] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(353), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(2092), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_GT] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [anon_sym_extends] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [anon_sym_extends] = ACTIONS(2092), + [sym_html_comment] = ACTIONS(5), + }, + [352] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(352), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(2018), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5004), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_accessibility_modifier] = STATE(384), + [sym_override_modifier] = STATE(444), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2345), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2347), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [353] = { + [sym_comment] = STATE(353), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2183), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_STAR_STAR] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_QMARK_QMARK] = ACTIONS(2183), + [anon_sym_instanceof] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_satisfies] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [354] = { [sym_comment] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2164), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_with] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_else] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_do] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_debugger] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LTtemplate_GT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_QMARK_QMARK] = ACTIONS(2166), - [anon_sym_instanceof] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_void] = ACTIONS(2164), - [anon_sym_delete] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_number] = ACTIONS(2164), - [sym_private_property_identifier] = ACTIONS(2164), - [sym_this] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_satisfies] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2170), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2349), + [sym__ternary_qmark] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [355] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2712), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_spread_element] = STATE(5838), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(355), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5839), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2352), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [sym_identifier] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_COMMA] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_in] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_debugger] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_QMARK_DOT] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_PIPE_PIPE] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2301), + [anon_sym_GT_GT_GT] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_CARET] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_PERCENT] = ACTIONS(2301), + [anon_sym_STAR_STAR] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2301), + [anon_sym_GT_EQ] = ACTIONS(2301), + [anon_sym_QMARK_QMARK] = ACTIONS(2301), + [anon_sym_instanceof] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_private_property_identifier] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_undefined] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_declare] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_private] = ACTIONS(2299), + [anon_sym_protected] = ACTIONS(2299), + [anon_sym_override] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_any] = ACTIONS(2299), + [anon_sym_number] = ACTIONS(2299), + [anon_sym_boolean] = ACTIONS(2299), + [anon_sym_string] = ACTIONS(2299), + [anon_sym_symbol] = ACTIONS(2299), + [anon_sym_object] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_satisfies] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [sym__automatic_semicolon] = ACTIONS(2351), + [sym__ternary_qmark] = ACTIONS(2305), [sym_html_comment] = ACTIONS(5), }, [356] = { + [sym_import] = STATE(4249), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(356), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_default] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_as] = ACTIONS(2314), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_typeof] = ACTIONS(2314), - [anon_sym_import] = ACTIONS(2314), - [anon_sym_with] = ACTIONS(2314), - [anon_sym_var] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(2314), - [anon_sym_in] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_debugger] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_throw] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_case] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LTtemplate_GT] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2314), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_function] = ACTIONS(2314), - [anon_sym_QMARK_DOT] = ACTIONS(2314), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_using] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2314), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2314), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_instanceof] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_void] = ACTIONS(2314), - [anon_sym_delete] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2314), - [sym_number] = ACTIONS(2314), - [sym_private_property_identifier] = ACTIONS(2314), - [sym_this] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_undefined] = ACTIONS(2314), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_public] = ACTIONS(2314), - [anon_sym_private] = ACTIONS(2314), - [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_any] = ACTIONS(2314), - [anon_sym_number] = ACTIONS(2314), - [anon_sym_boolean] = ACTIONS(2314), - [anon_sym_string] = ACTIONS(2314), - [anon_sym_symbol] = ACTIONS(2314), - [anon_sym_object] = ACTIONS(2314), - [anon_sym_abstract] = ACTIONS(2314), - [anon_sym_satisfies] = ACTIONS(2314), - [anon_sym_interface] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), - [sym__automatic_semicolon] = ACTIONS(2316), - [sym__ternary_qmark] = ACTIONS(2316), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2353), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [357] = { + [sym_import] = STATE(4175), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_with] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_debugger] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LTtemplate_GT] = ACTIONS(2222), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_DOT] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_QMARK_DOT] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_STAR_STAR] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_QMARK_QMARK] = ACTIONS(2224), - [anon_sym_instanceof] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2222), - [anon_sym_delete] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_private_property_identifier] = ACTIONS(2222), - [sym_this] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_undefined] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_readonly] = ACTIONS(2222), - [anon_sym_get] = ACTIONS(2222), - [anon_sym_set] = ACTIONS(2222), - [anon_sym_declare] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_protected] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_any] = ACTIONS(2222), - [anon_sym_number] = ACTIONS(2222), - [anon_sym_boolean] = ACTIONS(2222), - [anon_sym_string] = ACTIONS(2222), - [anon_sym_symbol] = ACTIONS(2222), - [anon_sym_object] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_satisfies] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [sym__automatic_semicolon] = ACTIONS(2356), - [sym__ternary_qmark] = ACTIONS(2228), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(2355), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [358] = { [sym_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2230), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2232), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2230), - [anon_sym_import] = ACTIONS(2230), - [anon_sym_with] = ACTIONS(2230), - [anon_sym_var] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LTtemplate_GT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_DOT] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_PIPE_PIPE] = ACTIONS(2232), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2232), - [anon_sym_STAR_STAR] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2232), - [anon_sym_EQ_EQ] = ACTIONS(2232), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2232), - [anon_sym_QMARK_QMARK] = ACTIONS(2232), - [anon_sym_instanceof] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_private_property_identifier] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_undefined] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_satisfies] = ACTIONS(2232), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2360), - [sym__ternary_qmark] = ACTIONS(2236), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_satisfies] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2201), + [sym__ternary_qmark] = ACTIONS(2201), [sym_html_comment] = ACTIONS(5), }, [359] = { - [sym_statement_block] = STATE(428), [sym_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_satisfies] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [sym__automatic_semicolon] = ACTIONS(2128), - [sym__ternary_qmark] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_STAR_STAR] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_QMARK_QMARK] = ACTIONS(2147), + [anon_sym_instanceof] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_satisfies] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2359), + [sym__ternary_qmark] = ACTIONS(2169), [sym_html_comment] = ACTIONS(5), }, [360] = { [sym_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_QMARK_DOT] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_satisfies] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2366), - [sym__ternary_qmark] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_in] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_debugger] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LTtemplate_GT] = ACTIONS(2317), + [anon_sym_GT] = ACTIONS(2319), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_QMARK_DOT] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_GT_GT] = ACTIONS(2319), + [anon_sym_GT_GT_GT] = ACTIONS(2319), + [anon_sym_LT_LT] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_CARET] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_SLASH] = ACTIONS(2317), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_STAR_STAR] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_LT_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2319), + [anon_sym_GT_EQ] = ACTIONS(2319), + [anon_sym_QMARK_QMARK] = ACTIONS(2319), + [anon_sym_instanceof] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_undefined] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_get] = ACTIONS(2317), + [anon_sym_set] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_override] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_any] = ACTIONS(2317), + [anon_sym_number] = ACTIONS(2317), + [anon_sym_boolean] = ACTIONS(2317), + [anon_sym_string] = ACTIONS(2317), + [anon_sym_symbol] = ACTIONS(2317), + [anon_sym_object] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_satisfies] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [sym__automatic_semicolon] = ACTIONS(2361), + [sym__ternary_qmark] = ACTIONS(2323), [sym_html_comment] = ACTIONS(5), }, [361] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2697), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_spread_element] = STATE(5809), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(361), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5816), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2368), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_debugger] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_STAR_STAR] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_QMARK_QMARK] = ACTIONS(2219), + [anon_sym_instanceof] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_delete] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_private_property_identifier] = ACTIONS(2219), + [sym_this] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_null] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_abstract] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_satisfies] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [sym__automatic_semicolon] = ACTIONS(2221), + [sym__ternary_qmark] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, [362] = { + [sym_import] = STATE(4257), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(2296), - [sym_identifier] = ACTIONS(2294), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2294), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_with] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2294), - [anon_sym_in] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_debugger] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LTtemplate_GT] = ACTIONS(2294), - [anon_sym_GT] = ACTIONS(2294), - [anon_sym_DOT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_class] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_function] = ACTIONS(2294), - [anon_sym_QMARK_DOT] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_using] = ACTIONS(2294), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(2294), - [anon_sym_GT_GT_GT] = ACTIONS(2294), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_STAR_STAR] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_LT_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), - [anon_sym_GT_EQ] = ACTIONS(2294), - [anon_sym_QMARK_QMARK] = ACTIONS(2294), - [anon_sym_instanceof] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2294), - [anon_sym_delete] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_private_property_identifier] = ACTIONS(2294), - [sym_this] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_true] = ACTIONS(2294), - [sym_false] = ACTIONS(2294), - [sym_null] = ACTIONS(2294), - [sym_undefined] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_readonly] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2294), - [anon_sym_set] = ACTIONS(2294), - [anon_sym_declare] = ACTIONS(2294), - [anon_sym_public] = ACTIONS(2294), - [anon_sym_private] = ACTIONS(2294), - [anon_sym_protected] = ACTIONS(2294), - [anon_sym_override] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_any] = ACTIONS(2294), - [anon_sym_number] = ACTIONS(2294), - [anon_sym_boolean] = ACTIONS(2294), - [anon_sym_string] = ACTIONS(2294), - [anon_sym_symbol] = ACTIONS(2294), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_abstract] = ACTIONS(2294), - [anon_sym_satisfies] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), - [sym__automatic_semicolon] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2296), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2363), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [363] = { [sym_comment] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_as] = ACTIONS(2270), - [anon_sym_namespace] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_COMMA] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_typeof] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_with] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_else] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(2268), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_debugger] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LTtemplate_GT] = ACTIONS(2268), - [anon_sym_GT] = ACTIONS(2270), - [anon_sym_DOT] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_QMARK_DOT] = ACTIONS(2270), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2270), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_PERCENT] = ACTIONS(2270), - [anon_sym_STAR_STAR] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_LT_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), - [anon_sym_GT_EQ] = ACTIONS(2270), - [anon_sym_QMARK_QMARK] = ACTIONS(2270), - [anon_sym_instanceof] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2268), - [anon_sym_void] = ACTIONS(2268), - [anon_sym_delete] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2268), - [sym_number] = ACTIONS(2268), - [sym_private_property_identifier] = ACTIONS(2268), - [sym_this] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_readonly] = ACTIONS(2268), - [anon_sym_get] = ACTIONS(2268), - [anon_sym_set] = ACTIONS(2268), - [anon_sym_declare] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_protected] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_any] = ACTIONS(2268), - [anon_sym_number] = ACTIONS(2268), - [anon_sym_boolean] = ACTIONS(2268), - [anon_sym_string] = ACTIONS(2268), - [anon_sym_symbol] = ACTIONS(2268), - [anon_sym_object] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_satisfies] = ACTIONS(2270), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_case] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_QMARK_DOT] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2337), + [anon_sym_PIPE_PIPE] = ACTIONS(2337), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_GT_GT_GT] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2337), + [anon_sym_STAR_STAR] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_EQ_EQ] = ACTIONS(2337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2337), + [anon_sym_GT_EQ] = ACTIONS(2337), + [anon_sym_QMARK_QMARK] = ACTIONS(2337), + [anon_sym_instanceof] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_private_property_identifier] = ACTIONS(2335), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_satisfies] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2365), + [sym__ternary_qmark] = ACTIONS(2341), [sym_html_comment] = ACTIONS(5), }, [364] = { [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_DOT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_QMARK_DOT] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_PIPE_PIPE] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2200), - [anon_sym_GT_GT_GT] = ACTIONS(2200), - [anon_sym_LT_LT] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2200), - [anon_sym_STAR_STAR] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_LT_EQ] = ACTIONS(2200), - [anon_sym_EQ_EQ] = ACTIONS(2200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2200), - [anon_sym_GT_EQ] = ACTIONS(2200), - [anon_sym_QMARK_QMARK] = ACTIONS(2200), - [anon_sym_instanceof] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_satisfies] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [sym__automatic_semicolon] = ACTIONS(2202), - [sym__ternary_qmark] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_debugger] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_case] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LTtemplate_GT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_QMARK_DOT] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_GT_GT] = ACTIONS(2283), + [anon_sym_GT_GT_GT] = ACTIONS(2283), + [anon_sym_LT_LT] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_SLASH] = ACTIONS(2281), + [anon_sym_PERCENT] = ACTIONS(2283), + [anon_sym_STAR_STAR] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_QMARK_QMARK] = ACTIONS(2283), + [anon_sym_instanceof] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_number] = ACTIONS(2281), + [sym_private_property_identifier] = ACTIONS(2281), + [sym_this] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_null] = ACTIONS(2281), + [sym_undefined] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_get] = ACTIONS(2281), + [anon_sym_set] = ACTIONS(2281), + [anon_sym_declare] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_private] = ACTIONS(2281), + [anon_sym_protected] = ACTIONS(2281), + [anon_sym_override] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_any] = ACTIONS(2281), + [anon_sym_number] = ACTIONS(2281), + [anon_sym_boolean] = ACTIONS(2281), + [anon_sym_string] = ACTIONS(2281), + [anon_sym_symbol] = ACTIONS(2281), + [anon_sym_object] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_satisfies] = ACTIONS(2283), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [sym__automatic_semicolon] = ACTIONS(2367), + [sym__ternary_qmark] = ACTIONS(2287), [sym_html_comment] = ACTIONS(5), }, [365] = { [sym_comment] = STATE(365), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_as] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_DOT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_GT_GT] = ACTIONS(2138), - [anon_sym_GT_GT_GT] = ACTIONS(2138), - [anon_sym_LT_LT] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_CARET] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2138), - [anon_sym_STAR_STAR] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), - [anon_sym_GT_EQ] = ACTIONS(2138), - [anon_sym_QMARK_QMARK] = ACTIONS(2138), - [anon_sym_instanceof] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_satisfies] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2374), - [sym__ternary_qmark] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2273), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_debugger] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_case] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LTtemplate_GT] = ACTIONS(2273), + [anon_sym_GT] = ACTIONS(2275), + [anon_sym_DOT] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_QMARK_DOT] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2275), + [anon_sym_PIPE_PIPE] = ACTIONS(2275), + [anon_sym_GT_GT] = ACTIONS(2275), + [anon_sym_GT_GT_GT] = ACTIONS(2275), + [anon_sym_LT_LT] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_PERCENT] = ACTIONS(2275), + [anon_sym_STAR_STAR] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_LT_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2275), + [anon_sym_GT_EQ] = ACTIONS(2275), + [anon_sym_QMARK_QMARK] = ACTIONS(2275), + [anon_sym_instanceof] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_number] = ACTIONS(2273), + [sym_private_property_identifier] = ACTIONS(2273), + [sym_this] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_get] = ACTIONS(2273), + [anon_sym_set] = ACTIONS(2273), + [anon_sym_declare] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_private] = ACTIONS(2273), + [anon_sym_protected] = ACTIONS(2273), + [anon_sym_override] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_any] = ACTIONS(2273), + [anon_sym_number] = ACTIONS(2273), + [anon_sym_boolean] = ACTIONS(2273), + [anon_sym_string] = ACTIONS(2273), + [anon_sym_symbol] = ACTIONS(2273), + [anon_sym_object] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_satisfies] = ACTIONS(2275), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [sym__automatic_semicolon] = ACTIONS(2369), + [sym__ternary_qmark] = ACTIONS(2279), [sym_html_comment] = ACTIONS(5), }, [366] = { [sym_comment] = STATE(366), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_in] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2310), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_QMARK_DOT] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2310), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_object] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_satisfies] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2312), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2253), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_debugger] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LTtemplate_GT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2255), + [anon_sym_DOT] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_QMARK_DOT] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2255), + [anon_sym_GT_GT] = ACTIONS(2255), + [anon_sym_GT_GT_GT] = ACTIONS(2255), + [anon_sym_LT_LT] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_CARET] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2255), + [anon_sym_STAR_STAR] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_LT_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2255), + [anon_sym_GT_EQ] = ACTIONS(2255), + [anon_sym_QMARK_QMARK] = ACTIONS(2255), + [anon_sym_instanceof] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2253), + [sym_number] = ACTIONS(2253), + [sym_private_property_identifier] = ACTIONS(2253), + [sym_this] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_null] = ACTIONS(2253), + [sym_undefined] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_satisfies] = ACTIONS(2255), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [sym__automatic_semicolon] = ACTIONS(2373), + [sym__ternary_qmark] = ACTIONS(2259), [sym_html_comment] = ACTIONS(5), }, [367] = { [sym_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LTtemplate_GT] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2278), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_QMARK_DOT] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2278), - [anon_sym_PIPE_PIPE] = ACTIONS(2278), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2278), - [anon_sym_LT_LT] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_PERCENT] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_LT_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), - [anon_sym_GT_EQ] = ACTIONS(2278), - [anon_sym_QMARK_QMARK] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2276), - [sym_number] = ACTIONS(2276), - [sym_private_property_identifier] = ACTIONS(2276), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_object] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_satisfies] = ACTIONS(2278), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2378), - [sym__ternary_qmark] = ACTIONS(2282), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_var] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_switch] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_debugger] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_throw] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(2263), + [anon_sym_QMARK_DOT] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_using] = ACTIONS(2263), + [anon_sym_AMP_AMP] = ACTIONS(2265), + [anon_sym_PIPE_PIPE] = ACTIONS(2265), + [anon_sym_GT_GT] = ACTIONS(2265), + [anon_sym_GT_GT_GT] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_PERCENT] = ACTIONS(2265), + [anon_sym_STAR_STAR] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_LT_EQ] = ACTIONS(2265), + [anon_sym_EQ_EQ] = ACTIONS(2265), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2265), + [anon_sym_QMARK_QMARK] = ACTIONS(2265), + [anon_sym_instanceof] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2263), + [anon_sym_delete] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_private_property_identifier] = ACTIONS(2263), + [sym_this] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_undefined] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_get] = ACTIONS(2263), + [anon_sym_set] = ACTIONS(2263), + [anon_sym_declare] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_private] = ACTIONS(2263), + [anon_sym_protected] = ACTIONS(2263), + [anon_sym_override] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_any] = ACTIONS(2263), + [anon_sym_number] = ACTIONS(2263), + [anon_sym_boolean] = ACTIONS(2263), + [anon_sym_string] = ACTIONS(2263), + [anon_sym_symbol] = ACTIONS(2263), + [anon_sym_object] = ACTIONS(2263), + [anon_sym_abstract] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_satisfies] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [sym__automatic_semicolon] = ACTIONS(2377), + [sym__ternary_qmark] = ACTIONS(2269), [sym_html_comment] = ACTIONS(5), }, [368] = { [sym_comment] = STATE(368), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LTtemplate_GT] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_QMARK_DOT] = ACTIONS(2286), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2284), - [sym_number] = ACTIONS(2284), - [sym_private_property_identifier] = ACTIONS(2284), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_object] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_satisfies] = ACTIONS(2286), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2382), - [sym__ternary_qmark] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_var] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_debugger] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2309), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_instanceof] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_private_property_identifier] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_undefined] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_abstract] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_satisfies] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [sym__automatic_semicolon] = ACTIONS(2379), + [sym__ternary_qmark] = ACTIONS(2313), [sym_html_comment] = ACTIONS(5), }, [369] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(369), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(2057), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5001), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_accessibility_modifier] = STATE(461), - [sym_override_modifier] = STATE(463), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(1994), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2386), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2388), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2329), + [anon_sym_DOT] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_QMARK_DOT] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2329), + [anon_sym_PIPE_PIPE] = ACTIONS(2329), + [anon_sym_GT_GT] = ACTIONS(2329), + [anon_sym_GT_GT_GT] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_CARET] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2329), + [anon_sym_STAR_STAR] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_LT_EQ] = ACTIONS(2329), + [anon_sym_EQ_EQ] = ACTIONS(2329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2329), + [anon_sym_GT_EQ] = ACTIONS(2329), + [anon_sym_QMARK_QMARK] = ACTIONS(2329), + [anon_sym_instanceof] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_satisfies] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [sym__automatic_semicolon] = ACTIONS(2383), + [sym__ternary_qmark] = ACTIONS(2333), [sym_html_comment] = ACTIONS(5), }, [370] = { + [sym_import] = STATE(4175), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2573), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(370), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_in] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2298), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_QMARK_DOT] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = 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_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_satisfies] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2300), - [sym__ternary_qmark] = ACTIONS(2300), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(2385), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [371] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2743), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_spread_element] = STATE(6091), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(371), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(6092), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2390), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_var] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_else] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_debugger] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(2161), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_QMARK_QMARK] = ACTIONS(2163), + [anon_sym_instanceof] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2161), + [anon_sym_delete] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_number] = ACTIONS(2161), + [sym_private_property_identifier] = ACTIONS(2161), + [sym_this] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [sym_undefined] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_get] = ACTIONS(2161), + [anon_sym_set] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_private] = ACTIONS(2161), + [anon_sym_protected] = ACTIONS(2161), + [anon_sym_override] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_any] = ACTIONS(2161), + [anon_sym_number] = ACTIONS(2161), + [anon_sym_boolean] = ACTIONS(2161), + [anon_sym_string] = ACTIONS(2161), + [anon_sym_symbol] = ACTIONS(2161), + [anon_sym_object] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_satisfies] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym__automatic_semicolon] = ACTIONS(2389), + [sym__ternary_qmark] = ACTIONS(2167), [sym_html_comment] = ACTIONS(5), }, [372] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_spread_element] = STATE(5772), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(372), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_typeof] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_with] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_in] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_debugger] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_case] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LTtemplate_GT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_QMARK_DOT] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2194), - [anon_sym_GT_GT_GT] = ACTIONS(2194), - [anon_sym_LT_LT] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_STAR_STAR] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2194), - [anon_sym_QMARK_QMARK] = ACTIONS(2194), - [anon_sym_instanceof] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_void] = ACTIONS(2192), - [anon_sym_delete] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [sym_private_property_identifier] = ACTIONS(2192), - [sym_this] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_undefined] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_satisfies] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2392), - [sym__ternary_qmark] = ACTIONS(2198), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2391), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(2391), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2393), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [373] = { [sym_comment] = STATE(373), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2394), - [sym__ternary_qmark] = ACTIONS(2182), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_case] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LTtemplate_GT] = ACTIONS(2289), + [anon_sym_GT] = ACTIONS(2291), + [anon_sym_DOT] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_QMARK_DOT] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2291), + [anon_sym_PIPE_PIPE] = ACTIONS(2291), + [anon_sym_GT_GT] = ACTIONS(2291), + [anon_sym_GT_GT_GT] = ACTIONS(2291), + [anon_sym_LT_LT] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2291), + [anon_sym_STAR_STAR] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2291), + [anon_sym_GT_EQ] = ACTIONS(2291), + [anon_sym_QMARK_QMARK] = ACTIONS(2291), + [anon_sym_instanceof] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = 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), + [sym_number] = ACTIONS(2289), + [sym_private_property_identifier] = ACTIONS(2289), + [sym_this] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [sym_undefined] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_override] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_object] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_satisfies] = ACTIONS(2291), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2395), + [sym__ternary_qmark] = ACTIONS(2295), [sym_html_comment] = ACTIONS(5), }, [374] = { + [sym_import] = STATE(4257), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3192), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_as] = ACTIONS(2314), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_typeof] = ACTIONS(2314), - [anon_sym_import] = ACTIONS(2314), - [anon_sym_with] = ACTIONS(2314), - [anon_sym_var] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_else] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(2314), - [anon_sym_in] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_debugger] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_throw] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LTtemplate_GT] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2314), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_function] = ACTIONS(2314), - [anon_sym_QMARK_DOT] = ACTIONS(2314), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_using] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2314), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2314), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_instanceof] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_void] = ACTIONS(2314), - [anon_sym_delete] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2314), - [sym_number] = ACTIONS(2314), - [sym_private_property_identifier] = ACTIONS(2314), - [sym_this] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_undefined] = ACTIONS(2314), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_public] = ACTIONS(2314), - [anon_sym_private] = ACTIONS(2314), - [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_any] = ACTIONS(2314), - [anon_sym_number] = ACTIONS(2314), - [anon_sym_boolean] = ACTIONS(2314), - [anon_sym_string] = ACTIONS(2314), - [anon_sym_symbol] = ACTIONS(2314), - [anon_sym_object] = ACTIONS(2314), - [anon_sym_abstract] = ACTIONS(2314), - [anon_sym_satisfies] = ACTIONS(2314), - [anon_sym_interface] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), - [sym__automatic_semicolon] = ACTIONS(2316), - [sym__ternary_qmark] = ACTIONS(2316), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [375] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2768), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_spread_element] = STATE(6270), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(375), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(6271), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_var] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_debugger] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_case] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(2161), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_QMARK_QMARK] = ACTIONS(2163), + [anon_sym_instanceof] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2161), + [anon_sym_delete] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_number] = ACTIONS(2161), + [sym_private_property_identifier] = ACTIONS(2161), + [sym_this] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [sym_undefined] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_get] = ACTIONS(2161), + [anon_sym_set] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_private] = ACTIONS(2161), + [anon_sym_protected] = ACTIONS(2161), + [anon_sym_override] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_any] = ACTIONS(2161), + [anon_sym_number] = ACTIONS(2161), + [anon_sym_boolean] = ACTIONS(2161), + [anon_sym_string] = ACTIONS(2161), + [anon_sym_symbol] = ACTIONS(2161), + [anon_sym_object] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_satisfies] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym__automatic_semicolon] = ACTIONS(2399), + [sym__ternary_qmark] = ACTIONS(2167), [sym_html_comment] = ACTIONS(5), }, [376] = { [sym_comment] = STATE(376), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_case] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_DOT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_QMARK_DOT] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_PIPE_PIPE] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2200), - [anon_sym_GT_GT_GT] = ACTIONS(2200), - [anon_sym_LT_LT] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2200), - [anon_sym_STAR_STAR] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_LT_EQ] = ACTIONS(2200), - [anon_sym_EQ_EQ] = ACTIONS(2200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2200), - [anon_sym_GT_EQ] = ACTIONS(2200), - [anon_sym_QMARK_QMARK] = ACTIONS(2200), - [anon_sym_instanceof] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_satisfies] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [sym__automatic_semicolon] = ACTIONS(2202), - [sym__ternary_qmark] = ACTIONS(2202), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_typeof] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_in] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2209), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_STAR_STAR] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_QMARK_QMARK] = ACTIONS(2209), + [anon_sym_instanceof] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2209), + [anon_sym_delete] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(2209), + [sym_this] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_null] = ACTIONS(2209), + [sym_undefined] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_declare] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_protected] = ACTIONS(2209), + [anon_sym_override] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_any] = ACTIONS(2209), + [anon_sym_number] = ACTIONS(2209), + [anon_sym_boolean] = ACTIONS(2209), + [anon_sym_string] = ACTIONS(2209), + [anon_sym_symbol] = ACTIONS(2209), + [anon_sym_object] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_satisfies] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [sym__automatic_semicolon] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, [377] = { [sym_comment] = STATE(377), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LTtemplate_GT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_DOT] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_PIPE_PIPE] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(2158), - [anon_sym_GT_GT_GT] = ACTIONS(2158), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_CARET] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_STAR_STAR] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), - [anon_sym_GT_EQ] = ACTIONS(2158), - [anon_sym_QMARK_QMARK] = ACTIONS(2158), - [anon_sym_instanceof] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_private_property_identifier] = ACTIONS(2156), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_satisfies] = ACTIONS(2158), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [sym__automatic_semicolon] = ACTIONS(2398), - [sym__ternary_qmark] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2329), + [anon_sym_DOT] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_QMARK_DOT] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2329), + [anon_sym_PIPE_PIPE] = ACTIONS(2329), + [anon_sym_GT_GT] = ACTIONS(2329), + [anon_sym_GT_GT_GT] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_CARET] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2329), + [anon_sym_STAR_STAR] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_LT_EQ] = ACTIONS(2329), + [anon_sym_EQ_EQ] = ACTIONS(2329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2329), + [anon_sym_GT_EQ] = ACTIONS(2329), + [anon_sym_QMARK_QMARK] = ACTIONS(2329), + [anon_sym_instanceof] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_satisfies] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [sym__automatic_semicolon] = ACTIONS(2401), + [sym__ternary_qmark] = ACTIONS(2333), [sym_html_comment] = ACTIONS(5), }, [378] = { [sym_comment] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2402), - [sym__ternary_qmark] = ACTIONS(2308), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_var] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_switch] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_debugger] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_throw] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_case] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(2263), + [anon_sym_QMARK_DOT] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_using] = ACTIONS(2263), + [anon_sym_AMP_AMP] = ACTIONS(2265), + [anon_sym_PIPE_PIPE] = ACTIONS(2265), + [anon_sym_GT_GT] = ACTIONS(2265), + [anon_sym_GT_GT_GT] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_PERCENT] = ACTIONS(2265), + [anon_sym_STAR_STAR] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_LT_EQ] = ACTIONS(2265), + [anon_sym_EQ_EQ] = ACTIONS(2265), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2265), + [anon_sym_QMARK_QMARK] = ACTIONS(2265), + [anon_sym_instanceof] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2263), + [anon_sym_delete] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_private_property_identifier] = ACTIONS(2263), + [sym_this] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_undefined] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_get] = ACTIONS(2263), + [anon_sym_set] = ACTIONS(2263), + [anon_sym_declare] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_private] = ACTIONS(2263), + [anon_sym_protected] = ACTIONS(2263), + [anon_sym_override] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_any] = ACTIONS(2263), + [anon_sym_number] = ACTIONS(2263), + [anon_sym_boolean] = ACTIONS(2263), + [anon_sym_string] = ACTIONS(2263), + [anon_sym_symbol] = ACTIONS(2263), + [anon_sym_object] = ACTIONS(2263), + [anon_sym_abstract] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_satisfies] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [sym__automatic_semicolon] = ACTIONS(2403), + [sym__ternary_qmark] = ACTIONS(2269), [sym_html_comment] = ACTIONS(5), }, [379] = { [sym_comment] = STATE(379), - [sym_identifier] = ACTIONS(2164), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_with] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_do] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_debugger] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_case] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LTtemplate_GT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_QMARK_QMARK] = ACTIONS(2166), - [anon_sym_instanceof] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_void] = ACTIONS(2164), - [anon_sym_delete] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_number] = ACTIONS(2164), - [sym_private_property_identifier] = ACTIONS(2164), - [sym_this] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_satisfies] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2404), - [sym__ternary_qmark] = ACTIONS(2170), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2229), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_debugger] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LTtemplate_GT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_STAR_STAR] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2229), + [anon_sym_QMARK_QMARK] = ACTIONS(2229), + [anon_sym_instanceof] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_number] = ACTIONS(2229), + [sym_private_property_identifier] = ACTIONS(2229), + [sym_this] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_undefined] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_global] = ACTIONS(2229), + [anon_sym_satisfies] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [sym__automatic_semicolon] = ACTIONS(2231), + [sym__ternary_qmark] = ACTIONS(2231), [sym_html_comment] = ACTIONS(5), }, [380] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3022), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(380), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), - [anon_sym_extends] = ACTIONS(2061), + [ts_builtin_sym_end] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_COMMA] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_in] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_debugger] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_QMARK_DOT] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_PIPE_PIPE] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2301), + [anon_sym_GT_GT_GT] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_CARET] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_PERCENT] = ACTIONS(2301), + [anon_sym_STAR_STAR] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2301), + [anon_sym_GT_EQ] = ACTIONS(2301), + [anon_sym_QMARK_QMARK] = ACTIONS(2301), + [anon_sym_instanceof] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_private_property_identifier] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_undefined] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_declare] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_private] = ACTIONS(2299), + [anon_sym_protected] = ACTIONS(2299), + [anon_sym_override] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_any] = ACTIONS(2299), + [anon_sym_number] = ACTIONS(2299), + [anon_sym_boolean] = ACTIONS(2299), + [anon_sym_string] = ACTIONS(2299), + [anon_sym_symbol] = ACTIONS(2299), + [anon_sym_object] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_satisfies] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [sym__automatic_semicolon] = ACTIONS(2407), + [sym__ternary_qmark] = ACTIONS(2305), [sym_html_comment] = ACTIONS(5), }, [381] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2875), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), [sym_comment] = STATE(381), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [anon_sym_extends] = ACTIONS(2061), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_var] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_debugger] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2309), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_instanceof] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_private_property_identifier] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_undefined] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_abstract] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_satisfies] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [sym__automatic_semicolon] = ACTIONS(2411), + [sym__ternary_qmark] = ACTIONS(2313), [sym_html_comment] = ACTIONS(5), }, [382] = { [sym_comment] = STATE(382), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_with] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_debugger] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_case] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LTtemplate_GT] = ACTIONS(2214), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_QMARK_DOT] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_STAR_STAR] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_instanceof] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2214), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_private_property_identifier] = ACTIONS(2214), - [sym_this] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_readonly] = ACTIONS(2214), - [anon_sym_get] = ACTIONS(2214), - [anon_sym_set] = ACTIONS(2214), - [anon_sym_declare] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_protected] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_any] = ACTIONS(2214), - [anon_sym_number] = ACTIONS(2214), - [anon_sym_boolean] = ACTIONS(2214), - [anon_sym_string] = ACTIONS(2214), - [anon_sym_symbol] = ACTIONS(2214), - [anon_sym_object] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_satisfies] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [sym__automatic_semicolon] = ACTIONS(2406), - [sym__ternary_qmark] = ACTIONS(2220), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LTtemplate_GT] = ACTIONS(2289), + [anon_sym_GT] = ACTIONS(2291), + [anon_sym_DOT] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_QMARK_DOT] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2291), + [anon_sym_PIPE_PIPE] = ACTIONS(2291), + [anon_sym_GT_GT] = ACTIONS(2291), + [anon_sym_GT_GT_GT] = ACTIONS(2291), + [anon_sym_LT_LT] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2291), + [anon_sym_STAR_STAR] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2291), + [anon_sym_GT_EQ] = ACTIONS(2291), + [anon_sym_QMARK_QMARK] = ACTIONS(2291), + [anon_sym_instanceof] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = 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), + [sym_number] = ACTIONS(2289), + [sym_private_property_identifier] = ACTIONS(2289), + [sym_this] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [sym_undefined] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_override] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_object] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_satisfies] = ACTIONS(2291), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2415), + [sym__ternary_qmark] = ACTIONS(2295), [sym_html_comment] = ACTIONS(5), }, [383] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2918), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_spread_element] = STATE(5772), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(383), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_with] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_debugger] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LTtemplate_GT] = ACTIONS(2222), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_DOT] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_QMARK_DOT] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_STAR_STAR] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_QMARK_QMARK] = ACTIONS(2224), - [anon_sym_instanceof] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2222), - [anon_sym_delete] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_private_property_identifier] = ACTIONS(2222), - [sym_this] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_undefined] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_readonly] = ACTIONS(2222), - [anon_sym_get] = ACTIONS(2222), - [anon_sym_set] = ACTIONS(2222), - [anon_sym_declare] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_protected] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_any] = ACTIONS(2222), - [anon_sym_number] = ACTIONS(2222), - [anon_sym_boolean] = ACTIONS(2222), - [anon_sym_string] = ACTIONS(2222), - [anon_sym_symbol] = ACTIONS(2222), - [anon_sym_object] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_satisfies] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [sym__automatic_semicolon] = ACTIONS(2408), - [sym__ternary_qmark] = ACTIONS(2228), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(2391), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [384] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(384), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_as] = ACTIONS(2256), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_COMMA] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_in] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_case] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_QMARK_DOT] = ACTIONS(2256), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2256), - [anon_sym_PIPE_PIPE] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_GT_GT_GT] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2256), - [anon_sym_CARET] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2256), - [anon_sym_STAR_STAR] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_LT_EQ] = ACTIONS(2256), - [anon_sym_EQ_EQ] = ACTIONS(2256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2256), - [anon_sym_GT_EQ] = ACTIONS(2256), - [anon_sym_QMARK_QMARK] = ACTIONS(2256), - [anon_sym_instanceof] = ACTIONS(2256), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_satisfies] = ACTIONS(2256), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), - [sym__automatic_semicolon] = ACTIONS(2258), - [sym__ternary_qmark] = ACTIONS(2258), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5072), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_override_modifier] = STATE(457), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2417), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2419), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [385] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3184), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(385), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), - [anon_sym_extends] = ACTIONS(2061), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2225), + [anon_sym_PIPE_PIPE] = ACTIONS(2225), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2225), + [anon_sym_STAR_STAR] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2225), + [anon_sym_QMARK_QMARK] = ACTIONS(2225), + [anon_sym_instanceof] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_satisfies] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2227), + [sym__ternary_qmark] = ACTIONS(2227), [sym_html_comment] = ACTIONS(5), }, [386] = { + [sym_import] = STATE(4223), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_as] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_in] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_QMARK_DOT] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(2172), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_GT_GT] = ACTIONS(2172), - [anon_sym_GT_GT_GT] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_STAR_STAR] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_LT_EQ] = ACTIONS(2172), - [anon_sym_EQ_EQ] = ACTIONS(2172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2172), - [anon_sym_GT_EQ] = ACTIONS(2172), - [anon_sym_QMARK_QMARK] = ACTIONS(2172), - [anon_sym_instanceof] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_satisfies] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [sym__automatic_semicolon] = ACTIONS(2174), - [sym__ternary_qmark] = ACTIONS(2174), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3760), + [sym__type_query_subscript_expression] = STATE(3774), + [sym__type_query_call_expression] = STATE(3969), + [sym__type_query_instantiation_expression] = STATE(4080), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2421), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [387] = { + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(472), + [sym_empty_statement] = STATE(472), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), [sym_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(2312), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_in] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2310), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_QMARK_DOT] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2310), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_object] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_satisfies] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2312), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [388] = { + [sym_import] = STATE(4249), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_STAR_STAR] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_instanceof] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2410), - [sym__ternary_qmark] = ACTIONS(2212), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [389] = { [sym_comment] = STATE(389), - [sym_identifier] = ACTIONS(2230), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2232), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2230), - [anon_sym_import] = ACTIONS(2230), - [anon_sym_with] = ACTIONS(2230), - [anon_sym_var] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LTtemplate_GT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_DOT] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_PIPE_PIPE] = ACTIONS(2232), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2232), - [anon_sym_STAR_STAR] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2232), - [anon_sym_EQ_EQ] = ACTIONS(2232), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2232), - [anon_sym_QMARK_QMARK] = ACTIONS(2232), - [anon_sym_instanceof] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_private_property_identifier] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_undefined] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_satisfies] = ACTIONS(2232), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2412), - [sym__ternary_qmark] = ACTIONS(2236), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_in] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_debugger] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LTtemplate_GT] = ACTIONS(2317), + [anon_sym_GT] = ACTIONS(2319), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_QMARK_DOT] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_GT_GT] = ACTIONS(2319), + [anon_sym_GT_GT_GT] = ACTIONS(2319), + [anon_sym_LT_LT] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_CARET] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_SLASH] = ACTIONS(2317), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_STAR_STAR] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_LT_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2319), + [anon_sym_GT_EQ] = ACTIONS(2319), + [anon_sym_QMARK_QMARK] = ACTIONS(2319), + [anon_sym_instanceof] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_undefined] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_get] = ACTIONS(2317), + [anon_sym_set] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_override] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_any] = ACTIONS(2317), + [anon_sym_number] = ACTIONS(2317), + [anon_sym_boolean] = ACTIONS(2317), + [anon_sym_string] = ACTIONS(2317), + [anon_sym_symbol] = ACTIONS(2317), + [anon_sym_object] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_satisfies] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [sym__automatic_semicolon] = ACTIONS(2427), + [sym__ternary_qmark] = ACTIONS(2323), [sym_html_comment] = ACTIONS(5), }, [390] = { [sym_comment] = STATE(390), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_QMARK_DOT] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_satisfies] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2414), - [sym__ternary_qmark] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2217), + [sym__ternary_qmark] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, [391] = { [sym_comment] = STATE(391), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_as] = ACTIONS(2270), - [anon_sym_namespace] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_COMMA] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_typeof] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_with] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(2268), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_debugger] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_case] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LTtemplate_GT] = ACTIONS(2268), - [anon_sym_GT] = ACTIONS(2270), - [anon_sym_DOT] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_QMARK_DOT] = ACTIONS(2270), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2270), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_PERCENT] = ACTIONS(2270), - [anon_sym_STAR_STAR] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_LT_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), - [anon_sym_GT_EQ] = ACTIONS(2270), - [anon_sym_QMARK_QMARK] = ACTIONS(2270), - [anon_sym_instanceof] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2268), - [anon_sym_void] = ACTIONS(2268), - [anon_sym_delete] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2268), - [sym_number] = ACTIONS(2268), - [sym_private_property_identifier] = ACTIONS(2268), - [sym_this] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_readonly] = ACTIONS(2268), - [anon_sym_get] = ACTIONS(2268), - [anon_sym_set] = ACTIONS(2268), - [anon_sym_declare] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_protected] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_any] = ACTIONS(2268), - [anon_sym_number] = ACTIONS(2268), - [anon_sym_boolean] = ACTIONS(2268), - [anon_sym_string] = ACTIONS(2268), - [anon_sym_symbol] = ACTIONS(2268), - [anon_sym_object] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_satisfies] = ACTIONS(2270), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [sym__automatic_semicolon] = ACTIONS(2416), - [sym__ternary_qmark] = ACTIONS(2274), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2273), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_debugger] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LTtemplate_GT] = ACTIONS(2273), + [anon_sym_GT] = ACTIONS(2275), + [anon_sym_DOT] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_QMARK_DOT] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2275), + [anon_sym_PIPE_PIPE] = ACTIONS(2275), + [anon_sym_GT_GT] = ACTIONS(2275), + [anon_sym_GT_GT_GT] = ACTIONS(2275), + [anon_sym_LT_LT] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_PERCENT] = ACTIONS(2275), + [anon_sym_STAR_STAR] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_LT_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2275), + [anon_sym_GT_EQ] = ACTIONS(2275), + [anon_sym_QMARK_QMARK] = ACTIONS(2275), + [anon_sym_instanceof] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_number] = ACTIONS(2273), + [sym_private_property_identifier] = ACTIONS(2273), + [sym_this] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_get] = ACTIONS(2273), + [anon_sym_set] = ACTIONS(2273), + [anon_sym_declare] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_private] = ACTIONS(2273), + [anon_sym_protected] = ACTIONS(2273), + [anon_sym_override] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_any] = ACTIONS(2273), + [anon_sym_number] = ACTIONS(2273), + [anon_sym_boolean] = ACTIONS(2273), + [anon_sym_string] = ACTIONS(2273), + [anon_sym_symbol] = ACTIONS(2273), + [anon_sym_object] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_satisfies] = ACTIONS(2275), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [sym__automatic_semicolon] = ACTIONS(2431), + [sym__ternary_qmark] = ACTIONS(2279), [sym_html_comment] = ACTIONS(5), }, [392] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2731), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_spread_element] = STATE(6190), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(392), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(6189), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [sym_identifier] = ACTIONS(2253), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_debugger] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_case] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LTtemplate_GT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2255), + [anon_sym_DOT] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_QMARK_DOT] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2255), + [anon_sym_GT_GT] = ACTIONS(2255), + [anon_sym_GT_GT_GT] = ACTIONS(2255), + [anon_sym_LT_LT] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_CARET] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2255), + [anon_sym_STAR_STAR] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_LT_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2255), + [anon_sym_GT_EQ] = ACTIONS(2255), + [anon_sym_QMARK_QMARK] = ACTIONS(2255), + [anon_sym_instanceof] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2253), + [sym_number] = ACTIONS(2253), + [sym_private_property_identifier] = ACTIONS(2253), + [sym_this] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_null] = ACTIONS(2253), + [sym_undefined] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_satisfies] = ACTIONS(2255), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [sym__automatic_semicolon] = ACTIONS(2433), + [sym__ternary_qmark] = ACTIONS(2259), [sym_html_comment] = ACTIONS(5), }, [393] = { + [sym_import] = STATE(4328), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(393), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_case] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LTtemplate_GT] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2278), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_QMARK_DOT] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2278), - [anon_sym_PIPE_PIPE] = ACTIONS(2278), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2278), - [anon_sym_LT_LT] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_PERCENT] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_LT_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), - [anon_sym_GT_EQ] = ACTIONS(2278), - [anon_sym_QMARK_QMARK] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2276), - [sym_number] = ACTIONS(2276), - [sym_private_property_identifier] = ACTIONS(2276), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_object] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_satisfies] = ACTIONS(2278), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(2282), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(2435), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [394] = { [sym_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [sym__automatic_semicolon] = ACTIONS(2186), - [sym__ternary_qmark] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_QMARK_DOT] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2337), + [anon_sym_PIPE_PIPE] = ACTIONS(2337), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_GT_GT_GT] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2337), + [anon_sym_STAR_STAR] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_EQ_EQ] = ACTIONS(2337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2337), + [anon_sym_GT_EQ] = ACTIONS(2337), + [anon_sym_QMARK_QMARK] = ACTIONS(2337), + [anon_sym_instanceof] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_private_property_identifier] = ACTIONS(2335), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_satisfies] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2439), + [sym__ternary_qmark] = ACTIONS(2341), [sym_html_comment] = ACTIONS(5), }, [395] = { + [sym_import] = STATE(4249), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(395), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LTtemplate_GT] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_QMARK_DOT] = ACTIONS(2286), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2284), - [sym_number] = ACTIONS(2284), - [sym_private_property_identifier] = ACTIONS(2284), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_object] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_satisfies] = ACTIONS(2286), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2422), - [sym__ternary_qmark] = ACTIONS(2290), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2441), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [396] = { [sym_comment] = STATE(396), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_as] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_DOT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_GT_GT] = ACTIONS(2138), - [anon_sym_GT_GT_GT] = ACTIONS(2138), - [anon_sym_LT_LT] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_CARET] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2138), - [anon_sym_STAR_STAR] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), - [anon_sym_GT_EQ] = ACTIONS(2138), - [anon_sym_QMARK_QMARK] = ACTIONS(2138), - [anon_sym_instanceof] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_satisfies] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2424), - [sym__ternary_qmark] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [397] = { [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2152), - [anon_sym_PIPE_PIPE] = ACTIONS(2152), - [anon_sym_GT_GT] = ACTIONS(2152), - [anon_sym_GT_GT_GT] = ACTIONS(2152), - [anon_sym_LT_LT] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2152), - [anon_sym_STAR_STAR] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2152), - [anon_sym_EQ_EQ] = ACTIONS(2152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2152), - [anon_sym_GT_EQ] = ACTIONS(2152), - [anon_sym_QMARK_QMARK] = ACTIONS(2152), - [anon_sym_instanceof] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2154), - [sym__ternary_qmark] = ACTIONS(2154), + [ts_builtin_sym_end] = ACTIONS(2445), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_debugger] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LTtemplate_GT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_QMARK_DOT] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_GT_GT] = ACTIONS(2283), + [anon_sym_GT_GT_GT] = ACTIONS(2283), + [anon_sym_LT_LT] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_SLASH] = ACTIONS(2281), + [anon_sym_PERCENT] = ACTIONS(2283), + [anon_sym_STAR_STAR] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_QMARK_QMARK] = ACTIONS(2283), + [anon_sym_instanceof] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_number] = ACTIONS(2281), + [sym_private_property_identifier] = ACTIONS(2281), + [sym_this] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_null] = ACTIONS(2281), + [sym_undefined] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_get] = ACTIONS(2281), + [anon_sym_set] = ACTIONS(2281), + [anon_sym_declare] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_private] = ACTIONS(2281), + [anon_sym_protected] = ACTIONS(2281), + [anon_sym_override] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_any] = ACTIONS(2281), + [anon_sym_number] = ACTIONS(2281), + [anon_sym_boolean] = ACTIONS(2281), + [anon_sym_string] = ACTIONS(2281), + [anon_sym_symbol] = ACTIONS(2281), + [anon_sym_object] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_satisfies] = ACTIONS(2283), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [sym__automatic_semicolon] = ACTIONS(2447), + [sym__ternary_qmark] = ACTIONS(2287), [sym_html_comment] = ACTIONS(5), }, [398] = { + [sym_import] = STATE(4257), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3138), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_as] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_else] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_QMARK_DOT] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2250), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_QMARK_QMARK] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_satisfies] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2252), - [sym__ternary_qmark] = ACTIONS(2252), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), [sym_comment] = STATE(399), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(2061), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2217), + [sym__ternary_qmark] = ACTIONS(2217), + [sym_html_comment] = ACTIONS(5), + }, + [400] = { + [sym_import] = STATE(4257), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(400), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [401] = { + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(473), + [sym_empty_statement] = STATE(473), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), + [sym_comment] = STATE(401), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2082), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -82833,1737 +83807,1206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [400] = { - [sym_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_STAR_STAR] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_instanceof] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), - [sym__ternary_qmark] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [401] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(401), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(2061), + [402] = { + [sym_import] = STATE(4190), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(402), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2453), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [402] = { - [sym_comment] = STATE(402), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_STAR_STAR] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_instanceof] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), - [sym__ternary_qmark] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [403] = { [sym_comment] = STATE(403), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [sym__automatic_semicolon] = ACTIONS(2186), - [sym__ternary_qmark] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2193), + [sym__ternary_qmark] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [404] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2705), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_spread_element] = STATE(5937), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4190), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(404), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [aux_sym_array_repeat1] = STATE(5939), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2455), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [405] = { [sym_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_as] = ACTIONS(2256), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_COMMA] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_in] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_QMARK_DOT] = ACTIONS(2256), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2256), - [anon_sym_PIPE_PIPE] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_GT_GT_GT] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2256), - [anon_sym_CARET] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2256), - [anon_sym_STAR_STAR] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_LT_EQ] = ACTIONS(2256), - [anon_sym_EQ_EQ] = ACTIONS(2256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2256), - [anon_sym_GT_EQ] = ACTIONS(2256), - [anon_sym_QMARK_QMARK] = ACTIONS(2256), - [anon_sym_instanceof] = ACTIONS(2256), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_satisfies] = ACTIONS(2256), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), - [sym__automatic_semicolon] = ACTIONS(2258), - [sym__ternary_qmark] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2193), + [sym__ternary_qmark] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [406] = { [sym_comment] = STATE(406), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2308), + [sym_identifier] = ACTIONS(2243), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_var] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_debugger] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_case] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_function] = ACTIONS(2243), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_using] = ACTIONS(2243), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_STAR_STAR] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_QMARK_QMARK] = ACTIONS(2245), + [anon_sym_instanceof] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_void] = ACTIONS(2243), + [anon_sym_delete] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [sym_private_property_identifier] = ACTIONS(2243), + [sym_this] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_null] = ACTIONS(2243), + [sym_undefined] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [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_abstract] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_satisfies] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2457), + [sym__ternary_qmark] = ACTIONS(2249), [sym_html_comment] = ACTIONS(5), }, [407] = { [sym_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_as] = ACTIONS(2270), - [anon_sym_namespace] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_COMMA] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_typeof] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_with] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(2268), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_debugger] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LTtemplate_GT] = ACTIONS(2268), - [anon_sym_GT] = ACTIONS(2270), - [anon_sym_DOT] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_QMARK_DOT] = ACTIONS(2270), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2270), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_PERCENT] = ACTIONS(2270), - [anon_sym_STAR_STAR] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_LT_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), - [anon_sym_GT_EQ] = ACTIONS(2270), - [anon_sym_QMARK_QMARK] = ACTIONS(2270), - [anon_sym_instanceof] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2268), - [anon_sym_void] = ACTIONS(2268), - [anon_sym_delete] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2268), - [sym_number] = ACTIONS(2268), - [sym_private_property_identifier] = ACTIONS(2268), - [sym_this] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_readonly] = ACTIONS(2268), - [anon_sym_get] = ACTIONS(2268), - [anon_sym_set] = ACTIONS(2268), - [anon_sym_declare] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_protected] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_any] = ACTIONS(2268), - [anon_sym_number] = ACTIONS(2268), - [anon_sym_boolean] = ACTIONS(2268), - [anon_sym_string] = ACTIONS(2268), - [anon_sym_symbol] = ACTIONS(2268), - [anon_sym_object] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_satisfies] = ACTIONS(2270), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_case] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_STAR_STAR] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_QMARK_QMARK] = ACTIONS(2187), + [anon_sym_instanceof] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_satisfies] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [sym__automatic_semicolon] = ACTIONS(2189), + [sym__ternary_qmark] = ACTIONS(2189), [sym_html_comment] = ACTIONS(5), }, [408] = { [sym_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_typeof] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_with] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_in] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_debugger] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LTtemplate_GT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_QMARK_DOT] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2194), - [anon_sym_GT_GT_GT] = ACTIONS(2194), - [anon_sym_LT_LT] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_STAR_STAR] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2194), - [anon_sym_QMARK_QMARK] = ACTIONS(2194), - [anon_sym_instanceof] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_void] = ACTIONS(2192), - [anon_sym_delete] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [sym_private_property_identifier] = ACTIONS(2192), - [sym_this] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_undefined] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_satisfies] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2434), - [sym__ternary_qmark] = ACTIONS(2198), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_var] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_else] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_switch] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_in] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_debugger] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_GT] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(2239), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_using] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2239), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_delete] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_private_property_identifier] = ACTIONS(2239), + [sym_this] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_null] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_get] = ACTIONS(2239), + [anon_sym_set] = ACTIONS(2239), + [anon_sym_declare] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_private] = ACTIONS(2239), + [anon_sym_protected] = ACTIONS(2239), + [anon_sym_override] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_any] = ACTIONS(2239), + [anon_sym_number] = ACTIONS(2239), + [anon_sym_boolean] = ACTIONS(2239), + [anon_sym_string] = ACTIONS(2239), + [anon_sym_symbol] = ACTIONS(2239), + [anon_sym_object] = ACTIONS(2239), + [anon_sym_abstract] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_satisfies] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [sym__automatic_semicolon] = ACTIONS(2241), + [sym__ternary_qmark] = ACTIONS(2241), [sym_html_comment] = ACTIONS(5), }, [409] = { - [sym_import] = STATE(4260), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(409), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2436), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_satisfies] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2201), + [sym__ternary_qmark] = ACTIONS(2201), [sym_html_comment] = ACTIONS(5), }, [410] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3022), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(410), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [ts_builtin_sym_end] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_var] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_debugger] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_GT] = ACTIONS(2235), + [anon_sym_DOT] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_QMARK_DOT] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_GT_GT] = ACTIONS(2235), + [anon_sym_GT_GT_GT] = ACTIONS(2235), + [anon_sym_LT_LT] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_CARET] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_PERCENT] = ACTIONS(2235), + [anon_sym_STAR_STAR] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2235), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_QMARK_QMARK] = ACTIONS(2235), + [anon_sym_instanceof] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_delete] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [sym_private_property_identifier] = ACTIONS(2235), + [sym_this] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_null] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), + [anon_sym_abstract] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_satisfies] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [sym__automatic_semicolon] = ACTIONS(2237), + [sym__ternary_qmark] = ACTIONS(2237), [sym_html_comment] = ACTIONS(5), }, [411] = { + [sym_statement_block] = STATE(435), [sym_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_as] = ACTIONS(2256), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_COMMA] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_in] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_QMARK_DOT] = ACTIONS(2256), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2256), - [anon_sym_PIPE_PIPE] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_GT_GT_GT] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2256), - [anon_sym_CARET] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2256), - [anon_sym_STAR_STAR] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_LT_EQ] = ACTIONS(2256), - [anon_sym_EQ_EQ] = ACTIONS(2256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2256), - [anon_sym_GT_EQ] = ACTIONS(2256), - [anon_sym_QMARK_QMARK] = ACTIONS(2256), - [anon_sym_instanceof] = ACTIONS(2256), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_satisfies] = ACTIONS(2256), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), - [sym__automatic_semicolon] = ACTIONS(2258), - [sym__ternary_qmark] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [412] = { + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(477), + [sym_empty_statement] = STATE(477), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), [sym_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_as] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_QMARK_DOT] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2250), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_QMARK_QMARK] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_satisfies] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2252), - [sym__ternary_qmark] = ACTIONS(2252), - [sym_html_comment] = ACTIONS(5), - }, - [413] = { - [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_STAR_STAR] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_instanceof] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2440), - [sym__ternary_qmark] = ACTIONS(2212), - [sym_html_comment] = ACTIONS(5), - }, - [414] = { - [sym_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [sym__automatic_semicolon] = ACTIONS(2186), - [sym__ternary_qmark] = ACTIONS(2186), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(475), - [sym_empty_statement] = STATE(475), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(415), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2082), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -84585,94 +85028,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [416] = { - [sym_import] = STATE(4289), + [413] = { + [sym_import] = STATE(4165), [sym_expression_statement] = STATE(476), [sym_empty_statement] = STATE(476), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(416), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), + [sym_comment] = STATE(413), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2082), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -84694,312 +85139,1206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [414] = { + [sym_statement_block] = STATE(435), + [sym_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), + [sym_html_comment] = ACTIONS(5), + }, + [415] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(6833), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(415), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5849), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [416] = { + [sym_statement_block] = STATE(435), + [sym_comment] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2145), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, [417] = { + [sym_import] = STATE(4220), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3282), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_STAR_STAR] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_instanceof] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), - [sym__ternary_qmark] = ACTIONS(2212), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2465), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [418] = { - [sym_import] = STATE(4243), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), [sym_comment] = STATE(418), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_GT_GT_GT] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_STAR_STAR] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2149), + [anon_sym_EQ_EQ] = ACTIONS(2149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2149), + [anon_sym_GT_EQ] = ACTIONS(2149), + [anon_sym_QMARK_QMARK] = ACTIONS(2149), + [anon_sym_instanceof] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_satisfies] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2467), + [sym__ternary_qmark] = ACTIONS(2155), + [sym_html_comment] = ACTIONS(5), + }, + [419] = { + [sym_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_STAR_STAR] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_QMARK_QMARK] = ACTIONS(2187), + [anon_sym_instanceof] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_satisfies] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [sym__automatic_semicolon] = ACTIONS(2189), + [sym__ternary_qmark] = ACTIONS(2189), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_import] = STATE(4249), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(420), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2469), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(472), - [sym_empty_statement] = STATE(472), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(419), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [421] = { + [sym_import] = STATE(4249), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2780), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(421), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym__type_query_member_expression] = STATE(3707), + [sym__type_query_subscript_expression] = STATE(3708), + [sym__type_query_call_expression] = STATE(3756), + [sym__type_query_instantiation_expression] = STATE(3868), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2471), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [422] = { + [sym_comment] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_STAR_STAR] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_QMARK_QMARK] = ACTIONS(2147), + [anon_sym_instanceof] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_satisfies] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2473), + [sym__ternary_qmark] = ACTIONS(2169), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_comment] = STATE(423), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_debugger] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_case] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_STAR_STAR] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_QMARK_QMARK] = ACTIONS(2219), + [anon_sym_instanceof] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_delete] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_private_property_identifier] = ACTIONS(2219), + [sym_this] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_null] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_abstract] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_satisfies] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [sym__automatic_semicolon] = ACTIONS(2221), + [sym__ternary_qmark] = ACTIONS(2221), + [sym_html_comment] = ACTIONS(5), + }, + [424] = { + [sym_import] = STATE(4165), + [sym_expression_statement] = STATE(475), + [sym_empty_statement] = STATE(475), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6527), + [sym_string] = STATE(3003), + [sym_comment] = STATE(424), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2082), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -85021,4127 +86360,3183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_import] = STATE(4332), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(420), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [421] = { - [sym_import] = STATE(4260), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(421), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2446), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), - [sym_html_comment] = ACTIONS(5), - }, - [422] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(6830), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(422), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5846), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [423] = { - [sym_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LTtemplate_GT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_DOT] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_PIPE_PIPE] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(2158), - [anon_sym_GT_GT_GT] = ACTIONS(2158), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_CARET] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_STAR_STAR] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), - [anon_sym_GT_EQ] = ACTIONS(2158), - [anon_sym_QMARK_QMARK] = ACTIONS(2158), - [anon_sym_instanceof] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_private_property_identifier] = ACTIONS(2156), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_satisfies] = ACTIONS(2158), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [sym__automatic_semicolon] = ACTIONS(2448), - [sym__ternary_qmark] = ACTIONS(2162), - [sym_html_comment] = ACTIONS(5), - }, - [424] = { - [sym_comment] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2164), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_with] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_do] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_debugger] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LTtemplate_GT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_QMARK_QMARK] = ACTIONS(2166), - [anon_sym_instanceof] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_void] = ACTIONS(2164), - [anon_sym_delete] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_number] = ACTIONS(2164), - [sym_private_property_identifier] = ACTIONS(2164), - [sym_this] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_satisfies] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2450), - [sym__ternary_qmark] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [425] = { [sym_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_QMARK_DOT] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_satisfies] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2452), - [sym__ternary_qmark] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_typeof] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_in] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_case] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2209), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_STAR_STAR] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_QMARK_QMARK] = ACTIONS(2209), + [anon_sym_instanceof] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2209), + [anon_sym_delete] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(2209), + [sym_this] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_null] = ACTIONS(2209), + [sym_undefined] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_declare] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_protected] = ACTIONS(2209), + [anon_sym_override] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_any] = ACTIONS(2209), + [anon_sym_number] = ACTIONS(2209), + [anon_sym_boolean] = ACTIONS(2209), + [anon_sym_string] = ACTIONS(2209), + [anon_sym_symbol] = ACTIONS(2209), + [anon_sym_object] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_satisfies] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [sym__automatic_semicolon] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, [426] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2952), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_spread_element] = STATE(5771), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(426), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_var] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_switch] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_in] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_debugger] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_GT] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(2239), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_using] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2239), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_delete] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_private_property_identifier] = ACTIONS(2239), + [sym_this] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_null] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_get] = ACTIONS(2239), + [anon_sym_set] = ACTIONS(2239), + [anon_sym_declare] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_private] = ACTIONS(2239), + [anon_sym_protected] = ACTIONS(2239), + [anon_sym_override] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_any] = ACTIONS(2239), + [anon_sym_number] = ACTIONS(2239), + [anon_sym_boolean] = ACTIONS(2239), + [anon_sym_string] = ACTIONS(2239), + [anon_sym_symbol] = ACTIONS(2239), + [anon_sym_object] = ACTIONS(2239), + [anon_sym_abstract] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_satisfies] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [sym__automatic_semicolon] = ACTIONS(2241), + [sym__ternary_qmark] = ACTIONS(2241), [sym_html_comment] = ACTIONS(5), }, [427] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2456), - [sym__ternary_qmark] = ACTIONS(2182), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5000), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_override_modifier] = STATE(452), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1094), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2475), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [428] = { [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(2296), - [sym_identifier] = ACTIONS(2294), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2294), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_with] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2294), - [anon_sym_in] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_debugger] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LTtemplate_GT] = ACTIONS(2294), - [anon_sym_GT] = ACTIONS(2294), - [anon_sym_DOT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_class] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_function] = ACTIONS(2294), - [anon_sym_QMARK_DOT] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_using] = ACTIONS(2294), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(2294), - [anon_sym_GT_GT_GT] = ACTIONS(2294), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_STAR_STAR] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_LT_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), - [anon_sym_GT_EQ] = ACTIONS(2294), - [anon_sym_QMARK_QMARK] = ACTIONS(2294), - [anon_sym_instanceof] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2294), - [anon_sym_delete] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_private_property_identifier] = ACTIONS(2294), - [sym_this] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_true] = ACTIONS(2294), - [sym_false] = ACTIONS(2294), - [sym_null] = ACTIONS(2294), - [sym_undefined] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_readonly] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2294), - [anon_sym_set] = ACTIONS(2294), - [anon_sym_declare] = ACTIONS(2294), - [anon_sym_public] = ACTIONS(2294), - [anon_sym_private] = ACTIONS(2294), - [anon_sym_protected] = ACTIONS(2294), - [anon_sym_override] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_any] = ACTIONS(2294), - [anon_sym_number] = ACTIONS(2294), - [anon_sym_boolean] = ACTIONS(2294), - [anon_sym_string] = ACTIONS(2294), - [anon_sym_symbol] = ACTIONS(2294), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_abstract] = ACTIONS(2294), - [anon_sym_satisfies] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), - [sym__automatic_semicolon] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2296), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2243), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_var] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_else] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_debugger] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_function] = ACTIONS(2243), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_using] = ACTIONS(2243), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_STAR_STAR] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_QMARK_QMARK] = ACTIONS(2245), + [anon_sym_instanceof] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_void] = ACTIONS(2243), + [anon_sym_delete] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [sym_private_property_identifier] = ACTIONS(2243), + [sym_this] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_null] = ACTIONS(2243), + [sym_undefined] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [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_abstract] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_satisfies] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2479), + [sym__ternary_qmark] = ACTIONS(2249), [sym_html_comment] = ACTIONS(5), }, [429] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2953), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_assignment_pattern] = STATE(6833), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(5604), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_as] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_in] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_QMARK_DOT] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(2172), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_GT_GT] = ACTIONS(2172), - [anon_sym_GT_GT_GT] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_STAR_STAR] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_LT_EQ] = ACTIONS(2172), - [anon_sym_EQ_EQ] = ACTIONS(2172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2172), - [anon_sym_GT_EQ] = ACTIONS(2172), - [anon_sym_QMARK_QMARK] = ACTIONS(2172), - [anon_sym_instanceof] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_satisfies] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [sym__automatic_semicolon] = ACTIONS(2174), - [sym__ternary_qmark] = ACTIONS(2174), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5849), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_namespace] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [anon_sym_declare] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_any] = ACTIONS(996), + [anon_sym_number] = ACTIONS(996), + [anon_sym_boolean] = ACTIONS(996), + [anon_sym_string] = ACTIONS(996), + [anon_sym_symbol] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [430] = { - [sym_import] = STATE(4332), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(430), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [sym_identifier] = ACTIONS(2229), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_debugger] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_case] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LTtemplate_GT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_STAR_STAR] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2229), + [anon_sym_QMARK_QMARK] = ACTIONS(2229), + [anon_sym_instanceof] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_number] = ACTIONS(2229), + [sym_private_property_identifier] = ACTIONS(2229), + [sym_this] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_undefined] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_global] = ACTIONS(2229), + [anon_sym_satisfies] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [sym__automatic_semicolon] = ACTIONS(2231), + [sym__ternary_qmark] = ACTIONS(2231), [sym_html_comment] = ACTIONS(5), }, [431] = { - [sym_import] = STATE(4156), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3184), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(431), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2183), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_STAR_STAR] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_QMARK_QMARK] = ACTIONS(2183), + [anon_sym_instanceof] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_satisfies] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [432] = { [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_as] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_DOT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_GT_GT] = ACTIONS(2138), - [anon_sym_GT_GT_GT] = ACTIONS(2138), - [anon_sym_LT_LT] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_CARET] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2138), - [anon_sym_STAR_STAR] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), - [anon_sym_GT_EQ] = ACTIONS(2138), - [anon_sym_QMARK_QMARK] = ACTIONS(2138), - [anon_sym_instanceof] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_satisfies] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2462), - [sym__ternary_qmark] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_var] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_debugger] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_case] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_GT] = ACTIONS(2235), + [anon_sym_DOT] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_QMARK_DOT] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_GT_GT] = ACTIONS(2235), + [anon_sym_GT_GT_GT] = ACTIONS(2235), + [anon_sym_LT_LT] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_CARET] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_PERCENT] = ACTIONS(2235), + [anon_sym_STAR_STAR] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2235), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_QMARK_QMARK] = ACTIONS(2235), + [anon_sym_instanceof] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_delete] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [sym_private_property_identifier] = ACTIONS(2235), + [sym_this] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_null] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), + [anon_sym_abstract] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_satisfies] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [sym__automatic_semicolon] = ACTIONS(2237), + [sym__ternary_qmark] = ACTIONS(2237), [sym_html_comment] = ACTIONS(5), }, [433] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(477), - [sym_empty_statement] = STATE(477), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), [sym_comment] = STATE(433), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2225), + [anon_sym_PIPE_PIPE] = ACTIONS(2225), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2225), + [anon_sym_STAR_STAR] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2225), + [anon_sym_QMARK_QMARK] = ACTIONS(2225), + [anon_sym_instanceof] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_satisfies] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2227), + [sym__ternary_qmark] = ACTIONS(2227), [sym_html_comment] = ACTIONS(5), }, [434] = { [sym_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(2312), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_in] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2310), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_QMARK_DOT] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2310), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_object] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_satisfies] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2312), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_in] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_debugger] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LTtemplate_GT] = ACTIONS(2317), + [anon_sym_GT] = ACTIONS(2319), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_QMARK_DOT] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_GT_GT] = ACTIONS(2319), + [anon_sym_GT_GT_GT] = ACTIONS(2319), + [anon_sym_LT_LT] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_CARET] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_SLASH] = ACTIONS(2317), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_STAR_STAR] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_LT_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2319), + [anon_sym_GT_EQ] = ACTIONS(2319), + [anon_sym_QMARK_QMARK] = ACTIONS(2319), + [anon_sym_instanceof] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_undefined] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_get] = ACTIONS(2317), + [anon_sym_set] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_override] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_any] = ACTIONS(2317), + [anon_sym_number] = ACTIONS(2317), + [anon_sym_boolean] = ACTIONS(2317), + [anon_sym_string] = ACTIONS(2317), + [anon_sym_symbol] = ACTIONS(2317), + [anon_sym_object] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_satisfies] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [sym__automatic_semicolon] = ACTIONS(2481), + [sym__ternary_qmark] = ACTIONS(2323), [sym_html_comment] = ACTIONS(5), }, [435] = { [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_in] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2298), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_QMARK_DOT] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = 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_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_satisfies] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2300), - [sym__ternary_qmark] = ACTIONS(2300), + [ts_builtin_sym_end] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_var] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_debugger] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_GT] = ACTIONS(2235), + [anon_sym_DOT] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_QMARK_DOT] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_GT_GT] = ACTIONS(2235), + [anon_sym_GT_GT_GT] = ACTIONS(2235), + [anon_sym_LT_LT] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_CARET] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_PERCENT] = ACTIONS(2235), + [anon_sym_STAR_STAR] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2235), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_QMARK_QMARK] = ACTIONS(2235), + [anon_sym_instanceof] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_delete] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [sym_private_property_identifier] = ACTIONS(2235), + [sym_this] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_null] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), + [anon_sym_abstract] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_satisfies] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [sym__automatic_semicolon] = ACTIONS(2237), + [sym__ternary_qmark] = ACTIONS(2237), [sym_html_comment] = ACTIONS(5), }, [436] = { - [sym_import] = STATE(4332), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(436), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5000), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1094), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2475), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [437] = { - [sym_import] = STATE(4332), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(437), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2229), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_debugger] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LTtemplate_GT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_STAR_STAR] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2229), + [anon_sym_QMARK_QMARK] = ACTIONS(2229), + [anon_sym_instanceof] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_number] = ACTIONS(2229), + [sym_private_property_identifier] = ACTIONS(2229), + [sym_this] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_undefined] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_global] = ACTIONS(2229), + [anon_sym_satisfies] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [sym__automatic_semicolon] = ACTIONS(2231), + [sym__ternary_qmark] = ACTIONS(2231), [sym_html_comment] = ACTIONS(5), }, [438] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2928), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_assignment_pattern] = STATE(6830), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(5602), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(438), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5846), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2141), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2183), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_STAR_STAR] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_QMARK_QMARK] = ACTIONS(2183), + [anon_sym_instanceof] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_satisfies] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [439] = { - [sym_import] = STATE(4204), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2875), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), [sym_comment] = STATE(439), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(2468), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2243), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_var] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_debugger] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_function] = ACTIONS(2243), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_using] = ACTIONS(2243), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_STAR_STAR] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_QMARK_QMARK] = ACTIONS(2245), + [anon_sym_instanceof] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_void] = ACTIONS(2243), + [anon_sym_delete] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [sym_private_property_identifier] = ACTIONS(2243), + [sym_this] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_null] = ACTIONS(2243), + [sym_undefined] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [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_abstract] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_satisfies] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2483), + [sym__ternary_qmark] = ACTIONS(2249), [sym_html_comment] = ACTIONS(5), }, [440] = { - [sym_import] = STATE(4243), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), [sym_comment] = STATE(440), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_identifier] = ACTIONS(2485), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(2485), + [anon_sym_import] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_LTtemplate_GT] = ACTIONS(2485), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_function] = ACTIONS(2485), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_SLASH] = ACTIONS(2485), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_void] = ACTIONS(2485), + [anon_sym_delete] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2485), + [sym_number] = ACTIONS(2485), + [sym_private_property_identifier] = ACTIONS(2485), + [sym_this] = ACTIONS(2485), + [sym_super] = ACTIONS(2485), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_null] = ACTIONS(2485), + [sym_undefined] = ACTIONS(2485), + [anon_sym_AT] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_readonly] = ACTIONS(2485), + [anon_sym_get] = ACTIONS(2485), + [anon_sym_set] = ACTIONS(2485), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(2485), + [anon_sym_public] = ACTIONS(2485), + [anon_sym_private] = ACTIONS(2485), + [anon_sym_protected] = ACTIONS(2485), + [anon_sym_override] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_any] = ACTIONS(2485), + [anon_sym_number] = ACTIONS(2485), + [anon_sym_boolean] = ACTIONS(2485), + [anon_sym_string] = ACTIONS(2485), + [anon_sym_symbol] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(2485), + [anon_sym_global] = ACTIONS(2485), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_comment] = STATE(441), + [sym_identifier] = ACTIONS(2487), + [anon_sym_export] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_typeof] = ACTIONS(2487), + [anon_sym_import] = ACTIONS(2487), + [anon_sym_let] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_await] = ACTIONS(2487), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_LTtemplate_GT] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_function] = ACTIONS(2487), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_void] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2487), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_undefined] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_get] = ACTIONS(2487), + [anon_sym_set] = ACTIONS(2487), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_private] = ACTIONS(2487), + [anon_sym_protected] = ACTIONS(2487), + [anon_sym_override] = ACTIONS(2487), + [anon_sym_module] = ACTIONS(2487), + [anon_sym_any] = ACTIONS(2487), + [anon_sym_number] = ACTIONS(2487), + [anon_sym_boolean] = ACTIONS(2487), + [anon_sym_string] = ACTIONS(2487), + [anon_sym_symbol] = ACTIONS(2487), + [anon_sym_object] = ACTIONS(2487), + [anon_sym_global] = ACTIONS(2487), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), + [sym_html_comment] = ACTIONS(5), + }, + [442] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6436), + [sym_string] = STATE(3003), + [sym_comment] = STATE(442), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [sym_html_comment] = ACTIONS(5), - }, - [441] = { - [sym_comment] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2152), - [anon_sym_PIPE_PIPE] = ACTIONS(2152), - [anon_sym_GT_GT] = ACTIONS(2152), - [anon_sym_GT_GT_GT] = ACTIONS(2152), - [anon_sym_LT_LT] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2152), - [anon_sym_STAR_STAR] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2152), - [anon_sym_EQ_EQ] = ACTIONS(2152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2152), - [anon_sym_GT_EQ] = ACTIONS(2152), - [anon_sym_QMARK_QMARK] = ACTIONS(2152), - [anon_sym_instanceof] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2154), - [sym__ternary_qmark] = ACTIONS(2154), - [sym_html_comment] = ACTIONS(5), - }, - [442] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(442), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2491), [sym_html_comment] = ACTIONS(5), }, [443] = { [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LTtemplate_GT] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2278), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_QMARK_DOT] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2278), - [anon_sym_PIPE_PIPE] = ACTIONS(2278), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2278), - [anon_sym_LT_LT] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_PERCENT] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_LT_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), - [anon_sym_GT_EQ] = ACTIONS(2278), - [anon_sym_QMARK_QMARK] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2276), - [sym_number] = ACTIONS(2276), - [sym_private_property_identifier] = ACTIONS(2276), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_object] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_satisfies] = ACTIONS(2278), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2474), - [sym__ternary_qmark] = ACTIONS(2282), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_typeof] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_in] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2209), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_STAR_STAR] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_QMARK_QMARK] = ACTIONS(2209), + [anon_sym_instanceof] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2209), + [anon_sym_delete] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(2209), + [sym_this] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_null] = ACTIONS(2209), + [sym_undefined] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_declare] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_protected] = ACTIONS(2209), + [anon_sym_override] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_any] = ACTIONS(2209), + [anon_sym_number] = ACTIONS(2209), + [anon_sym_boolean] = ACTIONS(2209), + [anon_sym_string] = ACTIONS(2209), + [anon_sym_symbol] = ACTIONS(2209), + [anon_sym_object] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_satisfies] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [sym__automatic_semicolon] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, [444] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_with] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_debugger] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LTtemplate_GT] = ACTIONS(2214), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_QMARK_DOT] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_STAR_STAR] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_instanceof] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2214), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_private_property_identifier] = ACTIONS(2214), - [sym_this] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_readonly] = ACTIONS(2214), - [anon_sym_get] = ACTIONS(2214), - [anon_sym_set] = ACTIONS(2214), - [anon_sym_declare] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_protected] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_any] = ACTIONS(2214), - [anon_sym_number] = ACTIONS(2214), - [anon_sym_boolean] = ACTIONS(2214), - [anon_sym_string] = ACTIONS(2214), - [anon_sym_symbol] = ACTIONS(2214), - [anon_sym_object] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_satisfies] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2220), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5073), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2493), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2495), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [445] = { [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_with] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_debugger] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LTtemplate_GT] = ACTIONS(2222), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_DOT] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_QMARK_DOT] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_STAR_STAR] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_QMARK_QMARK] = ACTIONS(2224), - [anon_sym_instanceof] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2222), - [anon_sym_delete] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_private_property_identifier] = ACTIONS(2222), - [sym_this] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_undefined] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_readonly] = ACTIONS(2222), - [anon_sym_get] = ACTIONS(2222), - [anon_sym_set] = ACTIONS(2222), - [anon_sym_declare] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_protected] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_any] = ACTIONS(2222), - [anon_sym_number] = ACTIONS(2222), - [anon_sym_boolean] = ACTIONS(2222), - [anon_sym_string] = ACTIONS(2222), - [anon_sym_symbol] = ACTIONS(2222), - [anon_sym_object] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_satisfies] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [sym__automatic_semicolon] = ACTIONS(2478), - [sym__ternary_qmark] = ACTIONS(2228), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2329), + [anon_sym_DOT] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_QMARK_DOT] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2329), + [anon_sym_PIPE_PIPE] = ACTIONS(2329), + [anon_sym_GT_GT] = ACTIONS(2329), + [anon_sym_GT_GT_GT] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_CARET] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2329), + [anon_sym_STAR_STAR] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_LT_EQ] = ACTIONS(2329), + [anon_sym_EQ_EQ] = ACTIONS(2329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2329), + [anon_sym_GT_EQ] = ACTIONS(2329), + [anon_sym_QMARK_QMARK] = ACTIONS(2329), + [anon_sym_instanceof] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_satisfies] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [sym__automatic_semicolon] = ACTIONS(2497), + [sym__ternary_qmark] = ACTIONS(2333), [sym_html_comment] = ACTIONS(5), }, [446] = { [sym_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2480), - [sym__ternary_qmark] = ACTIONS(2308), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_QMARK_DOT] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2337), + [anon_sym_PIPE_PIPE] = ACTIONS(2337), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_GT_GT_GT] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2337), + [anon_sym_STAR_STAR] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_EQ_EQ] = ACTIONS(2337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2337), + [anon_sym_GT_EQ] = ACTIONS(2337), + [anon_sym_QMARK_QMARK] = ACTIONS(2337), + [anon_sym_instanceof] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_private_property_identifier] = ACTIONS(2335), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_satisfies] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2499), + [sym__ternary_qmark] = ACTIONS(2341), [sym_html_comment] = ACTIONS(5), }, [447] = { [sym_comment] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_as] = ACTIONS(2314), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_typeof] = ACTIONS(2314), - [anon_sym_import] = ACTIONS(2314), - [anon_sym_with] = ACTIONS(2314), - [anon_sym_var] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(2314), - [anon_sym_in] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_debugger] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_throw] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LTtemplate_GT] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2314), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_function] = ACTIONS(2314), - [anon_sym_QMARK_DOT] = ACTIONS(2314), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_using] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2314), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2314), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_instanceof] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_void] = ACTIONS(2314), - [anon_sym_delete] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2314), - [sym_number] = ACTIONS(2314), - [sym_private_property_identifier] = ACTIONS(2314), - [sym_this] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_undefined] = ACTIONS(2314), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_public] = ACTIONS(2314), - [anon_sym_private] = ACTIONS(2314), - [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_any] = ACTIONS(2314), - [anon_sym_number] = ACTIONS(2314), - [anon_sym_boolean] = ACTIONS(2314), - [anon_sym_string] = ACTIONS(2314), - [anon_sym_symbol] = ACTIONS(2314), - [anon_sym_object] = ACTIONS(2314), - [anon_sym_abstract] = ACTIONS(2314), - [anon_sym_satisfies] = ACTIONS(2314), - [anon_sym_interface] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), - [sym__automatic_semicolon] = ACTIONS(2316), - [sym__ternary_qmark] = ACTIONS(2316), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2217), + [sym__ternary_qmark] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, [448] = { [sym_comment] = STATE(448), - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2482), - [anon_sym_import] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2482), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_LTtemplate_GT] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [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_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_using] = ACTIONS(2482), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2482), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [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_QMARK] = ACTIONS(124), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_STAR_STAR] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_QMARK_QMARK] = ACTIONS(2187), + [anon_sym_instanceof] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_satisfies] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [sym__automatic_semicolon] = ACTIONS(2189), + [sym__ternary_qmark] = ACTIONS(2189), [sym_html_comment] = ACTIONS(5), }, [449] = { [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2230), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2232), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2230), - [anon_sym_import] = ACTIONS(2230), - [anon_sym_with] = ACTIONS(2230), - [anon_sym_var] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LTtemplate_GT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_DOT] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_PIPE_PIPE] = ACTIONS(2232), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2232), - [anon_sym_STAR_STAR] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2232), - [anon_sym_EQ_EQ] = ACTIONS(2232), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2232), - [anon_sym_QMARK_QMARK] = ACTIONS(2232), - [anon_sym_instanceof] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_private_property_identifier] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_undefined] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_satisfies] = ACTIONS(2232), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2484), - [sym__ternary_qmark] = ACTIONS(2236), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_var] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_debugger] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(2161), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_QMARK_QMARK] = ACTIONS(2163), + [anon_sym_instanceof] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2161), + [anon_sym_delete] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_number] = ACTIONS(2161), + [sym_private_property_identifier] = ACTIONS(2161), + [sym_this] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [sym_undefined] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_get] = ACTIONS(2161), + [anon_sym_set] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_private] = ACTIONS(2161), + [anon_sym_protected] = ACTIONS(2161), + [anon_sym_override] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_any] = ACTIONS(2161), + [anon_sym_number] = ACTIONS(2161), + [anon_sym_boolean] = ACTIONS(2161), + [anon_sym_string] = ACTIONS(2161), + [anon_sym_symbol] = ACTIONS(2161), + [anon_sym_object] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_satisfies] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym__automatic_semicolon] = ACTIONS(2501), + [sym__ternary_qmark] = ACTIONS(2167), [sym_html_comment] = ACTIONS(5), }, [450] = { [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_DOT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_QMARK_DOT] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_PIPE_PIPE] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2200), - [anon_sym_GT_GT_GT] = ACTIONS(2200), - [anon_sym_LT_LT] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2200), - [anon_sym_STAR_STAR] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_LT_EQ] = ACTIONS(2200), - [anon_sym_EQ_EQ] = ACTIONS(2200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2200), - [anon_sym_GT_EQ] = ACTIONS(2200), - [anon_sym_QMARK_QMARK] = ACTIONS(2200), - [anon_sym_instanceof] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_satisfies] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [sym__automatic_semicolon] = ACTIONS(2202), - [sym__ternary_qmark] = ACTIONS(2202), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_var] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_switch] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_debugger] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_throw] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(2263), + [anon_sym_QMARK_DOT] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_using] = ACTIONS(2263), + [anon_sym_AMP_AMP] = ACTIONS(2265), + [anon_sym_PIPE_PIPE] = ACTIONS(2265), + [anon_sym_GT_GT] = ACTIONS(2265), + [anon_sym_GT_GT_GT] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_PERCENT] = ACTIONS(2265), + [anon_sym_STAR_STAR] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_LT_EQ] = ACTIONS(2265), + [anon_sym_EQ_EQ] = ACTIONS(2265), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2265), + [anon_sym_QMARK_QMARK] = ACTIONS(2265), + [anon_sym_instanceof] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2263), + [anon_sym_delete] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_private_property_identifier] = ACTIONS(2263), + [sym_this] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_undefined] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_get] = ACTIONS(2263), + [anon_sym_set] = ACTIONS(2263), + [anon_sym_declare] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_private] = ACTIONS(2263), + [anon_sym_protected] = ACTIONS(2263), + [anon_sym_override] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_any] = ACTIONS(2263), + [anon_sym_number] = ACTIONS(2263), + [anon_sym_boolean] = ACTIONS(2263), + [anon_sym_string] = ACTIONS(2263), + [anon_sym_symbol] = ACTIONS(2263), + [anon_sym_object] = ACTIONS(2263), + [anon_sym_abstract] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_satisfies] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [sym__automatic_semicolon] = ACTIONS(2503), + [sym__ternary_qmark] = ACTIONS(2269), [sym_html_comment] = ACTIONS(5), }, [451] = { [sym_comment] = STATE(451), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2486), - [anon_sym_import] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LTtemplate_GT] = ACTIONS(2486), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_class] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_function] = ACTIONS(2486), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_using] = ACTIONS(2486), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2486), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2486), - [anon_sym_void] = ACTIONS(2486), - [anon_sym_delete] = ACTIONS(2486), - [anon_sym_PLUS_PLUS] = ACTIONS(2486), - [anon_sym_DASH_DASH] = ACTIONS(2486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2486), - [sym_number] = ACTIONS(2486), - [sym_private_property_identifier] = ACTIONS(2486), - [sym_this] = ACTIONS(2486), - [sym_super] = ACTIONS(2486), - [sym_true] = ACTIONS(2486), - [sym_false] = ACTIONS(2486), - [sym_null] = ACTIONS(2486), - [sym_undefined] = ACTIONS(2486), - [anon_sym_AT] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_readonly] = ACTIONS(2486), - [anon_sym_get] = ACTIONS(2486), - [anon_sym_set] = ACTIONS(2486), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2486), - [anon_sym_public] = ACTIONS(2486), - [anon_sym_private] = ACTIONS(2486), - [anon_sym_protected] = ACTIONS(2486), - [anon_sym_override] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_any] = ACTIONS(2486), - [anon_sym_number] = ACTIONS(2486), - [anon_sym_boolean] = ACTIONS(2486), - [anon_sym_string] = ACTIONS(2486), - [anon_sym_symbol] = ACTIONS(2486), - [anon_sym_object] = ACTIONS(2486), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2253), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_debugger] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LTtemplate_GT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2255), + [anon_sym_DOT] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_QMARK_DOT] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2255), + [anon_sym_GT_GT] = ACTIONS(2255), + [anon_sym_GT_GT_GT] = ACTIONS(2255), + [anon_sym_LT_LT] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_CARET] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2255), + [anon_sym_STAR_STAR] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_LT_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2255), + [anon_sym_GT_EQ] = ACTIONS(2255), + [anon_sym_QMARK_QMARK] = ACTIONS(2255), + [anon_sym_instanceof] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2253), + [sym_number] = ACTIONS(2253), + [sym_private_property_identifier] = ACTIONS(2253), + [sym_this] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_null] = ACTIONS(2253), + [sym_undefined] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_satisfies] = ACTIONS(2255), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [sym__automatic_semicolon] = ACTIONS(2505), + [sym__ternary_qmark] = ACTIONS(2259), [sym_html_comment] = ACTIONS(5), }, [452] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(452), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(2486), - [anon_sym_import] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LTtemplate_GT] = ACTIONS(2486), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_class] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_function] = ACTIONS(2486), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_using] = ACTIONS(2486), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2486), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2486), - [anon_sym_void] = ACTIONS(2486), - [anon_sym_delete] = ACTIONS(2486), - [anon_sym_PLUS_PLUS] = ACTIONS(2486), - [anon_sym_DASH_DASH] = ACTIONS(2486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2486), - [sym_number] = ACTIONS(2486), - [sym_private_property_identifier] = ACTIONS(2486), - [sym_this] = ACTIONS(2486), - [sym_super] = ACTIONS(2486), - [sym_true] = ACTIONS(2486), - [sym_false] = ACTIONS(2486), - [sym_null] = ACTIONS(2486), - [sym_undefined] = ACTIONS(2486), - [anon_sym_AT] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_readonly] = ACTIONS(2486), - [anon_sym_get] = ACTIONS(2486), - [anon_sym_set] = ACTIONS(2486), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2486), - [anon_sym_public] = ACTIONS(2486), - [anon_sym_private] = ACTIONS(2486), - [anon_sym_protected] = ACTIONS(2486), - [anon_sym_override] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_any] = ACTIONS(2486), - [anon_sym_number] = ACTIONS(2486), - [anon_sym_boolean] = ACTIONS(2486), - [anon_sym_string] = ACTIONS(2486), - [anon_sym_symbol] = ACTIONS(2486), - [anon_sym_object] = ACTIONS(2486), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [453] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(453), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5014), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_override_modifier] = STATE(464), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [454] = { - [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LTtemplate_GT] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_QMARK_DOT] = ACTIONS(2286), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2284), - [sym_number] = ACTIONS(2284), - [sym_private_property_identifier] = ACTIONS(2284), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_object] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_satisfies] = ACTIONS(2286), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2490), - [sym__ternary_qmark] = ACTIONS(2290), - [sym_html_comment] = ACTIONS(5), - }, - [455] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2901), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_spread_element] = STATE(5771), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(455), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2454), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [456] = { - [sym_import] = STATE(4332), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(456), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2494), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5069), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1090), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2507), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(4289), - [sym_expression_statement] = STATE(473), - [sym_empty_statement] = STATE(473), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6510), - [sym_string] = STATE(3008), - [sym_comment] = STATE(457), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [453] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6590), + [sym_string] = STATE(3003), + [sym_comment] = STATE(453), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2509), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -89163,961 +89558,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [458] = { - [sym_comment] = STATE(458), - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_typeof] = ACTIONS(2482), - [anon_sym_import] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_await] = ACTIONS(2482), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_LTtemplate_GT] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [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_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_using] = ACTIONS(2482), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2482), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [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_QMARK] = ACTIONS(124), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [459] = { - [sym_import] = STATE(4242), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(459), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3777), - [sym__type_query_subscript_expression] = STATE(3760), - [sym__type_query_call_expression] = STATE(3953), - [sym__type_query_instantiation_expression] = STATE(4072), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2496), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [460] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(460), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2498), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [461] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(461), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5070), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_override_modifier] = STATE(468), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2500), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [462] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3254), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(462), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym__type_query_member_expression] = STATE(3703), - [sym__type_query_subscript_expression] = STATE(3704), - [sym__type_query_call_expression] = STATE(3759), - [sym__type_query_instantiation_expression] = STATE(3880), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2504), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [463] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(463), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5071), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2506), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2508), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [464] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(464), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5067), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1091), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2510), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [465] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(465), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5014), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2511), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6523), - [sym_string] = STATE(3008), - [sym_comment] = STATE(466), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [454] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6706), + [sym_string] = STATE(3003), + [sym_comment] = STATE(454), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_SEMI] = ACTIONS(2513), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90139,93 +89668,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym__automatic_semicolon] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2515), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6432), - [sym_string] = STATE(3008), - [sym_comment] = STATE(467), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [455] = { + [sym_comment] = STATE(455), + [sym_identifier] = ACTIONS(2487), + [anon_sym_export] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(2487), + [anon_sym_import] = ACTIONS(2487), + [anon_sym_let] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(2487), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_LTtemplate_GT] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_function] = ACTIONS(2487), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_void] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2487), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_undefined] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_get] = ACTIONS(2487), + [anon_sym_set] = ACTIONS(2487), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_private] = ACTIONS(2487), + [anon_sym_protected] = ACTIONS(2487), + [anon_sym_override] = ACTIONS(2487), + [anon_sym_module] = ACTIONS(2487), + [anon_sym_any] = ACTIONS(2487), + [anon_sym_number] = ACTIONS(2487), + [anon_sym_boolean] = ACTIONS(2487), + [anon_sym_string] = ACTIONS(2487), + [anon_sym_symbol] = ACTIONS(2487), + [anon_sym_object] = ACTIONS(2487), + [anon_sym_global] = ACTIONS(2487), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), + [sym_html_comment] = ACTIONS(5), + }, + [456] = { + [sym_comment] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_var] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_switch] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_in] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_debugger] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_GT] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(2239), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_using] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2239), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_delete] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_private_property_identifier] = ACTIONS(2239), + [sym_this] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_null] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_get] = ACTIONS(2239), + [anon_sym_set] = ACTIONS(2239), + [anon_sym_declare] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_private] = ACTIONS(2239), + [anon_sym_protected] = ACTIONS(2239), + [anon_sym_override] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_any] = ACTIONS(2239), + [anon_sym_number] = ACTIONS(2239), + [anon_sym_boolean] = ACTIONS(2239), + [anon_sym_string] = ACTIONS(2239), + [anon_sym_symbol] = ACTIONS(2239), + [anon_sym_object] = ACTIONS(2239), + [anon_sym_abstract] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_satisfies] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [sym__automatic_semicolon] = ACTIONS(2241), + [sym__ternary_qmark] = ACTIONS(2241), + [sym_html_comment] = ACTIONS(5), + }, + [457] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2001), + [sym_subscript_expression] = STATE(2001), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4446), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(457), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_pattern] = STATE(5141), + [sym_rest_pattern] = STATE(4549), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2001), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1066), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2517), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2519), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [458] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6569), + [sym_string] = STATE(3003), + [sym_comment] = STATE(458), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2521), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90247,309 +90108,1305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym__automatic_semicolon] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2523), + [sym_html_comment] = ACTIONS(5), + }, + [459] = { + [sym_comment] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_var] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_debugger] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2309), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_instanceof] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_private_property_identifier] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_undefined] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_abstract] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_satisfies] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [sym__automatic_semicolon] = ACTIONS(2525), + [sym__ternary_qmark] = ACTIONS(2313), + [sym_html_comment] = ACTIONS(5), + }, + [460] = { + [sym_comment] = STATE(460), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2273), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_debugger] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LTtemplate_GT] = ACTIONS(2273), + [anon_sym_GT] = ACTIONS(2275), + [anon_sym_DOT] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_QMARK_DOT] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2275), + [anon_sym_PIPE_PIPE] = ACTIONS(2275), + [anon_sym_GT_GT] = ACTIONS(2275), + [anon_sym_GT_GT_GT] = ACTIONS(2275), + [anon_sym_LT_LT] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_PERCENT] = ACTIONS(2275), + [anon_sym_STAR_STAR] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_LT_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2275), + [anon_sym_GT_EQ] = ACTIONS(2275), + [anon_sym_QMARK_QMARK] = ACTIONS(2275), + [anon_sym_instanceof] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_number] = ACTIONS(2273), + [sym_private_property_identifier] = ACTIONS(2273), + [sym_this] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_get] = ACTIONS(2273), + [anon_sym_set] = ACTIONS(2273), + [anon_sym_declare] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_private] = ACTIONS(2273), + [anon_sym_protected] = ACTIONS(2273), + [anon_sym_override] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_any] = ACTIONS(2273), + [anon_sym_number] = ACTIONS(2273), + [anon_sym_boolean] = ACTIONS(2273), + [anon_sym_string] = ACTIONS(2273), + [anon_sym_symbol] = ACTIONS(2273), + [anon_sym_object] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_satisfies] = ACTIONS(2275), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [sym__automatic_semicolon] = ACTIONS(2527), + [sym__ternary_qmark] = ACTIONS(2279), + [sym_html_comment] = ACTIONS(5), + }, + [461] = { + [sym_comment] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_COMMA] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_in] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_debugger] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_QMARK_DOT] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_PIPE_PIPE] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2301), + [anon_sym_GT_GT_GT] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_CARET] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_PERCENT] = ACTIONS(2301), + [anon_sym_STAR_STAR] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2301), + [anon_sym_GT_EQ] = ACTIONS(2301), + [anon_sym_QMARK_QMARK] = ACTIONS(2301), + [anon_sym_instanceof] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_private_property_identifier] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_undefined] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_declare] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_private] = ACTIONS(2299), + [anon_sym_protected] = ACTIONS(2299), + [anon_sym_override] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_any] = ACTIONS(2299), + [anon_sym_number] = ACTIONS(2299), + [anon_sym_boolean] = ACTIONS(2299), + [anon_sym_string] = ACTIONS(2299), + [anon_sym_symbol] = ACTIONS(2299), + [anon_sym_object] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_satisfies] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [sym__automatic_semicolon] = ACTIONS(2529), + [sym__ternary_qmark] = ACTIONS(2305), + [sym_html_comment] = ACTIONS(5), + }, + [462] = { + [sym_comment] = STATE(462), + [ts_builtin_sym_end] = ACTIONS(2445), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_debugger] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LTtemplate_GT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_QMARK_DOT] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_GT_GT] = ACTIONS(2283), + [anon_sym_GT_GT_GT] = ACTIONS(2283), + [anon_sym_LT_LT] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_SLASH] = ACTIONS(2281), + [anon_sym_PERCENT] = ACTIONS(2283), + [anon_sym_STAR_STAR] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_QMARK_QMARK] = ACTIONS(2283), + [anon_sym_instanceof] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_number] = ACTIONS(2281), + [sym_private_property_identifier] = ACTIONS(2281), + [sym_this] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_null] = ACTIONS(2281), + [sym_undefined] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_get] = ACTIONS(2281), + [anon_sym_set] = ACTIONS(2281), + [anon_sym_declare] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_private] = ACTIONS(2281), + [anon_sym_protected] = ACTIONS(2281), + [anon_sym_override] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_any] = ACTIONS(2281), + [anon_sym_number] = ACTIONS(2281), + [anon_sym_boolean] = ACTIONS(2281), + [anon_sym_string] = ACTIONS(2281), + [anon_sym_symbol] = ACTIONS(2281), + [anon_sym_object] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_satisfies] = ACTIONS(2283), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [sym__automatic_semicolon] = ACTIONS(2531), + [sym__ternary_qmark] = ACTIONS(2287), + [sym_html_comment] = ACTIONS(5), + }, + [463] = { + [sym_comment] = STATE(463), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2533), + [sym__ternary_qmark] = ACTIONS(2193), + [sym_html_comment] = ACTIONS(5), + }, + [464] = { + [sym_comment] = STATE(464), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2225), + [anon_sym_PIPE_PIPE] = ACTIONS(2225), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2225), + [anon_sym_STAR_STAR] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2225), + [anon_sym_QMARK_QMARK] = ACTIONS(2225), + [anon_sym_instanceof] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_satisfies] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2227), + [sym__ternary_qmark] = ACTIONS(2227), + [sym_html_comment] = ACTIONS(5), + }, + [465] = { + [sym_comment] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LTtemplate_GT] = ACTIONS(2289), + [anon_sym_GT] = ACTIONS(2291), + [anon_sym_DOT] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_QMARK_DOT] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2291), + [anon_sym_PIPE_PIPE] = ACTIONS(2291), + [anon_sym_GT_GT] = ACTIONS(2291), + [anon_sym_GT_GT_GT] = ACTIONS(2291), + [anon_sym_LT_LT] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2291), + [anon_sym_STAR_STAR] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2291), + [anon_sym_GT_EQ] = ACTIONS(2291), + [anon_sym_QMARK_QMARK] = ACTIONS(2291), + [anon_sym_instanceof] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = 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), + [sym_number] = ACTIONS(2289), + [sym_private_property_identifier] = ACTIONS(2289), + [sym_this] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [sym_undefined] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_override] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_object] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_satisfies] = ACTIONS(2291), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2535), + [sym__ternary_qmark] = ACTIONS(2295), + [sym_html_comment] = ACTIONS(5), + }, + [466] = { + [sym_comment] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_satisfies] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2201), + [sym__ternary_qmark] = ACTIONS(2201), + [sym_html_comment] = ACTIONS(5), + }, + [467] = { + [sym_comment] = STATE(467), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2193), + [sym__ternary_qmark] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [468] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2002), - [sym_subscript_expression] = STATE(2002), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), [sym_comment] = STATE(468), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_pattern] = STATE(5139), - [sym_rest_pattern] = STATE(4543), - [sym_non_null_expression] = STATE(2002), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(2520), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_STAR_STAR] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_QMARK_QMARK] = ACTIONS(2147), + [anon_sym_instanceof] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_satisfies] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2537), + [sym__ternary_qmark] = ACTIONS(2169), [sym_html_comment] = ACTIONS(5), }, [469] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2633), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6704), - [sym_string] = STATE(3008), [sym_comment] = STATE(469), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym__automatic_semicolon] = ACTIONS(2526), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_debugger] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_STAR_STAR] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_QMARK_QMARK] = ACTIONS(2219), + [anon_sym_instanceof] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_delete] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_private_property_identifier] = ACTIONS(2219), + [sym_this] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_null] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_abstract] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_satisfies] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [sym__automatic_semicolon] = ACTIONS(2221), + [sym__ternary_qmark] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, [470] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2571), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6551), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6537), + [sym_string] = STATE(3003), [sym_comment] = STATE(470), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2539), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90571,3056 +91428,2574 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym__automatic_semicolon] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym__automatic_semicolon] = ACTIONS(2541), [sym_html_comment] = ACTIONS(5), }, [471] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6560), - [sym_string] = STATE(3008), [sym_comment] = STATE(471), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_identifier] = ACTIONS(2485), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(2485), + [anon_sym_import] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_LTtemplate_GT] = ACTIONS(2485), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_function] = ACTIONS(2485), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_SLASH] = ACTIONS(2485), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_void] = ACTIONS(2485), + [anon_sym_delete] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2485), + [sym_number] = ACTIONS(2485), + [sym_private_property_identifier] = ACTIONS(2485), + [sym_this] = ACTIONS(2485), + [sym_super] = ACTIONS(2485), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_null] = ACTIONS(2485), + [sym_undefined] = ACTIONS(2485), + [anon_sym_AT] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_readonly] = ACTIONS(2485), + [anon_sym_get] = ACTIONS(2485), + [anon_sym_set] = ACTIONS(2485), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(2485), + [anon_sym_public] = ACTIONS(2485), + [anon_sym_private] = ACTIONS(2485), + [anon_sym_protected] = ACTIONS(2485), + [anon_sym_override] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_any] = ACTIONS(2485), + [anon_sym_number] = ACTIONS(2485), + [anon_sym_boolean] = ACTIONS(2485), + [anon_sym_string] = ACTIONS(2485), + [anon_sym_symbol] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(2485), + [anon_sym_global] = ACTIONS(2485), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), + [sym_html_comment] = ACTIONS(5), + }, + [472] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7409), + [sym_string] = STATE(2648), + [sym_comment] = STATE(472), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym__automatic_semicolon] = ACTIONS(2534), - [sym_html_comment] = ACTIONS(5), - }, - [472] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7262), - [sym_string] = STATE(2646), - [sym_comment] = STATE(472), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2536), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [473] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2720), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(6952), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7089), + [sym_string] = STATE(2648), [sym_comment] = STATE(473), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2538), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2545), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [474] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2202), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2210), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2210), + [sym_subscript_expression] = STATE(2210), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), [sym__destructuring_pattern] = STATE(6181), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(474), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2202), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2540), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_var] = ACTIONS(2548), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_const] = ACTIONS(2552), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2554), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2210), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2547), + [anon_sym_export] = ACTIONS(2549), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2555), + [anon_sym_let] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2561), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2556), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2567), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_readonly] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_declare] = ACTIONS(2542), - [anon_sym_public] = ACTIONS(2542), - [anon_sym_private] = ACTIONS(2542), - [anon_sym_protected] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_any] = ACTIONS(2542), - [anon_sym_number] = ACTIONS(2542), - [anon_sym_boolean] = ACTIONS(2542), - [anon_sym_string] = ACTIONS(2542), - [anon_sym_symbol] = ACTIONS(2542), - [anon_sym_object] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_readonly] = ACTIONS(2549), + [anon_sym_get] = ACTIONS(2549), + [anon_sym_set] = ACTIONS(2549), + [anon_sym_declare] = ACTIONS(2549), + [anon_sym_public] = ACTIONS(2549), + [anon_sym_private] = ACTIONS(2549), + [anon_sym_protected] = ACTIONS(2549), + [anon_sym_override] = ACTIONS(2549), + [anon_sym_module] = ACTIONS(2549), + [anon_sym_any] = ACTIONS(2549), + [anon_sym_number] = ACTIONS(2549), + [anon_sym_boolean] = ACTIONS(2549), + [anon_sym_string] = ACTIONS(2549), + [anon_sym_symbol] = ACTIONS(2549), + [anon_sym_object] = ACTIONS(2549), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [475] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2729), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7081), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2740), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7047), + [sym_string] = STATE(2648), [sym_comment] = STATE(475), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [476] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2689), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7409), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7279), + [sym_string] = STATE(2648), [sym_comment] = STATE(476), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [477] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2669), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7214), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7225), + [sym_string] = STATE(2648), [sym_comment] = STATE(477), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2566), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(2573), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [478] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2549), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3335), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2638), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(478), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [479] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2602), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2598), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3102), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(479), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [480] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2363), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7103), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2719), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7082), + [sym_string] = STATE(2648), [sym_comment] = STATE(480), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [481] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7177), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2734), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7044), + [sym_string] = STATE(2648), [sym_comment] = STATE(481), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [482] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3192), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7421), + [sym_string] = STATE(2648), [sym_comment] = STATE(482), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [483] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2753), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(483), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym__extends_clause_single] = STATE(5529), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [484] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2549), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3032), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3013), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2911), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(484), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [485] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3036), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3094), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2927), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(485), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [486] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2683), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2686), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7216), + [sym_string] = STATE(2648), [sym_comment] = STATE(486), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [487] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2520), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2682), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(2999), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(487), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [488] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2523), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2680), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2428), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7355), + [sym_string] = STATE(2648), [sym_comment] = STATE(488), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [489] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3273), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2965), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2482), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3274), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(489), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [490] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3180), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2964), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3106), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2928), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(490), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [491] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3166), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2963), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2488), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3271), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(491), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [492] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3085), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2638), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3028), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(492), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [493] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2610), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3058), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7349), + [sym_string] = STATE(2648), [sym_comment] = STATE(493), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [494] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2523), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3061), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3279), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2535), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(494), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [495] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2520), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3064), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(495), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [496] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3065), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(496), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [497] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3017), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(497), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [sym_html_comment] = ACTIONS(5), - }, - [498] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3314), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(498), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [499] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3017), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(499), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2572), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(2577), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -93629,10 +94004,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -93654,397 +94029,621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3017), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(500), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [495] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3125), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2932), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(495), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2610), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(501), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [496] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2598), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2683), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(496), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2730), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7127), - [sym_string] = STATE(2646), - [sym_comment] = STATE(502), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [497] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2598), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3049), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(497), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2570), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6590), - [sym_string] = STATE(3008), - [sym_comment] = STATE(503), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [498] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2697), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7092), + [sym_string] = STATE(2648), + [sym_comment] = STATE(498), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [499] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3086), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(499), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_mapped_type_clause] = STATE(6954), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2581), + [anon_sym_export] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2587), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_readonly] = ACTIONS(2583), + [anon_sym_get] = ACTIONS(2583), + [anon_sym_set] = ACTIONS(2583), + [anon_sym_declare] = ACTIONS(2583), + [anon_sym_public] = ACTIONS(2583), + [anon_sym_private] = ACTIONS(2583), + [anon_sym_protected] = ACTIONS(2583), + [anon_sym_override] = ACTIONS(2583), + [anon_sym_module] = ACTIONS(2583), + [anon_sym_any] = ACTIONS(2583), + [anon_sym_number] = ACTIONS(2583), + [anon_sym_boolean] = ACTIONS(2583), + [anon_sym_string] = ACTIONS(2583), + [anon_sym_symbol] = ACTIONS(2583), + [anon_sym_object] = ACTIONS(2583), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [500] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2500), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6570), + [sym_string] = STATE(3003), + [sym_comment] = STATE(500), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -94053,10 +94652,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -94078,397 +94677,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3256), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(504), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [501] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2716), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7085), + [sym_string] = STATE(2648), + [sym_comment] = STATE(501), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3166), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(505), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [502] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2638), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3285), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(502), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3180), + [503] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3061), [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2584), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), [sym_member_expression] = STATE(2110), [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(506), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(503), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2500), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6433), - [sym_string] = STATE(3008), - [sym_comment] = STATE(507), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [504] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3061), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2606), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(504), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(2577), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -94477,10 +95084,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -94502,1457 +95109,1593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3273), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2585), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(508), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [505] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2727), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7037), + [sym_string] = STATE(2648), + [sym_comment] = STATE(505), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6561), - [sym_string] = STATE(3008), - [sym_comment] = STATE(509), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [506] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2712), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(506), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym__extends_clause_single] = STATE(5531), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [507] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3279), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(507), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2701), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7036), - [sym_string] = STATE(2646), - [sym_comment] = STATE(510), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [508] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2501), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3065), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(508), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2421), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7416), - [sym_string] = STATE(2646), - [sym_comment] = STATE(511), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [509] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2721), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7074), + [sym_string] = STATE(2648), + [sym_comment] = STATE(509), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2693), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7071), - [sym_string] = STATE(2646), - [sym_comment] = STATE(512), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [510] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2638), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2671), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(510), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3085), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2905), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(513), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [511] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3061), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2812), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(511), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [sym_html_comment] = ACTIONS(5), - }, - [514] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2678), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(514), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7220), - [sym_string] = STATE(2646), - [sym_comment] = STATE(515), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [512] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2482), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3098), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(512), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(516), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym__extends_clause_single] = STATE(5994), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [513] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2501), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3270), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(513), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2549), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3244), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(517), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [514] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2488), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2699), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(514), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3192), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2877), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(518), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [515] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6691), + [sym_string] = STATE(3003), + [sym_comment] = STATE(515), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2549), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(519), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [516] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2488), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3099), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(516), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(520), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_mapped_type_clause] = STATE(7099), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2576), - [anon_sym_namespace] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2576), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [517] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2488), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3067), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(517), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_readonly] = ACTIONS(2576), - [anon_sym_get] = ACTIONS(2576), - [anon_sym_set] = ACTIONS(2576), - [anon_sym_declare] = ACTIONS(2576), - [anon_sym_public] = ACTIONS(2576), - [anon_sym_private] = ACTIONS(2576), - [anon_sym_protected] = ACTIONS(2576), - [anon_sym_override] = ACTIONS(2576), - [anon_sym_module] = ACTIONS(2576), - [anon_sym_any] = ACTIONS(2576), - [anon_sym_number] = ACTIONS(2576), - [anon_sym_boolean] = ACTIONS(2576), - [anon_sym_string] = ACTIONS(2576), - [anon_sym_symbol] = ACTIONS(2576), - [anon_sym_object] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6528), - [sym_string] = STATE(3008), - [sym_comment] = STATE(521), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [518] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2482), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(518), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [519] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6541), + [sym_string] = STATE(3003), + [sym_comment] = STATE(519), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -95961,10 +96704,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -95986,2411 +96729,2457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [522] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2549), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3120), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(522), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2634), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_sequence_expression] = STATE(6691), - [sym_string] = STATE(3008), - [sym_comment] = STATE(523), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [520] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3279), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2819), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(520), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [521] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7230), + [sym_string] = STATE(2648), + [sym_comment] = STATE(521), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [522] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2501), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3100), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(522), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [523] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7083), + [sym_string] = STATE(2648), + [sym_comment] = STATE(523), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [524] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7228), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2598), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(524), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [525] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2727), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7078), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2598), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3360), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(525), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [526] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7073), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3086), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(526), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_mapped_type_clause] = STATE(7105), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2591), + [anon_sym_export] = ACTIONS(2593), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2593), + [anon_sym_get] = ACTIONS(2593), + [anon_sym_set] = ACTIONS(2593), + [anon_sym_declare] = ACTIONS(2593), + [anon_sym_public] = ACTIONS(2593), + [anon_sym_private] = ACTIONS(2593), + [anon_sym_protected] = ACTIONS(2593), + [anon_sym_override] = ACTIONS(2593), + [anon_sym_module] = ACTIONS(2593), + [anon_sym_any] = ACTIONS(2593), + [anon_sym_number] = ACTIONS(2593), + [anon_sym_boolean] = ACTIONS(2593), + [anon_sym_string] = ACTIONS(2593), + [anon_sym_symbol] = ACTIONS(2593), + [anon_sym_object] = ACTIONS(2593), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [527] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2725), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7066), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7224), + [sym_string] = STATE(2648), [sym_comment] = STATE(527), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [528] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7417), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2638), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3127), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(528), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [529] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2549), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2717), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(529), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [530] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3043), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2712), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(530), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym__extends_clause_single] = STATE(5996), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [531] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2610), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3223), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2741), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7183), + [sym_string] = STATE(2648), [sym_comment] = STATE(531), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [532] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7351), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2501), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3313), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(532), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [533] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2610), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(533), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [534] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7213), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2598), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2710), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(534), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [535] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7336), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2501), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2698), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(535), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [536] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2706), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7211), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2362), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7107), + [sym_string] = STATE(2648), [sym_comment] = STATE(536), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [537] = { - [sym_import] = STATE(4277), + [sym_import] = STATE(4252), [sym_statement_block] = STATE(2523), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3073), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3215), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(537), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [538] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2520), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3074), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3125), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(538), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [539] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3075), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2571), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6591), + [sym_string] = STATE(3003), [sym_comment] = STATE(539), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [540] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2710), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7206), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7135), + [sym_string] = STATE(2648), [sym_comment] = STATE(540), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2711), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7215), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2482), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2642), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(541), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [542] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2523), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3201), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_sequence_expression] = STATE(6438), + [sym_string] = STATE(3003), [sym_comment] = STATE(542), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), - [sym_html_comment] = ACTIONS(5), - }, - [543] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2520), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3200), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(543), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), - [sym_html_comment] = ACTIONS(5), - }, - [544] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3085), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(544), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2572), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -98399,10 +99188,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -98424,185 +99213,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [543] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3106), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(543), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [544] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(544), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [545] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7034), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2482), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3319), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(545), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [546] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3192), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2488), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3318), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(546), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2572), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [547] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2501), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2766), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(547), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [548] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2638), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(548), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [549] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3106), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2460), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(549), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(2577), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -98611,10 +99944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -98636,1775 +99969,1593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [547] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_sequence_expression] = STATE(7089), - [sym_string] = STATE(2646), - [sym_comment] = STATE(547), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [548] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(548), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [549] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2520), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(549), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2523), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2488), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(550), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [551] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2749), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2501), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2640), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(551), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [552] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2520), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2750), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3094), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(552), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [553] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2523), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2751), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2488), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2768), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(553), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [554] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3195), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3125), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(554), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [555] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2610), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2759), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2482), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2770), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(555), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [556] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2549), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2638), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3219), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(556), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [557] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2610), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2484), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2598), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2633), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(557), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [558] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3365), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7420), + [sym_string] = STATE(2648), [sym_comment] = STATE(558), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [559] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2520), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3346), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3345), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(559), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [560] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2523), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3343), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3013), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(560), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [561] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2610), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3312), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2696), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7222), + [sym_string] = STATE(2648), [sym_comment] = STATE(561), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [562] = { - [sym_import] = STATE(4277), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2765), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2691), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7220), + [sym_string] = STATE(2648), [sym_comment] = STATE(562), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [563] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3180), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2688), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_sequence_expression] = STATE(7218), + [sym_string] = STATE(2648), [sym_comment] = STATE(563), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2572), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [564] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3013), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(564), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(2577), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -100413,10 +101564,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -100438,79 +101589,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3166), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(564), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2572), + [565] = { + [sym_import] = STATE(4165), + [sym_statement_block] = STATE(3094), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(565), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(2577), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -100519,10 +101672,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -100544,605 +101697,937 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [565] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(565), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_mapped_type_clause] = STATE(6949), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2584), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [566] = { + [sym_import] = STATE(4252), + [sym_statement_block] = STATE(2482), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2701), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(566), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(4289), - [sym_statement_block] = STATE(3273), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2624), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(566), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [567] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3344), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(567), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [568] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2702), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(568), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [569] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(569), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2601), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [570] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(570), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(567), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [571] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2887), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(571), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2944), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(568), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [572] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2573), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(572), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3302), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(569), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [573] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(573), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2493), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(570), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [574] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(574), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101151,10 +102636,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -101176,708 +102661,1043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2762), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(571), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [575] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2746), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(575), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2537), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(572), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [576] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2630), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(576), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3270), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(573), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [577] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(577), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2882), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(574), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [578] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(578), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(575), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [579] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2624), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(579), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(576), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [580] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2619), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(580), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [581] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2780), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(581), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2603), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [582] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(582), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(577), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [583] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(583), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [584] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2575), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(584), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101886,10 +103706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -101911,78 +103731,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(578), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [585] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2618), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(585), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [586] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(586), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101991,10 +103920,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -102016,2808 +103945,2006 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [579] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3303), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(579), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [580] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7268), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(580), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2229), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2596), - [anon_sym_type] = ACTIONS(2596), - [anon_sym_namespace] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2600), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2604), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_readonly] = ACTIONS(2596), - [anon_sym_get] = ACTIONS(2596), - [anon_sym_set] = ACTIONS(2596), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [581] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2535), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(581), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [582] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2559), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(582), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [583] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3341), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(583), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [584] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2758), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(584), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), - [sym_html_comment] = ACTIONS(5), - }, - [585] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2928), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(585), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [586] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(586), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2606), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [587] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(587), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [588] = { - [sym_import] = STATE(4289), + [sym_import] = STATE(4165), [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2607), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), [sym_member_expression] = STATE(2110), [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(588), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [589] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2558), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3282), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(589), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2603), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [590] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(590), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [591] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3292), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2634), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(591), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [592] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2230), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2230), + [sym_subscript_expression] = STATE(2230), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7151), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(592), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2230), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2605), + [anon_sym_export] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2611), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2613), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2615), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_get] = ACTIONS(2607), + [anon_sym_set] = ACTIONS(2607), + [anon_sym_declare] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_private] = ACTIONS(2607), + [anon_sym_protected] = ACTIONS(2607), + [anon_sym_override] = ACTIONS(2607), + [anon_sym_module] = ACTIONS(2607), + [anon_sym_any] = ACTIONS(2607), + [anon_sym_number] = ACTIONS(2607), + [anon_sym_boolean] = ACTIONS(2607), + [anon_sym_string] = ACTIONS(2607), + [anon_sym_symbol] = ACTIONS(2607), + [anon_sym_object] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [593] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2625), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(593), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [594] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2597), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(594), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [595] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3113), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2228), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2228), + [sym_subscript_expression] = STATE(2228), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7269), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(595), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2228), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2617), + [anon_sym_export] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2625), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2627), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_readonly] = ACTIONS(2619), + [anon_sym_get] = ACTIONS(2619), + [anon_sym_set] = ACTIONS(2619), + [anon_sym_declare] = ACTIONS(2619), + [anon_sym_public] = ACTIONS(2619), + [anon_sym_private] = ACTIONS(2619), + [anon_sym_protected] = ACTIONS(2619), + [anon_sym_override] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_any] = ACTIONS(2619), + [anon_sym_number] = ACTIONS(2619), + [anon_sym_boolean] = ACTIONS(2619), + [anon_sym_string] = ACTIONS(2619), + [anon_sym_symbol] = ACTIONS(2619), + [anon_sym_object] = ACTIONS(2619), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [596] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3138), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(596), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2603), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [597] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2532), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(597), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2629), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [598] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2503), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(598), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [599] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2613), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(599), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2608), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [600] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3309), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(600), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [601] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2612), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(601), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [602] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2601), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(602), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [603] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(603), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [604] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2722), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(604), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [604] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2610), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(604), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [605] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2755), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(605), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -104826,10 +105953,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -104842,7 +105969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2610), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), @@ -104851,2073 +105978,2434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [606] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3069), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(606), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [607] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2835), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2604), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(607), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [608] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2542), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(608), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [609] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2886), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(609), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2462), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(609), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [610] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(610), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [610] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3311), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(610), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [611] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2461), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2593), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(611), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [612] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3277), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2590), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(612), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [613] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2769), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3137), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(613), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [614] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3316), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3138), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(614), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [615] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2770), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(615), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [616] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(616), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [617] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(617), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [618] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2771), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3090), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(618), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [619] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(619), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [620] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2772), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(620), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [621] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2774), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(621), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [622] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2648), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(622), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2629), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [623] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3031), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(623), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [624] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2776), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(624), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [625] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3191), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(625), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [626] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2232), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2232), + [sym_subscript_expression] = STATE(2232), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7078), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(626), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2232), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2631), + [anon_sym_export] = ACTIONS(2633), + [anon_sym_type] = ACTIONS(2633), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2637), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_readonly] = ACTIONS(2633), + [anon_sym_get] = ACTIONS(2633), + [anon_sym_set] = ACTIONS(2633), + [anon_sym_declare] = ACTIONS(2633), + [anon_sym_public] = ACTIONS(2633), + [anon_sym_private] = ACTIONS(2633), + [anon_sym_protected] = ACTIONS(2633), + [anon_sym_override] = ACTIONS(2633), + [anon_sym_module] = ACTIONS(2633), + [anon_sym_any] = ACTIONS(2633), + [anon_sym_number] = ACTIONS(2633), + [anon_sym_boolean] = ACTIONS(2633), + [anon_sym_string] = ACTIONS(2633), + [anon_sym_symbol] = ACTIONS(2633), + [anon_sym_object] = ACTIONS(2633), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [627] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3192), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(627), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [628] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(628), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -106926,10 +108414,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -106951,2913 +108439,2862 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [626] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3033), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(626), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [627] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2010), - [sym_subscript_expression] = STATE(2010), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4437), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(627), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2010), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2612), - [anon_sym_export] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_readonly] = ACTIONS(2614), - [anon_sym_get] = ACTIONS(2614), - [anon_sym_set] = ACTIONS(2614), - [anon_sym_declare] = ACTIONS(2614), - [anon_sym_public] = ACTIONS(2614), - [anon_sym_private] = ACTIONS(2614), - [anon_sym_protected] = ACTIONS(2614), - [anon_sym_override] = ACTIONS(2614), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_any] = ACTIONS(2614), - [anon_sym_number] = ACTIONS(2614), - [anon_sym_boolean] = ACTIONS(2614), - [anon_sym_string] = ACTIONS(2614), - [anon_sym_symbol] = ACTIONS(2614), - [anon_sym_object] = ACTIONS(2614), - [sym_html_comment] = ACTIONS(5), - }, - [628] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2777), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(628), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [629] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3034), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2538), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(629), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [630] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3276), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(630), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [631] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3138), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(631), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [632] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3035), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2756), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(632), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [633] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(633), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [634] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2690), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3095), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(634), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [635] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2684), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(635), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [636] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3275), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3096), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(636), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [637] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2778), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(637), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [638] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2753), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(638), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [639] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3097), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(639), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2606), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [640] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3037), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(640), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [641] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2779), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(641), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2643), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [642] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3038), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(642), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [643] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2230), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2230), - [sym_subscript_expression] = STATE(2230), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2554), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(643), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2230), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2624), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_readonly] = ACTIONS(2626), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_declare] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_protected] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_any] = ACTIONS(2626), - [anon_sym_number] = ACTIONS(2626), - [anon_sym_boolean] = ACTIONS(2626), - [anon_sym_string] = ACTIONS(2626), - [anon_sym_symbol] = ACTIONS(2626), - [anon_sym_object] = ACTIONS(2626), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [644] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3358), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3101), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(644), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [645] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3193), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2738), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2097), + [sym_subscript_expression] = STATE(2097), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4973), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(645), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2097), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2645), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_namespace] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2649), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_readonly] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1778), + [anon_sym_set] = ACTIONS(1778), + [anon_sym_declare] = ACTIONS(1778), + [anon_sym_public] = ACTIONS(1778), + [anon_sym_private] = ACTIONS(1778), + [anon_sym_protected] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_any] = ACTIONS(1778), + [anon_sym_number] = ACTIONS(1778), + [anon_sym_boolean] = ACTIONS(1778), + [anon_sym_string] = ACTIONS(1778), + [anon_sym_symbol] = ACTIONS(1778), + [anon_sym_object] = ACTIONS(1778), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [646] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3045), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(646), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2603), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [647] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3107), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(647), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [648] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3356), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3108), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(648), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [649] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2645), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3109), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(649), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [650] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(650), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [651] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(651), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [652] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2718), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2525), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(652), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [653] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3114), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(653), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [654] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3115), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(654), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [655] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(655), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -109866,10 +111303,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -109891,1653 +111328,1364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [654] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2541), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(654), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(655), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [656] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3116), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(656), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3022), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(656), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [657] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2995), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(657), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2969), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(657), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [658] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(658), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [sym_html_comment] = ACTIONS(5), - }, - [658] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3251), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(658), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [659] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2968), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3189), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(659), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [660] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2875), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(660), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2610), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [661] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3046), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3121), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(661), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [662] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2763), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(662), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2761), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(663), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3217), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(664), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2233), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2233), + [sym_subscript_expression] = STATE(2233), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7167), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(665), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2233), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2651), + [anon_sym_export] = ACTIONS(2653), + [anon_sym_type] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2657), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2661), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_readonly] = ACTIONS(2653), + [anon_sym_get] = ACTIONS(2653), + [anon_sym_set] = ACTIONS(2653), + [anon_sym_declare] = ACTIONS(2653), + [anon_sym_public] = ACTIONS(2653), + [anon_sym_private] = ACTIONS(2653), + [anon_sym_protected] = ACTIONS(2653), + [anon_sym_override] = ACTIONS(2653), + [anon_sym_module] = ACTIONS(2653), + [anon_sym_any] = ACTIONS(2653), + [anon_sym_number] = ACTIONS(2653), + [anon_sym_boolean] = ACTIONS(2653), + [anon_sym_string] = ACTIONS(2653), + [anon_sym_symbol] = ACTIONS(2653), + [anon_sym_object] = ACTIONS(2653), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [666] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3245), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2802), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(666), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [667] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3128), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(667), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3047), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2757), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(668), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [669] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(669), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -111546,10 +112694,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -111571,5433 +112719,5430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [669] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2225), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7185), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(669), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2663), + [anon_sym_export] = ACTIONS(2665), + [anon_sym_type] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2669), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2673), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_readonly] = ACTIONS(2665), + [anon_sym_get] = ACTIONS(2665), + [anon_sym_set] = ACTIONS(2665), + [anon_sym_declare] = ACTIONS(2665), + [anon_sym_public] = ACTIONS(2665), + [anon_sym_private] = ACTIONS(2665), + [anon_sym_protected] = ACTIONS(2665), + [anon_sym_override] = ACTIONS(2665), + [anon_sym_module] = ACTIONS(2665), + [anon_sym_any] = ACTIONS(2665), + [anon_sym_number] = ACTIONS(2665), + [anon_sym_boolean] = ACTIONS(2665), + [anon_sym_string] = ACTIONS(2665), + [anon_sym_symbol] = ACTIONS(2665), + [anon_sym_object] = ACTIONS(2665), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3048), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(670), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3049), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3130), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(671), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2756), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3212), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(672), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3050), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3133), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(673), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [674] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3053), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2824), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(674), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [675] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3054), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(675), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [676] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3296), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3153), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(676), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [677] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2470), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(677), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2643), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [678] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2953), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(678), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3278), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3203), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(679), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3056), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3214), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(680), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [681] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3057), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3216), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(681), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [682] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2735), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(682), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [683] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(683), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [683] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2231), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2231), + [sym_subscript_expression] = STATE(2231), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7090), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(683), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2231), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2675), + [anon_sym_export] = ACTIONS(2677), + [anon_sym_type] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2685), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_readonly] = ACTIONS(2677), + [anon_sym_get] = ACTIONS(2677), + [anon_sym_set] = ACTIONS(2677), + [anon_sym_declare] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_protected] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_module] = ACTIONS(2677), + [anon_sym_any] = ACTIONS(2677), + [anon_sym_number] = ACTIONS(2677), + [anon_sym_boolean] = ACTIONS(2677), + [anon_sym_string] = ACTIONS(2677), + [anon_sym_symbol] = ACTIONS(2677), + [anon_sym_object] = ACTIONS(2677), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [684] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3070), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2779), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(684), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [685] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3059), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(685), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [686] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2780), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(686), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2606), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [687] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2473), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3192), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(687), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2603), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [688] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(4579), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(688), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2028), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2687), + [anon_sym_export] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(2000), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2693), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2695), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2697), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_get] = ACTIONS(2689), + [anon_sym_set] = ACTIONS(2689), + [anon_sym_declare] = ACTIONS(2689), + [anon_sym_public] = ACTIONS(2689), + [anon_sym_private] = ACTIONS(2689), + [anon_sym_protected] = ACTIONS(2689), + [anon_sym_override] = ACTIONS(2689), + [anon_sym_module] = ACTIONS(2689), + [anon_sym_any] = ACTIONS(2689), + [anon_sym_number] = ACTIONS(2689), + [anon_sym_boolean] = ACTIONS(2689), + [anon_sym_string] = ACTIONS(2689), + [anon_sym_symbol] = ACTIONS(2689), + [anon_sym_object] = ACTIONS(2689), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [689] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3228), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2722), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(689), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [690] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3218), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(690), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [691] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3272), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(691), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [692] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3069), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2738), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(692), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [693] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2783), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(693), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [sym_html_comment] = ACTIONS(5), - }, - [694] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2623), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(694), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [694] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2652), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(694), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [695] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2553), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3328), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(695), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [696] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2960), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(696), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [697] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2810), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(697), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3233), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3220), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(698), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2228), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2228), - [sym_subscript_expression] = STATE(2228), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7074), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2813), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(699), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2228), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2638), - [anon_sym_export] = ACTIONS(2640), - [anon_sym_type] = ACTIONS(2640), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2648), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_readonly] = ACTIONS(2640), - [anon_sym_get] = ACTIONS(2640), - [anon_sym_set] = ACTIONS(2640), - [anon_sym_declare] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_protected] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_module] = ACTIONS(2640), - [anon_sym_any] = ACTIONS(2640), - [anon_sym_number] = ACTIONS(2640), - [anon_sym_boolean] = ACTIONS(2640), - [anon_sym_string] = ACTIONS(2640), - [anon_sym_symbol] = ACTIONS(2640), - [anon_sym_object] = ACTIONS(2640), - [sym_html_comment] = ACTIONS(5), - }, - [700] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2475), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(700), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [701] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3350), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(701), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [700] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3147), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(700), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [702] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2476), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(702), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [701] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2827), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(701), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(703), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [702] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2830), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(702), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [704] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(704), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [703] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(703), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [704] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2720), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(704), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [705] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2957), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2750), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(705), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [706] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3194), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2229), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2229), + [sym_subscript_expression] = STATE(2229), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7000), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(706), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2229), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2699), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2707), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2709), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_readonly] = ACTIONS(2701), + [anon_sym_get] = ACTIONS(2701), + [anon_sym_set] = ACTIONS(2701), + [anon_sym_declare] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_protected] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_any] = ACTIONS(2701), + [anon_sym_number] = ACTIONS(2701), + [anon_sym_boolean] = ACTIONS(2701), + [anon_sym_string] = ACTIONS(2701), + [anon_sym_symbol] = ACTIONS(2701), + [anon_sym_object] = ACTIONS(2701), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2723), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(707), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [708] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(708), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [709] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3343), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(709), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [710] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3110), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2888), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(710), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [711] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2233), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2233), - [sym_subscript_expression] = STATE(2233), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7266), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(711), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2233), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2650), - [anon_sym_export] = ACTIONS(2652), - [anon_sym_type] = ACTIONS(2652), - [anon_sym_namespace] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2656), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2660), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2652), - [anon_sym_readonly] = ACTIONS(2652), - [anon_sym_get] = ACTIONS(2652), - [anon_sym_set] = ACTIONS(2652), - [anon_sym_declare] = ACTIONS(2652), - [anon_sym_public] = ACTIONS(2652), - [anon_sym_private] = ACTIONS(2652), - [anon_sym_protected] = ACTIONS(2652), - [anon_sym_override] = ACTIONS(2652), - [anon_sym_module] = ACTIONS(2652), - [anon_sym_any] = ACTIONS(2652), - [anon_sym_number] = ACTIONS(2652), - [anon_sym_boolean] = ACTIONS(2652), - [anon_sym_string] = ACTIONS(2652), - [anon_sym_symbol] = ACTIONS(2652), - [anon_sym_object] = ACTIONS(2652), - [sym_html_comment] = ACTIONS(5), - }, - [712] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2481), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(712), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [712] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3226), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(712), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [713] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2793), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2754), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(713), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [714] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3339), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(714), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2711), + [sym_private_property_identifier] = ACTIONS(1722), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [715] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2626), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(715), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [716] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3274), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2891), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(716), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [717] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2894), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(717), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [718] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2895), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(718), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [719] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3072), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2556), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(719), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [720] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3246), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(720), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), - [sym_html_comment] = ACTIONS(5), - }, - [721] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2738), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(721), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -117006,10 +118151,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -117031,288 +118176,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [720] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2910), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(720), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [721] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2703), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(721), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [722] = { - [sym_import] = STATE(4289), + [sym_import] = STATE(4165), [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2495), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), [sym_member_expression] = STATE(2110), [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(722), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [723] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3122), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(723), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1532), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [724] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2557), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2565), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(724), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -117321,10 +118686,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -117346,3333 +118711,3397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [725] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(725), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2603), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [726] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2746), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3231), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(726), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [727] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2954), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3086), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(727), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [728] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2745), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3233), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(728), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [729] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2501), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2872), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(729), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [730] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2692), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(730), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [731] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2734), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3234), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(731), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [732] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2736), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(732), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [733] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3178), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3235), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(733), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [734] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3129), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3177), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(734), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [735] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2559), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(735), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2610), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [736] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2938), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(736), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [737] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2227), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2227), - [sym_subscript_expression] = STATE(2227), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7181), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2684), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(737), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2227), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2662), - [anon_sym_export] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2664), - [anon_sym_namespace] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2664), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2668), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2664), - [anon_sym_readonly] = ACTIONS(2664), - [anon_sym_get] = ACTIONS(2664), - [anon_sym_set] = ACTIONS(2664), - [anon_sym_declare] = ACTIONS(2664), - [anon_sym_public] = ACTIONS(2664), - [anon_sym_private] = ACTIONS(2664), - [anon_sym_protected] = ACTIONS(2664), - [anon_sym_override] = ACTIONS(2664), - [anon_sym_module] = ACTIONS(2664), - [anon_sym_any] = ACTIONS(2664), - [anon_sym_number] = ACTIONS(2664), - [anon_sym_boolean] = ACTIONS(2664), - [anon_sym_string] = ACTIONS(2664), - [anon_sym_symbol] = ACTIONS(2664), - [anon_sym_object] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [738] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2227), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2227), + [sym_subscript_expression] = STATE(2227), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(738), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2227), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2713), + [anon_sym_export] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2723), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(2715), + [anon_sym_readonly] = ACTIONS(2715), + [anon_sym_get] = ACTIONS(2715), + [anon_sym_set] = ACTIONS(2715), + [anon_sym_declare] = ACTIONS(2715), + [anon_sym_public] = ACTIONS(2715), + [anon_sym_private] = ACTIONS(2715), + [anon_sym_protected] = ACTIONS(2715), + [anon_sym_override] = ACTIONS(2715), + [anon_sym_module] = ACTIONS(2715), + [anon_sym_any] = ACTIONS(2715), + [anon_sym_number] = ACTIONS(2715), + [anon_sym_boolean] = ACTIONS(2715), + [anon_sym_string] = ACTIONS(2715), + [anon_sym_symbol] = ACTIONS(2715), + [anon_sym_object] = ACTIONS(2715), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [739] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2671), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2939), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(739), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [740] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2231), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2231), - [sym_subscript_expression] = STATE(2231), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(6995), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(740), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2231), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2674), - [anon_sym_export] = ACTIONS(2676), - [anon_sym_type] = ACTIONS(2676), - [anon_sym_namespace] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_readonly] = ACTIONS(2676), - [anon_sym_get] = ACTIONS(2676), - [anon_sym_set] = ACTIONS(2676), - [anon_sym_declare] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_protected] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_module] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(2676), - [anon_sym_number] = ACTIONS(2676), - [anon_sym_boolean] = ACTIONS(2676), - [anon_sym_string] = ACTIONS(2676), - [anon_sym_symbol] = ACTIONS(2676), - [anon_sym_object] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [741] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2955), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2659), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(741), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [742] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(742), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [743] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(743), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [744] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2953), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2622), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7233), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7231), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(744), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(633), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1704), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1243), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1722), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1818), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_override] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_object] = ACTIONS(1698), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [745] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2703), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(745), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [746] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3254), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2654), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(746), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [747] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3184), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2715), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(747), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [748] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(748), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [749] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2736), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(749), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [750] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2680), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(750), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [751] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3100), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3072), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(751), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [752] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3319), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(752), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [753] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2947), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2681), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(753), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [754] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2945), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2605), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(754), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [755] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3333), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2623), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(755), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [756] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2540), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2563), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(756), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -120681,10 +122110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -120706,393 +122135,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [757] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3351), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(757), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2643), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [758] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2665), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2685), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(758), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [759] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3259), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(759), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), - [sym_html_comment] = ACTIONS(5), - }, - [760] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2552), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(760), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -121101,10 +122431,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -121126,708 +122456,615 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [760] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2682), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(760), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [761] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2663), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2676), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(761), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [762] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3344), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2689), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(762), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [763] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2737), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2694), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(763), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [764] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2934), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2711), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(764), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [765] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3183), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(765), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), - [sym_html_comment] = ACTIONS(5), - }, - [766] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(766), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [767] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(767), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -121836,10 +123073,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -121861,7323 +123098,8533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), + [sym_html_comment] = ACTIONS(5), + }, + [766] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2963), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(766), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [767] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(767), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [768] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3229), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3168), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(768), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [769] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2943), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2674), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(769), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [770] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(770), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [771] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2780), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2730), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(771), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [772] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2937), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(772), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [773] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3022), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2732), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(773), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [774] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2573), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(774), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_number] = ACTIONS(2711), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [775] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2681), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2669), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(775), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [776] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3258), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2668), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(776), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [777] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3024), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2774), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(777), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [778] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2226), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2226), - [sym_subscript_expression] = STATE(2226), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7084), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(778), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2226), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2686), - [anon_sym_export] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_namespace] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2692), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2688), - [anon_sym_readonly] = ACTIONS(2688), - [anon_sym_get] = ACTIONS(2688), - [anon_sym_set] = ACTIONS(2688), - [anon_sym_declare] = ACTIONS(2688), - [anon_sym_public] = ACTIONS(2688), - [anon_sym_private] = ACTIONS(2688), - [anon_sym_protected] = ACTIONS(2688), - [anon_sym_override] = ACTIONS(2688), - [anon_sym_module] = ACTIONS(2688), - [anon_sym_any] = ACTIONS(2688), - [anon_sym_number] = ACTIONS(2688), - [anon_sym_boolean] = ACTIONS(2688), - [anon_sym_string] = ACTIONS(2688), - [anon_sym_symbol] = ACTIONS(2688), - [anon_sym_object] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [779] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3203), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3302), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(779), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [780] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3280), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(780), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [781] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2677), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2667), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(781), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [782] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2884), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3298), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(782), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [783] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3282), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(783), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [784] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2603), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3269), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(784), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [785] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2904), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2666), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(785), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [786] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2794), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3276), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(786), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [787] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(787), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [788] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3079), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2664), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(788), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [789] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3050), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(789), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [790] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2663), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(790), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [791] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(4972), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(791), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2698), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2700), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1741), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_override] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1741), - [anon_sym_number] = ACTIONS(1741), - [anon_sym_boolean] = ACTIONS(1741), - [anon_sym_string] = ACTIONS(1741), - [anon_sym_symbol] = ACTIONS(1741), - [anon_sym_object] = ACTIONS(1741), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [792] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3134), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3275), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(792), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [793] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3078), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(793), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [794] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2747), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3289), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(794), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [795] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3047), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(795), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [796] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2908), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(796), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), - [sym_html_comment] = ACTIONS(5), - }, - [796] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(796), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [797] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3046), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(797), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [798] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2662), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(798), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [799] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3257), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2146), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7281), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3862), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7099), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(799), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(705), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_namespace] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(2603), + [sym_private_property_identifier] = ACTIONS(1162), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1826), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_readonly] = ACTIONS(1574), + [anon_sym_get] = ACTIONS(1574), + [anon_sym_set] = ACTIONS(1574), + [anon_sym_declare] = ACTIONS(1574), + [anon_sym_public] = ACTIONS(1574), + [anon_sym_private] = ACTIONS(1574), + [anon_sym_protected] = ACTIONS(1574), + [anon_sym_override] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1574), + [anon_sym_number] = ACTIONS(1574), + [anon_sym_boolean] = ACTIONS(1574), + [anon_sym_string] = ACTIONS(1574), + [anon_sym_symbol] = ACTIONS(1574), + [anon_sym_object] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [800] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2844), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(800), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [801] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2875), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2912), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(801), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [802] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2489), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(802), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [803] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3003), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3041), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(803), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [804] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3081), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3366), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(804), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [805] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(805), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2608), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [806] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3184), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(806), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [807] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3153), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(807), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [808] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3040), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3060), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(808), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [809] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2898), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3334), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(809), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [810] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3217), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3305), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(810), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [811] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2906), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3368), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(811), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [812] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3342), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(812), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [813] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3324), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3362), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(813), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [814] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3035), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(814), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [815] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2226), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2226), + [sym_subscript_expression] = STATE(2226), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7142), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(815), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2226), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2725), + [anon_sym_export] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2731), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2704), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2735), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(2727), + [anon_sym_readonly] = ACTIONS(2727), + [anon_sym_get] = ACTIONS(2727), + [anon_sym_set] = ACTIONS(2727), + [anon_sym_declare] = ACTIONS(2727), + [anon_sym_public] = ACTIONS(2727), + [anon_sym_private] = ACTIONS(2727), + [anon_sym_protected] = ACTIONS(2727), + [anon_sym_override] = ACTIONS(2727), + [anon_sym_module] = ACTIONS(2727), + [anon_sym_any] = ACTIONS(2727), + [anon_sym_number] = ACTIONS(2727), + [anon_sym_boolean] = ACTIONS(2727), + [anon_sym_string] = ACTIONS(2727), + [anon_sym_symbol] = ACTIONS(2727), + [anon_sym_object] = ACTIONS(2727), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [816] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3224), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3308), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(816), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [817] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2589), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3309), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(817), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [818] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(2590), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7238), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3819), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7237), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(818), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [819] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3352), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3033), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(819), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [820] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2180), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7256), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2180), - [sym_subscript_expression] = STATE(2180), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7315), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3032), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(820), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2180), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(768), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1599), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_delete] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1617), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1593), - [anon_sym_set] = ACTIONS(1593), - [anon_sym_declare] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [anon_sym_override] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [821] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2232), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2232), - [sym_subscript_expression] = STATE(2232), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7217), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3031), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(821), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2232), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2708), - [anon_sym_type] = ACTIONS(2708), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2708), - [anon_sym_readonly] = ACTIONS(2708), - [anon_sym_get] = ACTIONS(2708), - [anon_sym_set] = ACTIONS(2708), - [anon_sym_declare] = ACTIONS(2708), - [anon_sym_public] = ACTIONS(2708), - [anon_sym_private] = ACTIONS(2708), - [anon_sym_protected] = ACTIONS(2708), - [anon_sym_override] = ACTIONS(2708), - [anon_sym_module] = ACTIONS(2708), - [anon_sym_any] = ACTIONS(2708), - [anon_sym_number] = ACTIONS(2708), - [anon_sym_boolean] = ACTIONS(2708), - [anon_sym_string] = ACTIONS(2708), - [anon_sym_symbol] = ACTIONS(2708), - [anon_sym_object] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [822] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3144), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3030), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(822), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [823] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3350), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(823), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [824] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2831), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(824), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [825] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2088), - [sym_expression] = STATE(2830), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7168), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2088), - [sym_subscript_expression] = STATE(2088), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3797), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7219), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3354), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(825), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2088), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_override] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [826] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2659), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2942), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(826), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [827] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2936), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(827), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [828] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3356), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(828), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [829] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3250), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(829), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [830] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2915), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3029), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(830), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [831] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2914), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3293), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(831), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [832] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3044), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3024), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(832), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [833] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2910), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3247), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(833), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [834] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2224), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2224), - [sym_subscript_expression] = STATE(2224), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3246), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(834), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2224), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2718), - [anon_sym_export] = ACTIONS(2720), - [anon_sym_type] = ACTIONS(2720), - [anon_sym_namespace] = ACTIONS(2722), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2720), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [835] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7280), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7094), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(835), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2131), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [836] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2162), - [sym_expression] = STATE(2913), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7050), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2162), - [sym_subscript_expression] = STATE(2162), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3824), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7052), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3244), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(836), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2162), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(607), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1635), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [837] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2695), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(837), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [838] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3020), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(838), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [839] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3241), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(839), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [840] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3320), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(840), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [841] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(1961), + [sym_expression] = STATE(3324), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(1961), + [sym_subscript_expression] = STATE(1961), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(841), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(1961), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1100), + [anon_sym_export] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_namespace] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1102), + [anon_sym_set] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_protected] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_module] = ACTIONS(1102), + [anon_sym_any] = ACTIONS(1102), + [anon_sym_number] = ACTIONS(1102), + [anon_sym_boolean] = ACTIONS(1102), + [anon_sym_string] = ACTIONS(1102), + [anon_sym_symbol] = ACTIONS(1102), + [anon_sym_object] = ACTIONS(1102), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [842] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3238), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7260), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3789), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7319), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(842), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(680), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1852), + [anon_sym_export] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_namespace] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_void] = ACTIONS(1602), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1620), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_readonly] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1594), + [anon_sym_set] = ACTIONS(1594), + [anon_sym_declare] = ACTIONS(1594), + [anon_sym_public] = ACTIONS(1594), + [anon_sym_private] = ACTIONS(1594), + [anon_sym_protected] = ACTIONS(1594), + [anon_sym_override] = ACTIONS(1594), + [anon_sym_module] = ACTIONS(1594), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [843] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(843), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [844] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2153), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7054), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2153), + [sym_subscript_expression] = STATE(2153), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3787), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7056), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(844), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2153), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(666), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1828), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1635), - [anon_sym_delete] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1508), + [anon_sym_delete] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1526), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1659), + [sym_number] = ACTIONS(2711), + [sym_private_property_identifier] = ACTIONS(1532), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1834), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_get] = ACTIONS(1627), - [anon_sym_set] = ACTIONS(1627), - [anon_sym_declare] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_private] = ACTIONS(1627), - [anon_sym_protected] = ACTIONS(1627), - [anon_sym_override] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_number] = ACTIONS(1627), - [anon_sym_boolean] = ACTIONS(1627), - [anon_sym_string] = ACTIONS(1627), - [anon_sym_symbol] = ACTIONS(1627), - [anon_sym_object] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_object] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [837] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2704), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(837), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [845] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2570), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(845), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -129186,10 +131633,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -129211,288 +131658,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [838] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3306), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(838), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [846] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2690), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(846), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [839] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(839), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [847] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3054), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(847), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [840] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(840), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [848] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2134), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7413), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2134), + [sym_subscript_expression] = STATE(2134), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3795), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7357), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(848), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2134), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(837), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1836), + [anon_sym_export] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1636), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1654), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_readonly] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1630), + [anon_sym_set] = ACTIONS(1630), + [anon_sym_declare] = ACTIONS(1630), + [anon_sym_public] = ACTIONS(1630), + [anon_sym_private] = ACTIONS(1630), + [anon_sym_protected] = ACTIONS(1630), + [anon_sym_override] = ACTIONS(1630), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1630), + [anon_sym_number] = ACTIONS(1630), + [anon_sym_boolean] = ACTIONS(1630), + [anon_sym_string] = ACTIONS(1630), + [anon_sym_symbol] = ACTIONS(1630), + [anon_sym_object] = ACTIONS(1630), + [anon_sym_global] = ACTIONS(201), + [sym_html_comment] = ACTIONS(5), + }, + [849] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2733), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(849), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -129501,10 +132061,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -129526,183 +132086,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [841] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3016), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(841), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [850] = { + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(3071), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7010), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7174), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), + [sym_comment] = STATE(850), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2200), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1670), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1670), + [anon_sym_delete] = ACTIONS(1670), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1866), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_readonly] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_declare] = ACTIONS(1664), + [anon_sym_public] = ACTIONS(1664), + [anon_sym_private] = ACTIONS(1664), + [anon_sym_protected] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_any] = ACTIONS(1664), + [anon_sym_number] = ACTIONS(1664), + [anon_sym_boolean] = ACTIONS(1664), + [anon_sym_string] = ACTIONS(1664), + [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_object] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, - [842] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(842), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [851] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2594), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(851), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -129711,10 +132275,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -129736,498 +132300,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [843] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3014), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(843), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), - [sym_html_comment] = ACTIONS(5), - }, - [844] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3012), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(844), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), - [sym_html_comment] = ACTIONS(5), - }, - [845] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3254), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(845), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [846] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3007), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(846), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, - [847] = { - [sym_import] = STATE(4289), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2555), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3021), - [sym_object] = STATE(3008), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(3008), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(3021), - [sym_glimmer_opening_tag] = STATE(5601), - [sym_class] = STATE(3008), - [sym_function_expression] = STATE(3008), - [sym_generator_function] = STATE(3008), - [sym_arrow_function] = STATE(3008), - [sym__call_signature] = STATE(7398), - [sym_call_expression] = STATE(3008), - [sym_new_expression] = STATE(3021), - [sym_await_expression] = STATE(3021), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3021), - [sym__augmented_assignment_lhs] = STATE(3809), - [sym_augmented_assignment_expression] = STATE(3021), - [sym__destructuring_pattern] = STATE(7397), - [sym_ternary_expression] = STATE(3021), - [sym_binary_expression] = STATE(3021), - [sym_unary_expression] = STATE(3021), - [sym_update_expression] = STATE(3021), - [sym_string] = STATE(3008), - [sym_comment] = STATE(847), - [sym_template_string] = STATE(3008), - [sym_regex] = STATE(3008), - [sym_meta_property] = STATE(3008), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3021), - [sym_as_expression] = STATE(3021), - [sym_satisfies_expression] = STATE(3021), - [sym_instantiation_expression] = STATE(3021), - [sym_internal_module] = STATE(3021), - [sym_type_arguments] = STATE(715), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5594), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1012), + [852] = { + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), + [sym_comment] = STATE(852), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -130236,10 +132382,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_function] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -130261,86110 +132407,86295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [848] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3327), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(848), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [849] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2189), - [sym_expression] = STATE(3177), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7009), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2189), - [sym_subscript_expression] = STATE(2189), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3799), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7170), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(849), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2189), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(623), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [850] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3005), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(850), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), - [sym_html_comment] = ACTIONS(5), - }, - [851] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(851), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), - [sym_html_comment] = ACTIONS(5), - }, - [852] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2752), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), - [sym_comment] = STATE(852), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [853] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3004), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2713), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(853), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [854] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2646), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(854), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [855] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3001), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(855), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [856] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(1948), - [sym_expression] = STATE(3325), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(1948), - [sym_subscript_expression] = STATE(1948), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7278), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2576), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(856), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(1948), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [857] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(2996), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(857), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [858] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2225), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7095), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2225), - [sym_subscript_expression] = STATE(2225), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3815), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7044), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4165), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(2968), + [sym_yield_expression] = STATE(3011), + [sym_object] = STATE(3003), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(3003), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(3011), + [sym_glimmer_opening_tag] = STATE(5603), + [sym_class] = STATE(3003), + [sym_function_expression] = STATE(3003), + [sym_generator_function] = STATE(3003), + [sym_arrow_function] = STATE(3003), + [sym__call_signature] = STATE(7401), + [sym_call_expression] = STATE(3003), + [sym_new_expression] = STATE(3011), + [sym_await_expression] = STATE(3011), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(3011), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(3011), + [sym__destructuring_pattern] = STATE(7400), + [sym_ternary_expression] = STATE(3011), + [sym_binary_expression] = STATE(3011), + [sym_unary_expression] = STATE(3011), + [sym_update_expression] = STATE(3011), + [sym_string] = STATE(3003), [sym_comment] = STATE(858), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2225), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(714), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_namespace] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(172), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(3003), + [sym_regex] = STATE(3003), + [sym_meta_property] = STATE(3003), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(3011), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(3011), + [sym_as_expression] = STATE(3011), + [sym_satisfies_expression] = STATE(3011), + [sym_instantiation_expression] = STATE(3011), + [sym_internal_module] = STATE(3011), + [sym_type_arguments] = STATE(655), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_void] = ACTIONS(172), - [anon_sym_delete] = ACTIONS(172), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(183), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_get] = ACTIONS(2732), - [anon_sym_set] = ACTIONS(2732), - [anon_sym_declare] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_protected] = ACTIONS(2732), - [anon_sym_override] = ACTIONS(2732), - [anon_sym_module] = ACTIONS(2732), - [anon_sym_any] = ACTIONS(2732), - [anon_sym_number] = ACTIONS(2732), - [anon_sym_boolean] = ACTIONS(2732), - [anon_sym_string] = ACTIONS(2732), - [anon_sym_symbol] = ACTIONS(2732), - [anon_sym_object] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_global] = ACTIONS(105), [sym_html_comment] = ACTIONS(5), }, [859] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(2997), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2224), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7101), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2224), + [sym_subscript_expression] = STATE(2224), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3820), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7158), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(859), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2224), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(779), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(2737), + [anon_sym_export] = ACTIONS(2739), + [anon_sym_type] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2743), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2747), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2739), + [anon_sym_get] = ACTIONS(2739), + [anon_sym_set] = ACTIONS(2739), + [anon_sym_declare] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_private] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_override] = ACTIONS(2739), + [anon_sym_module] = ACTIONS(2739), + [anon_sym_any] = ACTIONS(2739), + [anon_sym_number] = ACTIONS(2739), + [anon_sym_boolean] = ACTIONS(2739), + [anon_sym_string] = ACTIONS(2739), + [anon_sym_symbol] = ACTIONS(2739), + [anon_sym_object] = ACTIONS(2739), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [860] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(2996), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7091), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7100), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3000), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7100), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(860), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(723), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1103), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(860), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1114), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1583), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1472), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1490), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1850), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_readonly] = ACTIONS(1559), - [anon_sym_get] = ACTIONS(1559), - [anon_sym_set] = ACTIONS(1559), - [anon_sym_declare] = ACTIONS(1559), - [anon_sym_public] = ACTIONS(1559), - [anon_sym_private] = ACTIONS(1559), - [anon_sym_protected] = ACTIONS(1559), - [anon_sym_override] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_number] = ACTIONS(1559), - [anon_sym_boolean] = ACTIONS(1559), - [anon_sym_string] = ACTIONS(1559), - [anon_sym_symbol] = ACTIONS(1559), - [anon_sym_object] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_readonly] = ACTIONS(1466), + [anon_sym_get] = ACTIONS(1466), + [anon_sym_set] = ACTIONS(1466), + [anon_sym_declare] = ACTIONS(1466), + [anon_sym_public] = ACTIONS(1466), + [anon_sym_private] = ACTIONS(1466), + [anon_sym_protected] = ACTIONS(1466), + [anon_sym_override] = ACTIONS(1466), + [anon_sym_module] = ACTIONS(1466), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [861] = { - [sym_import] = STATE(4277), - [sym_parenthesized_expression] = STATE(2152), - [sym_expression] = STATE(2715), - [sym_primary_expression] = STATE(2370), - [sym_yield_expression] = STATE(2650), - [sym_object] = STATE(2646), - [sym_object_pattern] = STATE(4155), - [sym_array] = STATE(2646), - [sym_array_pattern] = STATE(4155), - [sym_glimmer_template] = STATE(2650), - [sym_glimmer_opening_tag] = STATE(5579), - [sym_class] = STATE(2646), - [sym_function_expression] = STATE(2646), - [sym_generator_function] = STATE(2646), - [sym_arrow_function] = STATE(2646), - [sym__call_signature] = STATE(7405), - [sym_call_expression] = STATE(2646), - [sym_new_expression] = STATE(2650), - [sym_await_expression] = STATE(2650), - [sym_member_expression] = STATE(2152), - [sym_subscript_expression] = STATE(2152), - [sym_assignment_expression] = STATE(2650), - [sym__augmented_assignment_lhs] = STATE(3821), - [sym_augmented_assignment_expression] = STATE(2650), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2650), - [sym_binary_expression] = STATE(2650), - [sym_unary_expression] = STATE(2650), - [sym_update_expression] = STATE(2650), - [sym_string] = STATE(2646), + [sym_import] = STATE(4252), + [sym_parenthesized_expression] = STATE(2121), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2402), + [sym_yield_expression] = STATE(2651), + [sym_object] = STATE(2648), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(2648), + [sym_array_pattern] = STATE(4170), + [sym_glimmer_template] = STATE(2651), + [sym_glimmer_opening_tag] = STATE(5580), + [sym_class] = STATE(2648), + [sym_function_expression] = STATE(2648), + [sym_generator_function] = STATE(2648), + [sym_arrow_function] = STATE(2648), + [sym__call_signature] = STATE(7172), + [sym_call_expression] = STATE(2648), + [sym_new_expression] = STATE(2651), + [sym_await_expression] = STATE(2651), + [sym_member_expression] = STATE(2121), + [sym_subscript_expression] = STATE(2121), + [sym_assignment_expression] = STATE(2651), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(2651), + [sym__destructuring_pattern] = STATE(7223), + [sym_ternary_expression] = STATE(2651), + [sym_binary_expression] = STATE(2651), + [sym_unary_expression] = STATE(2651), + [sym_update_expression] = STATE(2651), + [sym_string] = STATE(2648), [sym_comment] = STATE(861), - [sym_template_string] = STATE(2646), - [sym_regex] = STATE(2646), - [sym_meta_property] = STATE(2646), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4817), - [sym_non_null_expression] = STATE(2152), - [sym_type_assertion] = STATE(2650), - [sym_as_expression] = STATE(2650), - [sym_satisfies_expression] = STATE(2650), - [sym_instantiation_expression] = STATE(2650), - [sym_internal_module] = STATE(2650), - [sym_type_arguments] = STATE(732), - [sym_type_parameters] = STATE(6363), - [aux_sym_export_statement_repeat1] = STATE(5446), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1187), + [sym_template_string] = STATE(2648), + [sym_regex] = STATE(2648), + [sym_meta_property] = STATE(2648), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4812), + [sym_global_namespace] = STATE(2651), + [sym_non_null_expression] = STATE(2121), + [sym_type_assertion] = STATE(2651), + [sym_as_expression] = STATE(2651), + [sym_satisfies_expression] = STATE(2651), + [sym_instantiation_expression] = STATE(2651), + [sym_internal_module] = STATE(2651), + [sym_type_arguments] = STATE(652), + [sym_type_parameters] = STATE(6366), + [aux_sym_export_statement_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_namespace] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1190), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1026), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_delete] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(187), - [sym_private_property_identifier] = ACTIONS(1511), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(187), - [sym_true] = ACTIONS(187), - [sym_false] = ACTIONS(187), - [sym_null] = ACTIONS(187), - [sym_undefined] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1032), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1810), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_readonly] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1479), - [anon_sym_set] = ACTIONS(1479), - [anon_sym_declare] = ACTIONS(1479), - [anon_sym_public] = ACTIONS(1479), - [anon_sym_private] = ACTIONS(1479), - [anon_sym_protected] = ACTIONS(1479), - [anon_sym_override] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_number] = ACTIONS(1479), - [anon_sym_boolean] = ACTIONS(1479), - [anon_sym_string] = ACTIONS(1479), - [anon_sym_symbol] = ACTIONS(1479), - [anon_sym_object] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1544), + [anon_sym_get] = ACTIONS(1544), + [anon_sym_set] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1544), + [anon_sym_public] = ACTIONS(1544), + [anon_sym_private] = ACTIONS(1544), + [anon_sym_protected] = ACTIONS(1544), + [anon_sym_override] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1544), + [anon_sym_number] = ACTIONS(1544), + [anon_sym_boolean] = ACTIONS(1544), + [anon_sym_string] = ACTIONS(1544), + [anon_sym_symbol] = ACTIONS(1544), + [anon_sym_object] = ACTIONS(1544), + [anon_sym_global] = ACTIONS(201), [sym_html_comment] = ACTIONS(5), }, [862] = { - [sym_namespace_export] = STATE(6367), - [sym_export_clause] = STATE(5598), - [sym_declaration] = STATE(1586), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_namespace_export] = STATE(6371), + [sym_export_clause] = STATE(5600), + [sym_declaration] = STATE(1607), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(862), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2748), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2791), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_EQ] = ACTIONS(2755), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2798), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [863] = { - [sym_namespace_export] = STATE(6367), - [sym_export_clause] = STATE(5598), - [sym_declaration] = STATE(1586), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_namespace_export] = STATE(6371), + [sym_export_clause] = STATE(5600), + [sym_declaration] = STATE(1607), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(863), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2748), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2791), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_EQ] = ACTIONS(2755), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2798), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [864] = { - [sym_namespace_export] = STATE(6367), - [sym_export_clause] = STATE(5598), - [sym_declaration] = STATE(1586), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_namespace_export] = STATE(6371), + [sym_export_clause] = STATE(5600), + [sym_declaration] = STATE(1607), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(864), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2748), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2791), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_EQ] = ACTIONS(2755), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(2808), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2798), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [865] = { - [sym__call_signature] = STATE(7271), - [sym_string] = STATE(4459), + [sym__call_signature] = STATE(7274), + [sym_string] = STATE(4552), [sym_comment] = STATE(865), - [sym_formal_parameters] = STATE(4817), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [sym_type_parameters] = STATE(6363), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2803), - [anon_sym_export] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_readonly] = ACTIONS(2805), - [anon_sym_get] = ACTIONS(2825), - [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2805), - [anon_sym_public] = ACTIONS(2805), - [anon_sym_private] = ACTIONS(2805), - [anon_sym_protected] = ACTIONS(2805), - [anon_sym_override] = ACTIONS(2805), - [anon_sym_module] = ACTIONS(2805), - [anon_sym_any] = ACTIONS(2805), - [anon_sym_number] = ACTIONS(2805), - [anon_sym_boolean] = ACTIONS(2805), - [anon_sym_string] = ACTIONS(2805), - [anon_sym_symbol] = ACTIONS(2805), - [anon_sym_object] = ACTIONS(2805), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [sym_type_parameters] = STATE(6366), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2810), + [anon_sym_export] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_readonly] = ACTIONS(2812), + [anon_sym_get] = ACTIONS(2832), + [anon_sym_set] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2812), + [anon_sym_public] = ACTIONS(2812), + [anon_sym_private] = ACTIONS(2812), + [anon_sym_protected] = ACTIONS(2812), + [anon_sym_override] = ACTIONS(2812), + [anon_sym_module] = ACTIONS(2812), + [anon_sym_any] = ACTIONS(2812), + [anon_sym_number] = ACTIONS(2812), + [anon_sym_boolean] = ACTIONS(2812), + [anon_sym_string] = ACTIONS(2812), + [anon_sym_symbol] = ACTIONS(2812), + [anon_sym_object] = ACTIONS(2812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [866] = { - [sym__call_signature] = STATE(7271), - [sym_string] = STATE(4459), + [sym__call_signature] = STATE(7274), + [sym_string] = STATE(4552), [sym_comment] = STATE(866), - [sym_formal_parameters] = STATE(4817), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [sym_type_parameters] = STATE(6363), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2803), - [anon_sym_export] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_readonly] = ACTIONS(2805), - [anon_sym_get] = ACTIONS(2825), - [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2805), - [anon_sym_public] = ACTIONS(2805), - [anon_sym_private] = ACTIONS(2805), - [anon_sym_protected] = ACTIONS(2805), - [anon_sym_override] = ACTIONS(2805), - [anon_sym_module] = ACTIONS(2805), - [anon_sym_any] = ACTIONS(2805), - [anon_sym_number] = ACTIONS(2805), - [anon_sym_boolean] = ACTIONS(2805), - [anon_sym_string] = ACTIONS(2805), - [anon_sym_symbol] = ACTIONS(2805), - [anon_sym_object] = ACTIONS(2805), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [sym_type_parameters] = STATE(6366), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2810), + [anon_sym_export] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_readonly] = ACTIONS(2812), + [anon_sym_get] = ACTIONS(2832), + [anon_sym_set] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2812), + [anon_sym_public] = ACTIONS(2812), + [anon_sym_private] = ACTIONS(2812), + [anon_sym_protected] = ACTIONS(2812), + [anon_sym_override] = ACTIONS(2812), + [anon_sym_module] = ACTIONS(2812), + [anon_sym_any] = ACTIONS(2812), + [anon_sym_number] = ACTIONS(2812), + [anon_sym_boolean] = ACTIONS(2812), + [anon_sym_string] = ACTIONS(2812), + [anon_sym_symbol] = ACTIONS(2812), + [anon_sym_object] = ACTIONS(2812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [867] = { - [sym__call_signature] = STATE(7271), - [sym_string] = STATE(4459), + [sym__call_signature] = STATE(7274), + [sym_string] = STATE(4552), [sym_comment] = STATE(867), - [sym_formal_parameters] = STATE(4817), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [sym_type_parameters] = STATE(6363), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2803), - [anon_sym_export] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_readonly] = ACTIONS(2805), - [anon_sym_get] = ACTIONS(2825), - [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2805), - [anon_sym_public] = ACTIONS(2805), - [anon_sym_private] = ACTIONS(2805), - [anon_sym_protected] = ACTIONS(2805), - [anon_sym_override] = ACTIONS(2805), - [anon_sym_module] = ACTIONS(2805), - [anon_sym_any] = ACTIONS(2805), - [anon_sym_number] = ACTIONS(2805), - [anon_sym_boolean] = ACTIONS(2805), - [anon_sym_string] = ACTIONS(2805), - [anon_sym_symbol] = ACTIONS(2805), - [anon_sym_object] = ACTIONS(2805), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [sym_type_parameters] = STATE(6366), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2810), + [anon_sym_export] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_readonly] = ACTIONS(2812), + [anon_sym_get] = ACTIONS(2832), + [anon_sym_set] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2812), + [anon_sym_public] = ACTIONS(2812), + [anon_sym_private] = ACTIONS(2812), + [anon_sym_protected] = ACTIONS(2812), + [anon_sym_override] = ACTIONS(2812), + [anon_sym_module] = ACTIONS(2812), + [anon_sym_any] = ACTIONS(2812), + [anon_sym_number] = ACTIONS(2812), + [anon_sym_boolean] = ACTIONS(2812), + [anon_sym_string] = ACTIONS(2812), + [anon_sym_symbol] = ACTIONS(2812), + [anon_sym_object] = ACTIONS(2812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [868] = { - [sym_declaration] = STATE(1556), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_declaration] = STATE(1516), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(868), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(2808), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_global] = ACTIONS(2838), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [869] = { - [sym_declaration] = STATE(1556), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_declaration] = STATE(1516), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(869), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_global] = ACTIONS(2838), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [870] = { - [sym_declaration] = STATE(1556), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_declaration] = STATE(1516), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(870), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_global] = ACTIONS(2838), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [871] = { - [sym_namespace_export] = STATE(6852), - [sym_export_clause] = STATE(5386), - [sym_declaration] = STATE(1043), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_class_declaration] = STATE(1204), - [sym_function_declaration] = STATE(1204), - [sym_generator_function_declaration] = STATE(1204), + [sym_namespace_export] = STATE(6768), + [sym_export_clause] = STATE(5405), + [sym_declaration] = STATE(1455), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [sym_class_declaration] = STATE(1470), + [sym_function_declaration] = STATE(1470), + [sym_generator_function_declaration] = STATE(1470), [sym_comment] = STATE(871), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1204), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(1205), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [aux_sym_export_statement_repeat1] = STATE(4852), - [anon_sym_STAR] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2835), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_EQ] = ACTIONS(2839), - [anon_sym_as] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2845), - [anon_sym_var] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_function] = ACTIONS(2859), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2861), - [anon_sym_module] = ACTIONS(2863), - [anon_sym_abstract] = ACTIONS(2865), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2869), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1470), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(1454), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [aux_sym_export_statement_repeat1] = STATE(4904), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2844), + [anon_sym_EQ] = ACTIONS(2846), + [anon_sym_as] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2866), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2870), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2876), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [872] = { - [sym_namespace_export] = STATE(6764), - [sym_export_clause] = STATE(5401), - [sym_declaration] = STATE(1353), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_class_declaration] = STATE(1331), - [sym_function_declaration] = STATE(1331), - [sym_generator_function_declaration] = STATE(1331), + [sym_namespace_export] = STATE(6854), + [sym_export_clause] = STATE(5387), + [sym_declaration] = STATE(1191), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_class_declaration] = STATE(1042), + [sym_function_declaration] = STATE(1042), + [sym_generator_function_declaration] = STATE(1042), [sym_comment] = STATE(872), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1331), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(1357), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [aux_sym_export_statement_repeat1] = STATE(4902), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2875), - [anon_sym_EQ] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2879), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2883), - [anon_sym_var] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2895), - [anon_sym_function] = ACTIONS(2897), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2899), - [anon_sym_module] = ACTIONS(2901), - [anon_sym_abstract] = ACTIONS(2903), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2907), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1042), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(1041), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [aux_sym_export_statement_repeat1] = STATE(4859), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2884), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2890), + [anon_sym_var] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2908), + [anon_sym_abstract] = ACTIONS(2910), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2914), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [873] = { - [sym_namespace_export] = STATE(6367), - [sym_export_clause] = STATE(5598), - [sym_declaration] = STATE(1586), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_namespace_export] = STATE(6371), + [sym_export_clause] = STATE(5600), + [sym_declaration] = STATE(1607), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(873), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2791), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_EQ] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2798), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [874] = { - [sym_namespace_export] = STATE(6931), - [sym_export_clause] = STATE(5477), - [sym_declaration] = STATE(1349), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_class_declaration] = STATE(1344), - [sym_function_declaration] = STATE(1344), - [sym_generator_function_declaration] = STATE(1344), + [sym_namespace_export] = STATE(6524), + [sym_export_clause] = STATE(5575), + [sym_declaration] = STATE(6336), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_class_declaration] = STATE(6333), + [sym_function_declaration] = STATE(6333), + [sym_generator_function_declaration] = STATE(6333), [sym_comment] = STATE(874), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1344), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(1350), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [aux_sym_export_statement_repeat1] = STATE(4862), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_var] = ACTIONS(2927), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(2943), - [anon_sym_abstract] = ACTIONS(2945), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2949), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(6333), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(6337), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [aux_sym_export_statement_repeat1] = STATE(5030), + [anon_sym_STAR] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_function] = ACTIONS(2946), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(2950), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2956), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [875] = { - [sym_namespace_export] = STATE(6520), - [sym_export_clause] = STATE(5574), - [sym_declaration] = STATE(6332), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_class_declaration] = STATE(6330), - [sym_function_declaration] = STATE(6330), - [sym_generator_function_declaration] = STATE(6330), + [sym_namespace_export] = STATE(6944), + [sym_export_clause] = STATE(5478), + [sym_declaration] = STATE(1445), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_class_declaration] = STATE(1436), + [sym_function_declaration] = STATE(1436), + [sym_generator_function_declaration] = STATE(1436), [sym_comment] = STATE(875), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(6330), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(6333), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [aux_sym_export_statement_repeat1] = STATE(5028), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_async] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2979), - [anon_sym_module] = ACTIONS(2981), - [anon_sym_abstract] = ACTIONS(2983), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2987), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1436), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(1446), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [aux_sym_export_statement_repeat1] = STATE(4864), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_as] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2970), + [anon_sym_var] = ACTIONS(2972), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2982), + [anon_sym_function] = ACTIONS(2984), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2986), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2990), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2994), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [876] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(876), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [sym_override_modifier] = STATE(3627), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2993), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [sym_override_modifier] = STATE(3620), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(3000), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(3004), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [877] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(877), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [sym_override_modifier] = STATE(3627), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2993), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [sym_override_modifier] = STATE(3620), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(3000), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(3004), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [878] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(878), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [sym_override_modifier] = STATE(3627), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2993), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [sym_override_modifier] = STATE(3620), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(3000), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(3004), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(879), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2989), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2996), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(2996), + [anon_sym_get] = ACTIONS(2996), + [anon_sym_set] = ACTIONS(2996), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(2996), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [880] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(880), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2989), - [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2989), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(2996), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(2996), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [881] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(881), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2989), - [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2989), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(2996), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(2996), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [882] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(882), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2989), - [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2989), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(2996), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(2996), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [883] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(883), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2989), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2996), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(2996), + [anon_sym_get] = ACTIONS(2996), + [anon_sym_set] = ACTIONS(2996), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(2996), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [884] = { - [sym_string] = STATE(4459), + [sym_string] = STATE(4552), [sym_comment] = STATE(884), - [sym__property_name] = STATE(4691), - [sym_computed_property_name] = STATE(4459), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2989), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__property_name] = STATE(4658), + [sym_computed_property_name] = STATE(4552), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(2996), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(2996), + [anon_sym_get] = ACTIONS(2996), + [anon_sym_set] = ACTIONS(2996), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(2996), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [885] = { - [sym_declaration] = STATE(6342), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_class_declaration] = STATE(6330), - [sym_function_declaration] = STATE(6330), - [sym_generator_function_declaration] = STATE(6330), + [sym_declaration] = STATE(6346), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_class_declaration] = STATE(6333), + [sym_function_declaration] = STATE(6333), + [sym_generator_function_declaration] = STATE(6333), [sym_comment] = STATE(885), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(6330), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(6333), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [aux_sym_export_statement_repeat1] = STATE(5028), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2999), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_async] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2979), - [anon_sym_module] = ACTIONS(3001), - [anon_sym_abstract] = ACTIONS(2983), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3003), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2987), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(6333), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(6337), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [aux_sym_export_statement_repeat1] = STATE(5030), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2930), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_function] = ACTIONS(2946), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_global] = ACTIONS(3010), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2956), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [886] = { - [sym_declaration] = STATE(1362), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_class_declaration] = STATE(1344), - [sym_function_declaration] = STATE(1344), - [sym_generator_function_declaration] = STATE(1344), + [sym_declaration] = STATE(1489), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_class_declaration] = STATE(1436), + [sym_function_declaration] = STATE(1436), + [sym_generator_function_declaration] = STATE(1436), [sym_comment] = STATE(886), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1344), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(1350), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [aux_sym_export_statement_repeat1] = STATE(4862), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_var] = ACTIONS(2927), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(2945), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2949), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1436), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(1446), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [aux_sym_export_statement_repeat1] = STATE(4864), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2968), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2970), + [anon_sym_var] = ACTIONS(2972), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2982), + [anon_sym_function] = ACTIONS(2984), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2986), + [anon_sym_module] = ACTIONS(3014), + [anon_sym_abstract] = ACTIONS(2990), + [anon_sym_global] = ACTIONS(3016), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2994), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [887] = { - [sym_declaration] = STATE(1120), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_class_declaration] = STATE(1204), - [sym_function_declaration] = STATE(1204), - [sym_generator_function_declaration] = STATE(1204), + [sym_declaration] = STATE(1422), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [sym_class_declaration] = STATE(1470), + [sym_function_declaration] = STATE(1470), + [sym_generator_function_declaration] = STATE(1470), [sym_comment] = STATE(887), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1204), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(1205), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [aux_sym_export_statement_repeat1] = STATE(4852), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2845), - [anon_sym_var] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_function] = ACTIONS(2859), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2861), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_abstract] = ACTIONS(2865), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2869), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1470), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(1454), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [aux_sym_export_statement_repeat1] = STATE(4904), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3018), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2850), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2866), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(3020), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_global] = ACTIONS(3022), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2876), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [888] = { - [sym_declaration] = STATE(1472), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_class_declaration] = STATE(1331), - [sym_function_declaration] = STATE(1331), - [sym_generator_function_declaration] = STATE(1331), + [sym_declaration] = STATE(1084), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_class_declaration] = STATE(1042), + [sym_function_declaration] = STATE(1042), + [sym_generator_function_declaration] = STATE(1042), [sym_comment] = STATE(888), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1331), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(1357), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [aux_sym_export_statement_repeat1] = STATE(4902), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2883), - [anon_sym_var] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2895), - [anon_sym_function] = ACTIONS(2897), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2899), - [anon_sym_module] = ACTIONS(3019), - [anon_sym_abstract] = ACTIONS(2903), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2907), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1042), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(1041), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [aux_sym_export_statement_repeat1] = STATE(4859), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2890), + [anon_sym_var] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(3026), + [anon_sym_abstract] = ACTIONS(2910), + [anon_sym_global] = ACTIONS(3028), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2914), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [889] = { - [sym_declaration] = STATE(1556), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_declaration] = STATE(1516), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(889), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2785), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_global] = ACTIONS(2838), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [890] = { - [sym_declaration] = STATE(1120), - [sym_variable_declaration] = STATE(1204), - [sym_lexical_declaration] = STATE(1204), - [sym_class_declaration] = STATE(1204), - [sym_function_declaration] = STATE(1204), - [sym_generator_function_declaration] = STATE(1204), [sym_comment] = STATE(890), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1204), - [sym_ambient_declaration] = STATE(1204), - [sym_abstract_class_declaration] = STATE(1204), - [sym_module] = STATE(1204), - [sym_internal_module] = STATE(1205), - [sym_import_alias] = STATE(1204), - [sym_interface_declaration] = STATE(1204), - [sym_enum_declaration] = STATE(1204), - [sym_type_alias_declaration] = STATE(1204), - [aux_sym_export_statement_repeat1] = STATE(4852), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_import] = ACTIONS(2845), - [anon_sym_var] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_function] = ACTIONS(2859), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2861), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_abstract] = ACTIONS(2865), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2869), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2487), + [anon_sym_export] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_get] = ACTIONS(2487), + [anon_sym_set] = ACTIONS(2487), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_private] = ACTIONS(2487), + [anon_sym_protected] = ACTIONS(2487), + [anon_sym_override] = ACTIONS(2487), + [anon_sym_module] = ACTIONS(2487), + [anon_sym_any] = ACTIONS(2487), + [anon_sym_number] = ACTIONS(2487), + [anon_sym_boolean] = ACTIONS(2487), + [anon_sym_string] = ACTIONS(2487), + [anon_sym_symbol] = ACTIONS(2487), + [anon_sym_object] = ACTIONS(2487), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [891] = { [sym_comment] = STATE(891), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2486), - [sym_private_property_identifier] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_readonly] = ACTIONS(2486), - [anon_sym_get] = ACTIONS(2486), - [anon_sym_set] = ACTIONS(2486), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2486), - [anon_sym_public] = ACTIONS(2486), - [anon_sym_private] = ACTIONS(2486), - [anon_sym_protected] = ACTIONS(2486), - [anon_sym_override] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_any] = ACTIONS(2486), - [anon_sym_number] = ACTIONS(2486), - [anon_sym_boolean] = ACTIONS(2486), - [anon_sym_string] = ACTIONS(2486), - [anon_sym_symbol] = ACTIONS(2486), - [anon_sym_object] = ACTIONS(2486), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2485), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2485), + [sym_private_property_identifier] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_readonly] = ACTIONS(2485), + [anon_sym_get] = ACTIONS(2485), + [anon_sym_set] = ACTIONS(2485), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2485), + [anon_sym_public] = ACTIONS(2485), + [anon_sym_private] = ACTIONS(2485), + [anon_sym_protected] = ACTIONS(2485), + [anon_sym_override] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_any] = ACTIONS(2485), + [anon_sym_number] = ACTIONS(2485), + [anon_sym_boolean] = ACTIONS(2485), + [anon_sym_string] = ACTIONS(2485), + [anon_sym_symbol] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(2485), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [892] = { - [sym_declaration] = STATE(1472), - [sym_variable_declaration] = STATE(1331), - [sym_lexical_declaration] = STATE(1331), - [sym_class_declaration] = STATE(1331), - [sym_function_declaration] = STATE(1331), - [sym_generator_function_declaration] = STATE(1331), + [sym_declaration] = STATE(4995), + [sym_variable_declaration] = STATE(4991), + [sym_lexical_declaration] = STATE(4991), + [sym_class_declaration] = STATE(4991), + [sym_function_declaration] = STATE(4991), + [sym_generator_function_declaration] = STATE(4991), [sym_comment] = STATE(892), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1331), - [sym_ambient_declaration] = STATE(1331), - [sym_abstract_class_declaration] = STATE(1331), - [sym_module] = STATE(1331), - [sym_internal_module] = STATE(1357), - [sym_import_alias] = STATE(1331), - [sym_interface_declaration] = STATE(1331), - [sym_enum_declaration] = STATE(1331), - [sym_type_alias_declaration] = STATE(1331), - [aux_sym_export_statement_repeat1] = STATE(4902), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_import] = ACTIONS(2883), - [anon_sym_var] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2895), - [anon_sym_function] = ACTIONS(2897), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2899), - [anon_sym_module] = ACTIONS(3019), - [anon_sym_abstract] = ACTIONS(2903), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2907), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(4991), + [sym_ambient_declaration] = STATE(4991), + [sym_abstract_class_declaration] = STATE(4991), + [sym_module] = STATE(4991), + [sym_internal_module] = STATE(4998), + [sym_import_alias] = STATE(4991), + [sym_interface_declaration] = STATE(4991), + [sym_enum_declaration] = STATE(4991), + [sym_type_alias_declaration] = STATE(4991), + [aux_sym_export_statement_repeat1] = STATE(4891), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_import] = ACTIONS(3034), + [anon_sym_var] = ACTIONS(3036), + [anon_sym_let] = ACTIONS(3038), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(3042), + [anon_sym_async] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_EQ_GT] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(3050), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_global] = ACTIONS(3056), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3060), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [893] = { [sym_comment] = STATE(893), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2486), - [sym_private_property_identifier] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_readonly] = ACTIONS(2486), - [anon_sym_get] = ACTIONS(2486), - [anon_sym_set] = ACTIONS(2486), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2486), - [anon_sym_public] = ACTIONS(2486), - [anon_sym_private] = ACTIONS(2486), - [anon_sym_protected] = ACTIONS(2486), - [anon_sym_override] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_any] = ACTIONS(2486), - [anon_sym_number] = ACTIONS(2486), - [anon_sym_boolean] = ACTIONS(2486), - [anon_sym_string] = ACTIONS(2486), - [anon_sym_symbol] = ACTIONS(2486), - [anon_sym_object] = ACTIONS(2486), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2485), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2485), + [sym_private_property_identifier] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_readonly] = ACTIONS(2485), + [anon_sym_get] = ACTIONS(2485), + [anon_sym_set] = ACTIONS(2485), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2485), + [anon_sym_public] = ACTIONS(2485), + [anon_sym_private] = ACTIONS(2485), + [anon_sym_protected] = ACTIONS(2485), + [anon_sym_override] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_any] = ACTIONS(2485), + [anon_sym_number] = ACTIONS(2485), + [anon_sym_boolean] = ACTIONS(2485), + [anon_sym_string] = ACTIONS(2485), + [anon_sym_symbol] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(2485), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [894] = { - [sym_declaration] = STATE(4992), - [sym_variable_declaration] = STATE(4988), - [sym_lexical_declaration] = STATE(4988), - [sym_class_declaration] = STATE(4988), - [sym_function_declaration] = STATE(4988), - [sym_generator_function_declaration] = STATE(4988), [sym_comment] = STATE(894), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(4988), - [sym_ambient_declaration] = STATE(4988), - [sym_abstract_class_declaration] = STATE(4988), - [sym_module] = STATE(4988), - [sym_internal_module] = STATE(4995), - [sym_import_alias] = STATE(4988), - [sym_interface_declaration] = STATE(4988), - [sym_enum_declaration] = STATE(4988), - [sym_type_alias_declaration] = STATE(4988), - [aux_sym_export_statement_repeat1] = STATE(4889), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_import] = ACTIONS(3029), - [anon_sym_var] = ACTIONS(3031), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_async] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3041), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3045), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3053), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2487), + [anon_sym_export] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_let] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_get] = ACTIONS(2487), + [anon_sym_set] = ACTIONS(2487), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_private] = ACTIONS(2487), + [anon_sym_protected] = ACTIONS(2487), + [anon_sym_override] = ACTIONS(2487), + [anon_sym_module] = ACTIONS(2487), + [anon_sym_any] = ACTIONS(2487), + [anon_sym_number] = ACTIONS(2487), + [anon_sym_boolean] = ACTIONS(2487), + [anon_sym_string] = ACTIONS(2487), + [anon_sym_symbol] = ACTIONS(2487), + [anon_sym_object] = ACTIONS(2487), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [895] = { + [sym_declaration] = STATE(6346), + [sym_variable_declaration] = STATE(6333), + [sym_lexical_declaration] = STATE(6333), + [sym_class_declaration] = STATE(6333), + [sym_function_declaration] = STATE(6333), + [sym_generator_function_declaration] = STATE(6333), [sym_comment] = STATE(895), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_async] = ACTIONS(2482), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2482), - [sym_private_property_identifier] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_readonly] = ACTIONS(2482), - [anon_sym_get] = ACTIONS(2482), - [anon_sym_set] = ACTIONS(2482), - [anon_sym_QMARK] = ACTIONS(1035), - [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(6333), + [sym_ambient_declaration] = STATE(6333), + [sym_abstract_class_declaration] = STATE(6333), + [sym_module] = STATE(6333), + [sym_internal_module] = STATE(6337), + [sym_import_alias] = STATE(6333), + [sym_interface_declaration] = STATE(6333), + [sym_enum_declaration] = STATE(6333), + [sym_type_alias_declaration] = STATE(6333), + [aux_sym_export_statement_repeat1] = STATE(5030), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2930), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_function] = ACTIONS(2946), + [anon_sym_EQ_GT] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_global] = ACTIONS(3010), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2956), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [896] = { + [sym_declaration] = STATE(1489), + [sym_variable_declaration] = STATE(1436), + [sym_lexical_declaration] = STATE(1436), + [sym_class_declaration] = STATE(1436), + [sym_function_declaration] = STATE(1436), + [sym_generator_function_declaration] = STATE(1436), [sym_comment] = STATE(896), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_async] = ACTIONS(2482), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2482), - [sym_private_property_identifier] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_readonly] = ACTIONS(2482), - [anon_sym_get] = ACTIONS(2482), - [anon_sym_set] = ACTIONS(2482), - [anon_sym_QMARK] = ACTIONS(1035), - [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1436), + [sym_ambient_declaration] = STATE(1436), + [sym_abstract_class_declaration] = STATE(1436), + [sym_module] = STATE(1436), + [sym_internal_module] = STATE(1446), + [sym_import_alias] = STATE(1436), + [sym_interface_declaration] = STATE(1436), + [sym_enum_declaration] = STATE(1436), + [sym_type_alias_declaration] = STATE(1436), + [aux_sym_export_statement_repeat1] = STATE(4864), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(2970), + [anon_sym_var] = ACTIONS(2972), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2982), + [anon_sym_function] = ACTIONS(2984), + [anon_sym_EQ_GT] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2986), + [anon_sym_module] = ACTIONS(3014), + [anon_sym_abstract] = ACTIONS(2990), + [anon_sym_global] = ACTIONS(3016), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2994), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [897] = { - [sym_declaration] = STATE(1556), - [sym_variable_declaration] = STATE(1618), - [sym_lexical_declaration] = STATE(1618), - [sym_class_declaration] = STATE(1618), - [sym_function_declaration] = STATE(1618), - [sym_generator_function_declaration] = STATE(1618), + [sym_declaration] = STATE(1516), + [sym_variable_declaration] = STATE(1544), + [sym_lexical_declaration] = STATE(1544), + [sym_class_declaration] = STATE(1544), + [sym_function_declaration] = STATE(1544), + [sym_generator_function_declaration] = STATE(1544), [sym_comment] = STATE(897), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1618), - [sym_ambient_declaration] = STATE(1618), - [sym_abstract_class_declaration] = STATE(1618), - [sym_module] = STATE(1618), - [sym_internal_module] = STATE(1584), - [sym_import_alias] = STATE(1618), - [sym_interface_declaration] = STATE(1618), - [sym_enum_declaration] = STATE(1618), - [sym_type_alias_declaration] = STATE(1618), - [aux_sym_export_statement_repeat1] = STATE(4853), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1544), + [sym_ambient_declaration] = STATE(1544), + [sym_abstract_class_declaration] = STATE(1544), + [sym_module] = STATE(1544), + [sym_internal_module] = STATE(1606), + [sym_import_alias] = STATE(1544), + [sym_interface_declaration] = STATE(1544), + [sym_enum_declaration] = STATE(1544), + [sym_type_alias_declaration] = STATE(1544), + [aux_sym_export_statement_repeat1] = STATE(4862), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_global] = ACTIONS(2838), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2804), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [898] = { - [sym_declaration] = STATE(6342), - [sym_variable_declaration] = STATE(6330), - [sym_lexical_declaration] = STATE(6330), - [sym_class_declaration] = STATE(6330), - [sym_function_declaration] = STATE(6330), - [sym_generator_function_declaration] = STATE(6330), [sym_comment] = STATE(898), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(6330), - [sym_ambient_declaration] = STATE(6330), - [sym_abstract_class_declaration] = STATE(6330), - [sym_module] = STATE(6330), - [sym_internal_module] = STATE(6333), - [sym_import_alias] = STATE(6330), - [sym_interface_declaration] = STATE(6330), - [sym_enum_declaration] = STATE(6330), - [sym_type_alias_declaration] = STATE(6330), - [aux_sym_export_statement_repeat1] = STATE(5028), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2999), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_async] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2979), - [anon_sym_module] = ACTIONS(3001), - [anon_sym_abstract] = ACTIONS(2983), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3003), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2987), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2487), + [anon_sym_export] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_get] = ACTIONS(2487), + [anon_sym_set] = ACTIONS(2487), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_private] = ACTIONS(2487), + [anon_sym_protected] = ACTIONS(2487), + [anon_sym_override] = ACTIONS(2487), + [anon_sym_module] = ACTIONS(2487), + [anon_sym_any] = ACTIONS(2487), + [anon_sym_number] = ACTIONS(2487), + [anon_sym_boolean] = ACTIONS(2487), + [anon_sym_string] = ACTIONS(2487), + [anon_sym_symbol] = ACTIONS(2487), + [anon_sym_object] = ACTIONS(2487), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [899] = { [sym_comment] = STATE(899), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2486), - [sym_private_property_identifier] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_readonly] = ACTIONS(2486), - [anon_sym_get] = ACTIONS(2486), - [anon_sym_set] = ACTIONS(2486), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(2486), - [anon_sym_public] = ACTIONS(2486), - [anon_sym_private] = ACTIONS(2486), - [anon_sym_protected] = ACTIONS(2486), - [anon_sym_override] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_any] = ACTIONS(2486), - [anon_sym_number] = ACTIONS(2486), - [anon_sym_boolean] = ACTIONS(2486), - [anon_sym_string] = ACTIONS(2486), - [anon_sym_symbol] = ACTIONS(2486), - [anon_sym_object] = ACTIONS(2486), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(2485), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [sym_number] = ACTIONS(2485), + [sym_private_property_identifier] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_readonly] = ACTIONS(2485), + [anon_sym_get] = ACTIONS(2485), + [anon_sym_set] = ACTIONS(2485), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(2485), + [anon_sym_public] = ACTIONS(2485), + [anon_sym_private] = ACTIONS(2485), + [anon_sym_protected] = ACTIONS(2485), + [anon_sym_override] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_any] = ACTIONS(2485), + [anon_sym_number] = ACTIONS(2485), + [anon_sym_boolean] = ACTIONS(2485), + [anon_sym_string] = ACTIONS(2485), + [anon_sym_symbol] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(2485), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [900] = { - [sym_declaration] = STATE(1362), - [sym_variable_declaration] = STATE(1344), - [sym_lexical_declaration] = STATE(1344), - [sym_class_declaration] = STATE(1344), - [sym_function_declaration] = STATE(1344), - [sym_generator_function_declaration] = STATE(1344), + [sym_declaration] = STATE(1422), + [sym_variable_declaration] = STATE(1470), + [sym_lexical_declaration] = STATE(1470), + [sym_class_declaration] = STATE(1470), + [sym_function_declaration] = STATE(1470), + [sym_generator_function_declaration] = STATE(1470), [sym_comment] = STATE(900), - [sym_decorator] = STATE(5599), - [sym_function_signature] = STATE(1344), - [sym_ambient_declaration] = STATE(1344), - [sym_abstract_class_declaration] = STATE(1344), - [sym_module] = STATE(1344), - [sym_internal_module] = STATE(1350), - [sym_import_alias] = STATE(1344), - [sym_interface_declaration] = STATE(1344), - [sym_enum_declaration] = STATE(1344), - [sym_type_alias_declaration] = STATE(1344), - [aux_sym_export_statement_repeat1] = STATE(4862), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_var] = ACTIONS(2927), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(2945), - [anon_sym_satisfies] = ACTIONS(209), - [anon_sym_global] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2949), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1470), + [sym_ambient_declaration] = STATE(1470), + [sym_abstract_class_declaration] = STATE(1470), + [sym_module] = STATE(1470), + [sym_internal_module] = STATE(1454), + [sym_import_alias] = STATE(1470), + [sym_interface_declaration] = STATE(1470), + [sym_enum_declaration] = STATE(1470), + [sym_type_alias_declaration] = STATE(1470), + [aux_sym_export_statement_repeat1] = STATE(4904), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3018), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2850), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2866), + [anon_sym_EQ_GT] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(3020), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_global] = ACTIONS(3022), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2876), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [901] = { + [sym_declaration] = STATE(1084), + [sym_variable_declaration] = STATE(1042), + [sym_lexical_declaration] = STATE(1042), + [sym_class_declaration] = STATE(1042), + [sym_function_declaration] = STATE(1042), + [sym_generator_function_declaration] = STATE(1042), [sym_comment] = STATE(901), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_async] = ACTIONS(2482), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2482), - [sym_private_property_identifier] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_readonly] = ACTIONS(2482), - [anon_sym_get] = ACTIONS(2482), - [anon_sym_set] = ACTIONS(2482), - [anon_sym_QMARK] = ACTIONS(1035), - [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_decorator] = STATE(5601), + [sym_function_signature] = STATE(1042), + [sym_ambient_declaration] = STATE(1042), + [sym_abstract_class_declaration] = STATE(1042), + [sym_module] = STATE(1042), + [sym_internal_module] = STATE(1041), + [sym_import_alias] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_type_alias_declaration] = STATE(1042), + [aux_sym_export_statement_repeat1] = STATE(4859), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_import] = ACTIONS(2890), + [anon_sym_var] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(2787), + [anon_sym_DASH_EQ] = ACTIONS(2787), + [anon_sym_STAR_EQ] = ACTIONS(2787), + [anon_sym_SLASH_EQ] = ACTIONS(2787), + [anon_sym_PERCENT_EQ] = ACTIONS(2787), + [anon_sym_CARET_EQ] = ACTIONS(2787), + [anon_sym_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2787), + [anon_sym_LT_LT_EQ] = ACTIONS(2787), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2787), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2787), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [aux_sym_comment_token1] = ACTIONS(2792), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(3026), + [anon_sym_abstract] = ACTIONS(2910), + [anon_sym_global] = ACTIONS(3028), + [anon_sym_satisfies] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2914), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [902] = { - [sym__call_signature] = STATE(7086), + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(902), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(3057), - [anon_sym_set] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(1117), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1110), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [903] = { - [sym__call_signature] = STATE(7086), + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(903), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(3057), - [anon_sym_set] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(124), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [904] = { - [sym__call_signature] = STATE(7271), + [sym__call_signature] = STATE(7274), [sym_comment] = STATE(904), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3071), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_declare] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_any] = ACTIONS(3076), + [anon_sym_number] = ACTIONS(3076), + [anon_sym_boolean] = ACTIONS(3076), + [anon_sym_string] = ACTIONS(3076), + [anon_sym_symbol] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [905] = { - [sym__call_signature] = STATE(6966), + [sym__call_signature] = STATE(7274), [sym_comment] = STATE(905), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3073), - [anon_sym_export] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3075), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_let] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3075), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_module] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3075), - [anon_sym_number] = ACTIONS(3075), - [anon_sym_boolean] = ACTIONS(3075), - [anon_sym_string] = ACTIONS(3075), - [anon_sym_symbol] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_declare] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_any] = ACTIONS(3076), + [anon_sym_number] = ACTIONS(3076), + [anon_sym_boolean] = ACTIONS(3076), + [anon_sym_string] = ACTIONS(3076), + [anon_sym_symbol] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [906] = { - [sym__call_signature] = STATE(7271), + [sym__call_signature] = STATE(7274), [sym_comment] = STATE(906), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_declare] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_any] = ACTIONS(3076), + [anon_sym_number] = ACTIONS(3076), + [anon_sym_boolean] = ACTIONS(3076), + [anon_sym_string] = ACTIONS(3076), + [anon_sym_symbol] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [907] = { - [sym__call_signature] = STATE(7271), + [sym__call_signature] = STATE(7274), [sym_comment] = STATE(907), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_declare] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_any] = ACTIONS(3076), + [anon_sym_number] = ACTIONS(3076), + [anon_sym_boolean] = ACTIONS(3076), + [anon_sym_string] = ACTIONS(3076), + [anon_sym_symbol] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [908] = { - [sym__call_signature] = STATE(7192), + [sym__call_signature] = STATE(7274), [sym_comment] = STATE(908), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3079), - [anon_sym_export] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(1211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_get] = ACTIONS(3081), - [anon_sym_set] = ACTIONS(3081), - [anon_sym_declare] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_override] = ACTIONS(3081), - [anon_sym_module] = ACTIONS(3081), - [anon_sym_any] = ACTIONS(3081), - [anon_sym_number] = ACTIONS(3081), - [anon_sym_boolean] = ACTIONS(3081), - [anon_sym_string] = ACTIONS(3081), - [anon_sym_symbol] = ACTIONS(3081), - [anon_sym_object] = ACTIONS(3081), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_declare] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_any] = ACTIONS(3076), + [anon_sym_number] = ACTIONS(3076), + [anon_sym_boolean] = ACTIONS(3076), + [anon_sym_string] = ACTIONS(3076), + [anon_sym_symbol] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [909] = { - [sym__call_signature] = STATE(7173), + [sym__call_signature] = STATE(7274), [sym_comment] = STATE(909), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3085), - [anon_sym_export] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(3087), - [anon_sym_set] = ACTIONS(3087), - [anon_sym_declare] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_any] = ACTIONS(3087), - [anon_sym_number] = ACTIONS(3087), - [anon_sym_boolean] = ACTIONS(3087), - [anon_sym_string] = ACTIONS(3087), - [anon_sym_symbol] = ACTIONS(3087), - [anon_sym_object] = ACTIONS(3087), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_declare] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_any] = ACTIONS(3076), + [anon_sym_number] = ACTIONS(3076), + [anon_sym_boolean] = ACTIONS(3076), + [anon_sym_string] = ACTIONS(3076), + [anon_sym_symbol] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [910] = { - [sym__call_signature] = STATE(7192), + [sym__call_signature] = STATE(7188), [sym_comment] = STATE(910), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3079), - [anon_sym_export] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_get] = ACTIONS(3081), - [anon_sym_set] = ACTIONS(3081), - [anon_sym_declare] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_override] = ACTIONS(3081), - [anon_sym_module] = ACTIONS(3081), - [anon_sym_any] = ACTIONS(3081), - [anon_sym_number] = ACTIONS(3081), - [anon_sym_boolean] = ACTIONS(3081), - [anon_sym_string] = ACTIONS(3081), - [anon_sym_symbol] = ACTIONS(3081), - [anon_sym_object] = ACTIONS(3081), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3086), + [anon_sym_export] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3088), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3088), + [anon_sym_readonly] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(3088), + [anon_sym_set] = ACTIONS(3088), + [anon_sym_declare] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_module] = ACTIONS(3088), + [anon_sym_any] = ACTIONS(3088), + [anon_sym_number] = ACTIONS(3088), + [anon_sym_boolean] = ACTIONS(3088), + [anon_sym_string] = ACTIONS(3088), + [anon_sym_symbol] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [911] = { - [sym__call_signature] = STATE(7271), + [sym__call_signature] = STATE(7188), [sym_comment] = STATE(911), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3086), + [anon_sym_export] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3088), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3088), + [anon_sym_readonly] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(3088), + [anon_sym_set] = ACTIONS(3088), + [anon_sym_declare] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_module] = ACTIONS(3088), + [anon_sym_any] = ACTIONS(3088), + [anon_sym_number] = ACTIONS(3088), + [anon_sym_boolean] = ACTIONS(3088), + [anon_sym_string] = ACTIONS(3088), + [anon_sym_symbol] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [912] = { - [sym__call_signature] = STATE(7271), + [sym__call_signature] = STATE(7177), [sym_comment] = STATE(912), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3089), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3090), + [anon_sym_export] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3092), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_declare] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_any] = ACTIONS(3092), + [anon_sym_number] = ACTIONS(3092), + [anon_sym_boolean] = ACTIONS(3092), + [anon_sym_string] = ACTIONS(3092), + [anon_sym_symbol] = ACTIONS(3092), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [913] = { - [sym__call_signature] = STATE(7271), + [sym__call_signature] = STATE(7274), [sym_comment] = STATE(913), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(1233), - [anon_sym_of] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(3094), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_declare] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_any] = ACTIONS(3076), + [anon_sym_number] = ACTIONS(3076), + [anon_sym_boolean] = ACTIONS(3076), + [anon_sym_string] = ACTIONS(3076), + [anon_sym_symbol] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [914] = { - [sym__call_signature] = STATE(7271), + [sym__call_signature] = STATE(7177), [sym_comment] = STATE(914), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3090), + [anon_sym_export] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3092), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_declare] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_any] = ACTIONS(3092), + [anon_sym_number] = ACTIONS(3092), + [anon_sym_boolean] = ACTIONS(3092), + [anon_sym_string] = ACTIONS(3092), + [anon_sym_symbol] = ACTIONS(3092), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [915] = { - [sym__call_signature] = STATE(7173), + [sym__call_signature] = STATE(7274), [sym_comment] = STATE(915), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3085), - [anon_sym_export] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(3087), - [anon_sym_set] = ACTIONS(3087), - [anon_sym_declare] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_any] = ACTIONS(3087), - [anon_sym_number] = ACTIONS(3087), - [anon_sym_boolean] = ACTIONS(3087), - [anon_sym_string] = ACTIONS(3087), - [anon_sym_symbol] = ACTIONS(3087), - [anon_sym_object] = ACTIONS(3087), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_declare] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_any] = ACTIONS(3076), + [anon_sym_number] = ACTIONS(3076), + [anon_sym_boolean] = ACTIONS(3076), + [anon_sym_string] = ACTIONS(3076), + [anon_sym_symbol] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [916] = { - [sym__call_signature] = STATE(7271), + [sym__call_signature] = STATE(7182), [sym_comment] = STATE(916), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3096), + [anon_sym_export] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_let] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_readonly] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3098), + [anon_sym_set] = ACTIONS(3098), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_declare] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_module] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(3098), + [anon_sym_number] = ACTIONS(3098), + [anon_sym_boolean] = ACTIONS(3098), + [anon_sym_string] = ACTIONS(3098), + [anon_sym_symbol] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [917] = { - [sym__call_signature] = STATE(7173), + [sym__call_signature] = STATE(7177), [sym_comment] = STATE(917), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3085), - [anon_sym_export] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(3087), - [anon_sym_set] = ACTIONS(3087), - [anon_sym_declare] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_any] = ACTIONS(3087), - [anon_sym_number] = ACTIONS(3087), - [anon_sym_boolean] = ACTIONS(3087), - [anon_sym_string] = ACTIONS(3087), - [anon_sym_symbol] = ACTIONS(3087), - [anon_sym_object] = ACTIONS(3087), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3090), + [anon_sym_export] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3092), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_declare] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_any] = ACTIONS(3092), + [anon_sym_number] = ACTIONS(3092), + [anon_sym_boolean] = ACTIONS(3092), + [anon_sym_string] = ACTIONS(3092), + [anon_sym_symbol] = ACTIONS(3092), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [918] = { - [sym__call_signature] = STATE(6966), + [sym__call_signature] = STATE(7264), [sym_comment] = STATE(918), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3073), - [anon_sym_export] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3075), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3075), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_declare] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_module] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3075), - [anon_sym_number] = ACTIONS(3075), - [anon_sym_boolean] = ACTIONS(3075), - [anon_sym_string] = ACTIONS(3075), - [anon_sym_symbol] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7159), [sym_comment] = STATE(919), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3104), + [anon_sym_export] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_EQ] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3106), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_readonly] = ACTIONS(3106), + [anon_sym_get] = ACTIONS(3106), + [anon_sym_set] = ACTIONS(3106), + [anon_sym_declare] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_module] = ACTIONS(3106), + [anon_sym_any] = ACTIONS(3106), + [anon_sym_number] = ACTIONS(3106), + [anon_sym_boolean] = ACTIONS(3106), + [anon_sym_string] = ACTIONS(3106), + [anon_sym_symbol] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [920] = { - [sym__call_signature] = STATE(7153), + [sym__call_signature] = STATE(7177), [sym_comment] = STATE(920), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3090), + [anon_sym_export] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3092), [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3092), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_declare] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_any] = ACTIONS(3092), + [anon_sym_number] = ACTIONS(3092), + [anon_sym_boolean] = ACTIONS(3092), + [anon_sym_string] = ACTIONS(3092), + [anon_sym_symbol] = ACTIONS(3092), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym__call_signature] = STATE(7153), + [sym_catch_clause] = STATE(951), + [sym_finally_clause] = STATE(1175), [sym_comment] = STATE(921), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(3108), + [anon_sym_export] = ACTIONS(3108), + [anon_sym_default] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), + [anon_sym_namespace] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(3108), + [anon_sym_with] = ACTIONS(3108), + [anon_sym_var] = ACTIONS(3108), + [anon_sym_let] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_else] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_await] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_do] = ACTIONS(3108), + [anon_sym_try] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_debugger] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_case] = ACTIONS(3108), + [anon_sym_catch] = ACTIONS(3110), + [anon_sym_finally] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_LTtemplate_GT] = ACTIONS(3108), + [anon_sym_DQUOTE] = ACTIONS(3108), + [anon_sym_SQUOTE] = ACTIONS(3108), + [anon_sym_class] = ACTIONS(3108), + [anon_sym_async] = ACTIONS(3108), + [anon_sym_function] = ACTIONS(3108), + [anon_sym_new] = ACTIONS(3108), + [anon_sym_using] = ACTIONS(3108), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_void] = ACTIONS(3108), + [anon_sym_delete] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3108), + [sym_number] = ACTIONS(3108), + [sym_private_property_identifier] = ACTIONS(3108), + [sym_this] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_null] = ACTIONS(3108), + [sym_undefined] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_readonly] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3108), + [anon_sym_set] = ACTIONS(3108), + [anon_sym_declare] = ACTIONS(3108), + [anon_sym_public] = ACTIONS(3108), + [anon_sym_private] = ACTIONS(3108), + [anon_sym_protected] = ACTIONS(3108), + [anon_sym_override] = ACTIONS(3108), + [anon_sym_module] = ACTIONS(3108), + [anon_sym_any] = ACTIONS(3108), + [anon_sym_number] = ACTIONS(3108), + [anon_sym_boolean] = ACTIONS(3108), + [anon_sym_string] = ACTIONS(3108), + [anon_sym_symbol] = ACTIONS(3108), + [anon_sym_object] = ACTIONS(3108), + [anon_sym_abstract] = ACTIONS(3108), + [anon_sym_global] = ACTIONS(3108), + [anon_sym_interface] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym__call_signature] = STATE(7173), + [sym__call_signature] = STATE(7159), [sym_comment] = STATE(922), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3085), - [anon_sym_export] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(3087), - [anon_sym_set] = ACTIONS(3087), - [anon_sym_declare] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_any] = ACTIONS(3087), - [anon_sym_number] = ACTIONS(3087), - [anon_sym_boolean] = ACTIONS(3087), - [anon_sym_string] = ACTIONS(3087), - [anon_sym_symbol] = ACTIONS(3087), - [anon_sym_object] = ACTIONS(3087), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3104), + [anon_sym_export] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3106), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_readonly] = ACTIONS(3106), + [anon_sym_get] = ACTIONS(3106), + [anon_sym_set] = ACTIONS(3106), + [anon_sym_declare] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_module] = ACTIONS(3106), + [anon_sym_any] = ACTIONS(3106), + [anon_sym_number] = ACTIONS(3106), + [anon_sym_boolean] = ACTIONS(3106), + [anon_sym_string] = ACTIONS(3106), + [anon_sym_symbol] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [923] = { - [sym__call_signature] = STATE(6966), + [sym__call_signature] = STATE(7182), [sym_comment] = STATE(923), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3073), - [anon_sym_export] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3075), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3075), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_declare] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_module] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3075), - [anon_sym_number] = ACTIONS(3075), - [anon_sym_boolean] = ACTIONS(3075), - [anon_sym_string] = ACTIONS(3075), - [anon_sym_symbol] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3096), + [anon_sym_export] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_readonly] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3098), + [anon_sym_set] = ACTIONS(3098), + [anon_sym_declare] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_module] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(3098), + [anon_sym_number] = ACTIONS(3098), + [anon_sym_boolean] = ACTIONS(3098), + [anon_sym_string] = ACTIONS(3098), + [anon_sym_symbol] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [924] = { - [sym__call_signature] = STATE(7065), + [sym__call_signature] = STATE(7182), [sym_comment] = STATE(924), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3071), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3096), + [anon_sym_export] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_let] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_readonly] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3098), + [anon_sym_set] = ACTIONS(3098), + [anon_sym_declare] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_module] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(3098), + [anon_sym_number] = ACTIONS(3098), + [anon_sym_boolean] = ACTIONS(3098), + [anon_sym_string] = ACTIONS(3098), + [anon_sym_symbol] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym__call_signature] = STATE(7065), + [sym__call_signature] = STATE(7069), [sym_comment] = STATE(925), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3114), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [926] = { - [sym__call_signature] = STATE(7260), + [sym_catch_clause] = STATE(966), + [sym_finally_clause] = STATE(1385), [sym_comment] = STATE(926), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3108), + [anon_sym_export] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), + [anon_sym_namespace] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(3108), + [anon_sym_with] = ACTIONS(3108), + [anon_sym_var] = ACTIONS(3108), + [anon_sym_let] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_else] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_await] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_do] = ACTIONS(3108), + [anon_sym_try] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_debugger] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_catch] = ACTIONS(3120), + [anon_sym_finally] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_LTtemplate_GT] = ACTIONS(3108), + [anon_sym_DQUOTE] = ACTIONS(3108), + [anon_sym_SQUOTE] = ACTIONS(3108), + [anon_sym_class] = ACTIONS(3108), + [anon_sym_async] = ACTIONS(3108), + [anon_sym_function] = ACTIONS(3108), + [anon_sym_new] = ACTIONS(3108), + [anon_sym_using] = ACTIONS(3108), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_void] = ACTIONS(3108), + [anon_sym_delete] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3108), + [sym_number] = ACTIONS(3108), + [sym_private_property_identifier] = ACTIONS(3108), + [sym_this] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_null] = ACTIONS(3108), + [sym_undefined] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_readonly] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3108), + [anon_sym_set] = ACTIONS(3108), + [anon_sym_declare] = ACTIONS(3108), + [anon_sym_public] = ACTIONS(3108), + [anon_sym_private] = ACTIONS(3108), + [anon_sym_protected] = ACTIONS(3108), + [anon_sym_override] = ACTIONS(3108), + [anon_sym_module] = ACTIONS(3108), + [anon_sym_any] = ACTIONS(3108), + [anon_sym_number] = ACTIONS(3108), + [anon_sym_boolean] = ACTIONS(3108), + [anon_sym_string] = ACTIONS(3108), + [anon_sym_symbol] = ACTIONS(3108), + [anon_sym_object] = ACTIONS(3108), + [anon_sym_abstract] = ACTIONS(3108), + [anon_sym_global] = ACTIONS(3108), + [anon_sym_interface] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), [sym_html_comment] = ACTIONS(5), }, [927] = { - [sym__call_signature] = STATE(7065), [sym_comment] = STATE(927), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_catch] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3124), [sym_html_comment] = ACTIONS(5), }, [928] = { - [sym__call_signature] = STATE(7065), + [sym__call_signature] = STATE(7069), [sym_comment] = STATE(928), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3114), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [929] = { - [sym__call_signature] = STATE(7065), + [sym__call_signature] = STATE(7264), [sym_comment] = STATE(929), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3105), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [930] = { - [sym__call_signature] = STATE(7065), + [sym__call_signature] = STATE(7069), [sym_comment] = STATE(930), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3114), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [931] = { - [sym__call_signature] = STATE(7065), + [sym__call_signature] = STATE(7264), [sym_comment] = STATE(931), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3089), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [932] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7069), [sym_comment] = STATE(932), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3114), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [933] = { - [sym__call_signature] = STATE(7065), + [sym__call_signature] = STATE(7069), [sym_comment] = STATE(933), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_EQ_GT] = ACTIONS(1295), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3114), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [934] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7069), [sym_comment] = STATE(934), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3114), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym_catch_clause] = STATE(970), - [sym_finally_clause] = STATE(1074), + [sym__call_signature] = STATE(7069), [sym_comment] = STATE(935), - [sym_identifier] = ACTIONS(3107), - [anon_sym_export] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_type] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_with] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_debugger] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3109), - [anon_sym_finally] = ACTIONS(3111), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_LTtemplate_GT] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_function] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3107), - [sym_number] = ACTIONS(3107), - [sym_private_property_identifier] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_super] = ACTIONS(3107), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3107), - [anon_sym_set] = ACTIONS(3107), - [anon_sym_declare] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3107), - [anon_sym_any] = ACTIONS(3107), - [anon_sym_number] = ACTIONS(3107), - [anon_sym_boolean] = ACTIONS(3107), - [anon_sym_string] = ACTIONS(3107), - [anon_sym_symbol] = ACTIONS(3107), - [anon_sym_object] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3114), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [936] = { - [sym_catch_clause] = STATE(1016), - [sym_finally_clause] = STATE(1259), + [sym__call_signature] = STATE(7069), [sym_comment] = STATE(936), - [sym_identifier] = ACTIONS(3107), - [anon_sym_export] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_type] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_with] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_debugger] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3113), - [anon_sym_finally] = ACTIONS(3115), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_LTtemplate_GT] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_function] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3107), - [sym_number] = ACTIONS(3107), - [sym_private_property_identifier] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_super] = ACTIONS(3107), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3107), - [anon_sym_set] = ACTIONS(3107), - [anon_sym_declare] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3107), - [anon_sym_any] = ACTIONS(3107), - [anon_sym_number] = ACTIONS(3107), - [anon_sym_boolean] = ACTIONS(3107), - [anon_sym_string] = ACTIONS(3107), - [anon_sym_symbol] = ACTIONS(3107), - [anon_sym_object] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3114), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3094), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym__call_signature] = STATE(7086), + [sym_catch_clause] = STATE(1010), + [sym_finally_clause] = STATE(1390), [sym_comment] = STATE(937), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(1233), - [anon_sym_of] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(3108), + [anon_sym_export] = ACTIONS(3108), + [anon_sym_default] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), + [anon_sym_namespace] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(3108), + [anon_sym_with] = ACTIONS(3108), + [anon_sym_var] = ACTIONS(3108), + [anon_sym_let] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_await] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_do] = ACTIONS(3108), + [anon_sym_try] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_debugger] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_case] = ACTIONS(3108), + [anon_sym_catch] = ACTIONS(3128), + [anon_sym_finally] = ACTIONS(3130), + [anon_sym_yield] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_LTtemplate_GT] = ACTIONS(3108), + [anon_sym_DQUOTE] = ACTIONS(3108), + [anon_sym_SQUOTE] = ACTIONS(3108), + [anon_sym_class] = ACTIONS(3108), + [anon_sym_async] = ACTIONS(3108), + [anon_sym_function] = ACTIONS(3108), + [anon_sym_new] = ACTIONS(3108), + [anon_sym_using] = ACTIONS(3108), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_void] = ACTIONS(3108), + [anon_sym_delete] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3108), + [sym_number] = ACTIONS(3108), + [sym_private_property_identifier] = ACTIONS(3108), + [sym_this] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_null] = ACTIONS(3108), + [sym_undefined] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_readonly] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3108), + [anon_sym_set] = ACTIONS(3108), + [anon_sym_declare] = ACTIONS(3108), + [anon_sym_public] = ACTIONS(3108), + [anon_sym_private] = ACTIONS(3108), + [anon_sym_protected] = ACTIONS(3108), + [anon_sym_override] = ACTIONS(3108), + [anon_sym_module] = ACTIONS(3108), + [anon_sym_any] = ACTIONS(3108), + [anon_sym_number] = ACTIONS(3108), + [anon_sym_boolean] = ACTIONS(3108), + [anon_sym_string] = ACTIONS(3108), + [anon_sym_symbol] = ACTIONS(3108), + [anon_sym_object] = ACTIONS(3108), + [anon_sym_abstract] = ACTIONS(3108), + [anon_sym_global] = ACTIONS(3108), + [anon_sym_interface] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym__call_signature] = STATE(7121), [sym_comment] = STATE(938), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3117), - [anon_sym_export] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3119), - [anon_sym_EQ] = ACTIONS(1307), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1301), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_get] = ACTIONS(3119), - [anon_sym_set] = ACTIONS(3119), - [anon_sym_declare] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_module] = ACTIONS(3119), - [anon_sym_any] = ACTIONS(3119), - [anon_sym_number] = ACTIONS(3119), - [anon_sym_boolean] = ACTIONS(3119), - [anon_sym_string] = ACTIONS(3119), - [anon_sym_symbol] = ACTIONS(3119), - [anon_sym_object] = ACTIONS(3119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_catch] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, [939] = { + [sym__call_signature] = STATE(7264), [sym_comment] = STATE(939), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_catch] = ACTIONS(2138), - [anon_sym_finally] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3121), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [940] = { - [sym__call_signature] = STATE(7121), + [sym__call_signature] = STATE(7002), [sym_comment] = STATE(940), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3117), - [anon_sym_export] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3119), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1301), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_get] = ACTIONS(3119), - [anon_sym_set] = ACTIONS(3119), - [anon_sym_declare] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_module] = ACTIONS(3119), - [anon_sym_any] = ACTIONS(3119), - [anon_sym_number] = ACTIONS(3119), - [anon_sym_boolean] = ACTIONS(3119), - [anon_sym_string] = ACTIONS(3119), - [anon_sym_symbol] = ACTIONS(3119), - [anon_sym_object] = ACTIONS(3119), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3136), + [anon_sym_let] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1332), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_get] = ACTIONS(3136), + [anon_sym_set] = ACTIONS(3136), + [anon_sym_declare] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_module] = ACTIONS(3136), + [anon_sym_any] = ACTIONS(3136), + [anon_sym_number] = ACTIONS(3136), + [anon_sym_boolean] = ACTIONS(3136), + [anon_sym_string] = ACTIONS(3136), + [anon_sym_symbol] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [941] = { - [sym__call_signature] = STATE(7086), [sym_comment] = STATE(941), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_catch] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7126), [sym_comment] = STATE(942), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3140), + [anon_sym_export] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3142), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3142), + [anon_sym_let] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3142), + [anon_sym_set] = ACTIONS(3142), + [anon_sym_declare] = ACTIONS(3142), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [anon_sym_override] = ACTIONS(3142), + [anon_sym_module] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3142), + [anon_sym_number] = ACTIONS(3142), + [anon_sym_boolean] = ACTIONS(3142), + [anon_sym_string] = ACTIONS(3142), + [anon_sym_symbol] = ACTIONS(3142), + [anon_sym_object] = ACTIONS(3142), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym__call_signature] = STATE(6999), + [sym_statement_block] = STATE(1193), [sym_comment] = STATE(943), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3123), - [anon_sym_export] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3125), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1299), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3125), - [anon_sym_readonly] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3125), - [anon_sym_set] = ACTIONS(3125), - [anon_sym_declare] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_module] = ACTIONS(3125), - [anon_sym_any] = ACTIONS(3125), - [anon_sym_number] = ACTIONS(3125), - [anon_sym_boolean] = ACTIONS(3125), - [anon_sym_string] = ACTIONS(3125), - [anon_sym_symbol] = ACTIONS(3125), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym__call_signature] = STATE(7260), + [sym_statement_block] = STATE(1193), [sym_comment] = STATE(944), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [945] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(945), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3127), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [946] = { - [sym__call_signature] = STATE(6999), [sym_comment] = STATE(946), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3123), - [anon_sym_export] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3125), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1299), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3125), - [anon_sym_readonly] = ACTIONS(3125), - [anon_sym_get] = ACTIONS(3125), - [anon_sym_set] = ACTIONS(3125), - [anon_sym_declare] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_module] = ACTIONS(3125), - [anon_sym_any] = ACTIONS(3125), - [anon_sym_number] = ACTIONS(3125), - [anon_sym_boolean] = ACTIONS(3125), - [anon_sym_string] = ACTIONS(3125), - [anon_sym_symbol] = ACTIONS(3125), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_catch] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, [947] = { - [sym_catch_clause] = STATE(996), - [sym_finally_clause] = STATE(1427), [sym_comment] = STATE(947), - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_identifier] = ACTIONS(3107), - [anon_sym_export] = ACTIONS(3107), - [anon_sym_type] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_with] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_debugger] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3131), - [anon_sym_finally] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_LTtemplate_GT] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_function] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3107), - [sym_number] = ACTIONS(3107), - [sym_private_property_identifier] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_super] = ACTIONS(3107), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3107), - [anon_sym_set] = ACTIONS(3107), - [anon_sym_declare] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3107), - [anon_sym_any] = ACTIONS(3107), - [anon_sym_number] = ACTIONS(3107), - [anon_sym_boolean] = ACTIONS(3107), - [anon_sym_string] = ACTIONS(3107), - [anon_sym_symbol] = ACTIONS(3107), - [anon_sym_object] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3152), [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym_statement_block] = STATE(1124), [sym_comment] = STATE(948), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [949] = { [sym_comment] = STATE(949), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3139), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_catch] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [950] = { - [sym__call_signature] = STATE(7086), [sym_comment] = STATE(950), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_catch] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym__call_signature] = STATE(7086), + [sym_finally_clause] = STATE(1083), [sym_comment] = STATE(951), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1387), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_finally] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_global] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, [952] = { [sym_comment] = STATE(952), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_catch] = ACTIONS(2138), - [anon_sym_finally] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3141), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_catch] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3158), [sym_html_comment] = ACTIONS(5), }, [953] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(953), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [954] = { + [sym_catch_clause] = STATE(1124), + [sym_finally_clause] = STATE(1587), [sym_comment] = STATE(954), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3143), + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3108), + [anon_sym_export] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), + [anon_sym_namespace] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(3108), + [anon_sym_with] = ACTIONS(3108), + [anon_sym_var] = ACTIONS(3108), + [anon_sym_let] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_await] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_do] = ACTIONS(3108), + [anon_sym_try] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_debugger] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_catch] = ACTIONS(3160), + [anon_sym_finally] = ACTIONS(3162), + [anon_sym_yield] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_LTtemplate_GT] = ACTIONS(3108), + [anon_sym_DQUOTE] = ACTIONS(3108), + [anon_sym_SQUOTE] = ACTIONS(3108), + [anon_sym_class] = ACTIONS(3108), + [anon_sym_async] = ACTIONS(3108), + [anon_sym_function] = ACTIONS(3108), + [anon_sym_new] = ACTIONS(3108), + [anon_sym_using] = ACTIONS(3108), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_void] = ACTIONS(3108), + [anon_sym_delete] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3108), + [sym_number] = ACTIONS(3108), + [sym_private_property_identifier] = ACTIONS(3108), + [sym_this] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_null] = ACTIONS(3108), + [sym_undefined] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_readonly] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3108), + [anon_sym_set] = ACTIONS(3108), + [anon_sym_declare] = ACTIONS(3108), + [anon_sym_public] = ACTIONS(3108), + [anon_sym_private] = ACTIONS(3108), + [anon_sym_protected] = ACTIONS(3108), + [anon_sym_override] = ACTIONS(3108), + [anon_sym_module] = ACTIONS(3108), + [anon_sym_any] = ACTIONS(3108), + [anon_sym_number] = ACTIONS(3108), + [anon_sym_boolean] = ACTIONS(3108), + [anon_sym_string] = ACTIONS(3108), + [anon_sym_symbol] = ACTIONS(3108), + [anon_sym_object] = ACTIONS(3108), + [anon_sym_abstract] = ACTIONS(3108), + [anon_sym_global] = ACTIONS(3108), + [anon_sym_interface] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), [sym_html_comment] = ACTIONS(5), }, [955] = { + [sym__call_signature] = STATE(7002), [sym_comment] = STATE(955), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_catch] = ACTIONS(2138), - [anon_sym_finally] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3145), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3136), + [anon_sym_let] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1332), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_get] = ACTIONS(3136), + [anon_sym_set] = ACTIONS(3136), + [anon_sym_declare] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_module] = ACTIONS(3136), + [anon_sym_any] = ACTIONS(3136), + [anon_sym_number] = ACTIONS(3136), + [anon_sym_boolean] = ACTIONS(3136), + [anon_sym_string] = ACTIONS(3136), + [anon_sym_symbol] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [956] = { - [sym__call_signature] = STATE(7086), [sym_comment] = STATE(956), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3164), [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym__call_signature] = STATE(7086), + [sym__call_signature] = STATE(7264), [sym_comment] = STATE(957), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym_statement_block] = STATE(1124), + [sym__call_signature] = STATE(7126), [sym_comment] = STATE(958), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3140), + [anon_sym_export] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3142), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3142), + [anon_sym_let] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3142), + [anon_sym_set] = ACTIONS(3142), + [anon_sym_declare] = ACTIONS(3142), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [anon_sym_override] = ACTIONS(3142), + [anon_sym_module] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3142), + [anon_sym_number] = ACTIONS(3142), + [anon_sym_boolean] = ACTIONS(3142), + [anon_sym_string] = ACTIONS(3142), + [anon_sym_symbol] = ACTIONS(3142), + [anon_sym_object] = ACTIONS(3142), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [959] = { - [sym__call_signature] = STATE(7086), + [sym__call_signature] = STATE(7264), [sym_comment] = STATE(959), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [960] = { - [sym_catch_clause] = STATE(1085), - [sym_finally_clause] = STATE(1567), [sym_comment] = STATE(960), - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_identifier] = ACTIONS(3107), - [anon_sym_export] = ACTIONS(3107), - [anon_sym_type] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_with] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_debugger] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3149), - [anon_sym_finally] = ACTIONS(3151), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_LTtemplate_GT] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_function] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3107), - [sym_number] = ACTIONS(3107), - [sym_private_property_identifier] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_super] = ACTIONS(3107), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3107), - [anon_sym_set] = ACTIONS(3107), - [anon_sym_declare] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3107), - [anon_sym_any] = ACTIONS(3107), - [anon_sym_number] = ACTIONS(3107), - [anon_sym_boolean] = ACTIONS(3107), - [anon_sym_string] = ACTIONS(3107), - [anon_sym_symbol] = ACTIONS(3107), - [anon_sym_object] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [961] = { - [sym__call_signature] = STATE(7086), [sym_comment] = STATE(961), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_debugger] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_private_property_identifier] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_undefined] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_declare] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_private] = ACTIONS(2299), + [anon_sym_protected] = ACTIONS(2299), + [anon_sym_override] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_any] = ACTIONS(2299), + [anon_sym_number] = ACTIONS(2299), + [anon_sym_boolean] = ACTIONS(2299), + [anon_sym_string] = ACTIONS(2299), + [anon_sym_symbol] = ACTIONS(2299), + [anon_sym_object] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_interface] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [sym__automatic_semicolon] = ACTIONS(2303), [sym_html_comment] = ACTIONS(5), }, [962] = { - [sym__call_signature] = STATE(7086), + [sym_statement_block] = STATE(1460), [sym_comment] = STATE(962), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1381), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [963] = { - [sym__call_signature] = STATE(7086), [sym_comment] = STATE(963), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_with] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_debugger] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_finally] = ACTIONS(3170), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_LTtemplate_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3170), + [sym_private_property_identifier] = ACTIONS(3170), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_global] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, [964] = { [sym_comment] = STATE(964), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_finally] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3153), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3172), [sym_html_comment] = ACTIONS(5), }, [965] = { [sym_comment] = STATE(965), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_catch] = ACTIONS(2184), - [anon_sym_finally] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_catch] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [966] = { - [sym__call_signature] = STATE(7086), + [sym_finally_clause] = STATE(1320), [sym_comment] = STATE(966), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [ts_builtin_sym_end] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_finally] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_global] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, [967] = { - [sym__call_signature] = STATE(7086), [sym_comment] = STATE(967), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_catch] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [968] = { - [sym__call_signature] = STATE(7086), + [sym_else_clause] = STATE(1501), [sym_comment] = STATE(968), - [sym_formal_parameters] = STATE(4817), - [sym_type_parameters] = STATE(6363), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1383), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3176), + [anon_sym_var] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_debugger] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LTtemplate_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_private_property_identifier] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3176), + [anon_sym_set] = ACTIONS(3176), + [anon_sym_declare] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_override] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_any] = ACTIONS(3176), + [anon_sym_number] = ACTIONS(3176), + [anon_sym_boolean] = ACTIONS(3176), + [anon_sym_string] = ACTIONS(3176), + [anon_sym_symbol] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3176), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_global] = ACTIONS(3176), + [anon_sym_interface] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, [969] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(969), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3155), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1338), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [970] = { - [sym_finally_clause] = STATE(1117), [sym_comment] = STATE(970), - [sym_identifier] = ACTIONS(3157), - [anon_sym_export] = ACTIONS(3157), - [anon_sym_default] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_namespace] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_typeof] = ACTIONS(3157), - [anon_sym_import] = ACTIONS(3157), - [anon_sym_with] = ACTIONS(3157), - [anon_sym_var] = ACTIONS(3157), - [anon_sym_let] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_else] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_switch] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_await] = ACTIONS(3157), - [anon_sym_while] = ACTIONS(3157), - [anon_sym_do] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_debugger] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_throw] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_case] = ACTIONS(3157), - [anon_sym_finally] = ACTIONS(3111), - [anon_sym_yield] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_LTtemplate_GT] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3157), - [anon_sym_class] = ACTIONS(3157), - [anon_sym_async] = ACTIONS(3157), - [anon_sym_function] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3157), - [anon_sym_using] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_void] = ACTIONS(3157), - [anon_sym_delete] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3157), - [sym_number] = ACTIONS(3157), - [sym_private_property_identifier] = ACTIONS(3157), - [sym_this] = ACTIONS(3157), - [sym_super] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_null] = ACTIONS(3157), - [sym_undefined] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_static] = ACTIONS(3157), - [anon_sym_readonly] = ACTIONS(3157), - [anon_sym_get] = ACTIONS(3157), - [anon_sym_set] = ACTIONS(3157), - [anon_sym_declare] = ACTIONS(3157), - [anon_sym_public] = ACTIONS(3157), - [anon_sym_private] = ACTIONS(3157), - [anon_sym_protected] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3157), - [anon_sym_module] = ACTIONS(3157), - [anon_sym_any] = ACTIONS(3157), - [anon_sym_number] = ACTIONS(3157), - [anon_sym_boolean] = ACTIONS(3157), - [anon_sym_string] = ACTIONS(3157), - [anon_sym_symbol] = ACTIONS(3157), - [anon_sym_object] = ACTIONS(3157), - [anon_sym_abstract] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_catch] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, [971] = { [sym_comment] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2153), [sym_html_comment] = ACTIONS(5), }, [972] = { - [sym_statement_block] = STATE(1291), [sym_comment] = STATE(972), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_finally] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_global] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, [973] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(973), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym__automatic_semicolon] = ACTIONS(3165), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [974] = { [sym_comment] = STATE(974), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3184), [sym_html_comment] = ACTIONS(5), }, [975] = { - [sym_else_clause] = STATE(1108), + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(975), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1394), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [976] = { [sym_comment] = STATE(976), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [sym__automatic_semicolon] = ACTIONS(2186), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_global] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, [977] = { [sym_comment] = STATE(977), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2144), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3190), [sym_html_comment] = ACTIONS(5), }, [978] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(978), - [sym_identifier] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_with] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_debugger] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_finally] = ACTIONS(3171), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_LTtemplate_GT] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_function] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_void] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3171), - [sym_number] = ACTIONS(3171), - [sym_private_property_identifier] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_null] = ACTIONS(3171), - [sym_undefined] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_get] = ACTIONS(3171), - [anon_sym_set] = ACTIONS(3171), - [anon_sym_declare] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_any] = ACTIONS(3171), - [anon_sym_number] = ACTIONS(3171), - [anon_sym_boolean] = ACTIONS(3171), - [anon_sym_string] = ACTIONS(3171), - [anon_sym_symbol] = ACTIONS(3171), - [anon_sym_object] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [979] = { [sym_comment] = STATE(979), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_finally] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3173), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [sym__automatic_semicolon] = ACTIONS(2331), [sym_html_comment] = ACTIONS(5), }, [980] = { [sym_comment] = STATE(980), - [sym_identifier] = ACTIONS(3175), - [anon_sym_export] = ACTIONS(3175), - [anon_sym_default] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_with] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_debugger] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_finally] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_LTtemplate_GT] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_void] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3175), - [sym_number] = ACTIONS(3175), - [sym_private_property_identifier] = ACTIONS(3175), - [sym_this] = ACTIONS(3175), - [sym_super] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3175), - [anon_sym_set] = ACTIONS(3175), - [anon_sym_declare] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_module] = ACTIONS(3175), - [anon_sym_any] = ACTIONS(3175), - [anon_sym_number] = ACTIONS(3175), - [anon_sym_boolean] = ACTIONS(3175), - [anon_sym_string] = ACTIONS(3175), - [anon_sym_symbol] = ACTIONS(3175), - [anon_sym_object] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), + [sym_identifier] = ACTIONS(2243), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_var] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_else] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_debugger] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_case] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_function] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_using] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_void] = ACTIONS(2243), + [anon_sym_delete] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [sym_private_property_identifier] = ACTIONS(2243), + [sym_this] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_null] = ACTIONS(2243), + [sym_undefined] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [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_abstract] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_interface] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2247), [sym_html_comment] = ACTIONS(5), }, [981] = { [sym_comment] = STATE(981), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, [982] = { [sym_comment] = STATE(982), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_default] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_with] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_debugger] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_case] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LTtemplate_GT] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2214), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_private_property_identifier] = ACTIONS(2214), - [sym_this] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_readonly] = ACTIONS(2214), - [anon_sym_get] = ACTIONS(2214), - [anon_sym_set] = ACTIONS(2214), - [anon_sym_declare] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_protected] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_any] = ACTIONS(2214), - [anon_sym_number] = ACTIONS(2214), - [anon_sym_boolean] = ACTIONS(2214), - [anon_sym_string] = ACTIONS(2214), - [anon_sym_symbol] = ACTIONS(2214), - [anon_sym_object] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [sym__automatic_semicolon] = ACTIONS(2218), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_global] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, [983] = { + [sym_statement_block] = STATE(1193), [sym_comment] = STATE(983), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_namespace] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_with] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_debugger] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LTtemplate_GT] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2222), - [anon_sym_delete] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_private_property_identifier] = ACTIONS(2222), - [sym_this] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_undefined] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_readonly] = ACTIONS(2222), - [anon_sym_get] = ACTIONS(2222), - [anon_sym_set] = ACTIONS(2222), - [anon_sym_declare] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_protected] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_any] = ACTIONS(2222), - [anon_sym_number] = ACTIONS(2222), - [anon_sym_boolean] = ACTIONS(2222), - [anon_sym_string] = ACTIONS(2222), - [anon_sym_symbol] = ACTIONS(2222), - [anon_sym_object] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [sym__automatic_semicolon] = ACTIONS(2226), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [984] = { - [sym_statement_block] = STATE(1404), + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(984), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [985] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(985), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LTtemplate_GT] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2284), - [sym_number] = ACTIONS(2284), - [sym_private_property_identifier] = ACTIONS(2284), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_object] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2288), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1398), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [986] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(986), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_finally] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3181), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [987] = { [sym_comment] = STATE(987), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_case] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LTtemplate_GT] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2276), - [sym_number] = ACTIONS(2276), - [sym_private_property_identifier] = ACTIONS(2276), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_object] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_default] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_case] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_global] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, [988] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(988), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2242), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [989] = { + [sym_statement_block] = STATE(1460), [sym_comment] = STATE(989), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3183), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [990] = { [sym_comment] = STATE(990), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3185), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [991] = { [sym_comment] = STATE(991), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_case] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [sym__automatic_semicolon] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_var] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_else] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_debugger] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_case] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2161), + [anon_sym_delete] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_number] = ACTIONS(2161), + [sym_private_property_identifier] = ACTIONS(2161), + [sym_this] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [sym_undefined] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_get] = ACTIONS(2161), + [anon_sym_set] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_private] = ACTIONS(2161), + [anon_sym_protected] = ACTIONS(2161), + [anon_sym_override] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_any] = ACTIONS(2161), + [anon_sym_number] = ACTIONS(2161), + [anon_sym_boolean] = ACTIONS(2161), + [anon_sym_string] = ACTIONS(2161), + [anon_sym_symbol] = ACTIONS(2161), + [anon_sym_object] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym__automatic_semicolon] = ACTIONS(2165), [sym_html_comment] = ACTIONS(5), }, [992] = { [sym_comment] = STATE(992), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_namespace] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_var] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_switch] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_debugger] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_throw] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_case] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_using] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2263), + [anon_sym_delete] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_private_property_identifier] = ACTIONS(2263), + [sym_this] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_undefined] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_get] = ACTIONS(2263), + [anon_sym_set] = ACTIONS(2263), + [anon_sym_declare] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_private] = ACTIONS(2263), + [anon_sym_protected] = ACTIONS(2263), + [anon_sym_override] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_any] = ACTIONS(2263), + [anon_sym_number] = ACTIONS(2263), + [anon_sym_boolean] = ACTIONS(2263), + [anon_sym_string] = ACTIONS(2263), + [anon_sym_symbol] = ACTIONS(2263), + [anon_sym_object] = ACTIONS(2263), + [anon_sym_abstract] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_interface] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [sym__automatic_semicolon] = ACTIONS(2267), [sym_html_comment] = ACTIONS(5), }, [993] = { - [sym_statement_block] = STATE(1404), [sym_comment] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3206), [sym_html_comment] = ACTIONS(5), }, [994] = { [sym_comment] = STATE(994), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_namespace] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_typeof] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_with] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_else] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_debugger] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_case] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LTtemplate_GT] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2268), - [anon_sym_void] = ACTIONS(2268), - [anon_sym_delete] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2268), - [sym_number] = ACTIONS(2268), - [sym_private_property_identifier] = ACTIONS(2268), - [sym_this] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_readonly] = ACTIONS(2268), - [anon_sym_get] = ACTIONS(2268), - [anon_sym_set] = ACTIONS(2268), - [anon_sym_declare] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_protected] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_any] = ACTIONS(2268), - [anon_sym_number] = ACTIONS(2268), - [anon_sym_boolean] = ACTIONS(2268), - [anon_sym_string] = ACTIONS(2268), - [anon_sym_symbol] = ACTIONS(2268), - [anon_sym_object] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [sym__automatic_semicolon] = ACTIONS(2272), + [sym_identifier] = ACTIONS(2229), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_debugger] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_case] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LTtemplate_GT] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_number] = ACTIONS(2229), + [sym_private_property_identifier] = ACTIONS(2229), + [sym_this] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_undefined] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_global] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, [995] = { - [sym_else_clause] = STATE(1277), [sym_comment] = STATE(995), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), [sym_html_comment] = ACTIONS(5), }, [996] = { - [sym_finally_clause] = STATE(1364), [sym_comment] = STATE(996), - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3157), - [anon_sym_export] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_namespace] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_typeof] = ACTIONS(3157), - [anon_sym_import] = ACTIONS(3157), - [anon_sym_with] = ACTIONS(3157), - [anon_sym_var] = ACTIONS(3157), - [anon_sym_let] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_else] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_switch] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_await] = ACTIONS(3157), - [anon_sym_while] = ACTIONS(3157), - [anon_sym_do] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_debugger] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_throw] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_finally] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_LTtemplate_GT] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3157), - [anon_sym_class] = ACTIONS(3157), - [anon_sym_async] = ACTIONS(3157), - [anon_sym_function] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3157), - [anon_sym_using] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_void] = ACTIONS(3157), - [anon_sym_delete] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3157), - [sym_number] = ACTIONS(3157), - [sym_private_property_identifier] = ACTIONS(3157), - [sym_this] = ACTIONS(3157), - [sym_super] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_null] = ACTIONS(3157), - [sym_undefined] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_static] = ACTIONS(3157), - [anon_sym_readonly] = ACTIONS(3157), - [anon_sym_get] = ACTIONS(3157), - [anon_sym_set] = ACTIONS(3157), - [anon_sym_declare] = ACTIONS(3157), - [anon_sym_public] = ACTIONS(3157), - [anon_sym_private] = ACTIONS(3157), - [anon_sym_protected] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3157), - [anon_sym_module] = ACTIONS(3157), - [anon_sym_any] = ACTIONS(3157), - [anon_sym_number] = ACTIONS(3157), - [anon_sym_boolean] = ACTIONS(3157), - [anon_sym_string] = ACTIONS(3157), - [anon_sym_symbol] = ACTIONS(3157), - [anon_sym_object] = ACTIONS(3157), - [anon_sym_abstract] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_var] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_debugger] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_private_property_identifier] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_undefined] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_abstract] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [sym__automatic_semicolon] = ACTIONS(2311), [sym_html_comment] = ACTIONS(5), }, [997] = { - [sym_statement_block] = STATE(1124), [sym_comment] = STATE(997), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_case] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LTtemplate_GT] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = 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), + [sym_number] = ACTIONS(2289), + [sym_private_property_identifier] = ACTIONS(2289), + [sym_this] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [sym_undefined] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_override] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_object] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2293), [sym_html_comment] = ACTIONS(5), }, [998] = { [sym_comment] = STATE(998), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym_import] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_debugger] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LTtemplate_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_function] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_number] = ACTIONS(3193), - [sym_private_property_identifier] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [sym_super] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_undefined] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [999] = { [sym_comment] = STATE(999), - [sym_identifier] = ACTIONS(3195), - [anon_sym_export] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_typeof] = ACTIONS(3195), - [anon_sym_import] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3195), - [anon_sym_var] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_debugger] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_case] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_LTtemplate_GT] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_void] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3195), - [sym_number] = ACTIONS(3195), - [sym_private_property_identifier] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), - [sym_super] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_null] = ACTIONS(3195), - [sym_undefined] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3195), - [anon_sym_set] = ACTIONS(3195), - [anon_sym_declare] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_override] = ACTIONS(3195), - [anon_sym_module] = ACTIONS(3195), - [anon_sym_any] = ACTIONS(3195), - [anon_sym_number] = ACTIONS(3195), - [anon_sym_boolean] = ACTIONS(3195), - [anon_sym_string] = ACTIONS(3195), - [anon_sym_symbol] = ACTIONS(3195), - [anon_sym_object] = ACTIONS(3195), - [anon_sym_abstract] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3199), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_debugger] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LTtemplate_GT] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_SLASH] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_undefined] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_get] = ACTIONS(2317), + [anon_sym_set] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_override] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_any] = ACTIONS(2317), + [anon_sym_number] = ACTIONS(2317), + [anon_sym_boolean] = ACTIONS(2317), + [anon_sym_string] = ACTIONS(2317), + [anon_sym_symbol] = ACTIONS(2317), + [anon_sym_object] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [sym__automatic_semicolon] = ACTIONS(2321), [sym_html_comment] = ACTIONS(5), }, [1000] = { [sym_comment] = STATE(1000), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2273), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_debugger] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_case] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LTtemplate_GT] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_number] = ACTIONS(2273), + [sym_private_property_identifier] = ACTIONS(2273), + [sym_this] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_get] = ACTIONS(2273), + [anon_sym_set] = ACTIONS(2273), + [anon_sym_declare] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_private] = ACTIONS(2273), + [anon_sym_protected] = ACTIONS(2273), + [anon_sym_override] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_any] = ACTIONS(2273), + [anon_sym_number] = ACTIONS(2273), + [anon_sym_boolean] = ACTIONS(2273), + [anon_sym_string] = ACTIONS(2273), + [anon_sym_symbol] = ACTIONS(2273), + [anon_sym_object] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [sym__automatic_semicolon] = ACTIONS(2277), [sym_html_comment] = ACTIONS(5), }, [1001] = { [sym_comment] = STATE(1001), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3201), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_catch] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3208), [sym_html_comment] = ACTIONS(5), }, [1002] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(1002), - [sym_identifier] = ACTIONS(2164), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_namespace] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_with] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_else] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_do] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_debugger] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_case] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LTtemplate_GT] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_void] = ACTIONS(2164), - [anon_sym_delete] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_number] = ACTIONS(2164), - [sym_private_property_identifier] = ACTIONS(2164), - [sym_this] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2168), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1003] = { + [sym_statement_block] = STATE(1366), [sym_comment] = STATE(1003), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2300), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [1004] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(1004), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3203), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1005] = { + [sym__call_signature] = STATE(7093), [sym_comment] = STATE(1005), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_formal_parameters] = STATE(4812), + [sym_type_parameters] = STATE(6366), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_override] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_object] = ACTIONS(3064), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1006] = { + [sym_statement_block] = STATE(1366), [sym_comment] = STATE(1006), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_finally] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [1007] = { [sym_comment] = STATE(1007), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [1008] = { [sym_comment] = STATE(1008), - [sym_identifier] = ACTIONS(3205), - [anon_sym_export] = ACTIONS(3205), - [anon_sym_default] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym_import] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_else] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_debugger] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_case] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_LTtemplate_GT] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_function] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_void] = ACTIONS(3205), - [anon_sym_delete] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3205), - [sym_number] = ACTIONS(3205), - [sym_private_property_identifier] = ACTIONS(3205), - [sym_this] = ACTIONS(3205), - [sym_super] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_null] = ACTIONS(3205), - [sym_undefined] = ACTIONS(3205), - [anon_sym_AT] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_get] = ACTIONS(3205), - [anon_sym_set] = ACTIONS(3205), - [anon_sym_declare] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_module] = ACTIONS(3205), - [anon_sym_any] = ACTIONS(3205), - [anon_sym_number] = ACTIONS(3205), - [anon_sym_boolean] = ACTIONS(3205), - [anon_sym_string] = ACTIONS(3205), - [anon_sym_symbol] = ACTIONS(3205), - [anon_sym_object] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [sym__automatic_semicolon] = ACTIONS(3207), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, [1009] = { [sym_comment] = STATE(1009), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LTtemplate_GT] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_private_property_identifier] = ACTIONS(2156), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [sym__automatic_semicolon] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3218), [sym_html_comment] = ACTIONS(5), }, [1010] = { - [sym_statement_block] = STATE(1291), + [sym_finally_clause] = STATE(1459), [sym_comment] = STATE(1010), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_finally] = ACTIONS(3130), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_global] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, [1011] = { [sym_comment] = STATE(1011), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_typeof] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_with] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_else] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_debugger] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_case] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LTtemplate_GT] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_void] = ACTIONS(2192), - [anon_sym_delete] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [sym_private_property_identifier] = ACTIONS(2192), - [sym_this] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_undefined] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_case] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_private_property_identifier] = ACTIONS(2335), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2339), [sym_html_comment] = ACTIONS(5), }, [1012] = { [sym_comment] = STATE(1012), - [sym_identifier] = ACTIONS(2230), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2230), - [anon_sym_import] = ACTIONS(2230), - [anon_sym_with] = ACTIONS(2230), - [anon_sym_var] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LTtemplate_GT] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_private_property_identifier] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_undefined] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2234), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1013] = { [sym_comment] = STATE(1013), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_else] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_else] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_case] = ACTIONS(3220), + [anon_sym_finally] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_global] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, [1014] = { [sym_comment] = STATE(1014), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_catch] = ACTIONS(2184), - [anon_sym_finally] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_case] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [sym__automatic_semicolon] = ACTIONS(2189), [sym_html_comment] = ACTIONS(5), }, [1015] = { [sym_comment] = STATE(1015), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_catch] = ACTIONS(2184), - [anon_sym_finally] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [1016] = { - [sym_finally_clause] = STATE(1283), [sym_comment] = STATE(1016), - [sym_identifier] = ACTIONS(3157), - [anon_sym_export] = ACTIONS(3157), - [anon_sym_default] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_namespace] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_typeof] = ACTIONS(3157), - [anon_sym_import] = ACTIONS(3157), - [anon_sym_with] = ACTIONS(3157), - [anon_sym_var] = ACTIONS(3157), - [anon_sym_let] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_switch] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_await] = ACTIONS(3157), - [anon_sym_while] = ACTIONS(3157), - [anon_sym_do] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_debugger] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_throw] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_case] = ACTIONS(3157), - [anon_sym_finally] = ACTIONS(3115), - [anon_sym_yield] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_LTtemplate_GT] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3157), - [anon_sym_class] = ACTIONS(3157), - [anon_sym_async] = ACTIONS(3157), - [anon_sym_function] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3157), - [anon_sym_using] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_void] = ACTIONS(3157), - [anon_sym_delete] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3157), - [sym_number] = ACTIONS(3157), - [sym_private_property_identifier] = ACTIONS(3157), - [sym_this] = ACTIONS(3157), - [sym_super] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_null] = ACTIONS(3157), - [sym_undefined] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_static] = ACTIONS(3157), - [anon_sym_readonly] = ACTIONS(3157), - [anon_sym_get] = ACTIONS(3157), - [anon_sym_set] = ACTIONS(3157), - [anon_sym_declare] = ACTIONS(3157), - [anon_sym_public] = ACTIONS(3157), - [anon_sym_private] = ACTIONS(3157), - [anon_sym_protected] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3157), - [anon_sym_module] = ACTIONS(3157), - [anon_sym_any] = ACTIONS(3157), - [anon_sym_number] = ACTIONS(3157), - [anon_sym_boolean] = ACTIONS(3157), - [anon_sym_string] = ACTIONS(3157), - [anon_sym_symbol] = ACTIONS(3157), - [anon_sym_object] = ACTIONS(3157), - [anon_sym_abstract] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_debugger] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_case] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LTtemplate_GT] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_SLASH] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_number] = ACTIONS(2281), + [sym_private_property_identifier] = ACTIONS(2281), + [sym_this] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_null] = ACTIONS(2281), + [sym_undefined] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_get] = ACTIONS(2281), + [anon_sym_set] = ACTIONS(2281), + [anon_sym_declare] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_private] = ACTIONS(2281), + [anon_sym_protected] = ACTIONS(2281), + [anon_sym_override] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_any] = ACTIONS(2281), + [anon_sym_number] = ACTIONS(2281), + [anon_sym_boolean] = ACTIONS(2281), + [anon_sym_string] = ACTIONS(2281), + [anon_sym_symbol] = ACTIONS(2281), + [anon_sym_object] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [sym__automatic_semicolon] = ACTIONS(2285), [sym_html_comment] = ACTIONS(5), }, [1017] = { + [sym_else_clause] = STATE(1074), [sym_comment] = STATE(1017), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_catch] = ACTIONS(2138), - [anon_sym_finally] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3211), + [sym_identifier] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3176), + [anon_sym_var] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_debugger] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LTtemplate_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_private_property_identifier] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3176), + [anon_sym_set] = ACTIONS(3176), + [anon_sym_declare] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_override] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_any] = ACTIONS(3176), + [anon_sym_number] = ACTIONS(3176), + [anon_sym_boolean] = ACTIONS(3176), + [anon_sym_string] = ACTIONS(3176), + [anon_sym_symbol] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3176), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_global] = ACTIONS(3176), + [anon_sym_interface] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, [1018] = { [sym_comment] = STATE(1018), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3213), + [sym_identifier] = ACTIONS(2253), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_debugger] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_case] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LTtemplate_GT] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2253), + [sym_number] = ACTIONS(2253), + [sym_private_property_identifier] = ACTIONS(2253), + [sym_this] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_null] = ACTIONS(2253), + [sym_undefined] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [sym__automatic_semicolon] = ACTIONS(2257), [sym_html_comment] = ACTIONS(5), }, [1019] = { [sym_comment] = STATE(1019), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3215), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, [1020] = { [sym_comment] = STATE(1020), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2430), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1021] = { [sym_comment] = STATE(1021), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_global] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, [1022] = { [sym_comment] = STATE(1022), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_global] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, [1023] = { [sym_comment] = STATE(1023), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_global] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, [1024] = { [sym_comment] = STATE(1024), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_namespace] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_typeof] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_with] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_debugger] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_case] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LTtemplate_GT] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2268), - [anon_sym_void] = ACTIONS(2268), - [anon_sym_delete] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2268), - [sym_number] = ACTIONS(2268), - [sym_private_property_identifier] = ACTIONS(2268), - [sym_this] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_readonly] = ACTIONS(2268), - [anon_sym_get] = ACTIONS(2268), - [anon_sym_set] = ACTIONS(2268), - [anon_sym_declare] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_protected] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_any] = ACTIONS(2268), - [anon_sym_number] = ACTIONS(2268), - [anon_sym_boolean] = ACTIONS(2268), - [anon_sym_string] = ACTIONS(2268), - [anon_sym_symbol] = ACTIONS(2268), - [anon_sym_object] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [sym__automatic_semicolon] = ACTIONS(2416), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_default] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_case] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_global] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, [1025] = { [sym_comment] = STATE(1025), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_default] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_else] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_module] = ACTIONS(3221), - [anon_sym_any] = ACTIONS(3221), - [anon_sym_number] = ACTIONS(3221), - [anon_sym_boolean] = ACTIONS(3221), - [anon_sym_string] = ACTIONS(3221), - [anon_sym_symbol] = ACTIONS(3221), - [anon_sym_object] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_global] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, [1026] = { [sym_comment] = STATE(1026), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [1027] = { [sym_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [sym__automatic_semicolon] = ACTIONS(2202), + [sym_identifier] = ACTIONS(3236), + [anon_sym_export] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3236), + [anon_sym_import] = ACTIONS(3236), + [anon_sym_with] = ACTIONS(3236), + [anon_sym_var] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_debugger] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LTtemplate_GT] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_function] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_private_property_identifier] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [sym_null] = ACTIONS(3236), + [sym_undefined] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_readonly] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_declare] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_module] = ACTIONS(3236), + [anon_sym_any] = ACTIONS(3236), + [anon_sym_number] = ACTIONS(3236), + [anon_sym_boolean] = ACTIONS(3236), + [anon_sym_string] = ACTIONS(3236), + [anon_sym_symbol] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_global] = ACTIONS(3236), + [anon_sym_interface] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, [1028] = { [sym_comment] = STATE(1028), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_default] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3238), [sym_html_comment] = ACTIONS(5), }, [1029] = { [sym_comment] = STATE(1029), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1030] = { [sym_comment] = STATE(1030), - [sym_identifier] = ACTIONS(3229), - [anon_sym_export] = ACTIONS(3229), - [anon_sym_default] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_debugger] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_LTtemplate_GT] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_function] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3229), - [anon_sym_delete] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3229), - [sym_number] = ACTIONS(3229), - [sym_private_property_identifier] = ACTIONS(3229), - [sym_this] = ACTIONS(3229), - [sym_super] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [sym_undefined] = ACTIONS(3229), - [anon_sym_AT] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_get] = ACTIONS(3229), - [anon_sym_set] = ACTIONS(3229), - [anon_sym_declare] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_module] = ACTIONS(3229), - [anon_sym_any] = ACTIONS(3229), - [anon_sym_number] = ACTIONS(3229), - [anon_sym_boolean] = ACTIONS(3229), - [anon_sym_string] = ACTIONS(3229), - [anon_sym_symbol] = ACTIONS(3229), - [anon_sym_object] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_global] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, [1031] = { [sym_comment] = STATE(1031), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3240), + [anon_sym_export] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3240), + [anon_sym_import] = ACTIONS(3240), + [anon_sym_with] = ACTIONS(3240), + [anon_sym_var] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_debugger] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LTtemplate_GT] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_function] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_private_property_identifier] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_undefined] = ACTIONS(3240), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_readonly] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3240), + [anon_sym_set] = ACTIONS(3240), + [anon_sym_declare] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_override] = ACTIONS(3240), + [anon_sym_module] = ACTIONS(3240), + [anon_sym_any] = ACTIONS(3240), + [anon_sym_number] = ACTIONS(3240), + [anon_sym_boolean] = ACTIONS(3240), + [anon_sym_string] = ACTIONS(3240), + [anon_sym_symbol] = ACTIONS(3240), + [anon_sym_object] = ACTIONS(3240), + [anon_sym_abstract] = ACTIONS(3240), + [anon_sym_global] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), [sym_html_comment] = ACTIONS(5), }, [1032] = { [sym_comment] = STATE(1032), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_global] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, [1033] = { [sym_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), + [sym_identifier] = ACTIONS(3244), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3244), + [anon_sym_import] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_var] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_debugger] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LTtemplate_GT] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_private_property_identifier] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_undefined] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_readonly] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_declare] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_any] = ACTIONS(3244), + [anon_sym_number] = ACTIONS(3244), + [anon_sym_boolean] = ACTIONS(3244), + [anon_sym_string] = ACTIONS(3244), + [anon_sym_symbol] = ACTIONS(3244), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_abstract] = ACTIONS(3244), + [anon_sym_global] = ACTIONS(3244), + [anon_sym_interface] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), [sym_html_comment] = ACTIONS(5), }, [1034] = { [sym_comment] = STATE(1034), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LTtemplate_GT] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3246), + [sym_number] = ACTIONS(3246), + [sym_private_property_identifier] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_object] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_global] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), [sym_html_comment] = ACTIONS(5), }, [1035] = { [sym_comment] = STATE(1035), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_global] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, [1036] = { [sym_comment] = STATE(1036), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_default] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_with] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_else] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_debugger] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_case] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_LTtemplate_GT] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_void] = ACTIONS(3237), - [anon_sym_delete] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3237), - [sym_number] = ACTIONS(3237), - [sym_private_property_identifier] = ACTIONS(3237), - [sym_this] = ACTIONS(3237), - [sym_super] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_null] = ACTIONS(3237), - [sym_undefined] = ACTIONS(3237), - [anon_sym_AT] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_default] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_case] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_global] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, [1037] = { [sym_comment] = STATE(1037), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1038] = { [sym_comment] = STATE(1038), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_default] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_case] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_global] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, [1039] = { [sym_comment] = STATE(1039), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_else] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3243), - [anon_sym_any] = ACTIONS(3243), - [anon_sym_number] = ACTIONS(3243), - [anon_sym_boolean] = ACTIONS(3243), - [anon_sym_string] = ACTIONS(3243), - [anon_sym_symbol] = ACTIONS(3243), - [anon_sym_object] = ACTIONS(3243), - [anon_sym_abstract] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [1040] = { [sym_comment] = STATE(1040), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3256), [sym_html_comment] = ACTIONS(5), }, [1041] = { [sym_comment] = STATE(1041), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_else] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym_html_comment] = ACTIONS(5), }, [1042] = { [sym_comment] = STATE(1042), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_case] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym_html_comment] = ACTIONS(5), }, [1043] = { [sym_comment] = STATE(1043), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_else] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), + [ts_builtin_sym_end] = ACTIONS(3202), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_global] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, [1044] = { [sym_comment] = STATE(1044), - [sym_identifier] = ACTIONS(3251), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_typeof] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_with] = ACTIONS(3251), - [anon_sym_var] = ACTIONS(3251), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_else] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_await] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LTtemplate_GT] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_async] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_number] = ACTIONS(3251), - [sym_private_property_identifier] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - [sym_super] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [anon_sym_AT] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3251), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_declare] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_override] = ACTIONS(3251), - [anon_sym_module] = ACTIONS(3251), - [anon_sym_any] = ACTIONS(3251), - [anon_sym_number] = ACTIONS(3251), - [anon_sym_boolean] = ACTIONS(3251), - [anon_sym_string] = ACTIONS(3251), - [anon_sym_symbol] = ACTIONS(3251), - [anon_sym_object] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_global] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, [1045] = { [sym_comment] = STATE(1045), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2230), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2230), - [anon_sym_import] = ACTIONS(2230), - [anon_sym_with] = ACTIONS(2230), - [anon_sym_var] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LTtemplate_GT] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_private_property_identifier] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_undefined] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2360), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_default] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_else] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_case] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_global] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, [1046] = { [sym_comment] = STATE(1046), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym_import] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_debugger] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LTtemplate_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_function] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_number] = ACTIONS(3193), - [sym_private_property_identifier] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [sym_super] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_undefined] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), + [sym_identifier] = ACTIONS(2243), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_var] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_debugger] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_case] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_function] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_using] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_void] = ACTIONS(2243), + [anon_sym_delete] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [sym_private_property_identifier] = ACTIONS(2243), + [sym_this] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_null] = ACTIONS(2243), + [sym_undefined] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [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_abstract] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_interface] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2457), [sym_html_comment] = ACTIONS(5), }, [1047] = { [sym_comment] = STATE(1047), - [sym_identifier] = ACTIONS(3195), - [anon_sym_export] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_typeof] = ACTIONS(3195), - [anon_sym_import] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3195), - [anon_sym_var] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_debugger] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_LTtemplate_GT] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_void] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3195), - [sym_number] = ACTIONS(3195), - [sym_private_property_identifier] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), - [sym_super] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_null] = ACTIONS(3195), - [sym_undefined] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3195), - [anon_sym_set] = ACTIONS(3195), - [anon_sym_declare] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_override] = ACTIONS(3195), - [anon_sym_module] = ACTIONS(3195), - [anon_sym_any] = ACTIONS(3195), - [anon_sym_number] = ACTIONS(3195), - [anon_sym_boolean] = ACTIONS(3195), - [anon_sym_string] = ACTIONS(3195), - [anon_sym_symbol] = ACTIONS(3195), - [anon_sym_object] = ACTIONS(3195), - [anon_sym_abstract] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3255), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, [1048] = { [sym_comment] = STATE(1048), - [sym_identifier] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym_import] = ACTIONS(3257), - [anon_sym_with] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_else] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_debugger] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_LTtemplate_GT] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_function] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3257), - [sym_number] = ACTIONS(3257), - [sym_private_property_identifier] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [sym_super] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_undefined] = ACTIONS(3257), - [anon_sym_AT] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_get] = ACTIONS(3257), - [anon_sym_set] = ACTIONS(3257), - [anon_sym_declare] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_module] = ACTIONS(3257), - [anon_sym_any] = ACTIONS(3257), - [anon_sym_number] = ACTIONS(3257), - [anon_sym_boolean] = ACTIONS(3257), - [anon_sym_string] = ACTIONS(3257), - [anon_sym_symbol] = ACTIONS(3257), - [anon_sym_object] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1049] = { [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_namespace] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_with] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_debugger] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LTtemplate_GT] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2222), - [anon_sym_delete] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_private_property_identifier] = ACTIONS(2222), - [sym_this] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_undefined] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_readonly] = ACTIONS(2222), - [anon_sym_get] = ACTIONS(2222), - [anon_sym_set] = ACTIONS(2222), - [anon_sym_declare] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_protected] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_any] = ACTIONS(2222), - [anon_sym_number] = ACTIONS(2222), - [anon_sym_boolean] = ACTIONS(2222), - [anon_sym_string] = ACTIONS(2222), - [anon_sym_symbol] = ACTIONS(2222), - [anon_sym_object] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [sym__automatic_semicolon] = ACTIONS(2356), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1050] = { [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_with] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_debugger] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LTtemplate_GT] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2214), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_private_property_identifier] = ACTIONS(2214), - [sym_this] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_readonly] = ACTIONS(2214), - [anon_sym_get] = ACTIONS(2214), - [anon_sym_set] = ACTIONS(2214), - [anon_sym_declare] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_protected] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_any] = ACTIONS(2214), - [anon_sym_number] = ACTIONS(2214), - [anon_sym_boolean] = ACTIONS(2214), - [anon_sym_string] = ACTIONS(2214), - [anon_sym_symbol] = ACTIONS(2214), - [anon_sym_object] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [sym__automatic_semicolon] = ACTIONS(2320), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LTtemplate_GT] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3262), + [sym_number] = ACTIONS(3262), + [sym_private_property_identifier] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_object] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_global] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), [sym_html_comment] = ACTIONS(5), }, [1051] = { [sym_comment] = STATE(1051), - [sym_identifier] = ACTIONS(3259), - [anon_sym_export] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_typeof] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_with] = ACTIONS(3259), - [anon_sym_var] = ACTIONS(3259), - [anon_sym_let] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_else] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_await] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_debugger] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LTtemplate_GT] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_function] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3259), - [sym_number] = ACTIONS(3259), - [sym_private_property_identifier] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - [sym_super] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_null] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [anon_sym_AT] = ACTIONS(3259), - [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_abstract] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2233), [sym_html_comment] = ACTIONS(5), }, [1052] = { [sym_comment] = STATE(1052), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2164), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_namespace] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_with] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_else] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_do] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_debugger] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LTtemplate_GT] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_void] = ACTIONS(2164), - [anon_sym_delete] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_number] = ACTIONS(2164), - [sym_private_property_identifier] = ACTIONS(2164), - [sym_this] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2350), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1053] = { - [sym_statement_block] = STATE(1291), [sym_comment] = STATE(1053), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_default] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_case] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_global] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, [1054] = { [sym_comment] = STATE(1054), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LTtemplate_GT] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3266), + [sym_number] = ACTIONS(3266), + [sym_private_property_identifier] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_global] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, [1055] = { [sym_comment] = STATE(1055), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_global] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, [1056] = { [sym_comment] = STATE(1056), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3261), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LTtemplate_GT] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3270), + [sym_number] = ACTIONS(3270), + [sym_private_property_identifier] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_global] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1057] = { [sym_comment] = STATE(1057), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_global] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1058] = { [sym_comment] = STATE(1058), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3263), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_global] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, [1059] = { [sym_comment] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LTtemplate_GT] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_private_property_identifier] = ACTIONS(2156), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [sym__automatic_semicolon] = ACTIONS(2346), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_debugger] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_case] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LTtemplate_GT] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_private_property_identifier] = ACTIONS(3276), + [sym_this] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [sym_null] = ACTIONS(3276), + [sym_undefined] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_readonly] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3276), + [anon_sym_set] = ACTIONS(3276), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_protected] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_global] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1060] = { [sym_comment] = STATE(1060), - [sym_identifier] = ACTIONS(3265), - [anon_sym_export] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_type] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_typeof] = ACTIONS(3265), - [anon_sym_import] = ACTIONS(3265), - [anon_sym_with] = ACTIONS(3265), - [anon_sym_var] = ACTIONS(3265), - [anon_sym_let] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_else] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_await] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_debugger] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym_case] = ACTIONS(3265), - [anon_sym_yield] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LTtemplate_GT] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_async] = ACTIONS(3265), - [anon_sym_function] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_void] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3265), - [sym_number] = ACTIONS(3265), - [sym_private_property_identifier] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [sym_super] = ACTIONS(3265), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [sym_null] = ACTIONS(3265), - [sym_undefined] = ACTIONS(3265), - [anon_sym_AT] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3265), - [anon_sym_set] = ACTIONS(3265), - [anon_sym_declare] = ACTIONS(3265), - [anon_sym_public] = ACTIONS(3265), - [anon_sym_private] = ACTIONS(3265), - [anon_sym_protected] = ACTIONS(3265), - [anon_sym_override] = ACTIONS(3265), - [anon_sym_module] = ACTIONS(3265), - [anon_sym_any] = ACTIONS(3265), - [anon_sym_number] = ACTIONS(3265), - [anon_sym_boolean] = ACTIONS(3265), - [anon_sym_string] = ACTIONS(3265), - [anon_sym_symbol] = ACTIONS(3265), - [anon_sym_object] = ACTIONS(3265), - [anon_sym_abstract] = ACTIONS(3265), - [anon_sym_interface] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_debugger] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_case] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LTtemplate_GT] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_SLASH] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_number] = ACTIONS(2281), + [sym_private_property_identifier] = ACTIONS(2281), + [sym_this] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_null] = ACTIONS(2281), + [sym_undefined] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_get] = ACTIONS(2281), + [anon_sym_set] = ACTIONS(2281), + [anon_sym_declare] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_private] = ACTIONS(2281), + [anon_sym_protected] = ACTIONS(2281), + [anon_sym_override] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_any] = ACTIONS(2281), + [anon_sym_number] = ACTIONS(2281), + [anon_sym_boolean] = ACTIONS(2281), + [anon_sym_string] = ACTIONS(2281), + [anon_sym_symbol] = ACTIONS(2281), + [anon_sym_object] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [sym__automatic_semicolon] = ACTIONS(2367), [sym_html_comment] = ACTIONS(5), }, [1061] = { [sym_comment] = STATE(1061), - [sym_identifier] = ACTIONS(3267), - [anon_sym_export] = ACTIONS(3267), - [anon_sym_default] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_namespace] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_typeof] = ACTIONS(3267), - [anon_sym_import] = ACTIONS(3267), - [anon_sym_with] = ACTIONS(3267), - [anon_sym_var] = ACTIONS(3267), - [anon_sym_let] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_else] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_switch] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_await] = ACTIONS(3267), - [anon_sym_while] = ACTIONS(3267), - [anon_sym_do] = ACTIONS(3267), - [anon_sym_try] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_debugger] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_throw] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_case] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LTtemplate_GT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [anon_sym_SQUOTE] = ACTIONS(3267), - [anon_sym_class] = ACTIONS(3267), - [anon_sym_async] = ACTIONS(3267), - [anon_sym_function] = ACTIONS(3267), - [anon_sym_new] = ACTIONS(3267), - [anon_sym_using] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_void] = ACTIONS(3267), - [anon_sym_delete] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3267), - [sym_number] = ACTIONS(3267), - [sym_private_property_identifier] = ACTIONS(3267), - [sym_this] = ACTIONS(3267), - [sym_super] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_null] = ACTIONS(3267), - [sym_undefined] = ACTIONS(3267), - [anon_sym_AT] = ACTIONS(3267), - [anon_sym_static] = ACTIONS(3267), - [anon_sym_readonly] = ACTIONS(3267), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3267), - [anon_sym_public] = ACTIONS(3267), - [anon_sym_private] = ACTIONS(3267), - [anon_sym_protected] = ACTIONS(3267), - [anon_sym_override] = ACTIONS(3267), - [anon_sym_module] = ACTIONS(3267), - [anon_sym_any] = ACTIONS(3267), - [anon_sym_number] = ACTIONS(3267), - [anon_sym_boolean] = ACTIONS(3267), - [anon_sym_string] = ACTIONS(3267), - [anon_sym_symbol] = ACTIONS(3267), - [anon_sym_object] = ACTIONS(3267), - [anon_sym_abstract] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LTtemplate_GT] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3278), + [sym_number] = ACTIONS(3278), + [sym_private_property_identifier] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_global] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), [sym_html_comment] = ACTIONS(5), }, [1062] = { [sym_comment] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3269), + [sym_identifier] = ACTIONS(3280), + [anon_sym_export] = ACTIONS(3280), + [anon_sym_default] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_namespace] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_with] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_else] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_debugger] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_case] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LTtemplate_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_undefined] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_readonly] = ACTIONS(3280), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_protected] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_module] = ACTIONS(3280), + [anon_sym_any] = ACTIONS(3280), + [anon_sym_number] = ACTIONS(3280), + [anon_sym_boolean] = ACTIONS(3280), + [anon_sym_string] = ACTIONS(3280), + [anon_sym_symbol] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_global] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), [sym_html_comment] = ACTIONS(5), }, [1063] = { [sym_comment] = STATE(1063), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_default] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_else] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_case] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LTtemplate_GT] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3282), + [sym_number] = ACTIONS(3282), + [sym_private_property_identifier] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_override] = ACTIONS(3282), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_object] = ACTIONS(3282), + [anon_sym_abstract] = ACTIONS(3282), + [anon_sym_global] = ACTIONS(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), [sym_html_comment] = ACTIONS(5), }, [1064] = { + [sym_statement_block] = STATE(1630), [sym_comment] = STATE(1064), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_else] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_case] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [1065] = { [sym_comment] = STATE(1065), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_default] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_case] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_global] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1066] = { + [sym_else_clause] = STATE(1571), [sym_comment] = STATE(1066), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [ts_builtin_sym_end] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3176), + [anon_sym_var] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_debugger] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LTtemplate_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_private_property_identifier] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3176), + [anon_sym_set] = ACTIONS(3176), + [anon_sym_declare] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_override] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_any] = ACTIONS(3176), + [anon_sym_number] = ACTIONS(3176), + [anon_sym_boolean] = ACTIONS(3176), + [anon_sym_string] = ACTIONS(3176), + [anon_sym_symbol] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3176), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_global] = ACTIONS(3176), + [anon_sym_interface] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, [1067] = { [sym_comment] = STATE(1067), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_default] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_else] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_default] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_else] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_case] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_global] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, [1068] = { - [sym_statement_block] = STATE(1404), + [sym_statement_block] = STATE(1630), [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [1069] = { [sym_comment] = STATE(1069), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_default] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_case] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, [1070] = { [sym_comment] = STATE(1070), - [sym_identifier] = ACTIONS(3283), - [anon_sym_export] = ACTIONS(3283), - [anon_sym_default] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_with] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_debugger] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_case] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_LTtemplate_GT] = ACTIONS(3283), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_function] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_void] = ACTIONS(3283), - [anon_sym_delete] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_number] = ACTIONS(3283), - [sym_private_property_identifier] = ACTIONS(3283), - [sym_this] = ACTIONS(3283), - [sym_super] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_null] = ACTIONS(3283), - [sym_undefined] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_get] = ACTIONS(3283), - [anon_sym_set] = ACTIONS(3283), - [anon_sym_declare] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_module] = ACTIONS(3283), - [anon_sym_any] = ACTIONS(3283), - [anon_sym_number] = ACTIONS(3283), - [anon_sym_boolean] = ACTIONS(3283), - [anon_sym_string] = ACTIONS(3283), - [anon_sym_symbol] = ACTIONS(3283), - [anon_sym_object] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_case] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_global] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, [1071] = { [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_catch] = ACTIONS(2184), - [anon_sym_finally] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_global] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, [1072] = { [sym_comment] = STATE(1072), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), - [anon_sym_abstract] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_global] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), [sym_html_comment] = ACTIONS(5), }, [1073] = { [sym_comment] = STATE(1073), - [ts_builtin_sym_end] = ACTIONS(3287), - [sym_identifier] = ACTIONS(3195), - [anon_sym_export] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_typeof] = ACTIONS(3195), - [anon_sym_import] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3195), - [anon_sym_var] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_debugger] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_LTtemplate_GT] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_void] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3195), - [sym_number] = ACTIONS(3195), - [sym_private_property_identifier] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), - [sym_super] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_null] = ACTIONS(3195), - [sym_undefined] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3195), - [anon_sym_set] = ACTIONS(3195), - [anon_sym_declare] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_override] = ACTIONS(3195), - [anon_sym_module] = ACTIONS(3195), - [anon_sym_any] = ACTIONS(3195), - [anon_sym_number] = ACTIONS(3195), - [anon_sym_boolean] = ACTIONS(3195), - [anon_sym_string] = ACTIONS(3195), - [anon_sym_symbol] = ACTIONS(3195), - [anon_sym_object] = ACTIONS(3195), - [anon_sym_abstract] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3291), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_global] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1074] = { [sym_comment] = STATE(1074), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_default] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_else] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_case] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_global] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, [1075] = { [sym_comment] = STATE(1075), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_default] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_case] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_else] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_global] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, [1076] = { + [sym_statement_block] = STATE(1366), [sym_comment] = STATE(1076), - [sym_identifier] = ACTIONS(3297), - [anon_sym_export] = ACTIONS(3297), - [anon_sym_default] = ACTIONS(3297), - [anon_sym_type] = ACTIONS(3297), - [anon_sym_namespace] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_typeof] = ACTIONS(3297), - [anon_sym_import] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3297), - [anon_sym_const] = ACTIONS(3297), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_else] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3297), - [anon_sym_switch] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_await] = ACTIONS(3297), - [anon_sym_while] = ACTIONS(3297), - [anon_sym_do] = ACTIONS(3297), - [anon_sym_try] = ACTIONS(3297), - [anon_sym_break] = ACTIONS(3297), - [anon_sym_continue] = ACTIONS(3297), - [anon_sym_debugger] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3297), - [anon_sym_throw] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_case] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LTtemplate_GT] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [anon_sym_SQUOTE] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_async] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3297), - [anon_sym_using] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_void] = ACTIONS(3297), - [anon_sym_delete] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3297), - [sym_number] = ACTIONS(3297), - [sym_private_property_identifier] = ACTIONS(3297), - [sym_this] = ACTIONS(3297), - [sym_super] = ACTIONS(3297), - [sym_true] = ACTIONS(3297), - [sym_false] = ACTIONS(3297), - [sym_null] = ACTIONS(3297), - [sym_undefined] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3297), - [anon_sym_set] = ACTIONS(3297), - [anon_sym_declare] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_protected] = ACTIONS(3297), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_any] = ACTIONS(3297), - [anon_sym_number] = ACTIONS(3297), - [anon_sym_boolean] = ACTIONS(3297), - [anon_sym_string] = ACTIONS(3297), - [anon_sym_symbol] = ACTIONS(3297), - [anon_sym_object] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [1077] = { [sym_comment] = STATE(1077), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_default] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_case] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_global] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, [1078] = { [sym_comment] = STATE(1078), - [sym_identifier] = ACTIONS(3301), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_default] = ACTIONS(3301), - [anon_sym_type] = ACTIONS(3301), - [anon_sym_namespace] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_typeof] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_with] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_const] = ACTIONS(3301), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_else] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3301), - [anon_sym_switch] = ACTIONS(3301), - [anon_sym_for] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_await] = ACTIONS(3301), - [anon_sym_while] = ACTIONS(3301), - [anon_sym_do] = ACTIONS(3301), - [anon_sym_try] = ACTIONS(3301), - [anon_sym_break] = ACTIONS(3301), - [anon_sym_continue] = ACTIONS(3301), - [anon_sym_debugger] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3301), - [anon_sym_throw] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_yield] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LTtemplate_GT] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [anon_sym_SQUOTE] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_function] = ACTIONS(3301), - [anon_sym_new] = ACTIONS(3301), - [anon_sym_using] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_void] = ACTIONS(3301), - [anon_sym_delete] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3301), - [sym_number] = ACTIONS(3301), - [sym_private_property_identifier] = ACTIONS(3301), - [sym_this] = ACTIONS(3301), - [sym_super] = ACTIONS(3301), - [sym_true] = ACTIONS(3301), - [sym_false] = ACTIONS(3301), - [sym_null] = ACTIONS(3301), - [sym_undefined] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3301), - [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_abstract] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_global] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, [1079] = { [sym_comment] = STATE(1079), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3303), - [anon_sym_default] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym_import] = ACTIONS(3303), - [anon_sym_with] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_debugger] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_case] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_LTtemplate_GT] = ACTIONS(3303), - [anon_sym_DQUOTE] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_function] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_void] = ACTIONS(3303), - [anon_sym_delete] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3303), - [sym_number] = ACTIONS(3303), - [sym_private_property_identifier] = ACTIONS(3303), - [sym_this] = ACTIONS(3303), - [sym_super] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_undefined] = ACTIONS(3303), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_get] = ACTIONS(3303), - [anon_sym_set] = ACTIONS(3303), - [anon_sym_declare] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_module] = ACTIONS(3303), - [anon_sym_any] = ACTIONS(3303), - [anon_sym_number] = ACTIONS(3303), - [anon_sym_boolean] = ACTIONS(3303), - [anon_sym_string] = ACTIONS(3303), - [anon_sym_symbol] = ACTIONS(3303), - [anon_sym_object] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LTtemplate_GT] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3310), + [sym_number] = ACTIONS(3310), + [sym_private_property_identifier] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_global] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, [1080] = { [sym_comment] = STATE(1080), - [sym_identifier] = ACTIONS(3305), - [anon_sym_export] = ACTIONS(3305), - [anon_sym_default] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_typeof] = ACTIONS(3305), - [anon_sym_import] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_var] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_const] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_switch] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_await] = ACTIONS(3305), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_try] = ACTIONS(3305), - [anon_sym_break] = ACTIONS(3305), - [anon_sym_continue] = ACTIONS(3305), - [anon_sym_debugger] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3305), - [anon_sym_throw] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_case] = ACTIONS(3305), - [anon_sym_yield] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LTtemplate_GT] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_using] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_void] = ACTIONS(3305), - [anon_sym_delete] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3305), - [sym_number] = ACTIONS(3305), - [sym_private_property_identifier] = ACTIONS(3305), - [sym_this] = ACTIONS(3305), - [sym_super] = ACTIONS(3305), - [sym_true] = ACTIONS(3305), - [sym_false] = ACTIONS(3305), - [sym_null] = ACTIONS(3305), - [sym_undefined] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3305), - [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_abstract] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3305), - [anon_sym_enum] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_global] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, [1081] = { [sym_comment] = STATE(1081), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3307), - [anon_sym_default] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_with] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_debugger] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_case] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_LTtemplate_GT] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_function] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3307), - [sym_number] = ACTIONS(3307), - [sym_private_property_identifier] = ACTIONS(3307), - [sym_this] = ACTIONS(3307), - [sym_super] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_null] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [anon_sym_AT] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_get] = ACTIONS(3307), - [anon_sym_set] = ACTIONS(3307), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_case] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_global] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1082] = { [sym_comment] = STATE(1082), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [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_abstract] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1083] = { [sym_comment] = STATE(1083), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_default] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_case] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_with] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_else] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_debugger] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LTtemplate_GT] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_private_property_identifier] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_undefined] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_readonly] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_protected] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_global] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, [1084] = { - [sym_else_clause] = STATE(1592), [sym_comment] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_case] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_global] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, [1085] = { - [sym_finally_clause] = STATE(1565), [sym_comment] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3157), - [anon_sym_export] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_namespace] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_typeof] = ACTIONS(3157), - [anon_sym_import] = ACTIONS(3157), - [anon_sym_with] = ACTIONS(3157), - [anon_sym_var] = ACTIONS(3157), - [anon_sym_let] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_switch] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_await] = ACTIONS(3157), - [anon_sym_while] = ACTIONS(3157), - [anon_sym_do] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_debugger] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_throw] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_finally] = ACTIONS(3151), - [anon_sym_yield] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_LTtemplate_GT] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3157), - [anon_sym_class] = ACTIONS(3157), - [anon_sym_async] = ACTIONS(3157), - [anon_sym_function] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3157), - [anon_sym_using] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_void] = ACTIONS(3157), - [anon_sym_delete] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3157), - [sym_number] = ACTIONS(3157), - [sym_private_property_identifier] = ACTIONS(3157), - [sym_this] = ACTIONS(3157), - [sym_super] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_null] = ACTIONS(3157), - [sym_undefined] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_static] = ACTIONS(3157), - [anon_sym_readonly] = ACTIONS(3157), - [anon_sym_get] = ACTIONS(3157), - [anon_sym_set] = ACTIONS(3157), - [anon_sym_declare] = ACTIONS(3157), - [anon_sym_public] = ACTIONS(3157), - [anon_sym_private] = ACTIONS(3157), - [anon_sym_protected] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3157), - [anon_sym_module] = ACTIONS(3157), - [anon_sym_any] = ACTIONS(3157), - [anon_sym_number] = ACTIONS(3157), - [anon_sym_boolean] = ACTIONS(3157), - [anon_sym_string] = ACTIONS(3157), - [anon_sym_symbol] = ACTIONS(3157), - [anon_sym_object] = ACTIONS(3157), - [anon_sym_abstract] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_global] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, [1086] = { [sym_comment] = STATE(1086), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_case] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LTtemplate_GT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3322), + [sym_number] = ACTIONS(3322), + [sym_private_property_identifier] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_global] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), [sym_html_comment] = ACTIONS(5), }, [1087] = { [sym_comment] = STATE(1087), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2229), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_debugger] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LTtemplate_GT] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_number] = ACTIONS(2229), + [sym_private_property_identifier] = ACTIONS(2229), + [sym_this] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_undefined] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_global] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, [1088] = { [sym_comment] = STATE(1088), - [sym_identifier] = ACTIONS(3321), - [anon_sym_export] = ACTIONS(3321), - [anon_sym_default] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym_import] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_debugger] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_case] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LTtemplate_GT] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_function] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(3321), - [anon_sym_delete] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3321), - [sym_number] = ACTIONS(3321), - [sym_private_property_identifier] = ACTIONS(3321), - [sym_this] = ACTIONS(3321), - [sym_super] = ACTIONS(3321), - [sym_true] = ACTIONS(3321), - [sym_false] = ACTIONS(3321), - [sym_null] = ACTIONS(3321), - [sym_undefined] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_any] = ACTIONS(3321), - [anon_sym_number] = ACTIONS(3321), - [anon_sym_boolean] = ACTIONS(3321), - [anon_sym_string] = ACTIONS(3321), - [anon_sym_symbol] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_global] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, [1089] = { [sym_comment] = STATE(1089), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_case] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LTtemplate_GT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_number] = ACTIONS(3326), + [sym_private_property_identifier] = ACTIONS(3326), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_override] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_object] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_global] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, [1090] = { [sym_comment] = STATE(1090), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2300), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_global] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, [1091] = { [sym_comment] = STATE(1091), - [sym_identifier] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_debugger] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LTtemplate_GT] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_number] = ACTIONS(3325), - [sym_private_property_identifier] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - [sym_super] = ACTIONS(3325), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [sym_null] = ACTIONS(3325), - [sym_undefined] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3325), - [anon_sym_set] = ACTIONS(3325), - [anon_sym_declare] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_any] = ACTIONS(3325), - [anon_sym_number] = ACTIONS(3325), - [anon_sym_boolean] = ACTIONS(3325), - [anon_sym_string] = ACTIONS(3325), - [anon_sym_symbol] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), [sym_html_comment] = ACTIONS(5), }, [1092] = { [sym_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2402), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_default] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_case] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_global] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, [1093] = { + [sym_else_clause] = STATE(1328), [sym_comment] = STATE(1093), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2204), + [ts_builtin_sym_end] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3176), + [anon_sym_var] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_debugger] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LTtemplate_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_private_property_identifier] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3176), + [anon_sym_set] = ACTIONS(3176), + [anon_sym_declare] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_override] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_any] = ACTIONS(3176), + [anon_sym_number] = ACTIONS(3176), + [anon_sym_boolean] = ACTIONS(3176), + [anon_sym_string] = ACTIONS(3176), + [anon_sym_symbol] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3176), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_global] = ACTIONS(3176), + [anon_sym_interface] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, [1094] = { [sym_comment] = STATE(1094), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_global] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, [1095] = { [sym_comment] = STATE(1095), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_else] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LTtemplate_GT] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_private_property_identifier] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_global] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), [sym_html_comment] = ACTIONS(5), }, [1096] = { [sym_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_finally] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_global] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, [1097] = { [sym_comment] = STATE(1097), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_default] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_case] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [1098] = { [sym_comment] = STATE(1098), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_function] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - [sym_super] = ACTIONS(3333), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [sym_null] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [anon_sym_declare] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_any] = ACTIONS(3333), - [anon_sym_number] = ACTIONS(3333), - [anon_sym_boolean] = ACTIONS(3333), - [anon_sym_string] = ACTIONS(3333), - [anon_sym_symbol] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3338), [sym_html_comment] = ACTIONS(5), }, [1099] = { [sym_comment] = STATE(1099), - [sym_identifier] = ACTIONS(3335), - [anon_sym_export] = ACTIONS(3335), - [anon_sym_default] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_namespace] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_typeof] = ACTIONS(3335), - [anon_sym_import] = ACTIONS(3335), - [anon_sym_with] = ACTIONS(3335), - [anon_sym_var] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_switch] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_await] = ACTIONS(3335), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_do] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_debugger] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_throw] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_case] = ACTIONS(3335), - [anon_sym_yield] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3335), - [anon_sym_LTtemplate_GT] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_class] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_function] = ACTIONS(3335), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_using] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_void] = ACTIONS(3335), - [anon_sym_delete] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3335), - [sym_number] = ACTIONS(3335), - [sym_private_property_identifier] = ACTIONS(3335), - [sym_this] = ACTIONS(3335), - [sym_super] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_null] = ACTIONS(3335), - [sym_undefined] = ACTIONS(3335), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_static] = ACTIONS(3335), - [anon_sym_readonly] = ACTIONS(3335), - [anon_sym_get] = ACTIONS(3335), - [anon_sym_set] = ACTIONS(3335), - [anon_sym_declare] = ACTIONS(3335), - [anon_sym_public] = ACTIONS(3335), - [anon_sym_private] = ACTIONS(3335), - [anon_sym_protected] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3335), - [anon_sym_module] = ACTIONS(3335), - [anon_sym_any] = ACTIONS(3335), - [anon_sym_number] = ACTIONS(3335), - [anon_sym_boolean] = ACTIONS(3335), - [anon_sym_string] = ACTIONS(3335), - [anon_sym_symbol] = ACTIONS(3335), - [anon_sym_object] = ACTIONS(3335), - [anon_sym_abstract] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_case] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_global] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, [1100] = { [sym_comment] = STATE(1100), - [sym_identifier] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_debugger] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LTtemplate_GT] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3337), - [sym_number] = ACTIONS(3337), - [sym_private_property_identifier] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - [sym_super] = ACTIONS(3337), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [sym_null] = ACTIONS(3337), - [sym_undefined] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_get] = ACTIONS(3337), - [anon_sym_set] = ACTIONS(3337), - [anon_sym_declare] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_any] = ACTIONS(3337), - [anon_sym_number] = ACTIONS(3337), - [anon_sym_boolean] = ACTIONS(3337), - [anon_sym_string] = ACTIONS(3337), - [anon_sym_symbol] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_global] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, [1101] = { [sym_comment] = STATE(1101), - [sym_identifier] = ACTIONS(3339), - [anon_sym_export] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_debugger] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LTtemplate_GT] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3339), - [sym_number] = ACTIONS(3339), - [sym_private_property_identifier] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [sym_super] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_null] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3339), - [anon_sym_set] = ACTIONS(3339), - [anon_sym_declare] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_module] = ACTIONS(3339), - [anon_sym_any] = ACTIONS(3339), - [anon_sym_number] = ACTIONS(3339), - [anon_sym_boolean] = ACTIONS(3339), - [anon_sym_string] = ACTIONS(3339), - [anon_sym_symbol] = ACTIONS(3339), - [anon_sym_object] = ACTIONS(3339), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3344), [sym_html_comment] = ACTIONS(5), }, [1102] = { [sym_comment] = STATE(1102), - [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_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_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_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_abstract] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [1103] = { [sym_comment] = STATE(1103), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_case] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [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_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_default] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_case] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_global] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, [1104] = { [sym_comment] = STATE(1104), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_case] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [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_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_case] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_global] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, [1105] = { [sym_comment] = STATE(1105), - [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_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_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_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_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_default] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_case] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_global] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, [1106] = { [sym_comment] = STATE(1106), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_case] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3352), [sym_html_comment] = ACTIONS(5), }, [1107] = { [sym_comment] = STATE(1107), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [sym__automatic_semicolon] = ACTIONS(2186), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1108] = { [sym_comment] = STATE(1108), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_default] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [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_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_global] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3358), [sym_html_comment] = ACTIONS(5), }, [1109] = { [sym_comment] = STATE(1109), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_default] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_case] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_default] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_case] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LTtemplate_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3360), + [anon_sym_delete] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_undefined] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_protected] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_module] = ACTIONS(3360), + [anon_sym_any] = ACTIONS(3360), + [anon_sym_number] = ACTIONS(3360), + [anon_sym_boolean] = ACTIONS(3360), + [anon_sym_string] = ACTIONS(3360), + [anon_sym_symbol] = ACTIONS(3360), + [anon_sym_object] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_global] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), [sym_html_comment] = ACTIONS(5), }, [1110] = { [sym_comment] = STATE(1110), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_default] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_case] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1111] = { [sym_comment] = STATE(1111), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_default] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_case] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_finally] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_global] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, [1112] = { [sym_comment] = STATE(1112), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_typeof] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_case] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2209), + [anon_sym_delete] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(2209), + [sym_this] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_null] = ACTIONS(2209), + [sym_undefined] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_declare] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_protected] = ACTIONS(2209), + [anon_sym_override] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_any] = ACTIONS(2209), + [anon_sym_number] = ACTIONS(2209), + [anon_sym_boolean] = ACTIONS(2209), + [anon_sym_string] = ACTIONS(2209), + [anon_sym_symbol] = ACTIONS(2209), + [anon_sym_object] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), [sym_html_comment] = ACTIONS(5), }, [1113] = { [sym_comment] = STATE(1113), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1114] = { [sym_comment] = STATE(1114), - [ts_builtin_sym_end] = ACTIONS(3207), - [sym_identifier] = ACTIONS(3205), - [anon_sym_export] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym_import] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_else] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_debugger] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_LTtemplate_GT] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_function] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_void] = ACTIONS(3205), - [anon_sym_delete] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3205), - [sym_number] = ACTIONS(3205), - [sym_private_property_identifier] = ACTIONS(3205), - [sym_this] = ACTIONS(3205), - [sym_super] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_null] = ACTIONS(3205), - [sym_undefined] = ACTIONS(3205), - [anon_sym_AT] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_get] = ACTIONS(3205), - [anon_sym_set] = ACTIONS(3205), - [anon_sym_declare] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_module] = ACTIONS(3205), - [anon_sym_any] = ACTIONS(3205), - [anon_sym_number] = ACTIONS(3205), - [anon_sym_boolean] = ACTIONS(3205), - [anon_sym_string] = ACTIONS(3205), - [anon_sym_symbol] = ACTIONS(3205), - [anon_sym_object] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [sym__automatic_semicolon] = ACTIONS(3207), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LTtemplate_GT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_async] = ACTIONS(3362), + [anon_sym_function] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_number] = ACTIONS(3362), + [sym_private_property_identifier] = ACTIONS(3362), + [sym_this] = ACTIONS(3362), + [sym_super] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_undefined] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_declare] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_override] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_any] = ACTIONS(3362), + [anon_sym_number] = ACTIONS(3362), + [anon_sym_boolean] = ACTIONS(3362), + [anon_sym_string] = ACTIONS(3362), + [anon_sym_symbol] = ACTIONS(3362), + [anon_sym_object] = ACTIONS(3362), + [anon_sym_abstract] = ACTIONS(3362), + [anon_sym_global] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), [sym_html_comment] = ACTIONS(5), }, [1115] = { [sym_comment] = STATE(1115), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_else] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_global] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, [1116] = { [sym_comment] = STATE(1116), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_default] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_case] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_default] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_case] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_global] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, [1117] = { [sym_comment] = STATE(1117), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_default] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [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_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_global] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, [1118] = { [sym_comment] = STATE(1118), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_default] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_case] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_global] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, [1119] = { [sym_comment] = STATE(1119), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_identifier] = ACTIONS(3372), + [anon_sym_export] = ACTIONS(3372), + [anon_sym_default] = ACTIONS(3372), + [anon_sym_type] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_typeof] = ACTIONS(3372), + [anon_sym_import] = ACTIONS(3372), + [anon_sym_with] = ACTIONS(3372), + [anon_sym_var] = ACTIONS(3372), + [anon_sym_let] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_else] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_await] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_debugger] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_case] = ACTIONS(3372), + [anon_sym_yield] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LTtemplate_GT] = ACTIONS(3372), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_async] = ACTIONS(3372), + [anon_sym_function] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_SLASH] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3372), + [anon_sym_TILDE] = ACTIONS(3372), + [anon_sym_void] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3372), + [sym_number] = ACTIONS(3372), + [sym_private_property_identifier] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), + [sym_super] = ACTIONS(3372), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [sym_null] = ACTIONS(3372), + [sym_undefined] = ACTIONS(3372), + [anon_sym_AT] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_readonly] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3372), + [anon_sym_set] = ACTIONS(3372), + [anon_sym_declare] = ACTIONS(3372), + [anon_sym_public] = ACTIONS(3372), + [anon_sym_private] = ACTIONS(3372), + [anon_sym_protected] = ACTIONS(3372), + [anon_sym_override] = ACTIONS(3372), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_any] = ACTIONS(3372), + [anon_sym_number] = ACTIONS(3372), + [anon_sym_boolean] = ACTIONS(3372), + [anon_sym_string] = ACTIONS(3372), + [anon_sym_symbol] = ACTIONS(3372), + [anon_sym_object] = ACTIONS(3372), + [anon_sym_abstract] = ACTIONS(3372), + [anon_sym_global] = ACTIONS(3372), + [anon_sym_interface] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), [sym_html_comment] = ACTIONS(5), }, [1120] = { [sym_comment] = STATE(1120), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_default] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_case] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_else_clause] = STATE(1374), [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_else] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_case] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LTtemplate_GT] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_number] = ACTIONS(3374), + [sym_private_property_identifier] = ACTIONS(3374), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_object] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), [sym_html_comment] = ACTIONS(5), }, [1122] = { [sym_comment] = STATE(1122), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_object] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), + [sym_identifier] = ACTIONS(3376), + [anon_sym_export] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_type] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_typeof] = ACTIONS(3376), + [anon_sym_import] = ACTIONS(3376), + [anon_sym_with] = ACTIONS(3376), + [anon_sym_var] = ACTIONS(3376), + [anon_sym_let] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_else] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_await] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_debugger] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_case] = ACTIONS(3376), + [anon_sym_yield] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LTtemplate_GT] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_async] = ACTIONS(3376), + [anon_sym_function] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_SLASH] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_void] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3376), + [sym_number] = ACTIONS(3376), + [sym_private_property_identifier] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), + [sym_super] = ACTIONS(3376), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [sym_null] = ACTIONS(3376), + [sym_undefined] = ACTIONS(3376), + [anon_sym_AT] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_readonly] = ACTIONS(3376), + [anon_sym_get] = ACTIONS(3376), + [anon_sym_set] = ACTIONS(3376), + [anon_sym_declare] = ACTIONS(3376), + [anon_sym_public] = ACTIONS(3376), + [anon_sym_private] = ACTIONS(3376), + [anon_sym_protected] = ACTIONS(3376), + [anon_sym_override] = ACTIONS(3376), + [anon_sym_module] = ACTIONS(3376), + [anon_sym_any] = ACTIONS(3376), + [anon_sym_number] = ACTIONS(3376), + [anon_sym_boolean] = ACTIONS(3376), + [anon_sym_string] = ACTIONS(3376), + [anon_sym_symbol] = ACTIONS(3376), + [anon_sym_object] = ACTIONS(3376), + [anon_sym_abstract] = ACTIONS(3376), + [anon_sym_global] = ACTIONS(3376), + [anon_sym_interface] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), [sym_html_comment] = ACTIONS(5), }, [1123] = { [sym_comment] = STATE(1123), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_finally] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_else] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_case] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LTtemplate_GT] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_number] = ACTIONS(3374), + [sym_private_property_identifier] = ACTIONS(3374), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_object] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), [sym_html_comment] = ACTIONS(5), }, [1124] = { + [sym_finally_clause] = STATE(1629), [sym_comment] = STATE(1124), - [sym_identifier] = ACTIONS(2294), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_default] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2294), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_with] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_debugger] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_case] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LTtemplate_GT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_class] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_function] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_using] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2294), - [anon_sym_delete] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_private_property_identifier] = ACTIONS(2294), - [sym_this] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_true] = ACTIONS(2294), - [sym_false] = ACTIONS(2294), - [sym_null] = ACTIONS(2294), - [sym_undefined] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_readonly] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2294), - [anon_sym_set] = ACTIONS(2294), - [anon_sym_declare] = ACTIONS(2294), - [anon_sym_public] = ACTIONS(2294), - [anon_sym_private] = ACTIONS(2294), - [anon_sym_protected] = ACTIONS(2294), - [anon_sym_override] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_any] = ACTIONS(2294), - [anon_sym_number] = ACTIONS(2294), - [anon_sym_boolean] = ACTIONS(2294), - [anon_sym_string] = ACTIONS(2294), - [anon_sym_symbol] = ACTIONS(2294), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_abstract] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), + [ts_builtin_sym_end] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_finally] = ACTIONS(3162), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_global] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, [1125] = { [sym_comment] = STATE(1125), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_case] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [sym__automatic_semicolon] = ACTIONS(2189), [sym_html_comment] = ACTIONS(5), }, [1126] = { [sym_comment] = STATE(1126), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_typeof] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_with] = ACTIONS(3378), + [anon_sym_var] = ACTIONS(3378), + [anon_sym_let] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_await] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_debugger] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_case] = ACTIONS(3378), + [anon_sym_yield] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_LTtemplate_GT] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_function] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_void] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3378), + [sym_number] = ACTIONS(3378), + [sym_private_property_identifier] = ACTIONS(3378), + [sym_this] = ACTIONS(3378), + [sym_super] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_null] = ACTIONS(3378), + [sym_undefined] = ACTIONS(3378), + [anon_sym_AT] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_readonly] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(3378), + [anon_sym_set] = ACTIONS(3378), + [anon_sym_declare] = ACTIONS(3378), + [anon_sym_public] = ACTIONS(3378), + [anon_sym_private] = ACTIONS(3378), + [anon_sym_protected] = ACTIONS(3378), + [anon_sym_override] = ACTIONS(3378), + [anon_sym_module] = ACTIONS(3378), + [anon_sym_any] = ACTIONS(3378), + [anon_sym_number] = ACTIONS(3378), + [anon_sym_boolean] = ACTIONS(3378), + [anon_sym_string] = ACTIONS(3378), + [anon_sym_symbol] = ACTIONS(3378), + [anon_sym_object] = ACTIONS(3378), + [anon_sym_abstract] = ACTIONS(3378), + [anon_sym_global] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), [sym_html_comment] = ACTIONS(5), }, [1127] = { [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2292), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_debugger] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_case] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_delete] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_private_property_identifier] = ACTIONS(2219), + [sym_this] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_null] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_abstract] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, [1128] = { [sym_comment] = STATE(1128), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_default] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_case] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [1129] = { [sym_comment] = STATE(1129), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_default] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3380), + [anon_sym_export] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_type] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_typeof] = ACTIONS(3380), + [anon_sym_import] = ACTIONS(3380), + [anon_sym_with] = ACTIONS(3380), + [anon_sym_var] = ACTIONS(3380), + [anon_sym_let] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_await] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_debugger] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_yield] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LTtemplate_GT] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_async] = ACTIONS(3380), + [anon_sym_function] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_void] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3380), + [sym_number] = ACTIONS(3380), + [sym_private_property_identifier] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), + [sym_super] = ACTIONS(3380), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [sym_null] = ACTIONS(3380), + [sym_undefined] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_readonly] = ACTIONS(3380), + [anon_sym_get] = ACTIONS(3380), + [anon_sym_set] = ACTIONS(3380), + [anon_sym_declare] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_override] = ACTIONS(3380), + [anon_sym_module] = ACTIONS(3380), + [anon_sym_any] = ACTIONS(3380), + [anon_sym_number] = ACTIONS(3380), + [anon_sym_boolean] = ACTIONS(3380), + [anon_sym_string] = ACTIONS(3380), + [anon_sym_symbol] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_abstract] = ACTIONS(3380), + [anon_sym_global] = ACTIONS(3380), + [anon_sym_interface] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), [sym_html_comment] = ACTIONS(5), }, [1130] = { [sym_comment] = STATE(1130), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_case] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), + [ts_builtin_sym_end] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_with] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_debugger] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_finally] = ACTIONS(3170), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_LTtemplate_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3170), + [sym_private_property_identifier] = ACTIONS(3170), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_global] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, [1131] = { [sym_comment] = STATE(1131), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_with] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_debugger] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_finally] = ACTIONS(3170), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_LTtemplate_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3170), + [sym_private_property_identifier] = ACTIONS(3170), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_global] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, [1132] = { [sym_comment] = STATE(1132), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_case] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [sym_identifier] = ACTIONS(2253), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_debugger] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_case] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LTtemplate_GT] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2253), + [sym_number] = ACTIONS(2253), + [sym_private_property_identifier] = ACTIONS(2253), + [sym_this] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_null] = ACTIONS(2253), + [sym_undefined] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [sym__automatic_semicolon] = ACTIONS(2433), [sym_html_comment] = ACTIONS(5), }, [1133] = { [sym_comment] = STATE(1133), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LTtemplate_GT] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2284), - [sym_number] = ACTIONS(2284), - [sym_private_property_identifier] = ACTIONS(2284), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_object] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2273), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_debugger] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_case] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LTtemplate_GT] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_number] = ACTIONS(2273), + [sym_private_property_identifier] = ACTIONS(2273), + [sym_this] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_get] = ACTIONS(2273), + [anon_sym_set] = ACTIONS(2273), + [anon_sym_declare] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_private] = ACTIONS(2273), + [anon_sym_protected] = ACTIONS(2273), + [anon_sym_override] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_any] = ACTIONS(2273), + [anon_sym_number] = ACTIONS(2273), + [anon_sym_boolean] = ACTIONS(2273), + [anon_sym_string] = ACTIONS(2273), + [anon_sym_symbol] = ACTIONS(2273), + [anon_sym_object] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [sym__automatic_semicolon] = ACTIONS(2369), [sym_html_comment] = ACTIONS(5), }, [1134] = { [sym_comment] = STATE(1134), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_case] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LTtemplate_GT] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2276), - [sym_number] = ACTIONS(2276), - [sym_private_property_identifier] = ACTIONS(2276), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_object] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2420), + [sym_identifier] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_typeof] = ACTIONS(3384), + [anon_sym_import] = ACTIONS(3384), + [anon_sym_with] = ACTIONS(3384), + [anon_sym_var] = ACTIONS(3384), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_else] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_await] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_debugger] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_yield] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LTtemplate_GT] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_async] = ACTIONS(3384), + [anon_sym_function] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_void] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3384), + [sym_number] = ACTIONS(3384), + [sym_private_property_identifier] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + [sym_super] = ACTIONS(3384), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [sym_null] = ACTIONS(3384), + [sym_undefined] = ACTIONS(3384), + [anon_sym_AT] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_readonly] = ACTIONS(3384), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3384), + [anon_sym_declare] = ACTIONS(3384), + [anon_sym_public] = ACTIONS(3384), + [anon_sym_private] = ACTIONS(3384), + [anon_sym_protected] = ACTIONS(3384), + [anon_sym_override] = ACTIONS(3384), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_any] = ACTIONS(3384), + [anon_sym_number] = ACTIONS(3384), + [anon_sym_boolean] = ACTIONS(3384), + [anon_sym_string] = ACTIONS(3384), + [anon_sym_symbol] = ACTIONS(3384), + [anon_sym_object] = ACTIONS(3384), + [anon_sym_abstract] = ACTIONS(3384), + [anon_sym_global] = ACTIONS(3384), + [anon_sym_interface] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), [sym_html_comment] = ACTIONS(5), }, [1135] = { [sym_comment] = STATE(1135), - [sym_identifier] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_default] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_typeof] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_await] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_debugger] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_case] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LTtemplate_GT] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_number] = ACTIONS(3381), - [sym_private_property_identifier] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_undefined] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_readonly] = ACTIONS(3381), - [anon_sym_get] = ACTIONS(3381), - [anon_sym_set] = ACTIONS(3381), - [anon_sym_declare] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_protected] = ACTIONS(3381), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_any] = ACTIONS(3381), - [anon_sym_number] = ACTIONS(3381), - [anon_sym_boolean] = ACTIONS(3381), - [anon_sym_string] = ACTIONS(3381), - [anon_sym_symbol] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_abstract] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_namespace] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_var] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_switch] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_debugger] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_throw] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_case] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_using] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2263), + [anon_sym_delete] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_private_property_identifier] = ACTIONS(2263), + [sym_this] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_undefined] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_get] = ACTIONS(2263), + [anon_sym_set] = ACTIONS(2263), + [anon_sym_declare] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_private] = ACTIONS(2263), + [anon_sym_protected] = ACTIONS(2263), + [anon_sym_override] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_any] = ACTIONS(2263), + [anon_sym_number] = ACTIONS(2263), + [anon_sym_boolean] = ACTIONS(2263), + [anon_sym_string] = ACTIONS(2263), + [anon_sym_symbol] = ACTIONS(2263), + [anon_sym_object] = ACTIONS(2263), + [anon_sym_abstract] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_interface] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [sym__automatic_semicolon] = ACTIONS(2403), [sym_html_comment] = ACTIONS(5), }, [1136] = { [sym_comment] = STATE(1136), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LTtemplate_GT] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2284), - [sym_number] = ACTIONS(2284), - [sym_private_property_identifier] = ACTIONS(2284), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_object] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_var] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_debugger] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_case] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2161), + [anon_sym_delete] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_number] = ACTIONS(2161), + [sym_private_property_identifier] = ACTIONS(2161), + [sym_this] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [sym_undefined] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_get] = ACTIONS(2161), + [anon_sym_set] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_private] = ACTIONS(2161), + [anon_sym_protected] = ACTIONS(2161), + [anon_sym_override] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_any] = ACTIONS(2161), + [anon_sym_number] = ACTIONS(2161), + [anon_sym_boolean] = ACTIONS(2161), + [anon_sym_string] = ACTIONS(2161), + [anon_sym_symbol] = ACTIONS(2161), + [anon_sym_object] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym__automatic_semicolon] = ACTIONS(2399), [sym_html_comment] = ACTIONS(5), }, [1137] = { [sym_comment] = STATE(1137), - [sym_identifier] = ACTIONS(3383), - [anon_sym_export] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym_import] = ACTIONS(3383), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_debugger] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_case] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LTtemplate_GT] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_void] = ACTIONS(3383), - [anon_sym_delete] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3383), - [sym_number] = ACTIONS(3383), - [sym_private_property_identifier] = ACTIONS(3383), - [sym_this] = ACTIONS(3383), - [sym_super] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_null] = ACTIONS(3383), - [sym_undefined] = ACTIONS(3383), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_get] = ACTIONS(3383), - [anon_sym_set] = ACTIONS(3383), - [anon_sym_declare] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_any] = ACTIONS(3383), - [anon_sym_number] = ACTIONS(3383), - [anon_sym_boolean] = ACTIONS(3383), - [anon_sym_string] = ACTIONS(3383), - [anon_sym_symbol] = ACTIONS(3383), - [anon_sym_object] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_debugger] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LTtemplate_GT] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_SLASH] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_undefined] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_get] = ACTIONS(2317), + [anon_sym_set] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_override] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_any] = ACTIONS(2317), + [anon_sym_number] = ACTIONS(2317), + [anon_sym_boolean] = ACTIONS(2317), + [anon_sym_string] = ACTIONS(2317), + [anon_sym_symbol] = ACTIONS(2317), + [anon_sym_object] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [sym__automatic_semicolon] = ACTIONS(2361), [sym_html_comment] = ACTIONS(5), }, [1138] = { [sym_comment] = STATE(1138), - [sym_identifier] = ACTIONS(3385), - [anon_sym_export] = ACTIONS(3385), - [anon_sym_default] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_namespace] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_typeof] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_var] = ACTIONS(3385), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_const] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_switch] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_await] = ACTIONS(3385), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3385), - [anon_sym_break] = ACTIONS(3385), - [anon_sym_continue] = ACTIONS(3385), - [anon_sym_debugger] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3385), - [anon_sym_throw] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_case] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LTtemplate_GT] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [anon_sym_SQUOTE] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_using] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_void] = ACTIONS(3385), - [anon_sym_delete] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3385), - [sym_number] = ACTIONS(3385), - [sym_private_property_identifier] = ACTIONS(3385), - [sym_this] = ACTIONS(3385), - [sym_super] = ACTIONS(3385), - [sym_true] = ACTIONS(3385), - [sym_false] = ACTIONS(3385), - [sym_null] = ACTIONS(3385), - [sym_undefined] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3385), - [anon_sym_set] = ACTIONS(3385), - [anon_sym_declare] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_protected] = ACTIONS(3385), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_any] = ACTIONS(3385), - [anon_sym_number] = ACTIONS(3385), - [anon_sym_boolean] = ACTIONS(3385), - [anon_sym_string] = ACTIONS(3385), - [anon_sym_symbol] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_abstract] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1139] = { [sym_comment] = STATE(1139), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2414), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [1140] = { [sym_comment] = STATE(1140), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_case] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_default] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_with] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_debugger] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_case] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_LTtemplate_GT] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_using] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_void] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3386), + [sym_number] = ACTIONS(3386), + [sym_private_property_identifier] = ACTIONS(3386), + [sym_this] = ACTIONS(3386), + [sym_super] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [sym_undefined] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_module] = ACTIONS(3386), + [anon_sym_any] = ACTIONS(3386), + [anon_sym_number] = ACTIONS(3386), + [anon_sym_boolean] = ACTIONS(3386), + [anon_sym_string] = ACTIONS(3386), + [anon_sym_symbol] = ACTIONS(3386), + [anon_sym_object] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_global] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), [sym_html_comment] = ACTIONS(5), }, [1141] = { [sym_comment] = STATE(1141), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_default] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_typeof] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_var] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_const] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3389), - [anon_sym_switch] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_await] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3389), - [anon_sym_break] = ACTIONS(3389), - [anon_sym_continue] = ACTIONS(3389), - [anon_sym_debugger] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3389), - [anon_sym_throw] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_case] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LTtemplate_GT] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_using] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(3389), - [anon_sym_delete] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3389), - [sym_number] = ACTIONS(3389), - [sym_private_property_identifier] = ACTIONS(3389), - [sym_this] = ACTIONS(3389), - [sym_super] = ACTIONS(3389), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [sym_undefined] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3389), - [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_abstract] = ACTIONS(3389), - [anon_sym_interface] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), + [sym_identifier] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_debugger] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_private_property_identifier] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_undefined] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_declare] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_private] = ACTIONS(2299), + [anon_sym_protected] = ACTIONS(2299), + [anon_sym_override] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_any] = ACTIONS(2299), + [anon_sym_number] = ACTIONS(2299), + [anon_sym_boolean] = ACTIONS(2299), + [anon_sym_string] = ACTIONS(2299), + [anon_sym_symbol] = ACTIONS(2299), + [anon_sym_object] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_interface] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [sym__automatic_semicolon] = ACTIONS(2351), [sym_html_comment] = ACTIONS(5), }, [1142] = { [sym_comment] = STATE(1142), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LTtemplate_GT] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2276), - [sym_number] = ACTIONS(2276), - [sym_private_property_identifier] = ACTIONS(2276), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_object] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_catch] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [1143] = { [sym_comment] = STATE(1143), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_case] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3388), + [anon_sym_export] = ACTIONS(3388), + [anon_sym_default] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_namespace] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3388), + [anon_sym_import] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [anon_sym_var] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_else] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_debugger] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_throw] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_case] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LTtemplate_GT] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_class] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_function] = ACTIONS(3388), + [anon_sym_new] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_private_property_identifier] = ACTIONS(3388), + [sym_this] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_undefined] = ACTIONS(3388), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_readonly] = ACTIONS(3388), + [anon_sym_get] = ACTIONS(3388), + [anon_sym_set] = ACTIONS(3388), + [anon_sym_declare] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3388), + [anon_sym_module] = ACTIONS(3388), + [anon_sym_any] = ACTIONS(3388), + [anon_sym_number] = ACTIONS(3388), + [anon_sym_boolean] = ACTIONS(3388), + [anon_sym_string] = ACTIONS(3388), + [anon_sym_symbol] = ACTIONS(3388), + [anon_sym_object] = ACTIONS(3388), + [anon_sym_abstract] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), [sym_html_comment] = ACTIONS(5), }, [1144] = { [sym_comment] = STATE(1144), - [sym_identifier] = ACTIONS(3391), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_default] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_else] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_debugger] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_case] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LTtemplate_GT] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_void] = ACTIONS(3391), - [anon_sym_delete] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3391), - [sym_number] = ACTIONS(3391), - [sym_private_property_identifier] = ACTIONS(3391), - [sym_this] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_null] = ACTIONS(3391), - [sym_undefined] = ACTIONS(3391), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_get] = ACTIONS(3391), - [anon_sym_set] = ACTIONS(3391), - [anon_sym_declare] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_any] = ACTIONS(3391), - [anon_sym_number] = ACTIONS(3391), - [anon_sym_boolean] = ACTIONS(3391), - [anon_sym_string] = ACTIONS(3391), - [anon_sym_symbol] = ACTIONS(3391), - [anon_sym_object] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3390), [sym_html_comment] = ACTIONS(5), }, [1145] = { [sym_comment] = STATE(1145), - [sym_identifier] = ACTIONS(3393), - [anon_sym_export] = ACTIONS(3393), - [anon_sym_default] = ACTIONS(3393), - [anon_sym_type] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_typeof] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_else] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_await] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_debugger] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_throw] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LTtemplate_GT] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_SQUOTE] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_async] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_using] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_void] = ACTIONS(3393), - [anon_sym_delete] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3393), - [sym_number] = ACTIONS(3393), - [sym_private_property_identifier] = ACTIONS(3393), - [sym_this] = ACTIONS(3393), - [sym_super] = ACTIONS(3393), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_undefined] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_readonly] = ACTIONS(3393), - [anon_sym_get] = ACTIONS(3393), - [anon_sym_set] = ACTIONS(3393), - [anon_sym_declare] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_protected] = ACTIONS(3393), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_any] = ACTIONS(3393), - [anon_sym_number] = ACTIONS(3393), - [anon_sym_boolean] = ACTIONS(3393), - [anon_sym_string] = ACTIONS(3393), - [anon_sym_symbol] = ACTIONS(3393), - [anon_sym_object] = ACTIONS(3393), - [anon_sym_abstract] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3392), + [anon_sym_export] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_typeof] = ACTIONS(3392), + [anon_sym_import] = ACTIONS(3392), + [anon_sym_with] = ACTIONS(3392), + [anon_sym_var] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_await] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_debugger] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3392), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LTtemplate_GT] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_SQUOTE] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_async] = ACTIONS(3392), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_void] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3392), + [sym_number] = ACTIONS(3392), + [sym_private_property_identifier] = ACTIONS(3392), + [sym_this] = ACTIONS(3392), + [sym_super] = ACTIONS(3392), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [sym_null] = ACTIONS(3392), + [sym_undefined] = ACTIONS(3392), + [anon_sym_AT] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_readonly] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3392), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_declare] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_override] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_any] = ACTIONS(3392), + [anon_sym_number] = ACTIONS(3392), + [anon_sym_boolean] = ACTIONS(3392), + [anon_sym_string] = ACTIONS(3392), + [anon_sym_symbol] = ACTIONS(3392), + [anon_sym_object] = ACTIONS(3392), + [anon_sym_abstract] = ACTIONS(3392), + [anon_sym_global] = ACTIONS(3392), + [anon_sym_interface] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), [sym_html_comment] = ACTIONS(5), }, [1146] = { [sym_comment] = STATE(1146), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1147] = { [sym_comment] = STATE(1147), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3394), + [anon_sym_export] = ACTIONS(3394), + [anon_sym_default] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_namespace] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_with] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_else] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_debugger] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_case] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_LTtemplate_GT] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_void] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3394), + [sym_number] = ACTIONS(3394), + [sym_private_property_identifier] = ACTIONS(3394), + [sym_this] = ACTIONS(3394), + [sym_super] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [sym_undefined] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3394), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3394), + [anon_sym_declare] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_module] = ACTIONS(3394), + [anon_sym_any] = ACTIONS(3394), + [anon_sym_number] = ACTIONS(3394), + [anon_sym_boolean] = ACTIONS(3394), + [anon_sym_string] = ACTIONS(3394), + [anon_sym_symbol] = ACTIONS(3394), + [anon_sym_object] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_global] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), [sym_html_comment] = ACTIONS(5), }, [1148] = { [sym_comment] = STATE(1148), - [sym_identifier] = ACTIONS(3397), - [anon_sym_export] = ACTIONS(3397), - [anon_sym_default] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_typeof] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_switch] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_await] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_debugger] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_throw] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_case] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LTtemplate_GT] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_using] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3397), - [anon_sym_delete] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_number] = ACTIONS(3397), - [sym_private_property_identifier] = ACTIONS(3397), - [sym_this] = ACTIONS(3397), - [sym_super] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_null] = ACTIONS(3397), - [sym_undefined] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_readonly] = ACTIONS(3397), - [anon_sym_get] = ACTIONS(3397), - [anon_sym_set] = ACTIONS(3397), - [anon_sym_declare] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_protected] = ACTIONS(3397), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_any] = ACTIONS(3397), - [anon_sym_number] = ACTIONS(3397), - [anon_sym_boolean] = ACTIONS(3397), - [anon_sym_string] = ACTIONS(3397), - [anon_sym_symbol] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_abstract] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_else] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_finally] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_global] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, [1149] = { [sym_comment] = STATE(1149), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_default] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_case] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3398), + [anon_sym_export] = ACTIONS(3398), + [anon_sym_default] = ACTIONS(3398), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_typeof] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(3398), + [anon_sym_with] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_else] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_await] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_debugger] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_case] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_LTtemplate_GT] = ACTIONS(3398), + [anon_sym_DQUOTE] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_function] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_using] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_void] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3398), + [sym_number] = ACTIONS(3398), + [sym_private_property_identifier] = ACTIONS(3398), + [sym_this] = ACTIONS(3398), + [sym_super] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_null] = ACTIONS(3398), + [sym_undefined] = ACTIONS(3398), + [anon_sym_AT] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_readonly] = ACTIONS(3398), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3398), + [anon_sym_declare] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_protected] = ACTIONS(3398), + [anon_sym_override] = ACTIONS(3398), + [anon_sym_module] = ACTIONS(3398), + [anon_sym_any] = ACTIONS(3398), + [anon_sym_number] = ACTIONS(3398), + [anon_sym_boolean] = ACTIONS(3398), + [anon_sym_string] = ACTIONS(3398), + [anon_sym_symbol] = ACTIONS(3398), + [anon_sym_object] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_global] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), [sym_html_comment] = ACTIONS(5), }, [1150] = { [sym_comment] = STATE(1150), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_default] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [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_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3400), + [anon_sym_export] = ACTIONS(3400), + [anon_sym_default] = ACTIONS(3400), + [anon_sym_type] = ACTIONS(3400), + [anon_sym_namespace] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_typeof] = ACTIONS(3400), + [anon_sym_import] = ACTIONS(3400), + [anon_sym_with] = ACTIONS(3400), + [anon_sym_var] = ACTIONS(3400), + [anon_sym_let] = ACTIONS(3400), + [anon_sym_const] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_else] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_switch] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_await] = ACTIONS(3400), + [anon_sym_while] = ACTIONS(3400), + [anon_sym_do] = ACTIONS(3400), + [anon_sym_try] = ACTIONS(3400), + [anon_sym_break] = ACTIONS(3400), + [anon_sym_continue] = ACTIONS(3400), + [anon_sym_debugger] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3400), + [anon_sym_throw] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_case] = ACTIONS(3400), + [anon_sym_yield] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_LTtemplate_GT] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(3400), + [anon_sym_class] = ACTIONS(3400), + [anon_sym_async] = ACTIONS(3400), + [anon_sym_function] = ACTIONS(3400), + [anon_sym_new] = ACTIONS(3400), + [anon_sym_using] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_void] = ACTIONS(3400), + [anon_sym_delete] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3400), + [sym_number] = ACTIONS(3400), + [sym_private_property_identifier] = ACTIONS(3400), + [sym_this] = ACTIONS(3400), + [sym_super] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_null] = ACTIONS(3400), + [sym_undefined] = ACTIONS(3400), + [anon_sym_AT] = ACTIONS(3400), + [anon_sym_static] = ACTIONS(3400), + [anon_sym_readonly] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3400), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_declare] = ACTIONS(3400), + [anon_sym_public] = ACTIONS(3400), + [anon_sym_private] = ACTIONS(3400), + [anon_sym_protected] = ACTIONS(3400), + [anon_sym_override] = ACTIONS(3400), + [anon_sym_module] = ACTIONS(3400), + [anon_sym_any] = ACTIONS(3400), + [anon_sym_number] = ACTIONS(3400), + [anon_sym_boolean] = ACTIONS(3400), + [anon_sym_string] = ACTIONS(3400), + [anon_sym_symbol] = ACTIONS(3400), + [anon_sym_object] = ACTIONS(3400), + [anon_sym_abstract] = ACTIONS(3400), + [anon_sym_global] = ACTIONS(3400), + [anon_sym_interface] = ACTIONS(3400), + [anon_sym_enum] = ACTIONS(3400), [sym_html_comment] = ACTIONS(5), }, [1151] = { [sym_comment] = STATE(1151), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_namespace] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_typeof] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_with] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_else] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_debugger] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LTtemplate_GT] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2268), - [anon_sym_void] = ACTIONS(2268), - [anon_sym_delete] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2268), - [sym_number] = ACTIONS(2268), - [sym_private_property_identifier] = ACTIONS(2268), - [sym_this] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_readonly] = ACTIONS(2268), - [anon_sym_get] = ACTIONS(2268), - [anon_sym_set] = ACTIONS(2268), - [anon_sym_declare] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_protected] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_any] = ACTIONS(2268), - [anon_sym_number] = ACTIONS(2268), - [anon_sym_boolean] = ACTIONS(2268), - [anon_sym_string] = ACTIONS(2268), - [anon_sym_symbol] = ACTIONS(2268), - [anon_sym_object] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [sym__automatic_semicolon] = ACTIONS(2372), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [sym__automatic_semicolon] = ACTIONS(2401), [sym_html_comment] = ACTIONS(5), }, [1152] = { [sym_comment] = STATE(1152), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_case] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3402), + [anon_sym_export] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_type] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_typeof] = ACTIONS(3402), + [anon_sym_import] = ACTIONS(3402), + [anon_sym_with] = ACTIONS(3402), + [anon_sym_var] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_await] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_debugger] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_yield] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_LTtemplate_GT] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_SQUOTE] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_async] = ACTIONS(3402), + [anon_sym_function] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_void] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3402), + [sym_number] = ACTIONS(3402), + [sym_private_property_identifier] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [sym_super] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_null] = ACTIONS(3402), + [sym_undefined] = ACTIONS(3402), + [anon_sym_AT] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_readonly] = ACTIONS(3402), + [anon_sym_get] = ACTIONS(3402), + [anon_sym_set] = ACTIONS(3402), + [anon_sym_declare] = ACTIONS(3402), + [anon_sym_public] = ACTIONS(3402), + [anon_sym_private] = ACTIONS(3402), + [anon_sym_protected] = ACTIONS(3402), + [anon_sym_override] = ACTIONS(3402), + [anon_sym_module] = ACTIONS(3402), + [anon_sym_any] = ACTIONS(3402), + [anon_sym_number] = ACTIONS(3402), + [anon_sym_boolean] = ACTIONS(3402), + [anon_sym_string] = ACTIONS(3402), + [anon_sym_symbol] = ACTIONS(3402), + [anon_sym_object] = ACTIONS(3402), + [anon_sym_abstract] = ACTIONS(3402), + [anon_sym_global] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), [sym_html_comment] = ACTIONS(5), }, [1153] = { [sym_comment] = STATE(1153), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), + [sym_identifier] = ACTIONS(3404), + [anon_sym_export] = ACTIONS(3404), + [anon_sym_default] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_namespace] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3404), + [anon_sym_import] = ACTIONS(3404), + [anon_sym_with] = ACTIONS(3404), + [anon_sym_var] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_else] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_debugger] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_throw] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_case] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LTtemplate_GT] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_class] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_void] = ACTIONS(3404), + [anon_sym_delete] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3404), + [sym_number] = ACTIONS(3404), + [sym_private_property_identifier] = ACTIONS(3404), + [sym_this] = ACTIONS(3404), + [sym_super] = ACTIONS(3404), + [sym_true] = ACTIONS(3404), + [sym_false] = ACTIONS(3404), + [sym_null] = ACTIONS(3404), + [sym_undefined] = ACTIONS(3404), + [anon_sym_AT] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_readonly] = ACTIONS(3404), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3404), + [anon_sym_declare] = ACTIONS(3404), + [anon_sym_public] = ACTIONS(3404), + [anon_sym_private] = ACTIONS(3404), + [anon_sym_protected] = ACTIONS(3404), + [anon_sym_override] = ACTIONS(3404), + [anon_sym_module] = ACTIONS(3404), + [anon_sym_any] = ACTIONS(3404), + [anon_sym_number] = ACTIONS(3404), + [anon_sym_boolean] = ACTIONS(3404), + [anon_sym_string] = ACTIONS(3404), + [anon_sym_symbol] = ACTIONS(3404), + [anon_sym_object] = ACTIONS(3404), + [anon_sym_abstract] = ACTIONS(3404), + [anon_sym_global] = ACTIONS(3404), + [anon_sym_interface] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), [sym_html_comment] = ACTIONS(5), }, [1154] = { [sym_comment] = STATE(1154), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_default] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [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_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [ts_builtin_sym_end] = ACTIONS(2445), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_debugger] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LTtemplate_GT] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_SLASH] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_number] = ACTIONS(2281), + [sym_private_property_identifier] = ACTIONS(2281), + [sym_this] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_null] = ACTIONS(2281), + [sym_undefined] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_get] = ACTIONS(2281), + [anon_sym_set] = ACTIONS(2281), + [anon_sym_declare] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_private] = ACTIONS(2281), + [anon_sym_protected] = ACTIONS(2281), + [anon_sym_override] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_any] = ACTIONS(2281), + [anon_sym_number] = ACTIONS(2281), + [anon_sym_boolean] = ACTIONS(2281), + [anon_sym_string] = ACTIONS(2281), + [anon_sym_symbol] = ACTIONS(2281), + [anon_sym_object] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [sym__automatic_semicolon] = ACTIONS(2447), [sym_html_comment] = ACTIONS(5), }, [1155] = { [sym_comment] = STATE(1155), - [sym_identifier] = ACTIONS(3205), - [anon_sym_export] = ACTIONS(3205), - [anon_sym_default] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym_import] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_debugger] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_case] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_LTtemplate_GT] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_function] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_void] = ACTIONS(3205), - [anon_sym_delete] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3205), - [sym_number] = ACTIONS(3205), - [sym_private_property_identifier] = ACTIONS(3205), - [sym_this] = ACTIONS(3205), - [sym_super] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_null] = ACTIONS(3205), - [sym_undefined] = ACTIONS(3205), - [anon_sym_AT] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_get] = ACTIONS(3205), - [anon_sym_set] = ACTIONS(3205), - [anon_sym_declare] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_module] = ACTIONS(3205), - [anon_sym_any] = ACTIONS(3205), - [anon_sym_number] = ACTIONS(3205), - [anon_sym_boolean] = ACTIONS(3205), - [anon_sym_string] = ACTIONS(3205), - [anon_sym_symbol] = ACTIONS(3205), - [anon_sym_object] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [sym__automatic_semicolon] = ACTIONS(3207), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_private_property_identifier] = ACTIONS(2335), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2439), [sym_html_comment] = ACTIONS(5), }, [1156] = { [sym_comment] = STATE(1156), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_default] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_case] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_case] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_private_property_identifier] = ACTIONS(2335), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2365), [sym_html_comment] = ACTIONS(5), }, [1157] = { [sym_comment] = STATE(1157), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_else] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), + [sym_identifier] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_typeof] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3406), + [anon_sym_var] = ACTIONS(3406), + [anon_sym_let] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_await] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_debugger] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LTtemplate_GT] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(3406), + [anon_sym_SQUOTE] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_async] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_void] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3406), + [sym_number] = ACTIONS(3406), + [sym_private_property_identifier] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [sym_super] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_null] = ACTIONS(3406), + [sym_undefined] = ACTIONS(3406), + [anon_sym_AT] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_readonly] = ACTIONS(3406), + [anon_sym_get] = ACTIONS(3406), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_declare] = ACTIONS(3406), + [anon_sym_public] = ACTIONS(3406), + [anon_sym_private] = ACTIONS(3406), + [anon_sym_protected] = ACTIONS(3406), + [anon_sym_override] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_any] = ACTIONS(3406), + [anon_sym_number] = ACTIONS(3406), + [anon_sym_boolean] = ACTIONS(3406), + [anon_sym_string] = ACTIONS(3406), + [anon_sym_symbol] = ACTIONS(3406), + [anon_sym_object] = ACTIONS(3406), + [anon_sym_abstract] = ACTIONS(3406), + [anon_sym_global] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), [sym_html_comment] = ACTIONS(5), }, [1158] = { [sym_comment] = STATE(1158), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1159] = { [sym_comment] = STATE(1159), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_identifier] = ACTIONS(3408), + [anon_sym_export] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_type] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3408), + [anon_sym_import] = ACTIONS(3408), + [anon_sym_with] = ACTIONS(3408), + [anon_sym_var] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_debugger] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_LTtemplate_GT] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_function] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_void] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3408), + [sym_number] = ACTIONS(3408), + [sym_private_property_identifier] = ACTIONS(3408), + [sym_this] = ACTIONS(3408), + [sym_super] = ACTIONS(3408), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [sym_null] = ACTIONS(3408), + [sym_undefined] = ACTIONS(3408), + [anon_sym_AT] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_readonly] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3408), + [anon_sym_declare] = ACTIONS(3408), + [anon_sym_public] = ACTIONS(3408), + [anon_sym_private] = ACTIONS(3408), + [anon_sym_protected] = ACTIONS(3408), + [anon_sym_override] = ACTIONS(3408), + [anon_sym_module] = ACTIONS(3408), + [anon_sym_any] = ACTIONS(3408), + [anon_sym_number] = ACTIONS(3408), + [anon_sym_boolean] = ACTIONS(3408), + [anon_sym_string] = ACTIONS(3408), + [anon_sym_symbol] = ACTIONS(3408), + [anon_sym_object] = ACTIONS(3408), + [anon_sym_abstract] = ACTIONS(3408), + [anon_sym_global] = ACTIONS(3408), + [anon_sym_interface] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), [sym_html_comment] = ACTIONS(5), }, [1160] = { [sym_comment] = STATE(1160), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_default] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_case] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), + [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_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_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_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_abstract] = ACTIONS(3410), + [anon_sym_global] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), [sym_html_comment] = ACTIONS(5), }, [1161] = { [sym_comment] = STATE(1161), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_default] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1162] = { [sym_comment] = STATE(1162), - [sym_identifier] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_with] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_debugger] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_finally] = ACTIONS(3171), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_LTtemplate_GT] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_function] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_void] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3171), - [sym_number] = ACTIONS(3171), - [sym_private_property_identifier] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_null] = ACTIONS(3171), - [sym_undefined] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_get] = ACTIONS(3171), - [anon_sym_set] = ACTIONS(3171), - [anon_sym_declare] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_any] = ACTIONS(3171), - [anon_sym_number] = ACTIONS(3171), - [anon_sym_boolean] = ACTIONS(3171), - [anon_sym_string] = ACTIONS(3171), - [anon_sym_symbol] = ACTIONS(3171), - [anon_sym_object] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_default] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1163] = { [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2300), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_default] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1164] = { + [sym_statement_block] = STATE(1460), [sym_comment] = STATE(1164), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_case] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [sym__automatic_semicolon] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [1165] = { [sym_comment] = STATE(1165), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_default] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_typeof] = ACTIONS(2314), - [anon_sym_import] = ACTIONS(2314), - [anon_sym_with] = ACTIONS(2314), - [anon_sym_var] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_else] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_debugger] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_throw] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_case] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LTtemplate_GT] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_function] = ACTIONS(2314), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_using] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_void] = ACTIONS(2314), - [anon_sym_delete] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2314), - [sym_number] = ACTIONS(2314), - [sym_private_property_identifier] = ACTIONS(2314), - [sym_this] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_undefined] = ACTIONS(2314), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_public] = ACTIONS(2314), - [anon_sym_private] = ACTIONS(2314), - [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_any] = ACTIONS(2314), - [anon_sym_number] = ACTIONS(2314), - [anon_sym_boolean] = ACTIONS(2314), - [anon_sym_string] = ACTIONS(2314), - [anon_sym_symbol] = ACTIONS(2314), - [anon_sym_object] = ACTIONS(2314), - [anon_sym_abstract] = ACTIONS(2314), - [anon_sym_interface] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_LTtemplate_GT] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_SQUOTE] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_using] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3414), + [sym_number] = ACTIONS(3414), + [sym_private_property_identifier] = ACTIONS(3414), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3414), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_override] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_object] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_global] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), [sym_html_comment] = ACTIONS(5), }, [1166] = { [sym_comment] = STATE(1166), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_case] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3416), + [anon_sym_export] = ACTIONS(3416), + [anon_sym_default] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_namespace] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_typeof] = ACTIONS(3416), + [anon_sym_import] = ACTIONS(3416), + [anon_sym_with] = ACTIONS(3416), + [anon_sym_var] = ACTIONS(3416), + [anon_sym_let] = ACTIONS(3416), + [anon_sym_const] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_else] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_switch] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_await] = ACTIONS(3416), + [anon_sym_while] = ACTIONS(3416), + [anon_sym_do] = ACTIONS(3416), + [anon_sym_try] = ACTIONS(3416), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_debugger] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_throw] = ACTIONS(3416), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_case] = ACTIONS(3416), + [anon_sym_yield] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_LTtemplate_GT] = ACTIONS(3416), + [anon_sym_DQUOTE] = ACTIONS(3416), + [anon_sym_SQUOTE] = ACTIONS(3416), + [anon_sym_class] = ACTIONS(3416), + [anon_sym_async] = ACTIONS(3416), + [anon_sym_function] = ACTIONS(3416), + [anon_sym_new] = ACTIONS(3416), + [anon_sym_using] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_void] = ACTIONS(3416), + [anon_sym_delete] = ACTIONS(3416), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3416), + [sym_number] = ACTIONS(3416), + [sym_private_property_identifier] = ACTIONS(3416), + [sym_this] = ACTIONS(3416), + [sym_super] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_null] = ACTIONS(3416), + [sym_undefined] = ACTIONS(3416), + [anon_sym_AT] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3416), + [anon_sym_readonly] = ACTIONS(3416), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3416), + [anon_sym_declare] = ACTIONS(3416), + [anon_sym_public] = ACTIONS(3416), + [anon_sym_private] = ACTIONS(3416), + [anon_sym_protected] = ACTIONS(3416), + [anon_sym_override] = ACTIONS(3416), + [anon_sym_module] = ACTIONS(3416), + [anon_sym_any] = ACTIONS(3416), + [anon_sym_number] = ACTIONS(3416), + [anon_sym_boolean] = ACTIONS(3416), + [anon_sym_string] = ACTIONS(3416), + [anon_sym_symbol] = ACTIONS(3416), + [anon_sym_object] = ACTIONS(3416), + [anon_sym_abstract] = ACTIONS(3416), + [anon_sym_global] = ACTIONS(3416), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_enum] = ACTIONS(3416), [sym_html_comment] = ACTIONS(5), }, [1167] = { [sym_comment] = STATE(1167), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_default] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2243), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_var] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_else] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_debugger] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_function] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_using] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_void] = ACTIONS(2243), + [anon_sym_delete] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [sym_private_property_identifier] = ACTIONS(2243), + [sym_this] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_null] = ACTIONS(2243), + [sym_undefined] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [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_abstract] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_interface] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2479), [sym_html_comment] = ACTIONS(5), }, [1168] = { [sym_comment] = STATE(1168), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1169] = { [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2366), + [sym_identifier] = ACTIONS(3388), + [anon_sym_export] = ACTIONS(3388), + [anon_sym_default] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_namespace] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3388), + [anon_sym_import] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [anon_sym_var] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_else] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_debugger] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_throw] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_case] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LTtemplate_GT] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_class] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_function] = ACTIONS(3388), + [anon_sym_new] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_private_property_identifier] = ACTIONS(3388), + [sym_this] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_undefined] = ACTIONS(3388), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_readonly] = ACTIONS(3388), + [anon_sym_get] = ACTIONS(3388), + [anon_sym_set] = ACTIONS(3388), + [anon_sym_declare] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3388), + [anon_sym_module] = ACTIONS(3388), + [anon_sym_any] = ACTIONS(3388), + [anon_sym_number] = ACTIONS(3388), + [anon_sym_boolean] = ACTIONS(3388), + [anon_sym_string] = ACTIONS(3388), + [anon_sym_symbol] = ACTIONS(3388), + [anon_sym_object] = ACTIONS(3388), + [anon_sym_abstract] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), [sym_html_comment] = ACTIONS(5), }, [1170] = { [sym_comment] = STATE(1170), - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym__automatic_semicolon] = ACTIONS(3165), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [1171] = { [sym_comment] = STATE(1171), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_case] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), + [sym_identifier] = ACTIONS(3418), + [anon_sym_export] = ACTIONS(3418), + [anon_sym_default] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_namespace] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_typeof] = ACTIONS(3418), + [anon_sym_import] = ACTIONS(3418), + [anon_sym_with] = ACTIONS(3418), + [anon_sym_var] = ACTIONS(3418), + [anon_sym_let] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_else] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_switch] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_await] = ACTIONS(3418), + [anon_sym_while] = ACTIONS(3418), + [anon_sym_do] = ACTIONS(3418), + [anon_sym_try] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_debugger] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_throw] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_case] = ACTIONS(3418), + [anon_sym_yield] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_LTtemplate_GT] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(3418), + [anon_sym_SQUOTE] = ACTIONS(3418), + [anon_sym_class] = ACTIONS(3418), + [anon_sym_async] = ACTIONS(3418), + [anon_sym_function] = ACTIONS(3418), + [anon_sym_new] = ACTIONS(3418), + [anon_sym_using] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_void] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3418), + [sym_number] = ACTIONS(3418), + [sym_private_property_identifier] = ACTIONS(3418), + [sym_this] = ACTIONS(3418), + [sym_super] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_null] = ACTIONS(3418), + [sym_undefined] = ACTIONS(3418), + [anon_sym_AT] = ACTIONS(3418), + [anon_sym_static] = ACTIONS(3418), + [anon_sym_readonly] = ACTIONS(3418), + [anon_sym_get] = ACTIONS(3418), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_declare] = ACTIONS(3418), + [anon_sym_public] = ACTIONS(3418), + [anon_sym_private] = ACTIONS(3418), + [anon_sym_protected] = ACTIONS(3418), + [anon_sym_override] = ACTIONS(3418), + [anon_sym_module] = ACTIONS(3418), + [anon_sym_any] = ACTIONS(3418), + [anon_sym_number] = ACTIONS(3418), + [anon_sym_boolean] = ACTIONS(3418), + [anon_sym_string] = ACTIONS(3418), + [anon_sym_symbol] = ACTIONS(3418), + [anon_sym_object] = ACTIONS(3418), + [anon_sym_abstract] = ACTIONS(3418), + [anon_sym_global] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), [sym_html_comment] = ACTIONS(5), }, [1172] = { [sym_comment] = STATE(1172), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_case] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [sym__automatic_semicolon] = ACTIONS(2189), [sym_html_comment] = ACTIONS(5), }, [1173] = { [sym_comment] = STATE(1173), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_case] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3420), + [anon_sym_export] = ACTIONS(3420), + [anon_sym_default] = ACTIONS(3420), + [anon_sym_type] = ACTIONS(3420), + [anon_sym_namespace] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3420), + [anon_sym_import] = ACTIONS(3420), + [anon_sym_with] = ACTIONS(3420), + [anon_sym_var] = ACTIONS(3420), + [anon_sym_let] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_do] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_debugger] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_case] = ACTIONS(3420), + [anon_sym_yield] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_LTtemplate_GT] = ACTIONS(3420), + [anon_sym_DQUOTE] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3420), + [anon_sym_class] = ACTIONS(3420), + [anon_sym_async] = ACTIONS(3420), + [anon_sym_function] = ACTIONS(3420), + [anon_sym_new] = ACTIONS(3420), + [anon_sym_using] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_void] = ACTIONS(3420), + [anon_sym_delete] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3420), + [sym_number] = ACTIONS(3420), + [sym_private_property_identifier] = ACTIONS(3420), + [sym_this] = ACTIONS(3420), + [sym_super] = ACTIONS(3420), + [sym_true] = ACTIONS(3420), + [sym_false] = ACTIONS(3420), + [sym_null] = ACTIONS(3420), + [sym_undefined] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3420), + [anon_sym_readonly] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_declare] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_module] = ACTIONS(3420), + [anon_sym_any] = ACTIONS(3420), + [anon_sym_number] = ACTIONS(3420), + [anon_sym_boolean] = ACTIONS(3420), + [anon_sym_string] = ACTIONS(3420), + [anon_sym_symbol] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_global] = ACTIONS(3420), + [anon_sym_interface] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), [sym_html_comment] = ACTIONS(5), }, [1174] = { [sym_comment] = STATE(1174), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_default] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3422), + [anon_sym_export] = ACTIONS(3422), + [anon_sym_default] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_namespace] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_typeof] = ACTIONS(3422), + [anon_sym_import] = ACTIONS(3422), + [anon_sym_with] = ACTIONS(3422), + [anon_sym_var] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_switch] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_await] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_debugger] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_case] = ACTIONS(3422), + [anon_sym_yield] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LTtemplate_GT] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3422), + [anon_sym_class] = ACTIONS(3422), + [anon_sym_async] = ACTIONS(3422), + [anon_sym_function] = ACTIONS(3422), + [anon_sym_new] = ACTIONS(3422), + [anon_sym_using] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_void] = ACTIONS(3422), + [anon_sym_delete] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3422), + [sym_number] = ACTIONS(3422), + [sym_private_property_identifier] = ACTIONS(3422), + [sym_this] = ACTIONS(3422), + [sym_super] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_null] = ACTIONS(3422), + [sym_undefined] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_static] = ACTIONS(3422), + [anon_sym_readonly] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_declare] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_override] = ACTIONS(3422), + [anon_sym_module] = ACTIONS(3422), + [anon_sym_any] = ACTIONS(3422), + [anon_sym_number] = ACTIONS(3422), + [anon_sym_boolean] = ACTIONS(3422), + [anon_sym_string] = ACTIONS(3422), + [anon_sym_symbol] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_global] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), [sym_html_comment] = ACTIONS(5), }, [1175] = { [sym_comment] = STATE(1175), - [sym_identifier] = ACTIONS(3175), - [anon_sym_export] = ACTIONS(3175), - [anon_sym_default] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_with] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_debugger] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_finally] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_LTtemplate_GT] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_void] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3175), - [sym_number] = ACTIONS(3175), - [sym_private_property_identifier] = ACTIONS(3175), - [sym_this] = ACTIONS(3175), - [sym_super] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3175), - [anon_sym_set] = ACTIONS(3175), - [anon_sym_declare] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_module] = ACTIONS(3175), - [anon_sym_any] = ACTIONS(3175), - [anon_sym_number] = ACTIONS(3175), - [anon_sym_boolean] = ACTIONS(3175), - [anon_sym_string] = ACTIONS(3175), - [anon_sym_symbol] = ACTIONS(3175), - [anon_sym_object] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), + [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_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_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_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_abstract] = ACTIONS(3424), + [anon_sym_global] = ACTIONS(3424), + [anon_sym_interface] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), [sym_html_comment] = ACTIONS(5), }, [1176] = { [sym_comment] = STATE(1176), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_case] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_global] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3430), [sym_html_comment] = ACTIONS(5), }, [1177] = { [sym_comment] = STATE(1177), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_default] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_case] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_finally] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_global] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, [1178] = { [sym_comment] = STATE(1178), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_default] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_case] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), + [sym_identifier] = ACTIONS(2229), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_debugger] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_case] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LTtemplate_GT] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_number] = ACTIONS(2229), + [sym_private_property_identifier] = ACTIONS(2229), + [sym_this] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_undefined] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_global] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, [1179] = { [sym_comment] = STATE(1179), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), + [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_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_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(3434), + [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_abstract] = ACTIONS(3434), + [anon_sym_global] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), [sym_html_comment] = ACTIONS(5), }, [1180] = { [sym_comment] = STATE(1180), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_default] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_case] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [sym_identifier] = ACTIONS(3436), + [anon_sym_export] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3436), + [anon_sym_type] = ACTIONS(3436), + [anon_sym_namespace] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_typeof] = ACTIONS(3436), + [anon_sym_import] = ACTIONS(3436), + [anon_sym_with] = ACTIONS(3436), + [anon_sym_var] = ACTIONS(3436), + [anon_sym_let] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_else] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_switch] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_await] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_do] = ACTIONS(3436), + [anon_sym_try] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_debugger] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_throw] = ACTIONS(3436), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_yield] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_LTtemplate_GT] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_class] = ACTIONS(3436), + [anon_sym_async] = ACTIONS(3436), + [anon_sym_function] = ACTIONS(3436), + [anon_sym_new] = ACTIONS(3436), + [anon_sym_using] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_void] = ACTIONS(3436), + [anon_sym_delete] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3436), + [sym_number] = ACTIONS(3436), + [sym_private_property_identifier] = ACTIONS(3436), + [sym_this] = ACTIONS(3436), + [sym_super] = ACTIONS(3436), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_null] = ACTIONS(3436), + [sym_undefined] = ACTIONS(3436), + [anon_sym_AT] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_readonly] = ACTIONS(3436), + [anon_sym_get] = ACTIONS(3436), + [anon_sym_set] = ACTIONS(3436), + [anon_sym_declare] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3436), + [anon_sym_private] = ACTIONS(3436), + [anon_sym_protected] = ACTIONS(3436), + [anon_sym_override] = ACTIONS(3436), + [anon_sym_module] = ACTIONS(3436), + [anon_sym_any] = ACTIONS(3436), + [anon_sym_number] = ACTIONS(3436), + [anon_sym_boolean] = ACTIONS(3436), + [anon_sym_string] = ACTIONS(3436), + [anon_sym_symbol] = ACTIONS(3436), + [anon_sym_object] = ACTIONS(3436), + [anon_sym_abstract] = ACTIONS(3436), + [anon_sym_global] = ACTIONS(3436), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), [sym_html_comment] = ACTIONS(5), }, [1181] = { [sym_comment] = STATE(1181), - [sym_identifier] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_default] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_else] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_debugger] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_case] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LTtemplate_GT] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_void] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3431), - [sym_number] = ACTIONS(3431), - [sym_private_property_identifier] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - [sym_super] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_null] = ACTIONS(3431), - [sym_undefined] = ACTIONS(3431), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_get] = ACTIONS(3431), - [anon_sym_set] = ACTIONS(3431), - [anon_sym_declare] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_any] = ACTIONS(3431), - [anon_sym_number] = ACTIONS(3431), - [anon_sym_boolean] = ACTIONS(3431), - [anon_sym_string] = ACTIONS(3431), - [anon_sym_symbol] = ACTIONS(3431), - [anon_sym_object] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), [sym_html_comment] = ACTIONS(5), }, [1182] = { [sym_comment] = STATE(1182), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), + [sym_identifier] = ACTIONS(3438), + [anon_sym_export] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3438), + [anon_sym_typeof] = ACTIONS(3438), + [anon_sym_import] = ACTIONS(3438), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_var] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_await] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_debugger] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LTtemplate_GT] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_SQUOTE] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(3438), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_void] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3438), + [sym_number] = ACTIONS(3438), + [sym_private_property_identifier] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [sym_super] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_null] = ACTIONS(3438), + [sym_undefined] = ACTIONS(3438), + [anon_sym_AT] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_readonly] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(3438), + [anon_sym_set] = ACTIONS(3438), + [anon_sym_declare] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_override] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_any] = ACTIONS(3438), + [anon_sym_number] = ACTIONS(3438), + [anon_sym_boolean] = ACTIONS(3438), + [anon_sym_string] = ACTIONS(3438), + [anon_sym_symbol] = ACTIONS(3438), + [anon_sym_object] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(3438), + [anon_sym_global] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), [sym_html_comment] = ACTIONS(5), }, [1183] = { [sym_comment] = STATE(1183), - [sym_identifier] = ACTIONS(2230), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2230), - [anon_sym_import] = ACTIONS(2230), - [anon_sym_with] = ACTIONS(2230), - [anon_sym_var] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LTtemplate_GT] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_private_property_identifier] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_undefined] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2412), + [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_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_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_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_abstract] = ACTIONS(3440), + [anon_sym_global] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), [sym_html_comment] = ACTIONS(5), }, [1184] = { [sym_comment] = STATE(1184), - [ts_builtin_sym_end] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym_import] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_debugger] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LTtemplate_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_function] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_number] = ACTIONS(3193), - [sym_private_property_identifier] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [sym_super] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_undefined] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3442), [sym_html_comment] = ACTIONS(5), }, [1185] = { [sym_comment] = STATE(1185), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_case] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), + [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_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_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_abstract] = ACTIONS(3444), + [anon_sym_global] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), [sym_html_comment] = ACTIONS(5), }, [1186] = { [sym_comment] = STATE(1186), - [sym_identifier] = ACTIONS(2164), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_namespace] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_with] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_do] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_debugger] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_case] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LTtemplate_GT] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_void] = ACTIONS(2164), - [anon_sym_delete] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_number] = ACTIONS(2164), - [sym_private_property_identifier] = ACTIONS(2164), - [sym_this] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2404), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_default] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_case] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, [1187] = { [sym_comment] = STATE(1187), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LTtemplate_GT] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_private_property_identifier] = ACTIONS(2156), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [sym__automatic_semicolon] = ACTIONS(2398), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_default] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_case] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, [1188] = { [sym_comment] = STATE(1188), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3448), + [anon_sym_export] = ACTIONS(3448), + [anon_sym_default] = ACTIONS(3448), + [anon_sym_type] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3448), + [anon_sym_import] = ACTIONS(3448), + [anon_sym_with] = ACTIONS(3448), + [anon_sym_var] = ACTIONS(3448), + [anon_sym_let] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_debugger] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3448), + [anon_sym_yield] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LTtemplate_GT] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_async] = ACTIONS(3448), + [anon_sym_function] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3448), + [sym_number] = ACTIONS(3448), + [sym_private_property_identifier] = ACTIONS(3448), + [sym_this] = ACTIONS(3448), + [sym_super] = ACTIONS(3448), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_null] = ACTIONS(3448), + [sym_undefined] = ACTIONS(3448), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_readonly] = ACTIONS(3448), + [anon_sym_get] = ACTIONS(3448), + [anon_sym_set] = ACTIONS(3448), + [anon_sym_declare] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3448), + [anon_sym_private] = ACTIONS(3448), + [anon_sym_protected] = ACTIONS(3448), + [anon_sym_override] = ACTIONS(3448), + [anon_sym_module] = ACTIONS(3448), + [anon_sym_any] = ACTIONS(3448), + [anon_sym_number] = ACTIONS(3448), + [anon_sym_boolean] = ACTIONS(3448), + [anon_sym_string] = ACTIONS(3448), + [anon_sym_symbol] = ACTIONS(3448), + [anon_sym_object] = ACTIONS(3448), + [anon_sym_abstract] = ACTIONS(3448), + [anon_sym_global] = ACTIONS(3448), + [anon_sym_interface] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), [sym_html_comment] = ACTIONS(5), }, [1189] = { [sym_comment] = STATE(1189), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_case] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LTtemplate_GT] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = 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), + [sym_number] = ACTIONS(2289), + [sym_private_property_identifier] = ACTIONS(2289), + [sym_this] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [sym_undefined] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_override] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_object] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2395), [sym_html_comment] = ACTIONS(5), }, [1190] = { [sym_comment] = STATE(1190), - [sym_identifier] = ACTIONS(3439), - [anon_sym_export] = ACTIONS(3439), - [anon_sym_default] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_debugger] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_case] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LTtemplate_GT] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_void] = ACTIONS(3439), - [anon_sym_delete] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3439), - [sym_number] = ACTIONS(3439), - [sym_private_property_identifier] = ACTIONS(3439), - [sym_this] = ACTIONS(3439), - [sym_super] = ACTIONS(3439), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_undefined] = ACTIONS(3439), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_get] = ACTIONS(3439), - [anon_sym_set] = ACTIONS(3439), - [anon_sym_declare] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_any] = ACTIONS(3439), - [anon_sym_number] = ACTIONS(3439), - [anon_sym_boolean] = ACTIONS(3439), - [anon_sym_string] = ACTIONS(3439), - [anon_sym_symbol] = ACTIONS(3439), - [anon_sym_object] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3450), + [anon_sym_export] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_with] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_debugger] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_LTtemplate_GT] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_function] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_SLASH] = ACTIONS(3450), + [anon_sym_LT] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3450), + [sym_number] = ACTIONS(3450), + [sym_private_property_identifier] = ACTIONS(3450), + [sym_this] = ACTIONS(3450), + [sym_super] = ACTIONS(3450), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [anon_sym_AT] = ACTIONS(3450), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3450), + [anon_sym_declare] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3450), + [anon_sym_module] = ACTIONS(3450), + [anon_sym_any] = ACTIONS(3450), + [anon_sym_number] = ACTIONS(3450), + [anon_sym_boolean] = ACTIONS(3450), + [anon_sym_string] = ACTIONS(3450), + [anon_sym_symbol] = ACTIONS(3450), + [anon_sym_object] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_global] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), [sym_html_comment] = ACTIONS(5), }, [1191] = { [sym_comment] = STATE(1191), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_type] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_typeof] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_with] = ACTIONS(3452), + [anon_sym_var] = ACTIONS(3452), + [anon_sym_let] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_await] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_debugger] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_LTtemplate_GT] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_async] = ACTIONS(3452), + [anon_sym_function] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_void] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3452), + [sym_number] = ACTIONS(3452), + [sym_private_property_identifier] = ACTIONS(3452), + [sym_this] = ACTIONS(3452), + [sym_super] = ACTIONS(3452), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [sym_null] = ACTIONS(3452), + [sym_undefined] = ACTIONS(3452), + [anon_sym_AT] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_readonly] = ACTIONS(3452), + [anon_sym_get] = ACTIONS(3452), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_declare] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_any] = ACTIONS(3452), + [anon_sym_number] = ACTIONS(3452), + [anon_sym_boolean] = ACTIONS(3452), + [anon_sym_string] = ACTIONS(3452), + [anon_sym_symbol] = ACTIONS(3452), + [anon_sym_object] = ACTIONS(3452), + [anon_sym_abstract] = ACTIONS(3452), + [anon_sym_global] = ACTIONS(3452), + [anon_sym_interface] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), [sym_html_comment] = ACTIONS(5), }, [1192] = { [sym_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_finally] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3443), + [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_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_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_abstract] = ACTIONS(3454), + [anon_sym_global] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), [sym_html_comment] = ACTIONS(5), }, [1193] = { [sym_comment] = STATE(1193), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3445), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_var] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_debugger] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_case] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_delete] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [sym_private_property_identifier] = ACTIONS(2235), + [sym_this] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_null] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), + [anon_sym_abstract] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), [sym_html_comment] = ACTIONS(5), }, [1194] = { [sym_comment] = STATE(1194), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_var] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_debugger] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_private_property_identifier] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_undefined] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_abstract] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [sym__automatic_semicolon] = ACTIONS(2379), [sym_html_comment] = ACTIONS(5), }, [1195] = { [sym_comment] = STATE(1195), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_typeof] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_with] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_debugger] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_case] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LTtemplate_GT] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_void] = ACTIONS(2192), - [anon_sym_delete] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [sym_private_property_identifier] = ACTIONS(2192), - [sym_this] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_undefined] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2392), + [sym_identifier] = ACTIONS(3456), + [anon_sym_export] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_type] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_typeof] = ACTIONS(3456), + [anon_sym_import] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_var] = ACTIONS(3456), + [anon_sym_let] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_await] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_debugger] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3456), + [anon_sym_yield] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_LTtemplate_GT] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3456), + [anon_sym_SQUOTE] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_async] = ACTIONS(3456), + [anon_sym_function] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_SLASH] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3456), + [anon_sym_TILDE] = ACTIONS(3456), + [anon_sym_void] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3456), + [sym_number] = ACTIONS(3456), + [sym_private_property_identifier] = ACTIONS(3456), + [sym_this] = ACTIONS(3456), + [sym_super] = ACTIONS(3456), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [sym_null] = ACTIONS(3456), + [sym_undefined] = ACTIONS(3456), + [anon_sym_AT] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_readonly] = ACTIONS(3456), + [anon_sym_get] = ACTIONS(3456), + [anon_sym_set] = ACTIONS(3456), + [anon_sym_declare] = ACTIONS(3456), + [anon_sym_public] = ACTIONS(3456), + [anon_sym_private] = ACTIONS(3456), + [anon_sym_protected] = ACTIONS(3456), + [anon_sym_override] = ACTIONS(3456), + [anon_sym_module] = ACTIONS(3456), + [anon_sym_any] = ACTIONS(3456), + [anon_sym_number] = ACTIONS(3456), + [anon_sym_boolean] = ACTIONS(3456), + [anon_sym_string] = ACTIONS(3456), + [anon_sym_symbol] = ACTIONS(3456), + [anon_sym_object] = ACTIONS(3456), + [anon_sym_abstract] = ACTIONS(3456), + [anon_sym_global] = ACTIONS(3456), + [anon_sym_interface] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), [sym_html_comment] = ACTIONS(5), }, [1196] = { [sym_comment] = STATE(1196), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_case] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2253), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_debugger] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LTtemplate_GT] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2253), + [sym_number] = ACTIONS(2253), + [sym_private_property_identifier] = ACTIONS(2253), + [sym_this] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_null] = ACTIONS(2253), + [sym_undefined] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [sym__automatic_semicolon] = ACTIONS(2373), [sym_html_comment] = ACTIONS(5), }, [1197] = { - [sym_statement_block] = STATE(1604), [sym_comment] = STATE(1197), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_namespace] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_var] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_switch] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_debugger] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_throw] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_using] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2263), + [anon_sym_delete] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_private_property_identifier] = ACTIONS(2263), + [sym_this] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_undefined] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_get] = ACTIONS(2263), + [anon_sym_set] = ACTIONS(2263), + [anon_sym_declare] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_private] = ACTIONS(2263), + [anon_sym_protected] = ACTIONS(2263), + [anon_sym_override] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_any] = ACTIONS(2263), + [anon_sym_number] = ACTIONS(2263), + [anon_sym_boolean] = ACTIONS(2263), + [anon_sym_string] = ACTIONS(2263), + [anon_sym_symbol] = ACTIONS(2263), + [anon_sym_object] = ACTIONS(2263), + [anon_sym_abstract] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_interface] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [sym__automatic_semicolon] = ACTIONS(2377), [sym_html_comment] = ACTIONS(5), }, [1198] = { [sym_comment] = STATE(1198), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [sym__automatic_semicolon] = ACTIONS(2383), [sym_html_comment] = ACTIONS(5), }, [1199] = { - [sym_statement_block] = STATE(1604), [sym_comment] = STATE(1199), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_default] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_else] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_case] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LTtemplate_GT] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3458), + [sym_number] = ACTIONS(3458), + [sym_private_property_identifier] = ACTIONS(3458), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_object] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_global] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), [sym_html_comment] = ACTIONS(5), }, [1200] = { [sym_comment] = STATE(1200), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_namespace] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_with] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_debugger] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LTtemplate_GT] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2222), - [anon_sym_delete] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_private_property_identifier] = ACTIONS(2222), - [sym_this] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_undefined] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_readonly] = ACTIONS(2222), - [anon_sym_get] = ACTIONS(2222), - [anon_sym_set] = ACTIONS(2222), - [anon_sym_declare] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_protected] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_any] = ACTIONS(2222), - [anon_sym_number] = ACTIONS(2222), - [anon_sym_boolean] = ACTIONS(2222), - [anon_sym_string] = ACTIONS(2222), - [anon_sym_symbol] = ACTIONS(2222), - [anon_sym_object] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [sym__automatic_semicolon] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_case] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), [sym_html_comment] = ACTIONS(5), }, [1201] = { [sym_comment] = STATE(1201), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym__automatic_semicolon] = ACTIONS(3165), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2171), [sym_html_comment] = ACTIONS(5), }, [1202] = { [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(3455), - [sym_identifier] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_with] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_debugger] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_finally] = ACTIONS(3171), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_LTtemplate_GT] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_function] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_void] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3171), - [sym_number] = ACTIONS(3171), - [sym_private_property_identifier] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_null] = ACTIONS(3171), - [sym_undefined] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_get] = ACTIONS(3171), - [anon_sym_set] = ACTIONS(3171), - [anon_sym_declare] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_any] = ACTIONS(3171), - [anon_sym_number] = ACTIONS(3171), - [anon_sym_boolean] = ACTIONS(3171), - [anon_sym_string] = ACTIONS(3171), - [anon_sym_symbol] = ACTIONS(3171), - [anon_sym_object] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_var] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_else] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_switch] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_debugger] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_using] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_delete] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_private_property_identifier] = ACTIONS(2239), + [sym_this] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_null] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_get] = ACTIONS(2239), + [anon_sym_set] = ACTIONS(2239), + [anon_sym_declare] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_private] = ACTIONS(2239), + [anon_sym_protected] = ACTIONS(2239), + [anon_sym_override] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_any] = ACTIONS(2239), + [anon_sym_number] = ACTIONS(2239), + [anon_sym_boolean] = ACTIONS(2239), + [anon_sym_string] = ACTIONS(2239), + [anon_sym_symbol] = ACTIONS(2239), + [anon_sym_object] = ACTIONS(2239), + [anon_sym_abstract] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), [sym_html_comment] = ACTIONS(5), }, [1203] = { [sym_comment] = STATE(1203), - [sym_identifier] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_default] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_typeof] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_await] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_debugger] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LTtemplate_GT] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_SQUOTE] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3457), - [sym_number] = ACTIONS(3457), - [sym_private_property_identifier] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [sym_super] = ACTIONS(3457), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_undefined] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_readonly] = ACTIONS(3457), - [anon_sym_get] = ACTIONS(3457), - [anon_sym_set] = ACTIONS(3457), - [anon_sym_declare] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_any] = ACTIONS(3457), - [anon_sym_number] = ACTIONS(3457), - [anon_sym_boolean] = ACTIONS(3457), - [anon_sym_string] = ACTIONS(3457), - [anon_sym_symbol] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_abstract] = ACTIONS(3457), - [anon_sym_interface] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), + [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_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_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_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_abstract] = ACTIONS(3460), + [anon_sym_global] = ACTIONS(3460), + [anon_sym_interface] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), [sym_html_comment] = ACTIONS(5), }, [1204] = { [sym_comment] = STATE(1204), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_default] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_case] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1205] = { [sym_comment] = STATE(1205), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_default] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_case] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), + [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_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_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_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_abstract] = ACTIONS(3462), + [anon_sym_global] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), [sym_html_comment] = ACTIONS(5), }, [1206] = { [sym_comment] = STATE(1206), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [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_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_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_abstract] = ACTIONS(3464), + [anon_sym_global] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), [sym_html_comment] = ACTIONS(5), }, [1207] = { [sym_comment] = STATE(1207), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_default] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_else] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_case] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LTtemplate_GT] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_using] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3466), + [sym_number] = ACTIONS(3466), + [sym_private_property_identifier] = ACTIONS(3466), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_object] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), [sym_html_comment] = ACTIONS(5), }, [1208] = { [sym_comment] = STATE(1208), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_with] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_debugger] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LTtemplate_GT] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_private_property_identifier] = ACTIONS(3468), + [sym_this] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_undefined] = ACTIONS(3468), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3468), + [anon_sym_set] = ACTIONS(3468), + [anon_sym_declare] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_any] = ACTIONS(3468), + [anon_sym_number] = ACTIONS(3468), + [anon_sym_boolean] = ACTIONS(3468), + [anon_sym_string] = ACTIONS(3468), + [anon_sym_symbol] = ACTIONS(3468), + [anon_sym_object] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_global] = ACTIONS(3468), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), [sym_html_comment] = ACTIONS(5), }, [1209] = { [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(3461), - [sym_identifier] = ACTIONS(3175), - [anon_sym_export] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_with] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_debugger] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_finally] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_LTtemplate_GT] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_void] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3175), - [sym_number] = ACTIONS(3175), - [sym_private_property_identifier] = ACTIONS(3175), - [sym_this] = ACTIONS(3175), - [sym_super] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3175), - [anon_sym_set] = ACTIONS(3175), - [anon_sym_declare] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_module] = ACTIONS(3175), - [anon_sym_any] = ACTIONS(3175), - [anon_sym_number] = ACTIONS(3175), - [anon_sym_boolean] = ACTIONS(3175), - [anon_sym_string] = ACTIONS(3175), - [anon_sym_symbol] = ACTIONS(3175), - [anon_sym_object] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2273), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_debugger] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LTtemplate_GT] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_number] = ACTIONS(2273), + [sym_private_property_identifier] = ACTIONS(2273), + [sym_this] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_get] = ACTIONS(2273), + [anon_sym_set] = ACTIONS(2273), + [anon_sym_declare] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_private] = ACTIONS(2273), + [anon_sym_protected] = ACTIONS(2273), + [anon_sym_override] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_any] = ACTIONS(2273), + [anon_sym_number] = ACTIONS(2273), + [anon_sym_boolean] = ACTIONS(2273), + [anon_sym_string] = ACTIONS(2273), + [anon_sym_symbol] = ACTIONS(2273), + [anon_sym_object] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [sym__automatic_semicolon] = ACTIONS(2431), [sym_html_comment] = ACTIONS(5), }, [1210] = { [sym_comment] = STATE(1210), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3463), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_debugger] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LTtemplate_GT] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_SLASH] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_undefined] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_get] = ACTIONS(2317), + [anon_sym_set] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_override] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_any] = ACTIONS(2317), + [anon_sym_number] = ACTIONS(2317), + [anon_sym_boolean] = ACTIONS(2317), + [anon_sym_string] = ACTIONS(2317), + [anon_sym_symbol] = ACTIONS(2317), + [anon_sym_object] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [sym__automatic_semicolon] = ACTIONS(2427), [sym_html_comment] = ACTIONS(5), }, [1211] = { [sym_comment] = STATE(1211), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [sym__automatic_semicolon] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LTtemplate_GT] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = 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), + [sym_number] = ACTIONS(2289), + [sym_private_property_identifier] = ACTIONS(2289), + [sym_this] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [sym_undefined] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_override] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_object] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2415), [sym_html_comment] = ACTIONS(5), }, [1212] = { [sym_comment] = STATE(1212), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_default] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_with] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_debugger] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_case] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LTtemplate_GT] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2214), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_private_property_identifier] = ACTIONS(2214), - [sym_this] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_readonly] = ACTIONS(2214), - [anon_sym_get] = ACTIONS(2214), - [anon_sym_set] = ACTIONS(2214), - [anon_sym_declare] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_protected] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_any] = ACTIONS(2214), - [anon_sym_number] = ACTIONS(2214), - [anon_sym_boolean] = ACTIONS(2214), - [anon_sym_string] = ACTIONS(2214), - [anon_sym_symbol] = ACTIONS(2214), - [anon_sym_object] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [sym__automatic_semicolon] = ACTIONS(2406), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_var] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_debugger] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_private_property_identifier] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_undefined] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_abstract] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [sym__automatic_semicolon] = ACTIONS(2411), [sym_html_comment] = ACTIONS(5), }, [1213] = { [sym_comment] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_typeof] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_with] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_else] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_debugger] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LTtemplate_GT] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_void] = ACTIONS(2192), - [anon_sym_delete] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [sym_private_property_identifier] = ACTIONS(2192), - [sym_this] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_undefined] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2334), + [ts_builtin_sym_end] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_debugger] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_private_property_identifier] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_undefined] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_declare] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_private] = ACTIONS(2299), + [anon_sym_protected] = ACTIONS(2299), + [anon_sym_override] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_any] = ACTIONS(2299), + [anon_sym_number] = ACTIONS(2299), + [anon_sym_boolean] = ACTIONS(2299), + [anon_sym_string] = ACTIONS(2299), + [anon_sym_symbol] = ACTIONS(2299), + [anon_sym_object] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_interface] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [sym__automatic_semicolon] = ACTIONS(2407), [sym_html_comment] = ACTIONS(5), }, [1214] = { [sym_comment] = STATE(1214), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_var] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_else] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_debugger] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2161), + [anon_sym_delete] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_number] = ACTIONS(2161), + [sym_private_property_identifier] = ACTIONS(2161), + [sym_this] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [sym_undefined] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_get] = ACTIONS(2161), + [anon_sym_set] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_private] = ACTIONS(2161), + [anon_sym_protected] = ACTIONS(2161), + [anon_sym_override] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_any] = ACTIONS(2161), + [anon_sym_number] = ACTIONS(2161), + [anon_sym_boolean] = ACTIONS(2161), + [anon_sym_string] = ACTIONS(2161), + [anon_sym_symbol] = ACTIONS(2161), + [anon_sym_object] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym__automatic_semicolon] = ACTIONS(2389), [sym_html_comment] = ACTIONS(5), }, [1215] = { [sym_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_default] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_case] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_global] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), [sym_html_comment] = ACTIONS(5), }, [1216] = { [sym_comment] = STATE(1216), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, [1217] = { [sym_comment] = STATE(1217), - [ts_builtin_sym_end] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2330), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_case] = ACTIONS(3220), + [anon_sym_finally] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_global] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, [1218] = { [sym_comment] = STATE(1218), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [sym__automatic_semicolon] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), [sym_html_comment] = ACTIONS(5), }, [1219] = { [sym_comment] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LTtemplate_GT] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3310), + [sym_number] = ACTIONS(3310), + [sym_private_property_identifier] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_global] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, [1220] = { [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LTtemplate_GT] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2284), - [sym_number] = ACTIONS(2284), - [sym_private_property_identifier] = ACTIONS(2284), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_object] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2490), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_var] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_debugger] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2161), + [anon_sym_delete] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_number] = ACTIONS(2161), + [sym_private_property_identifier] = ACTIONS(2161), + [sym_this] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [sym_undefined] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_get] = ACTIONS(2161), + [anon_sym_set] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_private] = ACTIONS(2161), + [anon_sym_protected] = ACTIONS(2161), + [anon_sym_override] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_any] = ACTIONS(2161), + [anon_sym_number] = ACTIONS(2161), + [anon_sym_boolean] = ACTIONS(2161), + [anon_sym_string] = ACTIONS(2161), + [anon_sym_symbol] = ACTIONS(2161), + [anon_sym_object] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym__automatic_semicolon] = ACTIONS(2501), [sym_html_comment] = ACTIONS(5), }, [1221] = { [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [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_abstract] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_else] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LTtemplate_GT] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_number] = ACTIONS(3374), + [sym_private_property_identifier] = ACTIONS(3374), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_object] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), [sym_html_comment] = ACTIONS(5), }, [1222] = { [sym_comment] = STATE(1222), - [sym_identifier] = ACTIONS(3259), - [anon_sym_export] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_typeof] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_with] = ACTIONS(3259), - [anon_sym_var] = ACTIONS(3259), - [anon_sym_let] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_await] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_debugger] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LTtemplate_GT] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_function] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3259), - [sym_number] = ACTIONS(3259), - [sym_private_property_identifier] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - [sym_super] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_null] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [anon_sym_AT] = ACTIONS(3259), - [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_abstract] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(2467), [sym_html_comment] = ACTIONS(5), }, [1223] = { [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LTtemplate_GT] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2276), - [sym_number] = ACTIONS(2276), - [sym_private_property_identifier] = ACTIONS(2276), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_object] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2474), + [sym_identifier] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_typeof] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_with] = ACTIONS(3378), + [anon_sym_var] = ACTIONS(3378), + [anon_sym_let] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_await] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_debugger] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_case] = ACTIONS(3378), + [anon_sym_yield] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_LTtemplate_GT] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_function] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_void] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3378), + [sym_number] = ACTIONS(3378), + [sym_private_property_identifier] = ACTIONS(3378), + [sym_this] = ACTIONS(3378), + [sym_super] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_null] = ACTIONS(3378), + [sym_undefined] = ACTIONS(3378), + [anon_sym_AT] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_readonly] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(3378), + [anon_sym_set] = ACTIONS(3378), + [anon_sym_declare] = ACTIONS(3378), + [anon_sym_public] = ACTIONS(3378), + [anon_sym_private] = ACTIONS(3378), + [anon_sym_protected] = ACTIONS(3378), + [anon_sym_override] = ACTIONS(3378), + [anon_sym_module] = ACTIONS(3378), + [anon_sym_any] = ACTIONS(3378), + [anon_sym_number] = ACTIONS(3378), + [anon_sym_boolean] = ACTIONS(3378), + [anon_sym_string] = ACTIONS(3378), + [anon_sym_symbol] = ACTIONS(3378), + [anon_sym_object] = ACTIONS(3378), + [anon_sym_abstract] = ACTIONS(3378), + [anon_sym_global] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), [sym_html_comment] = ACTIONS(5), }, [1224] = { [sym_comment] = STATE(1224), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_else] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LTtemplate_GT] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_number] = ACTIONS(3374), + [sym_private_property_identifier] = ACTIONS(3374), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_object] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), [sym_html_comment] = ACTIONS(5), }, [1225] = { [sym_comment] = STATE(1225), - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_else] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), + [ts_builtin_sym_end] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_with] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_debugger] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LTtemplate_GT] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_private_property_identifier] = ACTIONS(3468), + [sym_this] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_undefined] = ACTIONS(3468), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3468), + [anon_sym_set] = ACTIONS(3468), + [anon_sym_declare] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_any] = ACTIONS(3468), + [anon_sym_number] = ACTIONS(3468), + [anon_sym_boolean] = ACTIONS(3468), + [anon_sym_string] = ACTIONS(3468), + [anon_sym_symbol] = ACTIONS(3468), + [anon_sym_object] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_global] = ACTIONS(3468), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), [sym_html_comment] = ACTIONS(5), }, [1226] = { [sym_comment] = STATE(1226), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [ts_builtin_sym_end] = ACTIONS(3476), + [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_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_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_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_abstract] = ACTIONS(3462), + [anon_sym_global] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), [sym_html_comment] = ACTIONS(5), }, [1227] = { [sym_comment] = STATE(1227), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [ts_builtin_sym_end] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_global] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), [sym_html_comment] = ACTIONS(5), }, [1228] = { [sym_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3372), + [anon_sym_export] = ACTIONS(3372), + [anon_sym_default] = ACTIONS(3372), + [anon_sym_type] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_typeof] = ACTIONS(3372), + [anon_sym_import] = ACTIONS(3372), + [anon_sym_with] = ACTIONS(3372), + [anon_sym_var] = ACTIONS(3372), + [anon_sym_let] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_await] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_debugger] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_case] = ACTIONS(3372), + [anon_sym_yield] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LTtemplate_GT] = ACTIONS(3372), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_async] = ACTIONS(3372), + [anon_sym_function] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_SLASH] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3372), + [anon_sym_TILDE] = ACTIONS(3372), + [anon_sym_void] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3372), + [sym_number] = ACTIONS(3372), + [sym_private_property_identifier] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), + [sym_super] = ACTIONS(3372), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [sym_null] = ACTIONS(3372), + [sym_undefined] = ACTIONS(3372), + [anon_sym_AT] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_readonly] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3372), + [anon_sym_set] = ACTIONS(3372), + [anon_sym_declare] = ACTIONS(3372), + [anon_sym_public] = ACTIONS(3372), + [anon_sym_private] = ACTIONS(3372), + [anon_sym_protected] = ACTIONS(3372), + [anon_sym_override] = ACTIONS(3372), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_any] = ACTIONS(3372), + [anon_sym_number] = ACTIONS(3372), + [anon_sym_boolean] = ACTIONS(3372), + [anon_sym_string] = ACTIONS(3372), + [anon_sym_symbol] = ACTIONS(3372), + [anon_sym_object] = ACTIONS(3372), + [anon_sym_abstract] = ACTIONS(3372), + [anon_sym_global] = ACTIONS(3372), + [anon_sym_interface] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), [sym_html_comment] = ACTIONS(5), }, [1229] = { [sym_comment] = STATE(1229), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_default] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_case] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_global] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, [1230] = { [sym_comment] = STATE(1230), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_namespace] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_typeof] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_with] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_debugger] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LTtemplate_GT] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2268), - [anon_sym_void] = ACTIONS(2268), - [anon_sym_delete] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2268), - [sym_number] = ACTIONS(2268), - [sym_private_property_identifier] = ACTIONS(2268), - [sym_this] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_readonly] = ACTIONS(2268), - [anon_sym_get] = ACTIONS(2268), - [anon_sym_set] = ACTIONS(2268), - [anon_sym_declare] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_protected] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_any] = ACTIONS(2268), - [anon_sym_number] = ACTIONS(2268), - [anon_sym_boolean] = ACTIONS(2268), - [anon_sym_string] = ACTIONS(2268), - [anon_sym_symbol] = ACTIONS(2268), - [anon_sym_object] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [sym__automatic_semicolon] = ACTIONS(2432), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1231] = { [sym_comment] = STATE(1231), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3388), + [anon_sym_export] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_namespace] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3388), + [anon_sym_import] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [anon_sym_var] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_else] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_debugger] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_throw] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LTtemplate_GT] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_class] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_function] = ACTIONS(3388), + [anon_sym_new] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_private_property_identifier] = ACTIONS(3388), + [sym_this] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_undefined] = ACTIONS(3388), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_readonly] = ACTIONS(3388), + [anon_sym_get] = ACTIONS(3388), + [anon_sym_set] = ACTIONS(3388), + [anon_sym_declare] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3388), + [anon_sym_module] = ACTIONS(3388), + [anon_sym_any] = ACTIONS(3388), + [anon_sym_number] = ACTIONS(3388), + [anon_sym_boolean] = ACTIONS(3388), + [anon_sym_string] = ACTIONS(3388), + [anon_sym_symbol] = ACTIONS(3388), + [anon_sym_object] = ACTIONS(3388), + [anon_sym_abstract] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), [sym_html_comment] = ACTIONS(5), }, [1232] = { [sym_comment] = STATE(1232), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3388), + [anon_sym_export] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_namespace] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3388), + [anon_sym_import] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [anon_sym_var] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_else] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_debugger] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_throw] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LTtemplate_GT] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_class] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_function] = ACTIONS(3388), + [anon_sym_new] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_private_property_identifier] = ACTIONS(3388), + [sym_this] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_undefined] = ACTIONS(3388), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_readonly] = ACTIONS(3388), + [anon_sym_get] = ACTIONS(3388), + [anon_sym_set] = ACTIONS(3388), + [anon_sym_declare] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3388), + [anon_sym_module] = ACTIONS(3388), + [anon_sym_any] = ACTIONS(3388), + [anon_sym_number] = ACTIONS(3388), + [anon_sym_boolean] = ACTIONS(3388), + [anon_sym_string] = ACTIONS(3388), + [anon_sym_symbol] = ACTIONS(3388), + [anon_sym_object] = ACTIONS(3388), + [anon_sym_abstract] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), [sym_html_comment] = ACTIONS(5), }, [1233] = { [sym_comment] = STATE(1233), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), + [ts_builtin_sym_end] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3394), + [anon_sym_export] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_namespace] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_with] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_else] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_debugger] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_LTtemplate_GT] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_void] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3394), + [sym_number] = ACTIONS(3394), + [sym_private_property_identifier] = ACTIONS(3394), + [sym_this] = ACTIONS(3394), + [sym_super] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [sym_undefined] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3394), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3394), + [anon_sym_declare] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_module] = ACTIONS(3394), + [anon_sym_any] = ACTIONS(3394), + [anon_sym_number] = ACTIONS(3394), + [anon_sym_boolean] = ACTIONS(3394), + [anon_sym_string] = ACTIONS(3394), + [anon_sym_symbol] = ACTIONS(3394), + [anon_sym_object] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_global] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), [sym_html_comment] = ACTIONS(5), }, [1234] = { [sym_comment] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2452), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_global] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, [1235] = { [sym_comment] = STATE(1235), - [ts_builtin_sym_end] = ACTIONS(2312), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_object] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3392), + [anon_sym_export] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_typeof] = ACTIONS(3392), + [anon_sym_import] = ACTIONS(3392), + [anon_sym_with] = ACTIONS(3392), + [anon_sym_var] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_await] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_debugger] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LTtemplate_GT] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_SQUOTE] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_async] = ACTIONS(3392), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_void] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3392), + [sym_number] = ACTIONS(3392), + [sym_private_property_identifier] = ACTIONS(3392), + [sym_this] = ACTIONS(3392), + [sym_super] = ACTIONS(3392), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [sym_null] = ACTIONS(3392), + [sym_undefined] = ACTIONS(3392), + [anon_sym_AT] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_readonly] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3392), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_declare] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_override] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_any] = ACTIONS(3392), + [anon_sym_number] = ACTIONS(3392), + [anon_sym_boolean] = ACTIONS(3392), + [anon_sym_string] = ACTIONS(3392), + [anon_sym_symbol] = ACTIONS(3392), + [anon_sym_object] = ACTIONS(3392), + [anon_sym_abstract] = ACTIONS(3392), + [anon_sym_global] = ACTIONS(3392), + [anon_sym_interface] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), [sym_html_comment] = ACTIONS(5), }, [1236] = { [sym_comment] = STATE(1236), - [ts_builtin_sym_end] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_typeof] = ACTIONS(2314), - [anon_sym_import] = ACTIONS(2314), - [anon_sym_with] = ACTIONS(2314), - [anon_sym_var] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_else] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_debugger] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_throw] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LTtemplate_GT] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_function] = ACTIONS(2314), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_using] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_void] = ACTIONS(2314), - [anon_sym_delete] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2314), - [sym_number] = ACTIONS(2314), - [sym_private_property_identifier] = ACTIONS(2314), - [sym_this] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_undefined] = ACTIONS(2314), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_public] = ACTIONS(2314), - [anon_sym_private] = ACTIONS(2314), - [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_any] = ACTIONS(2314), - [anon_sym_number] = ACTIONS(2314), - [anon_sym_boolean] = ACTIONS(2314), - [anon_sym_string] = ACTIONS(2314), - [anon_sym_symbol] = ACTIONS(2314), - [anon_sym_object] = ACTIONS(2314), - [anon_sym_abstract] = ACTIONS(2314), - [anon_sym_interface] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_global] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1237] = { [sym_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(3473), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LTtemplate_GT] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3246), + [sym_number] = ACTIONS(3246), + [sym_private_property_identifier] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_object] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_global] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), [sym_html_comment] = ACTIONS(5), }, [1238] = { [sym_comment] = STATE(1238), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3243), - [anon_sym_any] = ACTIONS(3243), - [anon_sym_number] = ACTIONS(3243), - [anon_sym_boolean] = ACTIONS(3243), - [anon_sym_string] = ACTIONS(3243), - [anon_sym_symbol] = ACTIONS(3243), - [anon_sym_object] = ACTIONS(3243), - [anon_sym_abstract] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, [1239] = { [sym_comment] = STATE(1239), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(3380), + [anon_sym_export] = ACTIONS(3380), + [anon_sym_type] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_typeof] = ACTIONS(3380), + [anon_sym_import] = ACTIONS(3380), + [anon_sym_with] = ACTIONS(3380), + [anon_sym_var] = ACTIONS(3380), + [anon_sym_let] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_await] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_debugger] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_yield] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LTtemplate_GT] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_async] = ACTIONS(3380), + [anon_sym_function] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_void] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3380), + [sym_number] = ACTIONS(3380), + [sym_private_property_identifier] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), + [sym_super] = ACTIONS(3380), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [sym_null] = ACTIONS(3380), + [sym_undefined] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_readonly] = ACTIONS(3380), + [anon_sym_get] = ACTIONS(3380), + [anon_sym_set] = ACTIONS(3380), + [anon_sym_declare] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_override] = ACTIONS(3380), + [anon_sym_module] = ACTIONS(3380), + [anon_sym_any] = ACTIONS(3380), + [anon_sym_number] = ACTIONS(3380), + [anon_sym_boolean] = ACTIONS(3380), + [anon_sym_string] = ACTIONS(3380), + [anon_sym_symbol] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_abstract] = ACTIONS(3380), + [anon_sym_global] = ACTIONS(3380), + [anon_sym_interface] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), [sym_html_comment] = ACTIONS(5), }, [1240] = { [sym_comment] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_with] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_else] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_debugger] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_LTtemplate_GT] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_void] = ACTIONS(3237), - [anon_sym_delete] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3237), - [sym_number] = ACTIONS(3237), - [sym_private_property_identifier] = ACTIONS(3237), - [sym_this] = ACTIONS(3237), - [sym_super] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_null] = ACTIONS(3237), - [sym_undefined] = ACTIONS(3237), - [anon_sym_AT] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), + [ts_builtin_sym_end] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_typeof] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_with] = ACTIONS(3378), + [anon_sym_var] = ACTIONS(3378), + [anon_sym_let] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_await] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_debugger] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_yield] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_LTtemplate_GT] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_function] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_void] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3378), + [sym_number] = ACTIONS(3378), + [sym_private_property_identifier] = ACTIONS(3378), + [sym_this] = ACTIONS(3378), + [sym_super] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_null] = ACTIONS(3378), + [sym_undefined] = ACTIONS(3378), + [anon_sym_AT] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_readonly] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(3378), + [anon_sym_set] = ACTIONS(3378), + [anon_sym_declare] = ACTIONS(3378), + [anon_sym_public] = ACTIONS(3378), + [anon_sym_private] = ACTIONS(3378), + [anon_sym_protected] = ACTIONS(3378), + [anon_sym_override] = ACTIONS(3378), + [anon_sym_module] = ACTIONS(3378), + [anon_sym_any] = ACTIONS(3378), + [anon_sym_number] = ACTIONS(3378), + [anon_sym_boolean] = ACTIONS(3378), + [anon_sym_string] = ACTIONS(3378), + [anon_sym_symbol] = ACTIONS(3378), + [anon_sym_object] = ACTIONS(3378), + [anon_sym_abstract] = ACTIONS(3378), + [anon_sym_global] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), [sym_html_comment] = ACTIONS(5), }, [1241] = { [sym_comment] = STATE(1241), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3229), - [anon_sym_export] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_debugger] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_LTtemplate_GT] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_function] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3229), - [anon_sym_delete] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3229), - [sym_number] = ACTIONS(3229), - [sym_private_property_identifier] = ACTIONS(3229), - [sym_this] = ACTIONS(3229), - [sym_super] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [sym_undefined] = ACTIONS(3229), - [anon_sym_AT] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_get] = ACTIONS(3229), - [anon_sym_set] = ACTIONS(3229), - [anon_sym_declare] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_module] = ACTIONS(3229), - [anon_sym_any] = ACTIONS(3229), - [anon_sym_number] = ACTIONS(3229), - [anon_sym_boolean] = ACTIONS(3229), - [anon_sym_string] = ACTIONS(3229), - [anon_sym_symbol] = ACTIONS(3229), - [anon_sym_object] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_global] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1242] = { [sym_comment] = STATE(1242), - [ts_builtin_sym_end] = ACTIONS(3481), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3492), [sym_html_comment] = ACTIONS(5), }, [1243] = { [sym_comment] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3483), - [sym_identifier] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_debugger] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LTtemplate_GT] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_number] = ACTIONS(3325), - [sym_private_property_identifier] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - [sym_super] = ACTIONS(3325), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [sym_null] = ACTIONS(3325), - [sym_undefined] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3325), - [anon_sym_set] = ACTIONS(3325), - [anon_sym_declare] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_any] = ACTIONS(3325), - [anon_sym_number] = ACTIONS(3325), - [anon_sym_boolean] = ACTIONS(3325), - [anon_sym_string] = ACTIONS(3325), - [anon_sym_symbol] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1244] = { [sym_comment] = STATE(1244), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_default] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LTtemplate_GT] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3270), + [sym_number] = ACTIONS(3270), + [sym_private_property_identifier] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_global] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1245] = { [sym_comment] = STATE(1245), - [sym_identifier] = ACTIONS(3267), - [anon_sym_export] = ACTIONS(3267), - [anon_sym_default] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_namespace] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_typeof] = ACTIONS(3267), - [anon_sym_import] = ACTIONS(3267), - [anon_sym_with] = ACTIONS(3267), - [anon_sym_var] = ACTIONS(3267), - [anon_sym_let] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_switch] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_await] = ACTIONS(3267), - [anon_sym_while] = ACTIONS(3267), - [anon_sym_do] = ACTIONS(3267), - [anon_sym_try] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_debugger] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_throw] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_case] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LTtemplate_GT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [anon_sym_SQUOTE] = ACTIONS(3267), - [anon_sym_class] = ACTIONS(3267), - [anon_sym_async] = ACTIONS(3267), - [anon_sym_function] = ACTIONS(3267), - [anon_sym_new] = ACTIONS(3267), - [anon_sym_using] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_void] = ACTIONS(3267), - [anon_sym_delete] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3267), - [sym_number] = ACTIONS(3267), - [sym_private_property_identifier] = ACTIONS(3267), - [sym_this] = ACTIONS(3267), - [sym_super] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_null] = ACTIONS(3267), - [sym_undefined] = ACTIONS(3267), - [anon_sym_AT] = ACTIONS(3267), - [anon_sym_static] = ACTIONS(3267), - [anon_sym_readonly] = ACTIONS(3267), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3267), - [anon_sym_public] = ACTIONS(3267), - [anon_sym_private] = ACTIONS(3267), - [anon_sym_protected] = ACTIONS(3267), - [anon_sym_override] = ACTIONS(3267), - [anon_sym_module] = ACTIONS(3267), - [anon_sym_any] = ACTIONS(3267), - [anon_sym_number] = ACTIONS(3267), - [anon_sym_boolean] = ACTIONS(3267), - [anon_sym_string] = ACTIONS(3267), - [anon_sym_symbol] = ACTIONS(3267), - [anon_sym_object] = ACTIONS(3267), - [anon_sym_abstract] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), + [ts_builtin_sym_end] = ACTIONS(3202), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_global] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, [1246] = { [sym_comment] = STATE(1246), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_default] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_case] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_finally] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_global] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, [1247] = { [sym_comment] = STATE(1247), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [sym_identifier] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_typeof] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_case] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2209), + [anon_sym_delete] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(2209), + [sym_this] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_null] = ACTIONS(2209), + [sym_undefined] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_declare] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_protected] = ACTIONS(2209), + [anon_sym_override] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_any] = ACTIONS(2209), + [anon_sym_number] = ACTIONS(2209), + [anon_sym_boolean] = ACTIONS(2209), + [anon_sym_string] = ACTIONS(2209), + [anon_sym_symbol] = ACTIONS(2209), + [anon_sym_object] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), [sym_html_comment] = ACTIONS(5), }, [1248] = { [sym_comment] = STATE(1248), - [ts_builtin_sym_end] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1249] = { [sym_comment] = STATE(1249), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), + [ts_builtin_sym_end] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3372), + [anon_sym_export] = ACTIONS(3372), + [anon_sym_type] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_typeof] = ACTIONS(3372), + [anon_sym_import] = ACTIONS(3372), + [anon_sym_with] = ACTIONS(3372), + [anon_sym_var] = ACTIONS(3372), + [anon_sym_let] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_else] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_await] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_debugger] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_yield] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LTtemplate_GT] = ACTIONS(3372), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_async] = ACTIONS(3372), + [anon_sym_function] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_SLASH] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3372), + [anon_sym_TILDE] = ACTIONS(3372), + [anon_sym_void] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3372), + [sym_number] = ACTIONS(3372), + [sym_private_property_identifier] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), + [sym_super] = ACTIONS(3372), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [sym_null] = ACTIONS(3372), + [sym_undefined] = ACTIONS(3372), + [anon_sym_AT] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_readonly] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3372), + [anon_sym_set] = ACTIONS(3372), + [anon_sym_declare] = ACTIONS(3372), + [anon_sym_public] = ACTIONS(3372), + [anon_sym_private] = ACTIONS(3372), + [anon_sym_protected] = ACTIONS(3372), + [anon_sym_override] = ACTIONS(3372), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_any] = ACTIONS(3372), + [anon_sym_number] = ACTIONS(3372), + [anon_sym_boolean] = ACTIONS(3372), + [anon_sym_string] = ACTIONS(3372), + [anon_sym_symbol] = ACTIONS(3372), + [anon_sym_object] = ACTIONS(3372), + [anon_sym_abstract] = ACTIONS(3372), + [anon_sym_global] = ACTIONS(3372), + [anon_sym_interface] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), [sym_html_comment] = ACTIONS(5), }, [1250] = { [sym_comment] = STATE(1250), - [ts_builtin_sym_end] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_global] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3498), [sym_html_comment] = ACTIONS(5), }, [1251] = { [sym_comment] = STATE(1251), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_typeof] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_await] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_debugger] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LTtemplate_GT] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_number] = ACTIONS(3381), - [sym_private_property_identifier] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_undefined] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_readonly] = ACTIONS(3381), - [anon_sym_get] = ACTIONS(3381), - [anon_sym_set] = ACTIONS(3381), - [anon_sym_declare] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_protected] = ACTIONS(3381), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_any] = ACTIONS(3381), - [anon_sym_number] = ACTIONS(3381), - [anon_sym_boolean] = ACTIONS(3381), - [anon_sym_string] = ACTIONS(3381), - [anon_sym_symbol] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_abstract] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_default] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_case] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_global] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, [1252] = { [sym_comment] = STATE(1252), - [ts_builtin_sym_end] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LTtemplate_GT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_number] = ACTIONS(3326), + [sym_private_property_identifier] = ACTIONS(3326), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_override] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_object] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_global] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, [1253] = { [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_else] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_module] = ACTIONS(3221), - [anon_sym_any] = ACTIONS(3221), - [anon_sym_number] = ACTIONS(3221), - [anon_sym_boolean] = ACTIONS(3221), - [anon_sym_string] = ACTIONS(3221), - [anon_sym_symbol] = ACTIONS(3221), - [anon_sym_object] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1254] = { [sym_comment] = STATE(1254), - [ts_builtin_sym_end] = ACTIONS(3461), - [sym_identifier] = ACTIONS(3175), - [anon_sym_export] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_with] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_debugger] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_finally] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_LTtemplate_GT] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_void] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3175), - [sym_number] = ACTIONS(3175), - [sym_private_property_identifier] = ACTIONS(3175), - [sym_this] = ACTIONS(3175), - [sym_super] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3175), - [anon_sym_set] = ACTIONS(3175), - [anon_sym_declare] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_module] = ACTIONS(3175), - [anon_sym_any] = ACTIONS(3175), - [anon_sym_number] = ACTIONS(3175), - [anon_sym_boolean] = ACTIONS(3175), - [anon_sym_string] = ACTIONS(3175), - [anon_sym_symbol] = ACTIONS(3175), - [anon_sym_object] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_default] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_case] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_global] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, [1255] = { [sym_comment] = STATE(1255), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_default] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_case] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_global] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, [1256] = { [sym_comment] = STATE(1256), - [sym_identifier] = ACTIONS(3283), - [anon_sym_export] = ACTIONS(3283), - [anon_sym_default] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_with] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_debugger] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_case] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_LTtemplate_GT] = ACTIONS(3283), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_function] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_void] = ACTIONS(3283), - [anon_sym_delete] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_number] = ACTIONS(3283), - [sym_private_property_identifier] = ACTIONS(3283), - [sym_this] = ACTIONS(3283), - [sym_super] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_null] = ACTIONS(3283), - [sym_undefined] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_get] = ACTIONS(3283), - [anon_sym_set] = ACTIONS(3283), - [anon_sym_declare] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_module] = ACTIONS(3283), - [anon_sym_any] = ACTIONS(3283), - [anon_sym_number] = ACTIONS(3283), - [anon_sym_boolean] = ACTIONS(3283), - [anon_sym_string] = ACTIONS(3283), - [anon_sym_symbol] = ACTIONS(3283), - [anon_sym_object] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1257] = { [sym_comment] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1258] = { [sym_comment] = STATE(1258), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), - [anon_sym_abstract] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_global] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, [1259] = { [sym_comment] = STATE(1259), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_default] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_case] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_global] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, [1260] = { [sym_comment] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_global] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, [1261] = { [sym_comment] = STATE(1261), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_default] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_case] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), + [ts_builtin_sym_end] = ACTIONS(3506), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_else] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LTtemplate_GT] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_using] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3466), + [sym_number] = ACTIONS(3466), + [sym_private_property_identifier] = ACTIONS(3466), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_object] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), [sym_html_comment] = ACTIONS(5), }, [1262] = { [sym_comment] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_case] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1263] = { [sym_comment] = STATE(1263), - [sym_identifier] = ACTIONS(3301), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_default] = ACTIONS(3301), - [anon_sym_type] = ACTIONS(3301), - [anon_sym_namespace] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_typeof] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_with] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_const] = ACTIONS(3301), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3301), - [anon_sym_switch] = ACTIONS(3301), - [anon_sym_for] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_await] = ACTIONS(3301), - [anon_sym_while] = ACTIONS(3301), - [anon_sym_do] = ACTIONS(3301), - [anon_sym_try] = ACTIONS(3301), - [anon_sym_break] = ACTIONS(3301), - [anon_sym_continue] = ACTIONS(3301), - [anon_sym_debugger] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3301), - [anon_sym_throw] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_yield] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LTtemplate_GT] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [anon_sym_SQUOTE] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_function] = ACTIONS(3301), - [anon_sym_new] = ACTIONS(3301), - [anon_sym_using] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_void] = ACTIONS(3301), - [anon_sym_delete] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3301), - [sym_number] = ACTIONS(3301), - [sym_private_property_identifier] = ACTIONS(3301), - [sym_this] = ACTIONS(3301), - [sym_super] = ACTIONS(3301), - [sym_true] = ACTIONS(3301), - [sym_false] = ACTIONS(3301), - [sym_null] = ACTIONS(3301), - [sym_undefined] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3301), - [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_abstract] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3450), + [anon_sym_export] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_with] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_debugger] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_LTtemplate_GT] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_function] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_SLASH] = ACTIONS(3450), + [anon_sym_LT] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3450), + [sym_number] = ACTIONS(3450), + [sym_private_property_identifier] = ACTIONS(3450), + [sym_this] = ACTIONS(3450), + [sym_super] = ACTIONS(3450), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [anon_sym_AT] = ACTIONS(3450), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3450), + [anon_sym_declare] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3450), + [anon_sym_module] = ACTIONS(3450), + [anon_sym_any] = ACTIONS(3450), + [anon_sym_number] = ACTIONS(3450), + [anon_sym_boolean] = ACTIONS(3450), + [anon_sym_string] = ACTIONS(3450), + [anon_sym_symbol] = ACTIONS(3450), + [anon_sym_object] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_global] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), [sym_html_comment] = ACTIONS(5), }, [1264] = { [sym_comment] = STATE(1264), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3303), - [anon_sym_default] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym_import] = ACTIONS(3303), - [anon_sym_with] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_debugger] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_case] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_LTtemplate_GT] = ACTIONS(3303), - [anon_sym_DQUOTE] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_function] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_void] = ACTIONS(3303), - [anon_sym_delete] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3303), - [sym_number] = ACTIONS(3303), - [sym_private_property_identifier] = ACTIONS(3303), - [sym_this] = ACTIONS(3303), - [sym_super] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_undefined] = ACTIONS(3303), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_get] = ACTIONS(3303), - [anon_sym_set] = ACTIONS(3303), - [anon_sym_declare] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_module] = ACTIONS(3303), - [anon_sym_any] = ACTIONS(3303), - [anon_sym_number] = ACTIONS(3303), - [anon_sym_boolean] = ACTIONS(3303), - [anon_sym_string] = ACTIONS(3303), - [anon_sym_symbol] = ACTIONS(3303), - [anon_sym_object] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3448), + [anon_sym_export] = ACTIONS(3448), + [anon_sym_type] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3448), + [anon_sym_import] = ACTIONS(3448), + [anon_sym_with] = ACTIONS(3448), + [anon_sym_var] = ACTIONS(3448), + [anon_sym_let] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_debugger] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_yield] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LTtemplate_GT] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_async] = ACTIONS(3448), + [anon_sym_function] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3448), + [sym_number] = ACTIONS(3448), + [sym_private_property_identifier] = ACTIONS(3448), + [sym_this] = ACTIONS(3448), + [sym_super] = ACTIONS(3448), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_null] = ACTIONS(3448), + [sym_undefined] = ACTIONS(3448), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_readonly] = ACTIONS(3448), + [anon_sym_get] = ACTIONS(3448), + [anon_sym_set] = ACTIONS(3448), + [anon_sym_declare] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3448), + [anon_sym_private] = ACTIONS(3448), + [anon_sym_protected] = ACTIONS(3448), + [anon_sym_override] = ACTIONS(3448), + [anon_sym_module] = ACTIONS(3448), + [anon_sym_any] = ACTIONS(3448), + [anon_sym_number] = ACTIONS(3448), + [anon_sym_boolean] = ACTIONS(3448), + [anon_sym_string] = ACTIONS(3448), + [anon_sym_symbol] = ACTIONS(3448), + [anon_sym_object] = ACTIONS(3448), + [anon_sym_abstract] = ACTIONS(3448), + [anon_sym_global] = ACTIONS(3448), + [anon_sym_interface] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), [sym_html_comment] = ACTIONS(5), }, [1265] = { [sym_comment] = STATE(1265), - [sym_identifier] = ACTIONS(3305), - [anon_sym_export] = ACTIONS(3305), - [anon_sym_default] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_typeof] = ACTIONS(3305), - [anon_sym_import] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_var] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_const] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_switch] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_await] = ACTIONS(3305), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_try] = ACTIONS(3305), - [anon_sym_break] = ACTIONS(3305), - [anon_sym_continue] = ACTIONS(3305), - [anon_sym_debugger] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3305), - [anon_sym_throw] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_case] = ACTIONS(3305), - [anon_sym_yield] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LTtemplate_GT] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_using] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_void] = ACTIONS(3305), - [anon_sym_delete] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3305), - [sym_number] = ACTIONS(3305), - [sym_private_property_identifier] = ACTIONS(3305), - [sym_this] = ACTIONS(3305), - [sym_super] = ACTIONS(3305), - [sym_true] = ACTIONS(3305), - [sym_false] = ACTIONS(3305), - [sym_null] = ACTIONS(3305), - [sym_undefined] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3305), - [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_abstract] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3305), - [anon_sym_enum] = ACTIONS(3305), + [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_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_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_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_abstract] = ACTIONS(3410), + [anon_sym_global] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), [sym_html_comment] = ACTIONS(5), }, [1266] = { [sym_comment] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym_identifier] = ACTIONS(3439), - [anon_sym_export] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_debugger] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LTtemplate_GT] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_void] = ACTIONS(3439), - [anon_sym_delete] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3439), - [sym_number] = ACTIONS(3439), - [sym_private_property_identifier] = ACTIONS(3439), - [sym_this] = ACTIONS(3439), - [sym_super] = ACTIONS(3439), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_undefined] = ACTIONS(3439), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_get] = ACTIONS(3439), - [anon_sym_set] = ACTIONS(3439), - [anon_sym_declare] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_any] = ACTIONS(3439), - [anon_sym_number] = ACTIONS(3439), - [anon_sym_boolean] = ACTIONS(3439), - [anon_sym_string] = ACTIONS(3439), - [anon_sym_symbol] = ACTIONS(3439), - [anon_sym_object] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, [1267] = { [sym_comment] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, [1268] = { [sym_comment] = STATE(1268), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2300), + [ts_builtin_sym_end] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_global] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, [1269] = { [sym_comment] = STATE(1269), - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3422), + [anon_sym_export] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_namespace] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_typeof] = ACTIONS(3422), + [anon_sym_import] = ACTIONS(3422), + [anon_sym_with] = ACTIONS(3422), + [anon_sym_var] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_switch] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_await] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_debugger] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_yield] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LTtemplate_GT] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3422), + [anon_sym_class] = ACTIONS(3422), + [anon_sym_async] = ACTIONS(3422), + [anon_sym_function] = ACTIONS(3422), + [anon_sym_new] = ACTIONS(3422), + [anon_sym_using] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_void] = ACTIONS(3422), + [anon_sym_delete] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3422), + [sym_number] = ACTIONS(3422), + [sym_private_property_identifier] = ACTIONS(3422), + [sym_this] = ACTIONS(3422), + [sym_super] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_null] = ACTIONS(3422), + [sym_undefined] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_static] = ACTIONS(3422), + [anon_sym_readonly] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_declare] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_override] = ACTIONS(3422), + [anon_sym_module] = ACTIONS(3422), + [anon_sym_any] = ACTIONS(3422), + [anon_sym_number] = ACTIONS(3422), + [anon_sym_boolean] = ACTIONS(3422), + [anon_sym_string] = ACTIONS(3422), + [anon_sym_symbol] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_global] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), [sym_html_comment] = ACTIONS(5), }, [1270] = { [sym_comment] = STATE(1270), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym_identifier] = ACTIONS(3251), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_typeof] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_with] = ACTIONS(3251), - [anon_sym_var] = ACTIONS(3251), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_else] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_await] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LTtemplate_GT] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_async] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_number] = ACTIONS(3251), - [sym_private_property_identifier] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - [sym_super] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [anon_sym_AT] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3251), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_declare] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_override] = ACTIONS(3251), - [anon_sym_module] = ACTIONS(3251), - [anon_sym_any] = ACTIONS(3251), - [anon_sym_number] = ACTIONS(3251), - [anon_sym_boolean] = ACTIONS(3251), - [anon_sym_string] = ACTIONS(3251), - [anon_sym_symbol] = ACTIONS(3251), - [anon_sym_object] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), + [ts_builtin_sym_end] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_LTtemplate_GT] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_SQUOTE] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_using] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3414), + [sym_number] = ACTIONS(3414), + [sym_private_property_identifier] = ACTIONS(3414), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3414), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_override] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_object] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_global] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), [sym_html_comment] = ACTIONS(5), }, [1271] = { [sym_comment] = STATE(1271), - [sym_identifier] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_debugger] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LTtemplate_GT] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3337), - [sym_number] = ACTIONS(3337), - [sym_private_property_identifier] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - [sym_super] = ACTIONS(3337), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [sym_null] = ACTIONS(3337), - [sym_undefined] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_get] = ACTIONS(3337), - [anon_sym_set] = ACTIONS(3337), - [anon_sym_declare] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_any] = ACTIONS(3337), - [anon_sym_number] = ACTIONS(3337), - [anon_sym_boolean] = ACTIONS(3337), - [anon_sym_string] = ACTIONS(3337), - [anon_sym_symbol] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1272] = { [sym_comment] = STATE(1272), - [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_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_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_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_abstract] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), + [ts_builtin_sym_end] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_with] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_debugger] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_finally] = ACTIONS(3170), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_LTtemplate_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3170), + [sym_private_property_identifier] = ACTIONS(3170), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_global] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, [1273] = { [sym_comment] = STATE(1273), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_case] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [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_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1274] = { [sym_comment] = STATE(1274), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_case] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [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_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, [1275] = { [sym_comment] = STATE(1275), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_case] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_else] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LTtemplate_GT] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_private_property_identifier] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_global] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), [sym_html_comment] = ACTIONS(5), }, [1276] = { [sym_comment] = STATE(1276), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_debugger] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_case] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_delete] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_private_property_identifier] = ACTIONS(2219), + [sym_this] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_null] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_abstract] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, [1277] = { [sym_comment] = STATE(1277), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_default] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [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_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_case] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_global] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, [1278] = { [sym_comment] = STATE(1278), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_default] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_case] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), + [ts_builtin_sym_end] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_global] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, [1279] = { [sym_comment] = STATE(1279), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_default] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_case] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_global] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, [1280] = { [sym_comment] = STATE(1280), - [ts_builtin_sym_end] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_else] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_namespace] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_typeof] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_var] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_switch] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_debugger] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_throw] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LTtemplate_GT] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_using] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_void] = ACTIONS(2263), + [anon_sym_delete] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2263), + [sym_number] = ACTIONS(2263), + [sym_private_property_identifier] = ACTIONS(2263), + [sym_this] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_undefined] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_get] = ACTIONS(2263), + [anon_sym_set] = ACTIONS(2263), + [anon_sym_declare] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_private] = ACTIONS(2263), + [anon_sym_protected] = ACTIONS(2263), + [anon_sym_override] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_any] = ACTIONS(2263), + [anon_sym_number] = ACTIONS(2263), + [anon_sym_boolean] = ACTIONS(2263), + [anon_sym_string] = ACTIONS(2263), + [anon_sym_symbol] = ACTIONS(2263), + [anon_sym_object] = ACTIONS(2263), + [anon_sym_abstract] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_interface] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [sym__automatic_semicolon] = ACTIONS(2503), [sym_html_comment] = ACTIONS(5), }, [1281] = { [sym_comment] = STATE(1281), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_default] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_case] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LTtemplate_GT] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3310), + [sym_number] = ACTIONS(3310), + [sym_private_property_identifier] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_global] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, [1282] = { [sym_comment] = STATE(1282), - [ts_builtin_sym_end] = ACTIONS(3511), - [sym_identifier] = ACTIONS(3297), - [anon_sym_export] = ACTIONS(3297), - [anon_sym_type] = ACTIONS(3297), - [anon_sym_namespace] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_typeof] = ACTIONS(3297), - [anon_sym_import] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3297), - [anon_sym_const] = ACTIONS(3297), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_else] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3297), - [anon_sym_switch] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_await] = ACTIONS(3297), - [anon_sym_while] = ACTIONS(3297), - [anon_sym_do] = ACTIONS(3297), - [anon_sym_try] = ACTIONS(3297), - [anon_sym_break] = ACTIONS(3297), - [anon_sym_continue] = ACTIONS(3297), - [anon_sym_debugger] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3297), - [anon_sym_throw] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LTtemplate_GT] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [anon_sym_SQUOTE] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_async] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3297), - [anon_sym_using] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_void] = ACTIONS(3297), - [anon_sym_delete] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3297), - [sym_number] = ACTIONS(3297), - [sym_private_property_identifier] = ACTIONS(3297), - [sym_this] = ACTIONS(3297), - [sym_super] = ACTIONS(3297), - [sym_true] = ACTIONS(3297), - [sym_false] = ACTIONS(3297), - [sym_null] = ACTIONS(3297), - [sym_undefined] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3297), - [anon_sym_set] = ACTIONS(3297), - [anon_sym_declare] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_protected] = ACTIONS(3297), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_any] = ACTIONS(3297), - [anon_sym_number] = ACTIONS(3297), - [anon_sym_boolean] = ACTIONS(3297), - [anon_sym_string] = ACTIONS(3297), - [anon_sym_symbol] = ACTIONS(3297), - [anon_sym_object] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_global] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, [1283] = { [sym_comment] = STATE(1283), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_default] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [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_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_global] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, [1284] = { [sym_comment] = STATE(1284), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_global] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, [1285] = { [sym_comment] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [sym__automatic_semicolon] = ACTIONS(2202), + [sym_identifier] = ACTIONS(3436), + [anon_sym_export] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3436), + [anon_sym_type] = ACTIONS(3436), + [anon_sym_namespace] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_typeof] = ACTIONS(3436), + [anon_sym_import] = ACTIONS(3436), + [anon_sym_with] = ACTIONS(3436), + [anon_sym_var] = ACTIONS(3436), + [anon_sym_let] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_switch] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_await] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_do] = ACTIONS(3436), + [anon_sym_try] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_debugger] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_throw] = ACTIONS(3436), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_yield] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_LTtemplate_GT] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_class] = ACTIONS(3436), + [anon_sym_async] = ACTIONS(3436), + [anon_sym_function] = ACTIONS(3436), + [anon_sym_new] = ACTIONS(3436), + [anon_sym_using] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_void] = ACTIONS(3436), + [anon_sym_delete] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3436), + [sym_number] = ACTIONS(3436), + [sym_private_property_identifier] = ACTIONS(3436), + [sym_this] = ACTIONS(3436), + [sym_super] = ACTIONS(3436), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_null] = ACTIONS(3436), + [sym_undefined] = ACTIONS(3436), + [anon_sym_AT] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_readonly] = ACTIONS(3436), + [anon_sym_get] = ACTIONS(3436), + [anon_sym_set] = ACTIONS(3436), + [anon_sym_declare] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3436), + [anon_sym_private] = ACTIONS(3436), + [anon_sym_protected] = ACTIONS(3436), + [anon_sym_override] = ACTIONS(3436), + [anon_sym_module] = ACTIONS(3436), + [anon_sym_any] = ACTIONS(3436), + [anon_sym_number] = ACTIONS(3436), + [anon_sym_boolean] = ACTIONS(3436), + [anon_sym_string] = ACTIONS(3436), + [anon_sym_symbol] = ACTIONS(3436), + [anon_sym_object] = ACTIONS(3436), + [anon_sym_abstract] = ACTIONS(3436), + [anon_sym_global] = ACTIONS(3436), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), [sym_html_comment] = ACTIONS(5), }, [1286] = { [sym_comment] = STATE(1286), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_global] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1287] = { [sym_comment] = STATE(1287), - [ts_builtin_sym_end] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2456), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2253), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_typeof] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_var] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_debugger] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LTtemplate_GT] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_void] = ACTIONS(2253), + [anon_sym_delete] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2253), + [sym_number] = ACTIONS(2253), + [sym_private_property_identifier] = ACTIONS(2253), + [sym_this] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_null] = ACTIONS(2253), + [sym_undefined] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [sym__automatic_semicolon] = ACTIONS(2505), [sym_html_comment] = ACTIONS(5), }, [1288] = { [sym_comment] = STATE(1288), - [ts_builtin_sym_end] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_typeof] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_with] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_debugger] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LTtemplate_GT] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_void] = ACTIONS(2192), - [anon_sym_delete] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [sym_private_property_identifier] = ACTIONS(2192), - [sym_this] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_undefined] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2434), + [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_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_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_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_abstract] = ACTIONS(3440), + [anon_sym_global] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), [sym_html_comment] = ACTIONS(5), }, [1289] = { [sym_comment] = STATE(1289), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3456), + [anon_sym_export] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_type] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_typeof] = ACTIONS(3456), + [anon_sym_import] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_var] = ACTIONS(3456), + [anon_sym_let] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_await] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_debugger] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3456), + [anon_sym_yield] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_LTtemplate_GT] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3456), + [anon_sym_SQUOTE] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_async] = ACTIONS(3456), + [anon_sym_function] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_SLASH] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3456), + [anon_sym_TILDE] = ACTIONS(3456), + [anon_sym_void] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3456), + [sym_number] = ACTIONS(3456), + [sym_private_property_identifier] = ACTIONS(3456), + [sym_this] = ACTIONS(3456), + [sym_super] = ACTIONS(3456), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [sym_null] = ACTIONS(3456), + [sym_undefined] = ACTIONS(3456), + [anon_sym_AT] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_readonly] = ACTIONS(3456), + [anon_sym_get] = ACTIONS(3456), + [anon_sym_set] = ACTIONS(3456), + [anon_sym_declare] = ACTIONS(3456), + [anon_sym_public] = ACTIONS(3456), + [anon_sym_private] = ACTIONS(3456), + [anon_sym_protected] = ACTIONS(3456), + [anon_sym_override] = ACTIONS(3456), + [anon_sym_module] = ACTIONS(3456), + [anon_sym_any] = ACTIONS(3456), + [anon_sym_number] = ACTIONS(3456), + [anon_sym_boolean] = ACTIONS(3456), + [anon_sym_string] = ACTIONS(3456), + [anon_sym_symbol] = ACTIONS(3456), + [anon_sym_object] = ACTIONS(3456), + [anon_sym_abstract] = ACTIONS(3456), + [anon_sym_global] = ACTIONS(3456), + [anon_sym_interface] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), [sym_html_comment] = ACTIONS(5), }, [1290] = { [sym_comment] = STATE(1290), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_default] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [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_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_global] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, [1291] = { [sym_comment] = STATE(1291), - [sym_identifier] = ACTIONS(2294), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_default] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2294), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_with] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_debugger] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_case] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LTtemplate_GT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_class] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_function] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_using] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2294), - [anon_sym_delete] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_private_property_identifier] = ACTIONS(2294), - [sym_this] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_true] = ACTIONS(2294), - [sym_false] = ACTIONS(2294), - [sym_null] = ACTIONS(2294), - [sym_undefined] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_readonly] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2294), - [anon_sym_set] = ACTIONS(2294), - [anon_sym_declare] = ACTIONS(2294), - [anon_sym_public] = ACTIONS(2294), - [anon_sym_private] = ACTIONS(2294), - [anon_sym_protected] = ACTIONS(2294), - [anon_sym_override] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_any] = ACTIONS(2294), - [anon_sym_number] = ACTIONS(2294), - [anon_sym_boolean] = ACTIONS(2294), - [anon_sym_string] = ACTIONS(2294), - [anon_sym_symbol] = ACTIONS(2294), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_abstract] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_default] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_case] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LTtemplate_GT] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_using] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3466), + [sym_number] = ACTIONS(3466), + [sym_private_property_identifier] = ACTIONS(3466), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_object] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), [sym_html_comment] = ACTIONS(5), }, [1292] = { [sym_comment] = STATE(1292), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_with] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_debugger] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_LTtemplate_GT] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_function] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3307), - [sym_number] = ACTIONS(3307), - [sym_private_property_identifier] = ACTIONS(3307), - [sym_this] = ACTIONS(3307), - [sym_super] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_null] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [anon_sym_AT] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_get] = ACTIONS(3307), - [anon_sym_set] = ACTIONS(3307), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(3536), + [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_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_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_abstract] = ACTIONS(3454), + [anon_sym_global] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), [sym_html_comment] = ACTIONS(5), }, [1293] = { [sym_comment] = STATE(1293), - [ts_builtin_sym_end] = ACTIONS(3517), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [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_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_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_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_abstract] = ACTIONS(3460), + [anon_sym_global] = ACTIONS(3460), + [anon_sym_interface] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), [sym_html_comment] = ACTIONS(5), }, [1294] = { [sym_comment] = STATE(1294), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), + [ts_builtin_sym_end] = ACTIONS(3538), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_global] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), [sym_html_comment] = ACTIONS(5), }, [1295] = { [sym_comment] = STATE(1295), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_case] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_global] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, [1296] = { [sym_comment] = STATE(1296), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_case] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [ts_builtin_sym_end] = ACTIONS(3542), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LTtemplate_GT] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3282), + [sym_number] = ACTIONS(3282), + [sym_private_property_identifier] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_override] = ACTIONS(3282), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_object] = ACTIONS(3282), + [anon_sym_abstract] = ACTIONS(3282), + [anon_sym_global] = ACTIONS(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), [sym_html_comment] = ACTIONS(5), }, [1297] = { [sym_comment] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LTtemplate_GT] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3246), + [sym_number] = ACTIONS(3246), + [sym_private_property_identifier] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_object] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_global] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), [sym_html_comment] = ACTIONS(5), }, [1298] = { [sym_comment] = STATE(1298), - [ts_builtin_sym_end] = ACTIONS(3523), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1299] = { [sym_comment] = STATE(1299), - [ts_builtin_sym_end] = ACTIONS(3525), - [sym_identifier] = ACTIONS(3321), - [anon_sym_export] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym_import] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_debugger] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LTtemplate_GT] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_function] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(3321), - [anon_sym_delete] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3321), - [sym_number] = ACTIONS(3321), - [sym_private_property_identifier] = ACTIONS(3321), - [sym_this] = ACTIONS(3321), - [sym_super] = ACTIONS(3321), - [sym_true] = ACTIONS(3321), - [sym_false] = ACTIONS(3321), - [sym_null] = ACTIONS(3321), - [sym_undefined] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_any] = ACTIONS(3321), - [anon_sym_number] = ACTIONS(3321), - [anon_sym_boolean] = ACTIONS(3321), - [anon_sym_string] = ACTIONS(3321), - [anon_sym_symbol] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1300] = { [sym_comment] = STATE(1300), - [sym_identifier] = ACTIONS(3391), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_default] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_debugger] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_case] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LTtemplate_GT] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_void] = ACTIONS(3391), - [anon_sym_delete] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3391), - [sym_number] = ACTIONS(3391), - [sym_private_property_identifier] = ACTIONS(3391), - [sym_this] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_null] = ACTIONS(3391), - [sym_undefined] = ACTIONS(3391), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_get] = ACTIONS(3391), - [anon_sym_set] = ACTIONS(3391), - [anon_sym_declare] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_any] = ACTIONS(3391), - [anon_sym_number] = ACTIONS(3391), - [anon_sym_boolean] = ACTIONS(3391), - [anon_sym_string] = ACTIONS(3391), - [anon_sym_symbol] = ACTIONS(3391), - [anon_sym_object] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3280), + [anon_sym_export] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_namespace] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_with] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_else] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_debugger] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LTtemplate_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_undefined] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_readonly] = ACTIONS(3280), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_protected] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_module] = ACTIONS(3280), + [anon_sym_any] = ACTIONS(3280), + [anon_sym_number] = ACTIONS(3280), + [anon_sym_boolean] = ACTIONS(3280), + [anon_sym_string] = ACTIONS(3280), + [anon_sym_symbol] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_global] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), [sym_html_comment] = ACTIONS(5), }, [1301] = { [sym_comment] = STATE(1301), - [sym_identifier] = ACTIONS(3393), - [anon_sym_export] = ACTIONS(3393), - [anon_sym_default] = ACTIONS(3393), - [anon_sym_type] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_typeof] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_await] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_debugger] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_throw] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LTtemplate_GT] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_SQUOTE] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_async] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_using] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_void] = ACTIONS(3393), - [anon_sym_delete] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3393), - [sym_number] = ACTIONS(3393), - [sym_private_property_identifier] = ACTIONS(3393), - [sym_this] = ACTIONS(3393), - [sym_super] = ACTIONS(3393), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_undefined] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_readonly] = ACTIONS(3393), - [anon_sym_get] = ACTIONS(3393), - [anon_sym_set] = ACTIONS(3393), - [anon_sym_declare] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_protected] = ACTIONS(3393), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_any] = ACTIONS(3393), - [anon_sym_number] = ACTIONS(3393), - [anon_sym_boolean] = ACTIONS(3393), - [anon_sym_string] = ACTIONS(3393), - [anon_sym_symbol] = ACTIONS(3393), - [anon_sym_object] = ACTIONS(3393), - [anon_sym_abstract] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, [1302] = { [sym_comment] = STATE(1302), - [ts_builtin_sym_end] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3335), - [anon_sym_export] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_namespace] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_typeof] = ACTIONS(3335), - [anon_sym_import] = ACTIONS(3335), - [anon_sym_with] = ACTIONS(3335), - [anon_sym_var] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_switch] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_await] = ACTIONS(3335), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_do] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_debugger] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_throw] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_yield] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3335), - [anon_sym_LTtemplate_GT] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_class] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_function] = ACTIONS(3335), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_using] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_void] = ACTIONS(3335), - [anon_sym_delete] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3335), - [sym_number] = ACTIONS(3335), - [sym_private_property_identifier] = ACTIONS(3335), - [sym_this] = ACTIONS(3335), - [sym_super] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_null] = ACTIONS(3335), - [sym_undefined] = ACTIONS(3335), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_static] = ACTIONS(3335), - [anon_sym_readonly] = ACTIONS(3335), - [anon_sym_get] = ACTIONS(3335), - [anon_sym_set] = ACTIONS(3335), - [anon_sym_declare] = ACTIONS(3335), - [anon_sym_public] = ACTIONS(3335), - [anon_sym_private] = ACTIONS(3335), - [anon_sym_protected] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3335), - [anon_sym_module] = ACTIONS(3335), - [anon_sym_any] = ACTIONS(3335), - [anon_sym_number] = ACTIONS(3335), - [anon_sym_boolean] = ACTIONS(3335), - [anon_sym_string] = ACTIONS(3335), - [anon_sym_symbol] = ACTIONS(3335), - [anon_sym_object] = ACTIONS(3335), - [anon_sym_abstract] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), + [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_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_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_abstract] = ACTIONS(3464), + [anon_sym_global] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), [sym_html_comment] = ACTIONS(5), }, [1303] = { [sym_comment] = STATE(1303), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_default] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_case] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LTtemplate_GT] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3458), + [sym_number] = ACTIONS(3458), + [sym_private_property_identifier] = ACTIONS(3458), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_object] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_global] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), [sym_html_comment] = ACTIONS(5), }, [1304] = { [sym_comment] = STATE(1304), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2229), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_typeof] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2229), + [anon_sym_var] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_debugger] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LTtemplate_GT] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2229), + [anon_sym_delete] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_number] = ACTIONS(2229), + [sym_private_property_identifier] = ACTIONS(2229), + [sym_this] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_undefined] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_global] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, [1305] = { [sym_comment] = STATE(1305), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_case] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_global] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, [1306] = { [sym_comment] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3408), + [anon_sym_export] = ACTIONS(3408), + [anon_sym_type] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3408), + [anon_sym_import] = ACTIONS(3408), + [anon_sym_with] = ACTIONS(3408), + [anon_sym_var] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_debugger] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_LTtemplate_GT] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_function] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_void] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3408), + [sym_number] = ACTIONS(3408), + [sym_private_property_identifier] = ACTIONS(3408), + [sym_this] = ACTIONS(3408), + [sym_super] = ACTIONS(3408), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [sym_null] = ACTIONS(3408), + [sym_undefined] = ACTIONS(3408), + [anon_sym_AT] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_readonly] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3408), + [anon_sym_declare] = ACTIONS(3408), + [anon_sym_public] = ACTIONS(3408), + [anon_sym_private] = ACTIONS(3408), + [anon_sym_protected] = ACTIONS(3408), + [anon_sym_override] = ACTIONS(3408), + [anon_sym_module] = ACTIONS(3408), + [anon_sym_any] = ACTIONS(3408), + [anon_sym_number] = ACTIONS(3408), + [anon_sym_boolean] = ACTIONS(3408), + [anon_sym_string] = ACTIONS(3408), + [anon_sym_symbol] = ACTIONS(3408), + [anon_sym_object] = ACTIONS(3408), + [anon_sym_abstract] = ACTIONS(3408), + [anon_sym_global] = ACTIONS(3408), + [anon_sym_interface] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), [sym_html_comment] = ACTIONS(5), }, [1307] = { [sym_comment] = STATE(1307), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1308] = { [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1309] = { [sym_comment] = STATE(1309), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1310] = { [sym_comment] = STATE(1310), - [sym_identifier] = ACTIONS(3397), - [anon_sym_export] = ACTIONS(3397), - [anon_sym_default] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_typeof] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_switch] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_await] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_debugger] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_throw] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_case] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LTtemplate_GT] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_using] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3397), - [anon_sym_delete] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_number] = ACTIONS(3397), - [sym_private_property_identifier] = ACTIONS(3397), - [sym_this] = ACTIONS(3397), - [sym_super] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_null] = ACTIONS(3397), - [sym_undefined] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_readonly] = ACTIONS(3397), - [anon_sym_get] = ACTIONS(3397), - [anon_sym_set] = ACTIONS(3397), - [anon_sym_declare] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_protected] = ACTIONS(3397), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_any] = ACTIONS(3397), - [anon_sym_number] = ACTIONS(3397), - [anon_sym_boolean] = ACTIONS(3397), - [anon_sym_string] = ACTIONS(3397), - [anon_sym_symbol] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_abstract] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), [sym_html_comment] = ACTIONS(5), }, [1311] = { [sym_comment] = STATE(1311), - [ts_builtin_sym_end] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3383), - [anon_sym_export] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym_import] = ACTIONS(3383), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_debugger] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LTtemplate_GT] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_void] = ACTIONS(3383), - [anon_sym_delete] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3383), - [sym_number] = ACTIONS(3383), - [sym_private_property_identifier] = ACTIONS(3383), - [sym_this] = ACTIONS(3383), - [sym_super] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_null] = ACTIONS(3383), - [sym_undefined] = ACTIONS(3383), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_get] = ACTIONS(3383), - [anon_sym_set] = ACTIONS(3383), - [anon_sym_declare] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_any] = ACTIONS(3383), - [anon_sym_number] = ACTIONS(3383), - [anon_sym_boolean] = ACTIONS(3383), - [anon_sym_string] = ACTIONS(3383), - [anon_sym_symbol] = ACTIONS(3383), - [anon_sym_object] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_case] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LTtemplate_GT] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_number] = ACTIONS(3374), + [sym_private_property_identifier] = ACTIONS(3374), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_object] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), [sym_html_comment] = ACTIONS(5), }, [1312] = { [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3535), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [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_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [ts_builtin_sym_end] = ACTIONS(3550), + [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_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_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), + [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_abstract] = ACTIONS(3444), + [anon_sym_global] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), [sym_html_comment] = ACTIONS(5), }, [1313] = { [sym_comment] = STATE(1313), - [ts_builtin_sym_end] = ACTIONS(3537), - [sym_identifier] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_typeof] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_await] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_debugger] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LTtemplate_GT] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_SQUOTE] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3457), - [sym_number] = ACTIONS(3457), - [sym_private_property_identifier] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [sym_super] = ACTIONS(3457), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_undefined] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_readonly] = ACTIONS(3457), - [anon_sym_get] = ACTIONS(3457), - [anon_sym_set] = ACTIONS(3457), - [anon_sym_declare] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_any] = ACTIONS(3457), - [anon_sym_number] = ACTIONS(3457), - [anon_sym_boolean] = ACTIONS(3457), - [anon_sym_string] = ACTIONS(3457), - [anon_sym_symbol] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_abstract] = ACTIONS(3457), - [anon_sym_interface] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), + [ts_builtin_sym_end] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_global] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, [1314] = { [sym_comment] = STATE(1314), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_default] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_case] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3450), + [anon_sym_export] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_with] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_debugger] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_LTtemplate_GT] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_function] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_SLASH] = ACTIONS(3450), + [anon_sym_LT] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3450), + [sym_number] = ACTIONS(3450), + [sym_private_property_identifier] = ACTIONS(3450), + [sym_this] = ACTIONS(3450), + [sym_super] = ACTIONS(3450), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [anon_sym_AT] = ACTIONS(3450), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3450), + [anon_sym_declare] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3450), + [anon_sym_module] = ACTIONS(3450), + [anon_sym_any] = ACTIONS(3450), + [anon_sym_number] = ACTIONS(3450), + [anon_sym_boolean] = ACTIONS(3450), + [anon_sym_string] = ACTIONS(3450), + [anon_sym_symbol] = ACTIONS(3450), + [anon_sym_object] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_global] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), [sym_html_comment] = ACTIONS(5), }, [1315] = { [sym_comment] = STATE(1315), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_default] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [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_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(3438), + [anon_sym_export] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3438), + [anon_sym_typeof] = ACTIONS(3438), + [anon_sym_import] = ACTIONS(3438), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_var] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_await] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_debugger] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LTtemplate_GT] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_SQUOTE] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(3438), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_void] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3438), + [sym_number] = ACTIONS(3438), + [sym_private_property_identifier] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [sym_super] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_null] = ACTIONS(3438), + [sym_undefined] = ACTIONS(3438), + [anon_sym_AT] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_readonly] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(3438), + [anon_sym_set] = ACTIONS(3438), + [anon_sym_declare] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_override] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_any] = ACTIONS(3438), + [anon_sym_number] = ACTIONS(3438), + [anon_sym_boolean] = ACTIONS(3438), + [anon_sym_string] = ACTIONS(3438), + [anon_sym_symbol] = ACTIONS(3438), + [anon_sym_object] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(3438), + [anon_sym_global] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), [sym_html_comment] = ACTIONS(5), }, [1316] = { [sym_comment] = STATE(1316), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_finally] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [ts_builtin_sym_end] = ACTIONS(3556), + [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_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_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(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_abstract] = ACTIONS(3434), + [anon_sym_global] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), [sym_html_comment] = ACTIONS(5), }, [1317] = { - [sym_statement_block] = STATE(1604), [sym_comment] = STATE(1317), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_with] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_await] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_debugger] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LTtemplate_GT] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2122), - [anon_sym_delete] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2122), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(2122), - [sym_this] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_undefined] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_case] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LTtemplate_GT] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_number] = ACTIONS(3374), + [sym_private_property_identifier] = ACTIONS(3374), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_object] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), [sym_html_comment] = ACTIONS(5), }, [1318] = { [sym_comment] = STATE(1318), - [ts_builtin_sym_end] = ACTIONS(3539), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3392), + [anon_sym_export] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_typeof] = ACTIONS(3392), + [anon_sym_import] = ACTIONS(3392), + [anon_sym_with] = ACTIONS(3392), + [anon_sym_var] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_await] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_debugger] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3392), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LTtemplate_GT] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_SQUOTE] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_async] = ACTIONS(3392), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_void] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3392), + [sym_number] = ACTIONS(3392), + [sym_private_property_identifier] = ACTIONS(3392), + [sym_this] = ACTIONS(3392), + [sym_super] = ACTIONS(3392), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [sym_null] = ACTIONS(3392), + [sym_undefined] = ACTIONS(3392), + [anon_sym_AT] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_readonly] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3392), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_declare] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_override] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_any] = ACTIONS(3392), + [anon_sym_number] = ACTIONS(3392), + [anon_sym_boolean] = ACTIONS(3392), + [anon_sym_string] = ACTIONS(3392), + [anon_sym_symbol] = ACTIONS(3392), + [anon_sym_object] = ACTIONS(3392), + [anon_sym_abstract] = ACTIONS(3392), + [anon_sym_global] = ACTIONS(3392), + [anon_sym_interface] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), [sym_html_comment] = ACTIONS(5), }, [1319] = { [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(3541), - [sym_identifier] = ACTIONS(3397), - [anon_sym_export] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_typeof] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_switch] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_await] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_debugger] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_throw] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LTtemplate_GT] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_using] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3397), - [anon_sym_delete] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_number] = ACTIONS(3397), - [sym_private_property_identifier] = ACTIONS(3397), - [sym_this] = ACTIONS(3397), - [sym_super] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_null] = ACTIONS(3397), - [sym_undefined] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_readonly] = ACTIONS(3397), - [anon_sym_get] = ACTIONS(3397), - [anon_sym_set] = ACTIONS(3397), - [anon_sym_declare] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_protected] = ACTIONS(3397), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_any] = ACTIONS(3397), - [anon_sym_number] = ACTIONS(3397), - [anon_sym_boolean] = ACTIONS(3397), - [anon_sym_string] = ACTIONS(3397), - [anon_sym_symbol] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_abstract] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3448), + [anon_sym_export] = ACTIONS(3448), + [anon_sym_default] = ACTIONS(3448), + [anon_sym_type] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3448), + [anon_sym_import] = ACTIONS(3448), + [anon_sym_with] = ACTIONS(3448), + [anon_sym_var] = ACTIONS(3448), + [anon_sym_let] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_debugger] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3448), + [anon_sym_yield] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LTtemplate_GT] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_async] = ACTIONS(3448), + [anon_sym_function] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3448), + [sym_number] = ACTIONS(3448), + [sym_private_property_identifier] = ACTIONS(3448), + [sym_this] = ACTIONS(3448), + [sym_super] = ACTIONS(3448), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_null] = ACTIONS(3448), + [sym_undefined] = ACTIONS(3448), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_readonly] = ACTIONS(3448), + [anon_sym_get] = ACTIONS(3448), + [anon_sym_set] = ACTIONS(3448), + [anon_sym_declare] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3448), + [anon_sym_private] = ACTIONS(3448), + [anon_sym_protected] = ACTIONS(3448), + [anon_sym_override] = ACTIONS(3448), + [anon_sym_module] = ACTIONS(3448), + [anon_sym_any] = ACTIONS(3448), + [anon_sym_number] = ACTIONS(3448), + [anon_sym_boolean] = ACTIONS(3448), + [anon_sym_string] = ACTIONS(3448), + [anon_sym_symbol] = ACTIONS(3448), + [anon_sym_object] = ACTIONS(3448), + [anon_sym_abstract] = ACTIONS(3448), + [anon_sym_global] = ACTIONS(3448), + [anon_sym_interface] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), [sym_html_comment] = ACTIONS(5), }, [1320] = { [sym_comment] = STATE(1320), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_with] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_else] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_debugger] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LTtemplate_GT] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_private_property_identifier] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_undefined] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_readonly] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_protected] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_global] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, [1321] = { [sym_comment] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [ts_builtin_sym_end] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_global] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1322] = { [sym_comment] = STATE(1322), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3420), + [anon_sym_export] = ACTIONS(3420), + [anon_sym_type] = ACTIONS(3420), + [anon_sym_namespace] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3420), + [anon_sym_import] = ACTIONS(3420), + [anon_sym_with] = ACTIONS(3420), + [anon_sym_var] = ACTIONS(3420), + [anon_sym_let] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_do] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_debugger] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_yield] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_LTtemplate_GT] = ACTIONS(3420), + [anon_sym_DQUOTE] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3420), + [anon_sym_class] = ACTIONS(3420), + [anon_sym_async] = ACTIONS(3420), + [anon_sym_function] = ACTIONS(3420), + [anon_sym_new] = ACTIONS(3420), + [anon_sym_using] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_void] = ACTIONS(3420), + [anon_sym_delete] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3420), + [sym_number] = ACTIONS(3420), + [sym_private_property_identifier] = ACTIONS(3420), + [sym_this] = ACTIONS(3420), + [sym_super] = ACTIONS(3420), + [sym_true] = ACTIONS(3420), + [sym_false] = ACTIONS(3420), + [sym_null] = ACTIONS(3420), + [sym_undefined] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3420), + [anon_sym_readonly] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_declare] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_module] = ACTIONS(3420), + [anon_sym_any] = ACTIONS(3420), + [anon_sym_number] = ACTIONS(3420), + [anon_sym_boolean] = ACTIONS(3420), + [anon_sym_string] = ACTIONS(3420), + [anon_sym_symbol] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_global] = ACTIONS(3420), + [anon_sym_interface] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), [sym_html_comment] = ACTIONS(5), }, [1323] = { [sym_comment] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(3545), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [ts_builtin_sym_end] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_with] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_debugger] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_LTtemplate_GT] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_using] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_void] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3386), + [sym_number] = ACTIONS(3386), + [sym_private_property_identifier] = ACTIONS(3386), + [sym_this] = ACTIONS(3386), + [sym_super] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [sym_undefined] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_module] = ACTIONS(3386), + [anon_sym_any] = ACTIONS(3386), + [anon_sym_number] = ACTIONS(3386), + [anon_sym_boolean] = ACTIONS(3386), + [anon_sym_string] = ACTIONS(3386), + [anon_sym_symbol] = ACTIONS(3386), + [anon_sym_object] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_global] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), [sym_html_comment] = ACTIONS(5), }, [1324] = { [sym_comment] = STATE(1324), - [ts_builtin_sym_end] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3393), - [anon_sym_export] = ACTIONS(3393), - [anon_sym_type] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_typeof] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_else] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_await] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_debugger] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_throw] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LTtemplate_GT] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_SQUOTE] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_async] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_using] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_void] = ACTIONS(3393), - [anon_sym_delete] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3393), - [sym_number] = ACTIONS(3393), - [sym_private_property_identifier] = ACTIONS(3393), - [sym_this] = ACTIONS(3393), - [sym_super] = ACTIONS(3393), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_undefined] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_readonly] = ACTIONS(3393), - [anon_sym_get] = ACTIONS(3393), - [anon_sym_set] = ACTIONS(3393), - [anon_sym_declare] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_protected] = ACTIONS(3393), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_any] = ACTIONS(3393), - [anon_sym_number] = ACTIONS(3393), - [anon_sym_boolean] = ACTIONS(3393), - [anon_sym_string] = ACTIONS(3393), - [anon_sym_symbol] = ACTIONS(3393), - [anon_sym_object] = ACTIONS(3393), - [anon_sym_abstract] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3394), + [anon_sym_export] = ACTIONS(3394), + [anon_sym_default] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_namespace] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_with] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_debugger] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_case] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_LTtemplate_GT] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_void] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3394), + [sym_number] = ACTIONS(3394), + [sym_private_property_identifier] = ACTIONS(3394), + [sym_this] = ACTIONS(3394), + [sym_super] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [sym_undefined] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3394), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3394), + [anon_sym_declare] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_module] = ACTIONS(3394), + [anon_sym_any] = ACTIONS(3394), + [anon_sym_number] = ACTIONS(3394), + [anon_sym_boolean] = ACTIONS(3394), + [anon_sym_string] = ACTIONS(3394), + [anon_sym_symbol] = ACTIONS(3394), + [anon_sym_object] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_global] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), [sym_html_comment] = ACTIONS(5), }, [1325] = { [sym_comment] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(3549), - [sym_identifier] = ACTIONS(3391), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_else] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_debugger] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LTtemplate_GT] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_void] = ACTIONS(3391), - [anon_sym_delete] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3391), - [sym_number] = ACTIONS(3391), - [sym_private_property_identifier] = ACTIONS(3391), - [sym_this] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_null] = ACTIONS(3391), - [sym_undefined] = ACTIONS(3391), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_get] = ACTIONS(3391), - [anon_sym_set] = ACTIONS(3391), - [anon_sym_declare] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_any] = ACTIONS(3391), - [anon_sym_number] = ACTIONS(3391), - [anon_sym_boolean] = ACTIONS(3391), - [anon_sym_string] = ACTIONS(3391), - [anon_sym_symbol] = ACTIONS(3391), - [anon_sym_object] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), + [sym_identifier] = ACTIONS(3388), + [anon_sym_export] = ACTIONS(3388), + [anon_sym_default] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_namespace] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3388), + [anon_sym_import] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [anon_sym_var] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_debugger] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_throw] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_case] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LTtemplate_GT] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_class] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_function] = ACTIONS(3388), + [anon_sym_new] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_private_property_identifier] = ACTIONS(3388), + [sym_this] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_undefined] = ACTIONS(3388), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_readonly] = ACTIONS(3388), + [anon_sym_get] = ACTIONS(3388), + [anon_sym_set] = ACTIONS(3388), + [anon_sym_declare] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3388), + [anon_sym_module] = ACTIONS(3388), + [anon_sym_any] = ACTIONS(3388), + [anon_sym_number] = ACTIONS(3388), + [anon_sym_boolean] = ACTIONS(3388), + [anon_sym_string] = ACTIONS(3388), + [anon_sym_symbol] = ACTIONS(3388), + [anon_sym_object] = ACTIONS(3388), + [anon_sym_abstract] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), [sym_html_comment] = ACTIONS(5), }, [1326] = { [sym_comment] = STATE(1326), - [ts_builtin_sym_end] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_global] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, [1327] = { [sym_comment] = STATE(1327), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_else] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_global] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, [1328] = { [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [ts_builtin_sym_end] = ACTIONS(3570), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_global] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, [1329] = { [sym_comment] = STATE(1329), - [ts_builtin_sym_end] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [ts_builtin_sym_end] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3418), + [anon_sym_export] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_namespace] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_typeof] = ACTIONS(3418), + [anon_sym_import] = ACTIONS(3418), + [anon_sym_with] = ACTIONS(3418), + [anon_sym_var] = ACTIONS(3418), + [anon_sym_let] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_else] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_switch] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_await] = ACTIONS(3418), + [anon_sym_while] = ACTIONS(3418), + [anon_sym_do] = ACTIONS(3418), + [anon_sym_try] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_debugger] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_throw] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_yield] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_LTtemplate_GT] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(3418), + [anon_sym_SQUOTE] = ACTIONS(3418), + [anon_sym_class] = ACTIONS(3418), + [anon_sym_async] = ACTIONS(3418), + [anon_sym_function] = ACTIONS(3418), + [anon_sym_new] = ACTIONS(3418), + [anon_sym_using] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_void] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3418), + [sym_number] = ACTIONS(3418), + [sym_private_property_identifier] = ACTIONS(3418), + [sym_this] = ACTIONS(3418), + [sym_super] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_null] = ACTIONS(3418), + [sym_undefined] = ACTIONS(3418), + [anon_sym_AT] = ACTIONS(3418), + [anon_sym_static] = ACTIONS(3418), + [anon_sym_readonly] = ACTIONS(3418), + [anon_sym_get] = ACTIONS(3418), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_declare] = ACTIONS(3418), + [anon_sym_public] = ACTIONS(3418), + [anon_sym_private] = ACTIONS(3418), + [anon_sym_protected] = ACTIONS(3418), + [anon_sym_override] = ACTIONS(3418), + [anon_sym_module] = ACTIONS(3418), + [anon_sym_any] = ACTIONS(3418), + [anon_sym_number] = ACTIONS(3418), + [anon_sym_boolean] = ACTIONS(3418), + [anon_sym_string] = ACTIONS(3418), + [anon_sym_symbol] = ACTIONS(3418), + [anon_sym_object] = ACTIONS(3418), + [anon_sym_abstract] = ACTIONS(3418), + [anon_sym_global] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), [sym_html_comment] = ACTIONS(5), }, [1330] = { [sym_comment] = STATE(1330), - [ts_builtin_sym_end] = ACTIONS(3555), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_function] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - [sym_super] = ACTIONS(3333), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [sym_null] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [anon_sym_declare] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_any] = ACTIONS(3333), - [anon_sym_number] = ACTIONS(3333), - [anon_sym_boolean] = ACTIONS(3333), - [anon_sym_string] = ACTIONS(3333), - [anon_sym_symbol] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), + [ts_builtin_sym_end] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3416), + [anon_sym_export] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_namespace] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_typeof] = ACTIONS(3416), + [anon_sym_import] = ACTIONS(3416), + [anon_sym_with] = ACTIONS(3416), + [anon_sym_var] = ACTIONS(3416), + [anon_sym_let] = ACTIONS(3416), + [anon_sym_const] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_else] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_switch] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_await] = ACTIONS(3416), + [anon_sym_while] = ACTIONS(3416), + [anon_sym_do] = ACTIONS(3416), + [anon_sym_try] = ACTIONS(3416), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_debugger] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_throw] = ACTIONS(3416), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_yield] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_LTtemplate_GT] = ACTIONS(3416), + [anon_sym_DQUOTE] = ACTIONS(3416), + [anon_sym_SQUOTE] = ACTIONS(3416), + [anon_sym_class] = ACTIONS(3416), + [anon_sym_async] = ACTIONS(3416), + [anon_sym_function] = ACTIONS(3416), + [anon_sym_new] = ACTIONS(3416), + [anon_sym_using] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_void] = ACTIONS(3416), + [anon_sym_delete] = ACTIONS(3416), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3416), + [sym_number] = ACTIONS(3416), + [sym_private_property_identifier] = ACTIONS(3416), + [sym_this] = ACTIONS(3416), + [sym_super] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_null] = ACTIONS(3416), + [sym_undefined] = ACTIONS(3416), + [anon_sym_AT] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3416), + [anon_sym_readonly] = ACTIONS(3416), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3416), + [anon_sym_declare] = ACTIONS(3416), + [anon_sym_public] = ACTIONS(3416), + [anon_sym_private] = ACTIONS(3416), + [anon_sym_protected] = ACTIONS(3416), + [anon_sym_override] = ACTIONS(3416), + [anon_sym_module] = ACTIONS(3416), + [anon_sym_any] = ACTIONS(3416), + [anon_sym_number] = ACTIONS(3416), + [anon_sym_boolean] = ACTIONS(3416), + [anon_sym_string] = ACTIONS(3416), + [anon_sym_symbol] = ACTIONS(3416), + [anon_sym_object] = ACTIONS(3416), + [anon_sym_abstract] = ACTIONS(3416), + [anon_sym_global] = ACTIONS(3416), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_enum] = ACTIONS(3416), [sym_html_comment] = ACTIONS(5), }, [1331] = { [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3236), + [anon_sym_export] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3236), + [anon_sym_import] = ACTIONS(3236), + [anon_sym_with] = ACTIONS(3236), + [anon_sym_var] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_debugger] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LTtemplate_GT] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_function] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_private_property_identifier] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [sym_null] = ACTIONS(3236), + [sym_undefined] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_readonly] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_declare] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_module] = ACTIONS(3236), + [anon_sym_any] = ACTIONS(3236), + [anon_sym_number] = ACTIONS(3236), + [anon_sym_boolean] = ACTIONS(3236), + [anon_sym_string] = ACTIONS(3236), + [anon_sym_symbol] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_global] = ACTIONS(3236), + [anon_sym_interface] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, [1332] = { [sym_comment] = STATE(1332), - [sym_identifier] = ACTIONS(3439), - [anon_sym_export] = ACTIONS(3439), - [anon_sym_default] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_debugger] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_case] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LTtemplate_GT] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_void] = ACTIONS(3439), - [anon_sym_delete] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3439), - [sym_number] = ACTIONS(3439), - [sym_private_property_identifier] = ACTIONS(3439), - [sym_this] = ACTIONS(3439), - [sym_super] = ACTIONS(3439), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_undefined] = ACTIONS(3439), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_get] = ACTIONS(3439), - [anon_sym_set] = ACTIONS(3439), - [anon_sym_declare] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_any] = ACTIONS(3439), - [anon_sym_number] = ACTIONS(3439), - [anon_sym_boolean] = ACTIONS(3439), - [anon_sym_string] = ACTIONS(3439), - [anon_sym_symbol] = ACTIONS(3439), - [anon_sym_object] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), + [ts_builtin_sym_end] = ACTIONS(3578), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_global] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, [1333] = { [sym_comment] = STATE(1333), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_case] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_default] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_case] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_global] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, [1334] = { [sym_comment] = STATE(1334), - [sym_identifier] = ACTIONS(3557), - [anon_sym_export] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3557), - [anon_sym_type] = ACTIONS(3557), - [anon_sym_namespace] = ACTIONS(3557), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_RBRACE] = ACTIONS(3557), - [anon_sym_typeof] = ACTIONS(3557), - [anon_sym_import] = ACTIONS(3557), - [anon_sym_with] = ACTIONS(3557), - [anon_sym_var] = ACTIONS(3557), - [anon_sym_let] = ACTIONS(3557), - [anon_sym_const] = ACTIONS(3557), - [anon_sym_BANG] = ACTIONS(3557), - [anon_sym_if] = ACTIONS(3557), - [anon_sym_switch] = ACTIONS(3557), - [anon_sym_for] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_await] = ACTIONS(3557), - [anon_sym_while] = ACTIONS(3557), - [anon_sym_do] = ACTIONS(3557), - [anon_sym_try] = ACTIONS(3557), - [anon_sym_break] = ACTIONS(3557), - [anon_sym_continue] = ACTIONS(3557), - [anon_sym_debugger] = ACTIONS(3557), - [anon_sym_return] = ACTIONS(3557), - [anon_sym_throw] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_yield] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_LTtemplate_GT] = ACTIONS(3557), - [anon_sym_DQUOTE] = ACTIONS(3557), - [anon_sym_SQUOTE] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_async] = ACTIONS(3557), - [anon_sym_function] = ACTIONS(3557), - [anon_sym_new] = ACTIONS(3557), - [anon_sym_using] = ACTIONS(3557), - [anon_sym_PLUS] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_SLASH] = ACTIONS(3557), - [anon_sym_LT] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_void] = ACTIONS(3557), - [anon_sym_delete] = ACTIONS(3557), - [anon_sym_PLUS_PLUS] = ACTIONS(3557), - [anon_sym_DASH_DASH] = ACTIONS(3557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3557), - [sym_number] = ACTIONS(3557), - [sym_private_property_identifier] = ACTIONS(3557), - [sym_this] = ACTIONS(3557), - [sym_super] = ACTIONS(3557), - [sym_true] = ACTIONS(3557), - [sym_false] = ACTIONS(3557), - [sym_null] = ACTIONS(3557), - [sym_undefined] = ACTIONS(3557), - [anon_sym_AT] = ACTIONS(3557), - [anon_sym_static] = ACTIONS(3557), - [anon_sym_readonly] = ACTIONS(3557), - [anon_sym_get] = ACTIONS(3557), - [anon_sym_set] = ACTIONS(3557), - [anon_sym_declare] = ACTIONS(3557), - [anon_sym_public] = ACTIONS(3557), - [anon_sym_private] = ACTIONS(3557), - [anon_sym_protected] = ACTIONS(3557), - [anon_sym_override] = ACTIONS(3557), - [anon_sym_module] = ACTIONS(3557), - [anon_sym_any] = ACTIONS(3557), - [anon_sym_number] = ACTIONS(3557), - [anon_sym_boolean] = ACTIONS(3557), - [anon_sym_string] = ACTIONS(3557), - [anon_sym_symbol] = ACTIONS(3557), - [anon_sym_object] = ACTIONS(3557), - [anon_sym_abstract] = ACTIONS(3557), - [anon_sym_interface] = ACTIONS(3557), - [anon_sym_enum] = ACTIONS(3557), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_global] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, [1335] = { [sym_comment] = STATE(1335), - [ts_builtin_sym_end] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym_import] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_debugger] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LTtemplate_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_function] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_number] = ACTIONS(3193), - [sym_private_property_identifier] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [sym_super] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_undefined] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), + [ts_builtin_sym_end] = ACTIONS(3582), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_else] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_global] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, [1336] = { [sym_comment] = STATE(1336), - [sym_identifier] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_default] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_typeof] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_await] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_debugger] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LTtemplate_GT] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_SQUOTE] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3457), - [sym_number] = ACTIONS(3457), - [sym_private_property_identifier] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [sym_super] = ACTIONS(3457), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_undefined] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_readonly] = ACTIONS(3457), - [anon_sym_get] = ACTIONS(3457), - [anon_sym_set] = ACTIONS(3457), - [anon_sym_declare] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_any] = ACTIONS(3457), - [anon_sym_number] = ACTIONS(3457), - [anon_sym_boolean] = ACTIONS(3457), - [anon_sym_string] = ACTIONS(3457), - [anon_sym_symbol] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_abstract] = ACTIONS(3457), - [anon_sym_interface] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_global] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1337] = { [sym_comment] = STATE(1337), - [ts_builtin_sym_end] = ACTIONS(3559), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [ts_builtin_sym_end] = ACTIONS(3586), + [sym_identifier] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_typeof] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3406), + [anon_sym_var] = ACTIONS(3406), + [anon_sym_let] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_await] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_debugger] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LTtemplate_GT] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(3406), + [anon_sym_SQUOTE] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_async] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_void] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3406), + [sym_number] = ACTIONS(3406), + [sym_private_property_identifier] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [sym_super] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_null] = ACTIONS(3406), + [sym_undefined] = ACTIONS(3406), + [anon_sym_AT] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_readonly] = ACTIONS(3406), + [anon_sym_get] = ACTIONS(3406), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_declare] = ACTIONS(3406), + [anon_sym_public] = ACTIONS(3406), + [anon_sym_private] = ACTIONS(3406), + [anon_sym_protected] = ACTIONS(3406), + [anon_sym_override] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_any] = ACTIONS(3406), + [anon_sym_number] = ACTIONS(3406), + [anon_sym_boolean] = ACTIONS(3406), + [anon_sym_string] = ACTIONS(3406), + [anon_sym_symbol] = ACTIONS(3406), + [anon_sym_object] = ACTIONS(3406), + [anon_sym_abstract] = ACTIONS(3406), + [anon_sym_global] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), [sym_html_comment] = ACTIONS(5), }, [1338] = { [sym_comment] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_global] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1339] = { [sym_comment] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LTtemplate_GT] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3270), + [sym_number] = ACTIONS(3270), + [sym_private_property_identifier] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_global] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1340] = { [sym_comment] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(3287), - [sym_identifier] = ACTIONS(3195), - [anon_sym_export] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_typeof] = ACTIONS(3195), - [anon_sym_import] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3195), - [anon_sym_var] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_debugger] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_LTtemplate_GT] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_void] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3195), - [sym_number] = ACTIONS(3195), - [sym_private_property_identifier] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), - [sym_super] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_null] = ACTIONS(3195), - [sym_undefined] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3195), - [anon_sym_set] = ACTIONS(3195), - [anon_sym_declare] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_override] = ACTIONS(3195), - [anon_sym_module] = ACTIONS(3195), - [anon_sym_any] = ACTIONS(3195), - [anon_sym_number] = ACTIONS(3195), - [anon_sym_boolean] = ACTIONS(3195), - [anon_sym_string] = ACTIONS(3195), - [anon_sym_symbol] = ACTIONS(3195), - [anon_sym_object] = ACTIONS(3195), - [anon_sym_abstract] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3565), + [ts_builtin_sym_end] = ACTIONS(3590), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_global] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, [1341] = { [sym_comment] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(3567), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3388), + [anon_sym_export] = ACTIONS(3388), + [anon_sym_default] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_namespace] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3388), + [anon_sym_import] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [anon_sym_var] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_debugger] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_throw] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_case] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LTtemplate_GT] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_class] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_function] = ACTIONS(3388), + [anon_sym_new] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_private_property_identifier] = ACTIONS(3388), + [sym_this] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_undefined] = ACTIONS(3388), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_readonly] = ACTIONS(3388), + [anon_sym_get] = ACTIONS(3388), + [anon_sym_set] = ACTIONS(3388), + [anon_sym_declare] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3388), + [anon_sym_module] = ACTIONS(3388), + [anon_sym_any] = ACTIONS(3388), + [anon_sym_number] = ACTIONS(3388), + [anon_sym_boolean] = ACTIONS(3388), + [anon_sym_string] = ACTIONS(3388), + [anon_sym_symbol] = ACTIONS(3388), + [anon_sym_object] = ACTIONS(3388), + [anon_sym_abstract] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), [sym_html_comment] = ACTIONS(5), }, [1342] = { [sym_comment] = STATE(1342), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_finally] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1343] = { [sym_comment] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [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_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1344] = { [sym_comment] = STATE(1344), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_default] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_case] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1345] = { [sym_comment] = STATE(1345), - [ts_builtin_sym_end] = ACTIONS(3571), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1346] = { [sym_comment] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(3573), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [ts_builtin_sym_end] = ACTIONS(3594), + [sym_identifier] = ACTIONS(3404), + [anon_sym_export] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_namespace] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3404), + [anon_sym_import] = ACTIONS(3404), + [anon_sym_with] = ACTIONS(3404), + [anon_sym_var] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_else] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_debugger] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_throw] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LTtemplate_GT] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_class] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_void] = ACTIONS(3404), + [anon_sym_delete] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3404), + [sym_number] = ACTIONS(3404), + [sym_private_property_identifier] = ACTIONS(3404), + [sym_this] = ACTIONS(3404), + [sym_super] = ACTIONS(3404), + [sym_true] = ACTIONS(3404), + [sym_false] = ACTIONS(3404), + [sym_null] = ACTIONS(3404), + [sym_undefined] = ACTIONS(3404), + [anon_sym_AT] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_readonly] = ACTIONS(3404), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3404), + [anon_sym_declare] = ACTIONS(3404), + [anon_sym_public] = ACTIONS(3404), + [anon_sym_private] = ACTIONS(3404), + [anon_sym_protected] = ACTIONS(3404), + [anon_sym_override] = ACTIONS(3404), + [anon_sym_module] = ACTIONS(3404), + [anon_sym_any] = ACTIONS(3404), + [anon_sym_number] = ACTIONS(3404), + [anon_sym_boolean] = ACTIONS(3404), + [anon_sym_string] = ACTIONS(3404), + [anon_sym_symbol] = ACTIONS(3404), + [anon_sym_object] = ACTIONS(3404), + [anon_sym_abstract] = ACTIONS(3404), + [anon_sym_global] = ACTIONS(3404), + [anon_sym_interface] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), [sym_html_comment] = ACTIONS(5), }, [1347] = { [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_else] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_debugger] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LTtemplate_GT] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_void] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3431), - [sym_number] = ACTIONS(3431), - [sym_private_property_identifier] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - [sym_super] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_null] = ACTIONS(3431), - [sym_undefined] = ACTIONS(3431), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_get] = ACTIONS(3431), - [anon_sym_set] = ACTIONS(3431), - [anon_sym_declare] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_any] = ACTIONS(3431), - [anon_sym_number] = ACTIONS(3431), - [anon_sym_boolean] = ACTIONS(3431), - [anon_sym_string] = ACTIONS(3431), - [anon_sym_symbol] = ACTIONS(3431), - [anon_sym_object] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), + [ts_builtin_sym_end] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_else] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LTtemplate_GT] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3458), + [sym_number] = ACTIONS(3458), + [sym_private_property_identifier] = ACTIONS(3458), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_object] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_global] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), [sym_html_comment] = ACTIONS(5), }, [1348] = { [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(3577), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [ts_builtin_sym_end] = ACTIONS(3598), + [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_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_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_abstract] = ACTIONS(3464), + [anon_sym_global] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), [sym_html_comment] = ACTIONS(5), }, [1349] = { [sym_comment] = STATE(1349), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1350] = { [sym_comment] = STATE(1350), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_default] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_case] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1351] = { [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_else] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), + [ts_builtin_sym_end] = ACTIONS(3600), + [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_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_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_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_abstract] = ACTIONS(3460), + [anon_sym_global] = ACTIONS(3460), + [anon_sym_interface] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), [sym_html_comment] = ACTIONS(5), }, [1352] = { [sym_comment] = STATE(1352), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_object] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_default] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_case] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, [1353] = { [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_else] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_default] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_case] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LTtemplate_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3360), + [anon_sym_delete] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_undefined] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_protected] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_module] = ACTIONS(3360), + [anon_sym_any] = ACTIONS(3360), + [anon_sym_number] = ACTIONS(3360), + [anon_sym_boolean] = ACTIONS(3360), + [anon_sym_string] = ACTIONS(3360), + [anon_sym_symbol] = ACTIONS(3360), + [anon_sym_object] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_global] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), [sym_html_comment] = ACTIONS(5), }, [1354] = { [sym_comment] = STATE(1354), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_default] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_typeof] = ACTIONS(2314), - [anon_sym_import] = ACTIONS(2314), - [anon_sym_with] = ACTIONS(2314), - [anon_sym_var] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_debugger] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_throw] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_case] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LTtemplate_GT] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_function] = ACTIONS(2314), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_using] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_void] = ACTIONS(2314), - [anon_sym_delete] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2314), - [sym_number] = ACTIONS(2314), - [sym_private_property_identifier] = ACTIONS(2314), - [sym_this] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_undefined] = ACTIONS(2314), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_public] = ACTIONS(2314), - [anon_sym_private] = ACTIONS(2314), - [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_any] = ACTIONS(2314), - [anon_sym_number] = ACTIONS(2314), - [anon_sym_boolean] = ACTIONS(2314), - [anon_sym_string] = ACTIONS(2314), - [anon_sym_symbol] = ACTIONS(2314), - [anon_sym_object] = ACTIONS(2314), - [anon_sym_abstract] = ACTIONS(2314), - [anon_sym_interface] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), + [ts_builtin_sym_end] = ACTIONS(3602), + [sym_identifier] = ACTIONS(3456), + [anon_sym_export] = ACTIONS(3456), + [anon_sym_type] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_typeof] = ACTIONS(3456), + [anon_sym_import] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_var] = ACTIONS(3456), + [anon_sym_let] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_await] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_debugger] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_yield] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_LTtemplate_GT] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3456), + [anon_sym_SQUOTE] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_async] = ACTIONS(3456), + [anon_sym_function] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_SLASH] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3456), + [anon_sym_TILDE] = ACTIONS(3456), + [anon_sym_void] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3456), + [sym_number] = ACTIONS(3456), + [sym_private_property_identifier] = ACTIONS(3456), + [sym_this] = ACTIONS(3456), + [sym_super] = ACTIONS(3456), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [sym_null] = ACTIONS(3456), + [sym_undefined] = ACTIONS(3456), + [anon_sym_AT] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_readonly] = ACTIONS(3456), + [anon_sym_get] = ACTIONS(3456), + [anon_sym_set] = ACTIONS(3456), + [anon_sym_declare] = ACTIONS(3456), + [anon_sym_public] = ACTIONS(3456), + [anon_sym_private] = ACTIONS(3456), + [anon_sym_protected] = ACTIONS(3456), + [anon_sym_override] = ACTIONS(3456), + [anon_sym_module] = ACTIONS(3456), + [anon_sym_any] = ACTIONS(3456), + [anon_sym_number] = ACTIONS(3456), + [anon_sym_boolean] = ACTIONS(3456), + [anon_sym_string] = ACTIONS(3456), + [anon_sym_symbol] = ACTIONS(3456), + [anon_sym_object] = ACTIONS(3456), + [anon_sym_abstract] = ACTIONS(3456), + [anon_sym_global] = ACTIONS(3456), + [anon_sym_interface] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), [sym_html_comment] = ACTIONS(5), }, [1355] = { [sym_comment] = STATE(1355), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [ts_builtin_sym_end] = ACTIONS(3604), + [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_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_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_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_abstract] = ACTIONS(3440), + [anon_sym_global] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), [sym_html_comment] = ACTIONS(5), }, [1356] = { [sym_comment] = STATE(1356), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(3585), + [ts_builtin_sym_end] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3436), + [anon_sym_export] = ACTIONS(3436), + [anon_sym_type] = ACTIONS(3436), + [anon_sym_namespace] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_typeof] = ACTIONS(3436), + [anon_sym_import] = ACTIONS(3436), + [anon_sym_with] = ACTIONS(3436), + [anon_sym_var] = ACTIONS(3436), + [anon_sym_let] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_else] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_switch] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_await] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_do] = ACTIONS(3436), + [anon_sym_try] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_debugger] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_throw] = ACTIONS(3436), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym_yield] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_LTtemplate_GT] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_class] = ACTIONS(3436), + [anon_sym_async] = ACTIONS(3436), + [anon_sym_function] = ACTIONS(3436), + [anon_sym_new] = ACTIONS(3436), + [anon_sym_using] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_void] = ACTIONS(3436), + [anon_sym_delete] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3436), + [sym_number] = ACTIONS(3436), + [sym_private_property_identifier] = ACTIONS(3436), + [sym_this] = ACTIONS(3436), + [sym_super] = ACTIONS(3436), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_null] = ACTIONS(3436), + [sym_undefined] = ACTIONS(3436), + [anon_sym_AT] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_readonly] = ACTIONS(3436), + [anon_sym_get] = ACTIONS(3436), + [anon_sym_set] = ACTIONS(3436), + [anon_sym_declare] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3436), + [anon_sym_private] = ACTIONS(3436), + [anon_sym_protected] = ACTIONS(3436), + [anon_sym_override] = ACTIONS(3436), + [anon_sym_module] = ACTIONS(3436), + [anon_sym_any] = ACTIONS(3436), + [anon_sym_number] = ACTIONS(3436), + [anon_sym_boolean] = ACTIONS(3436), + [anon_sym_string] = ACTIONS(3436), + [anon_sym_symbol] = ACTIONS(3436), + [anon_sym_object] = ACTIONS(3436), + [anon_sym_abstract] = ACTIONS(3436), + [anon_sym_global] = ACTIONS(3436), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), [sym_html_comment] = ACTIONS(5), }, [1357] = { [sym_comment] = STATE(1357), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3402), + [anon_sym_export] = ACTIONS(3402), + [anon_sym_type] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_typeof] = ACTIONS(3402), + [anon_sym_import] = ACTIONS(3402), + [anon_sym_with] = ACTIONS(3402), + [anon_sym_var] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_await] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_debugger] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_yield] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_LTtemplate_GT] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_SQUOTE] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_async] = ACTIONS(3402), + [anon_sym_function] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_void] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3402), + [sym_number] = ACTIONS(3402), + [sym_private_property_identifier] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [sym_super] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_null] = ACTIONS(3402), + [sym_undefined] = ACTIONS(3402), + [anon_sym_AT] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_readonly] = ACTIONS(3402), + [anon_sym_get] = ACTIONS(3402), + [anon_sym_set] = ACTIONS(3402), + [anon_sym_declare] = ACTIONS(3402), + [anon_sym_public] = ACTIONS(3402), + [anon_sym_private] = ACTIONS(3402), + [anon_sym_protected] = ACTIONS(3402), + [anon_sym_override] = ACTIONS(3402), + [anon_sym_module] = ACTIONS(3402), + [anon_sym_any] = ACTIONS(3402), + [anon_sym_number] = ACTIONS(3402), + [anon_sym_boolean] = ACTIONS(3402), + [anon_sym_string] = ACTIONS(3402), + [anon_sym_symbol] = ACTIONS(3402), + [anon_sym_object] = ACTIONS(3402), + [anon_sym_abstract] = ACTIONS(3402), + [anon_sym_global] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), [sym_html_comment] = ACTIONS(5), }, [1358] = { [sym_comment] = STATE(1358), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_var] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_switch] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_debugger] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_using] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_delete] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_private_property_identifier] = ACTIONS(2239), + [sym_this] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_null] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_get] = ACTIONS(2239), + [anon_sym_set] = ACTIONS(2239), + [anon_sym_declare] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_private] = ACTIONS(2239), + [anon_sym_protected] = ACTIONS(2239), + [anon_sym_override] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_any] = ACTIONS(2239), + [anon_sym_number] = ACTIONS(2239), + [anon_sym_boolean] = ACTIONS(2239), + [anon_sym_string] = ACTIONS(2239), + [anon_sym_symbol] = ACTIONS(2239), + [anon_sym_object] = ACTIONS(2239), + [anon_sym_abstract] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), [sym_html_comment] = ACTIONS(5), }, [1359] = { [sym_comment] = STATE(1359), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_default] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_case] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, [1360] = { [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), + [sym_identifier] = ACTIONS(3422), + [anon_sym_export] = ACTIONS(3422), + [anon_sym_default] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_namespace] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_typeof] = ACTIONS(3422), + [anon_sym_import] = ACTIONS(3422), + [anon_sym_with] = ACTIONS(3422), + [anon_sym_var] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_switch] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_await] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_debugger] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_case] = ACTIONS(3422), + [anon_sym_yield] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LTtemplate_GT] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3422), + [anon_sym_class] = ACTIONS(3422), + [anon_sym_async] = ACTIONS(3422), + [anon_sym_function] = ACTIONS(3422), + [anon_sym_new] = ACTIONS(3422), + [anon_sym_using] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_void] = ACTIONS(3422), + [anon_sym_delete] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3422), + [sym_number] = ACTIONS(3422), + [sym_private_property_identifier] = ACTIONS(3422), + [sym_this] = ACTIONS(3422), + [sym_super] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_null] = ACTIONS(3422), + [sym_undefined] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_static] = ACTIONS(3422), + [anon_sym_readonly] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_declare] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_override] = ACTIONS(3422), + [anon_sym_module] = ACTIONS(3422), + [anon_sym_any] = ACTIONS(3422), + [anon_sym_number] = ACTIONS(3422), + [anon_sym_boolean] = ACTIONS(3422), + [anon_sym_string] = ACTIONS(3422), + [anon_sym_symbol] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_global] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), [sym_html_comment] = ACTIONS(5), }, [1361] = { [sym_comment] = STATE(1361), - [ts_builtin_sym_end] = ACTIONS(3587), - [sym_identifier] = ACTIONS(3385), - [anon_sym_export] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_namespace] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_typeof] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_var] = ACTIONS(3385), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_const] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_switch] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_await] = ACTIONS(3385), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3385), - [anon_sym_break] = ACTIONS(3385), - [anon_sym_continue] = ACTIONS(3385), - [anon_sym_debugger] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3385), - [anon_sym_throw] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LTtemplate_GT] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [anon_sym_SQUOTE] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_using] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_void] = ACTIONS(3385), - [anon_sym_delete] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3385), - [sym_number] = ACTIONS(3385), - [sym_private_property_identifier] = ACTIONS(3385), - [sym_this] = ACTIONS(3385), - [sym_super] = ACTIONS(3385), - [sym_true] = ACTIONS(3385), - [sym_false] = ACTIONS(3385), - [sym_null] = ACTIONS(3385), - [sym_undefined] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3385), - [anon_sym_set] = ACTIONS(3385), - [anon_sym_declare] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_protected] = ACTIONS(3385), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_any] = ACTIONS(3385), - [anon_sym_number] = ACTIONS(3385), - [anon_sym_boolean] = ACTIONS(3385), - [anon_sym_string] = ACTIONS(3385), - [anon_sym_symbol] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_abstract] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1362] = { [sym_comment] = STATE(1362), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_default] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_case] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), + [ts_builtin_sym_end] = ACTIONS(3610), + [sym_identifier] = ACTIONS(3398), + [anon_sym_export] = ACTIONS(3398), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_typeof] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(3398), + [anon_sym_with] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_else] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_await] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_debugger] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_LTtemplate_GT] = ACTIONS(3398), + [anon_sym_DQUOTE] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_function] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_using] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_void] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3398), + [sym_number] = ACTIONS(3398), + [sym_private_property_identifier] = ACTIONS(3398), + [sym_this] = ACTIONS(3398), + [sym_super] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_null] = ACTIONS(3398), + [sym_undefined] = ACTIONS(3398), + [anon_sym_AT] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_readonly] = ACTIONS(3398), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3398), + [anon_sym_declare] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_protected] = ACTIONS(3398), + [anon_sym_override] = ACTIONS(3398), + [anon_sym_module] = ACTIONS(3398), + [anon_sym_any] = ACTIONS(3398), + [anon_sym_number] = ACTIONS(3398), + [anon_sym_boolean] = ACTIONS(3398), + [anon_sym_string] = ACTIONS(3398), + [anon_sym_symbol] = ACTIONS(3398), + [anon_sym_object] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_global] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), [sym_html_comment] = ACTIONS(5), }, [1363] = { [sym_comment] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_LTtemplate_GT] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_SQUOTE] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_using] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3414), + [sym_number] = ACTIONS(3414), + [sym_private_property_identifier] = ACTIONS(3414), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3414), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_override] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_object] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_global] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), [sym_html_comment] = ACTIONS(5), }, [1364] = { [sym_comment] = STATE(1364), - [ts_builtin_sym_end] = ACTIONS(3589), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [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_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1365] = { [sym_comment] = STATE(1365), - [ts_builtin_sym_end] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [ts_builtin_sym_end] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3384), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_typeof] = ACTIONS(3384), + [anon_sym_import] = ACTIONS(3384), + [anon_sym_with] = ACTIONS(3384), + [anon_sym_var] = ACTIONS(3384), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_else] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_await] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_debugger] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_yield] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LTtemplate_GT] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_async] = ACTIONS(3384), + [anon_sym_function] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_void] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3384), + [sym_number] = ACTIONS(3384), + [sym_private_property_identifier] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + [sym_super] = ACTIONS(3384), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [sym_null] = ACTIONS(3384), + [sym_undefined] = ACTIONS(3384), + [anon_sym_AT] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_readonly] = ACTIONS(3384), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3384), + [anon_sym_declare] = ACTIONS(3384), + [anon_sym_public] = ACTIONS(3384), + [anon_sym_private] = ACTIONS(3384), + [anon_sym_protected] = ACTIONS(3384), + [anon_sym_override] = ACTIONS(3384), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_any] = ACTIONS(3384), + [anon_sym_number] = ACTIONS(3384), + [anon_sym_boolean] = ACTIONS(3384), + [anon_sym_string] = ACTIONS(3384), + [anon_sym_symbol] = ACTIONS(3384), + [anon_sym_object] = ACTIONS(3384), + [anon_sym_abstract] = ACTIONS(3384), + [anon_sym_global] = ACTIONS(3384), + [anon_sym_interface] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), [sym_html_comment] = ACTIONS(5), }, [1366] = { [sym_comment] = STATE(1366), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_default] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [ts_builtin_sym_end] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_var] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_debugger] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_delete] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [sym_private_property_identifier] = ACTIONS(2235), + [sym_this] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_null] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), + [anon_sym_abstract] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), [sym_html_comment] = ACTIONS(5), }, [1367] = { [sym_comment] = STATE(1367), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_default] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_debugger] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_delete] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_private_property_identifier] = ACTIONS(2219), + [sym_this] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_null] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_abstract] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, [1368] = { [sym_comment] = STATE(1368), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_default] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_case] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [sym__automatic_semicolon] = ACTIONS(2189), [sym_html_comment] = ACTIONS(5), }, [1369] = { [sym_comment] = STATE(1369), - [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_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_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_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_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_default] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1370] = { [sym_comment] = STATE(1370), - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym__automatic_semicolon] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1371] = { [sym_comment] = STATE(1371), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_debugger] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LTtemplate_GT] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2138), - [anon_sym_delete] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_private_property_identifier] = ACTIONS(2138), - [sym_this] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_undefined] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_any] = ACTIONS(2138), - [anon_sym_number] = ACTIONS(2138), - [anon_sym_boolean] = ACTIONS(2138), - [anon_sym_string] = ACTIONS(2138), - [anon_sym_symbol] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2338), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1372] = { [sym_comment] = STATE(1372), - [ts_builtin_sym_end] = ACTIONS(3593), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_default] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1373] = { [sym_comment] = STATE(1373), - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_global] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, [1374] = { [sym_comment] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(3597), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [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_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_default] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_case] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_global] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), [sym_html_comment] = ACTIONS(5), }, [1375] = { [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2480), + [ts_builtin_sym_end] = ACTIONS(3614), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_global] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, [1376] = { [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_global] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, [1377] = { [sym_comment] = STATE(1377), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_case] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_default] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_case] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_global] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, [1378] = { [sym_comment] = STATE(1378), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_default] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_global] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, [1379] = { [sym_comment] = STATE(1379), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_case] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3244), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3244), + [anon_sym_import] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_var] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_debugger] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LTtemplate_GT] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_private_property_identifier] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_undefined] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_readonly] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_declare] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_any] = ACTIONS(3244), + [anon_sym_number] = ACTIONS(3244), + [anon_sym_boolean] = ACTIONS(3244), + [anon_sym_string] = ACTIONS(3244), + [anon_sym_symbol] = ACTIONS(3244), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_abstract] = ACTIONS(3244), + [anon_sym_global] = ACTIONS(3244), + [anon_sym_interface] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), [sym_html_comment] = ACTIONS(5), }, [1380] = { [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_global] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, [1381] = { [sym_comment] = STATE(1381), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_typeof] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2209), + [anon_sym_delete] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(2209), + [sym_this] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_null] = ACTIONS(2209), + [sym_undefined] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_declare] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_protected] = ACTIONS(2209), + [anon_sym_override] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_any] = ACTIONS(2209), + [anon_sym_number] = ACTIONS(2209), + [anon_sym_boolean] = ACTIONS(2209), + [anon_sym_string] = ACTIONS(2209), + [anon_sym_symbol] = ACTIONS(2209), + [anon_sym_object] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), [sym_html_comment] = ACTIONS(5), }, [1382] = { [sym_comment] = STATE(1382), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym_import] = ACTIONS(3257), - [anon_sym_with] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_else] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_debugger] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_LTtemplate_GT] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_function] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3257), - [sym_number] = ACTIONS(3257), - [sym_private_property_identifier] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [sym_super] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_undefined] = ACTIONS(3257), - [anon_sym_AT] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_get] = ACTIONS(3257), - [anon_sym_set] = ACTIONS(3257), - [anon_sym_declare] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_module] = ACTIONS(3257), - [anon_sym_any] = ACTIONS(3257), - [anon_sym_number] = ACTIONS(3257), - [anon_sym_boolean] = ACTIONS(3257), - [anon_sym_string] = ACTIONS(3257), - [anon_sym_symbol] = ACTIONS(3257), - [anon_sym_object] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_default] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_case] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_global] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, [1383] = { [sym_comment] = STATE(1383), - [ts_builtin_sym_end] = ACTIONS(3603), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_typeof] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_var] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_const] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3389), - [anon_sym_switch] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_await] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3389), - [anon_sym_break] = ACTIONS(3389), - [anon_sym_continue] = ACTIONS(3389), - [anon_sym_debugger] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3389), - [anon_sym_throw] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LTtemplate_GT] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_using] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(3389), - [anon_sym_delete] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3389), - [sym_number] = ACTIONS(3389), - [sym_private_property_identifier] = ACTIONS(3389), - [sym_this] = ACTIONS(3389), - [sym_super] = ACTIONS(3389), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [sym_undefined] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3389), - [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_abstract] = ACTIONS(3389), - [anon_sym_interface] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), + [ts_builtin_sym_end] = ACTIONS(3618), + [sym_identifier] = ACTIONS(3244), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3244), + [anon_sym_import] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_var] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_debugger] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LTtemplate_GT] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_private_property_identifier] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_undefined] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_readonly] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_declare] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_any] = ACTIONS(3244), + [anon_sym_number] = ACTIONS(3244), + [anon_sym_boolean] = ACTIONS(3244), + [anon_sym_string] = ACTIONS(3244), + [anon_sym_symbol] = ACTIONS(3244), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_abstract] = ACTIONS(3244), + [anon_sym_global] = ACTIONS(3244), + [anon_sym_interface] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), [sym_html_comment] = ACTIONS(5), }, [1384] = { [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = ACTIONS(3605), - [sym_identifier] = ACTIONS(3265), - [anon_sym_export] = ACTIONS(3265), - [anon_sym_type] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_typeof] = ACTIONS(3265), - [anon_sym_import] = ACTIONS(3265), - [anon_sym_with] = ACTIONS(3265), - [anon_sym_var] = ACTIONS(3265), - [anon_sym_let] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_else] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_await] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_debugger] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym_yield] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LTtemplate_GT] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_async] = ACTIONS(3265), - [anon_sym_function] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_void] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3265), - [sym_number] = ACTIONS(3265), - [sym_private_property_identifier] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [sym_super] = ACTIONS(3265), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [sym_null] = ACTIONS(3265), - [sym_undefined] = ACTIONS(3265), - [anon_sym_AT] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3265), - [anon_sym_set] = ACTIONS(3265), - [anon_sym_declare] = ACTIONS(3265), - [anon_sym_public] = ACTIONS(3265), - [anon_sym_private] = ACTIONS(3265), - [anon_sym_protected] = ACTIONS(3265), - [anon_sym_override] = ACTIONS(3265), - [anon_sym_module] = ACTIONS(3265), - [anon_sym_any] = ACTIONS(3265), - [anon_sym_number] = ACTIONS(3265), - [anon_sym_boolean] = ACTIONS(3265), - [anon_sym_string] = ACTIONS(3265), - [anon_sym_symbol] = ACTIONS(3265), - [anon_sym_object] = ACTIONS(3265), - [anon_sym_abstract] = ACTIONS(3265), - [anon_sym_interface] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), + [ts_builtin_sym_end] = ACTIONS(3620), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_global] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, [1385] = { [sym_comment] = STATE(1385), - [ts_builtin_sym_end] = ACTIONS(3607), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [ts_builtin_sym_end] = ACTIONS(3622), + [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_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_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_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_abstract] = ACTIONS(3424), + [anon_sym_global] = ACTIONS(3424), + [anon_sym_interface] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), [sym_html_comment] = ACTIONS(5), }, [1386] = { [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [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_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_default] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_case] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_global] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, [1387] = { [sym_comment] = STATE(1387), - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [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_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [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_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_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_abstract] = ACTIONS(3444), + [anon_sym_global] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), [sym_html_comment] = ACTIONS(5), }, [1388] = { [sym_comment] = STATE(1388), - [ts_builtin_sym_end] = ACTIONS(3611), - [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_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_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_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_abstract] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), + [ts_builtin_sym_end] = ACTIONS(3624), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_global] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, [1389] = { [sym_comment] = STATE(1389), - [ts_builtin_sym_end] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_debugger] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LTtemplate_GT] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3337), - [sym_number] = ACTIONS(3337), - [sym_private_property_identifier] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - [sym_super] = ACTIONS(3337), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [sym_null] = ACTIONS(3337), - [sym_undefined] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_get] = ACTIONS(3337), - [anon_sym_set] = ACTIONS(3337), - [anon_sym_declare] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_any] = ACTIONS(3337), - [anon_sym_number] = ACTIONS(3337), - [anon_sym_boolean] = ACTIONS(3337), - [anon_sym_string] = ACTIONS(3337), - [anon_sym_symbol] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), + [ts_builtin_sym_end] = ACTIONS(3626), + [sym_identifier] = ACTIONS(3240), + [anon_sym_export] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3240), + [anon_sym_import] = ACTIONS(3240), + [anon_sym_with] = ACTIONS(3240), + [anon_sym_var] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_debugger] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LTtemplate_GT] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_function] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_private_property_identifier] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_undefined] = ACTIONS(3240), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_readonly] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3240), + [anon_sym_set] = ACTIONS(3240), + [anon_sym_declare] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_override] = ACTIONS(3240), + [anon_sym_module] = ACTIONS(3240), + [anon_sym_any] = ACTIONS(3240), + [anon_sym_number] = ACTIONS(3240), + [anon_sym_boolean] = ACTIONS(3240), + [anon_sym_string] = ACTIONS(3240), + [anon_sym_symbol] = ACTIONS(3240), + [anon_sym_object] = ACTIONS(3240), + [anon_sym_abstract] = ACTIONS(3240), + [anon_sym_global] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), [sym_html_comment] = ACTIONS(5), }, [1390] = { [sym_comment] = STATE(1390), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [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_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_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_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_abstract] = ACTIONS(3424), + [anon_sym_global] = ACTIONS(3424), + [anon_sym_interface] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), [sym_html_comment] = ACTIONS(5), }, [1391] = { [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_global] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, [1392] = { [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_global] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, [1393] = { [sym_comment] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3630), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_global] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, [1394] = { [sym_comment] = STATE(1394), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_else] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_global] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, [1395] = { [sym_comment] = STATE(1395), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_global] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, [1396] = { [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), + [ts_builtin_sym_end] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LTtemplate_GT] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3262), + [sym_number] = ACTIONS(3262), + [sym_private_property_identifier] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_object] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_global] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), [sym_html_comment] = ACTIONS(5), }, [1397] = { [sym_comment] = STATE(1397), - [ts_builtin_sym_end] = ACTIONS(3619), - [sym_identifier] = ACTIONS(3339), - [anon_sym_export] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_debugger] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LTtemplate_GT] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3339), - [sym_number] = ACTIONS(3339), - [sym_private_property_identifier] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [sym_super] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_null] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3339), - [anon_sym_set] = ACTIONS(3339), - [anon_sym_declare] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_module] = ACTIONS(3339), - [anon_sym_any] = ACTIONS(3339), - [anon_sym_number] = ACTIONS(3339), - [anon_sym_boolean] = ACTIONS(3339), - [anon_sym_string] = ACTIONS(3339), - [anon_sym_symbol] = ACTIONS(3339), - [anon_sym_object] = ACTIONS(3339), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), + [ts_builtin_sym_end] = ACTIONS(3636), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_debugger] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LTtemplate_GT] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_private_property_identifier] = ACTIONS(3276), + [sym_this] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [sym_null] = ACTIONS(3276), + [sym_undefined] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_readonly] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3276), + [anon_sym_set] = ACTIONS(3276), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_protected] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_global] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1398] = { [sym_comment] = STATE(1398), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [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_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_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_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_abstract] = ACTIONS(3462), + [anon_sym_global] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), [sym_html_comment] = ACTIONS(5), }, [1399] = { [sym_comment] = STATE(1399), - [sym_identifier] = ACTIONS(3339), - [anon_sym_export] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_debugger] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LTtemplate_GT] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3339), - [sym_number] = ACTIONS(3339), - [sym_private_property_identifier] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [sym_super] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_null] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3339), - [anon_sym_set] = ACTIONS(3339), - [anon_sym_declare] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_module] = ACTIONS(3339), - [anon_sym_any] = ACTIONS(3339), - [anon_sym_number] = ACTIONS(3339), - [anon_sym_boolean] = ACTIONS(3339), - [anon_sym_string] = ACTIONS(3339), - [anon_sym_symbol] = ACTIONS(3339), - [anon_sym_object] = ACTIONS(3339), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), + [ts_builtin_sym_end] = ACTIONS(3638), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LTtemplate_GT] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3278), + [sym_number] = ACTIONS(3278), + [sym_private_property_identifier] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_global] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), [sym_html_comment] = ACTIONS(5), }, [1400] = { [sym_comment] = STATE(1400), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_default] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_case] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3240), + [anon_sym_export] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3240), + [anon_sym_import] = ACTIONS(3240), + [anon_sym_with] = ACTIONS(3240), + [anon_sym_var] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_debugger] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LTtemplate_GT] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_function] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_private_property_identifier] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_undefined] = ACTIONS(3240), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_readonly] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3240), + [anon_sym_set] = ACTIONS(3240), + [anon_sym_declare] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_override] = ACTIONS(3240), + [anon_sym_module] = ACTIONS(3240), + [anon_sym_any] = ACTIONS(3240), + [anon_sym_number] = ACTIONS(3240), + [anon_sym_boolean] = ACTIONS(3240), + [anon_sym_string] = ACTIONS(3240), + [anon_sym_symbol] = ACTIONS(3240), + [anon_sym_object] = ACTIONS(3240), + [anon_sym_abstract] = ACTIONS(3240), + [anon_sym_global] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), [sym_html_comment] = ACTIONS(5), }, [1401] = { [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_global] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, [1402] = { + [sym_statement_block] = STATE(1630), [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [1403] = { [sym_comment] = STATE(1403), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_global] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, [1404] = { [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(2296), - [sym_identifier] = ACTIONS(2294), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2294), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_with] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_debugger] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LTtemplate_GT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_class] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_function] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_using] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2294), - [anon_sym_delete] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_private_property_identifier] = ACTIONS(2294), - [sym_this] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_true] = ACTIONS(2294), - [sym_false] = ACTIONS(2294), - [sym_null] = ACTIONS(2294), - [sym_undefined] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_readonly] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2294), - [anon_sym_set] = ACTIONS(2294), - [anon_sym_declare] = ACTIONS(2294), - [anon_sym_public] = ACTIONS(2294), - [anon_sym_private] = ACTIONS(2294), - [anon_sym_protected] = ACTIONS(2294), - [anon_sym_override] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_any] = ACTIONS(2294), - [anon_sym_number] = ACTIONS(2294), - [anon_sym_boolean] = ACTIONS(2294), - [anon_sym_string] = ACTIONS(2294), - [anon_sym_symbol] = ACTIONS(2294), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_abstract] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), + [ts_builtin_sym_end] = ACTIONS(3642), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_global] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, [1405] = { [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3623), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [ts_builtin_sym_end] = ACTIONS(3644), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_global] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, [1406] = { [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3398), + [anon_sym_export] = ACTIONS(3398), + [anon_sym_default] = ACTIONS(3398), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_typeof] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(3398), + [anon_sym_with] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_await] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_debugger] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_case] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_LTtemplate_GT] = ACTIONS(3398), + [anon_sym_DQUOTE] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_function] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_using] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_void] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3398), + [sym_number] = ACTIONS(3398), + [sym_private_property_identifier] = ACTIONS(3398), + [sym_this] = ACTIONS(3398), + [sym_super] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_null] = ACTIONS(3398), + [sym_undefined] = ACTIONS(3398), + [anon_sym_AT] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_readonly] = ACTIONS(3398), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3398), + [anon_sym_declare] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_protected] = ACTIONS(3398), + [anon_sym_override] = ACTIONS(3398), + [anon_sym_module] = ACTIONS(3398), + [anon_sym_any] = ACTIONS(3398), + [anon_sym_number] = ACTIONS(3398), + [anon_sym_boolean] = ACTIONS(3398), + [anon_sym_string] = ACTIONS(3398), + [anon_sym_symbol] = ACTIONS(3398), + [anon_sym_object] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_global] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), [sym_html_comment] = ACTIONS(5), }, [1407] = { [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3402), + [anon_sym_export] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_type] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_typeof] = ACTIONS(3402), + [anon_sym_import] = ACTIONS(3402), + [anon_sym_with] = ACTIONS(3402), + [anon_sym_var] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_await] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_debugger] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_yield] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_LTtemplate_GT] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_SQUOTE] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_async] = ACTIONS(3402), + [anon_sym_function] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_void] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3402), + [sym_number] = ACTIONS(3402), + [sym_private_property_identifier] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [sym_super] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_null] = ACTIONS(3402), + [sym_undefined] = ACTIONS(3402), + [anon_sym_AT] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_readonly] = ACTIONS(3402), + [anon_sym_get] = ACTIONS(3402), + [anon_sym_set] = ACTIONS(3402), + [anon_sym_declare] = ACTIONS(3402), + [anon_sym_public] = ACTIONS(3402), + [anon_sym_private] = ACTIONS(3402), + [anon_sym_protected] = ACTIONS(3402), + [anon_sym_override] = ACTIONS(3402), + [anon_sym_module] = ACTIONS(3402), + [anon_sym_any] = ACTIONS(3402), + [anon_sym_number] = ACTIONS(3402), + [anon_sym_boolean] = ACTIONS(3402), + [anon_sym_string] = ACTIONS(3402), + [anon_sym_symbol] = ACTIONS(3402), + [anon_sym_object] = ACTIONS(3402), + [anon_sym_abstract] = ACTIONS(3402), + [anon_sym_global] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), [sym_html_comment] = ACTIONS(5), }, [1408] = { [sym_comment] = STATE(1408), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LTtemplate_GT] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3262), + [sym_number] = ACTIONS(3262), + [sym_private_property_identifier] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_object] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_global] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), [sym_html_comment] = ACTIONS(5), }, [1409] = { [sym_comment] = STATE(1409), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LTtemplate_GT] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_private_property_identifier] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_global] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), [sym_html_comment] = ACTIONS(5), }, [1410] = { [sym_comment] = STATE(1410), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3646), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LTtemplate_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3360), + [anon_sym_delete] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_undefined] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_protected] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_module] = ACTIONS(3360), + [anon_sym_any] = ACTIONS(3360), + [anon_sym_number] = ACTIONS(3360), + [anon_sym_boolean] = ACTIONS(3360), + [anon_sym_string] = ACTIONS(3360), + [anon_sym_symbol] = ACTIONS(3360), + [anon_sym_object] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_global] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), [sym_html_comment] = ACTIONS(5), }, [1411] = { [sym_comment] = STATE(1411), - [sym_identifier] = ACTIONS(3251), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_typeof] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_with] = ACTIONS(3251), - [anon_sym_var] = ACTIONS(3251), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_await] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LTtemplate_GT] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_async] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_number] = ACTIONS(3251), - [sym_private_property_identifier] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - [sym_super] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [anon_sym_AT] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3251), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_declare] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_override] = ACTIONS(3251), - [anon_sym_module] = ACTIONS(3251), - [anon_sym_any] = ACTIONS(3251), - [anon_sym_number] = ACTIONS(3251), - [anon_sym_boolean] = ACTIONS(3251), - [anon_sym_string] = ACTIONS(3251), - [anon_sym_symbol] = ACTIONS(3251), - [anon_sym_object] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_debugger] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_case] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LTtemplate_GT] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_private_property_identifier] = ACTIONS(3276), + [sym_this] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [sym_null] = ACTIONS(3276), + [sym_undefined] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_readonly] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3276), + [anon_sym_set] = ACTIONS(3276), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_protected] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_global] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1412] = { [sym_comment] = STATE(1412), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_case] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LTtemplate_GT] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3278), + [sym_number] = ACTIONS(3278), + [sym_private_property_identifier] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_global] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), [sym_html_comment] = ACTIONS(5), }, [1413] = { [sym_comment] = STATE(1413), - [sym_identifier] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym_import] = ACTIONS(3257), - [anon_sym_with] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_debugger] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_LTtemplate_GT] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_function] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3257), - [sym_number] = ACTIONS(3257), - [sym_private_property_identifier] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [sym_super] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_undefined] = ACTIONS(3257), - [anon_sym_AT] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_get] = ACTIONS(3257), - [anon_sym_set] = ACTIONS(3257), - [anon_sym_declare] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_module] = ACTIONS(3257), - [anon_sym_any] = ACTIONS(3257), - [anon_sym_number] = ACTIONS(3257), - [anon_sym_boolean] = ACTIONS(3257), - [anon_sym_string] = ACTIONS(3257), - [anon_sym_symbol] = ACTIONS(3257), - [anon_sym_object] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [1414] = { [sym_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(3207), - [sym_identifier] = ACTIONS(3205), - [anon_sym_export] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym_import] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_debugger] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_LTtemplate_GT] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_function] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_void] = ACTIONS(3205), - [anon_sym_delete] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3205), - [sym_number] = ACTIONS(3205), - [sym_private_property_identifier] = ACTIONS(3205), - [sym_this] = ACTIONS(3205), - [sym_super] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_null] = ACTIONS(3205), - [sym_undefined] = ACTIONS(3205), - [anon_sym_AT] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_get] = ACTIONS(3205), - [anon_sym_set] = ACTIONS(3205), - [anon_sym_declare] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_module] = ACTIONS(3205), - [anon_sym_any] = ACTIONS(3205), - [anon_sym_number] = ACTIONS(3205), - [anon_sym_boolean] = ACTIONS(3205), - [anon_sym_string] = ACTIONS(3205), - [anon_sym_symbol] = ACTIONS(3205), - [anon_sym_object] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [sym__automatic_semicolon] = ACTIONS(3207), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1415] = { [sym_comment] = STATE(1415), - [sym_identifier] = ACTIONS(3385), - [anon_sym_export] = ACTIONS(3385), - [anon_sym_default] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_namespace] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_typeof] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_var] = ACTIONS(3385), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_const] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_switch] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_await] = ACTIONS(3385), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3385), - [anon_sym_break] = ACTIONS(3385), - [anon_sym_continue] = ACTIONS(3385), - [anon_sym_debugger] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3385), - [anon_sym_throw] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_case] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LTtemplate_GT] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [anon_sym_SQUOTE] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_using] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_void] = ACTIONS(3385), - [anon_sym_delete] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3385), - [sym_number] = ACTIONS(3385), - [sym_private_property_identifier] = ACTIONS(3385), - [sym_this] = ACTIONS(3385), - [sym_super] = ACTIONS(3385), - [sym_true] = ACTIONS(3385), - [sym_false] = ACTIONS(3385), - [sym_null] = ACTIONS(3385), - [sym_undefined] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3385), - [anon_sym_set] = ACTIONS(3385), - [anon_sym_declare] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_protected] = ACTIONS(3385), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_any] = ACTIONS(3385), - [anon_sym_number] = ACTIONS(3385), - [anon_sym_boolean] = ACTIONS(3385), - [anon_sym_string] = ACTIONS(3385), - [anon_sym_symbol] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_abstract] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), + [ts_builtin_sym_end] = ACTIONS(3648), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_global] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, [1416] = { [sym_comment] = STATE(1416), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_case] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_global] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, [1417] = { [sym_comment] = STATE(1417), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_default] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_case] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_global] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, [1418] = { [sym_comment] = STATE(1418), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [ts_builtin_sym_end] = ACTIONS(3650), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_global] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, [1419] = { [sym_comment] = STATE(1419), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [ts_builtin_sym_end] = ACTIONS(3652), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LTtemplate_GT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_number] = ACTIONS(3326), + [sym_private_property_identifier] = ACTIONS(3326), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_override] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_object] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_global] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, [1420] = { [sym_comment] = STATE(1420), - [sym_identifier] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_default] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_debugger] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_case] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LTtemplate_GT] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_void] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3431), - [sym_number] = ACTIONS(3431), - [sym_private_property_identifier] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - [sym_super] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_null] = ACTIONS(3431), - [sym_undefined] = ACTIONS(3431), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_get] = ACTIONS(3431), - [anon_sym_set] = ACTIONS(3431), - [anon_sym_declare] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_any] = ACTIONS(3431), - [anon_sym_number] = ACTIONS(3431), - [anon_sym_boolean] = ACTIONS(3431), - [anon_sym_string] = ACTIONS(3431), - [anon_sym_symbol] = ACTIONS(3431), - [anon_sym_object] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), + [ts_builtin_sym_end] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_global] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, [1421] = { [sym_comment] = STATE(1421), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_default] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_case] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [ts_builtin_sym_end] = ACTIONS(3656), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_global] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, [1422] = { [sym_comment] = STATE(1422), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_default] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_case] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), + [ts_builtin_sym_end] = ACTIONS(3658), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_global] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, [1423] = { [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3629), - [sym_identifier] = ACTIONS(3305), - [anon_sym_export] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_typeof] = ACTIONS(3305), - [anon_sym_import] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_var] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_const] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_switch] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_await] = ACTIONS(3305), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_try] = ACTIONS(3305), - [anon_sym_break] = ACTIONS(3305), - [anon_sym_continue] = ACTIONS(3305), - [anon_sym_debugger] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3305), - [anon_sym_throw] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_yield] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LTtemplate_GT] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_using] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_void] = ACTIONS(3305), - [anon_sym_delete] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3305), - [sym_number] = ACTIONS(3305), - [sym_private_property_identifier] = ACTIONS(3305), - [sym_this] = ACTIONS(3305), - [sym_super] = ACTIONS(3305), - [sym_true] = ACTIONS(3305), - [sym_false] = ACTIONS(3305), - [sym_null] = ACTIONS(3305), - [sym_undefined] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3305), - [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_abstract] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3305), - [anon_sym_enum] = ACTIONS(3305), + [ts_builtin_sym_end] = ACTIONS(3660), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LTtemplate_GT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3322), + [sym_number] = ACTIONS(3322), + [sym_private_property_identifier] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_global] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), [sym_html_comment] = ACTIONS(5), }, [1424] = { [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(3631), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym_import] = ACTIONS(3303), - [anon_sym_with] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_debugger] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_LTtemplate_GT] = ACTIONS(3303), - [anon_sym_DQUOTE] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_function] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_void] = ACTIONS(3303), - [anon_sym_delete] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3303), - [sym_number] = ACTIONS(3303), - [sym_private_property_identifier] = ACTIONS(3303), - [sym_this] = ACTIONS(3303), - [sym_super] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_undefined] = ACTIONS(3303), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_get] = ACTIONS(3303), - [anon_sym_set] = ACTIONS(3303), - [anon_sym_declare] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_module] = ACTIONS(3303), - [anon_sym_any] = ACTIONS(3303), - [anon_sym_number] = ACTIONS(3303), - [anon_sym_boolean] = ACTIONS(3303), - [anon_sym_string] = ACTIONS(3303), - [anon_sym_symbol] = ACTIONS(3303), - [anon_sym_object] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LTtemplate_GT] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3266), + [sym_number] = ACTIONS(3266), + [sym_private_property_identifier] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_global] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, [1425] = { [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3301), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_type] = ACTIONS(3301), - [anon_sym_namespace] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_typeof] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_with] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_const] = ACTIONS(3301), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_else] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3301), - [anon_sym_switch] = ACTIONS(3301), - [anon_sym_for] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_await] = ACTIONS(3301), - [anon_sym_while] = ACTIONS(3301), - [anon_sym_do] = ACTIONS(3301), - [anon_sym_try] = ACTIONS(3301), - [anon_sym_break] = ACTIONS(3301), - [anon_sym_continue] = ACTIONS(3301), - [anon_sym_debugger] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3301), - [anon_sym_throw] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_yield] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LTtemplate_GT] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [anon_sym_SQUOTE] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_function] = ACTIONS(3301), - [anon_sym_new] = ACTIONS(3301), - [anon_sym_using] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_void] = ACTIONS(3301), - [anon_sym_delete] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3301), - [sym_number] = ACTIONS(3301), - [sym_private_property_identifier] = ACTIONS(3301), - [sym_this] = ACTIONS(3301), - [sym_super] = ACTIONS(3301), - [sym_true] = ACTIONS(3301), - [sym_false] = ACTIONS(3301), - [sym_null] = ACTIONS(3301), - [sym_undefined] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3301), - [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_abstract] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), + [sym_identifier] = ACTIONS(3236), + [anon_sym_export] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3236), + [anon_sym_import] = ACTIONS(3236), + [anon_sym_with] = ACTIONS(3236), + [anon_sym_var] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_debugger] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LTtemplate_GT] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_function] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_private_property_identifier] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [sym_null] = ACTIONS(3236), + [sym_undefined] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_readonly] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_declare] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_module] = ACTIONS(3236), + [anon_sym_any] = ACTIONS(3236), + [anon_sym_number] = ACTIONS(3236), + [anon_sym_boolean] = ACTIONS(3236), + [anon_sym_string] = ACTIONS(3236), + [anon_sym_symbol] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_global] = ACTIONS(3236), + [anon_sym_interface] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, [1426] = { [sym_comment] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(3635), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LTtemplate_GT] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [sym__automatic_semicolon] = ACTIONS(2497), [sym_html_comment] = ACTIONS(5), }, [1427] = { [sym_comment] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_else] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_global] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, [1428] = { [sym_comment] = STATE(1428), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_default] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_case] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), + [ts_builtin_sym_end] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_global] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, [1429] = { [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(3639), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), - [anon_sym_abstract] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_global] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, [1430] = { [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3283), - [anon_sym_export] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_with] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_debugger] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_LTtemplate_GT] = ACTIONS(3283), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_function] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_void] = ACTIONS(3283), - [anon_sym_delete] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_number] = ACTIONS(3283), - [sym_private_property_identifier] = ACTIONS(3283), - [sym_this] = ACTIONS(3283), - [sym_super] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_null] = ACTIONS(3283), - [sym_undefined] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_get] = ACTIONS(3283), - [anon_sym_set] = ACTIONS(3283), - [anon_sym_declare] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_module] = ACTIONS(3283), - [anon_sym_any] = ACTIONS(3283), - [anon_sym_number] = ACTIONS(3283), - [anon_sym_boolean] = ACTIONS(3283), - [anon_sym_string] = ACTIONS(3283), - [anon_sym_symbol] = ACTIONS(3283), - [anon_sym_object] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), + [sym_identifier] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_with] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_debugger] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LTtemplate_GT] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_private_property_identifier] = ACTIONS(3468), + [sym_this] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_undefined] = ACTIONS(3468), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3468), + [anon_sym_set] = ACTIONS(3468), + [anon_sym_declare] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_any] = ACTIONS(3468), + [anon_sym_number] = ACTIONS(3468), + [anon_sym_boolean] = ACTIONS(3468), + [anon_sym_string] = ACTIONS(3468), + [anon_sym_symbol] = ACTIONS(3468), + [anon_sym_object] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_global] = ACTIONS(3468), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), [sym_html_comment] = ACTIONS(5), }, [1431] = { [sym_comment] = STATE(1431), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_case] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(3664), + [sym_identifier] = ACTIONS(3400), + [anon_sym_export] = ACTIONS(3400), + [anon_sym_type] = ACTIONS(3400), + [anon_sym_namespace] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_typeof] = ACTIONS(3400), + [anon_sym_import] = ACTIONS(3400), + [anon_sym_with] = ACTIONS(3400), + [anon_sym_var] = ACTIONS(3400), + [anon_sym_let] = ACTIONS(3400), + [anon_sym_const] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_else] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_switch] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_await] = ACTIONS(3400), + [anon_sym_while] = ACTIONS(3400), + [anon_sym_do] = ACTIONS(3400), + [anon_sym_try] = ACTIONS(3400), + [anon_sym_break] = ACTIONS(3400), + [anon_sym_continue] = ACTIONS(3400), + [anon_sym_debugger] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3400), + [anon_sym_throw] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_yield] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_LTtemplate_GT] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(3400), + [anon_sym_class] = ACTIONS(3400), + [anon_sym_async] = ACTIONS(3400), + [anon_sym_function] = ACTIONS(3400), + [anon_sym_new] = ACTIONS(3400), + [anon_sym_using] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_void] = ACTIONS(3400), + [anon_sym_delete] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3400), + [sym_number] = ACTIONS(3400), + [sym_private_property_identifier] = ACTIONS(3400), + [sym_this] = ACTIONS(3400), + [sym_super] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_null] = ACTIONS(3400), + [sym_undefined] = ACTIONS(3400), + [anon_sym_AT] = ACTIONS(3400), + [anon_sym_static] = ACTIONS(3400), + [anon_sym_readonly] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3400), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_declare] = ACTIONS(3400), + [anon_sym_public] = ACTIONS(3400), + [anon_sym_private] = ACTIONS(3400), + [anon_sym_protected] = ACTIONS(3400), + [anon_sym_override] = ACTIONS(3400), + [anon_sym_module] = ACTIONS(3400), + [anon_sym_any] = ACTIONS(3400), + [anon_sym_number] = ACTIONS(3400), + [anon_sym_boolean] = ACTIONS(3400), + [anon_sym_string] = ACTIONS(3400), + [anon_sym_symbol] = ACTIONS(3400), + [anon_sym_object] = ACTIONS(3400), + [anon_sym_abstract] = ACTIONS(3400), + [anon_sym_global] = ACTIONS(3400), + [anon_sym_interface] = ACTIONS(3400), + [anon_sym_enum] = ACTIONS(3400), [sym_html_comment] = ACTIONS(5), }, [1432] = { [sym_comment] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(3643), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_global] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1433] = { [sym_comment] = STATE(1433), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_case] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(3666), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_global] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, [1434] = { [sym_comment] = STATE(1434), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [ts_builtin_sym_end] = ACTIONS(3668), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_global] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, [1435] = { [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_typeof] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_var] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_switch] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_debugger] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_throw] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LTtemplate_GT] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_function] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_delete] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2147), + [sym_number] = ACTIONS(2147), + [sym_private_property_identifier] = ACTIONS(2147), + [sym_this] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_declare] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_private] = ACTIONS(2147), + [anon_sym_protected] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_any] = ACTIONS(2147), + [anon_sym_number] = ACTIONS(2147), + [anon_sym_boolean] = ACTIONS(2147), + [anon_sym_string] = ACTIONS(2147), + [anon_sym_symbol] = ACTIONS(2147), + [anon_sym_object] = ACTIONS(2147), + [anon_sym_abstract] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [sym__automatic_semicolon] = ACTIONS(3670), [sym_html_comment] = ACTIONS(5), }, [1436] = { [sym_comment] = STATE(1436), - [ts_builtin_sym_end] = ACTIONS(3647), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym_html_comment] = ACTIONS(5), }, [1437] = { [sym_comment] = STATE(1437), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_function] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - [sym_super] = ACTIONS(3333), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [sym_null] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [anon_sym_declare] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_any] = ACTIONS(3333), - [anon_sym_number] = ACTIONS(3333), - [anon_sym_boolean] = ACTIONS(3333), - [anon_sym_string] = ACTIONS(3333), - [anon_sym_symbol] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), + [ts_builtin_sym_end] = ACTIONS(3672), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LTtemplate_GT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_async] = ACTIONS(3362), + [anon_sym_function] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_number] = ACTIONS(3362), + [sym_private_property_identifier] = ACTIONS(3362), + [sym_this] = ACTIONS(3362), + [sym_super] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_undefined] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_declare] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_override] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_any] = ACTIONS(3362), + [anon_sym_number] = ACTIONS(3362), + [anon_sym_boolean] = ACTIONS(3362), + [anon_sym_string] = ACTIONS(3362), + [anon_sym_symbol] = ACTIONS(3362), + [anon_sym_object] = ACTIONS(3362), + [anon_sym_abstract] = ACTIONS(3362), + [anon_sym_global] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), [sym_html_comment] = ACTIONS(5), }, [1438] = { [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_else] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), + [ts_builtin_sym_end] = ACTIONS(3674), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_else] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_global] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, [1439] = { [sym_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(3651), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3404), + [anon_sym_export] = ACTIONS(3404), + [anon_sym_default] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_namespace] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3404), + [anon_sym_import] = ACTIONS(3404), + [anon_sym_with] = ACTIONS(3404), + [anon_sym_var] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_debugger] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_throw] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_case] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LTtemplate_GT] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_class] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_void] = ACTIONS(3404), + [anon_sym_delete] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3404), + [sym_number] = ACTIONS(3404), + [sym_private_property_identifier] = ACTIONS(3404), + [sym_this] = ACTIONS(3404), + [sym_super] = ACTIONS(3404), + [sym_true] = ACTIONS(3404), + [sym_false] = ACTIONS(3404), + [sym_null] = ACTIONS(3404), + [sym_undefined] = ACTIONS(3404), + [anon_sym_AT] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_readonly] = ACTIONS(3404), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3404), + [anon_sym_declare] = ACTIONS(3404), + [anon_sym_public] = ACTIONS(3404), + [anon_sym_private] = ACTIONS(3404), + [anon_sym_protected] = ACTIONS(3404), + [anon_sym_override] = ACTIONS(3404), + [anon_sym_module] = ACTIONS(3404), + [anon_sym_any] = ACTIONS(3404), + [anon_sym_number] = ACTIONS(3404), + [anon_sym_boolean] = ACTIONS(3404), + [anon_sym_string] = ACTIONS(3404), + [anon_sym_symbol] = ACTIONS(3404), + [anon_sym_object] = ACTIONS(3404), + [anon_sym_abstract] = ACTIONS(3404), + [anon_sym_global] = ACTIONS(3404), + [anon_sym_interface] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), [sym_html_comment] = ACTIONS(5), }, [1440] = { [sym_comment] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(3653), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_global] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, [1441] = { [sym_comment] = STATE(1441), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_case] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_global] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), [sym_html_comment] = ACTIONS(5), }, [1442] = { [sym_comment] = STATE(1442), - [sym_identifier] = ACTIONS(3383), - [anon_sym_export] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym_import] = ACTIONS(3383), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_debugger] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_case] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LTtemplate_GT] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_void] = ACTIONS(3383), - [anon_sym_delete] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3383), - [sym_number] = ACTIONS(3383), - [sym_private_property_identifier] = ACTIONS(3383), - [sym_this] = ACTIONS(3383), - [sym_super] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_null] = ACTIONS(3383), - [sym_undefined] = ACTIONS(3383), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_get] = ACTIONS(3383), - [anon_sym_set] = ACTIONS(3383), - [anon_sym_declare] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_any] = ACTIONS(3383), - [anon_sym_number] = ACTIONS(3383), - [anon_sym_boolean] = ACTIONS(3383), - [anon_sym_string] = ACTIONS(3383), - [anon_sym_symbol] = ACTIONS(3383), - [anon_sym_object] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3376), + [anon_sym_export] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_type] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_typeof] = ACTIONS(3376), + [anon_sym_import] = ACTIONS(3376), + [anon_sym_with] = ACTIONS(3376), + [anon_sym_var] = ACTIONS(3376), + [anon_sym_let] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_await] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_debugger] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_case] = ACTIONS(3376), + [anon_sym_yield] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LTtemplate_GT] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_async] = ACTIONS(3376), + [anon_sym_function] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_SLASH] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_void] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3376), + [sym_number] = ACTIONS(3376), + [sym_private_property_identifier] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), + [sym_super] = ACTIONS(3376), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [sym_null] = ACTIONS(3376), + [sym_undefined] = ACTIONS(3376), + [anon_sym_AT] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_readonly] = ACTIONS(3376), + [anon_sym_get] = ACTIONS(3376), + [anon_sym_set] = ACTIONS(3376), + [anon_sym_declare] = ACTIONS(3376), + [anon_sym_public] = ACTIONS(3376), + [anon_sym_private] = ACTIONS(3376), + [anon_sym_protected] = ACTIONS(3376), + [anon_sym_override] = ACTIONS(3376), + [anon_sym_module] = ACTIONS(3376), + [anon_sym_any] = ACTIONS(3376), + [anon_sym_number] = ACTIONS(3376), + [anon_sym_boolean] = ACTIONS(3376), + [anon_sym_string] = ACTIONS(3376), + [anon_sym_symbol] = ACTIONS(3376), + [anon_sym_object] = ACTIONS(3376), + [anon_sym_abstract] = ACTIONS(3376), + [anon_sym_global] = ACTIONS(3376), + [anon_sym_interface] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), [sym_html_comment] = ACTIONS(5), }, [1443] = { [sym_comment] = STATE(1443), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_case] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_global] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, [1444] = { [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(3655), - [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_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_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_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_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LTtemplate_GT] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3282), + [sym_number] = ACTIONS(3282), + [sym_private_property_identifier] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_override] = ACTIONS(3282), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_object] = ACTIONS(3282), + [anon_sym_abstract] = ACTIONS(3282), + [anon_sym_global] = ACTIONS(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), [sym_html_comment] = ACTIONS(5), }, [1445] = { [sym_comment] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3267), - [anon_sym_export] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_namespace] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_typeof] = ACTIONS(3267), - [anon_sym_import] = ACTIONS(3267), - [anon_sym_with] = ACTIONS(3267), - [anon_sym_var] = ACTIONS(3267), - [anon_sym_let] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_else] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_switch] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_await] = ACTIONS(3267), - [anon_sym_while] = ACTIONS(3267), - [anon_sym_do] = ACTIONS(3267), - [anon_sym_try] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_debugger] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_throw] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LTtemplate_GT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [anon_sym_SQUOTE] = ACTIONS(3267), - [anon_sym_class] = ACTIONS(3267), - [anon_sym_async] = ACTIONS(3267), - [anon_sym_function] = ACTIONS(3267), - [anon_sym_new] = ACTIONS(3267), - [anon_sym_using] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_void] = ACTIONS(3267), - [anon_sym_delete] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3267), - [sym_number] = ACTIONS(3267), - [sym_private_property_identifier] = ACTIONS(3267), - [sym_this] = ACTIONS(3267), - [sym_super] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_null] = ACTIONS(3267), - [sym_undefined] = ACTIONS(3267), - [anon_sym_AT] = ACTIONS(3267), - [anon_sym_static] = ACTIONS(3267), - [anon_sym_readonly] = ACTIONS(3267), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3267), - [anon_sym_public] = ACTIONS(3267), - [anon_sym_private] = ACTIONS(3267), - [anon_sym_protected] = ACTIONS(3267), - [anon_sym_override] = ACTIONS(3267), - [anon_sym_module] = ACTIONS(3267), - [anon_sym_any] = ACTIONS(3267), - [anon_sym_number] = ACTIONS(3267), - [anon_sym_boolean] = ACTIONS(3267), - [anon_sym_string] = ACTIONS(3267), - [anon_sym_symbol] = ACTIONS(3267), - [anon_sym_object] = ACTIONS(3267), - [anon_sym_abstract] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_type] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_typeof] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_with] = ACTIONS(3452), + [anon_sym_var] = ACTIONS(3452), + [anon_sym_let] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_await] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_debugger] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_LTtemplate_GT] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_async] = ACTIONS(3452), + [anon_sym_function] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_void] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3452), + [sym_number] = ACTIONS(3452), + [sym_private_property_identifier] = ACTIONS(3452), + [sym_this] = ACTIONS(3452), + [sym_super] = ACTIONS(3452), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [sym_null] = ACTIONS(3452), + [sym_undefined] = ACTIONS(3452), + [anon_sym_AT] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_readonly] = ACTIONS(3452), + [anon_sym_get] = ACTIONS(3452), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_declare] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_any] = ACTIONS(3452), + [anon_sym_number] = ACTIONS(3452), + [anon_sym_boolean] = ACTIONS(3452), + [anon_sym_string] = ACTIONS(3452), + [anon_sym_symbol] = ACTIONS(3452), + [anon_sym_object] = ACTIONS(3452), + [anon_sym_abstract] = ACTIONS(3452), + [anon_sym_global] = ACTIONS(3452), + [anon_sym_interface] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), [sym_html_comment] = ACTIONS(5), }, [1446] = { [sym_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(3659), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym_html_comment] = ACTIONS(5), }, [1447] = { [sym_comment] = STATE(1447), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [1448] = { [sym_comment] = STATE(1448), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3280), + [anon_sym_export] = ACTIONS(3280), + [anon_sym_default] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_namespace] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_with] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_debugger] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_case] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LTtemplate_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_undefined] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_readonly] = ACTIONS(3280), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_protected] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_module] = ACTIONS(3280), + [anon_sym_any] = ACTIONS(3280), + [anon_sym_number] = ACTIONS(3280), + [anon_sym_boolean] = ACTIONS(3280), + [anon_sym_string] = ACTIONS(3280), + [anon_sym_symbol] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_global] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), [sym_html_comment] = ACTIONS(5), }, [1449] = { [sym_comment] = STATE(1449), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_typeof] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3406), + [anon_sym_var] = ACTIONS(3406), + [anon_sym_let] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_await] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_debugger] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LTtemplate_GT] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(3406), + [anon_sym_SQUOTE] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_async] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_void] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3406), + [sym_number] = ACTIONS(3406), + [sym_private_property_identifier] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [sym_super] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_null] = ACTIONS(3406), + [sym_undefined] = ACTIONS(3406), + [anon_sym_AT] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_readonly] = ACTIONS(3406), + [anon_sym_get] = ACTIONS(3406), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_declare] = ACTIONS(3406), + [anon_sym_public] = ACTIONS(3406), + [anon_sym_private] = ACTIONS(3406), + [anon_sym_protected] = ACTIONS(3406), + [anon_sym_override] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_any] = ACTIONS(3406), + [anon_sym_number] = ACTIONS(3406), + [anon_sym_boolean] = ACTIONS(3406), + [anon_sym_string] = ACTIONS(3406), + [anon_sym_symbol] = ACTIONS(3406), + [anon_sym_object] = ACTIONS(3406), + [anon_sym_abstract] = ACTIONS(3406), + [anon_sym_global] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), [sym_html_comment] = ACTIONS(5), }, [1450] = { [sym_comment] = STATE(1450), - [sym_identifier] = ACTIONS(3335), - [anon_sym_export] = ACTIONS(3335), - [anon_sym_default] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_namespace] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_typeof] = ACTIONS(3335), - [anon_sym_import] = ACTIONS(3335), - [anon_sym_with] = ACTIONS(3335), - [anon_sym_var] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_switch] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_await] = ACTIONS(3335), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_do] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_debugger] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_throw] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_case] = ACTIONS(3335), - [anon_sym_yield] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3335), - [anon_sym_LTtemplate_GT] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_class] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_function] = ACTIONS(3335), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_using] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_void] = ACTIONS(3335), - [anon_sym_delete] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3335), - [sym_number] = ACTIONS(3335), - [sym_private_property_identifier] = ACTIONS(3335), - [sym_this] = ACTIONS(3335), - [sym_super] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_null] = ACTIONS(3335), - [sym_undefined] = ACTIONS(3335), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_static] = ACTIONS(3335), - [anon_sym_readonly] = ACTIONS(3335), - [anon_sym_get] = ACTIONS(3335), - [anon_sym_set] = ACTIONS(3335), - [anon_sym_declare] = ACTIONS(3335), - [anon_sym_public] = ACTIONS(3335), - [anon_sym_private] = ACTIONS(3335), - [anon_sym_protected] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3335), - [anon_sym_module] = ACTIONS(3335), - [anon_sym_any] = ACTIONS(3335), - [anon_sym_number] = ACTIONS(3335), - [anon_sym_boolean] = ACTIONS(3335), - [anon_sym_string] = ACTIONS(3335), - [anon_sym_symbol] = ACTIONS(3335), - [anon_sym_object] = ACTIONS(3335), - [anon_sym_abstract] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_finally] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [1451] = { [sym_comment] = STATE(1451), - [sym_identifier] = ACTIONS(3321), - [anon_sym_export] = ACTIONS(3321), - [anon_sym_default] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym_import] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_debugger] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_case] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LTtemplate_GT] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_function] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(3321), - [anon_sym_delete] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3321), - [sym_number] = ACTIONS(3321), - [sym_private_property_identifier] = ACTIONS(3321), - [sym_this] = ACTIONS(3321), - [sym_super] = ACTIONS(3321), - [sym_true] = ACTIONS(3321), - [sym_false] = ACTIONS(3321), - [sym_null] = ACTIONS(3321), - [sym_undefined] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_any] = ACTIONS(3321), - [anon_sym_number] = ACTIONS(3321), - [anon_sym_boolean] = ACTIONS(3321), - [anon_sym_string] = ACTIONS(3321), - [anon_sym_symbol] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_finally] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_global] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, [1452] = { [sym_comment] = STATE(1452), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_var] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_else] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_switch] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_debugger] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_using] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_delete] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_private_property_identifier] = ACTIONS(2239), + [sym_this] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_null] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_get] = ACTIONS(2239), + [anon_sym_set] = ACTIONS(2239), + [anon_sym_declare] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_private] = ACTIONS(2239), + [anon_sym_protected] = ACTIONS(2239), + [anon_sym_override] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_any] = ACTIONS(2239), + [anon_sym_number] = ACTIONS(2239), + [anon_sym_boolean] = ACTIONS(2239), + [anon_sym_string] = ACTIONS(2239), + [anon_sym_symbol] = ACTIONS(2239), + [anon_sym_object] = ACTIONS(2239), + [anon_sym_abstract] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), [sym_html_comment] = ACTIONS(5), }, [1453] = { [sym_comment] = STATE(1453), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_case] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1454] = { [sym_comment] = STATE(1454), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_default] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_case] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym_html_comment] = ACTIONS(5), }, [1455] = { [sym_comment] = STATE(1455), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3307), - [anon_sym_default] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_with] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_debugger] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_case] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_LTtemplate_GT] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_function] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3307), - [sym_number] = ACTIONS(3307), - [sym_private_property_identifier] = ACTIONS(3307), - [sym_this] = ACTIONS(3307), - [sym_super] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_null] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [anon_sym_AT] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_get] = ACTIONS(3307), - [anon_sym_set] = ACTIONS(3307), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(3676), + [sym_identifier] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_type] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_typeof] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_with] = ACTIONS(3452), + [anon_sym_var] = ACTIONS(3452), + [anon_sym_let] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_await] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_debugger] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_LTtemplate_GT] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_async] = ACTIONS(3452), + [anon_sym_function] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_void] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3452), + [sym_number] = ACTIONS(3452), + [sym_private_property_identifier] = ACTIONS(3452), + [sym_this] = ACTIONS(3452), + [sym_super] = ACTIONS(3452), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [sym_null] = ACTIONS(3452), + [sym_undefined] = ACTIONS(3452), + [anon_sym_AT] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_readonly] = ACTIONS(3452), + [anon_sym_get] = ACTIONS(3452), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_declare] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_any] = ACTIONS(3452), + [anon_sym_number] = ACTIONS(3452), + [anon_sym_boolean] = ACTIONS(3452), + [anon_sym_string] = ACTIONS(3452), + [anon_sym_symbol] = ACTIONS(3452), + [anon_sym_object] = ACTIONS(3452), + [anon_sym_abstract] = ACTIONS(3452), + [anon_sym_global] = ACTIONS(3452), + [anon_sym_interface] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), [sym_html_comment] = ACTIONS(5), }, [1456] = { [sym_comment] = STATE(1456), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_default] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_case] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1457] = { [sym_comment] = STATE(1457), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_default] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_case] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [1458] = { [sym_comment] = STATE(1458), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), + [sym_identifier] = ACTIONS(3380), + [anon_sym_export] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_type] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_typeof] = ACTIONS(3380), + [anon_sym_import] = ACTIONS(3380), + [anon_sym_with] = ACTIONS(3380), + [anon_sym_var] = ACTIONS(3380), + [anon_sym_let] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_await] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_debugger] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_yield] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LTtemplate_GT] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_async] = ACTIONS(3380), + [anon_sym_function] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_void] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3380), + [sym_number] = ACTIONS(3380), + [sym_private_property_identifier] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), + [sym_super] = ACTIONS(3380), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [sym_null] = ACTIONS(3380), + [sym_undefined] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_readonly] = ACTIONS(3380), + [anon_sym_get] = ACTIONS(3380), + [anon_sym_set] = ACTIONS(3380), + [anon_sym_declare] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_override] = ACTIONS(3380), + [anon_sym_module] = ACTIONS(3380), + [anon_sym_any] = ACTIONS(3380), + [anon_sym_number] = ACTIONS(3380), + [anon_sym_boolean] = ACTIONS(3380), + [anon_sym_string] = ACTIONS(3380), + [anon_sym_symbol] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_abstract] = ACTIONS(3380), + [anon_sym_global] = ACTIONS(3380), + [anon_sym_interface] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), [sym_html_comment] = ACTIONS(5), }, [1459] = { [sym_comment] = STATE(1459), - [sym_identifier] = ACTIONS(3297), - [anon_sym_export] = ACTIONS(3297), - [anon_sym_default] = ACTIONS(3297), - [anon_sym_type] = ACTIONS(3297), - [anon_sym_namespace] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_typeof] = ACTIONS(3297), - [anon_sym_import] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3297), - [anon_sym_const] = ACTIONS(3297), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3297), - [anon_sym_switch] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_await] = ACTIONS(3297), - [anon_sym_while] = ACTIONS(3297), - [anon_sym_do] = ACTIONS(3297), - [anon_sym_try] = ACTIONS(3297), - [anon_sym_break] = ACTIONS(3297), - [anon_sym_continue] = ACTIONS(3297), - [anon_sym_debugger] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3297), - [anon_sym_throw] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_case] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LTtemplate_GT] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [anon_sym_SQUOTE] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_async] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3297), - [anon_sym_using] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_void] = ACTIONS(3297), - [anon_sym_delete] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3297), - [sym_number] = ACTIONS(3297), - [sym_private_property_identifier] = ACTIONS(3297), - [sym_this] = ACTIONS(3297), - [sym_super] = ACTIONS(3297), - [sym_true] = ACTIONS(3297), - [sym_false] = ACTIONS(3297), - [sym_null] = ACTIONS(3297), - [sym_undefined] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3297), - [anon_sym_set] = ACTIONS(3297), - [anon_sym_declare] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_protected] = ACTIONS(3297), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_any] = ACTIONS(3297), - [anon_sym_number] = ACTIONS(3297), - [anon_sym_boolean] = ACTIONS(3297), - [anon_sym_string] = ACTIONS(3297), - [anon_sym_symbol] = ACTIONS(3297), - [anon_sym_object] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_with] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_debugger] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LTtemplate_GT] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_private_property_identifier] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_undefined] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_readonly] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_protected] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_global] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, [1460] = { [sym_comment] = STATE(1460), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_case] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_var] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_debugger] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_case] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_delete] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [sym_private_property_identifier] = ACTIONS(2235), + [sym_this] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_null] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), + [anon_sym_abstract] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), [sym_html_comment] = ACTIONS(5), }, [1461] = { [sym_comment] = STATE(1461), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_default] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_case] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_global] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, [1462] = { [sym_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_case] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_global] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1463] = { [sym_comment] = STATE(1463), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_case] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), [sym_html_comment] = ACTIONS(5), }, [1464] = { [sym_comment] = STATE(1464), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), + [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_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_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_abstract] = ACTIONS(3454), + [anon_sym_global] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), [sym_html_comment] = ACTIONS(5), }, [1465] = { [sym_comment] = STATE(1465), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3408), + [anon_sym_export] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_type] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3408), + [anon_sym_import] = ACTIONS(3408), + [anon_sym_with] = ACTIONS(3408), + [anon_sym_var] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_debugger] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_LTtemplate_GT] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_function] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_void] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3408), + [sym_number] = ACTIONS(3408), + [sym_private_property_identifier] = ACTIONS(3408), + [sym_this] = ACTIONS(3408), + [sym_super] = ACTIONS(3408), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [sym_null] = ACTIONS(3408), + [sym_undefined] = ACTIONS(3408), + [anon_sym_AT] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_readonly] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3408), + [anon_sym_declare] = ACTIONS(3408), + [anon_sym_public] = ACTIONS(3408), + [anon_sym_private] = ACTIONS(3408), + [anon_sym_protected] = ACTIONS(3408), + [anon_sym_override] = ACTIONS(3408), + [anon_sym_module] = ACTIONS(3408), + [anon_sym_any] = ACTIONS(3408), + [anon_sym_number] = ACTIONS(3408), + [anon_sym_boolean] = ACTIONS(3408), + [anon_sym_string] = ACTIONS(3408), + [anon_sym_symbol] = ACTIONS(3408), + [anon_sym_object] = ACTIONS(3408), + [anon_sym_abstract] = ACTIONS(3408), + [anon_sym_global] = ACTIONS(3408), + [anon_sym_interface] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), [sym_html_comment] = ACTIONS(5), }, [1466] = { [sym_comment] = STATE(1466), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_default] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3400), + [anon_sym_export] = ACTIONS(3400), + [anon_sym_default] = ACTIONS(3400), + [anon_sym_type] = ACTIONS(3400), + [anon_sym_namespace] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_typeof] = ACTIONS(3400), + [anon_sym_import] = ACTIONS(3400), + [anon_sym_with] = ACTIONS(3400), + [anon_sym_var] = ACTIONS(3400), + [anon_sym_let] = ACTIONS(3400), + [anon_sym_const] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_switch] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_await] = ACTIONS(3400), + [anon_sym_while] = ACTIONS(3400), + [anon_sym_do] = ACTIONS(3400), + [anon_sym_try] = ACTIONS(3400), + [anon_sym_break] = ACTIONS(3400), + [anon_sym_continue] = ACTIONS(3400), + [anon_sym_debugger] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3400), + [anon_sym_throw] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_case] = ACTIONS(3400), + [anon_sym_yield] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_LTtemplate_GT] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(3400), + [anon_sym_class] = ACTIONS(3400), + [anon_sym_async] = ACTIONS(3400), + [anon_sym_function] = ACTIONS(3400), + [anon_sym_new] = ACTIONS(3400), + [anon_sym_using] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_void] = ACTIONS(3400), + [anon_sym_delete] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3400), + [sym_number] = ACTIONS(3400), + [sym_private_property_identifier] = ACTIONS(3400), + [sym_this] = ACTIONS(3400), + [sym_super] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_null] = ACTIONS(3400), + [sym_undefined] = ACTIONS(3400), + [anon_sym_AT] = ACTIONS(3400), + [anon_sym_static] = ACTIONS(3400), + [anon_sym_readonly] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3400), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_declare] = ACTIONS(3400), + [anon_sym_public] = ACTIONS(3400), + [anon_sym_private] = ACTIONS(3400), + [anon_sym_protected] = ACTIONS(3400), + [anon_sym_override] = ACTIONS(3400), + [anon_sym_module] = ACTIONS(3400), + [anon_sym_any] = ACTIONS(3400), + [anon_sym_number] = ACTIONS(3400), + [anon_sym_boolean] = ACTIONS(3400), + [anon_sym_string] = ACTIONS(3400), + [anon_sym_symbol] = ACTIONS(3400), + [anon_sym_object] = ACTIONS(3400), + [anon_sym_abstract] = ACTIONS(3400), + [anon_sym_global] = ACTIONS(3400), + [anon_sym_interface] = ACTIONS(3400), + [anon_sym_enum] = ACTIONS(3400), [sym_html_comment] = ACTIONS(5), }, [1467] = { [sym_comment] = STATE(1467), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_default] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_module] = ACTIONS(3221), - [anon_sym_any] = ACTIONS(3221), - [anon_sym_number] = ACTIONS(3221), - [anon_sym_boolean] = ACTIONS(3221), - [anon_sym_string] = ACTIONS(3221), - [anon_sym_symbol] = ACTIONS(3221), - [anon_sym_object] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, [1468] = { [sym_comment] = STATE(1468), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_default] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_case] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_global] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, [1469] = { [sym_comment] = STATE(1469), - [sym_identifier] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_default] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_typeof] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_await] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_debugger] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_case] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LTtemplate_GT] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_number] = ACTIONS(3381), - [sym_private_property_identifier] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_undefined] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_readonly] = ACTIONS(3381), - [anon_sym_get] = ACTIONS(3381), - [anon_sym_set] = ACTIONS(3381), - [anon_sym_declare] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_protected] = ACTIONS(3381), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_any] = ACTIONS(3381), - [anon_sym_number] = ACTIONS(3381), - [anon_sym_boolean] = ACTIONS(3381), - [anon_sym_string] = ACTIONS(3381), - [anon_sym_symbol] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_abstract] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_default] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_with] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_debugger] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_case] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_LTtemplate_GT] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_using] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_void] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3386), + [sym_number] = ACTIONS(3386), + [sym_private_property_identifier] = ACTIONS(3386), + [sym_this] = ACTIONS(3386), + [sym_super] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [sym_undefined] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_module] = ACTIONS(3386), + [anon_sym_any] = ACTIONS(3386), + [anon_sym_number] = ACTIONS(3386), + [anon_sym_boolean] = ACTIONS(3386), + [anon_sym_string] = ACTIONS(3386), + [anon_sym_symbol] = ACTIONS(3386), + [anon_sym_object] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_global] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), [sym_html_comment] = ACTIONS(5), }, [1470] = { [sym_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(3663), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym_html_comment] = ACTIONS(5), }, [1471] = { [sym_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(3665), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_global] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, [1472] = { [sym_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(3667), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), + [ts_builtin_sym_end] = ACTIONS(3678), + [sym_identifier] = ACTIONS(3376), + [anon_sym_export] = ACTIONS(3376), + [anon_sym_type] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_typeof] = ACTIONS(3376), + [anon_sym_import] = ACTIONS(3376), + [anon_sym_with] = ACTIONS(3376), + [anon_sym_var] = ACTIONS(3376), + [anon_sym_let] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_else] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_await] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_debugger] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_yield] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LTtemplate_GT] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_async] = ACTIONS(3376), + [anon_sym_function] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_SLASH] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_void] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3376), + [sym_number] = ACTIONS(3376), + [sym_private_property_identifier] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), + [sym_super] = ACTIONS(3376), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [sym_null] = ACTIONS(3376), + [sym_undefined] = ACTIONS(3376), + [anon_sym_AT] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_readonly] = ACTIONS(3376), + [anon_sym_get] = ACTIONS(3376), + [anon_sym_set] = ACTIONS(3376), + [anon_sym_declare] = ACTIONS(3376), + [anon_sym_public] = ACTIONS(3376), + [anon_sym_private] = ACTIONS(3376), + [anon_sym_protected] = ACTIONS(3376), + [anon_sym_override] = ACTIONS(3376), + [anon_sym_module] = ACTIONS(3376), + [anon_sym_any] = ACTIONS(3376), + [anon_sym_number] = ACTIONS(3376), + [anon_sym_boolean] = ACTIONS(3376), + [anon_sym_string] = ACTIONS(3376), + [anon_sym_symbol] = ACTIONS(3376), + [anon_sym_object] = ACTIONS(3376), + [anon_sym_abstract] = ACTIONS(3376), + [anon_sym_global] = ACTIONS(3376), + [anon_sym_interface] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), [sym_html_comment] = ACTIONS(5), }, [1473] = { [sym_comment] = STATE(1473), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_default] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_global] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, [1474] = { [sym_comment] = STATE(1474), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_case] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_global] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, [1475] = { [sym_comment] = STATE(1475), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_case] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [ts_builtin_sym_end] = ACTIONS(3680), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LTtemplate_GT] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3266), + [sym_number] = ACTIONS(3266), + [sym_private_property_identifier] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_global] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, [1476] = { [sym_comment] = STATE(1476), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3416), + [anon_sym_export] = ACTIONS(3416), + [anon_sym_default] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_namespace] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_typeof] = ACTIONS(3416), + [anon_sym_import] = ACTIONS(3416), + [anon_sym_with] = ACTIONS(3416), + [anon_sym_var] = ACTIONS(3416), + [anon_sym_let] = ACTIONS(3416), + [anon_sym_const] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_switch] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_await] = ACTIONS(3416), + [anon_sym_while] = ACTIONS(3416), + [anon_sym_do] = ACTIONS(3416), + [anon_sym_try] = ACTIONS(3416), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_debugger] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_throw] = ACTIONS(3416), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_case] = ACTIONS(3416), + [anon_sym_yield] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_LTtemplate_GT] = ACTIONS(3416), + [anon_sym_DQUOTE] = ACTIONS(3416), + [anon_sym_SQUOTE] = ACTIONS(3416), + [anon_sym_class] = ACTIONS(3416), + [anon_sym_async] = ACTIONS(3416), + [anon_sym_function] = ACTIONS(3416), + [anon_sym_new] = ACTIONS(3416), + [anon_sym_using] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_void] = ACTIONS(3416), + [anon_sym_delete] = ACTIONS(3416), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3416), + [sym_number] = ACTIONS(3416), + [sym_private_property_identifier] = ACTIONS(3416), + [sym_this] = ACTIONS(3416), + [sym_super] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_null] = ACTIONS(3416), + [sym_undefined] = ACTIONS(3416), + [anon_sym_AT] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3416), + [anon_sym_readonly] = ACTIONS(3416), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3416), + [anon_sym_declare] = ACTIONS(3416), + [anon_sym_public] = ACTIONS(3416), + [anon_sym_private] = ACTIONS(3416), + [anon_sym_protected] = ACTIONS(3416), + [anon_sym_override] = ACTIONS(3416), + [anon_sym_module] = ACTIONS(3416), + [anon_sym_any] = ACTIONS(3416), + [anon_sym_number] = ACTIONS(3416), + [anon_sym_boolean] = ACTIONS(3416), + [anon_sym_string] = ACTIONS(3416), + [anon_sym_symbol] = ACTIONS(3416), + [anon_sym_object] = ACTIONS(3416), + [anon_sym_abstract] = ACTIONS(3416), + [anon_sym_global] = ACTIONS(3416), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_enum] = ACTIONS(3416), [sym_html_comment] = ACTIONS(5), }, [1477] = { [sym_comment] = STATE(1477), - [sym_identifier] = ACTIONS(3229), - [anon_sym_export] = ACTIONS(3229), - [anon_sym_default] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_debugger] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_LTtemplate_GT] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_function] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3229), - [anon_sym_delete] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3229), - [sym_number] = ACTIONS(3229), - [sym_private_property_identifier] = ACTIONS(3229), - [sym_this] = ACTIONS(3229), - [sym_super] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [sym_undefined] = ACTIONS(3229), - [anon_sym_AT] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_get] = ACTIONS(3229), - [anon_sym_set] = ACTIONS(3229), - [anon_sym_declare] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_module] = ACTIONS(3229), - [anon_sym_any] = ACTIONS(3229), - [anon_sym_number] = ACTIONS(3229), - [anon_sym_boolean] = ACTIONS(3229), - [anon_sym_string] = ACTIONS(3229), - [anon_sym_symbol] = ACTIONS(3229), - [anon_sym_object] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), + [ts_builtin_sym_end] = ACTIONS(3682), + [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_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_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_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_abstract] = ACTIONS(3410), + [anon_sym_global] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), [sym_html_comment] = ACTIONS(5), }, [1478] = { [sym_comment] = STATE(1478), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_default] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_with] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_debugger] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_case] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_LTtemplate_GT] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_void] = ACTIONS(3237), - [anon_sym_delete] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3237), - [sym_number] = ACTIONS(3237), - [sym_private_property_identifier] = ACTIONS(3237), - [sym_this] = ACTIONS(3237), - [sym_super] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_null] = ACTIONS(3237), - [sym_undefined] = ACTIONS(3237), - [anon_sym_AT] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1479] = { [sym_comment] = STATE(1479), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_case] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_typeof] = ACTIONS(3384), + [anon_sym_import] = ACTIONS(3384), + [anon_sym_with] = ACTIONS(3384), + [anon_sym_var] = ACTIONS(3384), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_await] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_debugger] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_yield] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LTtemplate_GT] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_async] = ACTIONS(3384), + [anon_sym_function] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_void] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3384), + [sym_number] = ACTIONS(3384), + [sym_private_property_identifier] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + [sym_super] = ACTIONS(3384), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [sym_null] = ACTIONS(3384), + [sym_undefined] = ACTIONS(3384), + [anon_sym_AT] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_readonly] = ACTIONS(3384), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3384), + [anon_sym_declare] = ACTIONS(3384), + [anon_sym_public] = ACTIONS(3384), + [anon_sym_private] = ACTIONS(3384), + [anon_sym_protected] = ACTIONS(3384), + [anon_sym_override] = ACTIONS(3384), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_any] = ACTIONS(3384), + [anon_sym_number] = ACTIONS(3384), + [anon_sym_boolean] = ACTIONS(3384), + [anon_sym_string] = ACTIONS(3384), + [anon_sym_symbol] = ACTIONS(3384), + [anon_sym_object] = ACTIONS(3384), + [anon_sym_abstract] = ACTIONS(3384), + [anon_sym_global] = ACTIONS(3384), + [anon_sym_interface] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), [sym_html_comment] = ACTIONS(5), }, [1480] = { [sym_comment] = STATE(1480), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [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_abstract] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), + [ts_builtin_sym_end] = ACTIONS(2445), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_typeof] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_var] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_debugger] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LTtemplate_GT] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_SLASH] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_void] = ACTIONS(2281), + [anon_sym_delete] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_number] = ACTIONS(2281), + [sym_private_property_identifier] = ACTIONS(2281), + [sym_this] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_null] = ACTIONS(2281), + [sym_undefined] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_get] = ACTIONS(2281), + [anon_sym_set] = ACTIONS(2281), + [anon_sym_declare] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_private] = ACTIONS(2281), + [anon_sym_protected] = ACTIONS(2281), + [anon_sym_override] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_any] = ACTIONS(2281), + [anon_sym_number] = ACTIONS(2281), + [anon_sym_boolean] = ACTIONS(2281), + [anon_sym_string] = ACTIONS(2281), + [anon_sym_symbol] = ACTIONS(2281), + [anon_sym_object] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [sym__automatic_semicolon] = ACTIONS(2531), [sym_html_comment] = ACTIONS(5), }, [1481] = { [sym_comment] = STATE(1481), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_case] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_global] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, [1482] = { [sym_comment] = STATE(1482), - [sym_identifier] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_debugger] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LTtemplate_GT] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_number] = ACTIONS(3325), - [sym_private_property_identifier] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - [sym_super] = ACTIONS(3325), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [sym_null] = ACTIONS(3325), - [sym_undefined] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3325), - [anon_sym_set] = ACTIONS(3325), - [anon_sym_declare] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_any] = ACTIONS(3325), - [anon_sym_number] = ACTIONS(3325), - [anon_sym_boolean] = ACTIONS(3325), - [anon_sym_string] = ACTIONS(3325), - [anon_sym_symbol] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LTtemplate_GT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_async] = ACTIONS(3362), + [anon_sym_function] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_number] = ACTIONS(3362), + [sym_private_property_identifier] = ACTIONS(3362), + [sym_this] = ACTIONS(3362), + [sym_super] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_undefined] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_declare] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_override] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_any] = ACTIONS(3362), + [anon_sym_number] = ACTIONS(3362), + [anon_sym_boolean] = ACTIONS(3362), + [anon_sym_string] = ACTIONS(3362), + [anon_sym_symbol] = ACTIONS(3362), + [anon_sym_object] = ACTIONS(3362), + [anon_sym_abstract] = ACTIONS(3362), + [anon_sym_global] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), [sym_html_comment] = ACTIONS(5), }, [1483] = { [sym_comment] = STATE(1483), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LTtemplate_GT] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_number] = ACTIONS(2335), + [sym_private_property_identifier] = ACTIONS(2335), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2499), [sym_html_comment] = ACTIONS(5), }, [1484] = { [sym_comment] = STATE(1484), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [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_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_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_abstract] = ACTIONS(3684), + [anon_sym_global] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, [1485] = { [sym_comment] = STATE(1485), - [ts_builtin_sym_end] = ACTIONS(3669), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), + [sym_identifier] = ACTIONS(3418), + [anon_sym_export] = ACTIONS(3418), + [anon_sym_default] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_namespace] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_typeof] = ACTIONS(3418), + [anon_sym_import] = ACTIONS(3418), + [anon_sym_with] = ACTIONS(3418), + [anon_sym_var] = ACTIONS(3418), + [anon_sym_let] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_switch] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_await] = ACTIONS(3418), + [anon_sym_while] = ACTIONS(3418), + [anon_sym_do] = ACTIONS(3418), + [anon_sym_try] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_debugger] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_throw] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_case] = ACTIONS(3418), + [anon_sym_yield] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_LTtemplate_GT] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(3418), + [anon_sym_SQUOTE] = ACTIONS(3418), + [anon_sym_class] = ACTIONS(3418), + [anon_sym_async] = ACTIONS(3418), + [anon_sym_function] = ACTIONS(3418), + [anon_sym_new] = ACTIONS(3418), + [anon_sym_using] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_void] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3418), + [sym_number] = ACTIONS(3418), + [sym_private_property_identifier] = ACTIONS(3418), + [sym_this] = ACTIONS(3418), + [sym_super] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_null] = ACTIONS(3418), + [sym_undefined] = ACTIONS(3418), + [anon_sym_AT] = ACTIONS(3418), + [anon_sym_static] = ACTIONS(3418), + [anon_sym_readonly] = ACTIONS(3418), + [anon_sym_get] = ACTIONS(3418), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_declare] = ACTIONS(3418), + [anon_sym_public] = ACTIONS(3418), + [anon_sym_private] = ACTIONS(3418), + [anon_sym_protected] = ACTIONS(3418), + [anon_sym_override] = ACTIONS(3418), + [anon_sym_module] = ACTIONS(3418), + [anon_sym_any] = ACTIONS(3418), + [anon_sym_number] = ACTIONS(3418), + [anon_sym_boolean] = ACTIONS(3418), + [anon_sym_string] = ACTIONS(3418), + [anon_sym_symbol] = ACTIONS(3418), + [anon_sym_object] = ACTIONS(3418), + [anon_sym_abstract] = ACTIONS(3418), + [anon_sym_global] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), [sym_html_comment] = ACTIONS(5), }, [1486] = { [sym_comment] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2230), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2230), - [anon_sym_import] = ACTIONS(2230), - [anon_sym_with] = ACTIONS(2230), - [anon_sym_var] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LTtemplate_GT] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_private_property_identifier] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_undefined] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2484), + [sym_identifier] = ACTIONS(3420), + [anon_sym_export] = ACTIONS(3420), + [anon_sym_default] = ACTIONS(3420), + [anon_sym_type] = ACTIONS(3420), + [anon_sym_namespace] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3420), + [anon_sym_import] = ACTIONS(3420), + [anon_sym_with] = ACTIONS(3420), + [anon_sym_var] = ACTIONS(3420), + [anon_sym_let] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_do] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_debugger] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_case] = ACTIONS(3420), + [anon_sym_yield] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_LTtemplate_GT] = ACTIONS(3420), + [anon_sym_DQUOTE] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3420), + [anon_sym_class] = ACTIONS(3420), + [anon_sym_async] = ACTIONS(3420), + [anon_sym_function] = ACTIONS(3420), + [anon_sym_new] = ACTIONS(3420), + [anon_sym_using] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_void] = ACTIONS(3420), + [anon_sym_delete] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3420), + [sym_number] = ACTIONS(3420), + [sym_private_property_identifier] = ACTIONS(3420), + [sym_this] = ACTIONS(3420), + [sym_super] = ACTIONS(3420), + [sym_true] = ACTIONS(3420), + [sym_false] = ACTIONS(3420), + [sym_null] = ACTIONS(3420), + [sym_undefined] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3420), + [anon_sym_readonly] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_declare] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_module] = ACTIONS(3420), + [anon_sym_any] = ACTIONS(3420), + [anon_sym_number] = ACTIONS(3420), + [anon_sym_boolean] = ACTIONS(3420), + [anon_sym_string] = ACTIONS(3420), + [anon_sym_symbol] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_global] = ACTIONS(3420), + [anon_sym_interface] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), [sym_html_comment] = ACTIONS(5), }, [1487] = { [sym_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(3455), - [sym_identifier] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_with] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_debugger] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_finally] = ACTIONS(3171), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_LTtemplate_GT] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_function] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_void] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3171), - [sym_number] = ACTIONS(3171), - [sym_private_property_identifier] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_null] = ACTIONS(3171), - [sym_undefined] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_get] = ACTIONS(3171), - [anon_sym_set] = ACTIONS(3171), - [anon_sym_declare] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_any] = ACTIONS(3171), - [anon_sym_number] = ACTIONS(3171), - [anon_sym_boolean] = ACTIONS(3171), - [anon_sym_string] = ACTIONS(3171), - [anon_sym_symbol] = ACTIONS(3171), - [anon_sym_object] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_default] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_case] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_global] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, [1488] = { [sym_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_namespace] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_with] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_debugger] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LTtemplate_GT] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2222), - [anon_sym_delete] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_private_property_identifier] = ACTIONS(2222), - [sym_this] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_undefined] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_readonly] = ACTIONS(2222), - [anon_sym_get] = ACTIONS(2222), - [anon_sym_set] = ACTIONS(2222), - [anon_sym_declare] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_protected] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_any] = ACTIONS(2222), - [anon_sym_number] = ACTIONS(2222), - [anon_sym_boolean] = ACTIONS(2222), - [anon_sym_string] = ACTIONS(2222), - [anon_sym_symbol] = ACTIONS(2222), - [anon_sym_object] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [sym__automatic_semicolon] = ACTIONS(2478), + [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_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_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(3434), + [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_abstract] = ACTIONS(3434), + [anon_sym_global] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), [sym_html_comment] = ACTIONS(5), }, [1489] = { [sym_comment] = STATE(1489), - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_with] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_debugger] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LTtemplate_GT] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2214), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_private_property_identifier] = ACTIONS(2214), - [sym_this] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_readonly] = ACTIONS(2214), - [anon_sym_get] = ACTIONS(2214), - [anon_sym_set] = ACTIONS(2214), - [anon_sym_declare] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_protected] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_any] = ACTIONS(2214), - [anon_sym_number] = ACTIONS(2214), - [anon_sym_boolean] = ACTIONS(2214), - [anon_sym_string] = ACTIONS(2214), - [anon_sym_symbol] = ACTIONS(2214), - [anon_sym_object] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [sym__automatic_semicolon] = ACTIONS(2476), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_case] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_global] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, [1490] = { [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2164), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_namespace] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_with] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_do] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_debugger] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LTtemplate_GT] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_void] = ACTIONS(2164), - [anon_sym_delete] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_number] = ACTIONS(2164), - [sym_private_property_identifier] = ACTIONS(2164), - [sym_this] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2450), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_global] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, [1491] = { [sym_comment] = STATE(1491), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_default] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_typeof] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_var] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_const] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3389), - [anon_sym_switch] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_await] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3389), - [anon_sym_break] = ACTIONS(3389), - [anon_sym_continue] = ACTIONS(3389), - [anon_sym_debugger] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3389), - [anon_sym_throw] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_case] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LTtemplate_GT] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_using] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(3389), - [anon_sym_delete] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3389), - [sym_number] = ACTIONS(3389), - [sym_private_property_identifier] = ACTIONS(3389), - [sym_this] = ACTIONS(3389), - [sym_super] = ACTIONS(3389), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [sym_undefined] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3389), - [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_abstract] = ACTIONS(3389), - [anon_sym_interface] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1492] = { [sym_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LTtemplate_GT] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_private_property_identifier] = ACTIONS(2156), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [sym__automatic_semicolon] = ACTIONS(2448), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2243), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_var] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_debugger] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LTtemplate_GT] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_function] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_using] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_void] = ACTIONS(2243), + [anon_sym_delete] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2243), + [sym_number] = ACTIONS(2243), + [sym_private_property_identifier] = ACTIONS(2243), + [sym_this] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_null] = ACTIONS(2243), + [sym_undefined] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [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_abstract] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_interface] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2483), [sym_html_comment] = ACTIONS(5), }, [1493] = { [sym_comment] = STATE(1493), - [sym_identifier] = ACTIONS(3265), - [anon_sym_export] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_type] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_typeof] = ACTIONS(3265), - [anon_sym_import] = ACTIONS(3265), - [anon_sym_with] = ACTIONS(3265), - [anon_sym_var] = ACTIONS(3265), - [anon_sym_let] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_await] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_debugger] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym_case] = ACTIONS(3265), - [anon_sym_yield] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LTtemplate_GT] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_async] = ACTIONS(3265), - [anon_sym_function] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_void] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3265), - [sym_number] = ACTIONS(3265), - [sym_private_property_identifier] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [sym_super] = ACTIONS(3265), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [sym_null] = ACTIONS(3265), - [sym_undefined] = ACTIONS(3265), - [anon_sym_AT] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3265), - [anon_sym_set] = ACTIONS(3265), - [anon_sym_declare] = ACTIONS(3265), - [anon_sym_public] = ACTIONS(3265), - [anon_sym_private] = ACTIONS(3265), - [anon_sym_protected] = ACTIONS(3265), - [anon_sym_override] = ACTIONS(3265), - [anon_sym_module] = ACTIONS(3265), - [anon_sym_any] = ACTIONS(3265), - [anon_sym_number] = ACTIONS(3265), - [anon_sym_boolean] = ACTIONS(3265), - [anon_sym_string] = ACTIONS(3265), - [anon_sym_symbol] = ACTIONS(3265), - [anon_sym_object] = ACTIONS(3265), - [anon_sym_abstract] = ACTIONS(3265), - [anon_sym_interface] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), + [sym_identifier] = ACTIONS(3438), + [anon_sym_export] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3438), + [anon_sym_typeof] = ACTIONS(3438), + [anon_sym_import] = ACTIONS(3438), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_var] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_await] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_debugger] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LTtemplate_GT] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_SQUOTE] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(3438), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_void] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3438), + [sym_number] = ACTIONS(3438), + [sym_private_property_identifier] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [sym_super] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_null] = ACTIONS(3438), + [sym_undefined] = ACTIONS(3438), + [anon_sym_AT] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_readonly] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(3438), + [anon_sym_set] = ACTIONS(3438), + [anon_sym_declare] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_override] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_any] = ACTIONS(3438), + [anon_sym_number] = ACTIONS(3438), + [anon_sym_boolean] = ACTIONS(3438), + [anon_sym_string] = ACTIONS(3438), + [anon_sym_symbol] = ACTIONS(3438), + [anon_sym_object] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(3438), + [anon_sym_global] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), [sym_html_comment] = ACTIONS(5), }, [1494] = { [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2273), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_typeof] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_var] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_debugger] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LTtemplate_GT] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_void] = ACTIONS(2273), + [anon_sym_delete] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_number] = ACTIONS(2273), + [sym_private_property_identifier] = ACTIONS(2273), + [sym_this] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_get] = ACTIONS(2273), + [anon_sym_set] = ACTIONS(2273), + [anon_sym_declare] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_private] = ACTIONS(2273), + [anon_sym_protected] = ACTIONS(2273), + [anon_sym_override] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_any] = ACTIONS(2273), + [anon_sym_number] = ACTIONS(2273), + [anon_sym_boolean] = ACTIONS(2273), + [anon_sym_string] = ACTIONS(2273), + [anon_sym_symbol] = ACTIONS(2273), + [anon_sym_object] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [sym__automatic_semicolon] = ACTIONS(2527), [sym_html_comment] = ACTIONS(5), }, [1495] = { [sym_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_var] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_debugger] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LTtemplate_GT] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_SLASH] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_undefined] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_get] = ACTIONS(2317), + [anon_sym_set] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_override] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_any] = ACTIONS(2317), + [anon_sym_number] = ACTIONS(2317), + [anon_sym_boolean] = ACTIONS(2317), + [anon_sym_string] = ACTIONS(2317), + [anon_sym_symbol] = ACTIONS(2317), + [anon_sym_object] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [sym__automatic_semicolon] = ACTIONS(2481), [sym_html_comment] = ACTIONS(5), }, [1496] = { [sym_comment] = STATE(1496), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_default] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_case] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LTtemplate_GT] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_void] = ACTIONS(2289), + [anon_sym_delete] = 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), + [sym_number] = ACTIONS(2289), + [sym_private_property_identifier] = ACTIONS(2289), + [sym_this] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [sym_undefined] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_override] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_object] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2535), [sym_html_comment] = ACTIONS(5), }, [1497] = { [sym_comment] = STATE(1497), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [sym__automatic_semicolon] = ACTIONS(3686), [sym_html_comment] = ACTIONS(5), }, [1498] = { [sym_comment] = STATE(1498), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_default] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_case] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_global] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, [1499] = { [sym_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym_identifier] = ACTIONS(3259), - [anon_sym_export] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_typeof] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_with] = ACTIONS(3259), - [anon_sym_var] = ACTIONS(3259), - [anon_sym_let] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_else] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_await] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_debugger] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LTtemplate_GT] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_function] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3259), - [sym_number] = ACTIONS(3259), - [sym_private_property_identifier] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - [sym_super] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_null] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [anon_sym_AT] = ACTIONS(3259), - [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_abstract] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_typeof] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_var] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_debugger] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LTtemplate_GT] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_void] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2307), + [sym_number] = ACTIONS(2307), + [sym_private_property_identifier] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_undefined] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_abstract] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [sym__automatic_semicolon] = ACTIONS(2525), [sym_html_comment] = ACTIONS(5), }, [1500] = { [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(3673), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_else] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3243), - [anon_sym_any] = ACTIONS(3243), - [anon_sym_number] = ACTIONS(3243), - [anon_sym_boolean] = ACTIONS(3243), - [anon_sym_string] = ACTIONS(3243), - [anon_sym_symbol] = ACTIONS(3243), - [anon_sym_object] = ACTIONS(3243), - [anon_sym_abstract] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [ts_builtin_sym_end] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_typeof] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_debugger] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LTtemplate_GT] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2299), + [sym_number] = ACTIONS(2299), + [sym_private_property_identifier] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_undefined] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_declare] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_private] = ACTIONS(2299), + [anon_sym_protected] = ACTIONS(2299), + [anon_sym_override] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_any] = ACTIONS(2299), + [anon_sym_number] = ACTIONS(2299), + [anon_sym_boolean] = ACTIONS(2299), + [anon_sym_string] = ACTIONS(2299), + [anon_sym_symbol] = ACTIONS(2299), + [anon_sym_object] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_interface] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [sym__automatic_semicolon] = ACTIONS(2529), [sym_html_comment] = ACTIONS(5), }, [1501] = { [sym_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(3675), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_global] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, [1502] = { [sym_comment] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(3677), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_global] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, [1503] = { [sym_comment] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(3679), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LTtemplate_GT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3322), + [sym_number] = ACTIONS(3322), + [sym_private_property_identifier] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_global] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), [sym_html_comment] = ACTIONS(5), }, [1504] = { [sym_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [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_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [ts_builtin_sym_end] = ACTIONS(3578), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_global] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, [1505] = { [sym_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_debugger] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LTtemplate_GT] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_void] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3431), - [sym_number] = ACTIONS(3431), - [sym_private_property_identifier] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - [sym_super] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_null] = ACTIONS(3431), - [sym_undefined] = ACTIONS(3431), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_get] = ACTIONS(3431), - [anon_sym_set] = ACTIONS(3431), - [anon_sym_declare] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_any] = ACTIONS(3431), - [anon_sym_number] = ACTIONS(3431), - [anon_sym_boolean] = ACTIONS(3431), - [anon_sym_string] = ACTIONS(3431), - [anon_sym_symbol] = ACTIONS(3431), - [anon_sym_object] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_typeof] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_var] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_debugger] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LTtemplate_GT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_function] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_number] = ACTIONS(2191), + [sym_private_property_identifier] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_get] = ACTIONS(2191), + [anon_sym_set] = ACTIONS(2191), + [anon_sym_declare] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_override] = ACTIONS(2191), + [anon_sym_module] = ACTIONS(2191), + [anon_sym_any] = ACTIONS(2191), + [anon_sym_number] = ACTIONS(2191), + [anon_sym_boolean] = ACTIONS(2191), + [anon_sym_string] = ACTIONS(2191), + [anon_sym_symbol] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2191), + [anon_sym_abstract] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), [sym_html_comment] = ACTIONS(5), }, [1506] = { [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [ts_builtin_sym_end] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3418), + [anon_sym_export] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_namespace] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_typeof] = ACTIONS(3418), + [anon_sym_import] = ACTIONS(3418), + [anon_sym_with] = ACTIONS(3418), + [anon_sym_var] = ACTIONS(3418), + [anon_sym_let] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_switch] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_await] = ACTIONS(3418), + [anon_sym_while] = ACTIONS(3418), + [anon_sym_do] = ACTIONS(3418), + [anon_sym_try] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_debugger] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_throw] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_yield] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_LTtemplate_GT] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(3418), + [anon_sym_SQUOTE] = ACTIONS(3418), + [anon_sym_class] = ACTIONS(3418), + [anon_sym_async] = ACTIONS(3418), + [anon_sym_function] = ACTIONS(3418), + [anon_sym_new] = ACTIONS(3418), + [anon_sym_using] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_void] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3418), + [sym_number] = ACTIONS(3418), + [sym_private_property_identifier] = ACTIONS(3418), + [sym_this] = ACTIONS(3418), + [sym_super] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_null] = ACTIONS(3418), + [sym_undefined] = ACTIONS(3418), + [anon_sym_AT] = ACTIONS(3418), + [anon_sym_static] = ACTIONS(3418), + [anon_sym_readonly] = ACTIONS(3418), + [anon_sym_get] = ACTIONS(3418), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_declare] = ACTIONS(3418), + [anon_sym_public] = ACTIONS(3418), + [anon_sym_private] = ACTIONS(3418), + [anon_sym_protected] = ACTIONS(3418), + [anon_sym_override] = ACTIONS(3418), + [anon_sym_module] = ACTIONS(3418), + [anon_sym_any] = ACTIONS(3418), + [anon_sym_number] = ACTIONS(3418), + [anon_sym_boolean] = ACTIONS(3418), + [anon_sym_string] = ACTIONS(3418), + [anon_sym_symbol] = ACTIONS(3418), + [anon_sym_object] = ACTIONS(3418), + [anon_sym_abstract] = ACTIONS(3418), + [anon_sym_global] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), [sym_html_comment] = ACTIONS(5), }, [1507] = { [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [ts_builtin_sym_end] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3408), + [anon_sym_export] = ACTIONS(3408), + [anon_sym_type] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3408), + [anon_sym_import] = ACTIONS(3408), + [anon_sym_with] = ACTIONS(3408), + [anon_sym_var] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_debugger] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_LTtemplate_GT] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_function] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_void] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3408), + [sym_number] = ACTIONS(3408), + [sym_private_property_identifier] = ACTIONS(3408), + [sym_this] = ACTIONS(3408), + [sym_super] = ACTIONS(3408), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [sym_null] = ACTIONS(3408), + [sym_undefined] = ACTIONS(3408), + [anon_sym_AT] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_readonly] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3408), + [anon_sym_declare] = ACTIONS(3408), + [anon_sym_public] = ACTIONS(3408), + [anon_sym_private] = ACTIONS(3408), + [anon_sym_protected] = ACTIONS(3408), + [anon_sym_override] = ACTIONS(3408), + [anon_sym_module] = ACTIONS(3408), + [anon_sym_any] = ACTIONS(3408), + [anon_sym_number] = ACTIONS(3408), + [anon_sym_boolean] = ACTIONS(3408), + [anon_sym_string] = ACTIONS(3408), + [anon_sym_symbol] = ACTIONS(3408), + [anon_sym_object] = ACTIONS(3408), + [anon_sym_abstract] = ACTIONS(3408), + [anon_sym_global] = ACTIONS(3408), + [anon_sym_interface] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), [sym_html_comment] = ACTIONS(5), }, [1508] = { [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3388), + [anon_sym_export] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_namespace] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3388), + [anon_sym_import] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [anon_sym_var] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_debugger] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_throw] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LTtemplate_GT] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_class] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_function] = ACTIONS(3388), + [anon_sym_new] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_private_property_identifier] = ACTIONS(3388), + [sym_this] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_undefined] = ACTIONS(3388), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_readonly] = ACTIONS(3388), + [anon_sym_get] = ACTIONS(3388), + [anon_sym_set] = ACTIONS(3388), + [anon_sym_declare] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3388), + [anon_sym_module] = ACTIONS(3388), + [anon_sym_any] = ACTIONS(3388), + [anon_sym_number] = ACTIONS(3388), + [anon_sym_boolean] = ACTIONS(3388), + [anon_sym_string] = ACTIONS(3388), + [anon_sym_symbol] = ACTIONS(3388), + [anon_sym_object] = ACTIONS(3388), + [anon_sym_abstract] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), [sym_html_comment] = ACTIONS(5), }, [1509] = { [sym_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), + [ts_builtin_sym_end] = ACTIONS(3476), + [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_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_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_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_abstract] = ACTIONS(3462), + [anon_sym_global] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), [sym_html_comment] = ACTIONS(5), }, [1510] = { [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [ts_builtin_sym_end] = ACTIONS(3672), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LTtemplate_GT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_async] = ACTIONS(3362), + [anon_sym_function] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_number] = ACTIONS(3362), + [sym_private_property_identifier] = ACTIONS(3362), + [sym_this] = ACTIONS(3362), + [sym_super] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_undefined] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_declare] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_override] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_any] = ACTIONS(3362), + [anon_sym_number] = ACTIONS(3362), + [anon_sym_boolean] = ACTIONS(3362), + [anon_sym_string] = ACTIONS(3362), + [anon_sym_symbol] = ACTIONS(3362), + [anon_sym_object] = ACTIONS(3362), + [anon_sym_abstract] = ACTIONS(3362), + [anon_sym_global] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), [sym_html_comment] = ACTIONS(5), }, [1511] = { [sym_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(3651), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [ts_builtin_sym_end] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_global] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, [1512] = { [sym_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(3517), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [ts_builtin_sym_end] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3420), + [anon_sym_export] = ACTIONS(3420), + [anon_sym_type] = ACTIONS(3420), + [anon_sym_namespace] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3420), + [anon_sym_import] = ACTIONS(3420), + [anon_sym_with] = ACTIONS(3420), + [anon_sym_var] = ACTIONS(3420), + [anon_sym_let] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_do] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_debugger] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_yield] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_LTtemplate_GT] = ACTIONS(3420), + [anon_sym_DQUOTE] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3420), + [anon_sym_class] = ACTIONS(3420), + [anon_sym_async] = ACTIONS(3420), + [anon_sym_function] = ACTIONS(3420), + [anon_sym_new] = ACTIONS(3420), + [anon_sym_using] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_void] = ACTIONS(3420), + [anon_sym_delete] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3420), + [sym_number] = ACTIONS(3420), + [sym_private_property_identifier] = ACTIONS(3420), + [sym_this] = ACTIONS(3420), + [sym_super] = ACTIONS(3420), + [sym_true] = ACTIONS(3420), + [sym_false] = ACTIONS(3420), + [sym_null] = ACTIONS(3420), + [sym_undefined] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3420), + [anon_sym_readonly] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_declare] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_module] = ACTIONS(3420), + [anon_sym_any] = ACTIONS(3420), + [anon_sym_number] = ACTIONS(3420), + [anon_sym_boolean] = ACTIONS(3420), + [anon_sym_string] = ACTIONS(3420), + [anon_sym_symbol] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_global] = ACTIONS(3420), + [anon_sym_interface] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), [sym_html_comment] = ACTIONS(5), }, [1513] = { [sym_comment] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_namespace] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2298), - [anon_sym_import] = ACTIONS(2298), - [anon_sym_with] = ACTIONS(2298), - [anon_sym_var] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_debugger] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LTtemplate_GT] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_class] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_function] = ACTIONS(2298), - [anon_sym_new] = ACTIONS(2298), - [anon_sym_using] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2298), - [anon_sym_delete] = 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), - [sym_number] = ACTIONS(2298), - [sym_private_property_identifier] = ACTIONS(2298), - [sym_this] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_undefined] = ACTIONS(2298), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_readonly] = ACTIONS(2298), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_declare] = ACTIONS(2298), - [anon_sym_public] = ACTIONS(2298), - [anon_sym_private] = ACTIONS(2298), - [anon_sym_protected] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_any] = ACTIONS(2298), - [anon_sym_number] = ACTIONS(2298), - [anon_sym_boolean] = ACTIONS(2298), - [anon_sym_string] = ACTIONS(2298), - [anon_sym_symbol] = ACTIONS(2298), - [anon_sym_object] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2298), - [anon_sym_interface] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3388), + [anon_sym_export] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_namespace] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3388), + [anon_sym_import] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [anon_sym_var] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_debugger] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_throw] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LTtemplate_GT] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_class] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_function] = ACTIONS(3388), + [anon_sym_new] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_private_property_identifier] = ACTIONS(3388), + [sym_this] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_undefined] = ACTIONS(3388), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_readonly] = ACTIONS(3388), + [anon_sym_get] = ACTIONS(3388), + [anon_sym_set] = ACTIONS(3388), + [anon_sym_declare] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3388), + [anon_sym_module] = ACTIONS(3388), + [anon_sym_any] = ACTIONS(3388), + [anon_sym_number] = ACTIONS(3388), + [anon_sym_boolean] = ACTIONS(3388), + [anon_sym_string] = ACTIONS(3388), + [anon_sym_symbol] = ACTIONS(3388), + [anon_sym_object] = ACTIONS(3388), + [anon_sym_abstract] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), [sym_html_comment] = ACTIONS(5), }, [1514] = { [sym_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_with] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_debugger] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_LTtemplate_GT] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_void] = ACTIONS(3237), - [anon_sym_delete] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3237), - [sym_number] = ACTIONS(3237), - [sym_private_property_identifier] = ACTIONS(3237), - [sym_this] = ACTIONS(3237), - [sym_super] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_null] = ACTIONS(3237), - [sym_undefined] = ACTIONS(3237), - [anon_sym_AT] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), + [ts_builtin_sym_end] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3416), + [anon_sym_export] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_namespace] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_typeof] = ACTIONS(3416), + [anon_sym_import] = ACTIONS(3416), + [anon_sym_with] = ACTIONS(3416), + [anon_sym_var] = ACTIONS(3416), + [anon_sym_let] = ACTIONS(3416), + [anon_sym_const] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_switch] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_await] = ACTIONS(3416), + [anon_sym_while] = ACTIONS(3416), + [anon_sym_do] = ACTIONS(3416), + [anon_sym_try] = ACTIONS(3416), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_debugger] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_throw] = ACTIONS(3416), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_yield] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_LTtemplate_GT] = ACTIONS(3416), + [anon_sym_DQUOTE] = ACTIONS(3416), + [anon_sym_SQUOTE] = ACTIONS(3416), + [anon_sym_class] = ACTIONS(3416), + [anon_sym_async] = ACTIONS(3416), + [anon_sym_function] = ACTIONS(3416), + [anon_sym_new] = ACTIONS(3416), + [anon_sym_using] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_void] = ACTIONS(3416), + [anon_sym_delete] = ACTIONS(3416), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3416), + [sym_number] = ACTIONS(3416), + [sym_private_property_identifier] = ACTIONS(3416), + [sym_this] = ACTIONS(3416), + [sym_super] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_null] = ACTIONS(3416), + [sym_undefined] = ACTIONS(3416), + [anon_sym_AT] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3416), + [anon_sym_readonly] = ACTIONS(3416), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3416), + [anon_sym_declare] = ACTIONS(3416), + [anon_sym_public] = ACTIONS(3416), + [anon_sym_private] = ACTIONS(3416), + [anon_sym_protected] = ACTIONS(3416), + [anon_sym_override] = ACTIONS(3416), + [anon_sym_module] = ACTIONS(3416), + [anon_sym_any] = ACTIONS(3416), + [anon_sym_number] = ACTIONS(3416), + [anon_sym_boolean] = ACTIONS(3416), + [anon_sym_string] = ACTIONS(3416), + [anon_sym_symbol] = ACTIONS(3416), + [anon_sym_object] = ACTIONS(3416), + [anon_sym_abstract] = ACTIONS(3416), + [anon_sym_global] = ACTIONS(3416), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_enum] = ACTIONS(3416), [sym_html_comment] = ACTIONS(5), }, [1515] = { [sym_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(3525), - [sym_identifier] = ACTIONS(3321), - [anon_sym_export] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym_import] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_debugger] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LTtemplate_GT] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_function] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(3321), - [anon_sym_delete] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3321), - [sym_number] = ACTIONS(3321), - [sym_private_property_identifier] = ACTIONS(3321), - [sym_this] = ACTIONS(3321), - [sym_super] = ACTIONS(3321), - [sym_true] = ACTIONS(3321), - [sym_false] = ACTIONS(3321), - [sym_null] = ACTIONS(3321), - [sym_undefined] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_any] = ACTIONS(3321), - [anon_sym_number] = ACTIONS(3321), - [anon_sym_boolean] = ACTIONS(3321), - [anon_sym_string] = ACTIONS(3321), - [anon_sym_symbol] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1516] = { [sym_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_with] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_debugger] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_LTtemplate_GT] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_function] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3307), - [sym_number] = ACTIONS(3307), - [sym_private_property_identifier] = ACTIONS(3307), - [sym_this] = ACTIONS(3307), - [sym_super] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_null] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [anon_sym_AT] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_get] = ACTIONS(3307), - [anon_sym_set] = ACTIONS(3307), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(3658), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_global] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, [1517] = { [sym_comment] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), + [ts_builtin_sym_end] = ACTIONS(3586), + [sym_identifier] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_typeof] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3406), + [anon_sym_var] = ACTIONS(3406), + [anon_sym_let] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_await] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_debugger] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LTtemplate_GT] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(3406), + [anon_sym_SQUOTE] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_async] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_void] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3406), + [sym_number] = ACTIONS(3406), + [sym_private_property_identifier] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [sym_super] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_null] = ACTIONS(3406), + [sym_undefined] = ACTIONS(3406), + [anon_sym_AT] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_readonly] = ACTIONS(3406), + [anon_sym_get] = ACTIONS(3406), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_declare] = ACTIONS(3406), + [anon_sym_public] = ACTIONS(3406), + [anon_sym_private] = ACTIONS(3406), + [anon_sym_protected] = ACTIONS(3406), + [anon_sym_override] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_any] = ACTIONS(3406), + [anon_sym_number] = ACTIONS(3406), + [anon_sym_boolean] = ACTIONS(3406), + [anon_sym_string] = ACTIONS(3406), + [anon_sym_symbol] = ACTIONS(3406), + [anon_sym_object] = ACTIONS(3406), + [anon_sym_abstract] = ACTIONS(3406), + [anon_sym_global] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), [sym_html_comment] = ACTIONS(5), }, [1518] = { [sym_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(3523), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), + [ts_builtin_sym_end] = ACTIONS(3682), + [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_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_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_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_abstract] = ACTIONS(3410), + [anon_sym_global] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), [sym_html_comment] = ACTIONS(5), }, [1519] = { [sym_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym_identifier] = ACTIONS(3251), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_typeof] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_with] = ACTIONS(3251), - [anon_sym_var] = ACTIONS(3251), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_await] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LTtemplate_GT] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_async] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_number] = ACTIONS(3251), - [sym_private_property_identifier] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - [sym_super] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [anon_sym_AT] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3251), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_declare] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_override] = ACTIONS(3251), - [anon_sym_module] = ACTIONS(3251), - [anon_sym_any] = ACTIONS(3251), - [anon_sym_number] = ACTIONS(3251), - [anon_sym_boolean] = ACTIONS(3251), - [anon_sym_string] = ACTIONS(3251), - [anon_sym_symbol] = ACTIONS(3251), - [anon_sym_object] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1520] = { [sym_comment] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_typeof] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_await] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_debugger] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LTtemplate_GT] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_number] = ACTIONS(3381), - [sym_private_property_identifier] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_undefined] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_readonly] = ACTIONS(3381), - [anon_sym_get] = ACTIONS(3381), - [anon_sym_set] = ACTIONS(3381), - [anon_sym_declare] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_protected] = ACTIONS(3381), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_any] = ACTIONS(3381), - [anon_sym_number] = ACTIONS(3381), - [anon_sym_boolean] = ACTIONS(3381), - [anon_sym_string] = ACTIONS(3381), - [anon_sym_symbol] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_abstract] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), + [ts_builtin_sym_end] = ACTIONS(3674), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_global] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, [1521] = { [sym_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(3659), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), + [ts_builtin_sym_end] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_with] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_debugger] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LTtemplate_GT] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_private_property_identifier] = ACTIONS(3468), + [sym_this] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_undefined] = ACTIONS(3468), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3468), + [anon_sym_set] = ACTIONS(3468), + [anon_sym_declare] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_any] = ACTIONS(3468), + [anon_sym_number] = ACTIONS(3468), + [anon_sym_boolean] = ACTIONS(3468), + [anon_sym_string] = ACTIONS(3468), + [anon_sym_symbol] = ACTIONS(3468), + [anon_sym_object] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_global] = ACTIONS(3468), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), [sym_html_comment] = ACTIONS(5), }, [1522] = { [sym_comment] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3229), - [anon_sym_export] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_debugger] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_LTtemplate_GT] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_function] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3229), - [anon_sym_delete] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3229), - [sym_number] = ACTIONS(3229), - [sym_private_property_identifier] = ACTIONS(3229), - [sym_this] = ACTIONS(3229), - [sym_super] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [sym_undefined] = ACTIONS(3229), - [anon_sym_AT] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_get] = ACTIONS(3229), - [anon_sym_set] = ACTIONS(3229), - [anon_sym_declare] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_module] = ACTIONS(3229), - [anon_sym_any] = ACTIONS(3229), - [anon_sym_number] = ACTIONS(3229), - [anon_sym_boolean] = ACTIONS(3229), - [anon_sym_string] = ACTIONS(3229), - [anon_sym_symbol] = ACTIONS(3229), - [anon_sym_object] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), + [ts_builtin_sym_end] = ACTIONS(3556), + [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_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_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(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_abstract] = ACTIONS(3434), + [anon_sym_global] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), [sym_html_comment] = ACTIONS(5), }, [1523] = { [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1524] = { [sym_comment] = STATE(1524), - [ts_builtin_sym_end] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, [1525] = { [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(3647), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), + [ts_builtin_sym_end] = ACTIONS(3646), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LTtemplate_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3360), + [anon_sym_delete] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_undefined] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_protected] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_module] = ACTIONS(3360), + [anon_sym_any] = ACTIONS(3360), + [anon_sym_number] = ACTIONS(3360), + [anon_sym_boolean] = ACTIONS(3360), + [anon_sym_string] = ACTIONS(3360), + [anon_sym_symbol] = ACTIONS(3360), + [anon_sym_object] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_global] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), [sym_html_comment] = ACTIONS(5), }, [1526] = { [sym_comment] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [ts_builtin_sym_end] = ACTIONS(3656), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_global] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, [1527] = { [sym_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [ts_builtin_sym_end] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3394), + [anon_sym_export] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_namespace] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_with] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_debugger] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_LTtemplate_GT] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_void] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3394), + [sym_number] = ACTIONS(3394), + [sym_private_property_identifier] = ACTIONS(3394), + [sym_this] = ACTIONS(3394), + [sym_super] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [sym_undefined] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3394), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3394), + [anon_sym_declare] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_module] = ACTIONS(3394), + [anon_sym_any] = ACTIONS(3394), + [anon_sym_number] = ACTIONS(3394), + [anon_sym_boolean] = ACTIONS(3394), + [anon_sym_string] = ACTIONS(3394), + [anon_sym_symbol] = ACTIONS(3394), + [anon_sym_object] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_global] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), [sym_html_comment] = ACTIONS(5), }, [1528] = { [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(3481), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1529] = { [sym_comment] = STATE(1529), - [ts_builtin_sym_end] = ACTIONS(3511), - [sym_identifier] = ACTIONS(3297), - [anon_sym_export] = ACTIONS(3297), - [anon_sym_type] = ACTIONS(3297), - [anon_sym_namespace] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_typeof] = ACTIONS(3297), - [anon_sym_import] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3297), - [anon_sym_const] = ACTIONS(3297), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3297), - [anon_sym_switch] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_await] = ACTIONS(3297), - [anon_sym_while] = ACTIONS(3297), - [anon_sym_do] = ACTIONS(3297), - [anon_sym_try] = ACTIONS(3297), - [anon_sym_break] = ACTIONS(3297), - [anon_sym_continue] = ACTIONS(3297), - [anon_sym_debugger] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3297), - [anon_sym_throw] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LTtemplate_GT] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [anon_sym_SQUOTE] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_async] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3297), - [anon_sym_using] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_void] = ACTIONS(3297), - [anon_sym_delete] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3297), - [sym_number] = ACTIONS(3297), - [sym_private_property_identifier] = ACTIONS(3297), - [sym_this] = ACTIONS(3297), - [sym_super] = ACTIONS(3297), - [sym_true] = ACTIONS(3297), - [sym_false] = ACTIONS(3297), - [sym_null] = ACTIONS(3297), - [sym_undefined] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3297), - [anon_sym_set] = ACTIONS(3297), - [anon_sym_declare] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_protected] = ACTIONS(3297), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_any] = ACTIONS(3297), - [anon_sym_number] = ACTIONS(3297), - [anon_sym_boolean] = ACTIONS(3297), - [anon_sym_string] = ACTIONS(3297), - [anon_sym_symbol] = ACTIONS(3297), - [anon_sym_object] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3392), + [anon_sym_export] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_typeof] = ACTIONS(3392), + [anon_sym_import] = ACTIONS(3392), + [anon_sym_with] = ACTIONS(3392), + [anon_sym_var] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_await] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_debugger] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LTtemplate_GT] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_SQUOTE] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_async] = ACTIONS(3392), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_void] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3392), + [sym_number] = ACTIONS(3392), + [sym_private_property_identifier] = ACTIONS(3392), + [sym_this] = ACTIONS(3392), + [sym_super] = ACTIONS(3392), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [sym_null] = ACTIONS(3392), + [sym_undefined] = ACTIONS(3392), + [anon_sym_AT] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_readonly] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3392), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_declare] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_override] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_any] = ACTIONS(3392), + [anon_sym_number] = ACTIONS(3392), + [anon_sym_boolean] = ACTIONS(3392), + [anon_sym_string] = ACTIONS(3392), + [anon_sym_symbol] = ACTIONS(3392), + [anon_sym_object] = ACTIONS(3392), + [anon_sym_abstract] = ACTIONS(3392), + [anon_sym_global] = ACTIONS(3392), + [anon_sym_interface] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), [sym_html_comment] = ACTIONS(5), }, [1530] = { [sym_comment] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), + [ts_builtin_sym_end] = ACTIONS(3594), + [sym_identifier] = ACTIONS(3404), + [anon_sym_export] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_namespace] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3404), + [anon_sym_import] = ACTIONS(3404), + [anon_sym_with] = ACTIONS(3404), + [anon_sym_var] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_debugger] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_throw] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LTtemplate_GT] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_class] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_void] = ACTIONS(3404), + [anon_sym_delete] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3404), + [sym_number] = ACTIONS(3404), + [sym_private_property_identifier] = ACTIONS(3404), + [sym_this] = ACTIONS(3404), + [sym_super] = ACTIONS(3404), + [sym_true] = ACTIONS(3404), + [sym_false] = ACTIONS(3404), + [sym_null] = ACTIONS(3404), + [sym_undefined] = ACTIONS(3404), + [anon_sym_AT] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_readonly] = ACTIONS(3404), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3404), + [anon_sym_declare] = ACTIONS(3404), + [anon_sym_public] = ACTIONS(3404), + [anon_sym_private] = ACTIONS(3404), + [anon_sym_protected] = ACTIONS(3404), + [anon_sym_override] = ACTIONS(3404), + [anon_sym_module] = ACTIONS(3404), + [anon_sym_any] = ACTIONS(3404), + [anon_sym_number] = ACTIONS(3404), + [anon_sym_boolean] = ACTIONS(3404), + [anon_sym_string] = ACTIONS(3404), + [anon_sym_symbol] = ACTIONS(3404), + [anon_sym_object] = ACTIONS(3404), + [anon_sym_abstract] = ACTIONS(3404), + [anon_sym_global] = ACTIONS(3404), + [anon_sym_interface] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), [sym_html_comment] = ACTIONS(5), }, [1531] = { [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_typeof] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_debugger] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LTtemplate_GT] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_delete] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2219), + [sym_number] = ACTIONS(2219), + [sym_private_property_identifier] = ACTIONS(2219), + [sym_this] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_null] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_abstract] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, [1532] = { [sym_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3335), - [anon_sym_export] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_namespace] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_typeof] = ACTIONS(3335), - [anon_sym_import] = ACTIONS(3335), - [anon_sym_with] = ACTIONS(3335), - [anon_sym_var] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_switch] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_await] = ACTIONS(3335), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_do] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_debugger] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_throw] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_yield] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3335), - [anon_sym_LTtemplate_GT] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_class] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_function] = ACTIONS(3335), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_using] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_void] = ACTIONS(3335), - [anon_sym_delete] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3335), - [sym_number] = ACTIONS(3335), - [sym_private_property_identifier] = ACTIONS(3335), - [sym_this] = ACTIONS(3335), - [sym_super] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_null] = ACTIONS(3335), - [sym_undefined] = ACTIONS(3335), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_static] = ACTIONS(3335), - [anon_sym_readonly] = ACTIONS(3335), - [anon_sym_get] = ACTIONS(3335), - [anon_sym_set] = ACTIONS(3335), - [anon_sym_declare] = ACTIONS(3335), - [anon_sym_public] = ACTIONS(3335), - [anon_sym_private] = ACTIONS(3335), - [anon_sym_protected] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3335), - [anon_sym_module] = ACTIONS(3335), - [anon_sym_any] = ACTIONS(3335), - [anon_sym_number] = ACTIONS(3335), - [anon_sym_boolean] = ACTIONS(3335), - [anon_sym_string] = ACTIONS(3335), - [anon_sym_symbol] = ACTIONS(3335), - [anon_sym_object] = ACTIONS(3335), - [anon_sym_abstract] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), + [ts_builtin_sym_end] = ACTIONS(3630), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_global] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, [1533] = { [sym_comment] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(3438), + [anon_sym_export] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3438), + [anon_sym_typeof] = ACTIONS(3438), + [anon_sym_import] = ACTIONS(3438), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_var] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_await] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_debugger] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LTtemplate_GT] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_SQUOTE] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(3438), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_void] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3438), + [sym_number] = ACTIONS(3438), + [sym_private_property_identifier] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [sym_super] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_null] = ACTIONS(3438), + [sym_undefined] = ACTIONS(3438), + [anon_sym_AT] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_readonly] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(3438), + [anon_sym_set] = ACTIONS(3438), + [anon_sym_declare] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_override] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_any] = ACTIONS(3438), + [anon_sym_number] = ACTIONS(3438), + [anon_sym_boolean] = ACTIONS(3438), + [anon_sym_string] = ACTIONS(3438), + [anon_sym_symbol] = ACTIONS(3438), + [anon_sym_object] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(3438), + [anon_sym_global] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), [sym_html_comment] = ACTIONS(5), }, [1534] = { [sym_comment] = STATE(1534), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LTtemplate_GT] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3246), + [sym_number] = ACTIONS(3246), + [sym_private_property_identifier] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_object] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_global] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), [sym_html_comment] = ACTIONS(5), }, [1535] = { [sym_comment] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [ts_builtin_sym_end] = ACTIONS(3668), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_global] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, [1536] = { [sym_comment] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3402), + [anon_sym_export] = ACTIONS(3402), + [anon_sym_type] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_typeof] = ACTIONS(3402), + [anon_sym_import] = ACTIONS(3402), + [anon_sym_with] = ACTIONS(3402), + [anon_sym_var] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_await] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_debugger] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_yield] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_LTtemplate_GT] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_SQUOTE] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_async] = ACTIONS(3402), + [anon_sym_function] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_void] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3402), + [sym_number] = ACTIONS(3402), + [sym_private_property_identifier] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [sym_super] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_null] = ACTIONS(3402), + [sym_undefined] = ACTIONS(3402), + [anon_sym_AT] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_readonly] = ACTIONS(3402), + [anon_sym_get] = ACTIONS(3402), + [anon_sym_set] = ACTIONS(3402), + [anon_sym_declare] = ACTIONS(3402), + [anon_sym_public] = ACTIONS(3402), + [anon_sym_private] = ACTIONS(3402), + [anon_sym_protected] = ACTIONS(3402), + [anon_sym_override] = ACTIONS(3402), + [anon_sym_module] = ACTIONS(3402), + [anon_sym_any] = ACTIONS(3402), + [anon_sym_number] = ACTIONS(3402), + [anon_sym_boolean] = ACTIONS(3402), + [anon_sym_string] = ACTIONS(3402), + [anon_sym_symbol] = ACTIONS(3402), + [anon_sym_object] = ACTIONS(3402), + [anon_sym_abstract] = ACTIONS(3402), + [anon_sym_global] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), [sym_html_comment] = ACTIONS(5), }, [1537] = { [sym_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(3610), + [sym_identifier] = ACTIONS(3398), + [anon_sym_export] = ACTIONS(3398), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_typeof] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(3398), + [anon_sym_with] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_await] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_debugger] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_LTtemplate_GT] = ACTIONS(3398), + [anon_sym_DQUOTE] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_function] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_using] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_void] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3398), + [sym_number] = ACTIONS(3398), + [sym_private_property_identifier] = ACTIONS(3398), + [sym_this] = ACTIONS(3398), + [sym_super] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_null] = ACTIONS(3398), + [sym_undefined] = ACTIONS(3398), + [anon_sym_AT] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_readonly] = ACTIONS(3398), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3398), + [anon_sym_declare] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_protected] = ACTIONS(3398), + [anon_sym_override] = ACTIONS(3398), + [anon_sym_module] = ACTIONS(3398), + [anon_sym_any] = ACTIONS(3398), + [anon_sym_number] = ACTIONS(3398), + [anon_sym_boolean] = ACTIONS(3398), + [anon_sym_string] = ACTIONS(3398), + [anon_sym_symbol] = ACTIONS(3398), + [anon_sym_object] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_global] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), [sym_html_comment] = ACTIONS(5), }, [1538] = { [sym_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_module] = ACTIONS(3221), - [anon_sym_any] = ACTIONS(3221), - [anon_sym_number] = ACTIONS(3221), - [anon_sym_boolean] = ACTIONS(3221), - [anon_sym_string] = ACTIONS(3221), - [anon_sym_symbol] = ACTIONS(3221), - [anon_sym_object] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LTtemplate_GT] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_number] = ACTIONS(3374), + [sym_private_property_identifier] = ACTIONS(3374), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_object] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), [sym_html_comment] = ACTIONS(5), }, [1539] = { [sym_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LTtemplate_GT] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_number] = ACTIONS(3374), + [sym_private_property_identifier] = ACTIONS(3374), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_object] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), [sym_html_comment] = ACTIONS(5), }, [1540] = { [sym_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym_identifier] = ACTIONS(3259), - [anon_sym_export] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_typeof] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_with] = ACTIONS(3259), - [anon_sym_var] = ACTIONS(3259), - [anon_sym_let] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_await] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_debugger] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LTtemplate_GT] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_function] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3259), - [sym_number] = ACTIONS(3259), - [sym_private_property_identifier] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - [sym_super] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_null] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [anon_sym_AT] = ACTIONS(3259), - [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_abstract] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(3380), + [anon_sym_export] = ACTIONS(3380), + [anon_sym_type] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_typeof] = ACTIONS(3380), + [anon_sym_import] = ACTIONS(3380), + [anon_sym_with] = ACTIONS(3380), + [anon_sym_var] = ACTIONS(3380), + [anon_sym_let] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_await] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_debugger] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_yield] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LTtemplate_GT] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_async] = ACTIONS(3380), + [anon_sym_function] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_void] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3380), + [sym_number] = ACTIONS(3380), + [sym_private_property_identifier] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), + [sym_super] = ACTIONS(3380), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [sym_null] = ACTIONS(3380), + [sym_undefined] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_readonly] = ACTIONS(3380), + [anon_sym_get] = ACTIONS(3380), + [anon_sym_set] = ACTIONS(3380), + [anon_sym_declare] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_override] = ACTIONS(3380), + [anon_sym_module] = ACTIONS(3380), + [anon_sym_any] = ACTIONS(3380), + [anon_sym_number] = ACTIONS(3380), + [anon_sym_boolean] = ACTIONS(3380), + [anon_sym_string] = ACTIONS(3380), + [anon_sym_symbol] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_abstract] = ACTIONS(3380), + [anon_sym_global] = ACTIONS(3380), + [anon_sym_interface] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), [sym_html_comment] = ACTIONS(5), }, [1541] = { [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(3673), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3243), - [anon_sym_any] = ACTIONS(3243), - [anon_sym_number] = ACTIONS(3243), - [anon_sym_boolean] = ACTIONS(3243), - [anon_sym_string] = ACTIONS(3243), - [anon_sym_symbol] = ACTIONS(3243), - [anon_sym_object] = ACTIONS(3243), - [anon_sym_abstract] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [ts_builtin_sym_end] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LTtemplate_GT] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3458), + [sym_number] = ACTIONS(3458), + [sym_private_property_identifier] = ACTIONS(3458), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_object] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_global] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), [sym_html_comment] = ACTIONS(5), }, [1542] = { [sym_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(3643), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [ts_builtin_sym_end] = ACTIONS(3666), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_global] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, [1543] = { [sym_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(3675), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [ts_builtin_sym_end] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_typeof] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_with] = ACTIONS(3378), + [anon_sym_var] = ACTIONS(3378), + [anon_sym_let] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_await] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_debugger] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_yield] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_LTtemplate_GT] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_function] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_void] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3378), + [sym_number] = ACTIONS(3378), + [sym_private_property_identifier] = ACTIONS(3378), + [sym_this] = ACTIONS(3378), + [sym_super] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_null] = ACTIONS(3378), + [sym_undefined] = ACTIONS(3378), + [anon_sym_AT] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_readonly] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(3378), + [anon_sym_set] = ACTIONS(3378), + [anon_sym_declare] = ACTIONS(3378), + [anon_sym_public] = ACTIONS(3378), + [anon_sym_private] = ACTIONS(3378), + [anon_sym_protected] = ACTIONS(3378), + [anon_sym_override] = ACTIONS(3378), + [anon_sym_module] = ACTIONS(3378), + [anon_sym_any] = ACTIONS(3378), + [anon_sym_number] = ACTIONS(3378), + [anon_sym_boolean] = ACTIONS(3378), + [anon_sym_string] = ACTIONS(3378), + [anon_sym_symbol] = ACTIONS(3378), + [anon_sym_object] = ACTIONS(3378), + [anon_sym_abstract] = ACTIONS(3378), + [anon_sym_global] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), [sym_html_comment] = ACTIONS(5), }, [1544] = { [sym_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(3537), - [sym_identifier] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_typeof] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_await] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_debugger] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LTtemplate_GT] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_SQUOTE] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3457), - [sym_number] = ACTIONS(3457), - [sym_private_property_identifier] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [sym_super] = ACTIONS(3457), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_undefined] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_readonly] = ACTIONS(3457), - [anon_sym_get] = ACTIONS(3457), - [anon_sym_set] = ACTIONS(3457), - [anon_sym_declare] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_any] = ACTIONS(3457), - [anon_sym_number] = ACTIONS(3457), - [anon_sym_boolean] = ACTIONS(3457), - [anon_sym_string] = ACTIONS(3457), - [anon_sym_symbol] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_abstract] = ACTIONS(3457), - [anon_sym_interface] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym_html_comment] = ACTIONS(5), }, [1545] = { [sym_comment] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), + [ts_builtin_sym_end] = ACTIONS(3598), + [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_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_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_abstract] = ACTIONS(3464), + [anon_sym_global] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), [sym_html_comment] = ACTIONS(5), }, [1546] = { [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1547] = { [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(3619), - [sym_identifier] = ACTIONS(3339), - [anon_sym_export] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_debugger] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LTtemplate_GT] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3339), - [sym_number] = ACTIONS(3339), - [sym_private_property_identifier] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [sym_super] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_null] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3339), - [anon_sym_set] = ACTIONS(3339), - [anon_sym_declare] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_module] = ACTIONS(3339), - [anon_sym_any] = ACTIONS(3339), - [anon_sym_number] = ACTIONS(3339), - [anon_sym_boolean] = ACTIONS(3339), - [anon_sym_string] = ACTIONS(3339), - [anon_sym_symbol] = ACTIONS(3339), - [anon_sym_object] = ACTIONS(3339), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), + [ts_builtin_sym_end] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_global] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, [1548] = { [sym_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(3677), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), + [ts_builtin_sym_end] = ACTIONS(3680), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LTtemplate_GT] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3266), + [sym_number] = ACTIONS(3266), + [sym_private_property_identifier] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_global] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, [1549] = { [sym_comment] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3664), + [sym_identifier] = ACTIONS(3400), + [anon_sym_export] = ACTIONS(3400), + [anon_sym_type] = ACTIONS(3400), + [anon_sym_namespace] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_typeof] = ACTIONS(3400), + [anon_sym_import] = ACTIONS(3400), + [anon_sym_with] = ACTIONS(3400), + [anon_sym_var] = ACTIONS(3400), + [anon_sym_let] = ACTIONS(3400), + [anon_sym_const] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_switch] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_await] = ACTIONS(3400), + [anon_sym_while] = ACTIONS(3400), + [anon_sym_do] = ACTIONS(3400), + [anon_sym_try] = ACTIONS(3400), + [anon_sym_break] = ACTIONS(3400), + [anon_sym_continue] = ACTIONS(3400), + [anon_sym_debugger] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3400), + [anon_sym_throw] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_yield] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_LTtemplate_GT] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(3400), + [anon_sym_class] = ACTIONS(3400), + [anon_sym_async] = ACTIONS(3400), + [anon_sym_function] = ACTIONS(3400), + [anon_sym_new] = ACTIONS(3400), + [anon_sym_using] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_void] = ACTIONS(3400), + [anon_sym_delete] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3400), + [sym_number] = ACTIONS(3400), + [sym_private_property_identifier] = ACTIONS(3400), + [sym_this] = ACTIONS(3400), + [sym_super] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_null] = ACTIONS(3400), + [sym_undefined] = ACTIONS(3400), + [anon_sym_AT] = ACTIONS(3400), + [anon_sym_static] = ACTIONS(3400), + [anon_sym_readonly] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3400), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_declare] = ACTIONS(3400), + [anon_sym_public] = ACTIONS(3400), + [anon_sym_private] = ACTIONS(3400), + [anon_sym_protected] = ACTIONS(3400), + [anon_sym_override] = ACTIONS(3400), + [anon_sym_module] = ACTIONS(3400), + [anon_sym_any] = ACTIONS(3400), + [anon_sym_number] = ACTIONS(3400), + [anon_sym_boolean] = ACTIONS(3400), + [anon_sym_string] = ACTIONS(3400), + [anon_sym_symbol] = ACTIONS(3400), + [anon_sym_object] = ACTIONS(3400), + [anon_sym_abstract] = ACTIONS(3400), + [anon_sym_global] = ACTIONS(3400), + [anon_sym_interface] = ACTIONS(3400), + [anon_sym_enum] = ACTIONS(3400), [sym_html_comment] = ACTIONS(5), }, [1550] = { [sym_comment] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_global] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1551] = { [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_global] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, [1552] = { [sym_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_var] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_switch] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_debugger] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_throw] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_function] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_using] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_delete] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2215), + [sym_number] = ACTIONS(2215), + [sym_private_property_identifier] = ACTIONS(2215), + [sym_this] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_get] = ACTIONS(2215), + [anon_sym_set] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_override] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_any] = ACTIONS(2215), + [anon_sym_number] = ACTIONS(2215), + [anon_sym_boolean] = ACTIONS(2215), + [anon_sym_string] = ACTIONS(2215), + [anon_sym_symbol] = ACTIONS(2215), + [anon_sym_object] = ACTIONS(2215), + [anon_sym_abstract] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), [sym_html_comment] = ACTIONS(5), }, [1553] = { [sym_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3590), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_global] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, [1554] = { [sym_comment] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym_identifier] = ACTIONS(3439), - [anon_sym_export] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_debugger] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LTtemplate_GT] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_void] = ACTIONS(3439), - [anon_sym_delete] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3439), - [sym_number] = ACTIONS(3439), - [sym_private_property_identifier] = ACTIONS(3439), - [sym_this] = ACTIONS(3439), - [sym_super] = ACTIONS(3439), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_undefined] = ACTIONS(3439), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_get] = ACTIONS(3439), - [anon_sym_set] = ACTIONS(3439), - [anon_sym_declare] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_any] = ACTIONS(3439), - [anon_sym_number] = ACTIONS(3439), - [anon_sym_boolean] = ACTIONS(3439), - [anon_sym_string] = ACTIONS(3439), - [anon_sym_symbol] = ACTIONS(3439), - [anon_sym_object] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), + [ts_builtin_sym_end] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LTtemplate_GT] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3270), + [sym_number] = ACTIONS(3270), + [sym_private_property_identifier] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_global] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1555] = { [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), + [ts_builtin_sym_end] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LTtemplate_GT] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3262), + [sym_number] = ACTIONS(3262), + [sym_private_property_identifier] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_object] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_global] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), [sym_html_comment] = ACTIONS(5), }, [1556] = { [sym_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(3667), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_global] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, [1557] = { [sym_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3383), - [anon_sym_export] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym_import] = ACTIONS(3383), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_debugger] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LTtemplate_GT] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_void] = ACTIONS(3383), - [anon_sym_delete] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3383), - [sym_number] = ACTIONS(3383), - [sym_private_property_identifier] = ACTIONS(3383), - [sym_this] = ACTIONS(3383), - [sym_super] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_null] = ACTIONS(3383), - [sym_undefined] = ACTIONS(3383), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_get] = ACTIONS(3383), - [anon_sym_set] = ACTIONS(3383), - [anon_sym_declare] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_any] = ACTIONS(3383), - [anon_sym_number] = ACTIONS(3383), - [anon_sym_boolean] = ACTIONS(3383), - [anon_sym_string] = ACTIONS(3383), - [anon_sym_symbol] = ACTIONS(3383), - [anon_sym_object] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_global] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1558] = { [sym_comment] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_global] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1559] = { [sym_comment] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(3665), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [ts_builtin_sym_end] = ACTIONS(3582), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_global] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, [1560] = { [sym_comment] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3283), - [anon_sym_export] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_with] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_debugger] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_LTtemplate_GT] = ACTIONS(3283), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_function] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_void] = ACTIONS(3283), - [anon_sym_delete] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_number] = ACTIONS(3283), - [sym_private_property_identifier] = ACTIONS(3283), - [sym_this] = ACTIONS(3283), - [sym_super] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_null] = ACTIONS(3283), - [sym_undefined] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_get] = ACTIONS(3283), - [anon_sym_set] = ACTIONS(3283), - [anon_sym_declare] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_module] = ACTIONS(3283), - [anon_sym_any] = ACTIONS(3283), - [anon_sym_number] = ACTIONS(3283), - [anon_sym_boolean] = ACTIONS(3283), - [anon_sym_string] = ACTIONS(3283), - [anon_sym_symbol] = ACTIONS(3283), - [anon_sym_object] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), + [ts_builtin_sym_end] = ACTIONS(3678), + [sym_identifier] = ACTIONS(3376), + [anon_sym_export] = ACTIONS(3376), + [anon_sym_type] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_typeof] = ACTIONS(3376), + [anon_sym_import] = ACTIONS(3376), + [anon_sym_with] = ACTIONS(3376), + [anon_sym_var] = ACTIONS(3376), + [anon_sym_let] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_await] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_debugger] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_yield] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LTtemplate_GT] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_async] = ACTIONS(3376), + [anon_sym_function] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_SLASH] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_void] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3376), + [sym_number] = ACTIONS(3376), + [sym_private_property_identifier] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), + [sym_super] = ACTIONS(3376), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [sym_null] = ACTIONS(3376), + [sym_undefined] = ACTIONS(3376), + [anon_sym_AT] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_readonly] = ACTIONS(3376), + [anon_sym_get] = ACTIONS(3376), + [anon_sym_set] = ACTIONS(3376), + [anon_sym_declare] = ACTIONS(3376), + [anon_sym_public] = ACTIONS(3376), + [anon_sym_private] = ACTIONS(3376), + [anon_sym_protected] = ACTIONS(3376), + [anon_sym_override] = ACTIONS(3376), + [anon_sym_module] = ACTIONS(3376), + [anon_sym_any] = ACTIONS(3376), + [anon_sym_number] = ACTIONS(3376), + [anon_sym_boolean] = ACTIONS(3376), + [anon_sym_string] = ACTIONS(3376), + [anon_sym_symbol] = ACTIONS(3376), + [anon_sym_object] = ACTIONS(3376), + [anon_sym_abstract] = ACTIONS(3376), + [anon_sym_global] = ACTIONS(3376), + [anon_sym_interface] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), [sym_html_comment] = ACTIONS(5), }, [1561] = { [sym_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(2312), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_object] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), + [ts_builtin_sym_end] = ACTIONS(3638), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LTtemplate_GT] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3278), + [sym_number] = ACTIONS(3278), + [sym_private_property_identifier] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_global] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), [sym_html_comment] = ACTIONS(5), }, [1562] = { [sym_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3567), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_global] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, [1563] = { [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(3639), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), - [anon_sym_abstract] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [ts_builtin_sym_end] = ACTIONS(3688), + [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_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_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(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_abstract] = ACTIONS(3684), + [anon_sym_global] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, [1564] = { [sym_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3267), - [anon_sym_export] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_namespace] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_typeof] = ACTIONS(3267), - [anon_sym_import] = ACTIONS(3267), - [anon_sym_with] = ACTIONS(3267), - [anon_sym_var] = ACTIONS(3267), - [anon_sym_let] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_switch] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_await] = ACTIONS(3267), - [anon_sym_while] = ACTIONS(3267), - [anon_sym_do] = ACTIONS(3267), - [anon_sym_try] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_debugger] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_throw] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LTtemplate_GT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [anon_sym_SQUOTE] = ACTIONS(3267), - [anon_sym_class] = ACTIONS(3267), - [anon_sym_async] = ACTIONS(3267), - [anon_sym_function] = ACTIONS(3267), - [anon_sym_new] = ACTIONS(3267), - [anon_sym_using] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_void] = ACTIONS(3267), - [anon_sym_delete] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3267), - [sym_number] = ACTIONS(3267), - [sym_private_property_identifier] = ACTIONS(3267), - [sym_this] = ACTIONS(3267), - [sym_super] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_null] = ACTIONS(3267), - [sym_undefined] = ACTIONS(3267), - [anon_sym_AT] = ACTIONS(3267), - [anon_sym_static] = ACTIONS(3267), - [anon_sym_readonly] = ACTIONS(3267), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3267), - [anon_sym_public] = ACTIONS(3267), - [anon_sym_private] = ACTIONS(3267), - [anon_sym_protected] = ACTIONS(3267), - [anon_sym_override] = ACTIONS(3267), - [anon_sym_module] = ACTIONS(3267), - [anon_sym_any] = ACTIONS(3267), - [anon_sym_number] = ACTIONS(3267), - [anon_sym_boolean] = ACTIONS(3267), - [anon_sym_string] = ACTIONS(3267), - [anon_sym_symbol] = ACTIONS(3267), - [anon_sym_object] = ACTIONS(3267), - [anon_sym_abstract] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), + [ts_builtin_sym_end] = ACTIONS(3600), + [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_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_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_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_abstract] = ACTIONS(3460), + [anon_sym_global] = ACTIONS(3460), + [anon_sym_interface] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), [sym_html_comment] = ACTIONS(5), }, [1565] = { [sym_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(3589), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [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_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), + [ts_builtin_sym_end] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_global] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, [1566] = { [sym_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [ts_builtin_sym_end] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_global] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), [sym_html_comment] = ACTIONS(5), }, [1567] = { [sym_comment] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_typeof] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_var] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_switch] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_debugger] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LTtemplate_GT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_using] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_delete] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2239), + [sym_number] = ACTIONS(2239), + [sym_private_property_identifier] = ACTIONS(2239), + [sym_this] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_null] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_get] = ACTIONS(2239), + [anon_sym_set] = ACTIONS(2239), + [anon_sym_declare] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_private] = ACTIONS(2239), + [anon_sym_protected] = ACTIONS(2239), + [anon_sym_override] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_any] = ACTIONS(2239), + [anon_sym_number] = ACTIONS(2239), + [anon_sym_boolean] = ACTIONS(2239), + [anon_sym_string] = ACTIONS(2239), + [anon_sym_symbol] = ACTIONS(2239), + [anon_sym_object] = ACTIONS(2239), + [anon_sym_abstract] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), [sym_html_comment] = ACTIONS(5), }, [1568] = { [sym_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(3635), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), + [ts_builtin_sym_end] = ACTIONS(3624), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_global] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, [1569] = { [sym_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3436), + [anon_sym_export] = ACTIONS(3436), + [anon_sym_type] = ACTIONS(3436), + [anon_sym_namespace] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_typeof] = ACTIONS(3436), + [anon_sym_import] = ACTIONS(3436), + [anon_sym_with] = ACTIONS(3436), + [anon_sym_var] = ACTIONS(3436), + [anon_sym_let] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_switch] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_await] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_do] = ACTIONS(3436), + [anon_sym_try] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_debugger] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_throw] = ACTIONS(3436), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym_yield] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_LTtemplate_GT] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_class] = ACTIONS(3436), + [anon_sym_async] = ACTIONS(3436), + [anon_sym_function] = ACTIONS(3436), + [anon_sym_new] = ACTIONS(3436), + [anon_sym_using] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_void] = ACTIONS(3436), + [anon_sym_delete] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3436), + [sym_number] = ACTIONS(3436), + [sym_private_property_identifier] = ACTIONS(3436), + [sym_this] = ACTIONS(3436), + [sym_super] = ACTIONS(3436), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_null] = ACTIONS(3436), + [sym_undefined] = ACTIONS(3436), + [anon_sym_AT] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_readonly] = ACTIONS(3436), + [anon_sym_get] = ACTIONS(3436), + [anon_sym_set] = ACTIONS(3436), + [anon_sym_declare] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3436), + [anon_sym_private] = ACTIONS(3436), + [anon_sym_protected] = ACTIONS(3436), + [anon_sym_override] = ACTIONS(3436), + [anon_sym_module] = ACTIONS(3436), + [anon_sym_any] = ACTIONS(3436), + [anon_sym_number] = ACTIONS(3436), + [anon_sym_boolean] = ACTIONS(3436), + [anon_sym_string] = ACTIONS(3436), + [anon_sym_symbol] = ACTIONS(3436), + [anon_sym_object] = ACTIONS(3436), + [anon_sym_abstract] = ACTIONS(3436), + [anon_sym_global] = ACTIONS(3436), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), [sym_html_comment] = ACTIONS(5), }, [1570] = { [sym_comment] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(3655), - [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_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_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_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_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [ts_builtin_sym_end] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3236), + [anon_sym_export] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3236), + [anon_sym_import] = ACTIONS(3236), + [anon_sym_with] = ACTIONS(3236), + [anon_sym_var] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_debugger] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LTtemplate_GT] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_function] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_private_property_identifier] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [sym_null] = ACTIONS(3236), + [sym_undefined] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_readonly] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_declare] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_module] = ACTIONS(3236), + [anon_sym_any] = ACTIONS(3236), + [anon_sym_number] = ACTIONS(3236), + [anon_sym_boolean] = ACTIONS(3236), + [anon_sym_string] = ACTIONS(3236), + [anon_sym_symbol] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_global] = ACTIONS(3236), + [anon_sym_interface] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, [1571] = { [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(3593), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [ts_builtin_sym_end] = ACTIONS(3570), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_global] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, [1572] = { [sym_comment] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_global] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, [1573] = { [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3301), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_type] = ACTIONS(3301), - [anon_sym_namespace] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_typeof] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_with] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_const] = ACTIONS(3301), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3301), - [anon_sym_switch] = ACTIONS(3301), - [anon_sym_for] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_await] = ACTIONS(3301), - [anon_sym_while] = ACTIONS(3301), - [anon_sym_do] = ACTIONS(3301), - [anon_sym_try] = ACTIONS(3301), - [anon_sym_break] = ACTIONS(3301), - [anon_sym_continue] = ACTIONS(3301), - [anon_sym_debugger] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3301), - [anon_sym_throw] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_yield] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LTtemplate_GT] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [anon_sym_SQUOTE] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_function] = ACTIONS(3301), - [anon_sym_new] = ACTIONS(3301), - [anon_sym_using] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_void] = ACTIONS(3301), - [anon_sym_delete] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3301), - [sym_number] = ACTIONS(3301), - [sym_private_property_identifier] = ACTIONS(3301), - [sym_this] = ACTIONS(3301), - [sym_super] = ACTIONS(3301), - [sym_true] = ACTIONS(3301), - [sym_false] = ACTIONS(3301), - [sym_null] = ACTIONS(3301), - [sym_undefined] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3301), - [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_abstract] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), + [ts_builtin_sym_end] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3372), + [anon_sym_export] = ACTIONS(3372), + [anon_sym_type] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_typeof] = ACTIONS(3372), + [anon_sym_import] = ACTIONS(3372), + [anon_sym_with] = ACTIONS(3372), + [anon_sym_var] = ACTIONS(3372), + [anon_sym_let] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_await] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_debugger] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_yield] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LTtemplate_GT] = ACTIONS(3372), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_async] = ACTIONS(3372), + [anon_sym_function] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_SLASH] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3372), + [anon_sym_TILDE] = ACTIONS(3372), + [anon_sym_void] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3372), + [sym_number] = ACTIONS(3372), + [sym_private_property_identifier] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), + [sym_super] = ACTIONS(3372), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [sym_null] = ACTIONS(3372), + [sym_undefined] = ACTIONS(3372), + [anon_sym_AT] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_readonly] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3372), + [anon_sym_set] = ACTIONS(3372), + [anon_sym_declare] = ACTIONS(3372), + [anon_sym_public] = ACTIONS(3372), + [anon_sym_private] = ACTIONS(3372), + [anon_sym_protected] = ACTIONS(3372), + [anon_sym_override] = ACTIONS(3372), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_any] = ACTIONS(3372), + [anon_sym_number] = ACTIONS(3372), + [anon_sym_boolean] = ACTIONS(3372), + [anon_sym_string] = ACTIONS(3372), + [anon_sym_symbol] = ACTIONS(3372), + [anon_sym_object] = ACTIONS(3372), + [anon_sym_abstract] = ACTIONS(3372), + [anon_sym_global] = ACTIONS(3372), + [anon_sym_interface] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), [sym_html_comment] = ACTIONS(5), }, [1574] = { [sym_comment] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3280), + [anon_sym_export] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_namespace] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_with] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_debugger] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LTtemplate_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_undefined] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_readonly] = ACTIONS(3280), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_protected] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_module] = ACTIONS(3280), + [anon_sym_any] = ACTIONS(3280), + [anon_sym_number] = ACTIONS(3280), + [anon_sym_boolean] = ACTIONS(3280), + [anon_sym_string] = ACTIONS(3280), + [anon_sym_symbol] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_global] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), [sym_html_comment] = ACTIONS(5), }, [1575] = { [sym_comment] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(3631), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym_import] = ACTIONS(3303), - [anon_sym_with] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_debugger] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_LTtemplate_GT] = ACTIONS(3303), - [anon_sym_DQUOTE] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_function] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_void] = ACTIONS(3303), - [anon_sym_delete] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3303), - [sym_number] = ACTIONS(3303), - [sym_private_property_identifier] = ACTIONS(3303), - [sym_this] = ACTIONS(3303), - [sym_super] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_undefined] = ACTIONS(3303), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_get] = ACTIONS(3303), - [anon_sym_set] = ACTIONS(3303), - [anon_sym_declare] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_module] = ACTIONS(3303), - [anon_sym_any] = ACTIONS(3303), - [anon_sym_number] = ACTIONS(3303), - [anon_sym_boolean] = ACTIONS(3303), - [anon_sym_string] = ACTIONS(3303), - [anon_sym_symbol] = ACTIONS(3303), - [anon_sym_object] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), + [ts_builtin_sym_end] = ACTIONS(3604), + [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_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_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_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_abstract] = ACTIONS(3440), + [anon_sym_global] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), [sym_html_comment] = ACTIONS(5), }, [1576] = { [sym_comment] = STATE(1576), - [ts_builtin_sym_end] = ACTIONS(3629), - [sym_identifier] = ACTIONS(3305), - [anon_sym_export] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_typeof] = ACTIONS(3305), - [anon_sym_import] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_var] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_const] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_switch] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_await] = ACTIONS(3305), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_try] = ACTIONS(3305), - [anon_sym_break] = ACTIONS(3305), - [anon_sym_continue] = ACTIONS(3305), - [anon_sym_debugger] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3305), - [anon_sym_throw] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_yield] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LTtemplate_GT] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_using] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_void] = ACTIONS(3305), - [anon_sym_delete] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3305), - [sym_number] = ACTIONS(3305), - [sym_private_property_identifier] = ACTIONS(3305), - [sym_this] = ACTIONS(3305), - [sym_super] = ACTIONS(3305), - [sym_true] = ACTIONS(3305), - [sym_false] = ACTIONS(3305), - [sym_null] = ACTIONS(3305), - [sym_undefined] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3305), - [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_abstract] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3305), - [anon_sym_enum] = ACTIONS(3305), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1577] = { [sym_comment] = STATE(1577), - [ts_builtin_sym_end] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_typeof] = ACTIONS(2314), - [anon_sym_import] = ACTIONS(2314), - [anon_sym_with] = ACTIONS(2314), - [anon_sym_var] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_debugger] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_throw] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LTtemplate_GT] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_function] = ACTIONS(2314), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_using] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_void] = ACTIONS(2314), - [anon_sym_delete] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2314), - [sym_number] = ACTIONS(2314), - [sym_private_property_identifier] = ACTIONS(2314), - [sym_this] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_undefined] = ACTIONS(2314), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_public] = ACTIONS(2314), - [anon_sym_private] = ACTIONS(2314), - [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_any] = ACTIONS(2314), - [anon_sym_number] = ACTIONS(2314), - [anon_sym_boolean] = ACTIONS(2314), - [anon_sym_string] = ACTIONS(2314), - [anon_sym_symbol] = ACTIONS(2314), - [anon_sym_object] = ACTIONS(2314), - [anon_sym_abstract] = ACTIONS(2314), - [anon_sym_interface] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1578] = { [sym_comment] = STATE(1578), - [ts_builtin_sym_end] = ACTIONS(3559), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [ts_builtin_sym_end] = ACTIONS(3602), + [sym_identifier] = ACTIONS(3456), + [anon_sym_export] = ACTIONS(3456), + [anon_sym_type] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_typeof] = ACTIONS(3456), + [anon_sym_import] = ACTIONS(3456), + [anon_sym_with] = ACTIONS(3456), + [anon_sym_var] = ACTIONS(3456), + [anon_sym_let] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_await] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_debugger] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_yield] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_LTtemplate_GT] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3456), + [anon_sym_SQUOTE] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_async] = ACTIONS(3456), + [anon_sym_function] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_SLASH] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3456), + [anon_sym_TILDE] = ACTIONS(3456), + [anon_sym_void] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3456), + [sym_number] = ACTIONS(3456), + [sym_private_property_identifier] = ACTIONS(3456), + [sym_this] = ACTIONS(3456), + [sym_super] = ACTIONS(3456), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [sym_null] = ACTIONS(3456), + [sym_undefined] = ACTIONS(3456), + [anon_sym_AT] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_readonly] = ACTIONS(3456), + [anon_sym_get] = ACTIONS(3456), + [anon_sym_set] = ACTIONS(3456), + [anon_sym_declare] = ACTIONS(3456), + [anon_sym_public] = ACTIONS(3456), + [anon_sym_private] = ACTIONS(3456), + [anon_sym_protected] = ACTIONS(3456), + [anon_sym_override] = ACTIONS(3456), + [anon_sym_module] = ACTIONS(3456), + [anon_sym_any] = ACTIONS(3456), + [anon_sym_number] = ACTIONS(3456), + [anon_sym_boolean] = ACTIONS(3456), + [anon_sym_string] = ACTIONS(3456), + [anon_sym_symbol] = ACTIONS(3456), + [anon_sym_object] = ACTIONS(3456), + [anon_sym_abstract] = ACTIONS(3456), + [anon_sym_global] = ACTIONS(3456), + [anon_sym_interface] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), [sym_html_comment] = ACTIONS(5), }, [1579] = { [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(3679), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1580] = { [sym_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(3663), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), + [ts_builtin_sym_end] = ACTIONS(3542), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LTtemplate_GT] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3282), + [sym_number] = ACTIONS(3282), + [sym_private_property_identifier] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_override] = ACTIONS(3282), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_object] = ACTIONS(3282), + [anon_sym_abstract] = ACTIONS(3282), + [anon_sym_global] = ACTIONS(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), [sym_html_comment] = ACTIONS(5), }, [1581] = { [sym_comment] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_global] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, [1582] = { [sym_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(3555), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_function] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - [sym_super] = ACTIONS(3333), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [sym_null] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [anon_sym_declare] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_any] = ACTIONS(3333), - [anon_sym_number] = ACTIONS(3333), - [anon_sym_boolean] = ACTIONS(3333), - [anon_sym_string] = ACTIONS(3333), - [anon_sym_symbol] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), + [ts_builtin_sym_end] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_with] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_debugger] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_LTtemplate_GT] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_using] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_void] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3386), + [sym_number] = ACTIONS(3386), + [sym_private_property_identifier] = ACTIONS(3386), + [sym_this] = ACTIONS(3386), + [sym_super] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [sym_undefined] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_module] = ACTIONS(3386), + [anon_sym_any] = ACTIONS(3386), + [anon_sym_number] = ACTIONS(3386), + [anon_sym_boolean] = ACTIONS(3386), + [anon_sym_string] = ACTIONS(3386), + [anon_sym_symbol] = ACTIONS(3386), + [anon_sym_object] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_global] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), [sym_html_comment] = ACTIONS(5), }, [1583] = { [sym_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_global] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, [1584] = { [sym_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_global] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, [1585] = { [sym_comment] = STATE(1585), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [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_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_typeof] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2209), + [anon_sym_delete] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(2209), + [sym_this] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_null] = ACTIONS(2209), + [sym_undefined] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_declare] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_protected] = ACTIONS(2209), + [anon_sym_override] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_any] = ACTIONS(2209), + [anon_sym_number] = ACTIONS(2209), + [anon_sym_boolean] = ACTIONS(2209), + [anon_sym_string] = ACTIONS(2209), + [anon_sym_symbol] = ACTIONS(2209), + [anon_sym_object] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), [sym_html_comment] = ACTIONS(5), }, [1586] = { [sym_comment] = STATE(1586), - [ts_builtin_sym_end] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), + [ts_builtin_sym_end] = ACTIONS(3538), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_global] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), [sym_html_comment] = ACTIONS(5), }, [1587] = { [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2200), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_typeof] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_with] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_debugger] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LTtemplate_GT] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_void] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_number] = ACTIONS(2200), - [sym_private_property_identifier] = ACTIONS(2200), - [sym_this] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), + [ts_builtin_sym_end] = ACTIONS(3622), + [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_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_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_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_abstract] = ACTIONS(3424), + [anon_sym_global] = ACTIONS(3424), + [anon_sym_interface] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), [sym_html_comment] = ACTIONS(5), }, [1588] = { [sym_comment] = STATE(1588), - [ts_builtin_sym_end] = ACTIONS(3623), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_global] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, [1589] = { [sym_comment] = STATE(1589), - [ts_builtin_sym_end] = ACTIONS(3473), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_global] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1590] = { [sym_comment] = STATE(1590), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3550), + [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_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_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), + [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_abstract] = ACTIONS(3444), + [anon_sym_global] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), [sym_html_comment] = ACTIONS(5), }, [1591] = { [sym_comment] = STATE(1591), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), + [ts_builtin_sym_end] = ACTIONS(3620), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_global] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, [1592] = { [sym_comment] = STATE(1592), - [ts_builtin_sym_end] = ACTIONS(3597), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [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_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_global] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, [1593] = { [sym_comment] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(3483), - [sym_identifier] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_debugger] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LTtemplate_GT] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_number] = ACTIONS(3325), - [sym_private_property_identifier] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - [sym_super] = ACTIONS(3325), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [sym_null] = ACTIONS(3325), - [sym_undefined] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3325), - [anon_sym_set] = ACTIONS(3325), - [anon_sym_declare] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_any] = ACTIONS(3325), - [anon_sym_number] = ACTIONS(3325), - [anon_sym_boolean] = ACTIONS(3325), - [anon_sym_string] = ACTIONS(3325), - [anon_sym_symbol] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), + [ts_builtin_sym_end] = ACTIONS(3536), + [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_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_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_abstract] = ACTIONS(3454), + [anon_sym_global] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), [sym_html_comment] = ACTIONS(5), }, [1594] = { [sym_comment] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym_import] = ACTIONS(3257), - [anon_sym_with] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_debugger] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_LTtemplate_GT] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_function] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3257), - [sym_number] = ACTIONS(3257), - [sym_private_property_identifier] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [sym_super] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_undefined] = ACTIONS(3257), - [anon_sym_AT] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_get] = ACTIONS(3257), - [anon_sym_set] = ACTIONS(3257), - [anon_sym_declare] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_module] = ACTIONS(3257), - [anon_sym_any] = ACTIONS(3257), - [anon_sym_number] = ACTIONS(3257), - [anon_sym_boolean] = ACTIONS(3257), - [anon_sym_string] = ACTIONS(3257), - [anon_sym_symbol] = ACTIONS(3257), - [anon_sym_object] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1595] = { [sym_comment] = STATE(1595), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1596] = { [sym_comment] = STATE(1596), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [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_abstract] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_global] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, [1597] = { [sym_comment] = STATE(1597), - [ts_builtin_sym_end] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [ts_builtin_sym_end] = ACTIONS(3618), + [sym_identifier] = ACTIONS(3244), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3244), + [anon_sym_import] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_var] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_debugger] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LTtemplate_GT] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_private_property_identifier] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_undefined] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_readonly] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_declare] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_any] = ACTIONS(3244), + [anon_sym_number] = ACTIONS(3244), + [anon_sym_boolean] = ACTIONS(3244), + [anon_sym_string] = ACTIONS(3244), + [anon_sym_symbol] = ACTIONS(3244), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_abstract] = ACTIONS(3244), + [anon_sym_global] = ACTIONS(3244), + [anon_sym_interface] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), [sym_html_comment] = ACTIONS(5), }, [1598] = { [sym_comment] = STATE(1598), - [ts_builtin_sym_end] = ACTIONS(3535), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [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_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_global] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1599] = { [sym_comment] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), + [ts_builtin_sym_end] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_global] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, [1600] = { [sym_comment] = STATE(1600), - [ts_builtin_sym_end] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_global] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, [1601] = { [sym_comment] = STATE(1601), - [ts_builtin_sym_end] = ACTIONS(3603), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_typeof] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_var] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_const] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3389), - [anon_sym_switch] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_await] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3389), - [anon_sym_break] = ACTIONS(3389), - [anon_sym_continue] = ACTIONS(3389), - [anon_sym_debugger] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3389), - [anon_sym_throw] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LTtemplate_GT] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_using] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(3389), - [anon_sym_delete] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3389), - [sym_number] = ACTIONS(3389), - [sym_private_property_identifier] = ACTIONS(3389), - [sym_this] = ACTIONS(3389), - [sym_super] = ACTIONS(3389), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [sym_undefined] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3389), - [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_abstract] = ACTIONS(3389), - [anon_sym_interface] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), + [ts_builtin_sym_end] = ACTIONS(3648), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_global] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, [1602] = { [sym_comment] = STATE(1602), - [ts_builtin_sym_end] = ACTIONS(3587), - [sym_identifier] = ACTIONS(3385), - [anon_sym_export] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_namespace] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_typeof] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_var] = ACTIONS(3385), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_const] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_switch] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_await] = ACTIONS(3385), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3385), - [anon_sym_break] = ACTIONS(3385), - [anon_sym_continue] = ACTIONS(3385), - [anon_sym_debugger] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3385), - [anon_sym_throw] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LTtemplate_GT] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [anon_sym_SQUOTE] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_using] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_void] = ACTIONS(3385), - [anon_sym_delete] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3385), - [sym_number] = ACTIONS(3385), - [sym_private_property_identifier] = ACTIONS(3385), - [sym_this] = ACTIONS(3385), - [sym_super] = ACTIONS(3385), - [sym_true] = ACTIONS(3385), - [sym_false] = ACTIONS(3385), - [sym_null] = ACTIONS(3385), - [sym_undefined] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3385), - [anon_sym_set] = ACTIONS(3385), - [anon_sym_declare] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_protected] = ACTIONS(3385), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_any] = ACTIONS(3385), - [anon_sym_number] = ACTIONS(3385), - [anon_sym_boolean] = ACTIONS(3385), - [anon_sym_string] = ACTIONS(3385), - [anon_sym_symbol] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_abstract] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LTtemplate_GT] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3310), + [sym_number] = ACTIONS(3310), + [sym_private_property_identifier] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_global] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, [1603] = { [sym_comment] = STATE(1603), - [ts_builtin_sym_end] = ACTIONS(3605), - [sym_identifier] = ACTIONS(3265), - [anon_sym_export] = ACTIONS(3265), - [anon_sym_type] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_typeof] = ACTIONS(3265), - [anon_sym_import] = ACTIONS(3265), - [anon_sym_with] = ACTIONS(3265), - [anon_sym_var] = ACTIONS(3265), - [anon_sym_let] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_await] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_debugger] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym_yield] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LTtemplate_GT] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_async] = ACTIONS(3265), - [anon_sym_function] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_void] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3265), - [sym_number] = ACTIONS(3265), - [sym_private_property_identifier] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [sym_super] = ACTIONS(3265), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [sym_null] = ACTIONS(3265), - [sym_undefined] = ACTIONS(3265), - [anon_sym_AT] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3265), - [anon_sym_set] = ACTIONS(3265), - [anon_sym_declare] = ACTIONS(3265), - [anon_sym_public] = ACTIONS(3265), - [anon_sym_private] = ACTIONS(3265), - [anon_sym_protected] = ACTIONS(3265), - [anon_sym_override] = ACTIONS(3265), - [anon_sym_module] = ACTIONS(3265), - [anon_sym_any] = ACTIONS(3265), - [anon_sym_number] = ACTIONS(3265), - [anon_sym_boolean] = ACTIONS(3265), - [anon_sym_string] = ACTIONS(3265), - [anon_sym_symbol] = ACTIONS(3265), - [anon_sym_object] = ACTIONS(3265), - [anon_sym_abstract] = ACTIONS(3265), - [anon_sym_interface] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), + [ts_builtin_sym_end] = ACTIONS(3506), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LTtemplate_GT] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_using] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3466), + [sym_number] = ACTIONS(3466), + [sym_private_property_identifier] = ACTIONS(3466), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_object] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), [sym_html_comment] = ACTIONS(5), }, [1604] = { [sym_comment] = STATE(1604), - [ts_builtin_sym_end] = ACTIONS(2296), - [sym_identifier] = ACTIONS(2294), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2294), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_with] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_debugger] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LTtemplate_GT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_class] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_function] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_using] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2294), - [anon_sym_delete] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_private_property_identifier] = ACTIONS(2294), - [sym_this] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_true] = ACTIONS(2294), - [sym_false] = ACTIONS(2294), - [sym_null] = ACTIONS(2294), - [sym_undefined] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_readonly] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2294), - [anon_sym_set] = ACTIONS(2294), - [anon_sym_declare] = ACTIONS(2294), - [anon_sym_public] = ACTIONS(2294), - [anon_sym_private] = ACTIONS(2294), - [anon_sym_protected] = ACTIONS(2294), - [anon_sym_override] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_any] = ACTIONS(2294), - [anon_sym_number] = ACTIONS(2294), - [anon_sym_boolean] = ACTIONS(2294), - [anon_sym_string] = ACTIONS(2294), - [anon_sym_symbol] = ACTIONS(2294), - [anon_sym_object] = ACTIONS(2294), - [anon_sym_abstract] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), + [ts_builtin_sym_end] = ACTIONS(3650), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_global] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, [1605] = { [sym_comment] = STATE(1605), - [ts_builtin_sym_end] = ACTIONS(3607), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [ts_builtin_sym_end] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_global] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, [1606] = { [sym_comment] = STATE(1606), - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [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_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym_html_comment] = ACTIONS(5), }, [1607] = { [sym_comment] = STATE(1607), - [ts_builtin_sym_end] = ACTIONS(3611), - [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_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_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_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_abstract] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), + [ts_builtin_sym_end] = ACTIONS(3676), + [sym_identifier] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_type] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_typeof] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_with] = ACTIONS(3452), + [anon_sym_var] = ACTIONS(3452), + [anon_sym_let] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_await] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_debugger] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_LTtemplate_GT] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_async] = ACTIONS(3452), + [anon_sym_function] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_void] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3452), + [sym_number] = ACTIONS(3452), + [sym_private_property_identifier] = ACTIONS(3452), + [sym_this] = ACTIONS(3452), + [sym_super] = ACTIONS(3452), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [sym_null] = ACTIONS(3452), + [sym_undefined] = ACTIONS(3452), + [anon_sym_AT] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_readonly] = ACTIONS(3452), + [anon_sym_get] = ACTIONS(3452), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_declare] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_any] = ACTIONS(3452), + [anon_sym_number] = ACTIONS(3452), + [anon_sym_boolean] = ACTIONS(3452), + [anon_sym_string] = ACTIONS(3452), + [anon_sym_symbol] = ACTIONS(3452), + [anon_sym_object] = ACTIONS(3452), + [anon_sym_abstract] = ACTIONS(3452), + [anon_sym_global] = ACTIONS(3452), + [anon_sym_interface] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), [sym_html_comment] = ACTIONS(5), }, [1608] = { [sym_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_debugger] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LTtemplate_GT] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3337), - [sym_number] = ACTIONS(3337), - [sym_private_property_identifier] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - [sym_super] = ACTIONS(3337), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [sym_null] = ACTIONS(3337), - [sym_undefined] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_get] = ACTIONS(3337), - [anon_sym_set] = ACTIONS(3337), - [anon_sym_declare] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_any] = ACTIONS(3337), - [anon_sym_number] = ACTIONS(3337), - [anon_sym_boolean] = ACTIONS(3337), - [anon_sym_string] = ACTIONS(3337), - [anon_sym_symbol] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), + [ts_builtin_sym_end] = ACTIONS(3626), + [sym_identifier] = ACTIONS(3240), + [anon_sym_export] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3240), + [anon_sym_import] = ACTIONS(3240), + [anon_sym_with] = ACTIONS(3240), + [anon_sym_var] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_debugger] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LTtemplate_GT] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_function] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_private_property_identifier] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_undefined] = ACTIONS(3240), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_readonly] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3240), + [anon_sym_set] = ACTIONS(3240), + [anon_sym_declare] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_override] = ACTIONS(3240), + [anon_sym_module] = ACTIONS(3240), + [anon_sym_any] = ACTIONS(3240), + [anon_sym_number] = ACTIONS(3240), + [anon_sym_boolean] = ACTIONS(3240), + [anon_sym_string] = ACTIONS(3240), + [anon_sym_symbol] = ACTIONS(3240), + [anon_sym_object] = ACTIONS(3240), + [anon_sym_abstract] = ACTIONS(3240), + [anon_sym_global] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), [sym_html_comment] = ACTIONS(5), }, [1609] = { [sym_comment] = STATE(1609), - [ts_builtin_sym_end] = ACTIONS(3653), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), + [ts_builtin_sym_end] = ACTIONS(3652), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LTtemplate_GT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_number] = ACTIONS(3326), + [sym_private_property_identifier] = ACTIONS(3326), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_override] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_object] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_global] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, [1610] = { [sym_comment] = STATE(1610), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LTtemplate_GT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_number] = ACTIONS(2184), - [sym_private_property_identifier] = ACTIONS(2184), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_object] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [ts_builtin_sym_end] = ACTIONS(3636), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_debugger] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LTtemplate_GT] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_private_property_identifier] = ACTIONS(3276), + [sym_this] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [sym_null] = ACTIONS(3276), + [sym_undefined] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_readonly] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3276), + [anon_sym_set] = ACTIONS(3276), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_protected] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_global] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1611] = { [sym_comment] = STATE(1611), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3660), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LTtemplate_GT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3322), + [sym_number] = ACTIONS(3322), + [sym_private_property_identifier] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_global] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), [sym_html_comment] = ACTIONS(5), }, [1612] = { [sym_comment] = STATE(1612), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_global] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, [1613] = { [sym_comment] = STATE(1613), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_var] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_switch] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_debugger] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_throw] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LTtemplate_GT] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_function] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_using] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_delete] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2187), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(2187), + [sym_this] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_get] = ACTIONS(2187), + [anon_sym_set] = ACTIONS(2187), + [anon_sym_declare] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_private] = ACTIONS(2187), + [anon_sym_protected] = ACTIONS(2187), + [anon_sym_override] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_any] = ACTIONS(2187), + [anon_sym_number] = ACTIONS(2187), + [anon_sym_boolean] = ACTIONS(2187), + [anon_sym_string] = ACTIONS(2187), + [anon_sym_symbol] = ACTIONS(2187), + [anon_sym_object] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), [sym_html_comment] = ACTIONS(5), }, [1614] = { [sym_comment] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(3549), - [sym_identifier] = ACTIONS(3391), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_debugger] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LTtemplate_GT] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_void] = ACTIONS(3391), - [anon_sym_delete] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3391), - [sym_number] = ACTIONS(3391), - [sym_private_property_identifier] = ACTIONS(3391), - [sym_this] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_null] = ACTIONS(3391), - [sym_undefined] = ACTIONS(3391), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_get] = ACTIONS(3391), - [anon_sym_set] = ACTIONS(3391), - [anon_sym_declare] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_any] = ACTIONS(3391), - [anon_sym_number] = ACTIONS(3391), - [anon_sym_boolean] = ACTIONS(3391), - [anon_sym_string] = ACTIONS(3391), - [anon_sym_symbol] = ACTIONS(3391), - [anon_sym_object] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), + [ts_builtin_sym_end] = ACTIONS(3644), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_global] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, [1615] = { [sym_comment] = STATE(1615), - [ts_builtin_sym_end] = ACTIONS(3539), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3450), + [anon_sym_export] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_with] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_debugger] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_LTtemplate_GT] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_function] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_SLASH] = ACTIONS(3450), + [anon_sym_LT] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3450), + [sym_number] = ACTIONS(3450), + [sym_private_property_identifier] = ACTIONS(3450), + [sym_this] = ACTIONS(3450), + [sym_super] = ACTIONS(3450), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [anon_sym_AT] = ACTIONS(3450), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3450), + [anon_sym_declare] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3450), + [anon_sym_module] = ACTIONS(3450), + [anon_sym_any] = ACTIONS(3450), + [anon_sym_number] = ACTIONS(3450), + [anon_sym_boolean] = ACTIONS(3450), + [anon_sym_string] = ACTIONS(3450), + [anon_sym_symbol] = ACTIONS(3450), + [anon_sym_object] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_global] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), [sym_html_comment] = ACTIONS(5), }, [1616] = { [sym_comment] = STATE(1616), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3448), + [anon_sym_export] = ACTIONS(3448), + [anon_sym_type] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3448), + [anon_sym_import] = ACTIONS(3448), + [anon_sym_with] = ACTIONS(3448), + [anon_sym_var] = ACTIONS(3448), + [anon_sym_let] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_debugger] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_yield] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LTtemplate_GT] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_async] = ACTIONS(3448), + [anon_sym_function] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3448), + [sym_number] = ACTIONS(3448), + [sym_private_property_identifier] = ACTIONS(3448), + [sym_this] = ACTIONS(3448), + [sym_super] = ACTIONS(3448), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_null] = ACTIONS(3448), + [sym_undefined] = ACTIONS(3448), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_readonly] = ACTIONS(3448), + [anon_sym_get] = ACTIONS(3448), + [anon_sym_set] = ACTIONS(3448), + [anon_sym_declare] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3448), + [anon_sym_private] = ACTIONS(3448), + [anon_sym_protected] = ACTIONS(3448), + [anon_sym_override] = ACTIONS(3448), + [anon_sym_module] = ACTIONS(3448), + [anon_sym_any] = ACTIONS(3448), + [anon_sym_number] = ACTIONS(3448), + [anon_sym_boolean] = ACTIONS(3448), + [anon_sym_string] = ACTIONS(3448), + [anon_sym_symbol] = ACTIONS(3448), + [anon_sym_object] = ACTIONS(3448), + [anon_sym_abstract] = ACTIONS(3448), + [anon_sym_global] = ACTIONS(3448), + [anon_sym_interface] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), [sym_html_comment] = ACTIONS(5), }, [1617] = { [sym_comment] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(3681), - [sym_identifier] = ACTIONS(3557), - [anon_sym_export] = ACTIONS(3557), - [anon_sym_type] = ACTIONS(3557), - [anon_sym_namespace] = ACTIONS(3557), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_RBRACE] = ACTIONS(3557), - [anon_sym_typeof] = ACTIONS(3557), - [anon_sym_import] = ACTIONS(3557), - [anon_sym_with] = ACTIONS(3557), - [anon_sym_var] = ACTIONS(3557), - [anon_sym_let] = ACTIONS(3557), - [anon_sym_const] = ACTIONS(3557), - [anon_sym_BANG] = ACTIONS(3557), - [anon_sym_if] = ACTIONS(3557), - [anon_sym_switch] = ACTIONS(3557), - [anon_sym_for] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_await] = ACTIONS(3557), - [anon_sym_while] = ACTIONS(3557), - [anon_sym_do] = ACTIONS(3557), - [anon_sym_try] = ACTIONS(3557), - [anon_sym_break] = ACTIONS(3557), - [anon_sym_continue] = ACTIONS(3557), - [anon_sym_debugger] = ACTIONS(3557), - [anon_sym_return] = ACTIONS(3557), - [anon_sym_throw] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_yield] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_LTtemplate_GT] = ACTIONS(3557), - [anon_sym_DQUOTE] = ACTIONS(3557), - [anon_sym_SQUOTE] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_async] = ACTIONS(3557), - [anon_sym_function] = ACTIONS(3557), - [anon_sym_new] = ACTIONS(3557), - [anon_sym_using] = ACTIONS(3557), - [anon_sym_PLUS] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_SLASH] = ACTIONS(3557), - [anon_sym_LT] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_void] = ACTIONS(3557), - [anon_sym_delete] = ACTIONS(3557), - [anon_sym_PLUS_PLUS] = ACTIONS(3557), - [anon_sym_DASH_DASH] = ACTIONS(3557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3557), - [sym_number] = ACTIONS(3557), - [sym_private_property_identifier] = ACTIONS(3557), - [sym_this] = ACTIONS(3557), - [sym_super] = ACTIONS(3557), - [sym_true] = ACTIONS(3557), - [sym_false] = ACTIONS(3557), - [sym_null] = ACTIONS(3557), - [sym_undefined] = ACTIONS(3557), - [anon_sym_AT] = ACTIONS(3557), - [anon_sym_static] = ACTIONS(3557), - [anon_sym_readonly] = ACTIONS(3557), - [anon_sym_get] = ACTIONS(3557), - [anon_sym_set] = ACTIONS(3557), - [anon_sym_declare] = ACTIONS(3557), - [anon_sym_public] = ACTIONS(3557), - [anon_sym_private] = ACTIONS(3557), - [anon_sym_protected] = ACTIONS(3557), - [anon_sym_override] = ACTIONS(3557), - [anon_sym_module] = ACTIONS(3557), - [anon_sym_any] = ACTIONS(3557), - [anon_sym_number] = ACTIONS(3557), - [anon_sym_boolean] = ACTIONS(3557), - [anon_sym_string] = ACTIONS(3557), - [anon_sym_symbol] = ACTIONS(3557), - [anon_sym_object] = ACTIONS(3557), - [anon_sym_abstract] = ACTIONS(3557), - [anon_sym_interface] = ACTIONS(3557), - [anon_sym_enum] = ACTIONS(3557), + [ts_builtin_sym_end] = ACTIONS(3614), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_global] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, [1618] = { [sym_comment] = STATE(1618), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_namespace] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2254), - [anon_sym_import] = ACTIONS(2254), - [anon_sym_with] = ACTIONS(2254), - [anon_sym_var] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_debugger] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_throw] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LTtemplate_GT] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_class] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2254), - [anon_sym_delete] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_private_property_identifier] = ACTIONS(2254), - [sym_this] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_readonly] = ACTIONS(2254), - [anon_sym_get] = ACTIONS(2254), - [anon_sym_set] = ACTIONS(2254), - [anon_sym_declare] = ACTIONS(2254), - [anon_sym_public] = ACTIONS(2254), - [anon_sym_private] = ACTIONS(2254), - [anon_sym_protected] = ACTIONS(2254), - [anon_sym_override] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_any] = ACTIONS(2254), - [anon_sym_number] = ACTIONS(2254), - [anon_sym_boolean] = ACTIONS(2254), - [anon_sym_string] = ACTIONS(2254), - [anon_sym_symbol] = ACTIONS(2254), - [anon_sym_object] = ACTIONS(2254), - [anon_sym_abstract] = ACTIONS(2254), - [anon_sym_interface] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3384), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_typeof] = ACTIONS(3384), + [anon_sym_import] = ACTIONS(3384), + [anon_sym_with] = ACTIONS(3384), + [anon_sym_var] = ACTIONS(3384), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_await] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_debugger] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_yield] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LTtemplate_GT] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_async] = ACTIONS(3384), + [anon_sym_function] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_void] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3384), + [sym_number] = ACTIONS(3384), + [sym_private_property_identifier] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + [sym_super] = ACTIONS(3384), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [sym_null] = ACTIONS(3384), + [sym_undefined] = ACTIONS(3384), + [anon_sym_AT] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_readonly] = ACTIONS(3384), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3384), + [anon_sym_declare] = ACTIONS(3384), + [anon_sym_public] = ACTIONS(3384), + [anon_sym_private] = ACTIONS(3384), + [anon_sym_protected] = ACTIONS(3384), + [anon_sym_override] = ACTIONS(3384), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_any] = ACTIONS(3384), + [anon_sym_number] = ACTIONS(3384), + [anon_sym_boolean] = ACTIONS(3384), + [anon_sym_string] = ACTIONS(3384), + [anon_sym_symbol] = ACTIONS(3384), + [anon_sym_object] = ACTIONS(3384), + [anon_sym_abstract] = ACTIONS(3384), + [anon_sym_global] = ACTIONS(3384), + [anon_sym_interface] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), [sym_html_comment] = ACTIONS(5), }, [1619] = { [sym_comment] = STATE(1619), - [ts_builtin_sym_end] = ACTIONS(3541), - [sym_identifier] = ACTIONS(3397), - [anon_sym_export] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_typeof] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_switch] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_await] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_debugger] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_throw] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LTtemplate_GT] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_using] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3397), - [anon_sym_delete] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_number] = ACTIONS(3397), - [sym_private_property_identifier] = ACTIONS(3397), - [sym_this] = ACTIONS(3397), - [sym_super] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_null] = ACTIONS(3397), - [sym_undefined] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_readonly] = ACTIONS(3397), - [anon_sym_get] = ACTIONS(3397), - [anon_sym_set] = ACTIONS(3397), - [anon_sym_declare] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_protected] = ACTIONS(3397), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_any] = ACTIONS(3397), - [anon_sym_number] = ACTIONS(3397), - [anon_sym_boolean] = ACTIONS(3397), - [anon_sym_string] = ACTIONS(3397), - [anon_sym_symbol] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_abstract] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, [1620] = { [sym_comment] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(3577), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, [1621] = { [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), + [ts_builtin_sym_end] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_global] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, [1622] = { [sym_comment] = STATE(1622), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3422), + [anon_sym_export] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_namespace] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_typeof] = ACTIONS(3422), + [anon_sym_import] = ACTIONS(3422), + [anon_sym_with] = ACTIONS(3422), + [anon_sym_var] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_switch] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_await] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_debugger] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_yield] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LTtemplate_GT] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3422), + [anon_sym_class] = ACTIONS(3422), + [anon_sym_async] = ACTIONS(3422), + [anon_sym_function] = ACTIONS(3422), + [anon_sym_new] = ACTIONS(3422), + [anon_sym_using] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_void] = ACTIONS(3422), + [anon_sym_delete] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3422), + [sym_number] = ACTIONS(3422), + [sym_private_property_identifier] = ACTIONS(3422), + [sym_this] = ACTIONS(3422), + [sym_super] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_null] = ACTIONS(3422), + [sym_undefined] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_static] = ACTIONS(3422), + [anon_sym_readonly] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_declare] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_override] = ACTIONS(3422), + [anon_sym_module] = ACTIONS(3422), + [anon_sym_any] = ACTIONS(3422), + [anon_sym_number] = ACTIONS(3422), + [anon_sym_boolean] = ACTIONS(3422), + [anon_sym_string] = ACTIONS(3422), + [anon_sym_symbol] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_global] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), [sym_html_comment] = ACTIONS(5), }, [1623] = { [sym_comment] = STATE(1623), - [ts_builtin_sym_end] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3393), - [anon_sym_export] = ACTIONS(3393), - [anon_sym_type] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_typeof] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_await] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_debugger] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_throw] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LTtemplate_GT] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_SQUOTE] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_async] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_using] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_void] = ACTIONS(3393), - [anon_sym_delete] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3393), - [sym_number] = ACTIONS(3393), - [sym_private_property_identifier] = ACTIONS(3393), - [sym_this] = ACTIONS(3393), - [sym_super] = ACTIONS(3393), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_undefined] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_readonly] = ACTIONS(3393), - [anon_sym_get] = ACTIONS(3393), - [anon_sym_set] = ACTIONS(3393), - [anon_sym_declare] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_protected] = ACTIONS(3393), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_any] = ACTIONS(3393), - [anon_sym_number] = ACTIONS(3393), - [anon_sym_boolean] = ACTIONS(3393), - [anon_sym_string] = ACTIONS(3393), - [anon_sym_symbol] = ACTIONS(3393), - [anon_sym_object] = ACTIONS(3393), - [anon_sym_abstract] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), + [ts_builtin_sym_end] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_LTtemplate_GT] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_SQUOTE] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_using] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3414), + [sym_number] = ACTIONS(3414), + [sym_private_property_identifier] = ACTIONS(3414), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3414), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_override] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_object] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_global] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), [sym_html_comment] = ACTIONS(5), }, [1624] = { [sym_comment] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(3573), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1625] = { [sym_comment] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1626] = { [sym_comment] = STATE(1626), - [ts_builtin_sym_end] = ACTIONS(3545), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [ts_builtin_sym_end] = ACTIONS(3642), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_global] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, [1627] = { [sym_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(3571), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), + [ts_builtin_sym_end] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_global] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, [1628] = { [sym_comment] = STATE(1628), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_global] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1629] = { [sym_comment] = STATE(1629), - [ts_builtin_sym_end] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_with] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_debugger] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LTtemplate_GT] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_private_property_identifier] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_undefined] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_readonly] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_protected] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_global] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, [1630] = { [sym_comment] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(3669), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), + [ts_builtin_sym_end] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_typeof] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_var] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_debugger] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LTtemplate_GT] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_delete] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2235), + [sym_number] = ACTIONS(2235), + [sym_private_property_identifier] = ACTIONS(2235), + [sym_this] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_null] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), + [anon_sym_abstract] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), [sym_html_comment] = ACTIONS(5), }, [1631] = { [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LTtemplate_GT] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_private_property_identifier] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_global] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), [sym_html_comment] = ACTIONS(5), }, [1632] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1632), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5819), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(3685), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(3692), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1633] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1633), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5908), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3693), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [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_typeof] = ACTIONS(3698), + [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3698), + [anon_sym_global] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, [1634] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1634), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6072), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(3695), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [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_typeof] = ACTIONS(3700), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3700), + [anon_sym_global] = ACTIONS(3700), + [anon_sym_interface] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), [sym_html_comment] = ACTIONS(5), }, [1635] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1635), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3701), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [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_typeof] = ACTIONS(3698), + [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3698), + [anon_sym_global] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, [1636] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1636), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(5851), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(3703), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_global] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), [sym_html_comment] = ACTIONS(5), }, [1637] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1637), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5823), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3704), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1638] = { [sym_comment] = STATE(1638), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), + [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_typeof] = ACTIONS(3698), + [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3698), + [anon_sym_global] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, [1639] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1639), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3709), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [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_typeof] = ACTIONS(3698), + [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3698), + [anon_sym_global] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, [1640] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1640), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3711), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [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_typeof] = ACTIONS(3698), + [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3698), + [anon_sym_global] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, [1641] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1641), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3713), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_identifier] = ACTIONS(3706), + [anon_sym_export] = ACTIONS(3706), + [anon_sym_type] = ACTIONS(3706), + [anon_sym_namespace] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_typeof] = ACTIONS(3706), + [anon_sym_import] = ACTIONS(3706), + [anon_sym_with] = ACTIONS(3706), + [anon_sym_var] = ACTIONS(3706), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_if] = ACTIONS(3706), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_for] = ACTIONS(3706), + [anon_sym_LPAREN] = ACTIONS(3706), + [anon_sym_await] = ACTIONS(3706), + [anon_sym_while] = ACTIONS(3706), + [anon_sym_do] = ACTIONS(3706), + [anon_sym_try] = ACTIONS(3706), + [anon_sym_break] = ACTIONS(3706), + [anon_sym_continue] = ACTIONS(3706), + [anon_sym_debugger] = ACTIONS(3706), + [anon_sym_return] = ACTIONS(3706), + [anon_sym_throw] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym_yield] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_LTtemplate_GT] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_async] = ACTIONS(3706), + [anon_sym_function] = ACTIONS(3706), + [anon_sym_new] = ACTIONS(3706), + [anon_sym_using] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_void] = ACTIONS(3706), + [anon_sym_delete] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3706), + [sym_number] = ACTIONS(3706), + [sym_private_property_identifier] = ACTIONS(3706), + [sym_this] = ACTIONS(3706), + [sym_super] = ACTIONS(3706), + [sym_true] = ACTIONS(3706), + [sym_false] = ACTIONS(3706), + [sym_null] = ACTIONS(3706), + [sym_undefined] = ACTIONS(3706), + [anon_sym_AT] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_readonly] = ACTIONS(3706), + [anon_sym_get] = ACTIONS(3706), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_declare] = ACTIONS(3706), + [anon_sym_public] = ACTIONS(3706), + [anon_sym_private] = ACTIONS(3706), + [anon_sym_protected] = ACTIONS(3706), + [anon_sym_override] = ACTIONS(3706), + [anon_sym_module] = ACTIONS(3706), + [anon_sym_any] = ACTIONS(3706), + [anon_sym_number] = ACTIONS(3706), + [anon_sym_boolean] = ACTIONS(3706), + [anon_sym_string] = ACTIONS(3706), + [anon_sym_symbol] = ACTIONS(3706), + [anon_sym_object] = ACTIONS(3706), + [anon_sym_abstract] = ACTIONS(3706), + [anon_sym_global] = ACTIONS(3706), + [anon_sym_interface] = ACTIONS(3706), + [anon_sym_enum] = ACTIONS(3706), [sym_html_comment] = ACTIONS(5), }, [1642] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1642), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_identifier] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_type] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_typeof] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_with] = ACTIONS(3708), + [anon_sym_var] = ACTIONS(3708), + [anon_sym_let] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_LPAREN] = ACTIONS(3708), + [anon_sym_await] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_debugger] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_yield] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_LTtemplate_GT] = ACTIONS(3708), + [anon_sym_DQUOTE] = ACTIONS(3708), + [anon_sym_SQUOTE] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_async] = ACTIONS(3708), + [anon_sym_function] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_SLASH] = ACTIONS(3708), + [anon_sym_LT] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_void] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3708), + [sym_number] = ACTIONS(3708), + [sym_private_property_identifier] = ACTIONS(3708), + [sym_this] = ACTIONS(3708), + [sym_super] = ACTIONS(3708), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [sym_null] = ACTIONS(3708), + [sym_undefined] = ACTIONS(3708), + [anon_sym_AT] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_readonly] = ACTIONS(3708), + [anon_sym_get] = ACTIONS(3708), + [anon_sym_set] = ACTIONS(3708), + [anon_sym_declare] = ACTIONS(3708), + [anon_sym_public] = ACTIONS(3708), + [anon_sym_private] = ACTIONS(3708), + [anon_sym_protected] = ACTIONS(3708), + [anon_sym_override] = ACTIONS(3708), + [anon_sym_module] = ACTIONS(3708), + [anon_sym_any] = ACTIONS(3708), + [anon_sym_number] = ACTIONS(3708), + [anon_sym_boolean] = ACTIONS(3708), + [anon_sym_string] = ACTIONS(3708), + [anon_sym_symbol] = ACTIONS(3708), + [anon_sym_object] = ACTIONS(3708), + [anon_sym_abstract] = ACTIONS(3708), + [anon_sym_global] = ACTIONS(3708), + [anon_sym_interface] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), [sym_html_comment] = ACTIONS(5), }, [1643] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), [sym_comment] = STATE(1643), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3717), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [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_typeof] = ACTIONS(3698), + [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3698), + [anon_sym_global] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, [1644] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1644), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6076), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(3710), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1645] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1645), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3719), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5853), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1646] = { [sym_comment] = STATE(1646), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), + [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_typeof] = ACTIONS(3698), + [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3698), + [anon_sym_global] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, [1647] = { [sym_comment] = STATE(1647), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), + [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_typeof] = ACTIONS(3698), + [anon_sym_import] = 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_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(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_abstract] = ACTIONS(3698), + [anon_sym_global] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, [1648] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1648), - [sym_identifier] = ACTIONS(3205), - [anon_sym_export] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym_import] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_debugger] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_LTtemplate_GT] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_function] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_void] = ACTIONS(3205), - [anon_sym_delete] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3205), - [sym_number] = ACTIONS(3205), - [sym_private_property_identifier] = ACTIONS(3205), - [sym_this] = ACTIONS(3205), - [sym_super] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_null] = ACTIONS(3205), - [sym_undefined] = ACTIONS(3205), - [anon_sym_AT] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_get] = ACTIONS(3205), - [anon_sym_set] = ACTIONS(3205), - [anon_sym_declare] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_module] = ACTIONS(3205), - [anon_sym_any] = ACTIONS(3205), - [anon_sym_number] = ACTIONS(3205), - [anon_sym_boolean] = ACTIONS(3205), - [anon_sym_string] = ACTIONS(3205), - [anon_sym_symbol] = ACTIONS(3205), - [anon_sym_object] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(5908), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(3718), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1649] = { [sym_comment] = STATE(1649), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_global] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), [sym_html_comment] = ACTIONS(5), }, [1650] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1650), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1651] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1651), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3724), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1652] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1652), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1653] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1653), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3728), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1654] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1654), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3725), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1655] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1655), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1656] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1656), - [sym_identifier] = ACTIONS(3727), - [anon_sym_export] = ACTIONS(3727), - [anon_sym_type] = ACTIONS(3727), - [anon_sym_namespace] = ACTIONS(3727), - [anon_sym_LBRACE] = ACTIONS(3727), - [anon_sym_typeof] = ACTIONS(3727), - [anon_sym_import] = ACTIONS(3727), - [anon_sym_with] = ACTIONS(3727), - [anon_sym_var] = ACTIONS(3727), - [anon_sym_let] = ACTIONS(3727), - [anon_sym_const] = ACTIONS(3727), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_if] = ACTIONS(3727), - [anon_sym_switch] = ACTIONS(3727), - [anon_sym_for] = ACTIONS(3727), - [anon_sym_LPAREN] = ACTIONS(3727), - [anon_sym_await] = ACTIONS(3727), - [anon_sym_while] = ACTIONS(3727), - [anon_sym_do] = ACTIONS(3727), - [anon_sym_try] = ACTIONS(3727), - [anon_sym_break] = ACTIONS(3727), - [anon_sym_continue] = ACTIONS(3727), - [anon_sym_debugger] = ACTIONS(3727), - [anon_sym_return] = ACTIONS(3727), - [anon_sym_throw] = ACTIONS(3727), - [anon_sym_SEMI] = ACTIONS(3727), - [anon_sym_yield] = ACTIONS(3727), - [anon_sym_LBRACK] = ACTIONS(3727), - [anon_sym_LTtemplate_GT] = ACTIONS(3727), - [anon_sym_DQUOTE] = ACTIONS(3727), - [anon_sym_SQUOTE] = ACTIONS(3727), - [anon_sym_class] = ACTIONS(3727), - [anon_sym_async] = ACTIONS(3727), - [anon_sym_function] = ACTIONS(3727), - [anon_sym_new] = ACTIONS(3727), - [anon_sym_using] = ACTIONS(3727), - [anon_sym_PLUS] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3727), - [anon_sym_SLASH] = ACTIONS(3727), - [anon_sym_LT] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_void] = ACTIONS(3727), - [anon_sym_delete] = ACTIONS(3727), - [anon_sym_PLUS_PLUS] = ACTIONS(3727), - [anon_sym_DASH_DASH] = ACTIONS(3727), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3727), - [sym_number] = ACTIONS(3727), - [sym_private_property_identifier] = ACTIONS(3727), - [sym_this] = ACTIONS(3727), - [sym_super] = ACTIONS(3727), - [sym_true] = ACTIONS(3727), - [sym_false] = ACTIONS(3727), - [sym_null] = ACTIONS(3727), - [sym_undefined] = ACTIONS(3727), - [anon_sym_AT] = ACTIONS(3727), - [anon_sym_static] = ACTIONS(3727), - [anon_sym_readonly] = ACTIONS(3727), - [anon_sym_get] = ACTIONS(3727), - [anon_sym_set] = ACTIONS(3727), - [anon_sym_declare] = ACTIONS(3727), - [anon_sym_public] = ACTIONS(3727), - [anon_sym_private] = ACTIONS(3727), - [anon_sym_protected] = ACTIONS(3727), - [anon_sym_override] = ACTIONS(3727), - [anon_sym_module] = ACTIONS(3727), - [anon_sym_any] = ACTIONS(3727), - [anon_sym_number] = ACTIONS(3727), - [anon_sym_boolean] = ACTIONS(3727), - [anon_sym_string] = ACTIONS(3727), - [anon_sym_symbol] = ACTIONS(3727), - [anon_sym_object] = ACTIONS(3727), - [anon_sym_abstract] = ACTIONS(3727), - [anon_sym_interface] = ACTIONS(3727), - [anon_sym_enum] = ACTIONS(3727), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1657] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1657), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3729), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3736), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1658] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1658), - [sym_identifier] = ACTIONS(3731), - [anon_sym_export] = ACTIONS(3731), - [anon_sym_type] = ACTIONS(3731), - [anon_sym_namespace] = ACTIONS(3731), - [anon_sym_LBRACE] = ACTIONS(3731), - [anon_sym_typeof] = ACTIONS(3731), - [anon_sym_import] = ACTIONS(3731), - [anon_sym_with] = ACTIONS(3731), - [anon_sym_var] = ACTIONS(3731), - [anon_sym_let] = ACTIONS(3731), - [anon_sym_const] = ACTIONS(3731), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_if] = ACTIONS(3731), - [anon_sym_switch] = ACTIONS(3731), - [anon_sym_for] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3731), - [anon_sym_await] = ACTIONS(3731), - [anon_sym_while] = ACTIONS(3731), - [anon_sym_do] = ACTIONS(3731), - [anon_sym_try] = ACTIONS(3731), - [anon_sym_break] = ACTIONS(3731), - [anon_sym_continue] = ACTIONS(3731), - [anon_sym_debugger] = ACTIONS(3731), - [anon_sym_return] = ACTIONS(3731), - [anon_sym_throw] = ACTIONS(3731), - [anon_sym_SEMI] = ACTIONS(3731), - [anon_sym_yield] = ACTIONS(3731), - [anon_sym_LBRACK] = ACTIONS(3731), - [anon_sym_LTtemplate_GT] = ACTIONS(3731), - [anon_sym_DQUOTE] = ACTIONS(3731), - [anon_sym_SQUOTE] = ACTIONS(3731), - [anon_sym_class] = ACTIONS(3731), - [anon_sym_async] = ACTIONS(3731), - [anon_sym_function] = ACTIONS(3731), - [anon_sym_new] = ACTIONS(3731), - [anon_sym_using] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3731), - [anon_sym_DASH] = ACTIONS(3731), - [anon_sym_SLASH] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(3731), - [anon_sym_void] = ACTIONS(3731), - [anon_sym_delete] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3731), - [sym_number] = ACTIONS(3731), - [sym_private_property_identifier] = ACTIONS(3731), - [sym_this] = ACTIONS(3731), - [sym_super] = ACTIONS(3731), - [sym_true] = ACTIONS(3731), - [sym_false] = ACTIONS(3731), - [sym_null] = ACTIONS(3731), - [sym_undefined] = ACTIONS(3731), - [anon_sym_AT] = ACTIONS(3731), - [anon_sym_static] = ACTIONS(3731), - [anon_sym_readonly] = ACTIONS(3731), - [anon_sym_get] = ACTIONS(3731), - [anon_sym_set] = ACTIONS(3731), - [anon_sym_declare] = ACTIONS(3731), - [anon_sym_public] = ACTIONS(3731), - [anon_sym_private] = ACTIONS(3731), - [anon_sym_protected] = ACTIONS(3731), - [anon_sym_override] = ACTIONS(3731), - [anon_sym_module] = ACTIONS(3731), - [anon_sym_any] = ACTIONS(3731), - [anon_sym_number] = ACTIONS(3731), - [anon_sym_boolean] = ACTIONS(3731), - [anon_sym_string] = ACTIONS(3731), - [anon_sym_symbol] = ACTIONS(3731), - [anon_sym_object] = ACTIONS(3731), - [anon_sym_abstract] = ACTIONS(3731), - [anon_sym_interface] = ACTIONS(3731), - [anon_sym_enum] = ACTIONS(3731), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1659] = { + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1659), - [sym_identifier] = ACTIONS(3733), - [anon_sym_export] = ACTIONS(3733), - [anon_sym_type] = ACTIONS(3733), - [anon_sym_namespace] = ACTIONS(3733), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_typeof] = ACTIONS(3733), - [anon_sym_import] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3733), - [anon_sym_var] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_const] = ACTIONS(3733), - [anon_sym_BANG] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_switch] = ACTIONS(3733), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_await] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_break] = ACTIONS(3733), - [anon_sym_continue] = ACTIONS(3733), - [anon_sym_debugger] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_throw] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3733), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LTtemplate_GT] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_SQUOTE] = ACTIONS(3733), - [anon_sym_class] = ACTIONS(3733), - [anon_sym_async] = ACTIONS(3733), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_using] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_SLASH] = ACTIONS(3733), - [anon_sym_LT] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3733), - [anon_sym_void] = ACTIONS(3733), - [anon_sym_delete] = ACTIONS(3733), - [anon_sym_PLUS_PLUS] = ACTIONS(3733), - [anon_sym_DASH_DASH] = ACTIONS(3733), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3733), - [sym_number] = ACTIONS(3733), - [sym_private_property_identifier] = ACTIONS(3733), - [sym_this] = ACTIONS(3733), - [sym_super] = ACTIONS(3733), - [sym_true] = ACTIONS(3733), - [sym_false] = ACTIONS(3733), - [sym_null] = ACTIONS(3733), - [sym_undefined] = ACTIONS(3733), - [anon_sym_AT] = ACTIONS(3733), - [anon_sym_static] = ACTIONS(3733), - [anon_sym_readonly] = ACTIONS(3733), - [anon_sym_get] = ACTIONS(3733), - [anon_sym_set] = ACTIONS(3733), - [anon_sym_declare] = ACTIONS(3733), - [anon_sym_public] = ACTIONS(3733), - [anon_sym_private] = ACTIONS(3733), - [anon_sym_protected] = ACTIONS(3733), - [anon_sym_override] = ACTIONS(3733), - [anon_sym_module] = ACTIONS(3733), - [anon_sym_any] = ACTIONS(3733), - [anon_sym_number] = ACTIONS(3733), - [anon_sym_boolean] = ACTIONS(3733), - [anon_sym_string] = ACTIONS(3733), - [anon_sym_symbol] = ACTIONS(3733), - [anon_sym_object] = ACTIONS(3733), - [anon_sym_abstract] = ACTIONS(3733), - [anon_sym_interface] = ACTIONS(3733), - [anon_sym_enum] = ACTIONS(3733), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1660] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1660), - [sym_formal_parameters] = STATE(7251), - [sym_rest_pattern] = STATE(6693), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4839), - [sym_tuple_parameter] = STATE(6694), - [sym_optional_tuple_parameter] = STATE(6694), - [sym_optional_type] = STATE(6694), - [sym_rest_type] = STATE(6694), - [sym__tuple_type_member] = STATE(6689), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type_query_member_expression_in_type_annotation] = STATE(4365), + [sym__type_query_call_expression_in_type_annotation] = STATE(4713), + [sym_asserts] = STATE(5284), + [sym__type] = STATE(4361), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_predicate] = STATE(5283), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4136), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(3774), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_asserts] = ACTIONS(3782), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1661] = { - [sym_import] = STATE(5769), - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1661), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type_query_member_expression_in_type_annotation] = STATE(4126), - [sym__type_query_call_expression_in_type_annotation] = STATE(4369), - [sym_asserts] = STATE(4834), - [sym__type] = STATE(4125), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_predicate] = STATE(4823), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4019), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3737), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_asserts] = ACTIONS(3739), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4181), + [sym__type_query_call_expression_in_type_annotation] = STATE(4471), + [sym_asserts] = STATE(6786), + [sym__type] = STATE(4178), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_predicate] = STATE(6770), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3781), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3790), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(3792), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_asserts] = ACTIONS(3794), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1662] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1662), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4256), - [sym__type_query_call_expression_in_type_annotation] = STATE(4582), - [sym_asserts] = STATE(6770), - [sym__type] = STATE(4246), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_predicate] = STATE(6758), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3781), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(3743), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_asserts] = ACTIONS(3745), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_rest_pattern] = STATE(6698), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4804), + [sym_tuple_parameter] = STATE(6699), + [sym_optional_tuple_parameter] = STATE(6699), + [sym_optional_type] = STATE(6699), + [sym_rest_type] = STATE(6699), + [sym__tuple_type_member] = STATE(6692), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1663] = { - [sym_import] = STATE(6018), - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_import] = STATE(5767), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1663), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type_query_member_expression_in_type_annotation] = STATE(4375), - [sym__type_query_call_expression_in_type_annotation] = STATE(4838), - [sym_asserts] = STATE(5281), - [sym__type] = STATE(4363), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_predicate] = STATE(5280), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4122), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(3747), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(3779), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_asserts] = ACTIONS(3787), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type_query_member_expression_in_type_annotation] = STATE(4151), + [sym__type_query_call_expression_in_type_annotation] = STATE(4380), + [sym_asserts] = STATE(4714), + [sym__type] = STATE(4120), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_predicate] = STATE(4718), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4027), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(3796), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(3798), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_asserts] = ACTIONS(3800), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1664] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1664), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3795), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1665] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1665), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4663), - [sym__type_query_call_expression_in_type_annotation] = STATE(5577), - [sym__type] = STATE(4662), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_type_parameter] = STATE(5703), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3797), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(3799), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1666] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1666), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3801), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3806), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1667] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1667), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3808), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1668] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1668), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3805), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3810), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1669] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1669), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3807), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1670] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1670), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3809), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1671] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1671), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3811), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3816), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1672] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1672), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3813), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1673] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1673), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3815), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1674] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1674), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3822), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1675] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1675), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3819), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1676] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1676), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3826), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1677] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1677), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3823), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3828), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1678] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1678), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3825), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3830), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1679] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1679), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3827), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3832), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1680] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1680), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3829), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3834), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1681] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1681), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3831), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1682] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1682), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3833), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1683] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1683), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3835), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1684] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1684), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3837), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1685] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1685), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3844), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1686] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1686), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1687] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1687), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3848), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1688] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1688), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3845), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1689] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1689), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1690] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1690), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3849), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3854), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1691] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1691), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3856), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1692] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1692), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3853), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3858), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1693] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1693), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3855), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1694] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1694), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3857), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3862), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1695] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1695), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3864), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1696] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1696), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1697] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1697), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3863), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3868), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1698] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1698), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), - [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3865), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4665), + [sym__type_query_call_expression_in_type_annotation] = STATE(5579), + [sym__type] = STATE(4666), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_type_parameter] = STATE(5702), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3870), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1699] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1699), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3867), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1700] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1700), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3869), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1701] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1701), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3871), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1702] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1702), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3873), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3880), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1703] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1703), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3875), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1704] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1704), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3877), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1705] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1705), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3879), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1706] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1706), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3881), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1707] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1707), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4702), - [sym__type_query_call_expression_in_type_annotation] = STATE(5466), - [sym__type] = STATE(4701), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5547), + [sym__type] = STATE(4745), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1708] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1708), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(5106), - [sym__type_query_call_expression_in_type_annotation] = STATE(5933), - [sym__type] = STATE(5107), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4657), + [sym__type_query_call_expression_in_type_annotation] = STATE(5455), + [sym__type] = STATE(4749), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1709] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1709), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4671), - [sym__type_query_call_expression_in_type_annotation] = STATE(5395), - [sym__type] = STATE(4679), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(5108), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5109), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1710] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1710), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4694), - [sym__type_query_call_expression_in_type_annotation] = STATE(5455), - [sym__type] = STATE(4693), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4728), + [sym__type_query_call_expression_in_type_annotation] = STATE(5534), + [sym__type] = STATE(4727), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1711] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1711), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4256), - [sym__type_query_call_expression_in_type_annotation] = STATE(4582), - [sym__type] = STATE(4246), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4737), + [sym__type_query_call_expression_in_type_annotation] = STATE(5379), + [sym__type] = STATE(4706), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1712] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1712), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4736), - [sym__type_query_call_expression_in_type_annotation] = STATE(5375), - [sym__type] = STATE(4738), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4806), + [sym__type_query_call_expression_in_type_annotation] = STATE(5470), + [sym__type] = STATE(4809), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1713] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5767), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1713), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4793), - [sym__type_query_call_expression_in_type_annotation] = STATE(5532), - [sym__type] = STATE(4794), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type_query_member_expression_in_type_annotation] = STATE(4151), + [sym__type_query_call_expression_in_type_annotation] = STATE(4380), + [sym__type] = STATE(4120), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1714] = { - [sym_import] = STATE(5769), - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1714), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type_query_member_expression_in_type_annotation] = STATE(4126), - [sym__type_query_call_expression_in_type_annotation] = STATE(4369), - [sym__type] = STATE(4125), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4181), + [sym__type_query_call_expression_in_type_annotation] = STATE(4471), + [sym__type] = STATE(4178), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1715] = { - [sym_import] = STATE(5698), - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_import] = STATE(5684), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1715), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type_query_member_expression_in_type_annotation] = STATE(4836), - [sym__type_query_call_expression_in_type_annotation] = STATE(5546), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type_query_member_expression_in_type_annotation] = STATE(4788), + [sym__type_query_call_expression_in_type_annotation] = STATE(5397), + [sym__type] = STATE(4789), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_import] = ACTIONS(130), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1716] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1716), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym_asserts] = STATE(2393), - [sym__type] = STATE(2353), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_predicate] = STATE(2393), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2304), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(3911), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_asserts] = ACTIONS(3919), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym_asserts] = STATE(2837), + [sym__type] = STATE(2836), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_predicate] = STATE(2837), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2772), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(3890), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(3918), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_asserts] = ACTIONS(3926), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1717] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1717), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym_asserts] = STATE(3808), - [sym__type] = STATE(3812), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_predicate] = STATE(3808), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3781), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(3743), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_asserts] = ACTIONS(3745), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym_asserts] = STATE(2342), + [sym__type] = STATE(2320), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_predicate] = STATE(2342), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2300), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(3934), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(3962), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_asserts] = ACTIONS(3970), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1718] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1718), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym_asserts] = STATE(2918), - [sym__type] = STATE(2917), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_predicate] = STATE(2918), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2673), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(3927), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym_asserts] = STATE(2984), + [sym__type] = STATE(2944), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_predicate] = STATE(2984), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2772), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(3890), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(3955), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_asserts] = ACTIONS(3963), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(3918), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_asserts] = ACTIONS(3926), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1719] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1719), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym_asserts] = STATE(4091), - [sym__type] = STATE(4095), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_predicate] = STATE(4091), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4019), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3737), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_asserts] = ACTIONS(3739), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym_asserts] = STATE(4318), + [sym__type] = STATE(4319), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_predicate] = STATE(4318), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4136), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(3774), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_asserts] = ACTIONS(3782), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1720] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1720), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym_asserts] = STATE(4191), - [sym__type] = STATE(4170), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_predicate] = STATE(4191), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4122), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(3747), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(3779), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_asserts] = ACTIONS(3787), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym_asserts] = STATE(4102), + [sym__type] = STATE(4075), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_predicate] = STATE(4102), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4027), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(3796), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(3798), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_asserts] = ACTIONS(3800), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1721] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1721), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym_asserts] = STATE(4315), - [sym__type] = STATE(4316), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_predicate] = STATE(4315), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4122), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(3747), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(3779), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_asserts] = ACTIONS(3787), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym_asserts] = STATE(4074), + [sym__type] = STATE(4079), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_predicate] = STATE(4074), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4027), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(3796), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(3798), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_asserts] = ACTIONS(3800), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1722] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1722), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym_asserts] = STATE(4067), - [sym__type] = STATE(4065), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_predicate] = STATE(4067), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4019), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3737), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_asserts] = ACTIONS(3739), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym_asserts] = STATE(4162), + [sym__type] = STATE(4157), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_predicate] = STATE(4162), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4136), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(3774), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_asserts] = ACTIONS(3782), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1723] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1723), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym_asserts] = STATE(2388), - [sym__type] = STATE(2358), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_predicate] = STATE(2388), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2304), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(3911), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_asserts] = ACTIONS(3919), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym_asserts] = STATE(2338), + [sym__type] = STATE(2337), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_predicate] = STATE(2338), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2300), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(3934), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(3962), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_asserts] = ACTIONS(3970), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1724] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1724), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym_asserts] = STATE(2976), - [sym__type] = STATE(2977), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_predicate] = STATE(2976), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2673), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(3927), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(3955), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_asserts] = ACTIONS(3963), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym_asserts] = STATE(3799), + [sym__type] = STATE(3810), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_predicate] = STATE(3799), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3781), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3790), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(3792), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_asserts] = ACTIONS(3794), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1725] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1725), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym_asserts] = STATE(3803), - [sym__type] = STATE(3800), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_predicate] = STATE(3803), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym_asserts] = STATE(3847), + [sym__type] = STATE(3876), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_predicate] = STATE(3847), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), [sym_predefined_type] = STATE(3781), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(3743), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_asserts] = ACTIONS(3745), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(3790), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(3792), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_asserts] = ACTIONS(3794), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1726] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5633), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1726), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5633), - [sym_pair] = STATE(5633), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5650), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(3971), - [anon_sym_export] = ACTIONS(3973), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(3971), - [anon_sym_namespace] = ACTIONS(3971), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_let] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(3989), - [anon_sym_new] = ACTIONS(3991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(3978), + [anon_sym_export] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(3978), + [anon_sym_namespace] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(3988), + [anon_sym_let] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(3996), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3997), - [anon_sym_readonly] = ACTIONS(3999), - [anon_sym_get] = ACTIONS(4001), - [anon_sym_set] = ACTIONS(4001), - [anon_sym_declare] = ACTIONS(3971), - [anon_sym_public] = ACTIONS(4003), - [anon_sym_private] = ACTIONS(4003), - [anon_sym_protected] = ACTIONS(4003), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_module] = ACTIONS(3971), - [anon_sym_any] = ACTIONS(3971), - [anon_sym_number] = ACTIONS(3971), - [anon_sym_boolean] = ACTIONS(3971), - [anon_sym_string] = ACTIONS(3971), - [anon_sym_symbol] = ACTIONS(3971), - [anon_sym_object] = ACTIONS(3971), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_readonly] = ACTIONS(4006), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4008), + [anon_sym_declare] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(4010), + [anon_sym_private] = ACTIONS(4010), + [anon_sym_protected] = ACTIONS(4010), + [anon_sym_override] = ACTIONS(4012), + [anon_sym_module] = ACTIONS(3978), + [anon_sym_any] = ACTIONS(3978), + [anon_sym_number] = ACTIONS(3978), + [anon_sym_boolean] = ACTIONS(3978), + [anon_sym_string] = ACTIONS(3978), + [anon_sym_symbol] = ACTIONS(3978), + [anon_sym_object] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1727] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1727), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4011), - [anon_sym_export] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4011), - [anon_sym_namespace] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_let] = ACTIONS(4011), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4017), - [anon_sym_new] = ACTIONS(4019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(4018), + [anon_sym_export] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4021), - [anon_sym_readonly] = ACTIONS(4023), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_declare] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4027), - [anon_sym_private] = ACTIONS(4027), - [anon_sym_protected] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4029), - [anon_sym_module] = ACTIONS(4011), - [anon_sym_any] = ACTIONS(4011), - [anon_sym_number] = ACTIONS(4011), - [anon_sym_boolean] = ACTIONS(4011), - [anon_sym_string] = ACTIONS(4011), - [anon_sym_symbol] = ACTIONS(4011), - [anon_sym_object] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4028), + [anon_sym_readonly] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4032), + [anon_sym_set] = ACTIONS(4032), + [anon_sym_declare] = ACTIONS(4018), + [anon_sym_public] = ACTIONS(4034), + [anon_sym_private] = ACTIONS(4034), + [anon_sym_protected] = ACTIONS(4034), + [anon_sym_override] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4018), + [anon_sym_any] = ACTIONS(4018), + [anon_sym_number] = ACTIONS(4018), + [anon_sym_boolean] = ACTIONS(4018), + [anon_sym_string] = ACTIONS(4018), + [anon_sym_symbol] = ACTIONS(4018), + [anon_sym_object] = ACTIONS(4018), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1728] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1728), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4031), - [anon_sym_export] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4031), - [anon_sym_namespace] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_let] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4037), - [anon_sym_new] = ACTIONS(4039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(4038), + [anon_sym_export] = ACTIONS(4040), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4038), + [anon_sym_namespace] = ACTIONS(4038), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4042), + [anon_sym_let] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4044), + [anon_sym_new] = ACTIONS(4046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4041), - [anon_sym_readonly] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4045), - [anon_sym_set] = ACTIONS(4045), - [anon_sym_declare] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4047), - [anon_sym_private] = ACTIONS(4047), - [anon_sym_protected] = ACTIONS(4047), - [anon_sym_override] = ACTIONS(4049), - [anon_sym_module] = ACTIONS(4031), - [anon_sym_any] = ACTIONS(4031), - [anon_sym_number] = ACTIONS(4031), - [anon_sym_boolean] = ACTIONS(4031), - [anon_sym_string] = ACTIONS(4031), - [anon_sym_symbol] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_readonly] = ACTIONS(4050), + [anon_sym_get] = ACTIONS(4052), + [anon_sym_set] = ACTIONS(4052), + [anon_sym_declare] = ACTIONS(4038), + [anon_sym_public] = ACTIONS(4054), + [anon_sym_private] = ACTIONS(4054), + [anon_sym_protected] = ACTIONS(4054), + [anon_sym_override] = ACTIONS(4056), + [anon_sym_module] = ACTIONS(4038), + [anon_sym_any] = ACTIONS(4038), + [anon_sym_number] = ACTIONS(4038), + [anon_sym_boolean] = ACTIONS(4038), + [anon_sym_string] = ACTIONS(4038), + [anon_sym_symbol] = ACTIONS(4038), + [anon_sym_object] = ACTIONS(4038), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1729] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5632), + [sym_string] = STATE(4081), [sym_comment] = STATE(1729), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4031), - [anon_sym_export] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4031), - [anon_sym_namespace] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4051), - [anon_sym_let] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4037), - [anon_sym_new] = ACTIONS(4039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5632), + [sym_pair] = STATE(5632), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5652), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(4058), + [anon_sym_export] = ACTIONS(4060), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4058), + [anon_sym_namespace] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4064), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4041), - [anon_sym_readonly] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4045), - [anon_sym_set] = ACTIONS(4045), - [anon_sym_declare] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4047), - [anon_sym_private] = ACTIONS(4047), - [anon_sym_protected] = ACTIONS(4047), - [anon_sym_override] = ACTIONS(4049), - [anon_sym_module] = ACTIONS(4031), - [anon_sym_any] = ACTIONS(4031), - [anon_sym_number] = ACTIONS(4031), - [anon_sym_boolean] = ACTIONS(4031), - [anon_sym_string] = ACTIONS(4031), - [anon_sym_symbol] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_readonly] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4072), + [anon_sym_set] = ACTIONS(4072), + [anon_sym_declare] = ACTIONS(4058), + [anon_sym_public] = ACTIONS(4074), + [anon_sym_private] = ACTIONS(4074), + [anon_sym_protected] = ACTIONS(4074), + [anon_sym_override] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4058), + [anon_sym_any] = ACTIONS(4058), + [anon_sym_number] = ACTIONS(4058), + [anon_sym_boolean] = ACTIONS(4058), + [anon_sym_string] = ACTIONS(4058), + [anon_sym_symbol] = ACTIONS(4058), + [anon_sym_object] = ACTIONS(4058), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1730] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1730), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4053), - [anon_sym_export] = ACTIONS(4055), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4053), - [anon_sym_namespace] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4057), - [anon_sym_let] = ACTIONS(4053), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4059), - [anon_sym_new] = ACTIONS(4061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(3978), + [anon_sym_export] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(3978), + [anon_sym_namespace] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4078), + [anon_sym_let] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(3996), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4063), - [anon_sym_readonly] = ACTIONS(4065), - [anon_sym_get] = ACTIONS(4067), - [anon_sym_set] = ACTIONS(4067), - [anon_sym_declare] = ACTIONS(4053), - [anon_sym_public] = ACTIONS(4069), - [anon_sym_private] = ACTIONS(4069), - [anon_sym_protected] = ACTIONS(4069), - [anon_sym_override] = ACTIONS(4071), - [anon_sym_module] = ACTIONS(4053), - [anon_sym_any] = ACTIONS(4053), - [anon_sym_number] = ACTIONS(4053), - [anon_sym_boolean] = ACTIONS(4053), - [anon_sym_string] = ACTIONS(4053), - [anon_sym_symbol] = ACTIONS(4053), - [anon_sym_object] = ACTIONS(4053), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_readonly] = ACTIONS(4006), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4008), + [anon_sym_declare] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(4010), + [anon_sym_private] = ACTIONS(4010), + [anon_sym_protected] = ACTIONS(4010), + [anon_sym_override] = ACTIONS(4012), + [anon_sym_module] = ACTIONS(3978), + [anon_sym_any] = ACTIONS(3978), + [anon_sym_number] = ACTIONS(3978), + [anon_sym_boolean] = ACTIONS(3978), + [anon_sym_string] = ACTIONS(3978), + [anon_sym_symbol] = ACTIONS(3978), + [anon_sym_object] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1731] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4724), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1731), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4053), - [anon_sym_export] = ACTIONS(4055), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4053), - [anon_sym_namespace] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4073), - [anon_sym_let] = ACTIONS(4053), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4059), - [anon_sym_new] = ACTIONS(4061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4724), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4724), + [sym_property_signature] = STATE(4724), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4724), + [sym_index_signature] = STATE(4724), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(3978), + [anon_sym_export] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(3978), + [anon_sym_namespace] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(4080), + [anon_sym_RBRACE] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(3996), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4063), - [anon_sym_readonly] = ACTIONS(4065), - [anon_sym_get] = ACTIONS(4067), - [anon_sym_set] = ACTIONS(4067), - [anon_sym_declare] = ACTIONS(4053), - [anon_sym_public] = ACTIONS(4069), - [anon_sym_private] = ACTIONS(4069), - [anon_sym_protected] = ACTIONS(4069), - [anon_sym_override] = ACTIONS(4071), - [anon_sym_module] = ACTIONS(4053), - [anon_sym_any] = ACTIONS(4053), - [anon_sym_number] = ACTIONS(4053), - [anon_sym_boolean] = ACTIONS(4053), - [anon_sym_string] = ACTIONS(4053), - [anon_sym_symbol] = ACTIONS(4053), - [anon_sym_object] = ACTIONS(4053), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_readonly] = ACTIONS(4006), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4008), + [anon_sym_declare] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(4010), + [anon_sym_private] = ACTIONS(4010), + [anon_sym_protected] = ACTIONS(4010), + [anon_sym_override] = ACTIONS(4012), + [anon_sym_module] = ACTIONS(3978), + [anon_sym_any] = ACTIONS(3978), + [anon_sym_number] = ACTIONS(3978), + [anon_sym_boolean] = ACTIONS(3978), + [anon_sym_string] = ACTIONS(3978), + [anon_sym_symbol] = ACTIONS(3978), + [anon_sym_object] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4086), [sym_html_comment] = ACTIONS(5), }, [1732] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1732), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4031), - [anon_sym_export] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4031), - [anon_sym_namespace] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4075), - [anon_sym_let] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4037), - [anon_sym_new] = ACTIONS(4039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(4018), + [anon_sym_export] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4041), - [anon_sym_readonly] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4045), - [anon_sym_set] = ACTIONS(4045), - [anon_sym_declare] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4047), - [anon_sym_private] = ACTIONS(4047), - [anon_sym_protected] = ACTIONS(4047), - [anon_sym_override] = ACTIONS(4049), - [anon_sym_module] = ACTIONS(4031), - [anon_sym_any] = ACTIONS(4031), - [anon_sym_number] = ACTIONS(4031), - [anon_sym_boolean] = ACTIONS(4031), - [anon_sym_string] = ACTIONS(4031), - [anon_sym_symbol] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4028), + [anon_sym_readonly] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4032), + [anon_sym_set] = ACTIONS(4032), + [anon_sym_declare] = ACTIONS(4018), + [anon_sym_public] = ACTIONS(4034), + [anon_sym_private] = ACTIONS(4034), + [anon_sym_protected] = ACTIONS(4034), + [anon_sym_override] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4018), + [anon_sym_any] = ACTIONS(4018), + [anon_sym_number] = ACTIONS(4018), + [anon_sym_boolean] = ACTIONS(4018), + [anon_sym_string] = ACTIONS(4018), + [anon_sym_symbol] = ACTIONS(4018), + [anon_sym_object] = ACTIONS(4018), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1733] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5633), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1733), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5633), - [sym_pair] = STATE(5633), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5650), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(3971), - [anon_sym_export] = ACTIONS(3973), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(3971), - [anon_sym_namespace] = ACTIONS(3971), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(3989), - [anon_sym_new] = ACTIONS(3991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(4018), + [anon_sym_export] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3997), - [anon_sym_readonly] = ACTIONS(3999), - [anon_sym_get] = ACTIONS(4001), - [anon_sym_set] = ACTIONS(4001), - [anon_sym_declare] = ACTIONS(3971), - [anon_sym_public] = ACTIONS(4003), - [anon_sym_private] = ACTIONS(4003), - [anon_sym_protected] = ACTIONS(4003), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_module] = ACTIONS(3971), - [anon_sym_any] = ACTIONS(3971), - [anon_sym_number] = ACTIONS(3971), - [anon_sym_boolean] = ACTIONS(3971), - [anon_sym_string] = ACTIONS(3971), - [anon_sym_symbol] = ACTIONS(3971), - [anon_sym_object] = ACTIONS(3971), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4028), + [anon_sym_readonly] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4032), + [anon_sym_set] = ACTIONS(4032), + [anon_sym_declare] = ACTIONS(4018), + [anon_sym_public] = ACTIONS(4034), + [anon_sym_private] = ACTIONS(4034), + [anon_sym_protected] = ACTIONS(4034), + [anon_sym_override] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4018), + [anon_sym_any] = ACTIONS(4018), + [anon_sym_number] = ACTIONS(4018), + [anon_sym_boolean] = ACTIONS(4018), + [anon_sym_string] = ACTIONS(4018), + [anon_sym_symbol] = ACTIONS(4018), + [anon_sym_object] = ACTIONS(4018), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1734] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1734), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4011), - [anon_sym_export] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4011), - [anon_sym_namespace] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4079), - [anon_sym_let] = ACTIONS(4011), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4017), - [anon_sym_new] = ACTIONS(4019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4078), + [anon_sym_let] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4021), - [anon_sym_readonly] = ACTIONS(4023), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_declare] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4027), - [anon_sym_private] = ACTIONS(4027), - [anon_sym_protected] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4029), - [anon_sym_module] = ACTIONS(4011), - [anon_sym_any] = ACTIONS(4011), - [anon_sym_number] = ACTIONS(4011), - [anon_sym_boolean] = ACTIONS(4011), - [anon_sym_string] = ACTIONS(4011), - [anon_sym_symbol] = ACTIONS(4011), - [anon_sym_object] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_readonly] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(4104), + [anon_sym_set] = ACTIONS(4104), + [anon_sym_declare] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_any] = ACTIONS(4092), + [anon_sym_number] = ACTIONS(4092), + [anon_sym_boolean] = ACTIONS(4092), + [anon_sym_string] = ACTIONS(4092), + [anon_sym_symbol] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1735] = { - [sym_export_statement] = STATE(4795), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1735), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4795), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4795), - [sym_property_signature] = STATE(4795), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4795), - [sym_index_signature] = STATE(4795), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4011), - [anon_sym_export] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4011), - [anon_sym_namespace] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(4081), - [anon_sym_RBRACE] = ACTIONS(4083), - [anon_sym_let] = ACTIONS(4011), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(4085), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4017), - [anon_sym_new] = ACTIONS(4019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(4038), + [anon_sym_export] = ACTIONS(4040), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4038), + [anon_sym_namespace] = ACTIONS(4038), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_let] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4044), + [anon_sym_new] = ACTIONS(4046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4021), - [anon_sym_readonly] = ACTIONS(4023), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_declare] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4027), - [anon_sym_private] = ACTIONS(4027), - [anon_sym_protected] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4029), - [anon_sym_module] = ACTIONS(4011), - [anon_sym_any] = ACTIONS(4011), - [anon_sym_number] = ACTIONS(4011), - [anon_sym_boolean] = ACTIONS(4011), - [anon_sym_string] = ACTIONS(4011), - [anon_sym_symbol] = ACTIONS(4011), - [anon_sym_object] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4087), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_readonly] = ACTIONS(4050), + [anon_sym_get] = ACTIONS(4052), + [anon_sym_set] = ACTIONS(4052), + [anon_sym_declare] = ACTIONS(4038), + [anon_sym_public] = ACTIONS(4054), + [anon_sym_private] = ACTIONS(4054), + [anon_sym_protected] = ACTIONS(4054), + [anon_sym_override] = ACTIONS(4056), + [anon_sym_module] = ACTIONS(4038), + [anon_sym_any] = ACTIONS(4038), + [anon_sym_number] = ACTIONS(4038), + [anon_sym_boolean] = ACTIONS(4038), + [anon_sym_string] = ACTIONS(4038), + [anon_sym_symbol] = ACTIONS(4038), + [anon_sym_object] = ACTIONS(4038), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1736] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5707), + [sym_string] = STATE(4081), [sym_comment] = STATE(1736), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4089), - [anon_sym_export] = ACTIONS(4091), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4089), - [anon_sym_namespace] = ACTIONS(4089), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4079), - [anon_sym_let] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4093), - [anon_sym_new] = ACTIONS(4095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5707), + [sym_pair] = STATE(5707), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(3978), + [anon_sym_export] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(3978), + [anon_sym_namespace] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(3996), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4097), - [anon_sym_readonly] = ACTIONS(4099), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_declare] = ACTIONS(4089), - [anon_sym_public] = ACTIONS(4103), - [anon_sym_private] = ACTIONS(4103), - [anon_sym_protected] = ACTIONS(4103), - [anon_sym_override] = ACTIONS(4105), - [anon_sym_module] = ACTIONS(4089), - [anon_sym_any] = ACTIONS(4089), - [anon_sym_number] = ACTIONS(4089), - [anon_sym_boolean] = ACTIONS(4089), - [anon_sym_string] = ACTIONS(4089), - [anon_sym_symbol] = ACTIONS(4089), - [anon_sym_object] = ACTIONS(4089), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_readonly] = ACTIONS(4006), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4008), + [anon_sym_declare] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(4010), + [anon_sym_private] = ACTIONS(4010), + [anon_sym_protected] = ACTIONS(4010), + [anon_sym_override] = ACTIONS(4012), + [anon_sym_module] = ACTIONS(3978), + [anon_sym_any] = ACTIONS(3978), + [anon_sym_number] = ACTIONS(3978), + [anon_sym_boolean] = ACTIONS(3978), + [anon_sym_string] = ACTIONS(3978), + [anon_sym_symbol] = ACTIONS(3978), + [anon_sym_object] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1737] = { - [sym_export_statement] = STATE(4827), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(5628), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(5706), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4839), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(5631), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(5632), + [sym_string] = STATE(4081), [sym_comment] = STATE(1737), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(5628), - [sym_method_definition] = STATE(5706), - [sym_pair] = STATE(5706), - [sym_pair_pattern] = STATE(5628), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4827), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4827), - [sym_property_signature] = STATE(4827), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4827), - [sym_index_signature] = STATE(4827), - [aux_sym_export_statement_repeat1] = STATE(5528), - [aux_sym_object_repeat1] = STATE(5711), - [aux_sym_object_pattern_repeat1] = STATE(5634), - [sym_identifier] = ACTIONS(4011), - [anon_sym_export] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4011), - [anon_sym_namespace] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4075), - [anon_sym_let] = ACTIONS(4011), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4017), - [anon_sym_new] = ACTIONS(4019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(5631), + [sym_method_definition] = STATE(5632), + [sym_pair] = STATE(5632), + [sym_pair_pattern] = STATE(5631), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4839), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4839), + [sym_property_signature] = STATE(4839), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4839), + [sym_index_signature] = STATE(4839), + [aux_sym_export_statement_repeat1] = STATE(5530), + [aux_sym_object_repeat1] = STATE(5652), + [aux_sym_object_pattern_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(4058), + [anon_sym_export] = ACTIONS(4060), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4058), + [anon_sym_namespace] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_let] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4064), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4021), - [anon_sym_readonly] = ACTIONS(4023), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_declare] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4027), - [anon_sym_private] = ACTIONS(4027), - [anon_sym_protected] = ACTIONS(4027), - [anon_sym_override] = ACTIONS(4029), - [anon_sym_module] = ACTIONS(4011), - [anon_sym_any] = ACTIONS(4011), - [anon_sym_number] = ACTIONS(4011), - [anon_sym_boolean] = ACTIONS(4011), - [anon_sym_string] = ACTIONS(4011), - [anon_sym_symbol] = ACTIONS(4011), - [anon_sym_object] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_readonly] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4072), + [anon_sym_set] = ACTIONS(4072), + [anon_sym_declare] = ACTIONS(4058), + [anon_sym_public] = ACTIONS(4074), + [anon_sym_private] = ACTIONS(4074), + [anon_sym_protected] = ACTIONS(4074), + [anon_sym_override] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4058), + [anon_sym_any] = ACTIONS(4058), + [anon_sym_number] = ACTIONS(4058), + [anon_sym_boolean] = ACTIONS(4058), + [anon_sym_string] = ACTIONS(4058), + [anon_sym_symbol] = ACTIONS(4058), + [anon_sym_object] = ACTIONS(4058), + [anon_sym_abstract] = ACTIONS(4014), + [anon_sym_PIPE_RBRACE] = ACTIONS(4016), [sym_html_comment] = ACTIONS(5), }, [1738] = { - [sym_variable_declarator] = STATE(5585), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4506), + [sym_variable_declarator] = STATE(5587), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4520), [sym_comment] = STATE(1738), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1739] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(1064), + [sym_string] = STATE(1402), [sym_comment] = STATE(1739), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5406), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4113), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__module] = STATE(1526), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1740] = { - [sym_variable_declarator] = STATE(5585), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4506), + [sym_nested_identifier] = STATE(1064), + [sym_string] = STATE(1402), [sym_comment] = STATE(1740), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(1526), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1741] = { - [sym_nested_identifier] = STATE(1197), - [sym_string] = STATE(1317), + [sym_nested_identifier] = STATE(414), + [sym_string] = STATE(416), [sym_comment] = STATE(1741), - [sym__module] = STATE(1559), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(456), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1742] = { - [sym_nested_identifier] = STATE(350), - [sym_string] = STATE(349), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1742), - [sym__module] = STATE(434), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4123), - [anon_sym_SQUOTE] = ACTIONS(4125), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5485), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(4132), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1743] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(414), + [sym_string] = STATE(416), [sym_comment] = STATE(1743), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5504), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4127), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__module] = STATE(456), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1744] = { - [sym_nested_identifier] = STATE(350), - [sym_string] = STATE(349), + [sym_variable_declarator] = STATE(5587), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4520), [sym_comment] = STATE(1744), - [sym__module] = STATE(434), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4123), - [anon_sym_SQUOTE] = ACTIONS(4125), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1745] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(1064), + [sym_string] = STATE(1402), [sym_comment] = STATE(1745), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5454), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__module] = STATE(1526), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1746] = { - [sym_nested_identifier] = STATE(1197), - [sym_string] = STATE(1317), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1746), - [sym__module] = STATE(1559), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5595), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1747] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1747), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5481), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4131), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5456), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1748] = { - [sym_nested_identifier] = STATE(350), - [sym_string] = STATE(349), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1748), - [sym__module] = STATE(434), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4123), - [anon_sym_SQUOTE] = ACTIONS(4125), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5504), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(4138), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1749] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_variable_declarator] = STATE(5587), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4520), [sym_comment] = STATE(1749), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5591), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1750] = { - [sym_nested_identifier] = STATE(1197), - [sym_string] = STATE(1317), + [sym_nested_identifier] = STATE(414), + [sym_string] = STATE(416), [sym_comment] = STATE(1750), - [sym__module] = STATE(1559), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(456), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1751] = { - [sym_variable_declarator] = STATE(5585), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4506), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1751), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5408), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(4140), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1752] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1752), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2382), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3838), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1753] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1753), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5328), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2335), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1754] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1754), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4084), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5341), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1755] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1755), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4101), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2820), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1756] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1756), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5457), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2818), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1757] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1757), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5522), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(5827), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(2434), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1758] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1758), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5168), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2433), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1759] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1759), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2836), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(6080), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(4219), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1760] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1760), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2351), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2435), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1761] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1761), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2404), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2426), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1762] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1762), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5442), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2427), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1763] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1763), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4094), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5223), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1764] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1764), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5437), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(6080), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(4217), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1765] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1765), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5458), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4216), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1766] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1766), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5221), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4212), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1767] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1767), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5279), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4097), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1768] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1768), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(5910), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(2868), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5453), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1769] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1769), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(5910), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(2866), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5121), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1770] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1770), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5451), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(5827), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(2437), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1771] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1771), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5847), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(4113), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4211), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1772] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1772), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2865), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3890), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1773] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1773), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3811), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3889), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1774] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1774), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2861), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3896), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1775] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1775), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5597), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3812), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1776] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1776), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2860), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3861), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1777] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1777), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4360), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5486), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1778] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1778), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3790), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4109), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1779] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1779), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5026), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5083), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1780] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1780), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2433), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5036), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1781] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1781), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2971), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3813), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1782] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1782), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2974), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(4143), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4119), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1783] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1783), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2972), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4858), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1784] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1784), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2444), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5150), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1785] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1785), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5404), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2786), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1786] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1786), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4319), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2423), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1787] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1787), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5075), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5406), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1788] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1788), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5413), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5602), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1789] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1789), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2788), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1790] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1790), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5148), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4161), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1791] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1791), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5400), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4271), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1792] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1792), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5399), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2419), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1793] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1793), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4359), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5402), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1794] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1794), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4358), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5401), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1795] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1795), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2886), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4316), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1796] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1796), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5847), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(4104), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5355), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1797] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1797), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4096), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4307), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1798] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1798), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4326), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4856), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1799] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1799), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3817), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2929), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1800] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1800), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4337), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4345), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1801] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1801), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2406), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5796), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3793), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1802] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1802), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3783), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5097), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1803] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1803), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2420), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4969), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1804] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1804), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3890), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4225), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1805] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1805), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4343), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4224), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1806] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1806), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4345), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3860), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1807] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1807), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3810), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4065), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1808] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1808), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5495), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5333), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1809] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1809), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5593), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5394), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1810] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1810), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5796), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(5101), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(5486), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4110), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1811] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1811), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2880), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4815), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1812] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1812), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5796), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3861), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4115), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1813] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1813), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4080), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1814] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1814), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4780), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4117), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1815] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1815), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2320), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5796), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(5103), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(5488), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1816] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1816), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5584), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5844), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(4116), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1817] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1817), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5844), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(4057), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1818] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1818), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5093), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5586), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1819] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1819), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(4776), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5524), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1820] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1820), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2990), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5325), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1821] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1821), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2323), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3875), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1822] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1822), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4106), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5274), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1823] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1823), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2832), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5222), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1824] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1824), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5600), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2438), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1825] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1825), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4059), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5796), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3802), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1826] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1826), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4060), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4066), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1827] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1827), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4857), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2359), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1828] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1828), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4328), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4357), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1829] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1829), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5796), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3863), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4356), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1830] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1830), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4108), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3840), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1831] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1831), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2949), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1832] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1832), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2920), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2344), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1833] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1833), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5339), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1834] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1834), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3791), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4355), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1835] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1835), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2923), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2343), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1836] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1836), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4069), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3851), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1837] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1837), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3866), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4064), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1838] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1838), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4323), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2843), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1839] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1839), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4322), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2851), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1840] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1840), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3858), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4087), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1841] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1841), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3792), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3839), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1842] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1842), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5484), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5599), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1843] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1843), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4213), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4058), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1844] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1844), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3876), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(3794), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1845] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1845), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(3865), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5028), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1846] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(2848), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1846), - [sym_formal_parameters] = STATE(7140), - [sym_nested_type_identifier] = STATE(2713), - [sym__type] = STATE(2881), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2839), - [sym_template_literal_type] = STATE(2838), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2838), - [sym_generic_type] = STATE(2838), - [sym_type_query] = STATE(2838), - [sym_index_type_query] = STATE(2838), - [sym_lookup_type] = STATE(2838), - [sym_literal_type] = STATE(2838), - [sym__number] = STATE(2837), - [sym_existential_type] = STATE(2838), - [sym_flow_maybe_type] = STATE(2838), - [sym_parenthesized_type] = STATE(2838), - [sym_predefined_type] = STATE(2838), - [sym_object_type] = STATE(2838), - [sym_type_parameters] = STATE(6545), - [sym_array_type] = STATE(2838), - [sym_tuple_type] = STATE(2838), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2838), - [sym_intersection_type] = STATE(2838), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2965), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1847] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1847), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5271), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5148), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1848] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1848), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4214), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4343), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1849] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1849), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2429), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2375), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1850] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1850), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2328), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2400), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1851] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1851), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2430), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1852] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(6978), + [sym_string] = STATE(2327), [sym_comment] = STATE(1852), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4218), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7147), + [sym_nested_type_identifier] = STATE(2314), + [sym__type] = STATE(2374), + [sym_constructor_type] = STATE(2331), + [sym__primary_type] = STATE(2334), + [sym_template_literal_type] = STATE(2336), + [sym_infer_type] = STATE(2331), + [sym_conditional_type] = STATE(2336), + [sym_generic_type] = STATE(2336), + [sym_type_query] = STATE(2336), + [sym_index_type_query] = STATE(2336), + [sym_lookup_type] = STATE(2336), + [sym_literal_type] = STATE(2336), + [sym__number] = STATE(2353), + [sym_existential_type] = STATE(2336), + [sym_flow_maybe_type] = STATE(2336), + [sym_parenthesized_type] = STATE(2336), + [sym_predefined_type] = STATE(2336), + [sym_object_type] = STATE(2336), + [sym_type_parameters] = STATE(6899), + [sym_array_type] = STATE(2336), + [sym_tuple_type] = STATE(2336), + [sym_readonly_type] = STATE(2331), + [sym_union_type] = STATE(2336), + [sym_intersection_type] = STATE(2336), + [sym_function_type] = STATE(2331), + [sym_identifier] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_typeof] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_PIPE] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3956), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_number] = ACTIONS(3960), + [sym_this] = ACTIONS(4144), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_null] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [anon_sym_readonly] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3966), + [anon_sym_any] = ACTIONS(3956), + [anon_sym_number] = ACTIONS(3956), + [anon_sym_boolean] = ACTIONS(3956), + [anon_sym_string] = ACTIONS(3956), + [anon_sym_symbol] = ACTIONS(3956), + [anon_sym_object] = ACTIONS(3956), + [anon_sym_abstract] = ACTIONS(3968), + [anon_sym_infer] = ACTIONS(3972), + [anon_sym_keyof] = ACTIONS(3974), + [anon_sym_unique] = ACTIONS(3976), + [anon_sym_unknown] = ACTIONS(3956), + [anon_sym_never] = ACTIONS(3956), + [anon_sym_LBRACE_PIPE] = ACTIONS(3938), [sym_html_comment] = ACTIONS(5), }, [1853] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1853), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5310), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5491), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1854] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1854), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(6076), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(4219), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2863), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1855] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1855), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(6076), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(4221), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4063), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1856] = { - [sym_nested_identifier] = STATE(7252), - [sym_string] = STATE(3874), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1856), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(3769), - [sym__type] = STATE(5394), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(3838), - [sym_template_literal_type] = STATE(3894), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(3894), - [sym_generic_type] = STATE(3894), - [sym_type_query] = STATE(3894), - [sym_index_type_query] = STATE(3894), - [sym_lookup_type] = STATE(3894), - [sym_literal_type] = STATE(3894), - [sym__number] = STATE(3889), - [sym_existential_type] = STATE(3894), - [sym_flow_maybe_type] = STATE(3894), - [sym_parenthesized_type] = STATE(3894), - [sym_predefined_type] = STATE(3894), - [sym_object_type] = STATE(3894), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(3894), - [sym_tuple_type] = STATE(3894), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(3894), - [sym_intersection_type] = STATE(3894), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_any] = ACTIONS(205), - [anon_sym_number] = ACTIONS(205), - [anon_sym_boolean] = ACTIONS(205), - [anon_sym_string] = ACTIONS(205), - [anon_sym_symbol] = ACTIONS(205), - [anon_sym_object] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(201), - [anon_sym_unique] = ACTIONS(203), - [anon_sym_unknown] = ACTIONS(205), - [anon_sym_never] = ACTIONS(205), - [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4103), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1857] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1857), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5034), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2864), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1858] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(4093), [sym_comment] = STATE(1858), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4087), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7041), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5282), + [sym_constructor_type] = STATE(4072), + [sym__primary_type] = STATE(4071), + [sym_template_literal_type] = STATE(4070), + [sym_infer_type] = STATE(4072), + [sym_conditional_type] = STATE(4070), + [sym_generic_type] = STATE(4070), + [sym_type_query] = STATE(4070), + [sym_index_type_query] = STATE(4070), + [sym_lookup_type] = STATE(4070), + [sym_literal_type] = STATE(4070), + [sym__number] = STATE(4069), + [sym_existential_type] = STATE(4070), + [sym_flow_maybe_type] = STATE(4070), + [sym_parenthesized_type] = STATE(4070), + [sym_predefined_type] = STATE(4070), + [sym_object_type] = STATE(4070), + [sym_type_parameters] = STATE(6779), + [sym_array_type] = STATE(4070), + [sym_tuple_type] = STATE(4070), + [sym_readonly_type] = STATE(4072), + [sym_union_type] = STATE(4070), + [sym_intersection_type] = STATE(4070), + [sym_function_type] = STATE(4072), + [sym_identifier] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(1386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_undefined] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1378), + [anon_sym_infer] = ACTIONS(1380), + [anon_sym_keyof] = ACTIONS(1382), + [anon_sym_unique] = ACTIONS(1384), + [anon_sym_unknown] = ACTIONS(1386), + [anon_sym_never] = ACTIONS(1386), + [anon_sym_LBRACE_PIPE] = ACTIONS(1388), [sym_html_comment] = ACTIONS(5), }, [1859] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1859), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2383), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5442), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1860] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1860), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2437), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5459), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1861] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1861), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(5823), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(2438), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5439), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1862] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1862), - [sym_formal_parameters] = STATE(7149), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(2431), - [sym_constructor_type] = STATE(2330), - [sym__primary_type] = STATE(2331), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(2330), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6895), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(2330), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(2330), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5414), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1863] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1863), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4203), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(4826), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1864] = { - [sym_nested_identifier] = STATE(6975), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1864), - [sym_formal_parameters] = STATE(7251), - [sym_nested_type_identifier] = STATE(2315), - [sym__type] = STATE(5823), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(2442), - [sym_template_literal_type] = STATE(2332), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(2332), - [sym_generic_type] = STATE(2332), - [sym_type_query] = STATE(2332), - [sym_index_type_query] = STATE(2332), - [sym_lookup_type] = STATE(2332), - [sym_literal_type] = STATE(2332), - [sym__number] = STATE(2333), - [sym_existential_type] = STATE(2332), - [sym_flow_maybe_type] = STATE(2332), - [sym_parenthesized_type] = STATE(2332), - [sym_predefined_type] = STATE(2332), - [sym_object_type] = STATE(2332), - [sym_type_parameters] = STATE(6480), - [sym_array_type] = STATE(2332), - [sym_tuple_type] = STATE(2332), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(2332), - [sym_intersection_type] = STATE(2332), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(197), - [anon_sym_infer] = ACTIONS(199), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2868), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1865] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1865), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4969), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(5914), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(2869), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1866] = { - [sym_nested_identifier] = STATE(7012), - [sym_string] = STATE(4254), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1866), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(4100), - [sym__type] = STATE(4224), - [sym_constructor_type] = STATE(4299), - [sym__primary_type] = STATE(4341), - [sym_template_literal_type] = STATE(4320), - [sym_infer_type] = STATE(4299), - [sym_conditional_type] = STATE(4320), - [sym_generic_type] = STATE(4320), - [sym_type_query] = STATE(4320), - [sym_index_type_query] = STATE(4320), - [sym_lookup_type] = STATE(4320), - [sym_literal_type] = STATE(4320), - [sym__number] = STATE(4318), - [sym_existential_type] = STATE(4320), - [sym_flow_maybe_type] = STATE(4320), - [sym_parenthesized_type] = STATE(4320), - [sym_predefined_type] = STATE(4320), - [sym_object_type] = STATE(4320), - [sym_type_parameters] = STATE(6906), - [sym_array_type] = STATE(4320), - [sym_tuple_type] = STATE(4320), - [sym_readonly_type] = STATE(4299), - [sym_union_type] = STATE(4320), - [sym_intersection_type] = STATE(4320), - [sym_function_type] = STATE(4299), - [sym_identifier] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_typeof] = ACTIONS(3753), - [anon_sym_const] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_DQUOTE] = ACTIONS(3761), - [anon_sym_SQUOTE] = ACTIONS(3763), - [anon_sym_new] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3773), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_number] = ACTIONS(3777), - [sym_this] = ACTIONS(4147), - [sym_true] = ACTIONS(3777), - [sym_false] = ACTIONS(3777), - [sym_null] = ACTIONS(3777), - [sym_undefined] = ACTIONS(3777), - [anon_sym_readonly] = ACTIONS(3781), - [anon_sym_QMARK] = ACTIONS(3783), - [anon_sym_any] = ACTIONS(3773), - [anon_sym_number] = ACTIONS(3773), - [anon_sym_boolean] = ACTIONS(3773), - [anon_sym_string] = ACTIONS(3773), - [anon_sym_symbol] = ACTIONS(3773), - [anon_sym_object] = ACTIONS(3773), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_infer] = ACTIONS(3789), - [anon_sym_keyof] = ACTIONS(3791), - [anon_sym_unique] = ACTIONS(3793), - [anon_sym_unknown] = ACTIONS(3773), - [anon_sym_never] = ACTIONS(3773), - [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(5914), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(2871), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1867] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1867), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5145), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5596), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1868] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1868), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5355), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2971), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1869] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1869), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5340), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2967), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1870] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1870), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5336), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4326), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1871] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7211), + [sym_string] = STATE(2826), [sym_comment] = STATE(1871), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5119), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7144), + [sym_nested_type_identifier] = STATE(2693), + [sym__type] = STATE(2966), + [sym_constructor_type] = STATE(2847), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2845), + [sym_infer_type] = STATE(2847), + [sym_conditional_type] = STATE(2845), + [sym_generic_type] = STATE(2845), + [sym_type_query] = STATE(2845), + [sym_index_type_query] = STATE(2845), + [sym_lookup_type] = STATE(2845), + [sym_literal_type] = STATE(2845), + [sym__number] = STATE(2841), + [sym_existential_type] = STATE(2845), + [sym_flow_maybe_type] = STATE(2845), + [sym_parenthesized_type] = STATE(2845), + [sym_predefined_type] = STATE(2845), + [sym_object_type] = STATE(2845), + [sym_type_parameters] = STATE(6549), + [sym_array_type] = STATE(2845), + [sym_tuple_type] = STATE(2845), + [sym_readonly_type] = STATE(2847), + [sym_union_type] = STATE(2845), + [sym_intersection_type] = STATE(2845), + [sym_function_type] = STATE(2847), + [sym_identifier] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(3896), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_PIPE] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3912), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3914), + [sym_number] = ACTIONS(3916), + [sym_this] = ACTIONS(4148), + [sym_true] = ACTIONS(3916), + [sym_false] = ACTIONS(3916), + [sym_null] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [anon_sym_readonly] = ACTIONS(3920), + [anon_sym_QMARK] = ACTIONS(3922), + [anon_sym_any] = ACTIONS(3912), + [anon_sym_number] = ACTIONS(3912), + [anon_sym_boolean] = ACTIONS(3912), + [anon_sym_string] = ACTIONS(3912), + [anon_sym_symbol] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3924), + [anon_sym_infer] = ACTIONS(3928), + [anon_sym_keyof] = ACTIONS(3930), + [anon_sym_unique] = ACTIONS(3932), + [anon_sym_unknown] = ACTIONS(3912), + [anon_sym_never] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3894), [sym_html_comment] = ACTIONS(5), }, [1872] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7016), + [sym_string] = STATE(4183), [sym_comment] = STATE(1872), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(5219), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7156), + [sym_nested_type_identifier] = STATE(4098), + [sym__type] = STATE(4325), + [sym_constructor_type] = STATE(4174), + [sym__primary_type] = STATE(4173), + [sym_template_literal_type] = STATE(4172), + [sym_infer_type] = STATE(4174), + [sym_conditional_type] = STATE(4172), + [sym_generic_type] = STATE(4172), + [sym_type_query] = STATE(4172), + [sym_index_type_query] = STATE(4172), + [sym_lookup_type] = STATE(4172), + [sym_literal_type] = STATE(4172), + [sym__number] = STATE(4171), + [sym_existential_type] = STATE(4172), + [sym_flow_maybe_type] = STATE(4172), + [sym_parenthesized_type] = STATE(4172), + [sym_predefined_type] = STATE(4172), + [sym_object_type] = STATE(4172), + [sym_type_parameters] = STATE(6910), + [sym_array_type] = STATE(4172), + [sym_tuple_type] = STATE(4172), + [sym_readonly_type] = STATE(4174), + [sym_union_type] = STATE(4172), + [sym_intersection_type] = STATE(4172), + [sym_function_type] = STATE(4174), + [sym_identifier] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3748), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_PIPE] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(3768), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3770), + [sym_number] = ACTIONS(3772), + [sym_this] = ACTIONS(4152), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_null] = ACTIONS(3772), + [sym_undefined] = ACTIONS(3772), + [anon_sym_readonly] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3778), + [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_abstract] = ACTIONS(3780), + [anon_sym_infer] = ACTIONS(3784), + [anon_sym_keyof] = ACTIONS(3786), + [anon_sym_unique] = ACTIONS(3788), + [anon_sym_unknown] = ACTIONS(3768), + [anon_sym_never] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3746), [sym_html_comment] = ACTIONS(5), }, [1873] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1873), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4055), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5170), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1874] = { - [sym_nested_identifier] = STATE(7047), - [sym_string] = STATE(4058), + [sym_nested_identifier] = STATE(7255), + [sym_string] = STATE(3790), [sym_comment] = STATE(1874), - [sym_formal_parameters] = STATE(7122), - [sym_nested_type_identifier] = STATE(3949), - [sym__type] = STATE(4099), - [sym_constructor_type] = STATE(4076), - [sym__primary_type] = STATE(4054), - [sym_template_literal_type] = STATE(4103), - [sym_infer_type] = STATE(4076), - [sym_conditional_type] = STATE(4103), - [sym_generic_type] = STATE(4103), - [sym_type_query] = STATE(4103), - [sym_index_type_query] = STATE(4103), - [sym_lookup_type] = STATE(4103), - [sym_literal_type] = STATE(4103), - [sym__number] = STATE(4109), - [sym_existential_type] = STATE(4103), - [sym_flow_maybe_type] = STATE(4103), - [sym_parenthesized_type] = STATE(4103), - [sym_predefined_type] = STATE(4103), - [sym_object_type] = STATE(4103), - [sym_type_parameters] = STATE(6775), - [sym_array_type] = STATE(4103), - [sym_tuple_type] = STATE(4103), - [sym_readonly_type] = STATE(4076), - [sym_union_type] = STATE(4103), - [sym_intersection_type] = STATE(4103), - [sym_function_type] = STATE(4076), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_number] = ACTIONS(1377), - [anon_sym_boolean] = ACTIONS(1377), - [anon_sym_string] = ACTIONS(1377), - [anon_sym_symbol] = ACTIONS(1377), - [anon_sym_object] = ACTIONS(1377), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_infer] = ACTIONS(1371), - [anon_sym_keyof] = ACTIONS(1373), - [anon_sym_unique] = ACTIONS(1375), - [anon_sym_unknown] = ACTIONS(1377), - [anon_sym_never] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_formal_parameters] = STATE(7254), + [sym_nested_type_identifier] = STATE(3762), + [sym__type] = STATE(5460), + [sym_constructor_type] = STATE(3888), + [sym__primary_type] = STATE(3885), + [sym_template_literal_type] = STATE(3882), + [sym_infer_type] = STATE(3888), + [sym_conditional_type] = STATE(3882), + [sym_generic_type] = STATE(3882), + [sym_type_query] = STATE(3882), + [sym_index_type_query] = STATE(3882), + [sym_lookup_type] = STATE(3882), + [sym_literal_type] = STATE(3882), + [sym__number] = STATE(3879), + [sym_existential_type] = STATE(3882), + [sym_flow_maybe_type] = STATE(3882), + [sym_parenthesized_type] = STATE(3882), + [sym_predefined_type] = STATE(3882), + [sym_object_type] = STATE(3882), + [sym_type_parameters] = STATE(6485), + [sym_array_type] = STATE(3882), + [sym_tuple_type] = STATE(3882), + [sym_readonly_type] = STATE(3888), + [sym_union_type] = STATE(3882), + [sym_intersection_type] = STATE(3882), + [sym_function_type] = STATE(3888), + [sym_identifier] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_typeof] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_void] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [sym_this] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_undefined] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(209), + [anon_sym_number] = ACTIONS(209), + [anon_sym_boolean] = ACTIONS(209), + [anon_sym_string] = ACTIONS(209), + [anon_sym_symbol] = ACTIONS(209), + [anon_sym_object] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(203), + [anon_sym_keyof] = ACTIONS(205), + [anon_sym_unique] = ACTIONS(207), + [anon_sym_unknown] = ACTIONS(209), + [anon_sym_never] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [1875] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1875), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1876] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1876), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1117), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(1110), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1877] = { - [sym_export_statement] = STATE(4767), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(6535), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(6537), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4847), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(6554), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(6562), + [sym_string] = STATE(4081), [sym_comment] = STATE(1877), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(6535), - [sym_method_definition] = STATE(6537), - [sym_pair] = STATE(6537), - [sym_pair_pattern] = STATE(6535), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4767), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4767), - [sym_property_signature] = STATE(4767), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4767), - [sym_index_signature] = STATE(4767), - [aux_sym_export_statement_repeat1] = STATE(5528), - [sym_identifier] = ACTIONS(4153), - [anon_sym_export] = ACTIONS(4155), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4153), - [anon_sym_namespace] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(4157), - [anon_sym_RBRACE] = ACTIONS(4157), - [anon_sym_let] = ACTIONS(4153), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(6554), + [sym_method_definition] = STATE(6562), + [sym_pair] = STATE(6562), + [sym_pair_pattern] = STATE(6554), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4847), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4847), + [sym_property_signature] = STATE(4847), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4847), + [sym_index_signature] = STATE(4847), + [aux_sym_export_statement_repeat1] = STATE(5530), + [sym_identifier] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_new] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_readonly] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4168), - [anon_sym_set] = ACTIONS(4168), - [anon_sym_declare] = ACTIONS(4153), - [anon_sym_public] = ACTIONS(4170), - [anon_sym_private] = ACTIONS(4170), - [anon_sym_protected] = ACTIONS(4170), - [anon_sym_override] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4153), - [anon_sym_any] = ACTIONS(4153), - [anon_sym_number] = ACTIONS(4153), - [anon_sym_boolean] = ACTIONS(4153), - [anon_sym_string] = ACTIONS(4153), - [anon_sym_symbol] = ACTIONS(4153), - [anon_sym_object] = ACTIONS(4153), - [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_static] = ACTIONS(4171), + [anon_sym_readonly] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4175), + [anon_sym_set] = ACTIONS(4175), + [anon_sym_declare] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4177), + [anon_sym_private] = ACTIONS(4177), + [anon_sym_protected] = ACTIONS(4177), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_any] = ACTIONS(4160), + [anon_sym_number] = ACTIONS(4160), + [anon_sym_boolean] = ACTIONS(4160), + [anon_sym_string] = ACTIONS(4160), + [anon_sym_symbol] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4014), [sym_html_comment] = ACTIONS(5), }, [1878] = { - [sym_export_statement] = STATE(4825), - [sym_object_pattern] = STATE(4155), - [sym_object_assignment_pattern] = STATE(6535), - [sym_array_pattern] = STATE(4155), - [sym__call_signature] = STATE(5011), - [sym__destructuring_pattern] = STATE(7205), - [sym_spread_element] = STATE(6537), - [sym_string] = STATE(4056), + [sym_export_statement] = STATE(4676), + [sym_object_pattern] = STATE(4170), + [sym_object_assignment_pattern] = STATE(6554), + [sym_array_pattern] = STATE(4170), + [sym__call_signature] = STATE(5014), + [sym__destructuring_pattern] = STATE(7208), + [sym_spread_element] = STATE(6562), + [sym_string] = STATE(4081), [sym_comment] = STATE(1878), - [sym_decorator] = STATE(5599), - [sym_formal_parameters] = STATE(4119), - [sym_rest_pattern] = STATE(6535), - [sym_method_definition] = STATE(6537), - [sym_pair] = STATE(6537), - [sym_pair_pattern] = STATE(6535), - [sym__property_name] = STATE(3977), - [sym_computed_property_name] = STATE(4056), - [sym_method_signature] = STATE(4825), - [sym_accessibility_modifier] = STATE(3610), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4825), - [sym_property_signature] = STATE(4825), - [sym_type_parameters] = STATE(6380), - [sym_construct_signature] = STATE(4825), - [sym_index_signature] = STATE(4825), - [aux_sym_export_statement_repeat1] = STATE(5528), - [sym_identifier] = ACTIONS(4153), - [anon_sym_export] = ACTIONS(4155), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4153), - [anon_sym_namespace] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(4157), - [anon_sym_RBRACE] = ACTIONS(4157), - [anon_sym_let] = ACTIONS(4153), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), + [sym_decorator] = STATE(5601), + [sym_formal_parameters] = STATE(4142), + [sym_rest_pattern] = STATE(6554), + [sym_method_definition] = STATE(6562), + [sym_pair] = STATE(6562), + [sym_pair_pattern] = STATE(6554), + [sym__property_name] = STATE(3973), + [sym_computed_property_name] = STATE(4081), + [sym_method_signature] = STATE(4676), + [sym_accessibility_modifier] = STATE(3574), + [sym_override_modifier] = STATE(3639), + [sym_call_signature] = STATE(4676), + [sym_property_signature] = STATE(4676), + [sym_type_parameters] = STATE(6467), + [sym_construct_signature] = STATE(4676), + [sym_index_signature] = STATE(4676), + [aux_sym_export_statement_repeat1] = STATE(5530), + [sym_identifier] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_new] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(1980), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(4002), + [sym_private_property_identifier] = ACTIONS(4002), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_readonly] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4168), - [anon_sym_set] = ACTIONS(4168), - [anon_sym_declare] = ACTIONS(4153), - [anon_sym_public] = ACTIONS(4170), - [anon_sym_private] = ACTIONS(4170), - [anon_sym_protected] = ACTIONS(4170), - [anon_sym_override] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4153), - [anon_sym_any] = ACTIONS(4153), - [anon_sym_number] = ACTIONS(4153), - [anon_sym_boolean] = ACTIONS(4153), - [anon_sym_string] = ACTIONS(4153), - [anon_sym_symbol] = ACTIONS(4153), - [anon_sym_object] = ACTIONS(4153), - [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_static] = ACTIONS(4171), + [anon_sym_readonly] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4175), + [anon_sym_set] = ACTIONS(4175), + [anon_sym_declare] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4177), + [anon_sym_private] = ACTIONS(4177), + [anon_sym_protected] = ACTIONS(4177), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_any] = ACTIONS(4160), + [anon_sym_number] = ACTIONS(4160), + [anon_sym_boolean] = ACTIONS(4160), + [anon_sym_string] = ACTIONS(4160), + [anon_sym_symbol] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4014), [sym_html_comment] = ACTIONS(5), }, [1879] = { - [sym_nested_identifier] = STATE(2312), - [sym_string] = STATE(2309), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1879), - [sym__module] = STATE(2636), - [sym_identifier] = ACTIONS(4174), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(126), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1880] = { - [sym_nested_identifier] = STATE(972), - [sym_string] = STATE(1053), + [sym_variable_declarator] = STATE(5561), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4229), [sym_comment] = STATE(1880), - [sym__module] = STATE(1366), - [sym_identifier] = ACTIONS(4176), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4178), - [anon_sym_SQUOTE] = ACTIONS(4180), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(4181), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1881] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_variable_declarator] = STATE(5587), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4520), [sym_comment] = STATE(1881), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1882] = { - [sym_nested_identifier] = STATE(2312), - [sym_string] = STATE(2309), + [sym_nested_identifier] = STATE(342), + [sym_string] = STATE(335), [sym_comment] = STATE(1882), - [sym__module] = STATE(2636), - [sym_identifier] = ACTIONS(4174), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(426), + [sym_identifier] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4185), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1883] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_variable_declarator] = STATE(5566), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4520), [sym_comment] = STATE(1883), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1884] = { - [sym_nested_identifier] = STATE(325), - [sym_string] = STATE(327), + [sym_variable_declarator] = STATE(5380), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4520), [sym_comment] = STATE(1884), - [sym__module] = STATE(366), - [sym_identifier] = ACTIONS(4182), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4184), - [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1885] = { - [sym_variable_declarator] = STATE(5383), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4506), + [sym_nested_identifier] = STATE(2299), + [sym_string] = STATE(2307), [sym_comment] = STATE(1885), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2542), + [sym_identifier] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1886] = { - [sym_variable_declarator] = STATE(5559), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4175), + [sym_variable_declarator] = STATE(5393), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4520), [sym_comment] = STATE(1886), - [sym_identifier] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1233), - [anon_sym_of] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1887] = { - [sym_nested_identifier] = STATE(2312), - [sym_string] = STATE(2309), + [sym_nested_identifier] = STATE(317), + [sym_string] = STATE(318), [sym_comment] = STATE(1887), - [sym__module] = STATE(2636), - [sym_identifier] = ACTIONS(4174), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(408), + [sym_identifier] = ACTIONS(4191), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1888] = { - [sym_nested_identifier] = STATE(2312), - [sym_string] = STATE(2309), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1888), - [sym__module] = STATE(2636), - [sym_identifier] = ACTIONS(4174), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1233), - [anon_sym_of] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1889] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(1064), + [sym_string] = STATE(1402), [sym_comment] = STATE(1889), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(1526), + [sym_identifier] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1890] = { - [sym_variable_declarator] = STATE(5565), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4506), + [sym_nested_identifier] = STATE(943), + [sym_string] = STATE(983), [sym_comment] = STATE(1890), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(1088), + [sym_identifier] = ACTIONS(4197), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1891] = { - [sym_nested_identifier] = STATE(948), - [sym_string] = STATE(997), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1891), - [sym__module] = STATE(1174), - [sym_identifier] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4192), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1892] = { - [sym_nested_identifier] = STATE(326), - [sym_string] = STATE(329), + [sym_nested_identifier] = STATE(2299), + [sym_string] = STATE(2307), [sym_comment] = STATE(1892), - [sym__module] = STATE(387), - [sym_identifier] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4198), - [anon_sym_SQUOTE] = ACTIONS(4200), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2542), + [sym_identifier] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1893] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1893), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1894] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(5587), + [sym_nested_identifier] = STATE(962), + [sym_string] = STATE(1164), [sym_comment] = STATE(1894), - [sym__module] = STATE(6347), - [sym_identifier] = ACTIONS(4202), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(1490), + [sym_identifier] = ACTIONS(4203), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4205), + [anon_sym_SQUOTE] = ACTIONS(4207), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1895] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(2299), + [sym_string] = STATE(2307), [sym_comment] = STATE(1895), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2542), + [sym_identifier] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(1208), + [anon_sym_of] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1896] = { - [sym_nested_identifier] = STATE(1197), - [sym_string] = STATE(1317), + [sym_nested_identifier] = STATE(4882), + [sym_string] = STATE(5589), [sym_comment] = STATE(1896), - [sym__module] = STATE(1559), - [sym_identifier] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(6351), + [sym_identifier] = ACTIONS(4209), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1897] = { - [sym_variable_declarator] = STATE(5426), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4506), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1897), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1898] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(414), + [sym_string] = STATE(416), [sym_comment] = STATE(1898), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(456), + [sym_identifier] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1899] = { - [sym_variable_declarator] = STATE(5585), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4506), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1899), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1900] = { - [sym_nested_identifier] = STATE(984), - [sym_string] = STATE(1068), + [sym_nested_identifier] = STATE(1003), + [sym_string] = STATE(1076), [sym_comment] = STATE(1900), - [sym__module] = STATE(1471), - [sym_identifier] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(1421), + [sym_identifier] = ACTIONS(4211), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4213), + [anon_sym_SQUOTE] = ACTIONS(4215), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1901] = { - [sym_nested_identifier] = STATE(350), - [sym_string] = STATE(349), + [sym_nested_identifier] = STATE(2299), + [sym_string] = STATE(2307), [sym_comment] = STATE(1901), - [sym__module] = STATE(434), - [sym_identifier] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4123), - [anon_sym_SQUOTE] = ACTIONS(4125), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2542), + [sym_identifier] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1902] = { - [sym_variable_declarator] = STATE(5391), - [sym_object_pattern] = STATE(4654), - [sym_array_pattern] = STATE(4654), - [sym__destructuring_pattern] = STATE(4506), + [sym_nested_identifier] = STATE(299), + [sym_string] = STATE(302), [sym_comment] = STATE(1902), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(329), + [sym_identifier] = ACTIONS(4217), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1903] = { - [sym_nested_identifier] = STATE(295), - [sym_string] = STATE(302), + [sym_variable_declarator] = STATE(5430), + [sym_object_pattern] = STATE(4575), + [sym_array_pattern] = STATE(4575), + [sym__destructuring_pattern] = STATE(4520), [sym_comment] = STATE(1903), - [sym__module] = STATE(336), - [sym_identifier] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4212), - [anon_sym_SQUOTE] = ACTIONS(4214), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym_identifier] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1904] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), [sym_comment] = STATE(1904), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1905] = { [sym_comment] = STATE(1905), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1906] = { + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1906), - [aux_sym_object_repeat1] = STATE(5844), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1907] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), [sym_comment] = STATE(1907), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [aux_sym_object_repeat1] = STATE(5840), + [aux_sym_object_pattern_repeat1] = STATE(5736), + [sym_identifier] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_in] = ACTIONS(120), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(213), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1908] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1908), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1261), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_RBRACK] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1909] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1909), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1910] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1910), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1203), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1911] = { + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1911), - [aux_sym_object_repeat1] = STATE(5737), - [aux_sym_object_pattern_repeat1] = STATE(5738), - [sym_identifier] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, [1912] = { - [sym_nested_identifier] = STATE(2415), - [sym_string] = STATE(2410), + [sym_nested_identifier] = STATE(2364), + [sym_string] = STATE(2363), [sym_comment] = STATE(1912), - [sym__module] = STATE(2627), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(209), + [sym__module] = STATE(2549), + [sym_identifier] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(221), + [anon_sym_QMARK_DOT] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(161), + [anon_sym_DASH_EQ] = ACTIONS(161), + [anon_sym_STAR_EQ] = ACTIONS(161), + [anon_sym_SLASH_EQ] = ACTIONS(161), + [anon_sym_PERCENT_EQ] = ACTIONS(161), + [anon_sym_CARET_EQ] = ACTIONS(161), + [anon_sym_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_EQ] = ACTIONS(161), + [anon_sym_GT_GT_EQ] = ACTIONS(161), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(161), + [anon_sym_LT_LT_EQ] = ACTIONS(161), + [anon_sym_STAR_STAR_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP_EQ] = ACTIONS(161), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(161), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(120), + [anon_sym_GT_EQ] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(120), + [anon_sym_DASH_DASH] = ACTIONS(120), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(213), [sym_html_comment] = ACTIONS(5), }, }; @@ -216375,28 +218706,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4121), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(4123), 1, - anon_sym_DQUOTE, - ACTIONS(4125), 1, - anon_sym_SQUOTE, - STATE(349), 1, - sym_string, - STATE(350), 1, - sym_nested_identifier, - STATE(434), 1, - sym__module, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, STATE(1913), 1, sym_comment, - ACTIONS(209), 2, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5587), 1, + sym_variable_declarator, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216412,14 +218744,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(118), 36, + ACTIONS(120), 35, 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, @@ -216452,29 +218783,29 @@ static const uint16_t ts_small_parse_table[] = { [93] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, + ACTIONS(992), 1, anon_sym_QMARK, - ACTIONS(2756), 1, - anon_sym_RBRACE, - ACTIONS(2769), 1, + ACTIONS(2776), 1, anon_sym_COLON, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4220), 1, + ACTIONS(2808), 1, + anon_sym_RBRACE, + ACTIONS(4227), 1, anon_sym_EQ, - ACTIONS(4224), 1, + ACTIONS(4231), 1, anon_sym_LPAREN, - ACTIONS(4227), 1, + ACTIONS(4234), 1, anon_sym_EQ_GT, - ACTIONS(4231), 1, + ACTIONS(4238), 1, anon_sym_LT, STATE(1914), 1, sym_comment, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216490,7 +218821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, + ACTIONS(4229), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -216508,7 +218839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 20, + ACTIONS(4225), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216534,28 +218865,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4190), 1, - sym_identifier, - ACTIONS(4192), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(4194), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - STATE(948), 1, + ACTIONS(4241), 1, + sym_identifier, + STATE(1915), 1, + sym_comment, + STATE(4374), 1, sym_nested_identifier, - STATE(997), 1, + STATE(4576), 1, sym_string, - STATE(1174), 1, + STATE(4994), 1, sym__module, - STATE(1915), 1, - sym_comment, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216571,7 +218902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -216608,34 +218939,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [281] = 14, + [281] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(1916), 1, + sym_comment, + ACTIONS(4243), 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(4245), 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, + [356] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4107), 1, + ACTIONS(1302), 1, + anon_sym_EQ, + ACTIONS(4158), 1, sym_identifier, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - STATE(1916), 1, + STATE(1917), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5426), 1, - sym_variable_declarator, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216651,13 +219052,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(118), 35, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, 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, @@ -216687,33 +219089,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [374] = 14, + [451] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4204), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(4206), 1, - anon_sym_DQUOTE, - ACTIONS(4208), 1, - anon_sym_SQUOTE, - STATE(984), 1, - sym_nested_identifier, - STATE(1068), 1, - sym_string, - STATE(1471), 1, - sym__module, - STATE(1917), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + STATE(1918), 1, sym_comment, - ACTIONS(209), 2, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5472), 1, + sym_variable_declarator, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216729,14 +219132,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(118), 36, + ACTIONS(120), 35, 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, @@ -216766,33 +219168,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [467] = 14, + [544] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4182), 1, + ACTIONS(4217), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(4219), 1, anon_sym_DQUOTE, - ACTIONS(4186), 1, + ACTIONS(4221), 1, anon_sym_SQUOTE, - STATE(325), 1, + STATE(299), 1, sym_nested_identifier, - STATE(327), 1, + STATE(302), 1, sym_string, - STATE(366), 1, + STATE(329), 1, sym__module, - STATE(1918), 1, + STATE(1919), 1, sym_comment, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216808,7 +219210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -216845,33 +219247,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [560] = 14, + [637] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4251), 1, + anon_sym_DOT, + ACTIONS(4253), 1, + anon_sym_LT, + STATE(1920), 1, + sym_comment, + STATE(2017), 1, + sym_arguments, + STATE(6843), 1, + sym_type_arguments, + ACTIONS(4247), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [720] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4115), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(4117), 1, - anon_sym_DQUOTE, - ACTIONS(4119), 1, - anon_sym_SQUOTE, - STATE(1197), 1, - sym_nested_identifier, - STATE(1317), 1, - sym_string, - STATE(1559), 1, - sym__module, - STATE(1919), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + STATE(1921), 1, sym_comment, - ACTIONS(209), 2, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5380), 1, + sym_variable_declarator, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216887,14 +219364,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(118), 36, + ACTIONS(120), 35, 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, @@ -216924,14 +219400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [653] = 5, + [813] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(1920), 1, + STATE(1922), 1, sym_comment, - ACTIONS(4234), 23, + ACTIONS(4255), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216955,7 +219431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4236), 38, + ACTIONS(4257), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -216994,32 +219470,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [728] = 15, + [888] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, - anon_sym_QMARK, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2801), 1, - anon_sym_RBRACE, - ACTIONS(4220), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(4224), 1, - anon_sym_LPAREN, - ACTIONS(4227), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4231), 1, - anon_sym_LT, - STATE(1921), 1, + ACTIONS(4120), 1, + sym_identifier, + ACTIONS(4122), 1, + anon_sym_DQUOTE, + ACTIONS(4124), 1, + anon_sym_SQUOTE, + STATE(1064), 1, + sym_nested_identifier, + STATE(1402), 1, + sym_string, + STATE(1526), 1, + sym__module, + STATE(1923), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(4229), 15, + ACTIONS(213), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217035,26 +219512,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(120), 36, + 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, - ACTIONS(4218), 20, + [981] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(1924), 1, + sym_comment, + ACTIONS(4259), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -217071,37 +219575,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [823] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, + anon_sym_QMARK, + ACTIONS(4261), 38, sym__ternary_qmark, - ACTIONS(1261), 1, - anon_sym_EQ_GT, - ACTIONS(1281), 1, - anon_sym_EQ, - ACTIONS(1283), 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, - ACTIONS(4151), 1, - sym_identifier, - STATE(1922), 1, - sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, + 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, @@ -217117,51 +219609,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(118), 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, - [918] = 5, + anon_sym_implements, + [1056] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(1923), 1, + STATE(1925), 1, sym_comment, - ACTIONS(4238), 23, + ACTIONS(4263), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217185,7 +219650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4240), 38, + ACTIONS(4265), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -217224,59 +219689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [993] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [1131] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(1295), 1, - anon_sym_EQ_GT, - ACTIONS(4196), 1, - sym_identifier, - ACTIONS(4198), 1, - anon_sym_DQUOTE, - ACTIONS(4200), 1, - anon_sym_SQUOTE, - STATE(326), 1, - sym_nested_identifier, - STATE(329), 1, - sym_string, - STATE(387), 1, - sym__module, - STATE(1924), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(1926), 1, sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4267), 23, 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, @@ -217291,46 +219716,24 @@ 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, - [1086] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(1295), 1, - anon_sym_EQ_GT, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, + anon_sym_QMARK, + ACTIONS(4269), 38, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(4111), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - STATE(1925), 1, - sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5585), 1, - sym_variable_declarator, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217346,50 +219749,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(118), 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, - [1179] = 5, + anon_sym_implements, + [1206] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(1926), 1, + STATE(1927), 1, sym_comment, - ACTIONS(4242), 23, + ACTIONS(4271), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217413,7 +219790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4244), 38, + ACTIONS(4273), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -217452,32 +219829,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1254] = 15, + [1281] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1008), 1, - anon_sym_EQ, - ACTIONS(1035), 1, + ACTIONS(992), 1, anon_sym_QMARK, - ACTIONS(2756), 1, + ACTIONS(2776), 1, + anon_sym_COLON, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2806), 1, anon_sym_RBRACE, - ACTIONS(2766), 1, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4231), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2778), 1, + ACTIONS(4234), 1, anon_sym_EQ_GT, - ACTIONS(2782), 1, + ACTIONS(4238), 1, anon_sym_LT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(1927), 1, + STATE(1928), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5732), 1, aux_sym_object_repeat1, - ACTIONS(2780), 15, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217493,7 +219870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 17, + ACTIONS(4229), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -217511,7 +219888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 20, + ACTIONS(4225), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217532,53 +219909,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1349] = 16, + [1376] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(4250), 1, - anon_sym_LPAREN, - ACTIONS(4252), 1, - anon_sym_DOT, - ACTIONS(4254), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4256), 1, - anon_sym_QMARK_DOT, - ACTIONS(4260), 1, - anon_sym_LT, - STATE(1928), 1, + ACTIONS(4197), 1, + sym_identifier, + ACTIONS(4199), 1, + anon_sym_DQUOTE, + ACTIONS(4201), 1, + anon_sym_SQUOTE, + STATE(943), 1, + sym_nested_identifier, + STATE(983), 1, + sym_string, + STATE(1088), 1, + sym__module, + STATE(1929), 1, sym_comment, - STATE(3963), 1, - sym_arguments, - STATE(4085), 1, - sym_type_arguments, - ACTIONS(4258), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4248), 7, + ACTIONS(213), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4222), 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(4229), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217594,52 +219951,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(120), 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, - [1446] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1469] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(1295), 1, - anon_sym_EQ_GT, - ACTIONS(1991), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(4262), 1, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(1282), 1, + anon_sym_EQ_GT, + ACTIONS(4158), 1, sym_identifier, - STATE(1929), 1, + STATE(1930), 1, sym_comment, - STATE(4382), 1, - sym_nested_identifier, - STATE(4592), 1, + STATE(2363), 1, sym_string, - STATE(4991), 1, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, sym__module, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217655,7 +220030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -217692,34 +220067,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1539] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [1562] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(965), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(992), 1, + anon_sym_QMARK, + ACTIONS(2763), 1, + anon_sym_RBRACE, + ACTIONS(2773), 1, + anon_sym_LPAREN, + ACTIONS(2776), 1, + anon_sym_COLON, + ACTIONS(2785), 1, anon_sym_EQ_GT, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - STATE(1930), 1, + ACTIONS(2789), 1, + anon_sym_LT, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(1931), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5471), 1, - sym_variable_declarator, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217735,52 +220108,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(118), 35, - anon_sym_STAR, + ACTIONS(213), 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_GT, + anon_sym_LBRACK, 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, - [1632] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(1931), 1, - sym_comment, - ACTIONS(4264), 23, + ACTIONS(120), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -217797,25 +220144,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(4266), 38, - sym__ternary_qmark, - anon_sym_as, + [1657] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1276), 1, + anon_sym_EQ, + ACTIONS(1282), 1, + anon_sym_EQ_GT, + ACTIONS(4114), 1, + sym_identifier, + ACTIONS(4116), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4118), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(1932), 1, + sym_comment, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5393), 1, + sym_variable_declarator, + ACTIONS(213), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217831,24 +220190,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 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, - [1707] = 5, + [1750] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(1932), 1, + STATE(1933), 1, sym_comment, - ACTIONS(4268), 23, + ACTIONS(4275), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217872,7 +220257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4270), 38, + ACTIONS(4277), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -217911,33 +220296,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1782] = 14, + [1825] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4202), 1, + ACTIONS(4209), 1, sym_identifier, - STATE(1933), 1, + STATE(1934), 1, sym_comment, - STATE(4880), 1, + STATE(4882), 1, sym_nested_identifier, - STATE(5587), 1, + STATE(5589), 1, sym_string, - STATE(6347), 1, + STATE(6351), 1, sym__module, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217953,7 +220338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -217990,34 +220375,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1875] = 14, + [1918] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4107), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - STATE(1934), 1, + STATE(1935), 1, sym_comment, - STATE(4506), 1, + STATE(4520), 1, sym__destructuring_pattern, - STATE(5383), 1, + STATE(5566), 1, sym_variable_declarator, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218033,7 +220418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -218069,33 +220454,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1968] = 14, + [2011] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(67), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(69), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4174), 1, + ACTIONS(1302), 1, + anon_sym_EQ, + ACTIONS(1304), 1, + anon_sym_COLON, + ACTIONS(4158), 1, sym_identifier, - STATE(1935), 1, + STATE(1936), 1, sym_comment, - STATE(2309), 1, + STATE(2363), 1, sym_string, - STATE(2312), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2636), 1, + STATE(2549), 1, sym__module, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218111,14 +220497,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(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, 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, @@ -218148,34 +220534,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2061] = 14, + [2106] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4107), 1, + ACTIONS(4191), 1, sym_identifier, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - STATE(1936), 1, + ACTIONS(4193), 1, + anon_sym_DQUOTE, + ACTIONS(4195), 1, + anon_sym_SQUOTE, + STATE(317), 1, + sym_nested_identifier, + STATE(318), 1, + sym_string, + STATE(408), 1, + sym__module, + STATE(1937), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5391), 1, - sym_variable_declarator, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218191,13 +220576,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(118), 35, + ACTIONS(120), 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, @@ -218227,16 +220613,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2154] = 5, + [2199] = 15, ACTIONS(5), 1, sym_html_comment, + ACTIONS(965), 1, + anon_sym_EQ, + ACTIONS(992), 1, + anon_sym_QMARK, + ACTIONS(2773), 1, + anon_sym_LPAREN, + ACTIONS(2776), 1, + anon_sym_COLON, ACTIONS(2785), 1, + anon_sym_EQ_GT, + ACTIONS(2789), 1, + anon_sym_LT, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(1937), 1, + ACTIONS(2806), 1, + anon_sym_RBRACE, + STATE(1938), 1, sym_comment, - ACTIONS(4272), 23, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(213), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -218253,25 +220690,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + [2294] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(992), 1, anon_sym_QMARK, - ACTIONS(4274), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2763), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + ACTIONS(2776), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4231), 1, + anon_sym_LPAREN, + ACTIONS(4234), 1, + anon_sym_EQ_GT, + ACTIONS(4238), 1, + anon_sym_LT, + STATE(1939), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218287,6 +220734,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(4229), 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, @@ -218296,34 +220752,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2229] = 14, + ACTIONS(4225), 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, + [2389] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4210), 1, + ACTIONS(4211), 1, sym_identifier, - ACTIONS(4212), 1, + ACTIONS(4213), 1, anon_sym_DQUOTE, - ACTIONS(4214), 1, + ACTIONS(4215), 1, anon_sym_SQUOTE, - STATE(295), 1, + STATE(1003), 1, sym_nested_identifier, - STATE(302), 1, + STATE(1076), 1, sym_string, - STATE(336), 1, + STATE(1421), 1, sym__module, - STATE(1938), 1, + STATE(1940), 1, sym_comment, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218339,7 +220815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -218376,113 +220852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2322] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1008), 1, - anon_sym_EQ, - ACTIONS(1035), 1, - anon_sym_QMARK, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2782), 1, - anon_sym_LT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2801), 1, - anon_sym_RBRACE, - STATE(1939), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 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(118), 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, - [2417] = 14, + [2482] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4176), 1, + ACTIONS(4126), 1, sym_identifier, - ACTIONS(4178), 1, + ACTIONS(4128), 1, anon_sym_DQUOTE, - ACTIONS(4180), 1, + ACTIONS(4130), 1, anon_sym_SQUOTE, - STATE(972), 1, + STATE(414), 1, sym_nested_identifier, - STATE(1053), 1, + STATE(416), 1, sym_string, - STATE(1366), 1, + STATE(456), 1, sym__module, - STATE(1940), 1, + STATE(1941), 1, sym_comment, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218498,7 +220894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -218535,113 +220931,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2510] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [2575] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_COMMA, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(214), 1, - anon_sym_RBRACK, - ACTIONS(1252), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4279), 1, anon_sym_EQ, - ACTIONS(1261), 1, - anon_sym_EQ_GT, - ACTIONS(4151), 1, - sym_identifier, - STATE(1941), 1, - sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + ACTIONS(4283), 1, anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(4285), 1, anon_sym_DOT, + ACTIONS(4287), 1, + anon_sym_EQ_GT, + ACTIONS(4289), 1, 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, + ACTIONS(4293), 1, + anon_sym_LT, + STATE(1942), 1, + sym_comment, + STATE(3979), 1, + sym_arguments, + STATE(4083), 1, + sym_type_arguments, + ACTIONS(4291), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, + ACTIONS(4281), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4229), 11, + sym__ternary_qmark, + anon_sym_as, 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, - [2607] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1008), 1, - anon_sym_EQ, - ACTIONS(1035), 1, - anon_sym_QMARK, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2782), 1, - anon_sym_LT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2799), 1, - anon_sym_RBRACE, - STATE(1942), 1, - sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218657,25 +220993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 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(118), 20, + ACTIONS(4225), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218685,9 +221003,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, @@ -218696,33 +221012,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2702] = 14, + [2672] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(1115), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4151), 1, + ACTIONS(4114), 1, sym_identifier, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, STATE(1943), 1, sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(209), 2, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5430), 1, + sym_variable_declarator, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218738,14 +221055,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(118), 36, + ACTIONS(120), 35, 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, @@ -218775,34 +221091,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2795] = 15, + [2765] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(67), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(69), 1, anon_sym_SQUOTE, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1257), 1, - anon_sym_COLON, - ACTIONS(1261), 1, - anon_sym_EQ_GT, - ACTIONS(1281), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(1282), 1, + anon_sym_EQ_GT, + ACTIONS(4189), 1, sym_identifier, STATE(1944), 1, sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, + STATE(2299), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2307), 1, + sym_string, + STATE(2542), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(213), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218818,14 +221133,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(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, 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, @@ -218855,102 +221170,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2890] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [2858] = 14, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(1945), 1, - sym_comment, - ACTIONS(4276), 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(4278), 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, - [2965] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, - anon_sym_QMARK, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2799), 1, - anon_sym_RBRACE, - ACTIONS(4220), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(4224), 1, - anon_sym_LPAREN, - ACTIONS(4227), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4231), 1, - anon_sym_LT, - STATE(1946), 1, + ACTIONS(4203), 1, + sym_identifier, + ACTIONS(4205), 1, + anon_sym_DQUOTE, + ACTIONS(4207), 1, + anon_sym_SQUOTE, + STATE(962), 1, + sym_nested_identifier, + STATE(1164), 1, + sym_string, + STATE(1490), 1, + sym__module, + STATE(1945), 1, sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4229), 15, + ACTIONS(213), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218966,29 +221212,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(4222), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(120), 36, + 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(4218), 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, @@ -219002,37 +221236,46 @@ 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, - [3060] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2951] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4107), 1, + ACTIONS(4183), 1, sym_identifier, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - STATE(1947), 1, + ACTIONS(4185), 1, + anon_sym_DQUOTE, + ACTIONS(4187), 1, + anon_sym_SQUOTE, + STATE(335), 1, + sym_string, + STATE(342), 1, + sym_nested_identifier, + STATE(426), 1, + sym__module, + STATE(1946), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5565), 1, - sym_variable_declarator, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219048,13 +221291,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(118), 35, + ACTIONS(120), 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, @@ -219084,16 +221328,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3153] = 7, + [3044] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(218), 1, + anon_sym_RBRACK, + ACTIONS(1256), 1, anon_sym_EQ, - STATE(1948), 1, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(4158), 1, + sym_identifier, + STATE(1947), 1, sym_comment, - ACTIONS(4229), 15, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219109,11 +221373,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(4218), 21, + ACTIONS(120), 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, @@ -219128,77 +221397,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, - ACTIONS(4222), 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, 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, - [3231] = 5, + [3141] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(1949), 1, - sym_comment, - ACTIONS(3205), 22, - anon_sym_STAR, + ACTIONS(965), 1, 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(3207), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(992), 1, + anon_sym_QMARK, + ACTIONS(2773), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + ACTIONS(2776), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2785), 1, + anon_sym_EQ_GT, + ACTIONS(2789), 1, + anon_sym_LT, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2808), 1, + anon_sym_RBRACE, + STATE(1948), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219214,53 +221450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [3305] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4288), 1, - anon_sym_EQ_GT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - STATE(1950), 1, - sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - ACTIONS(4248), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4258), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(213), 17, 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -219270,32 +221468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -219304,24 +221489,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3401] = 9, + [3236] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(4296), 1, - anon_sym_LPAREN, - ACTIONS(4298), 1, - anon_sym_DOT, - STATE(1951), 1, + ACTIONS(4297), 1, + anon_sym_class, + ACTIONS(4300), 1, + anon_sym_AT, + STATE(1949), 1, sym_comment, - STATE(2027), 1, - sym_arguments, - STATE(6841), 1, - sym_type_arguments, - ACTIONS(4294), 55, + STATE(1950), 1, + aux_sym_export_statement_repeat1, + STATE(2018), 1, + sym_decorator, + ACTIONS(4295), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219330,13 +221513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_let, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_await, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -219345,6 +221528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_TILDE, anon_sym_void, anon_sym_delete, @@ -219360,7 +221544,6 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -219377,32 +221560,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [3483] = 14, + anon_sym_global, + [3316] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(4300), 1, + anon_sym_AT, + STATE(2018), 1, + sym_decorator, + STATE(1950), 2, + sym_comment, + aux_sym_export_statement_repeat1, + ACTIONS(4295), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, anon_sym_DQUOTE, - ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(1261), 1, - anon_sym_EQ_GT, - ACTIONS(4151), 1, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, sym_identifier, - STATE(1952), 1, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_global, + [3392] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4234), 1, + anon_sym_EQ_GT, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + STATE(1951), 1, sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, + sym_type_arguments, + ACTIONS(4281), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4291), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219418,69 +221693,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4225), 17, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [3488] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4253), 1, anon_sym_LT, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + ACTIONS(4311), 1, + anon_sym_EQ, + ACTIONS(4313), 1, + anon_sym_EQ_GT, + STATE(1952), 1, + sym_comment, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, + sym_type_arguments, + ACTIONS(4281), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4291), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_SEMI, 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, - [3575] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1261), 1, - anon_sym_EQ_GT, - ACTIONS(1281), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1953), 1, - sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219496,17 +221773,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(118), 36, + ACTIONS(4225), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_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, + [3584] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(1953), 1, + sym_comment, + ACTIONS(3200), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + 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, @@ -219521,44 +221818,74 @@ 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(3202), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3667] = 14, + anon_sym_implements, + [3658] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1301), 1, - anon_sym_EQ_GT, - ACTIONS(1307), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(4158), 1, sym_identifier, STATE(1954), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219574,14 +221901,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(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -219611,32 +221938,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3759] = 14, + [3750] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(1301), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4151), 1, + ACTIONS(1302), 1, + anon_sym_EQ, + ACTIONS(4158), 1, sym_identifier, STATE(1955), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219652,14 +221979,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(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -219689,32 +222016,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3851] = 14, + [3842] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1299), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(1321), 1, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1211), 1, + anon_sym_of, + ACTIONS(4158), 1, sym_identifier, STATE(1956), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219730,13 +222061,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(118), 36, + ACTIONS(120), 34, 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, @@ -219767,53 +222096,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3943] = 16, + [3938] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - ACTIONS(4254), 1, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - STATE(1957), 1, - sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - ACTIONS(4248), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4258), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(213), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(1110), 1, 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(4229), 15, + ACTIONS(4158), 1, + sym_identifier, + STATE(1957), 1, + sym_comment, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219829,52 +222139,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(4218), 17, + ACTIONS(120), 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, - [4039] = 15, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [4032] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1115), 1, + ACTIONS(1326), 1, anon_sym_EQ, - ACTIONS(1117), 1, - anon_sym_COLON, - ACTIONS(4151), 1, + ACTIONS(1332), 1, + anon_sym_EQ_GT, + ACTIONS(4158), 1, sym_identifier, STATE(1958), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219890,12 +222216,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(118), 35, + ACTIONS(120), 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, @@ -219926,14 +222253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4133] = 5, + [4124] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(1959), 1, sym_comment, - ACTIONS(3163), 22, + ACTIONS(3186), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -219956,7 +222283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3165), 38, + ACTIONS(3188), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -219995,37 +222322,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4207] = 15, + [4198] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4254), 1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - ACTIONS(4300), 1, + ACTIONS(4315), 1, anon_sym_EQ, - ACTIONS(4309), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4324), 1, anon_sym_LBRACK, - ACTIONS(4312), 1, + ACTIONS(4327), 1, anon_sym_DOT, - ACTIONS(4318), 1, + ACTIONS(4333), 1, anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4339), 1, + anon_sym_extends, STATE(1960), 1, sym_comment, - STATE(4093), 1, + STATE(3806), 1, sym_type_arguments, - ACTIONS(4303), 2, + STATE(6864), 1, + sym_type_annotation, + ACTIONS(4318), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4315), 2, + anon_sym_RBRACK, + ACTIONS(4330), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4307), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4222), 13, + ACTIONS(4229), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -220039,7 +222369,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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, + [4298] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4341), 1, + anon_sym_EQ, + STATE(1961), 1, + sym_comment, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220055,7 +222429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220065,45 +222439,68 @@ 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, - [4301] = 16, + ACTIONS(4229), 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, + [4376] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1115), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1236), 1, - anon_sym_of, - ACTIONS(4151), 1, + ACTIONS(1332), 1, + anon_sym_EQ_GT, + ACTIONS(4158), 1, sym_identifier, - STATE(1961), 1, + STATE(1962), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220119,11 +222516,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(118), 34, + ACTIONS(120), 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, @@ -220154,43 +222553,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4397] = 16, + [4468] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4227), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4279), 1, + anon_sym_EQ, + ACTIONS(4287), 1, anon_sym_EQ_GT, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4307), 1, anon_sym_DOT, - ACTIONS(4290), 1, + ACTIONS(4309), 1, anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(4321), 1, - anon_sym_EQ, - STATE(1962), 1, + STATE(1963), 1, sym_comment, - STATE(3767), 1, + STATE(3779), 1, sym_arguments, - STATE(3893), 1, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4248), 3, + ACTIONS(4281), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4258), 3, + ACTIONS(4291), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 14, - sym__automatic_semicolon, + ACTIONS(4229), 14, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -220200,7 +222599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220216,7 +222615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4225), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220234,32 +222633,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4493] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4564] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(1299), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - ACTIONS(4151), 1, - sym_identifier, - STATE(1963), 1, + ACTIONS(4315), 1, + anon_sym_EQ, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(4343), 1, + anon_sym_DOT, + ACTIONS(4346), 1, + anon_sym_LT, + STATE(1964), 1, sym_comment, - STATE(2410), 1, + STATE(4096), 1, + sym_type_arguments, + ACTIONS(4318), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4330), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4339), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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, + [4658] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(1316), 1, + anon_sym_EQ_GT, + ACTIONS(4158), 1, + sym_identifier, + STATE(1965), 1, + sym_comment, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220275,13 +222753,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(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -220312,54 +222790,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4585] = 18, + [4750] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4254), 1, - anon_sym_EQ_GT, - ACTIONS(4300), 1, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1310), 1, anon_sym_EQ, - ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4331), 1, - anon_sym_QMARK, - STATE(1964), 1, + ACTIONS(1316), 1, + anon_sym_EQ_GT, + ACTIONS(4158), 1, + sym_identifier, + STATE(1966), 1, sym_comment, - STATE(3867), 1, - sym_type_arguments, - STATE(6861), 1, - sym_type_annotation, - ACTIONS(4303), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4315), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 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(4229), 15, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220375,51 +222831,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(4218), 18, + ACTIONS(120), 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, + 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, - [4685] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [4842] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1397), 1, + ACTIONS(1404), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4158), 1, sym_identifier, - STATE(1965), 1, + STATE(1967), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220435,7 +222909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -220471,26 +222945,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4776] = 10, + [4933] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(1117), 1, - anon_sym_QMARK, - ACTIONS(2785), 1, + STATE(1968), 1, + sym_comment, + ACTIONS(3328), 59, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [5004] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4351), 1, anon_sym_EQ_GT, - STATE(1966), 1, + ACTIONS(4353), 1, + anon_sym_QMARK, + STATE(1969), 1, sym_comment, - ACTIONS(4334), 5, + ACTIONS(4349), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(209), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -220506,7 +223047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220522,7 +223063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220544,52 +223085,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4859] = 17, + [5087] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4303), 1, - anon_sym_RPAREN, - ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4338), 1, + ACTIONS(4311), 1, anon_sym_EQ, - ACTIONS(4344), 1, + ACTIONS(4313), 1, anon_sym_EQ_GT, - ACTIONS(4346), 1, - anon_sym_QMARK, - STATE(1967), 1, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4339), 1, + anon_sym_extends, + STATE(1970), 1, sym_comment, - STATE(3867), 1, + STATE(3806), 1, sym_type_arguments, - ACTIONS(4315), 2, + ACTIONS(4324), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4330), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4341), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4222), 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(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220605,11 +223127,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(4218), 18, + ACTIONS(4229), 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(4225), 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, @@ -220624,32 +223162,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4956] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [5178] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1387), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1968), 1, + ACTIONS(1110), 1, + anon_sym_QMARK, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(1971), 1, sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, + ACTIONS(4355), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(213), 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(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220665,16 +223213,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(118), 35, + ACTIONS(120), 21, 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, @@ -220689,44 +223232,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, - [5047] = 10, + [5261] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_EQ, - ACTIONS(4350), 1, + ACTIONS(4361), 1, anon_sym_EQ_GT, - ACTIONS(4352), 1, - anon_sym_QMARK, - STATE(1969), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4348), 5, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, + sym_type_arguments, + ACTIONS(4291), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4281), 3, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4222), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4229), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -220736,7 +223279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220752,7 +223295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220762,54 +223305,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5130] = 16, + [5356] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4307), 1, anon_sym_DOT, - ACTIONS(4290), 1, + ACTIONS(4309), 1, anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(4344), 1, - anon_sym_EQ_GT, - ACTIONS(4354), 1, + ACTIONS(4363), 1, anon_sym_EQ, - STATE(1970), 1, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + STATE(1973), 1, sym_comment, - STATE(3767), 1, + STATE(3779), 1, sym_arguments, - STATE(3893), 1, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4248), 3, + ACTIONS(4281), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4258), 3, + ACTIONS(4291), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 13, + ACTIONS(4229), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -220819,7 +223359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220835,7 +223375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4225), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220853,32 +223393,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5225] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [5451] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1395), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4279), 1, anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1971), 1, + ACTIONS(4287), 1, + anon_sym_EQ_GT, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4339), 1, + anon_sym_extends, + STATE(1974), 1, sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4324), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4330), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220894,68 +223435,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, + ACTIONS(4229), 16, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4225), 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_AMP, anon_sym_CARET, - 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, - [5316] = 14, + [5542] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1385), 1, + ACTIONS(1390), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4158), 1, sym_identifier, - STATE(1972), 1, + STATE(1975), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220971,7 +223511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -221007,32 +223547,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5407] = 14, + [5633] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1329), 1, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4158), 1, sym_identifier, - STATE(1973), 1, + STATE(1976), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221048,7 +223588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -221084,32 +223624,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5498] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [5724] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4234), 1, anon_sym_EQ_GT, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1389), 1, + ACTIONS(4303), 1, anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1974), 1, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4339), 1, + anon_sym_extends, + STATE(1977), 1, sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4324), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4330), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221125,71 +223666,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, + ACTIONS(4229), 16, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4225), 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_AMP, anon_sym_CARET, - 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, - [5589] = 15, + [5815] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(153), 1, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1115), 1, + ACTIONS(1336), 1, anon_sym_EQ, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1236), 1, - anon_sym_of, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, + ACTIONS(4158), 1, sym_identifier, - ACTIONS(4358), 1, - anon_sym_LBRACK, - STATE(1975), 1, + STATE(1978), 1, sym_comment, - STATE(6746), 1, - sym__destructuring_pattern, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221205,11 +223742,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(118), 33, + ACTIONS(120), 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, @@ -221239,32 +223778,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5682] = 10, + [5906] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(124), 1, - anon_sym_QMARK, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ_GT, - STATE(1976), 1, + STATE(1979), 1, sym_comment, - ACTIONS(4361), 5, + ACTIONS(4259), 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(4261), 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_RBRACK, - ACTIONS(209), 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, @@ -221274,7 +223845,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + anon_sym_implements, + [5979] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(4158), 1, + sym_identifier, + STATE(1980), 1, + sym_comment, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221290,11 +223887,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(118), 21, + ACTIONS(120), 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, @@ -221309,45 +223911,120 @@ 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, - [5765] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6070] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4284), 1, + STATE(1981), 1, + sym_comment, + ACTIONS(3266), 59, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, + anon_sym_RPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4363), 1, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [6141] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4279), 1, anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - STATE(1977), 1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + STATE(1982), 1, sym_comment, - STATE(3767), 1, + STATE(3779), 1, sym_arguments, - STATE(3893), 1, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4248), 3, + ACTIONS(4291), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4281), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4258), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 13, - sym__automatic_semicolon, + ACTIONS(4229), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -221357,7 +224034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221373,10 +224050,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(4218), 17, + ACTIONS(4225), 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, @@ -221391,49 +224069,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5860] = 5, + [6236] = 17, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(1978), 1, - sym_comment, - ACTIONS(4234), 22, - anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_RPAREN, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4339), 1, + anon_sym_extends, + ACTIONS(4361), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4373), 1, + anon_sym_QMARK, + STATE(1983), 1, + sym_comment, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4330), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(4236), 37, + ACTIONS(4370), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4229), 13, 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221449,24 +224130,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [5933] = 5, + ACTIONS(4225), 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, + [6333] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(1979), 1, + STATE(1984), 1, sym_comment, - ACTIONS(4238), 22, + ACTIONS(4255), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -221489,7 +224179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4240), 37, + ACTIONS(4257), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -221527,41 +224217,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [6006] = 16, + [6406] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - ACTIONS(4254), 1, - anon_sym_EQ_GT, - ACTIONS(4284), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4307), 1, anon_sym_DOT, - ACTIONS(4290), 1, + ACTIONS(4309), 1, anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - STATE(1980), 1, + ACTIONS(4359), 1, + anon_sym_EQ, + ACTIONS(4361), 1, + anon_sym_EQ_GT, + STATE(1985), 1, sym_comment, - STATE(3767), 1, + STATE(3779), 1, sym_arguments, - STATE(3893), 1, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4258), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4248), 4, + ACTIONS(4281), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4222), 11, + ACTIONS(4291), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -221571,7 +224262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221587,11 +224278,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(4218), 18, + ACTIONS(4225), 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, @@ -221606,33 +224296,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6101] = 14, + [6501] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ, - ACTIONS(4288), 1, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - STATE(1981), 1, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(4158), 1, + sym_identifier, + STATE(1986), 1, sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4309), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4315), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4229), 15, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221648,77 +224337,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(4222), 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(4218), 17, + ACTIONS(120), 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, - [6192] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - ACTIONS(4367), 1, - anon_sym_EQ, - STATE(1982), 1, - sym_comment, - ACTIONS(4370), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4222), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - 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(4229), 15, + [6592] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1402), 1, + anon_sym_EQ, + ACTIONS(4158), 1, + sym_identifier, + STATE(1987), 1, + sym_comment, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221734,11 +224414,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(4218), 21, + ACTIONS(120), 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, @@ -221753,48 +224438,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, - [6275] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(4375), 1, - anon_sym_EQ_GT, - STATE(1983), 1, - sym_comment, - ACTIONS(4377), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2063), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(209), 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(2780), 15, + [6683] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1392), 1, + anon_sym_EQ, + ACTIONS(4158), 1, + sym_identifier, + STATE(1988), 1, + sym_comment, + STATE(2363), 1, + sym_string, + STATE(2364), 1, + sym_nested_identifier, + STATE(2549), 1, + sym__module, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221810,52 +224491,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(118), 19, + ACTIONS(120), 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, - [6360] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6774] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1383), 1, + ACTIONS(1396), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4158), 1, sym_identifier, - STATE(1984), 1, + STATE(1989), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221871,7 +224568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -221907,263 +224604,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6451] = 16, + [6865] = 17, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(4344), 1, - anon_sym_EQ_GT, - ACTIONS(4354), 1, - anon_sym_EQ, - STATE(1985), 1, - sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - ACTIONS(4258), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4248), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4222), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [6546] = 14, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1391), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1986), 1, - sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + ACTIONS(4324), 1, anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(4327), 1, 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, - [6637] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4382), 1, - anon_sym_AT, - STATE(2057), 1, - sym_decorator, - STATE(1987), 2, - sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4380), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4333), 1, anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [6712] = 17, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4307), 1, + ACTIONS(4339), 1, anon_sym_extends, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4350), 1, + ACTIONS(4351), 1, anon_sym_EQ_GT, - ACTIONS(4367), 1, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, anon_sym_EQ, - ACTIONS(4385), 1, + ACTIONS(4380), 1, anon_sym_RPAREN, - STATE(1988), 1, + STATE(1990), 1, sym_comment, - STATE(3867), 1, + STATE(3806), 1, sym_type_arguments, - ACTIONS(4315), 2, + ACTIONS(4330), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4370), 2, + ACTIONS(4378), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4222), 13, + ACTIONS(4229), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222177,7 +224649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222193,7 +224665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4225), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222212,109 +224684,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6809] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - ACTIONS(4254), 1, - anon_sym_EQ_GT, - ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - STATE(1989), 1, - sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4309), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4315), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 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, - [6900] = 14, + [6962] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1381), 1, + ACTIONS(1394), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4158), 1, sym_identifier, - STATE(1990), 1, + STATE(1991), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222330,7 +224725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -222366,111 +224761,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6991] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(4388), 1, - anon_sym_EQ, - ACTIONS(4390), 1, - anon_sym_EQ_GT, - STATE(1991), 1, - sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - ACTIONS(4248), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4258), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [7086] = 14, + [7053] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(209), 1, + ACTIONS(213), 1, sym__ternary_qmark, - ACTIONS(1393), 1, + ACTIONS(1398), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4158), 1, sym_identifier, STATE(1992), 1, sym_comment, - STATE(2410), 1, + STATE(2363), 1, sym_string, - STATE(2415), 1, + STATE(2364), 1, sym_nested_identifier, - STATE(2627), 1, + STATE(2549), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222486,7 +224802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(120), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -222522,99 +224838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7177] = 14, + [7144] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - sym__ternary_qmark, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, STATE(1993), 1, sym_comment, - STATE(2410), 1, - sym_string, - STATE(2415), 1, - sym_nested_identifier, - STATE(2627), 1, - sym__module, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [7268] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4382), 1, - anon_sym_AT, - ACTIONS(4392), 1, - anon_sym_class, - STATE(1987), 1, - aux_sym_export_statement_repeat1, - STATE(1994), 1, - sym_comment, - STATE(2057), 1, - sym_decorator, - ACTIONS(4380), 55, + ACTIONS(4383), 59, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222628,8 +224859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, + anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -222654,6 +224887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_undefined, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -222670,33 +224904,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [7347] = 14, + anon_sym_global, + [7215] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4227), 1, - anon_sym_EQ_GT, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, + anon_sym_LPAREN, ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(4321), 1, - anon_sym_EQ, - ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - STATE(1995), 1, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + ACTIONS(4385), 1, + anon_sym_EQ, + ACTIONS(4387), 1, + anon_sym_EQ_GT, + STATE(1994), 1, sym_comment, - STATE(3867), 1, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4309), 2, + ACTIONS(4281), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4315), 3, + anon_sym_extends, + ACTIONS(4291), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4229), 15, + ACTIONS(4229), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222712,24 +224966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 17, + ACTIONS(4225), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222747,25 +224984,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7438] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [7310] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1027), 1, - anon_sym_EQ_GT, - ACTIONS(1193), 1, + ACTIONS(1269), 1, anon_sym_EQ, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(4395), 1, - sym_identifier, - STATE(1996), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4389), 1, + anon_sym_LBRACK, + ACTIONS(4392), 1, + anon_sym_EQ_GT, + STATE(1995), 1, sym_comment, - ACTIONS(209), 2, + ACTIONS(4394), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2094), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(213), 14, sym__ternary_qmark, - ACTIONS(159), 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(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222781,75 +225038,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(120), 19, 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, - [7520] = 14, + [7395] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4388), 1, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(4390), 1, + ACTIONS(126), 1, + anon_sym_QMARK, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, anon_sym_EQ_GT, - STATE(1997), 1, + STATE(1996), 1, sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4309), 2, + ACTIONS(4397), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4315), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 15, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -222860,8 +225093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222877,59 +225109,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7610] = 16, + [7478] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(4397), 1, - anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(4351), 1, anon_sym_EQ_GT, - STATE(1998), 1, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_EQ, + STATE(1997), 1, sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - ACTIONS(4248), 3, + ACTIONS(4378), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4258), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, @@ -222939,7 +225166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222955,43 +225182,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(4218), 17, + ACTIONS(4225), 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, - [7704] = 10, + [7561] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1027), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(1193), 1, + ACTIONS(213), 1, + sym__ternary_qmark, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(1195), 1, - anon_sym_COLON, - ACTIONS(4216), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1211), 1, + anon_sym_of, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4399), 1, sym_identifier, - STATE(1999), 1, + ACTIONS(4401), 1, + anon_sym_LBRACK, + STATE(1998), 1, sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + STATE(6749), 1, + sym__destructuring_pattern, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223007,15 +225248,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(118), 37, + ACTIONS(120), 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, @@ -223045,49 +225282,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7786] = 14, + [7654] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4363), 1, - anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(984), 1, anon_sym_EQ_GT, - STATE(2000), 1, + ACTIONS(1178), 1, + anon_sym_EQ, + ACTIONS(1180), 1, + anon_sym_COLON, + ACTIONS(4404), 1, + sym_identifier, + STATE(1999), 1, sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4307), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4315), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 15, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223103,58 +225316,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(4218), 17, + ACTIONS(120), 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, - [7876] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7736] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4279), 1, anon_sym_EQ, - ACTIONS(4254), 1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(4327), 1, anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, + ACTIONS(4333), 1, anon_sym_LT, - STATE(2001), 1, + ACTIONS(4339), 1, + anon_sym_extends, + ACTIONS(4349), 1, + anon_sym_COLON, + STATE(2000), 1, sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, + STATE(3806), 1, sym_type_arguments, - ACTIONS(4258), 2, + ACTIONS(4330), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4248), 3, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4222), 12, + ACTIONS(4406), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4229), 13, 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, @@ -223164,7 +225397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223180,7 +225413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4225), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223199,24 +225432,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7970] = 9, + [7830] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4346), 1, + ACTIONS(4373), 1, anon_sym_QMARK, - ACTIONS(4367), 1, + ACTIONS(4375), 1, anon_sym_EQ, - STATE(2002), 1, + STATE(2001), 1, sym_comment, - ACTIONS(4370), 5, + ACTIONS(4378), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223232,7 +225465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223248,7 +225481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223270,111 +225503,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8050] = 10, + [7910] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1027), 1, - anon_sym_EQ_GT, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(1201), 1, - anon_sym_COLON, - ACTIONS(4401), 1, - sym_identifier, - STATE(2003), 1, + STATE(2002), 1, sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, - anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4410), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, + anon_sym_await, + anon_sym_yield, 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [8132] = 15, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [7980] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, + ACTIONS(4253), 1, anon_sym_LT, - ACTIONS(4348), 1, - anon_sym_COLON, - ACTIONS(4350), 1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + ACTIONS(4412), 1, + anon_sym_EQ, + ACTIONS(4414), 1, anon_sym_EQ_GT, - STATE(2004), 1, + STATE(2003), 1, sym_comment, - STATE(3867), 1, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4315), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4307), 3, + ACTIONS(4281), 3, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4222), 13, + ACTIONS(4291), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 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, @@ -223384,7 +225613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223400,11 +225629,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(4218), 18, + ACTIONS(4225), 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, @@ -223419,41 +225647,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8224] = 16, + [8074] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4327), 1, anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, + ACTIONS(4333), 1, anon_sym_LT, - ACTIONS(4403), 1, + ACTIONS(4339), 1, + anon_sym_extends, + ACTIONS(4359), 1, anon_sym_EQ, - ACTIONS(4405), 1, + ACTIONS(4361), 1, anon_sym_EQ_GT, - STATE(2005), 1, + STATE(2004), 1, sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, + STATE(3806), 1, sym_type_arguments, - ACTIONS(4248), 3, + ACTIONS(4324), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4258), 3, + ACTIONS(4330), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 12, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -223463,7 +225689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223479,7 +225705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4225), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223497,31 +225723,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8318] = 13, + [8164] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2005), 1, + sym_comment, + ACTIONS(3258), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [8234] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(124), 1, + ACTIONS(126), 1, anon_sym_QMARK, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4357), 1, anon_sym_EQ_GT, - ACTIONS(4372), 1, + ACTIONS(4389), 1, anon_sym_LBRACK, STATE(2006), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(2094), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(4361), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4377), 2, + ACTIONS(4394), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(209), 14, + ACTIONS(4397), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(213), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223536,7 +225828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223552,7 +225844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223572,27 +225864,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8406] = 11, + [8322] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1211), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4407), 1, + ACTIONS(984), 1, anon_sym_EQ_GT, + ACTIONS(1178), 1, + anon_sym_EQ, + ACTIONS(1245), 1, + anon_sym_COLON, + ACTIONS(4416), 1, + sym_identifier, STATE(2007), 1, sym_comment, - ACTIONS(4372), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4377), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(213), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223608,51 +225898,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(120), 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(118), 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, - [8490] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8404] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(2008), 1, sym_comment, - ACTIONS(3373), 58, + ACTIONS(4418), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223662,9 +225953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -223675,6 +225964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -223711,101 +226001,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [8560] = 10, + anon_sym_global, + [8474] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1027), 1, - anon_sym_EQ_GT, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_COLON, - ACTIONS(4409), 1, - sym_identifier, STATE(2009), 1, sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, - anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3250), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, + anon_sym_await, anon_sym_SEMI, + anon_sym_yield, 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [8642] = 9, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [8544] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + STATE(2010), 1, + sym_comment, + ACTIONS(3260), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [8614] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2011), 1, + sym_comment, + ACTIONS(4247), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [8684] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4339), 1, + anon_sym_extends, + ACTIONS(4385), 1, anon_sym_EQ, - ACTIONS(4352), 1, - anon_sym_QMARK, - STATE(2010), 1, + ACTIONS(4387), 1, + anon_sym_EQ_GT, + STATE(2012), 1, sym_comment, - ACTIONS(4348), 5, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4324), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4222), 15, + anon_sym_LBRACK, + ACTIONS(4330), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -223816,7 +226241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + anon_sym_implements, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223832,72 +226258,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 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, - [8722] = 16, + [8774] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(1217), 1, anon_sym_EQ, - ACTIONS(4254), 1, - anon_sym_EQ_GT, - ACTIONS(4307), 1, + ACTIONS(2094), 1, anon_sym_extends, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4348), 1, - anon_sym_COLON, - STATE(2011), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4392), 1, + anon_sym_EQ_GT, + STATE(2013), 1, sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4315), 2, + ACTIONS(4389), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4394), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4411), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4222), 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(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223913,11 +226312,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(4218), 18, + ACTIONS(213), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -223929,28 +226345,55 @@ 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, - [8816] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [8858] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1027), 1, - anon_sym_EQ_GT, - ACTIONS(1193), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(1205), 1, - anon_sym_COLON, - ACTIONS(4415), 1, - sym_identifier, - STATE(2012), 1, + ACTIONS(4422), 1, + anon_sym_EQ_GT, + STATE(2014), 1, sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, + sym_type_arguments, + ACTIONS(4281), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4291), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 12, sym__ternary_qmark, - ACTIONS(159), 15, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223966,52 +226409,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(118), 37, + ACTIONS(4225), 17, 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, - [8898] = 4, + [8952] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2013), 1, + STATE(2015), 1, sym_comment, - ACTIONS(4417), 58, + ACTIONS(4424), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224025,7 +226448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_class, @@ -224070,163 +226492,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [8968] = 14, + anon_sym_global, + [9022] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4344), 1, - anon_sym_EQ_GT, - ACTIONS(4354), 1, - anon_sym_EQ, - STATE(2014), 1, + STATE(2016), 1, sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4309), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4315), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, - anon_sym_STAR, + ACTIONS(4426), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, 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_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, 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, - [9058] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2015), 1, - sym_comment, - ACTIONS(4372), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4377), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 18, - anon_sym_STAR, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [9092] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2017), 1, + sym_comment, + ACTIONS(4428), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, 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_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9142] = 4, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [9162] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2016), 1, + STATE(2018), 1, sym_comment, - ACTIONS(3457), 58, + ACTIONS(4430), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224236,9 +226642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -224249,6 +226653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -224285,40 +226690,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [9212] = 16, + anon_sym_global, + [9232] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(126), 1, + anon_sym_QMARK, + ACTIONS(215), 1, anon_sym_EQ, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(4350), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4389), 1, + anon_sym_LBRACK, + ACTIONS(4435), 1, anon_sym_EQ_GT, - STATE(2017), 1, + STATE(2019), 1, sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - ACTIONS(4258), 2, + ACTIONS(2094), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4394), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4248), 4, + ACTIONS(4432), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4222), 11, + anon_sym_COLON, + ACTIONS(213), 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, @@ -224328,7 +226730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224344,7 +226746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224360,30 +226762,97 @@ 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, - [9306] = 11, + [9320] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2020), 1, + sym_comment, + ACTIONS(3228), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [9390] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1225), 1, + ACTIONS(1178), 1, anon_sym_EQ, - ACTIONS(2063), 1, + ACTIONS(2094), 1, anon_sym_extends, ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4375), 1, anon_sym_EQ_GT, - STATE(2018), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2021), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(4389), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4377), 3, + ACTIONS(4394), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224399,13 +226868,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(209), 17, + ACTIONS(213), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -224417,7 +226886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224436,41 +226905,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9390] = 16, + [9474] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(4327), 1, anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, + ACTIONS(4333), 1, anon_sym_LT, - ACTIONS(4419), 1, + ACTIONS(4363), 1, anon_sym_EQ, - ACTIONS(4421), 1, + ACTIONS(4365), 1, anon_sym_EQ_GT, - STATE(2019), 1, + STATE(2022), 1, sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, + STATE(3806), 1, sym_type_arguments, - ACTIONS(4248), 3, + ACTIONS(4339), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4258), 3, + ACTIONS(4330), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 12, + ACTIONS(4229), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -224480,7 +226947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224496,7 +226963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4225), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224514,36 +226981,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9484] = 13, + [9564] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_QMARK, - ACTIONS(211), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(4426), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + ACTIONS(4437), 1, + anon_sym_EQ, + ACTIONS(4439), 1, anon_sym_EQ_GT, - STATE(2020), 1, + STATE(2023), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_RPAREN, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, + sym_type_arguments, + ACTIONS(4281), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4377), 2, + ACTIONS(4291), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4423), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(209), 14, + ACTIONS(4229), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -224553,7 +227025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224569,11 +227041,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(118), 19, + ACTIONS(4225), 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, @@ -224585,52 +227056,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9572] = 5, + [9658] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2021), 1, - sym_comment, - ACTIONS(4238), 22, - anon_sym_STAR, + ACTIONS(984), 1, + anon_sym_EQ_GT, + ACTIONS(1178), 1, 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(4240), 35, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(4441), 1, + sym_identifier, + STATE(2024), 1, + sym_comment, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224646,93 +227093,18 @@ 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, - [9643] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2022), 1, - sym_comment, - ACTIONS(3415), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + ACTIONS(120), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_await, + anon_sym_in, anon_sym_SEMI, - anon_sym_yield, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [9712] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2023), 1, - sym_comment, - ACTIONS(4234), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - 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, @@ -224747,77 +227119,50 @@ 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, - ACTIONS(4236), 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, 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, - [9783] = 16, + [9740] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4284), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4307), 1, anon_sym_DOT, - ACTIONS(4290), 1, + ACTIONS(4309), 1, anon_sym_QMARK_DOT, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(4350), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4351), 1, anon_sym_EQ_GT, - STATE(2024), 1, + STATE(2025), 1, sym_comment, - STATE(3767), 1, + STATE(3779), 1, sym_arguments, - STATE(3893), 1, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4248), 3, + ACTIONS(4291), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4281), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4258), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 11, + ACTIONS(4229), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -224829,7 +227174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224845,10 +227190,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(4218), 17, + ACTIONS(4225), 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, @@ -224863,16 +227209,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9876] = 5, + [9834] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2025), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4279), 1, + anon_sym_EQ, + ACTIONS(4287), 1, + anon_sym_EQ_GT, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + STATE(2026), 1, sym_comment, - ACTIONS(4264), 22, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, + sym_type_arguments, + ACTIONS(4291), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4281), 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4229), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -224881,30 +227278,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4266), 35, + [9928] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(984), 1, + anon_sym_EQ_GT, + ACTIONS(1178), 1, + anon_sym_EQ, + ACTIONS(1227), 1, + anon_sym_COLON, + ACTIONS(4223), 1, + sym_identifier, + STATE(2027), 1, + sym_comment, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224920,28 +227321,18 @@ 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, - [9947] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2026), 1, - sym_comment, - ACTIONS(4268), 22, + ACTIONS(120), 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, @@ -224956,128 +227347,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, - ACTIONS(4270), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10010] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4353), 1, + anon_sym_QMARK, + STATE(2028), 1, + sym_comment, + ACTIONS(4349), 5, anon_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, - [10018] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2027), 1, - sym_comment, - ACTIONS(4428), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [10087] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1225), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4334), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4375), 1, - anon_sym_EQ_GT, - STATE(2028), 1, - sym_comment, - ACTIONS(4430), 3, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(209), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -225093,7 +227392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225109,7 +227408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225131,43 +227430,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10168] = 8, + [10090] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4407), 1, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4349), 1, + anon_sym_COLON, + ACTIONS(4351), 1, anon_sym_EQ_GT, STATE(2029), 1, sym_comment, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 19, - sym__automatic_semicolon, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4330), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4339), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4229), 13, 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, @@ -225178,42 +227472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 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, - [10245] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2853), 1, - anon_sym_COLON, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4321), 1, - anon_sym_EQ, - STATE(2030), 1, - sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225229,26 +227488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 21, + ACTIONS(4225), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225258,32 +227498,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10324] = 9, + [10182] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(2778), 1, + ACTIONS(984), 1, anon_sym_EQ_GT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2853), 1, + ACTIONS(1178), 1, + anon_sym_EQ, + ACTIONS(1229), 1, anon_sym_COLON, - STATE(2031), 1, + ACTIONS(4443), 1, + sym_identifier, + STATE(2030), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(213), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225299,30 +227541,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(209), 18, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(120), 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(118), 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, @@ -225337,30 +227567,39 @@ 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, - [10403] = 11, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10264] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1269), 1, + ACTIONS(1235), 1, anon_sym_EQ, - ACTIONS(2063), 1, + ACTIONS(2094), 1, anon_sym_extends, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4433), 1, + ACTIONS(4445), 1, anon_sym_EQ_GT, - STATE(2032), 1, + STATE(2031), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(4389), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4377), 3, + ACTIONS(4394), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225376,11 +227615,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(209), 16, + ACTIONS(213), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -225392,8 +227633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225412,18 +227652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10486] = 8, + [10348] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(1178), 1, anon_sym_EQ, - ACTIONS(4288), 1, + ACTIONS(2785), 1, anon_sym_EQ_GT, - STATE(2033), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2978), 1, + anon_sym_COLON, + STATE(2032), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225439,13 +227681,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(4222), 19, + ACTIONS(213), 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, @@ -225459,7 +227700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225481,14 +227722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10563] = 4, + [10427] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2034), 1, + STATE(2033), 1, sym_comment, - ACTIONS(3265), 57, + ACTIONS(4447), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225499,7 +227740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -225546,84 +227786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [10632] = 5, + anon_sym_global, + [10496] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2035), 1, - sym_comment, - ACTIONS(3163), 22, - anon_sym_STAR, + ACTIONS(4279), 1, 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(3165), 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, - [10703] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1225), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4375), 1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - STATE(2036), 1, + STATE(2034), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225639,7 +227814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 19, + ACTIONS(4229), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -225659,7 +227834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225681,14 +227856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10780] = 5, + [10573] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2037), 1, + STATE(2035), 1, sym_comment, - ACTIONS(4272), 22, + ACTIONS(3186), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225711,7 +227886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4274), 35, + ACTIONS(3188), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -225747,20 +227922,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10851] = 9, + [10644] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2891), 1, + ACTIONS(2918), 1, anon_sym_COLON, - STATE(2038), 1, + ACTIONS(4234), 1, + anon_sym_EQ_GT, + ACTIONS(4303), 1, + anon_sym_EQ, + STATE(2036), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225776,7 +227951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 18, + ACTIONS(4229), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -225795,7 +227970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225817,20 +227992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10930] = 9, + [10723] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1178), 1, + anon_sym_EQ, ACTIONS(2785), 1, + anon_sym_EQ_GT, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2891), 1, + ACTIONS(2940), 1, anon_sym_COLON, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4321), 1, - anon_sym_EQ, - STATE(2039), 1, + STATE(2037), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225846,7 +228021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, + ACTIONS(213), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -225865,7 +228040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225887,20 +228062,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11009] = 9, + [10802] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1193), 1, + ACTIONS(1178), 1, anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, + anon_sym_EQ_GT, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2933), 1, + ACTIONS(2918), 1, anon_sym_COLON, - STATE(2040), 1, + STATE(2038), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225916,7 +228091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 18, + ACTIONS(213), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -225935,7 +228110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225957,94 +228132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11088] = 13, + [10881] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1225), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4334), 1, - anon_sym_COLON, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(4375), 1, - anon_sym_EQ_GT, - STATE(2041), 1, - sym_comment, - ACTIONS(4377), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4435), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(209), 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(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [11175] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2933), 1, - anon_sym_COLON, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4321), 1, + ACTIONS(4341), 1, anon_sym_EQ, - STATE(2042), 1, + STATE(2039), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226060,12 +228157,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(4222), 18, + ACTIONS(4229), 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, @@ -226079,7 +228178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226101,18 +228200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11254] = 8, + [10956] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2043), 1, + ACTIONS(2898), 1, + anon_sym_COLON, + ACTIONS(4234), 1, + anon_sym_EQ_GT, + ACTIONS(4303), 1, + anon_sym_EQ, + STATE(2040), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226128,12 +228229,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(209), 19, + ACTIONS(4229), 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, @@ -226148,7 +228248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226170,18 +228270,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11331] = 8, + [11035] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1178), 1, + anon_sym_EQ, ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4227), 1, anon_sym_EQ_GT, - ACTIONS(4321), 1, - anon_sym_EQ, - STATE(2044), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2898), 1, + anon_sym_COLON, + STATE(2041), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226197,12 +228299,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(4222), 19, + ACTIONS(213), 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, @@ -226217,7 +228318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226239,37 +228340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11408] = 14, + [11114] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4419), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(4421), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4355), 1, + anon_sym_COLON, + ACTIONS(4357), 1, anon_sym_EQ_GT, - STATE(2045), 1, + ACTIONS(4389), 1, + anon_sym_LBRACK, + STATE(2042), 1, sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4307), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4315), 3, - anon_sym_GT, + ACTIONS(4394), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(2094), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(213), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -226280,7 +228377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226296,10 +228393,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(4218), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -226311,223 +228409,278 @@ 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, - [11497] = 10, + [11199] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4321), 1, - anon_sym_EQ, - ACTIONS(4439), 1, - anon_sym_in, - ACTIONS(4442), 1, - anon_sym_of, - STATE(2046), 1, + STATE(2043), 1, sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4449), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_await, + anon_sym_yield, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11578] = 5, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [11268] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2047), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4242), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4449), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(4244), 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [11649] = 8, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [11337] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - ACTIONS(4254), 1, - anon_sym_EQ_GT, - STATE(2048), 1, + STATE(2045), 1, sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4451), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_await, + anon_sym_yield, 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 21, - anon_sym_STAR, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [11406] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2046), 1, + sym_comment, + ACTIONS(4451), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11726] = 4, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [11475] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2049), 1, + STATE(2047), 1, sym_comment, - ACTIONS(3407), 57, + ACTIONS(4453), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226538,7 +228691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -226585,14 +228737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [11795] = 5, + anon_sym_global, + [11544] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2050), 1, + STATE(2048), 1, sym_comment, - ACTIONS(3205), 22, + ACTIONS(4271), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226615,7 +228768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3207), 35, + ACTIONS(4273), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -226651,22 +228804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11866] = 10, + [11615] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1193), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4311), 1, anon_sym_EQ, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(2778), 1, + ACTIONS(4313), 1, anon_sym_EQ_GT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4444), 1, - anon_sym_of, - STATE(2051), 1, + STATE(2049), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226682,12 +228831,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(209), 18, + ACTIONS(4229), 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, @@ -226701,9 +228851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 20, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -226722,20 +228873,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11947] = 9, + [11692] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2911), 1, + ACTIONS(2940), 1, anon_sym_COLON, - ACTIONS(4227), 1, + ACTIONS(4234), 1, anon_sym_EQ_GT, - ACTIONS(4321), 1, + ACTIONS(4303), 1, anon_sym_EQ, - STATE(2052), 1, + STATE(2050), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226751,7 +228902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, + ACTIONS(4229), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -226770,7 +228921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226792,27 +228943,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12026] = 11, + [11771] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1243), 1, + ACTIONS(1290), 1, anon_sym_EQ, - ACTIONS(2063), 1, + ACTIONS(2094), 1, anon_sym_extends, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4426), 1, + ACTIONS(4455), 1, anon_sym_EQ_GT, - STATE(2053), 1, + STATE(2051), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(4389), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4377), 3, + ACTIONS(4394), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226828,12 +228979,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(209), 16, + ACTIONS(213), 16, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -226845,7 +228995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + anon_sym_implements, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226864,30 +229015,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12109] = 10, + [11854] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_QMARK, - ACTIONS(211), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4426), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4351), 1, anon_sym_EQ_GT, - STATE(2054), 1, + STATE(2052), 1, sym_comment, - ACTIONS(4423), 3, - anon_sym_COMMA, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, + sym_type_arguments, + ACTIONS(4291), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4281), 3, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(209), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4229), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -226897,7 +229057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226913,7 +229073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4225), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226923,30 +229083,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, - [12190] = 6, + [11947] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2055), 1, + STATE(2053), 1, sym_comment, - ACTIONS(4446), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4234), 22, + ACTIONS(4267), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226969,12 +229122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4236), 32, + ACTIONS(4269), 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, @@ -227002,55 +229158,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12263] = 8, + [12018] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4375), 1, - anon_sym_EQ_GT, - STATE(2056), 1, + STATE(2054), 1, sym_comment, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4263), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -227071,109 +229188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12340] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2057), 1, - sym_comment, - ACTIONS(4448), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [12409] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2061), 1, - anon_sym_QMARK, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(4375), 1, - anon_sym_EQ_GT, - STATE(2058), 1, - sym_comment, - ACTIONS(4377), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2063), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(209), 14, + ACTIONS(4265), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227189,8 +229215,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(118), 19, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12089] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2055), 1, + sym_comment, + ACTIONS(4259), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -227199,7 +229242,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, @@ -227209,48 +229254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12494] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4325), 1, - anon_sym_DOT, - ACTIONS(4328), 1, - anon_sym_LT, - ACTIONS(4403), 1, - anon_sym_EQ, - ACTIONS(4405), 1, - anon_sym_EQ_GT, - STATE(2059), 1, - sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4307), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4315), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(4261), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227266,38 +229281,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(4218), 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, - [12583] = 9, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12160] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1178), 1, + anon_sym_EQ, ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2971), 1, - anon_sym_COLON, - ACTIONS(4227), 1, anon_sym_EQ_GT, - ACTIONS(4321), 1, - anon_sym_EQ, - STATE(2060), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2056), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227313,11 +229317,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(4222), 18, + ACTIONS(213), 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, @@ -227332,7 +229337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227354,56 +229359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12662] = 9, + [12237] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2971), 1, - anon_sym_COLON, - STATE(2061), 1, + STATE(2057), 1, sym_comment, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 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(118), 21, + ACTIONS(4255), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -227424,30 +229389,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12741] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4338), 1, - anon_sym_EQ, - ACTIONS(4344), 1, - anon_sym_EQ_GT, - ACTIONS(4346), 1, - anon_sym_QMARK, - STATE(2062), 1, - sym_comment, - ACTIONS(4341), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4222), 15, + ACTIONS(4257), 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, @@ -227457,7 +229425,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + [12308] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1178), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + anon_sym_EQ_GT, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2860), 1, + anon_sym_COLON, + STATE(2058), 1, + sym_comment, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227473,7 +229454,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(4218), 21, + ACTIONS(213), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227495,16 +229495,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12822] = 7, + [12387] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(2860), 1, + anon_sym_COLON, + ACTIONS(4234), 1, + anon_sym_EQ_GT, + ACTIONS(4303), 1, anon_sym_EQ, - STATE(2063), 1, + STATE(2059), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227520,14 +229524,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(4222), 20, + ACTIONS(4229), 18, sym__automatic_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, @@ -227541,7 +229543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227563,14 +229565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12897] = 4, + [12466] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2064), 1, + STATE(2060), 1, sym_comment, - ACTIONS(4450), 57, + ACTIONS(4457), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227591,7 +229593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -227628,134 +229629,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [12966] = 8, + anon_sym_global, + [12535] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2065), 1, + STATE(2061), 1, sym_comment, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4459), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_await, + anon_sym_yield, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13043] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(4292), 1, anon_sym_LT, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - STATE(2066), 1, - sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - ACTIONS(4258), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4248), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4222), 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [12604] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2062), 1, + sym_comment, + ACTIONS(4461), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + 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_global, + [12673] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4234), 1, + anon_sym_EQ_GT, + ACTIONS(4303), 1, + anon_sym_EQ, + STATE(2063), 1, + sym_comment, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4229), 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(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227765,47 +229817,195 @@ 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, - [13136] = 14, + [12750] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4309), 1, + ACTIONS(4234), 1, + anon_sym_EQ_GT, + ACTIONS(4341), 1, + anon_sym_EQ, + STATE(2064), 1, + sym_comment, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4229), 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(4325), 1, anon_sym_DOT, - ACTIONS(4328), 1, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4225), 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, - ACTIONS(4397), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12827] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1217), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(2094), 1, + anon_sym_extends, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4355), 1, + anon_sym_COLON, + ACTIONS(4389), 1, + anon_sym_LBRACK, + ACTIONS(4392), 1, anon_sym_EQ_GT, - STATE(2067), 1, + STATE(2065), 1, sym_comment, - STATE(3867), 1, + ACTIONS(4394), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4463), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(213), 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(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12914] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4351), 1, + anon_sym_EQ_GT, + STATE(2066), 1, + sym_comment, + STATE(3779), 1, + sym_arguments, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4307), 2, + ACTIONS(4281), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4315), 3, + ACTIONS(4291), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(4229), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -227815,7 +230015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227831,7 +230031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4225), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227849,14 +230049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13225] = 5, + [13007] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2068), 1, + STATE(2067), 1, sym_comment, - ACTIONS(4276), 22, + ACTIONS(4467), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4255), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227879,15 +230083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4278), 35, - sym__automatic_semicolon, + ACTIONS(4257), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -227915,14 +230116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13296] = 5, + [13080] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2069), 1, + STATE(2068), 1, sym_comment, - ACTIONS(4238), 22, + ACTIONS(4469), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4259), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227945,15 +230150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4240), 35, - sym__automatic_semicolon, + ACTIONS(4261), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -227981,18 +230183,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13367] = 8, + [13153] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1269), 1, + anon_sym_EQ, + ACTIONS(2092), 1, + anon_sym_QMARK, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4254), 1, + ACTIONS(4389), 1, + anon_sym_LBRACK, + ACTIONS(4392), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, - anon_sym_EQ, - STATE(2070), 1, + STATE(2069), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4394), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2094), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(213), 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(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228008,27 +230236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228038,9 +230246,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, @@ -228050,49 +230256,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13444] = 6, + [13238] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1104), 1, + anon_sym_EQ, ACTIONS(2785), 1, + anon_sym_EQ_GT, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2071), 1, + STATE(2070), 1, sym_comment, - ACTIONS(4452), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4238), 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(4240), 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, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228108,6 +230283,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(213), 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, @@ -228117,16 +230303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13517] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2072), 1, - sym_comment, - ACTIONS(4234), 22, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -228147,33 +230325,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4236), 35, - sym__automatic_semicolon, + [13315] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(126), 1, + anon_sym_QMARK, + ACTIONS(215), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4435), 1, + anon_sym_EQ_GT, + STATE(2071), 1, + sym_comment, + ACTIONS(4432), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -228183,18 +230358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13588] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1211), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4407), 1, - anon_sym_EQ_GT, - STATE(2073), 1, - sym_comment, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228210,27 +230374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 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(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228252,36 +230396,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13665] = 14, + [13396] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - ACTIONS(4254), 1, - anon_sym_EQ_GT, - ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(4325), 1, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(4327), 1, anon_sym_DOT, - ACTIONS(4328), 1, + ACTIONS(4333), 1, anon_sym_LT, - STATE(2074), 1, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(4422), 1, + anon_sym_EQ_GT, + STATE(2072), 1, sym_comment, - STATE(3867), 1, + STATE(3806), 1, sym_type_arguments, - ACTIONS(4309), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4315), 2, + ACTIONS(4339), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4330), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(4229), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -228292,7 +230437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228308,11 +230453,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(4218), 18, + ACTIONS(4225), 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, @@ -228327,27 +230471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13754] = 11, + [13485] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3023), 1, + ACTIONS(4313), 1, anon_sym_EQ_GT, - ACTIONS(4372), 1, - anon_sym_LBRACK, - STATE(2075), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + STATE(2073), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4377), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228363,12 +230498,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(209), 16, + ACTIONS(4229), 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, @@ -228380,16 +230518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(4225), 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, @@ -228399,227 +230540,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13837] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2076), 1, - sym_comment, - ACTIONS(4454), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [13906] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2077), 1, - sym_comment, - ACTIONS(4456), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [13975] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2078), 1, - sym_comment, - ACTIONS(4458), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [14044] = 12, + [13562] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4334), 1, - anon_sym_COLON, - ACTIONS(4336), 1, + ACTIONS(4361), 1, anon_sym_EQ_GT, - ACTIONS(4372), 1, - anon_sym_LBRACK, - STATE(2079), 1, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4373), 1, + anon_sym_QMARK, + STATE(2074), 1, sym_comment, - ACTIONS(4377), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2063), 3, + ACTIONS(4370), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(209), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -228631,7 +230573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228647,7 +230589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228657,7 +230599,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, @@ -228667,20 +230611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14129] = 9, + [13643] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1193), 1, + ACTIONS(1217), 1, anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2911), 1, - anon_sym_COLON, - STATE(2080), 1, + ACTIONS(4392), 1, + anon_sym_EQ_GT, + STATE(2075), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228696,14 +230638,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(209), 18, - sym__automatic_semicolon, + ACTIONS(213), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -228715,7 +230658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228737,18 +230680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14208] = 8, + [13720] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4227), 1, + ACTIONS(4234), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, + ACTIONS(4303), 1, anon_sym_EQ, - STATE(2081), 1, + ACTIONS(4471), 1, + anon_sym_in, + ACTIONS(4474), 1, + anon_sym_of, + STATE(2076), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228764,12 +230711,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(4222), 19, + ACTIONS(4229), 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, @@ -228784,10 +230730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -228806,18 +230751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14285] = 8, + [13801] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4288), 1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - STATE(2082), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + STATE(2077), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228833,15 +230778,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(4222), 19, - sym__automatic_semicolon, + ACTIONS(4229), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -228853,7 +230798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228875,193 +230820,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14362] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [13878] = 10, ACTIONS(5), 1, sym_html_comment, - STATE(2083), 1, - sym_comment, - ACTIONS(4294), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [14431] = 4, - ACTIONS(3), 1, + ACTIONS(1217), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2084), 1, + ACTIONS(4355), 1, + anon_sym_COLON, + ACTIONS(4392), 1, + anon_sym_EQ_GT, + STATE(2078), 1, sym_comment, - ACTIONS(3389), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [14500] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4452), 1, + ACTIONS(4476), 3, anon_sym_COMMA, - STATE(2085), 1, - sym_comment, - ACTIONS(4238), 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(4240), 33, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(213), 15, 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, @@ -229071,23 +230853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14572] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(1295), 1, - anon_sym_EQ_GT, - ACTIONS(4409), 1, - sym_identifier, - STATE(2086), 1, - sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229103,17 +230869,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(118), 36, + ACTIONS(120), 21, 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, @@ -229128,28 +230888,17 @@ 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, - [14650] = 6, + [13959] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4446), 1, - anon_sym_COMMA, - STATE(2087), 1, + STATE(2079), 1, sym_comment, - ACTIONS(4234), 22, + ACTIONS(3200), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229172,14 +230921,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4236), 33, + ACTIONS(3202), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -229206,16 +230957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14722] = 7, + [14030] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(1104), 1, anon_sym_EQ, - STATE(2088), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4445), 1, + anon_sym_EQ_GT, + STATE(2080), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229231,15 +230984,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(4222), 19, + ACTIONS(213), 19, + 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -229251,7 +231004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229273,36 +231026,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14796] = 14, + [14107] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4309), 1, + ACTIONS(4324), 1, anon_sym_LBRACK, - ACTIONS(4325), 1, + ACTIONS(4327), 1, anon_sym_DOT, - ACTIONS(4328), 1, + ACTIONS(4333), 1, anon_sym_LT, - ACTIONS(4350), 1, + ACTIONS(4412), 1, + anon_sym_EQ, + ACTIONS(4414), 1, anon_sym_EQ_GT, - STATE(2089), 1, + STATE(2081), 1, sym_comment, - STATE(3867), 1, + STATE(3806), 1, sym_type_arguments, - ACTIONS(4307), 2, + ACTIONS(4339), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4315), 3, + ACTIONS(4330), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 13, + ACTIONS(4229), 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, @@ -229313,7 +231067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229329,7 +231083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4225), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229347,55 +231101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14884] = 9, + [14196] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - ACTIONS(4348), 1, - anon_sym_COLON, - STATE(2090), 1, + STATE(2082), 1, sym_comment, - ACTIONS(4460), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4222), 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(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4243), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -229416,18 +231131,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14962] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1243), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4426), 1, - anon_sym_EQ_GT, - STATE(2091), 1, - sym_comment, - ACTIONS(2780), 15, + ACTIONS(4245), 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, + [14267] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1178), 1, + anon_sym_EQ, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(2785), 1, + anon_sym_EQ_GT, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4479), 1, + anon_sym_of, + STATE(2083), 1, + sym_comment, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229443,13 +231198,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(209), 18, + ACTIONS(213), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -229462,10 +231217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -229484,18 +231238,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15038] = 8, + [14348] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4426), 1, + ACTIONS(3048), 1, anon_sym_EQ_GT, - STATE(2092), 1, + ACTIONS(4389), 1, + anon_sym_LBRACK, + STATE(2084), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(2094), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4394), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229511,14 +231274,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 18, + ACTIONS(213), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + [14431] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4437), 1, + anon_sym_EQ, + ACTIONS(4439), 1, + anon_sym_EQ_GT, + STATE(2085), 1, + sym_comment, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4339), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4330), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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, + [14520] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1250), 1, + anon_sym_EQ, + ACTIONS(2094), 1, + anon_sym_extends, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4435), 1, + anon_sym_EQ_GT, + STATE(2086), 1, + sym_comment, + ACTIONS(4389), 2, anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4394), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(213), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -229530,8 +231438,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [14603] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2087), 1, + sym_comment, + ACTIONS(4275), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -229552,27 +231487,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15114] = 9, + ACTIONS(4277), 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, + [14674] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4279), 1, anon_sym_EQ, - ACTIONS(4254), 1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - STATE(2093), 1, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4339), 1, + anon_sym_extends, + STATE(2088), 1, sym_comment, - ACTIONS(4460), 3, - anon_sym_COMMA, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4324), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4222), 15, + anon_sym_LBRACK, + ACTIONS(4330), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -229583,7 +231563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229599,7 +231579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229609,40 +231589,72 @@ 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, - [15192] = 9, + [14763] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4254), 1, - anon_sym_EQ_GT, - ACTIONS(4300), 1, - anon_sym_EQ, - STATE(2094), 1, + STATE(2089), 1, sym_comment, - ACTIONS(4341), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4222), 15, + ACTIONS(4259), 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(4261), 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, @@ -229652,7 +231664,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + [14834] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2978), 1, + anon_sym_COLON, + ACTIONS(4234), 1, + anon_sym_EQ_GT, + ACTIONS(4303), 1, + anon_sym_EQ, + STATE(2090), 1, + sym_comment, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229668,7 +231693,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(4218), 21, + ACTIONS(4229), 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(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229690,80 +231734,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15270] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [14913] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(2095), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2091), 1, sym_comment, - ACTIONS(4463), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + ACTIONS(4255), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(4257), 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, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [15338] = 7, + anon_sym_satisfies, + [14984] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4321), 1, + ACTIONS(1235), 1, anon_sym_EQ, - STATE(2096), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4445), 1, + anon_sym_EQ_GT, + STATE(2092), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229779,13 +231827,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(4222), 19, + ACTIONS(213), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -229799,7 +231847,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15061] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4392), 1, + anon_sym_EQ_GT, + STATE(2093), 1, + sym_comment, + ACTIONS(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(213), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229821,14 +231938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15412] = 4, + [15138] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2097), 1, + STATE(2094), 1, sym_comment, - ACTIONS(4465), 56, + ACTIONS(4481), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229885,14 +232002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15480] = 4, + anon_sym_global, + [15207] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2098), 1, + STATE(2095), 1, sym_comment, - ACTIONS(4467), 56, + ACTIONS(4483), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229949,49 +232067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15548] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_global, + [15276] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(1295), 1, - anon_sym_EQ_GT, - ACTIONS(4216), 1, - sym_identifier, - STATE(2099), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4469), 1, + anon_sym_COMMA, + STATE(2096), 1, sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4259), 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, @@ -230006,30 +232097,19 @@ 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, - [15626] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1269), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4433), 1, - anon_sym_EQ_GT, - STATE(2100), 1, - sym_comment, - ACTIONS(2780), 15, + ACTIONS(4261), 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, @@ -230045,11 +232125,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(209), 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, + [15348] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4279), 1, + anon_sym_EQ, + ACTIONS(4349), 1, + anon_sym_COLON, + STATE(2097), 1, + sym_comment, + ACTIONS(4485), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -230063,8 +232165,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 21, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230086,22 +232203,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15702] = 9, + [15426] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4375), 1, - anon_sym_EQ_GT, - STATE(2101), 1, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4373), 1, + anon_sym_QMARK, + STATE(2098), 1, sym_comment, - ACTIONS(4423), 3, + ACTIONS(4370), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(209), 15, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230117,7 +232234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230133,7 +232250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230155,26 +232272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15780] = 12, + [15504] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4341), 1, - anon_sym_RBRACK, - ACTIONS(4370), 1, - anon_sym_COMMA, - ACTIONS(4399), 1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - ACTIONS(4469), 1, + ACTIONS(4315), 1, anon_sym_EQ, - ACTIONS(4472), 1, - anon_sym_in, - ACTIONS(4474), 1, - anon_sym_COLON, - STATE(2102), 1, + STATE(2099), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4370), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230190,7 +232303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230206,9 +232319,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(4218), 20, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -230227,40 +232341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15864] = 11, + [15582] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4361), 1, - anon_sym_COMMA, - ACTIONS(4423), 1, - anon_sym_RBRACK, - ACTIONS(4476), 1, - anon_sym_COLON, - ACTIONS(4478), 1, - anon_sym_EQ_GT, - STATE(2103), 1, + ACTIONS(4303), 1, + anon_sym_EQ, + STATE(2100), 1, sym_comment, - ACTIONS(209), 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(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230276,7 +232366,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(118), 21, + ACTIONS(4229), 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(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230298,18 +232408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15946] = 8, + [15656] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4433), 1, + ACTIONS(4455), 1, anon_sym_EQ_GT, - STATE(2104), 1, + STATE(2101), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230325,7 +232435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 18, + ACTIONS(213), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -230344,7 +232454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230366,30 +232476,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16022] = 11, + [15732] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1225), 1, + ACTIONS(1310), 1, anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4375), 1, + ACTIONS(4389), 1, + anon_sym_LBRACK, + ACTIONS(4488), 1, anon_sym_EQ_GT, - STATE(2105), 1, + STATE(2102), 1, sym_comment, - ACTIONS(4372), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4377), 2, + ACTIONS(2094), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4394), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(209), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -230401,7 +232512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230417,11 +232528,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(118), 19, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -230437,31 +232547,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16104] = 11, + [15814] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1321), 1, + ACTIONS(1290), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4455), 1, anon_sym_EQ_GT, - STATE(2106), 1, + STATE(2103), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(213), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4377), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_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(209), 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, + [15890] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1269), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4392), 1, + anon_sym_EQ_GT, + STATE(2104), 1, + sym_comment, + ACTIONS(4432), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(213), 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, @@ -230473,7 +232646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230489,16 +232662,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(118), 18, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -230508,23 +232684,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16186] = 9, + [15968] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - ACTIONS(4395), 1, + ACTIONS(4404), 1, sym_identifier, - STATE(2107), 1, + STATE(2105), 1, sym_comment, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230540,7 +232716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -230577,20 +232753,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16264] = 9, + [16046] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4321), 1, + ACTIONS(4341), 1, anon_sym_EQ, - ACTIONS(4439), 1, - anon_sym_in, - ACTIONS(4442), 1, - anon_sym_of, - STATE(2108), 1, + ACTIONS(4387), 1, + anon_sym_EQ_GT, + STATE(2106), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230606,13 +232780,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(4222), 18, - sym__automatic_semicolon, + ACTIONS(4229), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -230625,9 +232798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 20, + anon_sym_implements, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -230646,80 +232821,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16342] = 4, + [16122] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2109), 1, - sym_comment, - ACTIONS(4482), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [16410] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(1276), 1, anon_sym_EQ, - STATE(2110), 1, + ACTIONS(1282), 1, + anon_sym_EQ_GT, + ACTIONS(4441), 1, + sym_identifier, + STATE(2107), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(213), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230735,28 +232853,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(120), 36, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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(4218), 21, + [16200] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4467), 1, + anon_sym_COMMA, + STATE(2108), 1, + sym_comment, + ACTIONS(4255), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -230777,82 +232922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16484] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2111), 1, - sym_comment, - ACTIONS(4484), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(4257), 33, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [16552] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4388), 1, - anon_sym_EQ, - ACTIONS(4390), 1, - anon_sym_EQ_GT, - STATE(2112), 1, - sym_comment, - ACTIONS(4229), 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230868,15 +232947,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(4222), 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, @@ -230886,110 +232956,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4218), 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, - [16628] = 4, + [16272] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2113), 1, + ACTIONS(1276), 1, + anon_sym_EQ, + ACTIONS(1282), 1, + anon_sym_EQ_GT, + ACTIONS(4416), 1, + sym_identifier, + STATE(2109), 1, sym_comment, - ACTIONS(4484), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [16696] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(1295), 1, - anon_sym_EQ_GT, - ACTIONS(4415), 1, - sym_identifier, - STATE(2114), 1, - sym_comment, - ACTIONS(209), 2, + ACTIONS(213), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231005,7 +232988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(120), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -231042,146 +233025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16774] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2115), 1, - sym_comment, - ACTIONS(4486), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [16842] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2116), 1, - sym_comment, - ACTIONS(4486), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [16910] = 8, + [16350] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(4311), 1, anon_sym_EQ, - ACTIONS(4344), 1, - anon_sym_EQ_GT, - STATE(2117), 1, + STATE(2110), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231197,13 +233050,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(4222), 18, + ACTIONS(4229), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -231216,7 +233070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231238,235 +233092,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16986] = 4, + [16424] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2118), 1, - sym_comment, - ACTIONS(4488), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, + ACTIONS(1276), 1, + anon_sym_EQ, + ACTIONS(1282), 1, + anon_sym_EQ_GT, + ACTIONS(4443), 1, sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [17054] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2119), 1, + STATE(2111), 1, sym_comment, - ACTIONS(4490), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + ACTIONS(213), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(161), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 36, + anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + 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_TILDE, - anon_sym_void, - anon_sym_delete, + 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, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [17122] = 4, + anon_sym_satisfies, + [16502] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2120), 1, - sym_comment, - ACTIONS(4492), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - 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, - [17190] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1307), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(4494), 1, + ACTIONS(1282), 1, anon_sym_EQ_GT, - STATE(2121), 1, + ACTIONS(4490), 1, + sym_identifier, + STATE(2112), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4377), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(209), 15, + ACTIONS(213), 2, + sym__automatic_semicolon, sym__ternary_qmark, + ACTIONS(161), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 36, + anon_sym_STAR, anon_sym_as, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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(2780), 15, + [16580] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4435), 1, + anon_sym_EQ_GT, + STATE(2113), 1, + sym_comment, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231482,16 +233257,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(118), 18, + ACTIONS(213), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -231501,32 +233298,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17272] = 11, + [16656] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1281), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4372), 1, + ACTIONS(4324), 1, anon_sym_LBRACK, - ACTIONS(4478), 1, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4351), 1, anon_sym_EQ_GT, - STATE(2122), 1, + STATE(2114), 1, sym_comment, - ACTIONS(2063), 2, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4339), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4377), 3, + ACTIONS(4330), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(209), 15, + ACTIONS(4229), 13, 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, @@ -231537,7 +233338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231553,7 +233354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(4225), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231568,22 +233369,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17354] = 8, + [16744] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(1250), 1, anon_sym_EQ, - ACTIONS(4390), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4435), 1, anon_sym_EQ_GT, - STATE(2123), 1, + STATE(2115), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231599,12 +233399,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(4222), 18, + ACTIONS(213), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -231617,8 +233418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231640,23 +233440,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17430] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [16820] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1326), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4389), 1, + anon_sym_LBRACK, + ACTIONS(4492), 1, anon_sym_EQ_GT, - ACTIONS(4401), 1, - sym_identifier, - STATE(2124), 1, + STATE(2116), 1, sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, + ACTIONS(2094), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4394), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(213), 15, sym__ternary_qmark, - ACTIONS(159), 15, + 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(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231672,59 +233492,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(118), 36, + ACTIONS(120), 18, 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, - [17508] = 9, + [16902] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4338), 1, + ACTIONS(1256), 1, anon_sym_EQ, - ACTIONS(4346), 1, - anon_sym_QMARK, - STATE(2125), 1, - sym_comment, - ACTIONS(4341), 3, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4432), 1, + anon_sym_RBRACK, + ACTIONS(4494), 1, anon_sym_COLON, - ACTIONS(4222), 15, + ACTIONS(4496), 1, + anon_sym_EQ_GT, + STATE(2117), 1, + sym_comment, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231740,7 +233544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231756,7 +233560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231778,23 +233582,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17586] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [16984] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(1217), 1, anon_sym_EQ, - ACTIONS(1295), 1, + ACTIONS(2094), 1, + anon_sym_extends, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4392), 1, anon_sym_EQ_GT, - ACTIONS(4496), 1, - sym_identifier, - STATE(2126), 1, + STATE(2118), 1, sym_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, + ACTIONS(4389), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4394), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(213), 15, sym__ternary_qmark, - ACTIONS(159), 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(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231810,55 +233633,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(118), 36, + ACTIONS(120), 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, - [17664] = 8, + [17066] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4344), 1, - anon_sym_EQ_GT, - ACTIONS(4354), 1, + ACTIONS(4303), 1, anon_sym_EQ, - STATE(2127), 1, + ACTIONS(4471), 1, + anon_sym_in, + ACTIONS(4474), 1, + anon_sym_of, + STATE(2119), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231874,13 +233682,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(4222), 18, + ACTIONS(4229), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -231893,10 +233701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -231915,42 +233722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17740] = 11, + [17144] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4359), 1, + anon_sym_EQ, + ACTIONS(4361), 1, anon_sym_EQ_GT, - ACTIONS(4372), 1, - anon_sym_LBRACK, - STATE(2128), 1, + STATE(2120), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4377), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(209), 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(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231966,16 +233749,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(118), 18, + ACTIONS(4229), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4225), 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, @@ -231985,202 +233790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17821] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2129), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4504), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4506), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4763), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17948] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2130), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4524), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4526), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4658), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18075] = 7, + [17220] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4354), 1, + ACTIONS(4279), 1, anon_sym_EQ, - STATE(2131), 1, + STATE(2121), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232196,14 +233815,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(4222), 18, + ACTIONS(4229), 19, 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, @@ -232215,7 +233835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232237,38 +233857,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18148] = 10, + [17294] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4341), 1, - anon_sym_RBRACK, - ACTIONS(4370), 1, - anon_sym_COMMA, - ACTIONS(4399), 1, - anon_sym_EQ_GT, - ACTIONS(4469), 1, + ACTIONS(1276), 1, anon_sym_EQ, - STATE(2132), 1, + ACTIONS(1282), 1, + anon_sym_EQ_GT, + ACTIONS(4223), 1, + sym_identifier, + STATE(2122), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 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(4229), 15, + ACTIONS(161), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232284,11 +233889,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(4218), 21, + ACTIONS(120), 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, @@ -232303,21 +233914,55 @@ 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, - [18227] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [17372] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(1302), 1, anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4389), 1, + anon_sym_LBRACK, + ACTIONS(4496), 1, anon_sym_EQ_GT, - STATE(2133), 1, + STATE(2123), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2094), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4394), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(213), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232333,37 +233978,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(4222), 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(4218), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -232373,113 +233997,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18302] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2134), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4085), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4087), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4795), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18429] = 9, + [17454] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1281), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4478), 1, + ACTIONS(4385), 1, + anon_sym_EQ, + ACTIONS(4387), 1, anon_sym_EQ_GT, - ACTIONS(4528), 1, - anon_sym_COLON, - STATE(2135), 1, + STATE(2124), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232495,12 +234024,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(209), 16, + ACTIONS(4229), 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, @@ -232512,7 +234042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + anon_sym_implements, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232534,22 +234065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18506] = 10, + [17530] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(4341), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(4361), 1, anon_sym_EQ_GT, - ACTIONS(4472), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_COLON, - STATE(2136), 1, + STATE(2125), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232565,12 +234092,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(4222), 16, + ACTIONS(4229), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -232582,9 +234111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 20, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -232603,18 +234133,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18585] = 8, + [17606] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4279), 1, anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3023), 1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - STATE(2137), 1, + STATE(2126), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4485), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4229), 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(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232630,12 +234180,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 17, - sym__automatic_semicolon, + ACTIONS(4225), 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, + [17684] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4370), 1, + anon_sym_RBRACK, + ACTIONS(4378), 1, + anon_sym_COMMA, + ACTIONS(4422), 1, + anon_sym_EQ_GT, + ACTIONS(4498), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_in, + ACTIONS(4503), 1, + anon_sym_COLON, + STATE(2127), 1, + sym_comment, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -232648,10 +234237,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -232670,87 +234274,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18660] = 34, + [17768] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2138), 1, + STATE(2128), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4532), 2, + ACTIONS(4511), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4534), 2, + ACTIONS(4513), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4655), 6, + STATE(4663), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232763,154 +234367,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18787] = 8, + [17895] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4363), 1, - anon_sym_EQ, - ACTIONS(4365), 1, - anon_sym_EQ_GT, - STATE(2139), 1, - sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, 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(4218), 21, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 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(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2129), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 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, - [18862] = 34, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4531), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4533), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4669), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18022] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2140), 1, + STATE(2130), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4536), 2, + ACTIONS(4084), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4538), 2, + ACTIONS(4086), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4715), 6, + STATE(4724), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232923,20 +234553,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18989] = 8, + [18149] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, + ACTIONS(4315), 1, anon_sym_EQ, - STATE(2141), 1, + STATE(2131), 1, sym_comment, - ACTIONS(4341), 3, + ACTIONS(4370), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232952,7 +234582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232968,7 +234598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232990,109 +234620,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19064] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2142), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4540), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4542), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4755), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19191] = 6, + [18224] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4452), 1, + ACTIONS(4469), 1, anon_sym_COMMA, - STATE(2143), 1, + STATE(2132), 1, sym_comment, - ACTIONS(4238), 22, + ACTIONS(4259), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -233115,7 +234652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4240), 32, + ACTIONS(4261), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -233148,28 +234685,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [19262] = 10, + [18295] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4361), 1, + ACTIONS(4467), 1, anon_sym_COMMA, - ACTIONS(4423), 1, - anon_sym_RBRACK, - ACTIONS(4478), 1, - anon_sym_EQ_GT, - STATE(2144), 1, + STATE(2133), 1, sym_comment, - ACTIONS(209), 15, + ACTIONS(4255), 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(4257), 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, @@ -233179,7 +234750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + [18366] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4385), 1, + anon_sym_EQ, + STATE(2134), 1, + sym_comment, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233195,7 +234775,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(118), 21, + ACTIONS(4229), 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(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233217,22 +234816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19341] = 10, + [18439] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(1302), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4496), 1, anon_sym_EQ_GT, - ACTIONS(4472), 1, - anon_sym_in, - ACTIONS(4474), 1, + ACTIONS(4535), 1, anon_sym_COLON, - STATE(2145), 1, + STATE(2135), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233248,7 +234845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(213), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233265,9 +234862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -233286,20 +234884,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19420] = 9, + [18516] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, + anon_sym_STAR, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2136), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4537), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4539), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4845), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18643] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1281), 1, + ACTIONS(1302), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4476), 1, + ACTIONS(4494), 1, anon_sym_COLON, - ACTIONS(4478), 1, + ACTIONS(4496), 1, anon_sym_EQ_GT, - STATE(2146), 1, + STATE(2137), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233315,7 +235006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 16, + ACTIONS(213), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233332,7 +235023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233354,87 +235045,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19497] = 34, + [18720] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2147), 1, + STATE(2138), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4544), 2, + ACTIONS(4541), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4546), 2, + ACTIONS(4543), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4681), 6, + STATE(4730), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233447,18 +235138,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19624] = 8, + [18847] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(4422), 1, + anon_sym_EQ_GT, + ACTIONS(4501), 1, + anon_sym_in, + ACTIONS(4545), 1, + anon_sym_COLON, + STATE(2139), 1, + sym_comment, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4229), 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(4225), 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, + [18926] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3023), 1, + ACTIONS(4363), 1, + anon_sym_EQ, + ACTIONS(4365), 1, anon_sym_EQ_GT, - STATE(2148), 1, + STATE(2140), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233474,7 +235234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 17, + ACTIONS(4229), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -233492,7 +235252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233514,87 +235274,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19699] = 34, + [19001] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2149), 1, + STATE(2141), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4547), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4549), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4795), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19128] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, + anon_sym_STAR, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2142), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3985), 2, + ACTIONS(3992), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4009), 2, + ACTIONS(4016), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4827), 6, + STATE(4839), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233607,18 +235460,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19826] = 6, + [19255] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, + anon_sym_STAR, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2143), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4551), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4553), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4671), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19382] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4446), 1, + ACTIONS(4370), 1, + anon_sym_RBRACK, + ACTIONS(4378), 1, anon_sym_COMMA, - STATE(2150), 1, + ACTIONS(4422), 1, + anon_sym_EQ_GT, + ACTIONS(4498), 1, + anon_sym_EQ, + STATE(2144), 1, sym_comment, - ACTIONS(4234), 22, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -233639,15 +235622,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4236), 32, - sym__automatic_semicolon, + [19461] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + ACTIONS(4389), 1, + anon_sym_LBRACK, + STATE(2145), 1, + sym_comment, + ACTIONS(2094), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4394), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(213), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19542] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4359), 1, + anon_sym_EQ, + STATE(2146), 1, + sym_comment, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233663,6 +235717,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(4229), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -233672,87 +235736,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [19897] = 34, + ACTIONS(4225), 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, + [19615] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2151), 1, + STATE(2147), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4548), 2, + ACTIONS(4555), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4550), 2, + ACTIONS(4557), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4766), 6, + STATE(4823), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233765,16 +235851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20024] = 7, + [19742] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4388), 1, + ACTIONS(4341), 1, anon_sym_EQ, - STATE(2152), 1, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + STATE(2148), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233790,12 +235878,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(4222), 18, + ACTIONS(4229), 17, + 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, @@ -233808,8 +235896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233831,18 +235918,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20097] = 8, + [19817] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4494), 1, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(4422), 1, anon_sym_EQ_GT, - STATE(2153), 1, + ACTIONS(4501), 1, + anon_sym_in, + ACTIONS(4503), 1, + anon_sym_COLON, + STATE(2149), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233858,12 +235949,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(209), 16, + ACTIONS(4229), 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, @@ -233875,10 +235966,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4225), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -233897,18 +235987,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20171] = 8, + [19896] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(3048), 1, anon_sym_EQ_GT, - STATE(2154), 1, + STATE(2150), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233924,12 +236014,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(4222), 16, + ACTIONS(213), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -233941,7 +236032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233963,18 +236054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20245] = 8, + [19971] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1321), 1, + ACTIONS(1276), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4480), 1, + ACTIONS(3048), 1, anon_sym_EQ_GT, - STATE(2155), 1, + STATE(2151), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233990,11 +236081,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(209), 16, + ACTIONS(213), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -234007,7 +236099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234029,22 +236121,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20319] = 10, + [20046] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1256), 1, anon_sym_EQ, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4397), 1, + anon_sym_COMMA, + ACTIONS(4432), 1, + anon_sym_RBRACK, + ACTIONS(4496), 1, anon_sym_EQ_GT, - ACTIONS(4444), 1, - anon_sym_of, - STATE(2156), 1, + STATE(2152), 1, sym_comment, - ACTIONS(209), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234060,7 +236152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234076,9 +236168,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(118), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -234097,38 +236190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20397] = 10, + [20125] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(4363), 1, anon_sym_EQ, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - ACTIONS(4439), 1, - anon_sym_in, - ACTIONS(4442), 1, - anon_sym_of, - STATE(2157), 1, + STATE(2153), 1, sym_comment, - ACTIONS(4222), 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(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234144,9 +236215,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(4218), 20, + ACTIONS(4229), 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(4225), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -234165,18 +236255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20475] = 8, + [20197] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4419), 1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4421), 1, + ACTIONS(4422), 1, anon_sym_EQ_GT, - STATE(2158), 1, + STATE(2154), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234192,12 +236282,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(4222), 16, + ACTIONS(4229), 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, @@ -234209,7 +236299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234231,18 +236321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20549] = 8, + [20271] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(1326), 1, anon_sym_EQ, - ACTIONS(4421), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4492), 1, anon_sym_EQ_GT, - STATE(2159), 1, + STATE(2155), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234258,11 +236348,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(4222), 16, + ACTIONS(213), 16, 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, @@ -234275,7 +236365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234297,18 +236387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20623] = 8, + [20345] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(4412), 1, anon_sym_EQ, - ACTIONS(4405), 1, + ACTIONS(4414), 1, anon_sym_EQ_GT, - STATE(2160), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234324,7 +236414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(4229), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234341,7 +236431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234363,18 +236453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20697] = 8, + [20419] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(4437), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(4439), 1, anon_sym_EQ_GT, - STATE(2161), 1, + STATE(2157), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234390,12 +236480,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(4222), 16, + ACTIONS(4229), 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, @@ -234407,7 +236497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234429,16 +236519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20771] = 7, + [20493] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4363), 1, + ACTIONS(1104), 1, anon_sym_EQ, - STATE(2162), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4496), 1, + anon_sym_EQ_GT, + STATE(2158), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234454,13 +236546,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(4222), 17, - sym__automatic_semicolon, + ACTIONS(213), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -234472,7 +236563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234494,18 +236585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20843] = 8, + [20567] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4403), 1, + ACTIONS(1302), 1, anon_sym_EQ, - ACTIONS(4405), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4496), 1, anon_sym_EQ_GT, - STATE(2163), 1, + STATE(2159), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234521,12 +236612,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(4222), 16, + ACTIONS(213), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -234538,7 +236629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234560,18 +236651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20917] = 8, + [20641] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4480), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4414), 1, anon_sym_EQ_GT, - STATE(2164), 1, + STATE(2160), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234587,7 +236678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 16, + ACTIONS(4229), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234604,7 +236695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234626,39 +236717,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20991] = 8, + [20715] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1281), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4478), 1, + ACTIONS(4355), 1, + anon_sym_COLON, + ACTIONS(4357), 1, anon_sym_EQ_GT, - STATE(2165), 1, + STATE(2161), 1, sym_comment, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(209), 16, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -234670,7 +236746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234692,20 +236784,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21065] = 9, + [20791] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4334), 1, - anon_sym_COLON, - ACTIONS(4336), 1, + ACTIONS(4357), 1, anon_sym_EQ_GT, - STATE(2166), 1, + ACTIONS(4479), 1, + anon_sym_of, + STATE(2162), 1, sym_comment, - ACTIONS(209), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234721,7 +236815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234737,10 +236831,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(118), 21, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -234759,18 +236852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21141] = 8, + [20869] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4478), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4439), 1, anon_sym_EQ_GT, - STATE(2167), 1, + STATE(2163), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234786,12 +236879,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(209), 16, + ACTIONS(4229), 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, @@ -234803,7 +236896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234825,18 +236918,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21215] = 8, + [20943] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1307), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4494), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4422), 1, anon_sym_EQ_GT, - STATE(2168), 1, + STATE(2164), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234852,63 +236945,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(209), 16, + ACTIONS(4229), 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(118), 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, - [21289] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4341), 1, anon_sym_RBRACK, - ACTIONS(4370), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(2169), 1, - sym_comment, - ACTIONS(4222), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -234920,23 +236962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234958,34 +236984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21365] = 8, + [21017] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1310), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4350), 1, + ACTIONS(4488), 1, anon_sym_EQ_GT, - ACTIONS(4552), 1, - anon_sym_EQ, - STATE(2170), 1, + STATE(2165), 1, sym_comment, - ACTIONS(4222), 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(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235001,223 +237011,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(4218), 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, - [21438] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2171), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4554), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21561] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2172), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4556), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21684] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4348), 1, - anon_sym_COLON, - STATE(2173), 1, - sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -235230,23 +237028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235268,198 +237050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21757] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2174), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4558), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21880] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2175), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4560), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22003] = 8, + [21091] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - ACTIONS(4562), 1, + ACTIONS(4370), 1, + anon_sym_RBRACK, + ACTIONS(4378), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, anon_sym_EQ, - STATE(2176), 1, + STATE(2166), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -235475,7 +237079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235491,7 +237095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235513,18 +237117,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22076] = 8, + [21167] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1387), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4351), 1, anon_sym_EQ_GT, - STATE(2177), 1, + ACTIONS(4471), 1, + anon_sym_in, + ACTIONS(4474), 1, + anon_sym_of, + STATE(2167), 1, sym_comment, - ACTIONS(209), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -235540,7 +237148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235556,10 +237164,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(118), 21, + ACTIONS(4225), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -235578,34 +237185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22149] = 8, + [21245] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1395), 1, + ACTIONS(1104), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4492), 1, anon_sym_EQ_GT, - STATE(2178), 1, + STATE(2168), 1, sym_comment, - ACTIONS(209), 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(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235621,43 +237212,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(118), 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, - [22222] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - ACTIONS(4564), 1, - anon_sym_EQ, - STATE(2179), 1, - sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -235670,23 +237229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235708,16 +237251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22295] = 7, + [21319] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(1104), 1, anon_sym_EQ, - STATE(2180), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4488), 1, + anon_sym_EQ_GT, + STATE(2169), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235733,60 +237278,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(4222), 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(4218), 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, - [22366] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1383), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ_GT, - STATE(2181), 1, - sym_comment, - ACTIONS(209), 15, + ACTIONS(213), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -235799,23 +237295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235837,84 +237317,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22439] = 33, + [21393] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2182), 1, + STATE(2170), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4566), 2, + ACTIONS(4559), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -235927,214 +237407,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22562] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1389), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ_GT, - STATE(2183), 1, - sym_comment, - ACTIONS(209), 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(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [22635] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - ACTIONS(4568), 1, - anon_sym_EQ, - STATE(2184), 1, - sym_comment, - ACTIONS(4222), 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(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [22708] = 33, + [21516] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2185), 1, + STATE(2171), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4570), 2, + ACTIONS(4561), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236147,84 +237497,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22831] = 33, + [21639] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2186), 1, + STATE(2172), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4572), 2, + ACTIONS(4563), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236237,212 +237587,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22954] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - ACTIONS(4574), 1, - anon_sym_EQ, - STATE(2187), 1, - sym_comment, - ACTIONS(4222), 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(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [23027] = 8, + [21762] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1397), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4351), 1, anon_sym_EQ_GT, - STATE(2188), 1, - sym_comment, - ACTIONS(209), 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(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [23100] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4403), 1, + ACTIONS(4565), 1, anon_sym_EQ, - STATE(2189), 1, + STATE(2173), 1, sym_comment, ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 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, - [23171] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - ACTIONS(4576), 1, - anon_sym_EQ, - STATE(2190), 1, - sym_comment, - ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236458,7 +237614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236474,7 +237630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236496,18 +237652,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23244] = 8, + [21835] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1393), 1, + ACTIONS(1392), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4357), 1, anon_sym_EQ_GT, - STATE(2191), 1, + STATE(2174), 1, sym_comment, - ACTIONS(209), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236523,7 +237679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236539,7 +237695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236561,84 +237717,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23317] = 33, + [21908] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2192), 1, + STATE(2175), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4578), 2, + ACTIONS(4567), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236651,84 +237807,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23440] = 33, + [22031] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2193), 1, + STATE(2176), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4580), 2, + ACTIONS(4569), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236741,214 +237897,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23563] = 8, + [22154] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1329), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ_GT, - STATE(2194), 1, - sym_comment, - ACTIONS(209), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 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(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2177), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 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, - [23636] = 8, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4571), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5157), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22277] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ_GT, - STATE(2195), 1, - sym_comment, - ACTIONS(209), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 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(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2178), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 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, - [23709] = 33, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4573), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5157), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22400] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2196), 1, + STATE(2179), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4582), 2, + ACTIONS(4575), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236961,84 +238167,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23832] = 33, + [22523] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2197), 1, + STATE(2180), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4584), 2, + ACTIONS(4577), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237051,84 +238257,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23955] = 33, + [22646] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2198), 1, + STATE(2181), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4586), 2, + ACTIONS(4579), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237141,84 +238347,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24078] = 33, + [22769] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2199), 1, + STATE(2182), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4588), 2, + ACTIONS(4581), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237231,150 +238437,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24201] = 8, + [22892] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1385), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ_GT, - STATE(2200), 1, - sym_comment, - ACTIONS(209), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 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(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2183), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 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, - [24274] = 8, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4583), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5157), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23015] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4350), 1, - anon_sym_EQ_GT, - STATE(2201), 1, - sym_comment, - ACTIONS(4222), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 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(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2184), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4585), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5157), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23138] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [24347] = 9, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, + anon_sym_STAR, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, + anon_sym_async, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, + anon_sym_static, + ACTIONS(4523), 1, + anon_sym_readonly, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2185), 1, + sym_comment, + STATE(3605), 1, + sym_accessibility_modifier, + STATE(3629), 1, + sym_override_modifier, + STATE(3948), 1, + sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4525), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4587), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4527), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5157), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23261] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(1400), 1, anon_sym_EQ, - ACTIONS(4439), 1, - anon_sym_in, - ACTIONS(4442), 1, - anon_sym_of, - STATE(2202), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(2186), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -237390,7 +238734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237406,9 +238750,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(4218), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -237427,18 +238772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24422] = 8, + [23334] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4350), 1, + ACTIONS(4351), 1, anon_sym_EQ_GT, - ACTIONS(4590), 1, + ACTIONS(4589), 1, anon_sym_EQ, - STATE(2203), 1, + STATE(2187), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -237454,7 +238799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237470,7 +238815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237492,84 +238837,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24495] = 33, + [23407] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2204), 1, + STATE(2188), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4592), 2, + ACTIONS(4591), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237582,84 +238927,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24618] = 33, + [23530] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2205), 1, + STATE(2189), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4594), 2, + ACTIONS(4593), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237672,84 +239017,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24741] = 33, + [23653] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2206), 1, + STATE(2190), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4596), 2, + ACTIONS(4595), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237762,84 +239107,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24864] = 33, + [23776] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2207), 1, + STATE(2191), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4598), 2, + ACTIONS(4597), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237852,18 +239197,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24987] = 8, + [23899] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1381), 1, + ACTIONS(1396), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4357), 1, anon_sym_EQ_GT, - STATE(2208), 1, + STATE(2192), 1, sym_comment, - ACTIONS(209), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -237879,7 +239224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237895,7 +239240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237917,84 +239262,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25060] = 33, + [23972] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2209), 1, + STATE(2193), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4600), 2, + ACTIONS(4599), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238007,108 +239352,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25183] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [24095] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(1390), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(2194), 1, + sym_comment, + ACTIONS(213), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2210), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 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(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4602), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [25306] = 8, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [24168] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4350), 1, + ACTIONS(4351), 1, anon_sym_EQ_GT, - ACTIONS(4604), 1, + ACTIONS(4601), 1, anon_sym_EQ, - STATE(2211), 1, + STATE(2195), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -238124,7 +239444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238140,7 +239460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238162,18 +239482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25379] = 8, + [24241] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1336), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4350), 1, + ACTIONS(4357), 1, anon_sym_EQ_GT, - ACTIONS(4606), 1, - anon_sym_EQ, - STATE(2212), 1, + STATE(2196), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -238189,7 +239509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238205,7 +239525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238227,18 +239547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25452] = 8, + [24314] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4350), 1, + ACTIONS(4351), 1, anon_sym_EQ_GT, - ACTIONS(4608), 1, + ACTIONS(4603), 1, anon_sym_EQ, - STATE(2213), 1, + STATE(2197), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -238254,7 +239574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238270,7 +239590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238292,174 +239612,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25525] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2214), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4610), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [25648] = 33, + [24387] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2215), 1, + STATE(2198), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4612), 2, + ACTIONS(4605), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238472,18 +239702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25771] = 8, + [24510] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1391), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, + ACTIONS(4351), 1, anon_sym_EQ_GT, - STATE(2216), 1, + ACTIONS(4607), 1, + anon_sym_EQ, + STATE(2199), 1, sym_comment, - ACTIONS(209), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -238499,7 +239729,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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, + [24583] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4412), 1, + anon_sym_EQ, + STATE(2200), 1, + sym_comment, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238515,7 +239792,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(118), 21, + ACTIONS(4229), 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(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238537,84 +239831,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25844] = 33, + [24654] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2217), 1, + STATE(2201), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4614), 2, + ACTIONS(4609), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238627,376 +239921,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25967] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [24777] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2218), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4420), 1, + anon_sym_EQ, + STATE(2202), 1, sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4616), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [26090] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2219), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4618), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [26213] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2220), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4620), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [26336] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2221), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4622), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5155), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [26459] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4419), 1, - anon_sym_EQ, - STATE(2222), 1, - sym_comment, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239012,12 +239946,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(4222), 16, + ACTIONS(4229), 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, @@ -239029,7 +239963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239051,84 +239985,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26530] = 33, + [24848] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2223), 1, + STATE(2203), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - ACTIONS(4624), 2, + ACTIONS(4611), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -239141,16 +240075,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26653] = 7, + [24971] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4562), 1, + ACTIONS(1404), 1, anon_sym_EQ, - STATE(2224), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(2204), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239166,7 +240102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239182,7 +240118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239204,16 +240140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26723] = 7, + [25044] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4564), 1, + ACTIONS(1402), 1, anon_sym_EQ, - STATE(2225), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(2205), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239229,7 +240167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239245,7 +240183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239267,16 +240205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26793] = 7, + [25117] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4606), 1, + ACTIONS(4341), 1, anon_sym_EQ, - STATE(2226), 1, + ACTIONS(4349), 1, + anon_sym_COLON, + STATE(2206), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239292,7 +240232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239308,7 +240248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239330,16 +240270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26863] = 7, + [25190] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4604), 1, + ACTIONS(4341), 1, anon_sym_EQ, - STATE(2227), 1, + ACTIONS(4351), 1, + anon_sym_EQ_GT, + STATE(2207), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239355,7 +240297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239371,7 +240313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239393,16 +240335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26933] = 7, + [25263] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4608), 1, + ACTIONS(4351), 1, + anon_sym_EQ_GT, + ACTIONS(4613), 1, anon_sym_EQ, - STATE(2228), 1, + STATE(2208), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239418,7 +240362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239434,7 +240378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239456,16 +240400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27003] = 7, + [25336] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4552), 1, + ACTIONS(4351), 1, + anon_sym_EQ_GT, + ACTIONS(4615), 1, anon_sym_EQ, - STATE(2229), 1, + STATE(2209), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239481,7 +240427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239497,7 +240443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4225), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239519,16 +240465,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27073] = 7, + [25409] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4590), 1, + ACTIONS(4341), 1, anon_sym_EQ, - STATE(2230), 1, + ACTIONS(4471), 1, + anon_sym_in, + ACTIONS(4474), 1, + anon_sym_of, + STATE(2210), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4229), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239544,7 +240494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4236), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239560,10 +240510,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(4218), 21, + ACTIONS(4225), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -239582,16 +240531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27143] = 7, + [25484] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4576), 1, + ACTIONS(1104), 1, anon_sym_EQ, - STATE(2231), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(2211), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239607,7 +240558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239623,7 +240574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239645,16 +240596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27213] = 7, + [25557] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4574), 1, + ACTIONS(1338), 1, anon_sym_EQ, - STATE(2232), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(2212), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(213), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239670,7 +240623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239686,7 +240639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239708,19 +240661,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27283] = 7, + [25630] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4568), 1, + ACTIONS(4437), 1, anon_sym_EQ, - STATE(2233), 1, + STATE(2213), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4229), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -239733,7 +240703,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4225), 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, + [25701] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1398), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(2214), 1, + sym_comment, + ACTIONS(213), 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(2787), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239749,7 +240768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239771,81 +240790,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27353] = 32, + [25774] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2234), 1, + STATE(2215), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + ACTIONS(4617), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4667), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -239858,429 +240880,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27472] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [25897] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2235), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4805), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [27591] = 32, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(4351), 1, + anon_sym_EQ_GT, + ACTIONS(4619), 1, + anon_sym_EQ, + STATE(2216), 1, + sym_comment, + ACTIONS(4229), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2236), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4767), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [27710] = 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, + [25970] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4351), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2217), 1, + sym_comment, + ACTIONS(4229), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2237), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4825), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [27829] = 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, + [26043] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(1394), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4357), 1, + anon_sym_EQ_GT, + STATE(2218), 1, + sym_comment, + ACTIONS(213), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2238), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 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(2787), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4752), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [27948] = 32, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [26116] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2239), 1, + STATE(2219), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + ACTIONS(4623), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4814), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240293,81 +241165,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28067] = 32, + [26239] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2240), 1, + STATE(2220), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + ACTIONS(4625), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4802), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240380,168 +241255,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28186] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [26362] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4351), 1, + anon_sym_EQ_GT, + ACTIONS(4627), 1, + anon_sym_EQ, + STATE(2221), 1, + sym_comment, + ACTIONS(4229), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4500), 1, - anon_sym_export, - ACTIONS(4502), 1, - anon_sym_STAR, - ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_async, - ACTIONS(4512), 1, - anon_sym_new, - ACTIONS(4514), 1, - anon_sym_static, - ACTIONS(4516), 1, - anon_sym_readonly, - ACTIONS(4522), 1, - anon_sym_override, - STATE(2241), 1, - sym_comment, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3636), 1, - sym_override_modifier, - STATE(3945), 1, - sym__property_name, - STATE(4119), 1, - sym_formal_parameters, - STATE(5011), 1, - sym__call_signature, - STATE(5528), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(3993), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4518), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4520), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4700), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4498), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [28305] = 32, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [26435] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2242), 1, + STATE(2222), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + ACTIONS(4629), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5155), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240554,81 +241410,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28424] = 32, + [26558] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(95), 1, anon_sym_AT, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(3990), 1, anon_sym_LPAREN, - ACTIONS(4007), 1, + ACTIONS(4014), 1, anon_sym_abstract, - ACTIONS(4500), 1, + ACTIONS(4507), 1, anon_sym_export, - ACTIONS(4502), 1, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4510), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4512), 1, + ACTIONS(4519), 1, anon_sym_new, - ACTIONS(4514), 1, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4516), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2243), 1, + STATE(2223), 1, sym_comment, - STATE(3582), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3636), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3945), 1, + STATE(3948), 1, sym__property_name, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5014), 1, sym__call_signature, - STATE(5528), 1, + STATE(5530), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4518), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + ACTIONS(4631), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4520), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4699), 6, + STATE(5157), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4498), 12, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240641,529 +241500,716 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28543] = 35, + [26681] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2754), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3027), 1, - anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, - anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, - anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, - anon_sym_declare, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4626), 1, - anon_sym_STAR, - ACTIONS(4628), 1, - anon_sym_default, - ACTIONS(4630), 1, - anon_sym_type, - ACTIONS(4632), 1, + ACTIONS(4603), 1, anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_as, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4639), 1, - anon_sym_RBRACE, - ACTIONS(4644), 1, - anon_sym_module, - STATE(2244), 1, + STATE(2224), 1, sym_comment, - STATE(4889), 1, - aux_sym_export_statement_repeat1, - STATE(4995), 1, - sym_internal_module, - STATE(4996), 1, - sym_declaration, - STATE(5567), 1, - sym_export_clause, - STATE(5599), 1, - sym_decorator, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - STATE(6884), 1, - sym_namespace_export, - ACTIONS(4642), 7, - sym__automatic_semicolon, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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(4988), 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, - [28667] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [26751] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2754), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3027), 1, - anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, - anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, - anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, - anon_sym_declare, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4626), 1, - anon_sym_STAR, - ACTIONS(4628), 1, - anon_sym_default, - ACTIONS(4630), 1, - anon_sym_type, - ACTIONS(4632), 1, + ACTIONS(4565), 1, anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_as, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4644), 1, - anon_sym_module, - ACTIONS(4646), 1, - anon_sym_RBRACE, - STATE(2245), 1, + STATE(2225), 1, sym_comment, - STATE(4889), 1, - aux_sym_export_statement_repeat1, - STATE(4995), 1, - sym_internal_module, - STATE(4996), 1, - sym_declaration, - STATE(5567), 1, - sym_export_clause, - STATE(5599), 1, - sym_decorator, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - STATE(6884), 1, - sym_namespace_export, - ACTIONS(4642), 7, - sym__automatic_semicolon, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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(4988), 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, - [28791] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [26821] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2754), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3027), 1, - anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, - anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, - anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, - anon_sym_declare, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4626), 1, - anon_sym_STAR, - ACTIONS(4628), 1, - anon_sym_default, - ACTIONS(4630), 1, - anon_sym_type, - ACTIONS(4632), 1, + ACTIONS(4615), 1, anon_sym_EQ, - ACTIONS(4634), 1, + STATE(2226), 1, + sym_comment, + ACTIONS(4229), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4644), 1, - anon_sym_module, - ACTIONS(4649), 1, - anon_sym_RBRACE, - STATE(2246), 1, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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, + [26891] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4589), 1, + anon_sym_EQ, + STATE(2227), 1, sym_comment, - STATE(4889), 1, - aux_sym_export_statement_repeat1, - STATE(4995), 1, - sym_internal_module, - STATE(4996), 1, - sym_declaration, - STATE(5567), 1, - sym_export_clause, - STATE(5599), 1, - sym_decorator, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - STATE(6884), 1, - sym_namespace_export, - ACTIONS(4642), 7, - sym__automatic_semicolon, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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(4988), 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, - [28915] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [26961] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2754), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3027), 1, - anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, - anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, - anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, - anon_sym_declare, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4626), 1, + ACTIONS(4613), 1, + anon_sym_EQ, + STATE(2228), 1, + sym_comment, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 21, anon_sym_STAR, - ACTIONS(4628), 1, - anon_sym_default, - ACTIONS(4630), 1, - anon_sym_type, - ACTIONS(4632), 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, + [27031] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4601), 1, anon_sym_EQ, - ACTIONS(4634), 1, + STATE(2229), 1, + sym_comment, + ACTIONS(4229), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4644), 1, - anon_sym_module, - ACTIONS(4652), 1, - anon_sym_RBRACE, - STATE(2247), 1, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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, + [27101] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2230), 1, sym_comment, - STATE(4889), 1, - aux_sym_export_statement_repeat1, - STATE(4995), 1, - sym_internal_module, - STATE(4996), 1, - sym_declaration, - STATE(5567), 1, - sym_export_clause, - STATE(5599), 1, - sym_decorator, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - STATE(6884), 1, - sym_namespace_export, - ACTIONS(4642), 7, - sym__automatic_semicolon, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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(4988), 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, - [29039] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [27171] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2754), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3027), 1, - anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, - anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, - anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, - anon_sym_declare, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4626), 1, + ACTIONS(4627), 1, + anon_sym_EQ, + STATE(2231), 1, + sym_comment, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 21, anon_sym_STAR, - ACTIONS(4628), 1, - anon_sym_default, - ACTIONS(4630), 1, - anon_sym_type, - ACTIONS(4632), 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, + [27241] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4619), 1, anon_sym_EQ, - ACTIONS(4634), 1, + STATE(2232), 1, + sym_comment, + ACTIONS(4229), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4644), 1, - anon_sym_module, - ACTIONS(4655), 1, - anon_sym_RBRACE, - STATE(2248), 1, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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, + [27311] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4607), 1, + anon_sym_EQ, + STATE(2233), 1, sym_comment, - STATE(4889), 1, - aux_sym_export_statement_repeat1, - STATE(4995), 1, - sym_internal_module, - STATE(4996), 1, - sym_declaration, - STATE(5567), 1, - sym_export_clause, - STATE(5599), 1, - sym_decorator, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(6884), 1, - sym_namespace_export, - ACTIONS(4642), 7, - sym__automatic_semicolon, + ACTIONS(4229), 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(4236), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4225), 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(4988), 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, - [29163] = 32, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [27381] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_RBRACE, - ACTIONS(4662), 1, - anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4674), 1, - anon_sym_declare, - ACTIONS(4678), 1, - anon_sym_abstract, - STATE(2249), 1, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2234), 1, sym_comment, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(3387), 1, - aux_sym_export_statement_repeat1, - STATE(3499), 1, - sym_method_definition, - STATE(3526), 1, - sym_class_static_block, - STATE(3540), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3897), 1, + STATE(3948), 1, sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5530), 1, - sym_method_signature, - ACTIONS(3993), 2, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4689), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(4498), 13, - anon_sym_export, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -241171,84 +242217,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29280] = 32, + [27500] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4662), 1, - anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4674), 1, - anon_sym_declare, - ACTIONS(4678), 1, - anon_sym_abstract, - ACTIONS(4680), 1, - anon_sym_RBRACE, - STATE(2250), 1, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2235), 1, sym_comment, - STATE(2272), 1, - aux_sym_class_body_repeat1, - STATE(3387), 1, - aux_sym_export_statement_repeat1, - STATE(3499), 1, - sym_method_definition, - STATE(3526), 1, - sym_class_static_block, - STATE(3540), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3897), 1, + STATE(3948), 1, sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5530), 1, - sym_method_signature, - ACTIONS(3993), 2, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4705), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(4498), 13, - anon_sym_export, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -241256,84 +242304,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29397] = 32, + [27619] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4662), 1, - anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4674), 1, - anon_sym_declare, - ACTIONS(4678), 1, - anon_sym_abstract, - ACTIONS(4682), 1, - anon_sym_RBRACE, - STATE(2251), 1, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2236), 1, sym_comment, - STATE(2266), 1, - aux_sym_class_body_repeat1, - STATE(3387), 1, - aux_sym_export_statement_repeat1, - STATE(3499), 1, - sym_method_definition, - STATE(3526), 1, - sym_class_static_block, - STATE(3540), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3897), 1, + STATE(3948), 1, sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5530), 1, - sym_method_signature, - ACTIONS(3993), 2, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4780), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(4498), 13, - anon_sym_export, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -241341,83 +242391,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29514] = 31, + [27738] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4687), 1, - anon_sym_STAR, - ACTIONS(4690), 1, - anon_sym_RBRACE, - ACTIONS(4692), 1, - anon_sym_SEMI, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4698), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(4701), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4704), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, + anon_sym_STAR, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4713), 1, - anon_sym_AT, - ACTIONS(4716), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4719), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4725), 1, - anon_sym_declare, - ACTIONS(4731), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4734), 1, - anon_sym_abstract, - STATE(3387), 1, - aux_sym_export_statement_repeat1, - STATE(3499), 1, - sym_method_definition, - STATE(3526), 1, - sym_class_static_block, - STATE(3540), 1, + STATE(2237), 1, + sym_comment, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3897), 1, + STATE(3948), 1, sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5530), 1, - sym_method_signature, - ACTIONS(4707), 2, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4710), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(2252), 2, - sym_comment, - aux_sym_class_body_repeat1, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4728), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4716), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(4684), 13, - anon_sym_export, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -241425,84 +242478,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29629] = 32, + [27857] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4662), 1, - anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4674), 1, - anon_sym_declare, - ACTIONS(4678), 1, - anon_sym_abstract, - ACTIONS(4737), 1, - anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(2253), 1, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2238), 1, sym_comment, - STATE(3387), 1, - aux_sym_export_statement_repeat1, - STATE(3499), 1, - sym_method_definition, - STATE(3526), 1, - sym_class_static_block, - STATE(3540), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3897), 1, + STATE(3948), 1, sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5530), 1, - sym_method_signature, - ACTIONS(3993), 2, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4830), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(4498), 13, - anon_sym_export, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -241510,84 +242565,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29746] = 32, + [27976] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4662), 1, - anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4674), 1, - anon_sym_declare, - ACTIONS(4678), 1, - anon_sym_abstract, - ACTIONS(4739), 1, - anon_sym_RBRACE, - STATE(2253), 1, - aux_sym_class_body_repeat1, - STATE(2254), 1, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2239), 1, sym_comment, - STATE(3387), 1, - aux_sym_export_statement_repeat1, - STATE(3499), 1, - sym_method_definition, - STATE(3526), 1, - sym_class_static_block, - STATE(3540), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3897), 1, + STATE(3948), 1, sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5530), 1, - sym_method_signature, - ACTIONS(3993), 2, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4662), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(4498), 13, - anon_sym_export, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -241595,84 +242652,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29863] = 32, + [28095] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4662), 1, - anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4674), 1, - anon_sym_declare, - ACTIONS(4678), 1, - anon_sym_abstract, - ACTIONS(4741), 1, - anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(2255), 1, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2240), 1, sym_comment, - STATE(3387), 1, - aux_sym_export_statement_repeat1, - STATE(3499), 1, - sym_method_definition, - STATE(3526), 1, - sym_class_static_block, - STATE(3540), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3897), 1, + STATE(3948), 1, sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5530), 1, - sym_method_signature, - ACTIONS(3993), 2, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4676), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(4498), 13, - anon_sym_export, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -241680,79 +242739,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29980] = 29, + [28214] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4745), 1, - anon_sym_RBRACE, - ACTIONS(4747), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, + anon_sym_STAR, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4751), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4753), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4759), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2256), 1, + STATE(2241), 1, sym_comment, - STATE(3599), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3625), 1, + STATE(3629), 1, sym_override_modifier, - STATE(4454), 1, + STATE(3948), 1, sym__property_name, - STATE(5634), 1, - aux_sym_object_pattern_repeat1, - STATE(5711), 1, - aux_sym_object_repeat1, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4755), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4757), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5628), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5706), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4743), 14, - anon_sym_export, + STATE(4847), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -241762,84 +242826,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30091] = 32, + [28333] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, anon_sym_STAR, - ACTIONS(4662), 1, - anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4674), 1, - anon_sym_declare, - ACTIONS(4678), 1, - anon_sym_abstract, - ACTIONS(4761), 1, - anon_sym_RBRACE, - STATE(2257), 1, + ACTIONS(4529), 1, + anon_sym_override, + STATE(2242), 1, sym_comment, - STATE(2275), 1, - aux_sym_class_body_repeat1, - STATE(3387), 1, - aux_sym_export_statement_repeat1, - STATE(3499), 1, - sym_method_definition, - STATE(3526), 1, - sym_class_static_block, - STATE(3540), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3629), 1, sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3897), 1, + STATE(3948), 1, sym__property_name, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5530), 1, - sym_method_signature, - ACTIONS(3993), 2, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4834), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(4498), 13, - anon_sym_export, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -241847,79 +242913,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30208] = 29, + [28452] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, + ACTIONS(3990), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_abstract, + ACTIONS(4507), 1, + anon_sym_export, + ACTIONS(4509), 1, + anon_sym_STAR, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, - anon_sym_RBRACE, - ACTIONS(4767), 1, + ACTIONS(4517), 1, anon_sym_async, - ACTIONS(4769), 1, + ACTIONS(4519), 1, + anon_sym_new, + ACTIONS(4521), 1, anon_sym_static, - ACTIONS(4771), 1, + ACTIONS(4523), 1, anon_sym_readonly, - ACTIONS(4777), 1, + ACTIONS(4529), 1, anon_sym_override, - STATE(2258), 1, + STATE(2243), 1, sym_comment, - STATE(3599), 1, + STATE(3605), 1, sym_accessibility_modifier, - STATE(3625), 1, + STATE(3629), 1, sym_override_modifier, - STATE(4454), 1, + STATE(3948), 1, sym__property_name, - STATE(5634), 1, - aux_sym_object_pattern_repeat1, - STATE(5711), 1, - aux_sym_object_repeat1, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(4142), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, + STATE(5530), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4773), 2, + ACTIONS(4525), 2, anon_sym_get, anon_sym_set, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4775), 3, + ACTIONS(4527), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5628), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5706), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4763), 14, - anon_sym_export, + STATE(5157), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4505), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -241929,81 +243000,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30319] = 29, - ACTIONS(3), 1, + [28571] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(3032), 1, + anon_sym_namespace, + ACTIONS(3034), 1, + anon_sym_import, + ACTIONS(3036), 1, + anon_sym_var, + ACTIONS(3038), 1, + anon_sym_let, + ACTIONS(3040), 1, + anon_sym_const, + ACTIONS(3042), 1, + anon_sym_class, + ACTIONS(3044), 1, + anon_sym_async, + ACTIONS(3046), 1, + anon_sym_function, + ACTIONS(3050), 1, + anon_sym_declare, + ACTIONS(3054), 1, + anon_sym_abstract, + ACTIONS(3058), 1, + anon_sym_interface, + ACTIONS(3060), 1, + anon_sym_enum, + ACTIONS(4633), 1, + anon_sym_STAR, + ACTIONS(4635), 1, + anon_sym_default, + ACTIONS(4637), 1, + anon_sym_type, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_as, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4646), 1, + anon_sym_RBRACE, + ACTIONS(4651), 1, + anon_sym_module, + STATE(2244), 1, + sym_comment, + STATE(4891), 1, + aux_sym_export_statement_repeat1, + STATE(4998), 1, + sym_internal_module, + STATE(4999), 1, + sym_declaration, + STATE(5569), 1, + sym_export_clause, + STATE(5601), 1, + sym_decorator, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + STATE(6888), 1, + sym_namespace_export, + ACTIONS(4649), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 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, + [28695] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(3032), 1, + anon_sym_namespace, + ACTIONS(3034), 1, + anon_sym_import, + ACTIONS(3036), 1, + anon_sym_var, + ACTIONS(3038), 1, + anon_sym_let, + ACTIONS(3040), 1, + anon_sym_const, + ACTIONS(3042), 1, + anon_sym_class, + ACTIONS(3044), 1, + anon_sym_async, + ACTIONS(3046), 1, + anon_sym_function, + ACTIONS(3050), 1, + anon_sym_declare, + ACTIONS(3054), 1, + anon_sym_abstract, + ACTIONS(3058), 1, + anon_sym_interface, + ACTIONS(3060), 1, + anon_sym_enum, + ACTIONS(4633), 1, anon_sym_STAR, - ACTIONS(229), 1, + ACTIONS(4635), 1, + anon_sym_default, + ACTIONS(4637), 1, + anon_sym_type, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_as, + ACTIONS(4643), 1, anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(4651), 1, + anon_sym_module, + ACTIONS(4653), 1, + anon_sym_RBRACE, + STATE(2245), 1, + sym_comment, + STATE(4891), 1, + aux_sym_export_statement_repeat1, + STATE(4998), 1, + sym_internal_module, + STATE(4999), 1, + sym_declaration, + STATE(5569), 1, + sym_export_clause, + STATE(5601), 1, + sym_decorator, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + STATE(6888), 1, + sym_namespace_export, + ACTIONS(4649), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 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, + [28819] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(3032), 1, + anon_sym_namespace, + ACTIONS(3034), 1, + anon_sym_import, + ACTIONS(3036), 1, + anon_sym_var, + ACTIONS(3038), 1, + anon_sym_let, + ACTIONS(3040), 1, + anon_sym_const, + ACTIONS(3042), 1, + anon_sym_class, + ACTIONS(3044), 1, + anon_sym_async, + ACTIONS(3046), 1, + anon_sym_function, + ACTIONS(3050), 1, + anon_sym_declare, + ACTIONS(3054), 1, + anon_sym_abstract, + ACTIONS(3058), 1, + anon_sym_interface, + ACTIONS(3060), 1, + anon_sym_enum, + ACTIONS(4633), 1, + anon_sym_STAR, + ACTIONS(4635), 1, + anon_sym_default, + ACTIONS(4637), 1, + anon_sym_type, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_as, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4651), 1, + anon_sym_module, + ACTIONS(4656), 1, + anon_sym_RBRACE, + STATE(2246), 1, + sym_comment, + STATE(4891), 1, + aux_sym_export_statement_repeat1, + STATE(4998), 1, + sym_internal_module, + STATE(4999), 1, + sym_declaration, + STATE(5569), 1, + sym_export_clause, + STATE(5601), 1, + sym_decorator, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + STATE(6888), 1, + sym_namespace_export, + ACTIONS(4649), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 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, + [28943] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(3032), 1, + anon_sym_namespace, + ACTIONS(3034), 1, + anon_sym_import, + ACTIONS(3036), 1, + anon_sym_var, + ACTIONS(3038), 1, + anon_sym_let, + ACTIONS(3040), 1, + anon_sym_const, + ACTIONS(3042), 1, + anon_sym_class, + ACTIONS(3044), 1, + anon_sym_async, + ACTIONS(3046), 1, + anon_sym_function, + ACTIONS(3050), 1, + anon_sym_declare, + ACTIONS(3054), 1, + anon_sym_abstract, + ACTIONS(3058), 1, + anon_sym_interface, + ACTIONS(3060), 1, + anon_sym_enum, + ACTIONS(4633), 1, + anon_sym_STAR, + ACTIONS(4635), 1, + anon_sym_default, + ACTIONS(4637), 1, + anon_sym_type, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_as, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4651), 1, + anon_sym_module, + ACTIONS(4659), 1, + anon_sym_RBRACE, + STATE(2247), 1, + sym_comment, + STATE(4891), 1, + aux_sym_export_statement_repeat1, + STATE(4998), 1, + sym_internal_module, + STATE(4999), 1, + sym_declaration, + STATE(5569), 1, + sym_export_clause, + STATE(5601), 1, + sym_decorator, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(6888), 1, + sym_namespace_export, + ACTIONS(4649), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 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, + [29067] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(3032), 1, + anon_sym_namespace, + ACTIONS(3034), 1, + anon_sym_import, + ACTIONS(3036), 1, + anon_sym_var, + ACTIONS(3038), 1, + anon_sym_let, + ACTIONS(3040), 1, + anon_sym_const, + ACTIONS(3042), 1, + anon_sym_class, + ACTIONS(3044), 1, + anon_sym_async, + ACTIONS(3046), 1, + anon_sym_function, + ACTIONS(3050), 1, + anon_sym_declare, + ACTIONS(3054), 1, + anon_sym_abstract, + ACTIONS(3058), 1, + anon_sym_interface, + ACTIONS(3060), 1, + anon_sym_enum, + ACTIONS(4633), 1, + anon_sym_STAR, + ACTIONS(4635), 1, + anon_sym_default, + ACTIONS(4637), 1, + anon_sym_type, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_as, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4651), 1, + anon_sym_module, + ACTIONS(4662), 1, + anon_sym_RBRACE, + STATE(2248), 1, + sym_comment, + STATE(4891), 1, + aux_sym_export_statement_repeat1, + STATE(4998), 1, + sym_internal_module, + STATE(4999), 1, + sym_declaration, + STATE(5569), 1, + sym_export_clause, + STATE(5601), 1, + sym_decorator, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + STATE(6888), 1, + sym_namespace_export, + ACTIONS(4649), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 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, + [29191] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4781), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4665), 1, + anon_sym_STAR, + ACTIONS(4667), 1, anon_sym_RBRACE, - ACTIONS(4783), 1, + ACTIONS(4669), 1, + anon_sym_SEMI, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4785), 1, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4787), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4793), 1, - anon_sym_override, - STATE(2259), 1, + ACTIONS(4681), 1, + anon_sym_declare, + ACTIONS(4685), 1, + anon_sym_abstract, + STATE(2249), 1, sym_comment, - STATE(3599), 1, + STATE(2253), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, + aux_sym_export_statement_repeat1, + STATE(3486), 1, + sym_method_definition, + STATE(3529), 1, + sym_class_static_block, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3625), 1, + STATE(3632), 1, sym_override_modifier, - STATE(4454), 1, + STATE(3650), 1, + sym_decorator, + STATE(3908), 1, sym__property_name, - STATE(5634), 1, - aux_sym_object_pattern_repeat1, - STATE(5711), 1, - aux_sym_object_repeat1, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5532), 1, + sym_method_signature, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4791), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5628), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5706), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4779), 14, + STATE(5782), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -242011,84 +243530,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30430] = 32, + [29308] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4795), 1, + ACTIONS(4687), 1, anon_sym_RBRACE, - STATE(2260), 1, + STATE(2250), 1, sym_comment, - STATE(2268), 1, + STATE(2284), 1, aux_sym_class_body_repeat1, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [29425] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(227), 1, + anon_sym_STAR, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(245), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4691), 1, + anon_sym_RBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + ACTIONS(4695), 1, + anon_sym_async, + ACTIONS(4697), 1, + anon_sym_static, + ACTIONS(4699), 1, + anon_sym_readonly, + ACTIONS(4705), 1, + anon_sym_override, + STATE(2251), 1, + sym_comment, + STATE(3581), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(4487), 1, + sym__property_name, + STATE(5640), 1, + aux_sym_object_pattern_repeat1, + STATE(5712), 1, + aux_sym_object_repeat1, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4701), 2, + anon_sym_get, + anon_sym_set, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4703), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5631), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5707), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4689), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -242096,78 +243697,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30547] = 32, + [29536] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4797), 1, + ACTIONS(4707), 1, anon_sym_RBRACE, - STATE(2261), 1, + STATE(2252), 1, sym_comment, - STATE(2262), 1, + STATE(2274), 1, aux_sym_class_body_repeat1, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242181,78 +243782,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30664] = 32, + [29653] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4799), 1, + ACTIONS(4709), 1, anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(2262), 1, + STATE(2253), 1, sym_comment, - STATE(3387), 1, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242266,78 +243867,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30781] = 32, + [29770] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4801), 1, + ACTIONS(4711), 1, anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(2263), 1, + STATE(2254), 1, sym_comment, - STATE(3387), 1, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242351,74 +243952,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30898] = 29, + [29887] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, + ACTIONS(227), 1, anon_sym_STAR, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(4747), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(4715), 1, anon_sym_RBRACE, - ACTIONS(4807), 1, + ACTIONS(4717), 1, anon_sym_async, - ACTIONS(4809), 1, + ACTIONS(4719), 1, anon_sym_static, - ACTIONS(4811), 1, + ACTIONS(4721), 1, anon_sym_readonly, - ACTIONS(4817), 1, + ACTIONS(4727), 1, anon_sym_override, - STATE(2264), 1, + STATE(2255), 1, sym_comment, - STATE(3599), 1, + STATE(3581), 1, sym_accessibility_modifier, - STATE(3625), 1, + STATE(3636), 1, sym_override_modifier, - STATE(4454), 1, + STATE(4487), 1, sym__property_name, - STATE(5634), 1, + STATE(5640), 1, aux_sym_object_pattern_repeat1, - STATE(5711), 1, + STATE(5712), 1, aux_sym_object_repeat1, - STATE(7205), 1, + STATE(7208), 1, sym__destructuring_pattern, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(4813), 2, + ACTIONS(4723), 2, anon_sym_get, anon_sym_set, - STATE(4155), 2, + STATE(4170), 2, sym_object_pattern, sym_array_pattern, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4815), 3, + ACTIONS(4725), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5628), 3, + STATE(5631), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5706), 3, + STATE(5707), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4803), 14, + ACTIONS(4713), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242433,78 +244034,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31009] = 32, + [29998] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4819), 1, + ACTIONS(4729), 1, anon_sym_RBRACE, - STATE(2265), 1, + STATE(2256), 1, sym_comment, - STATE(2284), 1, + STATE(2265), 1, aux_sym_class_body_repeat1, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242518,78 +244119,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31126] = 32, + [30115] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4821), 1, + ACTIONS(4731), 1, anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(2266), 1, + STATE(2257), 1, sym_comment, - STATE(3387), 1, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242603,78 +244204,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31243] = 32, + [30232] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4823), 1, + ACTIONS(4733), 1, anon_sym_RBRACE, - STATE(2249), 1, - aux_sym_class_body_repeat1, - STATE(2267), 1, + STATE(2258), 1, sym_comment, - STATE(3387), 1, + STATE(2286), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242688,78 +244289,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31360] = 32, + [30349] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4825), 1, + ACTIONS(4735), 1, anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(2268), 1, + STATE(2259), 1, sym_comment, - STATE(3387), 1, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242773,78 +244374,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31477] = 32, + [30466] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4827), 1, + ACTIONS(4737), 1, anon_sym_RBRACE, - STATE(2269), 1, + STATE(2260), 1, sym_comment, - STATE(2283), 1, + STATE(2282), 1, aux_sym_class_body_repeat1, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242858,78 +244459,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31594] = 32, + [30583] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4829), 1, + ACTIONS(4739), 1, anon_sym_RBRACE, - STATE(2255), 1, - aux_sym_class_body_repeat1, - STATE(2270), 1, + STATE(2261), 1, sym_comment, - STATE(3387), 1, + STATE(2287), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242943,78 +244544,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31711] = 32, + [30700] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4831), 1, + ACTIONS(4741), 1, anon_sym_RBRACE, - STATE(2263), 1, - aux_sym_class_body_repeat1, - STATE(2271), 1, + STATE(2262), 1, sym_comment, - STATE(3387), 1, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243028,78 +244629,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31828] = 32, + [30817] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4833), 1, + ACTIONS(4743), 1, anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(2272), 1, + STATE(2263), 1, sym_comment, - STATE(3387), 1, + STATE(2264), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243113,81 +244714,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31945] = 29, + [30934] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4837), 1, - anon_sym_RBRACE, - ACTIONS(4839), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4665), 1, + anon_sym_STAR, + ACTIONS(4669), 1, + anon_sym_SEMI, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4841), 1, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4843), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4849), 1, - anon_sym_override, - STATE(2273), 1, + ACTIONS(4681), 1, + anon_sym_declare, + ACTIONS(4685), 1, + anon_sym_abstract, + ACTIONS(4745), 1, + anon_sym_RBRACE, + STATE(2264), 1, sym_comment, - STATE(3599), 1, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, + aux_sym_export_statement_repeat1, + STATE(3486), 1, + sym_method_definition, + STATE(3529), 1, + sym_class_static_block, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3625), 1, + STATE(3632), 1, sym_override_modifier, - STATE(4454), 1, + STATE(3650), 1, + sym_decorator, + STATE(3908), 1, sym__property_name, - STATE(5634), 1, - aux_sym_object_pattern_repeat1, - STATE(5650), 1, - aux_sym_object_repeat1, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5532), 1, + sym_method_signature, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4845), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4847), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5628), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5633), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4835), 14, + STATE(5782), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -243195,81 +244799,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32056] = 29, + [31051] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4853), 1, - anon_sym_RBRACE, - ACTIONS(4855), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4665), 1, + anon_sym_STAR, + ACTIONS(4669), 1, + anon_sym_SEMI, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4857), 1, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4859), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4865), 1, - anon_sym_override, - STATE(2274), 1, + ACTIONS(4681), 1, + anon_sym_declare, + ACTIONS(4685), 1, + anon_sym_abstract, + ACTIONS(4747), 1, + anon_sym_RBRACE, + STATE(2265), 1, sym_comment, - STATE(3599), 1, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, + aux_sym_export_statement_repeat1, + STATE(3486), 1, + sym_method_definition, + STATE(3529), 1, + sym_class_static_block, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3625), 1, + STATE(3632), 1, sym_override_modifier, - STATE(4454), 1, + STATE(3650), 1, + sym_decorator, + STATE(3908), 1, sym__property_name, - STATE(5634), 1, - aux_sym_object_pattern_repeat1, - STATE(5711), 1, - aux_sym_object_repeat1, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5532), 1, + sym_method_signature, + ACTIONS(4000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4861), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4863), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5628), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5706), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4851), 14, + STATE(5782), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -243277,78 +244884,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32167] = 32, + [31168] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4867), 1, + ACTIONS(4749), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2259), 1, aux_sym_class_body_repeat1, - STATE(2275), 1, + STATE(2266), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243362,84 +244969,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32284] = 32, + [31285] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4869), 1, + ACTIONS(4751), 1, anon_sym_RBRACE, - STATE(2276), 1, - sym_comment, - STATE(2277), 1, + STATE(2257), 1, aux_sym_class_body_repeat1, - STATE(3387), 1, + STATE(2267), 1, + sym_comment, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [31402] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(227), 1, + anon_sym_STAR, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(245), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_RBRACE, + ACTIONS(4757), 1, + anon_sym_async, + ACTIONS(4759), 1, + anon_sym_static, + ACTIONS(4761), 1, + anon_sym_readonly, + ACTIONS(4767), 1, + anon_sym_override, + STATE(2268), 1, + sym_comment, + STATE(3581), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(4487), 1, + sym__property_name, + STATE(5640), 1, + aux_sym_object_pattern_repeat1, + STATE(5712), 1, + aux_sym_object_repeat1, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4763), 2, + anon_sym_get, + anon_sym_set, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4765), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5631), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5707), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4753), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -243447,78 +245136,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32401] = 32, + [31513] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4871), 1, + ACTIONS(4769), 1, anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_class_body_repeat1, - STATE(2277), 1, + STATE(2269), 1, sym_comment, - STATE(3387), 1, + STATE(2278), 1, + aux_sym_class_body_repeat1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243532,78 +245221,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32518] = 32, + [31630] = 31, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4508), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4774), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4777), 1, + anon_sym_RBRACE, + ACTIONS(4779), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4782), 1, + anon_sym_LBRACK, + ACTIONS(4785), 1, + anon_sym_DQUOTE, + ACTIONS(4788), 1, + anon_sym_SQUOTE, + ACTIONS(4791), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4800), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4803), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4806), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4812), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4818), 1, + anon_sym_override, + ACTIONS(4821), 1, anon_sym_abstract, - ACTIONS(4873), 1, - anon_sym_RBRACE, - STATE(2278), 1, - sym_comment, - STATE(2280), 1, - aux_sym_class_body_repeat1, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4794), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4797), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4809), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(2270), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4815), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4771), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243617,74 +245305,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32635] = 29, + [31745] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, + ACTIONS(227), 1, anon_sym_STAR, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(4747), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(4877), 1, + ACTIONS(4826), 1, anon_sym_RBRACE, - ACTIONS(4879), 1, + ACTIONS(4828), 1, anon_sym_async, - ACTIONS(4881), 1, + ACTIONS(4830), 1, anon_sym_static, - ACTIONS(4883), 1, + ACTIONS(4832), 1, anon_sym_readonly, - ACTIONS(4889), 1, + ACTIONS(4838), 1, anon_sym_override, - STATE(2279), 1, + STATE(2271), 1, sym_comment, - STATE(3599), 1, + STATE(3581), 1, sym_accessibility_modifier, - STATE(3625), 1, + STATE(3636), 1, sym_override_modifier, - STATE(4454), 1, + STATE(4487), 1, sym__property_name, - STATE(5634), 1, + STATE(5640), 1, aux_sym_object_pattern_repeat1, - STATE(5650), 1, + STATE(5652), 1, aux_sym_object_repeat1, - STATE(7205), 1, + STATE(7208), 1, sym__destructuring_pattern, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(4885), 2, + ACTIONS(4834), 2, anon_sym_get, anon_sym_set, - STATE(4155), 2, + STATE(4170), 2, sym_object_pattern, sym_array_pattern, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4887), 3, + ACTIONS(4836), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5628), 3, + STATE(5631), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5633), 3, + STATE(5632), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4875), 14, + ACTIONS(4824), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243699,84 +245387,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32746] = 32, + [31856] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4891), 1, + ACTIONS(4840), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2280), 1, + STATE(2272), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [31973] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(227), 1, + anon_sym_STAR, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(245), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + ACTIONS(4844), 1, + anon_sym_RBRACE, + ACTIONS(4846), 1, + anon_sym_async, + ACTIONS(4848), 1, + anon_sym_static, + ACTIONS(4850), 1, + anon_sym_readonly, + ACTIONS(4856), 1, + anon_sym_override, + STATE(2273), 1, + sym_comment, + STATE(3581), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(4487), 1, + sym__property_name, + STATE(5640), 1, + aux_sym_object_pattern_repeat1, + STATE(5652), 1, + aux_sym_object_repeat1, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4852), 2, + anon_sym_get, + anon_sym_set, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4854), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5631), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5632), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4842), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -243784,78 +245554,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32863] = 32, + [32084] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4893), 1, + ACTIONS(4858), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2270), 1, aux_sym_class_body_repeat1, - STATE(2281), 1, + STATE(2274), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243869,78 +245639,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32980] = 32, + [32201] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4895), 1, + ACTIONS(4860), 1, anon_sym_RBRACE, - STATE(2282), 1, + STATE(2275), 1, sym_comment, - STATE(2285), 1, + STATE(2288), 1, aux_sym_class_body_repeat1, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243954,78 +245724,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33097] = 32, + [32318] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4897), 1, + ACTIONS(4862), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2262), 1, aux_sym_class_body_repeat1, - STATE(2283), 1, + STATE(2276), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -244039,78 +245809,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33214] = 32, + [32435] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4899), 1, + ACTIONS(4864), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2270), 1, aux_sym_class_body_repeat1, - STATE(2284), 1, + STATE(2277), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -244124,84 +245894,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33331] = 32, + [32552] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4901), 1, + ACTIONS(4866), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2270), 1, aux_sym_class_body_repeat1, - STATE(2285), 1, + STATE(2278), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [32669] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(227), 1, + anon_sym_STAR, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(245), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + ACTIONS(4870), 1, + anon_sym_RBRACE, + ACTIONS(4872), 1, + anon_sym_async, + ACTIONS(4874), 1, + anon_sym_static, + ACTIONS(4876), 1, + anon_sym_readonly, + ACTIONS(4882), 1, + anon_sym_override, + STATE(2279), 1, + sym_comment, + STATE(3581), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(4487), 1, + sym__property_name, + STATE(5640), 1, + aux_sym_object_pattern_repeat1, + STATE(5712), 1, + aux_sym_object_repeat1, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4878), 2, + anon_sym_get, + anon_sym_set, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4880), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5631), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5707), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4868), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -244209,84 +246061,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33448] = 32, + [32780] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4903), 1, + ACTIONS(4884), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2270), 1, aux_sym_class_body_repeat1, - STATE(2286), 1, + STATE(2280), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [32897] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(227), 1, + anon_sym_STAR, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(245), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + ACTIONS(4888), 1, + anon_sym_RBRACE, + ACTIONS(4890), 1, + anon_sym_async, + ACTIONS(4892), 1, + anon_sym_static, + ACTIONS(4894), 1, + anon_sym_readonly, + ACTIONS(4900), 1, + anon_sym_override, + STATE(2281), 1, + sym_comment, + STATE(3581), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(4487), 1, + sym__property_name, + STATE(5640), 1, + aux_sym_object_pattern_repeat1, + STATE(5712), 1, + aux_sym_object_repeat1, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4896), 2, + anon_sym_get, + anon_sym_set, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4898), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5631), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5707), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4886), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -244294,78 +246228,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33565] = 32, + [33008] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4905), 1, + ACTIONS(4902), 1, anon_sym_RBRACE, - STATE(2286), 1, + STATE(2270), 1, aux_sym_class_body_repeat1, - STATE(2287), 1, + STATE(2282), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -244379,78 +246313,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33682] = 32, + [33125] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4515), 1, anon_sym_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4658), 1, + ACTIONS(4665), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - ACTIONS(4664), 1, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4673), 1, anon_sym_AT, - ACTIONS(4668), 1, + ACTIONS(4675), 1, anon_sym_static, - ACTIONS(4670), 1, + ACTIONS(4677), 1, anon_sym_readonly, - ACTIONS(4674), 1, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(4678), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(4907), 1, + ACTIONS(4904), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2277), 1, aux_sym_class_body_repeat1, - STATE(2288), 1, + STATE(2283), 1, sym_comment, - STATE(3387), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(3499), 1, + STATE(3486), 1, sym_method_definition, - STATE(3526), 1, + STATE(3529), 1, sym_class_static_block, - STATE(3540), 1, + STATE(3557), 1, sym_accessibility_modifier, - STATE(3620), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3678), 1, + STATE(3650), 1, sym_decorator, - STATE(3897), 1, + STATE(3908), 1, sym__property_name, - STATE(5530), 1, + STATE(5532), 1, sym_method_signature, - ACTIONS(3993), 2, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5789), 3, + STATE(5782), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4498), 13, + ACTIONS(4505), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -244464,1959 +246398,522 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33799] = 32, + [33242] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2754), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3027), 1, - anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, - anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4665), 1, + anon_sym_STAR, + ACTIONS(4669), 1, + anon_sym_SEMI, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(4675), 1, + anon_sym_static, + ACTIONS(4677), 1, + anon_sym_readonly, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(3047), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4626), 1, - anon_sym_STAR, - ACTIONS(4628), 1, - anon_sym_default, - ACTIONS(4630), 1, - anon_sym_type, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_as, - ACTIONS(4644), 1, - anon_sym_module, - STATE(2289), 1, + ACTIONS(4906), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(2284), 1, sym_comment, - STATE(4889), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(4995), 1, - sym_internal_module, - STATE(4996), 1, - sym_declaration, - STATE(5567), 1, - sym_export_clause, - STATE(5599), 1, + STATE(3486), 1, + sym_method_definition, + STATE(3529), 1, + sym_class_static_block, + STATE(3557), 1, + sym_accessibility_modifier, + STATE(3632), 1, + sym_override_modifier, + STATE(3650), 1, sym_decorator, - STATE(6884), 1, - sym_namespace_export, - ACTIONS(4909), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4642), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4988), 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, - [33915] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2290), 1, - sym_comment, - ACTIONS(2172), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + STATE(3908), 1, + sym__property_name, + STATE(5532), 1, + sym_method_signature, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2174), 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, - [33977] = 31, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2754), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3027), 1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4679), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4683), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5782), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, + 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, + [33359] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4665), 1, + anon_sym_STAR, + ACTIONS(4669), 1, + anon_sym_SEMI, + ACTIONS(4671), 1, anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(4675), 1, + anon_sym_static, + ACTIONS(4677), 1, + anon_sym_readonly, + ACTIONS(4681), 1, anon_sym_declare, - ACTIONS(3047), 1, + ACTIONS(4685), 1, anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4626), 1, - anon_sym_STAR, - ACTIONS(4628), 1, - anon_sym_default, - ACTIONS(4630), 1, - anon_sym_type, - ACTIONS(4634), 1, - anon_sym_as, - ACTIONS(4644), 1, - anon_sym_module, - ACTIONS(4913), 1, - anon_sym_EQ, - STATE(2291), 1, + ACTIONS(4908), 1, + anon_sym_RBRACE, + STATE(2280), 1, + aux_sym_class_body_repeat1, + STATE(2285), 1, sym_comment, - STATE(4889), 1, + STATE(3392), 1, aux_sym_export_statement_repeat1, - STATE(4995), 1, - sym_internal_module, - STATE(4996), 1, - sym_declaration, - STATE(5567), 1, - sym_export_clause, - STATE(5599), 1, + STATE(3486), 1, + sym_method_definition, + STATE(3529), 1, + sym_class_static_block, + STATE(3557), 1, + sym_accessibility_modifier, + STATE(3632), 1, + sym_override_modifier, + STATE(3650), 1, sym_decorator, - STATE(6884), 1, - sym_namespace_export, - ACTIONS(4642), 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(4988), 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, - [34091] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2292), 1, - sym_comment, - ACTIONS(2314), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + STATE(3908), 1, + sym__property_name, + STATE(5532), 1, + sym_method_signature, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2316), 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, - [34153] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4919), 1, - anon_sym_LT, - ACTIONS(4921), 1, - anon_sym_is, - STATE(2293), 1, - sym_comment, - STATE(2436), 1, - sym_type_arguments, - ACTIONS(4915), 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(4307), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_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, - [34222] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4919), 1, - anon_sym_LT, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4929), 1, - anon_sym_DOT, - STATE(2294), 1, - sym_comment, - STATE(2337), 1, - sym_type_arguments, - STATE(2343), 1, - sym_arguments, - ACTIONS(4923), 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(4925), 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, - [34293] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4919), 1, - anon_sym_LT, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4939), 1, - anon_sym_QMARK_DOT, - STATE(2295), 1, - sym_comment, - STATE(2350), 1, - sym_type_arguments, - STATE(2606), 1, - sym_arguments, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(4931), 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(4933), 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, - [34370] = 26, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4943), 1, - anon_sym_async, - ACTIONS(4945), 1, - anon_sym_static, - ACTIONS(4947), 1, - anon_sym_readonly, - ACTIONS(4953), 1, - anon_sym_override, - STATE(2296), 1, - sym_comment, - STATE(3599), 1, - sym_accessibility_modifier, - STATE(3625), 1, - sym_override_modifier, - STATE(4454), 1, - sym__property_name, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4949), 2, + ACTIONS(4679), 2, anon_sym_get, anon_sym_set, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4951), 3, + ACTIONS(4683), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6535), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6537), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4941), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [34473] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4919), 1, - anon_sym_LT, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4955), 1, - anon_sym_DOT, - STATE(2297), 1, - sym_comment, - STATE(2347), 1, - sym_type_arguments, - STATE(2349), 1, - sym_arguments, - ACTIONS(4258), 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(4248), 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, - [34544] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4919), 1, - anon_sym_LT, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4961), 1, - anon_sym_DOT, - STATE(2298), 1, - sym_comment, - STATE(2344), 1, - sym_type_arguments, - STATE(2345), 1, - sym_arguments, - ACTIONS(4957), 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(4959), 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, - [34615] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4919), 1, - anon_sym_LT, - STATE(2299), 1, - sym_comment, - STATE(2436), 1, - sym_type_arguments, - ACTIONS(4915), 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(4307), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_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, - [34681] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_is, - STATE(2300), 1, - sym_comment, - ACTIONS(4963), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4965), 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, - [34743] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2301), 1, - sym_comment, - ACTIONS(4454), 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(4967), 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, - [34803] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_is, - STATE(2302), 1, - sym_comment, - ACTIONS(4969), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4971), 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, - [34865] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2303), 1, - sym_comment, - ACTIONS(4973), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4975), 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, - [34925] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4981), 1, - anon_sym_is, - STATE(2304), 1, - sym_comment, - ACTIONS(4977), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4979), 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, - [34987] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2305), 1, - sym_comment, - ACTIONS(2314), 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(2316), 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, - [35047] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2306), 1, - sym_comment, - ACTIONS(2172), 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(2174), 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, - [35107] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4983), 1, - sym__automatic_semicolon, - STATE(2307), 1, - sym_comment, - ACTIONS(2138), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2190), 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, - [35171] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2308), 1, - sym_comment, - ACTIONS(4450), 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(4985), 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, - [35231] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - STATE(2309), 1, - sym_comment, - STATE(2632), 1, - sym_statement_block, - ACTIONS(2122), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 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, - [35295] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2310), 1, - sym_comment, - ACTIONS(2061), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2063), 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, - [35355] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2311), 1, - sym_comment, - ACTIONS(4456), 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(4989), 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, - [35415] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - ACTIONS(4991), 1, - anon_sym_DOT, - STATE(2312), 1, - sym_comment, - STATE(2632), 1, - sym_statement_block, - ACTIONS(2122), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 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, - [35481] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - STATE(2313), 1, - sym_comment, - STATE(2647), 2, - sym_template_string, - sym_arguments, - ACTIONS(4993), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4995), 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, - [35547] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - ACTIONS(4999), 1, - anon_sym_DOT, - STATE(2314), 1, - sym_comment, - STATE(2632), 1, - sym_statement_block, - ACTIONS(2122), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 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, - [35613] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4919), 1, - anon_sym_LT, - STATE(2315), 1, - sym_comment, - STATE(2398), 1, - sym_type_arguments, - ACTIONS(4977), 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(4979), 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, - [35677] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2316), 1, - sym_comment, - ACTIONS(5001), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5003), 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, - [35736] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2317), 1, - sym_comment, - ACTIONS(5005), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5007), 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, - [35795] = 5, + STATE(5782), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [33476] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2318), 1, - sym_comment, - ACTIONS(5009), 13, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4665), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4669), 1, + anon_sym_SEMI, + ACTIONS(4671), 1, + anon_sym_async, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(4675), 1, + anon_sym_static, + ACTIONS(4677), 1, + anon_sym_readonly, + ACTIONS(4681), 1, + anon_sym_declare, + ACTIONS(4685), 1, + anon_sym_abstract, + ACTIONS(4910), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(2286), 1, + sym_comment, + STATE(3392), 1, + aux_sym_export_statement_repeat1, + STATE(3486), 1, + sym_method_definition, + STATE(3529), 1, + sym_class_static_block, + STATE(3557), 1, + sym_accessibility_modifier, + STATE(3632), 1, + sym_override_modifier, + STATE(3650), 1, + sym_decorator, + STATE(3908), 1, + sym__property_name, + STATE(5532), 1, + sym_method_signature, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5011), 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, - [35854] = 5, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4679), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4683), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5782), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [33593] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2319), 1, - sym_comment, - ACTIONS(5013), 13, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4665), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4669), 1, + anon_sym_SEMI, + ACTIONS(4671), 1, + anon_sym_async, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(4675), 1, + anon_sym_static, + ACTIONS(4677), 1, + anon_sym_readonly, + ACTIONS(4681), 1, + anon_sym_declare, + ACTIONS(4685), 1, + anon_sym_abstract, + ACTIONS(4912), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(2287), 1, + sym_comment, + STATE(3392), 1, + aux_sym_export_statement_repeat1, + STATE(3486), 1, + sym_method_definition, + STATE(3529), 1, + sym_class_static_block, + STATE(3557), 1, + sym_accessibility_modifier, + STATE(3632), 1, + sym_override_modifier, + STATE(3650), 1, + sym_decorator, + STATE(3908), 1, + sym__property_name, + STATE(5532), 1, + sym_method_signature, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5015), 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, - [35913] = 5, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4679), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4683), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5782), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [33710] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2320), 1, - sym_comment, - ACTIONS(5017), 13, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4515), 1, + anon_sym_LBRACK, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4665), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4669), 1, + anon_sym_SEMI, + ACTIONS(4671), 1, + anon_sym_async, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(4675), 1, + anon_sym_static, + ACTIONS(4677), 1, + anon_sym_readonly, + ACTIONS(4681), 1, + anon_sym_declare, + ACTIONS(4685), 1, + anon_sym_abstract, + ACTIONS(4914), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_class_body_repeat1, + STATE(2288), 1, + sym_comment, + STATE(3392), 1, + aux_sym_export_statement_repeat1, + STATE(3486), 1, + sym_method_definition, + STATE(3529), 1, + sym_class_static_block, + STATE(3557), 1, + sym_accessibility_modifier, + STATE(3632), 1, + sym_override_modifier, + STATE(3650), 1, + sym_decorator, + STATE(3908), 1, + sym__property_name, + STATE(5532), 1, + sym_method_signature, + ACTIONS(4000), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5019), 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, - [35972] = 5, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4679), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4683), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5782), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [33827] = 31, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2321), 1, - sym_comment, - ACTIONS(5021), 13, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(3032), 1, + anon_sym_namespace, + ACTIONS(3034), 1, + anon_sym_import, + ACTIONS(3036), 1, + anon_sym_var, + ACTIONS(3038), 1, + anon_sym_let, + ACTIONS(3040), 1, + anon_sym_const, + ACTIONS(3042), 1, + anon_sym_class, + ACTIONS(3044), 1, + anon_sym_async, + ACTIONS(3046), 1, + anon_sym_function, + ACTIONS(3050), 1, + anon_sym_declare, + ACTIONS(3054), 1, + anon_sym_abstract, + ACTIONS(3058), 1, + anon_sym_interface, + ACTIONS(3060), 1, + anon_sym_enum, + ACTIONS(4633), 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(5023), 32, - sym__ternary_qmark, + ACTIONS(4635), 1, + anon_sym_default, + ACTIONS(4637), 1, + anon_sym_type, + ACTIONS(4641), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4651), 1, + anon_sym_module, + ACTIONS(4916), 1, + anon_sym_EQ, + STATE(2289), 1, + sym_comment, + STATE(4891), 1, + aux_sym_export_statement_repeat1, + STATE(4998), 1, + sym_internal_module, + STATE(4999), 1, + sym_declaration, + STATE(5569), 1, + sym_export_clause, + STATE(5601), 1, + sym_decorator, + STATE(6888), 1, + sym_namespace_export, + ACTIONS(4649), 9, + sym__automatic_semicolon, 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, - [36031] = 5, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 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, + [33941] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2322), 1, + STATE(2290), 1, sym_comment, - ACTIONS(5025), 13, + ACTIONS(2219), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246430,18 +246927,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5027), 32, + anon_sym_QMARK, + ACTIONS(2221), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -246462,72 +246962,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [36090] = 8, + anon_sym_PIPE_RBRACE, + [34003] = 32, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5035), 1, - anon_sym_PIPE, - ACTIONS(5037), 1, - anon_sym_extends, - STATE(2323), 1, - sym_comment, - ACTIONS(5029), 11, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(3032), 1, + anon_sym_namespace, + ACTIONS(3034), 1, + anon_sym_import, + ACTIONS(3036), 1, + anon_sym_var, + ACTIONS(3038), 1, + anon_sym_let, + ACTIONS(3040), 1, + anon_sym_const, + ACTIONS(3042), 1, + anon_sym_class, + ACTIONS(3044), 1, + anon_sym_async, + ACTIONS(3046), 1, + anon_sym_function, + ACTIONS(3050), 1, + anon_sym_declare, + ACTIONS(3054), 1, + anon_sym_abstract, + ACTIONS(3058), 1, + anon_sym_interface, + ACTIONS(3060), 1, + anon_sym_enum, + ACTIONS(4633), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5031), 31, - sym__ternary_qmark, + ACTIONS(4635), 1, + anon_sym_default, + ACTIONS(4637), 1, + anon_sym_type, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4651), 1, + anon_sym_module, + STATE(2291), 1, + sym_comment, + STATE(4891), 1, + aux_sym_export_statement_repeat1, + STATE(4998), 1, + sym_internal_module, + STATE(4999), 1, + sym_declaration, + STATE(5569), 1, + sym_export_clause, + STATE(5601), 1, + sym_decorator, + STATE(6888), 1, + sym_namespace_export, + ACTIONS(4918), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4649), 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_implements, - [36155] = 5, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 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, + [34119] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2324), 1, + STATE(2292), 1, sym_comment, - ACTIONS(5039), 13, + ACTIONS(2209), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246541,18 +247068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5041), 32, + anon_sym_QMARK, + ACTIONS(2211), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -246573,125 +247103,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [36214] = 5, + anon_sym_PIPE_RBRACE, + [34181] = 26, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2325), 1, - sym_comment, - ACTIONS(5025), 13, + ACTIONS(227), 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(5027), 32, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(245), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4693), 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, - [36273] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2326), 1, + ACTIONS(4924), 1, + anon_sym_async, + ACTIONS(4926), 1, + anon_sym_static, + ACTIONS(4928), 1, + anon_sym_readonly, + ACTIONS(4934), 1, + anon_sym_override, + STATE(2293), 1, sym_comment, - ACTIONS(5043), 3, + STATE(3581), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(4487), 1, + sym__property_name, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4164), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5045), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 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(4222), 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, - [36336] = 5, + ACTIONS(4930), 2, + anon_sym_get, + anon_sym_set, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4932), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6554), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6562), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4922), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [34284] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2327), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4938), 1, + anon_sym_DOT, + ACTIONS(4940), 1, + anon_sym_LT, + STATE(2294), 1, sym_comment, - ACTIONS(4963), 13, + STATE(2411), 1, + sym_type_arguments, + STATE(2412), 1, + sym_arguments, + ACTIONS(4291), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246702,22 +247209,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(4965), 32, + ACTIONS(4281), 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, @@ -246738,129 +247242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36395] = 8, + [34355] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5035), 1, - anon_sym_PIPE, - ACTIONS(5037), 1, - anon_sym_extends, - STATE(2328), 1, - sym_comment, - ACTIONS(5047), 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(5049), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4936), 1, 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, - [36460] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5063), 1, - anon_sym_extends, - STATE(2329), 1, - sym_comment, - ACTIONS(5057), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5060), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5051), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4940), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5055), 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, + ACTIONS(4946), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [36527] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2330), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5065), 13, + STATE(2407), 1, + sym_type_arguments, + STATE(2408), 1, + sym_arguments, + ACTIONS(4942), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246871,22 +247270,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(5067), 32, + ACTIONS(4944), 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, @@ -246907,69 +247303,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36586] = 6, + [34426] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5069), 1, - anon_sym_LBRACK, - STATE(2331), 1, - sym_comment, - ACTIONS(5065), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5067), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(4940), 1, + anon_sym_LT, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4956), 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, - [36647] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2332), 1, + STATE(2296), 1, sym_comment, - ACTIONS(4977), 13, + STATE(2420), 1, + sym_type_arguments, + STATE(2587), 1, + sym_arguments, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(4948), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246980,23 +247337,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(4979), 32, + ACTIONS(4950), 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, @@ -247014,16 +247366,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36706] = 5, + [34503] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2333), 1, + ACTIONS(4940), 1, + anon_sym_LT, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, + anon_sym_is, + STATE(2297), 1, sym_comment, - ACTIONS(5071), 13, + STATE(2431), 1, + sym_type_arguments, + ACTIONS(4958), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247034,10 +247393,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(5073), 32, + ACTIONS(4339), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247049,7 +247407,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, @@ -247070,72 +247427,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36765] = 9, + [34572] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3679), 1, - anon_sym_extends, - STATE(2334), 1, - sym_comment, - ACTIONS(5075), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5078), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2140), 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(2146), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(4940), 1, + anon_sym_LT, + ACTIONS(4968), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [36832] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2335), 1, + STATE(2298), 1, sym_comment, - ACTIONS(5025), 13, + STATE(2409), 1, + sym_type_arguments, + STATE(2410), 1, + sym_arguments, + ACTIONS(4964), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247146,22 +247455,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(5027), 32, + ACTIONS(4966), 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, @@ -247182,14 +247488,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36891] = 5, + [34643] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2336), 1, + ACTIONS(4970), 1, + anon_sym_LBRACE, + ACTIONS(4972), 1, + anon_sym_DOT, + STATE(2299), 1, sym_comment, - ACTIONS(5081), 13, + STATE(2620), 1, + sym_statement_block, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247203,19 +247515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5083), 32, + ACTIONS(2145), 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, @@ -247234,16 +247545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36950] = 5, + anon_sym_PIPE_RBRACE, + [34709] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2337), 1, + ACTIONS(4978), 1, + anon_sym_is, + STATE(2300), 1, sym_comment, - ACTIONS(5085), 13, + ACTIONS(4974), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247257,7 +247569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5087), 32, + ACTIONS(4976), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247290,86 +247602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37009] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5103), 1, - anon_sym_readonly, - STATE(2338), 1, - sym_comment, - STATE(3631), 1, - sym_override_modifier, - STATE(3959), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [37104] = 5, + [34771] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2339), 1, + STATE(2301), 1, sym_comment, - ACTIONS(5107), 13, + ACTIONS(4424), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247383,7 +247623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 32, + anon_sym_QMARK, + ACTIONS(4980), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247416,14 +247657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37163] = 5, + [34831] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2340), 1, + STATE(2302), 1, sym_comment, - ACTIONS(5081), 13, + ACTIONS(4982), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247437,7 +247678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5083), 32, + ACTIONS(4984), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247470,16 +247711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37222] = 6, + anon_sym_is, + [34891] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4983), 1, - sym__automatic_semicolon, - STATE(2341), 1, + STATE(2303), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(4426), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247493,7 +247733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2190), 31, + anon_sym_QMARK, + ACTIONS(4986), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247524,15 +247765,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, - [37283] = 5, + [34951] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2342), 1, + STATE(2304), 1, sym_comment, - ACTIONS(5111), 13, + ACTIONS(4418), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247546,7 +247788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5113), 32, + anon_sym_QMARK, + ACTIONS(4988), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247579,14 +247822,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37342] = 5, + [35011] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2343), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + STATE(2305), 1, sym_comment, - ACTIONS(5115), 13, + STATE(2650), 2, + sym_template_string, + sym_arguments, + ACTIONS(4990), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247600,13 +247850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5117), 32, + ACTIONS(4992), 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, @@ -247629,18 +247878,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [37401] = 5, + [35077] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2344), 1, + ACTIONS(4970), 1, + anon_sym_LBRACE, + ACTIONS(4996), 1, + anon_sym_DOT, + STATE(2306), 1, sym_comment, - ACTIONS(5119), 13, + STATE(2620), 1, + sym_statement_block, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247654,19 +247907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5121), 32, + ACTIONS(2145), 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, @@ -247685,16 +247937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [37460] = 5, + anon_sym_PIPE_RBRACE, + [35143] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2345), 1, + ACTIONS(4970), 1, + anon_sym_LBRACE, + STATE(2307), 1, sym_comment, - ACTIONS(5123), 13, + STATE(2620), 1, + sym_statement_block, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247708,18 +247963,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5125), 32, + ACTIONS(2145), 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, @@ -247739,16 +247994,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, - [37519] = 5, + anon_sym_PIPE_RBRACE, + [35207] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2346), 1, + ACTIONS(4940), 1, + anon_sym_LT, + ACTIONS(4960), 1, + anon_sym_DOT, + STATE(2308), 1, sym_comment, - ACTIONS(5127), 13, + STATE(2431), 1, + sym_type_arguments, + ACTIONS(4958), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247759,10 +248019,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(5129), 32, + ACTIONS(4339), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247774,7 +248033,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, @@ -247795,14 +248053,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37578] = 5, + [35273] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2347), 1, + STATE(2309), 1, sym_comment, - ACTIONS(5131), 13, + ACTIONS(2209), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247816,7 +248074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5133), 32, + anon_sym_QMARK, + ACTIONS(2211), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247849,14 +248108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37637] = 5, + [35333] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2348), 1, + ACTIONS(4998), 1, + sym__automatic_semicolon, + STATE(2310), 1, sym_comment, - ACTIONS(5001), 13, + ACTIONS(2147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247870,7 +248133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5003), 32, + ACTIONS(2169), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247901,16 +248164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [37696] = 5, + [35397] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2349), 1, + ACTIONS(4962), 1, + anon_sym_is, + STATE(2311), 1, sym_comment, - ACTIONS(5135), 13, + ACTIONS(5000), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247924,7 +248188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5137), 32, + ACTIONS(5002), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247957,18 +248221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37755] = 7, + [35459] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - STATE(2350), 1, + ACTIONS(4962), 1, + anon_sym_is, + STATE(2312), 1, sym_comment, - STATE(2512), 1, - sym_arguments, - ACTIONS(5139), 13, + ACTIONS(5004), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247982,12 +248244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5141), 30, + ACTIONS(5006), 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, @@ -248012,15 +248275,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, - [37818] = 5, + [35521] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2351), 1, + STATE(2313), 1, sym_comment, - ACTIONS(5143), 13, + ACTIONS(2092), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248034,7 +248298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5145), 32, + ACTIONS(2094), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248067,14 +248331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37877] = 5, + anon_sym_is, + [35581] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2352), 1, + ACTIONS(4940), 1, + anon_sym_LT, + STATE(2314), 1, sym_comment, - ACTIONS(5147), 13, + STATE(2440), 1, + sym_type_arguments, + ACTIONS(4974), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248085,10 +248354,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(5149), 32, + ACTIONS(4976), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248121,32 +248389,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37936] = 8, + [35645] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5035), 1, - anon_sym_PIPE, - ACTIONS(5037), 1, - anon_sym_extends, - STATE(2353), 1, + STATE(2315), 1, sym_comment, - ACTIONS(5151), 11, + ACTIONS(2219), 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, - ACTIONS(5153), 31, + anon_sym_QMARK, + ACTIONS(2221), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248177,39 +248442,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [38001] = 5, + [35705] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2354), 1, + ACTIONS(3612), 1, + anon_sym_extends, + STATE(2316), 1, sym_comment, - ACTIONS(4463), 13, + ACTIONS(5008), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5011), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2149), 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(5155), 32, + ACTIONS(2155), 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, @@ -248230,18 +248501,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, - [38060] = 6, + [35772] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5157), 1, - sym__automatic_semicolon, - STATE(2355), 1, + STATE(2317), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248255,7 +248523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2212), 31, + ACTIONS(5014), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248286,15 +248554,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, - [38121] = 5, + [35831] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2356), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5159), 13, + ACTIONS(5016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248308,7 +248577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5161), 32, + ACTIONS(5018), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248341,14 +248610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38180] = 5, + [35890] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2357), 1, + STATE(2319), 1, sym_comment, - ACTIONS(5163), 13, + ACTIONS(5020), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248362,7 +248631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 32, + ACTIONS(5022), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248395,85 +248664,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38239] = 8, + [35949] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, + ACTIONS(5028), 1, anon_sym_AMP, - ACTIONS(5035), 1, + ACTIONS(5030), 1, anon_sym_PIPE, - ACTIONS(5037), 1, + ACTIONS(5032), 1, anon_sym_extends, - STATE(2358), 1, - sym_comment, - ACTIONS(5167), 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(5169), 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, - [38304] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2359), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5163), 13, + ACTIONS(5024), 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(5165), 32, + ACTIONS(5026), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248504,16 +248720,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, - [38363] = 5, + [36014] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2360), 1, + STATE(2321), 1, sym_comment, - ACTIONS(3405), 13, + ACTIONS(5034), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248527,7 +248742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3569), 32, + ACTIONS(5036), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248560,101 +248775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38422] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5179), 1, - anon_sym_RPAREN, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2361), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(6998), 1, - sym_type_annotation, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [38547] = 5, + [36073] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2362), 1, + STATE(2322), 1, sym_comment, - ACTIONS(5127), 13, + ACTIONS(5034), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248668,7 +248796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5129), 32, + ACTIONS(5036), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248701,188 +248829,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38606] = 38, + [36132] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5221), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2363), 1, + STATE(2323), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(7175), 1, - sym_type_annotation, - ACTIONS(5171), 2, + ACTIONS(5034), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [38731] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, + ACTIONS(5036), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5223), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2364), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(6981), 1, - sym_type_annotation, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38856] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [36191] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2365), 1, + STATE(2324), 1, sym_comment, - ACTIONS(5081), 13, + ACTIONS(5038), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248896,7 +248904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5083), 32, + ACTIONS(5040), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248929,101 +248937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38915] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5225), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2366), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(7411), 1, - sym_type_annotation, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [39040] = 5, + [36250] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2367), 1, + STATE(2325), 1, sym_comment, - ACTIONS(5163), 13, + ACTIONS(3408), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249037,7 +248958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 32, + ACTIONS(3546), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249070,14 +248991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39099] = 5, + [36309] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2368), 1, + STATE(2326), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5020), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249091,7 +249012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5007), 32, + ACTIONS(5022), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249124,14 +249045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39158] = 5, + [36368] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2369), 1, + STATE(2327), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(5042), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249145,7 +249066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 32, + ACTIONS(5044), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249178,22 +249099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39217] = 9, + [36427] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4939), 1, - anon_sym_QMARK_DOT, - STATE(2370), 1, + STATE(2328), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(2256), 13, + ACTIONS(5004), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249207,7 +249120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2258), 28, + ACTIONS(5006), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249217,7 +249130,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, @@ -249235,15 +249151,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, - [39284] = 5, + [36486] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2371), 1, + STATE(2329), 1, sym_comment, - ACTIONS(5231), 13, + ACTIONS(5046), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249257,7 +249174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5233), 32, + ACTIONS(5048), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249290,14 +249207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39343] = 5, + [36545] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2372), 1, + STATE(2330), 1, sym_comment, - ACTIONS(5235), 13, + ACTIONS(5046), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249311,7 +249228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 32, + ACTIONS(5048), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249344,14 +249261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39402] = 5, + [36604] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2373), 1, + STATE(2331), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(5050), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249365,7 +249282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 32, + ACTIONS(5052), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249398,14 +249315,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39461] = 5, + [36663] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5061), 1, + anon_sym_RBRACE, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5068), 1, + anon_sym_readonly, + STATE(2332), 1, + sym_comment, + STATE(3625), 1, + sym_override_modifier, + STATE(3940), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [36758] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2374), 1, + STATE(2333), 1, sym_comment, - ACTIONS(3247), 13, + ACTIONS(5046), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249419,7 +249408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3579), 32, + ACTIONS(5048), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249452,14 +249441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39520] = 5, + [36817] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2375), 1, + ACTIONS(5072), 1, + anon_sym_LBRACK, + STATE(2334), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(5050), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249473,7 +249464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 32, + ACTIONS(5052), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249483,7 +249474,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, @@ -249506,14 +249496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39579] = 5, + [36878] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2376), 1, + STATE(2335), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(5074), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249527,7 +249517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 32, + ACTIONS(5076), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249560,14 +249550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39638] = 5, + [36937] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2377), 1, + STATE(2336), 1, sym_comment, - ACTIONS(3377), 13, + ACTIONS(4974), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249581,7 +249571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3679), 32, + ACTIONS(4976), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249614,28 +249604,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39697] = 5, + [36996] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2378), 1, + ACTIONS(5028), 1, + anon_sym_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5032), 1, + anon_sym_extends, + STATE(2337), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(5078), 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(5015), 32, + ACTIONS(5080), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249666,16 +249660,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, - [39756] = 5, + [37061] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2379), 1, + STATE(2338), 1, sym_comment, - ACTIONS(5247), 13, + ACTIONS(5078), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249689,7 +249682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 32, + ACTIONS(5080), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249722,14 +249715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39815] = 5, + [37120] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2380), 1, + STATE(2339), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249743,7 +249736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5253), 32, + ACTIONS(5084), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249776,176 +249769,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39874] = 38, + [37179] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5255), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2381), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(7339), 1, - sym_type_annotation, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [39999] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5035), 1, - anon_sym_PIPE, - ACTIONS(5037), 1, - anon_sym_extends, - STATE(2382), 1, + STATE(2340), 1, sym_comment, - ACTIONS(5257), 11, + ACTIONS(4481), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5259), 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, - [40064] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5033), 1, anon_sym_AMP, - ACTIONS(5035), 1, anon_sym_PIPE, - ACTIONS(5037), 1, - anon_sym_extends, - STATE(2383), 1, - sym_comment, - ACTIONS(5261), 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(5263), 31, + ACTIONS(5086), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249976,15 +249821,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, - [40129] = 5, + [37238] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2384), 1, + STATE(2341), 1, sym_comment, - ACTIONS(4465), 13, + ACTIONS(4483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249998,7 +249844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5265), 32, + ACTIONS(5088), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250031,16 +249877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40188] = 6, + [37297] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - STATE(2385), 1, + STATE(2342), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5024), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250054,7 +249898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 31, + ACTIONS(5026), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250085,29 +249929,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [40249] = 5, + [37356] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2386), 1, + ACTIONS(5028), 1, + anon_sym_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5032), 1, + anon_sym_extends, + STATE(2343), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(5090), 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(5241), 32, + ACTIONS(5092), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250138,16 +249987,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, - [40308] = 5, + [37421] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2387), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5094), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250161,7 +250009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5269), 32, + ACTIONS(5096), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250194,14 +250042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40367] = 5, + [37480] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2388), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5167), 13, + ACTIONS(5098), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250215,7 +250063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 32, + ACTIONS(5100), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250248,14 +250096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40426] = 5, + [37539] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2389), 1, + STATE(2346), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250269,7 +250117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5273), 32, + ACTIONS(5104), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250302,14 +250150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40485] = 5, + [37598] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2390), 1, + STATE(2347), 1, sym_comment, - ACTIONS(3241), 13, + ACTIONS(5106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250323,7 +250171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3599), 32, + ACTIONS(5108), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250356,86 +250204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40544] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5103), 1, - anon_sym_readonly, - ACTIONS(5275), 1, - anon_sym_RBRACE, - STATE(2391), 1, - sym_comment, - STATE(3631), 1, - sym_override_modifier, - STATE(3959), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [40639] = 5, + [37657] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2392), 1, + STATE(2348), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(5102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250449,7 +250225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5015), 32, + ACTIONS(5104), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250482,14 +250258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40698] = 5, + [37716] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2393), 1, + STATE(2349), 1, sym_comment, - ACTIONS(5151), 13, + ACTIONS(5106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250503,7 +250279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5153), 32, + ACTIONS(5108), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250536,14 +250312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40757] = 5, + [37775] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2394), 1, + STATE(2350), 1, sym_comment, - ACTIONS(4486), 13, + ACTIONS(5110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250557,7 +250333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 32, + ACTIONS(5112), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250590,14 +250366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40816] = 5, + [37834] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2395), 1, + STATE(2351), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(5114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250611,7 +250387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 32, + ACTIONS(5116), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250644,14 +250420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40875] = 5, + [37893] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2396), 1, + STATE(2352), 1, sym_comment, - ACTIONS(4467), 13, + ACTIONS(5110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250665,7 +250441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 32, + ACTIONS(5112), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250698,14 +250474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40934] = 5, + [37952] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2397), 1, + STATE(2353), 1, sym_comment, - ACTIONS(4486), 13, + ACTIONS(5118), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250719,7 +250495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 32, + ACTIONS(5120), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250752,14 +250528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40993] = 5, + [38011] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2398), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5282), 13, + ACTIONS(5114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250773,7 +250549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5284), 32, + ACTIONS(5116), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250806,14 +250582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41052] = 5, + [38070] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2399), 1, + STATE(2355), 1, sym_comment, - ACTIONS(5159), 13, + ACTIONS(5122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250827,7 +250603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5161), 32, + ACTIONS(5124), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250860,188 +250636,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41111] = 38, + [38129] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5286), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2400), 1, + STATE(2356), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(7096), 1, - sym_type_annotation, - ACTIONS(5171), 2, + ACTIONS(5126), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41236] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, + ACTIONS(5128), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5288), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2401), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(7157), 1, - sym_type_annotation, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41361] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [38188] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2402), 1, + STATE(2357), 1, sym_comment, - ACTIONS(4488), 13, + ACTIONS(5122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251055,7 +250711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5290), 32, + ACTIONS(5124), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251088,16 +250744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41420] = 6, + [38247] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5296), 1, - anon_sym_DOT, - STATE(2403), 1, + STATE(2358), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251111,7 +250765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5294), 31, + ACTIONS(5128), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251123,6 +250777,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, @@ -251143,20 +250798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41481] = 8, + [38306] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, + ACTIONS(5028), 1, anon_sym_AMP, - ACTIONS(5035), 1, + ACTIONS(5030), 1, anon_sym_PIPE, - ACTIONS(5037), 1, + ACTIONS(5032), 1, anon_sym_extends, - STATE(2404), 1, + STATE(2359), 1, sym_comment, - ACTIONS(5298), 11, + ACTIONS(5130), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251168,7 +250823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5300), 31, + ACTIONS(5132), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251200,14 +250855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41546] = 5, + [38371] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2405), 1, + STATE(2360), 1, sym_comment, - ACTIONS(5302), 13, + ACTIONS(5134), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251221,7 +250876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5304), 32, + ACTIONS(5136), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251254,14 +250909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41605] = 5, + [38430] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2406), 1, + STATE(2361), 1, sym_comment, - ACTIONS(5306), 13, + ACTIONS(5138), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251275,7 +250930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 32, + ACTIONS(5140), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251308,14 +250963,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41664] = 5, + [38489] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2407), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5150), 1, + anon_sym_RPAREN, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2362), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(7181), 1, + sym_type_annotation, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38614] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5192), 1, + anon_sym_LBRACE, + STATE(2363), 1, sym_comment, - ACTIONS(2152), 13, + STATE(2447), 1, + sym_statement_block, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251329,19 +251075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2154), 32, - sym__automatic_semicolon, + ACTIONS(2145), 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_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -251361,15 +251105,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41723] = 5, + anon_sym_implements, + [38677] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2408), 1, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5194), 1, + anon_sym_DOT, + STATE(2364), 1, sym_comment, - ACTIONS(5310), 13, + STATE(2447), 1, + sym_statement_block, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251383,10 +251133,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5312), 32, + ACTIONS(2145), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -251395,7 +251144,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, @@ -251414,16 +251162,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, - [41782] = 5, + [38742] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2409), 1, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2365), 1, sym_comment, - ACTIONS(4969), 13, + STATE(2447), 1, + sym_statement_block, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251437,10 +251190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 32, + ACTIONS(2145), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -251449,7 +251201,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, @@ -251468,20 +251219,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, - [41841] = 7, + [38807] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - STATE(2410), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5198), 1, + anon_sym_RPAREN, + STATE(2305), 1, + sym_type_arguments, + STATE(2366), 1, sym_comment, - STATE(2592), 1, - sym_statement_block, - ACTIONS(2122), 13, + STATE(5805), 1, + sym_optional_chain, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(7335), 1, + sym_type_annotation, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38932] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2367), 1, + sym_comment, + ACTIONS(3384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251495,9 +251328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2128), 30, + ACTIONS(3612), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -251525,39 +251359,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [41904] = 5, + [38991] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2411), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5200), 1, + anon_sym_RPAREN, + STATE(2305), 1, + sym_type_arguments, + STATE(2368), 1, sym_comment, - ACTIONS(4490), 13, + STATE(5805), 1, + sym_optional_chain, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(7178), 1, + sym_type_annotation, + ACTIONS(5142), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39116] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5068), 1, + anon_sym_readonly, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(2369), 1, + sym_comment, + STATE(3625), 1, + sym_override_modifier, + STATE(3940), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [39211] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2370), 1, + sym_comment, + ACTIONS(5205), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5207), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4225), 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(5316), 32, + ACTIONS(4229), 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, @@ -251578,40 +251575,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [41963] = 5, + [39274] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2412), 1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5221), 1, + anon_sym_extends, + STATE(2371), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5215), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5218), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5209), 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(5063), 32, + ACTIONS(5213), 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, @@ -251632,16 +251633,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, - [42022] = 5, + [39341] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2413), 1, + STATE(2372), 1, sym_comment, - ACTIONS(5039), 13, + ACTIONS(5223), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251655,7 +251655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5041), 32, + ACTIONS(5225), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251688,14 +251688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42081] = 5, + [39400] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2414), 1, + STATE(2373), 1, sym_comment, - ACTIONS(4492), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251709,7 +251709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5320), 32, + ACTIONS(5229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251742,26 +251742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42140] = 8, + [39459] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - ACTIONS(5322), 1, - anon_sym_DOT, - STATE(2415), 1, + ACTIONS(5028), 1, + anon_sym_AMP, + STATE(2374), 1, sym_comment, - STATE(2592), 1, - sym_statement_block, - ACTIONS(2122), 13, + ACTIONS(5231), 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, @@ -251769,9 +251764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2128), 29, + ACTIONS(5233), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -251780,6 +251776,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, @@ -251798,17 +251795,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, - [42205] = 6, + [39520] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5328), 1, - anon_sym_DOT, - STATE(2416), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5324), 13, + ACTIONS(5235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251822,7 +251818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 31, + ACTIONS(5237), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251834,6 +251830,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, @@ -251854,164 +251851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42266] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5103), 1, - anon_sym_readonly, - ACTIONS(5331), 1, - anon_sym_RBRACE, - STATE(2417), 1, - sym_comment, - STATE(3631), 1, - sym_override_modifier, - STATE(3959), 1, - sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [42361] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5103), 1, - anon_sym_readonly, - ACTIONS(5334), 1, - anon_sym_RBRACE, - STATE(2418), 1, - sym_comment, - STATE(3631), 1, - sym_override_modifier, - STATE(3959), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [42456] = 8, + [39579] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - ACTIONS(5337), 1, - anon_sym_DOT, - STATE(2419), 1, + STATE(2376), 1, sym_comment, - STATE(2592), 1, - sym_statement_block, - ACTIONS(2122), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252025,9 +251872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2128), 29, + ACTIONS(5239), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -252036,6 +251884,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, @@ -252054,15 +251903,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, - [42521] = 5, + [39638] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2420), 1, + STATE(2377), 1, sym_comment, - ACTIONS(5339), 13, + ACTIONS(4451), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252076,7 +251926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5341), 32, + ACTIONS(5241), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252109,101 +251959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42580] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5343), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2421), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(7426), 1, - sym_type_annotation, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [42705] = 5, + [39697] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2422), 1, + STATE(2378), 1, sym_comment, - ACTIONS(4484), 13, + ACTIONS(4451), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252217,7 +251980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5345), 32, + ACTIONS(5241), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252250,159 +252013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42764] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5135), 1, - anon_sym_QMARK, - STATE(2423), 1, - sym_comment, - ACTIONS(5137), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5347), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5349), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_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, - [42827] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5351), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2424), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - STATE(7330), 1, - sym_type_annotation, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [42952] = 6, + [39756] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5353), 1, - anon_sym_DOT, - STATE(2425), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5324), 13, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252416,7 +252034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 31, + ACTIONS(5014), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252428,6 +252046,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, @@ -252448,14 +252067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43013] = 5, + [39815] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2426), 1, + STATE(2380), 1, sym_comment, - ACTIONS(4482), 13, + ACTIONS(5243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252469,7 +252088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5356), 32, + ACTIONS(5245), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252502,14 +252121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43072] = 5, + [39874] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2427), 1, + STATE(2381), 1, sym_comment, - ACTIONS(5358), 13, + ACTIONS(5243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252523,7 +252142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5360), 32, + ACTIONS(5245), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252556,14 +252175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43131] = 5, + [39933] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2428), 1, + STATE(2382), 1, sym_comment, - ACTIONS(3227), 13, + ACTIONS(4447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252577,7 +252196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3669), 32, + ACTIONS(5247), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252610,14 +252229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43190] = 5, + [39992] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2429), 1, + ACTIONS(5253), 1, + anon_sym_DOT, + STATE(2383), 1, sym_comment, - ACTIONS(5362), 13, + ACTIONS(5249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252631,7 +252252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5364), 32, + ACTIONS(5251), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252643,7 +252264,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, @@ -252664,21 +252284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43249] = 6, + [40053] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_AMP, - STATE(2430), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5366), 12, + ACTIONS(3386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -252686,7 +252305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5368), 32, + ACTIONS(3564), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252719,71 +252338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43310] = 8, + [40112] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5035), 1, - anon_sym_PIPE, - ACTIONS(5037), 1, - anon_sym_extends, - STATE(2431), 1, - sym_comment, - ACTIONS(5370), 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(5372), 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(5256), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [43375] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2432), 1, + STATE(2385), 1, sym_comment, - ACTIONS(4484), 13, + ACTIONS(5249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252797,7 +252361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5345), 32, + ACTIONS(5251), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252809,7 +252373,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, @@ -252830,21 +252393,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43434] = 6, + [40173] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_AMP, - STATE(2433), 1, + STATE(2386), 1, sym_comment, - ACTIONS(5374), 12, + ACTIONS(5259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -252852,7 +252414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5376), 32, + ACTIONS(5261), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252885,14 +252447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43495] = 5, + [40232] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2434), 1, + STATE(2387), 1, sym_comment, - ACTIONS(5045), 13, + ACTIONS(5263), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252906,7 +252468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5043), 32, + ACTIONS(5265), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252939,14 +252501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43554] = 5, + [40291] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2435), 1, + STATE(2388), 1, sym_comment, - ACTIONS(5378), 13, + ACTIONS(5000), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252960,7 +252522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5380), 32, + ACTIONS(5002), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252993,14 +252555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43613] = 5, + [40350] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2436), 1, + STATE(2389), 1, sym_comment, - ACTIONS(5382), 13, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253014,65 +252576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5384), 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, - [43672] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5035), 1, - anon_sym_PIPE, - ACTIONS(5037), 1, - anon_sym_extends, - STATE(2437), 1, - sym_comment, - ACTIONS(5386), 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(5388), 31, + ACTIONS(5269), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253103,34 +252607,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [43737] = 8, + [40409] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5067), 1, - anon_sym_extends, - ACTIONS(5069), 1, - anon_sym_LBRACK, - STATE(2438), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + STATE(2390), 1, sym_comment, - ACTIONS(5065), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5390), 11, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5392), 30, + ACTIONS(4229), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253140,6 +252642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -253161,16 +252664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43802] = 6, + [40470] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5398), 1, - anon_sym_extends, - STATE(2439), 1, + STATE(2391), 1, sym_comment, - ACTIONS(5394), 13, + ACTIONS(5271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253184,7 +252685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5396), 31, + ACTIONS(5273), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253215,17 +252716,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, - [43863] = 6, + [40529] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4979), 1, - anon_sym_extends, - STATE(2440), 1, + STATE(2392), 1, sym_comment, - ACTIONS(5370), 13, + ACTIONS(2225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253239,18 +252739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5372), 31, + ACTIONS(2227), 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, @@ -253270,15 +252771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43924] = 5, + anon_sym_PIPE_RBRACE, + [40588] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2441), 1, + STATE(2393), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(2229), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253292,18 +252793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 32, + ACTIONS(2231), 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, @@ -253323,18 +252825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43983] = 6, + anon_sym_PIPE_RBRACE, + [40647] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5069), 1, - anon_sym_LBRACK, - STATE(2442), 1, + ACTIONS(5275), 1, + sym__automatic_semicolon, + STATE(2394), 1, sym_comment, - ACTIONS(5400), 13, + ACTIONS(2191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253348,7 +252849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5402), 31, + ACTIONS(2193), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253358,6 +252859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -253378,16 +252880,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [44044] = 5, + [40708] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5068), 1, + anon_sym_readonly, + ACTIONS(5277), 1, + anon_sym_RBRACE, + STATE(2395), 1, + sym_comment, + STATE(3625), 1, + sym_override_modifier, + STATE(3940), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [40803] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2443), 1, + STATE(2396), 1, sym_comment, - ACTIONS(2250), 13, + ACTIONS(5243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253401,19 +252974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2252), 32, - sym__automatic_semicolon, + ACTIONS(5245), 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, @@ -253433,15 +253005,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [44103] = 5, + anon_sym_extends, + anon_sym_implements, + [40862] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2444), 1, + STATE(2397), 1, sym_comment, - ACTIONS(5404), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253455,7 +253028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5406), 32, + ACTIONS(3664), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253488,28 +253061,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44162] = 5, + [40921] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2445), 1, + ACTIONS(5028), 1, + anon_sym_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5032), 1, + anon_sym_extends, + STATE(2398), 1, sym_comment, - ACTIONS(5159), 13, + ACTIONS(5280), 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(5161), 32, + ACTIONS(5282), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253540,98 +253117,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, - [44221] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, + [40986] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5103), 1, - anon_sym_readonly, - ACTIONS(5408), 1, - anon_sym_RBRACE, - STATE(2446), 1, - sym_comment, - STATE(3631), 1, - sym_override_modifier, - STATE(3959), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [44316] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5413), 1, - anon_sym_DOT, - ACTIONS(5415), 1, - anon_sym_LT, - STATE(2447), 1, + STATE(2399), 1, sym_comment, - STATE(2984), 1, - sym_arguments, - STATE(2985), 1, - sym_type_arguments, - ACTIONS(4957), 12, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253642,17 +253136,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(4959), 27, - sym__automatic_semicolon, + ACTIONS(5286), 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, @@ -253672,302 +253171,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [44384] = 36, + anon_sym_implements, + [41045] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5028), 1, anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5030), 1, anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2448), 1, + ACTIONS(5032), 1, + anon_sym_extends, + STATE(2400), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5288), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5290), 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(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44504] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [41110] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5292), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2449), 1, + STATE(2401), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(7095), 1, + sym_type_annotation, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5473), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [44620] = 34, + [41235] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2450), 1, + ACTIONS(4956), 1, + anon_sym_QMARK_DOT, + STATE(2402), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(2199), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(2201), 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_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(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5509), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [44736] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [41302] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5089), 1, + ACTIONS(5054), 1, anon_sym_STAR, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5093), 1, + ACTIONS(5058), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, anon_sym_async, - ACTIONS(5408), 1, + ACTIONS(5068), 1, + anon_sym_readonly, + ACTIONS(5294), 1, anon_sym_RBRACE, - ACTIONS(5511), 1, - anon_sym_LBRACK, - STATE(2451), 1, + STATE(2403), 1, sym_comment, - STATE(3959), 1, + STATE(3625), 1, + sym_override_modifier, + STATE(3940), 1, sym__property_name, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(5105), 2, + ACTIONS(5070), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -253975,12 +253435,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, @@ -253988,413 +253446,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [44824] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2452), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5513), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [44940] = 21, + [41397] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - STATE(2453), 1, + STATE(2404), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(3410), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 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(5515), 16, - sym__automatic_semicolon, + ACTIONS(3682), 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, - [45030] = 34, + anon_sym_extends, + anon_sym_implements, + [41456] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, - anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2454), 1, + STATE(2405), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5284), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5519), 4, + ACTIONS(5286), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [45146] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5433), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2455), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5459), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5521), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [45266] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [41515] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5297), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2456), 1, + STATE(2406), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(7430), 1, + sym_type_annotation, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5523), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [45382] = 5, + [41640] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2457), 1, + STATE(2407), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(5299), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254408,7 +253662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2244), 31, + ACTIONS(5301), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254439,15 +253693,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, - [45440] = 5, + [41699] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2458), 1, + STATE(2408), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(5303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254461,7 +253716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2274), 31, + ACTIONS(5305), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254492,15 +253747,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, - [45498] = 5, + [41758] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2459), 1, + STATE(2409), 1, sym_comment, - ACTIONS(2278), 13, + ACTIONS(5307), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254514,7 +253770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2282), 31, + ACTIONS(5309), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254545,15 +253801,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, - [45556] = 5, + [41817] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2460), 1, + STATE(2410), 1, sym_comment, - ACTIONS(2286), 13, + ACTIONS(5311), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254567,7 +253824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 31, + ACTIONS(5313), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254598,179 +253855,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, - [45614] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, - anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2461), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5525), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [45730] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2462), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5527), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [45846] = 5, + [41876] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2463), 1, + STATE(2411), 1, sym_comment, - ACTIONS(2184), 13, + ACTIONS(5315), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254784,7 +253878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 31, + ACTIONS(5317), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254815,39 +253909,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, - [45904] = 16, + [41935] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5529), 1, - anon_sym_LT, - STATE(2464), 1, + STATE(2412), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 12, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254858,36 +253929,50 @@ 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(5515), 19, - sym__automatic_semicolon, + ACTIONS(5321), 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, - [45984] = 5, + anon_sym_extends, + anon_sym_implements, + [41994] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2465), 1, + STATE(2413), 1, sym_comment, - ACTIONS(5532), 13, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254901,7 +253986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5534), 31, + ACTIONS(5286), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254932,15 +254017,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, - [46042] = 5, + [42053] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2466), 1, + STATE(2414), 1, sym_comment, - ACTIONS(5536), 13, + ACTIONS(5016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254954,7 +254040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5538), 31, + ACTIONS(5018), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254985,15 +254071,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, - [46100] = 5, + [42112] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2467), 1, + ACTIONS(5319), 1, + anon_sym_QMARK, + STATE(2415), 1, sym_comment, - ACTIONS(5540), 13, + ACTIONS(5321), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255007,15 +254099,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5542), 31, + ACTIONS(5325), 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, @@ -255039,41 +254129,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46158] = 8, + [42175] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5011), 1, - anon_sym_extends, - STATE(2468), 1, + STATE(2416), 1, sym_comment, - ACTIONS(5544), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5327), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 28, + ACTIONS(5329), 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, @@ -255094,506 +254181,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [46222] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5408), 1, - anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2469), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5552), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46308] = 34, + [42234] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5558), 1, - anon_sym_AMP_AMP, - ACTIONS(5560), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, - anon_sym_CARET, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - ACTIONS(5586), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, - sym__ternary_qmark, - STATE(2470), 1, + ACTIONS(4998), 1, + sym__automatic_semicolon, + STATE(2417), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(2147), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5582), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5509), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [46424] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5558), 1, - anon_sym_AMP_AMP, - ACTIONS(5560), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5568), 1, - anon_sym_CARET, - ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - ACTIONS(5586), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, - sym__ternary_qmark, - STATE(2471), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5513), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [46540] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - STATE(2472), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 16, - sym__automatic_semicolon, + ACTIONS(2169), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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, - [46630] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5556), 1, - anon_sym_GT, - ACTIONS(5558), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, - anon_sym_CARET, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - ACTIONS(5586), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, - sym__ternary_qmark, - ACTIONS(5592), 1, - anon_sym_in, - STATE(2473), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5582), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5590), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [46748] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2474), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5459), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5595), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46868] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42295] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5335), 1, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5597), 1, - anon_sym_LT, - STATE(2475), 1, + STATE(2418), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 12, + ACTIONS(5331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255604,507 +254258,322 @@ 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(5515), 19, - sym__automatic_semicolon, + ACTIONS(5333), 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [46948] = 28, + anon_sym_extends, + anon_sym_implements, + [42356] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, - anon_sym_CARET, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - STATE(2476), 1, + STATE(2419), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5337), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 10, - sym__automatic_semicolon, + ACTIONS(5339), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [47052] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5429), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(5558), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - STATE(2477), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5582), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5584), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 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, - [47158] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5597), 1, - anon_sym_LT, - STATE(2478), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5572), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3163), 2, - sym_template_string, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [42415] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + STATE(2420), 1, + sym_comment, + STATE(2562), 1, sym_arguments, - ACTIONS(5517), 8, + ACTIONS(5341), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 18, - sym__automatic_semicolon, + ACTIONS(5343), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + 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, - [47244] = 25, + anon_sym_implements, + [42478] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - STATE(2479), 1, + STATE(2421), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5345), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 11, - sym__automatic_semicolon, + ACTIONS(5347), 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, - [47342] = 26, + anon_sym_extends, + anon_sym_implements, + [42537] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - STATE(2480), 1, + STATE(2422), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5554), 2, + ACTIONS(5349), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 11, - sym__automatic_semicolon, + ACTIONS(5221), 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, - [47442] = 27, + anon_sym_extends, + anon_sym_implements, + [42596] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, - anon_sym_CARET, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - STATE(2481), 1, + STATE(2423), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5554), 2, + ACTIONS(5351), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 10, - sym__automatic_semicolon, + ACTIONS(5353), 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, - [47544] = 18, + anon_sym_extends, + anon_sym_implements, + [42655] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5597), 1, - anon_sym_LT, - STATE(2482), 1, + STATE(2424), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5016), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -256113,1440 +254582,943 @@ 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(5515), 18, - sym__automatic_semicolon, + ACTIONS(5018), 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, - [47628] = 28, + anon_sym_extends, + anon_sym_implements, + [42714] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - STATE(2483), 1, + ACTIONS(4976), 1, + anon_sym_extends, + STATE(2425), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5355), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 10, - sym__automatic_semicolon, + ACTIONS(5357), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [47732] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2484), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5600), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [47848] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42775] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5597), 1, - anon_sym_LT, - STATE(2485), 1, + ACTIONS(5028), 1, + anon_sym_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5032), 1, + anon_sym_extends, + STATE(2426), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 11, + ACTIONS(5355), 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(5515), 17, - sym__automatic_semicolon, + ACTIONS(5357), 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, - [47934] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42840] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5028), 1, anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - STATE(2486), 1, + STATE(2427), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5359), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 9, - sym__automatic_semicolon, + ACTIONS(5361), 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, - [48040] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5331), 1, - anon_sym_RBRACE, - ACTIONS(5511), 1, - anon_sym_LBRACK, - STATE(2487), 1, - sym_comment, - STATE(3959), 1, - sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48128] = 34, + anon_sym_extends, + anon_sym_implements, + [42901] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2488), 1, - sym_comment, - STATE(2742), 1, + ACTIONS(5363), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(5719), 1, + STATE(2428), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(7352), 1, + sym_type_annotation, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5602), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [48244] = 19, + [43026] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5529), 1, - anon_sym_LT, - STATE(2489), 1, + STATE(2429), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5207), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 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(5515), 18, - sym__automatic_semicolon, + ACTIONS(5205), 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, - [48330] = 25, + anon_sym_extends, + anon_sym_implements, + [43085] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - STATE(2490), 1, + STATE(2430), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5365), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5517), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5515), 11, - sym__automatic_semicolon, + ACTIONS(5367), 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, - [48428] = 26, + anon_sym_extends, + anon_sym_implements, + [43144] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - STATE(2491), 1, + STATE(2431), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5369), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 11, - sym__automatic_semicolon, + ACTIONS(5371), 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, - [48528] = 27, + anon_sym_extends, + anon_sym_implements, + [43203] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5437), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - STATE(2492), 1, - sym_comment, - STATE(2742), 1, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5373), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(5719), 1, + STATE(2432), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(6984), 1, + sym_type_annotation, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 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, - [48630] = 18, + [43328] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5529), 1, - anon_sym_LT, - STATE(2493), 1, + ACTIONS(5028), 1, + anon_sym_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5032), 1, + anon_sym_extends, + STATE(2433), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5375), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 18, - sym__automatic_semicolon, + ACTIONS(5377), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [48714] = 19, + anon_sym_implements, + [43393] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5052), 1, + anon_sym_extends, + ACTIONS(5072), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5529), 1, - anon_sym_LT, - STATE(2494), 1, + STATE(2434), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 11, + ACTIONS(5050), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5379), 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(5515), 17, - sym__automatic_semicolon, + ACTIONS(5381), 30, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_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, - [48800] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [43458] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - STATE(2495), 1, + ACTIONS(5028), 1, + anon_sym_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5032), 1, + anon_sym_extends, + STATE(2435), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5383), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5517), 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(5515), 13, - sym__automatic_semicolon, + ACTIONS(5385), 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, - [48894] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5331), 1, - anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2496), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5552), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48980] = 23, + anon_sym_implements, + [43523] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - STATE(2497), 1, + ACTIONS(5391), 1, + anon_sym_extends, + STATE(2436), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5387), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5517), 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(5515), 13, - sym__automatic_semicolon, + ACTIONS(5389), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [49074] = 30, + anon_sym_implements, + [43584] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(5072), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - STATE(2498), 1, + STATE(2437), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5393), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 8, - sym__automatic_semicolon, + ACTIONS(5395), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [49182] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5558), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - ACTIONS(5586), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, - sym__ternary_qmark, - STATE(2499), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [43645] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2438), 1, + sym_comment, + ACTIONS(5397), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5604), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49298] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5399), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5421), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5433), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2500), 1, + anon_sym_extends, + anon_sym_implements, + [43704] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2439), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5020), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5606), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49418] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5022), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5429), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(5558), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - STATE(2501), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5582), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5584), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [49526] = 5, + anon_sym_extends, + anon_sym_implements, + [43763] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2502), 1, + STATE(2440), 1, sym_comment, - ACTIONS(5608), 13, + ACTIONS(5401), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257560,7 +255532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5610), 31, + ACTIONS(5403), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257591,128 +255563,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [49584] = 36, + [43822] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, + STATE(2441), 1, + sym_comment, + ACTIONS(4461), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5405), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5421), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5433), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2503), 1, + anon_sym_extends, + anon_sym_implements, + [43881] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2442), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(4459), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5407), 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(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5612), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49704] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [43940] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(2504), 1, + STATE(2443), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, + ACTIONS(4457), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -257721,14 +255691,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(5616), 18, - sym__automatic_semicolon, + ACTIONS(5409), 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, @@ -257742,218 +255721,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49788] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [43999] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2505), 1, - sym_comment, - STATE(2742), 1, + ACTIONS(5411), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(5719), 1, + STATE(2444), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(7160), 1, + sym_type_annotation, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5600), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49904] = 34, + [44124] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2506), 1, - sym_comment, - STATE(2742), 1, + ACTIONS(5413), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(5719), 1, + STATE(2445), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + STATE(7414), 1, + sym_type_annotation, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5525), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [50020] = 20, + [44249] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5089), 1, + ACTIONS(5054), 1, anon_sym_STAR, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5093), 1, + ACTIONS(5058), 1, anon_sym_COMMA, - ACTIONS(5101), 1, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, anon_sym_async, - ACTIONS(5334), 1, + ACTIONS(5068), 1, + anon_sym_readonly, + ACTIONS(5415), 1, anon_sym_RBRACE, - ACTIONS(5511), 1, - anon_sym_LBRACK, - STATE(2507), 1, + STATE(2446), 1, sym_comment, - STATE(3959), 1, + STATE(3625), 1, + sym_override_modifier, + STATE(3940), 1, sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5732), 1, aux_sym_object_repeat1, - ACTIONS(3995), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(5105), 2, + ACTIONS(5070), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -257961,12 +255962,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, @@ -257974,195 +255973,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50108] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [44344] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2447), 1, + sym_comment, + ACTIONS(2235), 13, anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 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(2237), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5334), 1, anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2508), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5552), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [50194] = 36, + 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, + [44402] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2448), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5438), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 11, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5423), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [44500] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2509), 1, + STATE(2449), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5621), 2, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5476), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - STATE(3163), 2, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [44608] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5458), 1, + anon_sym_GT_GT, + ACTIONS(5470), 1, + anon_sym_PERCENT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(2450), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50314] = 19, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 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, + [44702] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5495), 1, - anon_sym_STAR_STAR, - ACTIONS(5623), 1, + ACTIONS(5490), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2510), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + STATE(2451), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 11, + ACTIONS(5422), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -258174,12 +256297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 17, + ACTIONS(5420), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -258192,99 +256315,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [50400] = 36, + [44788] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2511), 1, + ACTIONS(5490), 1, + anon_sym_LT, + STATE(2452), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5626), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50520] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2512), 1, - sym_comment, - ACTIONS(5628), 13, - anon_sym_STAR, + ACTIONS(5422), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -258293,531 +256360,501 @@ 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(5630), 31, + ACTIONS(5420), 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, - [50578] = 30, + [44872] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5517), 1, - anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, - STATE(2513), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(2453), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 8, + ACTIONS(5420), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [50686] = 23, + [44974] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5481), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5493), 1, + ACTIONS(5462), 1, + anon_sym_AMP, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5474), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2514), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(2454), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2631), 2, + ACTIONS(5478), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5480), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5517), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 13, + ACTIONS(5420), 11, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [50780] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [45074] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5275), 1, - anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2515), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5552), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5458), 1, + anon_sym_GT_GT, + ACTIONS(5470), 1, + anon_sym_PERCENT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5474), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [50866] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2516), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(2455), 1, sym_comment, - ACTIONS(5632), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 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(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [50924] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2517), 1, - sym_comment, - ACTIONS(5636), 13, - anon_sym_STAR, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5638), 31, + ACTIONS(5476), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 11, + 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, - [50982] = 5, + [45172] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2518), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5470), 1, + anon_sym_PERCENT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5490), 1, + anon_sym_LT, + STATE(2456), 1, sym_comment, - ACTIONS(5640), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5468), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5473), 31, + ACTIONS(5420), 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, - [51040] = 5, + [45258] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2519), 1, - sym_comment, - ACTIONS(5642), 13, - anon_sym_STAR, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5454), 1, + anon_sym_AMP_AMP, + ACTIONS(5458), 1, anon_sym_GT_GT, + ACTIONS(5462), 1, anon_sym_AMP, + ACTIONS(5464), 1, + anon_sym_CARET, + ACTIONS(5466), 1, anon_sym_PIPE, + ACTIONS(5470), 1, + anon_sym_PERCENT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(2457), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5513), 31, + ACTIONS(5480), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5476), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 9, + 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_AMP_AMP, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [51098] = 5, + [45364] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2520), 1, - sym_comment, - ACTIONS(5644), 13, - anon_sym_STAR, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5458), 1, anon_sym_GT_GT, + ACTIONS(5462), 1, anon_sym_AMP, + ACTIONS(5464), 1, + anon_sym_CARET, + ACTIONS(5466), 1, anon_sym_PIPE, + ACTIONS(5470), 1, + anon_sym_PERCENT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(2458), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5519), 31, + ACTIONS(5480), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5476), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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, - [51156] = 5, + [45468] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2521), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5490), 1, + anon_sym_LT, + STATE(2459), 1, sym_comment, - ACTIONS(5646), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258828,382 +256865,435 @@ 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(5648), 31, + ACTIONS(5420), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [51214] = 36, + [45548] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2522), 1, + STATE(2460), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51334] = 5, + ACTIONS(5497), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [45664] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2523), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5458), 1, + anon_sym_GT_GT, + ACTIONS(5470), 1, + anon_sym_PERCENT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(2461), 1, sym_comment, - ACTIONS(5652), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5523), 31, + ACTIONS(5420), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [51392] = 13, + [45754] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5654), 1, - anon_sym_QMARK_DOT, - STATE(2524), 1, + ACTIONS(5454), 1, + anon_sym_AMP_AMP, + ACTIONS(5456), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5458), 1, + anon_sym_GT_GT, + ACTIONS(5462), 1, + anon_sym_AMP, + ACTIONS(5464), 1, + anon_sym_CARET, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5470), 1, + anon_sym_PERCENT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, + sym__ternary_qmark, + STATE(2462), 1, sym_comment, - STATE(2903), 1, + STATE(2764), 1, sym_type_arguments, - STATE(3169), 1, - sym_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(4931), 12, + ACTIONS(5444), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 24, + ACTIONS(5480), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5476), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5533), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, anon_sym_SEMI, + [45870] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5454), 1, anon_sym_AMP_AMP, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5458), 1, + anon_sym_GT_GT, + ACTIONS(5462), 1, + anon_sym_AMP, + ACTIONS(5464), 1, anon_sym_CARET, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5470), 1, anon_sym_PERCENT, + ACTIONS(5472), 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(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - [51466] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2525), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, + sym__ternary_qmark, + STATE(2463), 1, sym_comment, - ACTIONS(5656), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5658), 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(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [51524] = 34, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5476), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5539), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [45986] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2526), 1, + STATE(2464), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5600), 4, + ACTIONS(5541), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [51640] = 5, + [46102] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2527), 1, + ACTIONS(5543), 1, + sym__automatic_semicolon, + STATE(2465), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(2147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259217,18 +257307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2212), 31, + ACTIONS(2169), 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, @@ -259248,15 +257337,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [51698] = 5, + anon_sym_PIPE_RBRACE, + [46162] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2528), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5454), 1, + anon_sym_AMP_AMP, + ACTIONS(5456), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5458), 1, + anon_sym_GT_GT, + ACTIONS(5462), 1, + anon_sym_AMP, + ACTIONS(5464), 1, + anon_sym_CARET, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5470), 1, + anon_sym_PERCENT, + ACTIONS(5472), 1, + anon_sym_STAR_STAR, + ACTIONS(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, + sym__ternary_qmark, + STATE(2466), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5478), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5480), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5476), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5545), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [46278] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5547), 1, + anon_sym_DOT, + ACTIONS(5549), 1, + anon_sym_LT, + ACTIONS(5551), 1, + anon_sym_is, + STATE(2467), 1, sym_comment, - ACTIONS(2200), 13, + STATE(2867), 1, + sym_type_arguments, + ACTIONS(4958), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259267,22 +257446,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(2202), 31, + ACTIONS(4339), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -259301,105 +257476,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [51756] = 34, + anon_sym_extends, + [46344] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2529), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2468), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5555), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5525), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51872] = 9, + [46464] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_is, - STATE(2530), 1, + STATE(2469), 1, sym_comment, - STATE(2864), 1, - sym_type_arguments, - ACTIONS(4915), 12, + ACTIONS(5557), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259410,18 +257579,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(4307), 28, - sym__automatic_semicolon, + ACTIONS(5559), 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, @@ -259440,15 +257613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51938] = 5, + anon_sym_implements, + [46522] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2531), 1, + STATE(2470), 1, sym_comment, - ACTIONS(5664), 13, + ACTIONS(2301), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259462,7 +257635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5666), 31, + ACTIONS(2305), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259494,427 +257667,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51996] = 28, + [46580] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5481), 1, + ACTIONS(5454), 1, + anon_sym_AMP_AMP, + ACTIONS(5456), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, - STATE(2532), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, + sym__ternary_qmark, + STATE(2471), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52100] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(5561), 4, sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5275), 1, - anon_sym_RBRACE, - ACTIONS(5511), 1, - anon_sym_LBRACK, - STATE(2533), 1, - sym_comment, - STATE(3959), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [52188] = 34, + [46696] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2534), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2472), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5563), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5668), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [52304] = 27, + [46816] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5481), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5493), 1, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2535), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2473), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2631), 2, + ACTIONS(5565), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52406] = 34, + [46936] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2536), 1, + STATE(2474), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5670), 4, + ACTIONS(5567), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [52522] = 18, + anon_sym_SEMI, + [47052] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, - anon_sym_STAR_STAR, - ACTIONS(5623), 1, + anon_sym_satisfies, + ACTIONS(5573), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2537), 1, + STATE(2475), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 10, - anon_sym_BANG, + ACTIONS(5569), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -259922,117 +258043,89 @@ 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(5515), 18, + ACTIONS(5571), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + 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_satisfies, - [52606] = 34, + [47136] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(2476), 1, + sym_comment, + ACTIONS(2229), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2231), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2538), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5527), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [52722] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [47194] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2539), 1, + STATE(2477), 1, sym_comment, - ACTIONS(5672), 13, + ACTIONS(2225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260046,7 +258139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5674), 31, + ACTIONS(2227), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260078,282 +258171,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52780] = 34, + [47252] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, + STATE(2478), 1, + sym_comment, + ACTIONS(2215), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5429), 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(2217), 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, - ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5433), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2540), 1, + anon_sym_PIPE_RBRACE, + [47310] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2479), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(2183), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5676), 4, + ACTIONS(2185), 31, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [52896] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5558), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - ACTIONS(5586), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, - sym__ternary_qmark, - STATE(2541), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [47368] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2480), 1, + sym_comment, + ACTIONS(5576), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5584), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5678), 4, - sym__automatic_semicolon, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5578), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [53012] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5433), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2542), 1, + anon_sym_implements, + [47426] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2481), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(2309), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5670), 4, - sym__automatic_semicolon, + ACTIONS(2313), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [53128] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5684), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2543), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5680), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [47484] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2482), 1, + sym_comment, + ACTIONS(5580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260364,15 +258401,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(5682), 20, + ACTIONS(5541), 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, @@ -260386,44 +258431,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [53206] = 18, + anon_sym_implements, + [47542] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5687), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2544), 1, + STATE(2483), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, + ACTIONS(2291), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -260432,14 +258454,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(5616), 18, + ACTIONS(2295), 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, @@ -260453,262 +258484,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53290] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [47600] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5535), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5537), 1, sym__ternary_qmark, - STATE(2545), 1, + STATE(2484), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5602), 4, + ACTIONS(5567), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [53406] = 34, + [47716] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5535), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5537), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2546), 1, + STATE(2485), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5602), 4, + ACTIONS(5497), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [53522] = 36, + anon_sym_of, + anon_sym_SEMI, + [47832] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, sym__ternary_qmark, - STATE(2547), 1, + STATE(2486), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5690), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53642] = 5, + ACTIONS(5541), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [47948] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2548), 1, + STATE(2487), 1, sym_comment, - ACTIONS(5692), 13, + ACTIONS(2191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260722,7 +258756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5694), 31, + ACTIONS(2193), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260754,14 +258788,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53700] = 5, + [48006] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2549), 1, + STATE(2488), 1, sym_comment, - ACTIONS(5696), 13, + ACTIONS(5582), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260775,7 +258809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5698), 31, + ACTIONS(5497), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260807,23 +258841,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53758] = 7, + [48064] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2550), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5588), 1, + anon_sym_LT, + STATE(2489), 1, sym_comment, - ACTIONS(5053), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5700), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5051), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260834,17 +258881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 24, + ACTIONS(5586), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_of, - 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, @@ -260858,252 +258903,345 @@ 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, - [53820] = 34, + [48142] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2551), 1, + STATE(2490), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5519), 4, + ACTIONS(5591), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [53936] = 36, + [48258] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - ACTIONS(5703), 1, + ACTIONS(5553), 1, anon_sym_COMMA, - ACTIONS(5706), 1, - anon_sym_RBRACE, - STATE(2552), 1, + STATE(2491), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5708), 2, + ACTIONS(5593), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54056] = 18, + [48378] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5710), 1, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2553), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + STATE(2492), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, + ACTIONS(5495), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5616), 18, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5595), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, + [48494] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5454), 1, anon_sym_AMP_AMP, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5458), 1, + anon_sym_GT_GT, + ACTIONS(5462), 1, + anon_sym_AMP, + ACTIONS(5464), 1, anon_sym_CARET, + ACTIONS(5466), 1, + anon_sym_PIPE, + ACTIONS(5470), 1, anon_sym_PERCENT, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, + sym__ternary_qmark, + STATE(2493), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5444), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5460), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5468), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5478), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5476), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54140] = 6, + ACTIONS(5595), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [48610] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5713), 1, - sym__automatic_semicolon, - STATE(2554), 1, + STATE(2494), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(2319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261117,17 +259255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2190), 30, + ACTIONS(2323), 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, @@ -261147,99 +259286,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [54200] = 36, + anon_sym_implements, + [48668] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, sym__ternary_qmark, - ACTIONS(5703), 1, - anon_sym_COMMA, - ACTIONS(5706), 1, - anon_sym_RBRACE, - STATE(2555), 1, + STATE(2495), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5676), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54320] = 5, + ACTIONS(5591), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [48784] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2556), 1, + STATE(2496), 1, sym_comment, - ACTIONS(5715), 13, + ACTIONS(5597), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261253,7 +259390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5717), 31, + ACTIONS(5599), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261285,345 +259422,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54378] = 36, + [48842] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, sym__ternary_qmark, - ACTIONS(5706), 1, - anon_sym_RBRACE, - ACTIONS(5719), 1, - anon_sym_COMMA, - STATE(2557), 1, + STATE(2497), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54498] = 19, + ACTIONS(5601), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [48958] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, - anon_sym_STAR_STAR, - ACTIONS(5623), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2558), 1, + STATE(2498), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(2275), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 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(5515), 18, + ACTIONS(2279), 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, - [54584] = 26, + anon_sym_implements, + [49016] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5481), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5493), 1, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2559), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2499), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2631), 2, + ACTIONS(5603), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [54684] = 36, + [49136] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - ACTIONS(5722), 1, + ACTIONS(5553), 1, anon_sym_COMMA, - ACTIONS(5725), 1, - anon_sym_RBRACE, - STATE(2560), 1, + STATE(2500), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5509), 2, + ACTIONS(5605), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54804] = 15, + [49256] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5727), 1, - anon_sym_LT, - STATE(2561), 1, + STATE(2501), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5680), 12, + ACTIONS(5607), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261634,15 +259743,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(5682), 20, - sym__automatic_semicolon, + ACTIONS(5567), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -261656,15 +259773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [54882] = 5, + anon_sym_implements, + [49314] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2562), 1, + STATE(2502), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(5609), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261678,7 +259799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2154), 31, + ACTIONS(5611), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261710,14 +259831,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54940] = 5, + [49372] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2563), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5617), 1, + anon_sym_LT, + STATE(2503), 1, sym_comment, - ACTIONS(2250), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5613), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261728,23 +259868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2252), 31, + ACTIONS(5615), 22, + 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, @@ -261760,17 +259892,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, - anon_sym_implements, - [54998] = 5, + [49448] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2564), 1, + ACTIONS(5620), 1, + sym__automatic_semicolon, + STATE(2504), 1, sym_comment, - ACTIONS(2184), 13, + ACTIONS(2191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261784,8 +259916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 31, - sym__automatic_semicolon, + ACTIONS(2193), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -261816,14 +259947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [55056] = 5, + [49508] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2565), 1, + STATE(2505), 1, sym_comment, - ACTIONS(5730), 13, + ACTIONS(2151), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5622), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2149), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261837,18 +259977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5732), 31, + ACTIONS(2155), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -261868,15 +260002,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [55114] = 5, + [49570] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5277), 1, + anon_sym_RBRACE, + ACTIONS(5625), 1, + anon_sym_LBRACK, + STATE(2506), 1, + sym_comment, + STATE(3940), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [49658] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2566), 1, + STATE(2507), 1, sym_comment, - ACTIONS(2304), 13, + ACTIONS(2183), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261890,7 +260091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2308), 31, + ACTIONS(2185), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261922,14 +260123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55172] = 5, + [49716] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2567), 1, + STATE(2508), 1, sym_comment, - ACTIONS(5734), 13, + ACTIONS(2191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261943,18 +260144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5736), 31, + ACTIONS(2193), 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, @@ -261974,15 +260175,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [55230] = 5, + anon_sym_PIPE_RBRACE, + [49774] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5277), 1, + anon_sym_RBRACE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(2509), 1, + sym_comment, + STATE(4771), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5629), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [49860] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2568), 1, + STATE(2510), 1, sym_comment, - ACTIONS(5738), 13, + ACTIONS(5631), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261996,7 +260264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 31, + ACTIONS(5633), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262028,14 +260296,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55288] = 5, + [49918] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2569), 1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5521), 1, + anon_sym_LT, + STATE(2511), 1, sym_comment, - ACTIONS(2232), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262046,21 +260327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2236), 31, + ACTIONS(5637), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -262078,194 +260354,380 @@ 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, - [55346] = 36, + [49988] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5294), 1, + anon_sym_RBRACE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(2512), 1, + sym_comment, + STATE(4771), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5629), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [50074] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, sym__ternary_qmark, - STATE(2570), 1, + STATE(2513), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55466] = 36, + ACTIONS(5639), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [50190] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, + STATE(2514), 1, + sym_comment, + ACTIONS(5641), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5643), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5421), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + 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, + [50248] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, sym__ternary_qmark, - STATE(2571), 1, + STATE(2515), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5744), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + anon_sym_DASH_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55586] = 7, + ACTIONS(5645), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [50364] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2572), 1, - sym_comment, - ACTIONS(5748), 2, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5752), 5, + ACTIONS(5058), 1, anon_sym_COMMA, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5294), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(5625), 1, + anon_sym_LBRACK, + STATE(2516), 1, + sym_comment, + STATE(3940), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5746), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [50452] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5474), 1, + anon_sym_LT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(2517), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262276,14 +260738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 24, + ACTIONS(5637), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -262302,16 +260765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [55648] = 5, + [50522] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2573), 1, + STATE(2518), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(2337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262325,7 +260787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2228), 31, + ACTIONS(2341), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262357,14 +260819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55706] = 5, + [50580] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2574), 1, + STATE(2519), 1, sym_comment, - ACTIONS(5755), 13, + ACTIONS(2283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262378,7 +260840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5757), 31, + ACTIONS(2287), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262410,33 +260872,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55764] = 14, + [50638] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, + anon_sym_RBRACE, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5763), 1, + STATE(2520), 1, + sym_comment, + STATE(4771), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5629), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2575), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [50724] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2521), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5759), 12, + ACTIONS(5649), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5653), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5647), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262447,15 +260966,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(5761), 22, + ACTIONS(5651), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + 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, @@ -262471,15 +260992,84 @@ 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, - [55840] = 5, + [50786] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5202), 1, + anon_sym_RBRACE, + ACTIONS(5625), 1, + anon_sym_LBRACK, + STATE(2522), 1, + sym_comment, + STATE(3940), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [50874] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2576), 1, + STATE(2523), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(5656), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262493,7 +261083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2220), 31, + ACTIONS(5645), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262525,14 +261115,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55898] = 5, + [50932] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2577), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + STATE(2524), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5658), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [51048] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2525), 1, sym_comment, - ACTIONS(2166), 13, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262543,18 +261228,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(2170), 31, + ACTIONS(5637), 25, 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, @@ -262575,17 +261255,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_satisfies, + [51118] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, anon_sym_satisfies, - anon_sym_implements, - [55956] = 5, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2526), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5645), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [51234] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5415), 1, + anon_sym_RBRACE, + ACTIONS(5625), 1, + anon_sym_LBRACK, + STATE(2527), 1, + sym_comment, + STATE(3940), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51322] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2578), 1, + STATE(2528), 1, sym_comment, - ACTIONS(2158), 13, + ACTIONS(5674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262599,7 +261427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2162), 31, + ACTIONS(5676), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262631,24 +261459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56014] = 10, + [51380] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5766), 1, - anon_sym_DOT, - STATE(2579), 1, + STATE(2529), 1, sym_comment, - STATE(2986), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, - ACTIONS(4923), 12, + ACTIONS(5678), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262659,17 +261477,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(4925), 27, - sym__automatic_semicolon, + ACTIONS(5680), 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, @@ -262688,99 +261511,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [56082] = 34, + anon_sym_implements, + [51438] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, sym__ternary_qmark, - STATE(2580), 1, + STATE(2530), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5476), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5658), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [51554] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5061), 1, + anon_sym_RBRACE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(2531), 1, + sym_comment, + STATE(4771), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5629), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51640] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5061), 1, + anon_sym_RBRACE, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5625), 1, + anon_sym_LBRACK, + STATE(2532), 1, + sym_comment, + STATE(3940), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51728] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2533), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3163), 2, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5698), 4, + ACTIONS(5639), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [51844] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, anon_sym_COMMA, + ACTIONS(5415), 1, anon_sym_RBRACE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(2534), 1, + sym_comment, + STATE(4771), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5629), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, anon_sym_SEMI, - [56198] = 6, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51930] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5768), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + STATE(2535), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5645), 4, sym__automatic_semicolon, - STATE(2581), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [52046] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2536), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(5682), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262794,17 +261981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2212), 30, + ACTIONS(5684), 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, @@ -262824,341 +262012,535 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [56258] = 10, + anon_sym_implements, + [52104] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5770), 1, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_DOT, - STATE(2582), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2537), 1, sym_comment, - STATE(2982), 1, - sym_arguments, - STATE(2983), 1, + STATE(2764), 1, sym_type_arguments, - ACTIONS(4258), 12, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4248), 27, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, anon_sym_SEMI, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52224] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2538), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 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(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 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, - [56326] = 34, + ACTIONS(5601), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [52340] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2583), 1, + STATE(2539), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5523), 4, + ACTIONS(5639), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [56442] = 34, + [52456] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + STATE(2540), 1, + sym_comment, + ACTIONS(2245), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2249), 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, - ACTIONS(5411), 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_implements, + [52514] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2584), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2541), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5688), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5519), 4, + [52634] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2542), 1, + sym_comment, + ACTIONS(2239), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2241), 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, - [56558] = 34, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_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, + [52692] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2585), 1, + STATE(2543), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5473), 4, + ACTIONS(5690), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [56674] = 15, + [52808] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5772), 1, - anon_sym_LT, - STATE(2586), 1, + STATE(2544), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5680), 12, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263169,15 +262551,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(5682), 20, - sym__automatic_semicolon, + ACTIONS(5694), 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, @@ -263191,15 +262581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [56752] = 5, + anon_sym_implements, + [52866] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2587), 1, + STATE(2545), 1, sym_comment, - ACTIONS(5775), 13, + ACTIONS(2187), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263213,7 +262607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 31, + ACTIONS(2189), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263245,14 +262639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56810] = 5, + [52924] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2588), 1, + STATE(2546), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(5696), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263266,18 +262660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2212), 31, - sym__automatic_semicolon, + ACTIONS(5698), 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, @@ -263297,247 +262691,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [56868] = 34, + anon_sym_implements, + [52982] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5558), 1, - anon_sym_AMP_AMP, - ACTIONS(5560), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, - anon_sym_GT_GT, - ACTIONS(5566), 1, - anon_sym_AMP, - ACTIONS(5568), 1, - anon_sym_CARET, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, - anon_sym_PERCENT, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - anon_sym_LT, - ACTIONS(5586), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, - sym__ternary_qmark, - STATE(2589), 1, + STATE(2547), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5700), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5556), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5572), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5702), 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, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5580), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5670), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [56984] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [53040] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2590), 1, + ACTIONS(5704), 1, + anon_sym_COMMA, + ACTIONS(5707), 1, + anon_sym_RBRACE, + STATE(2548), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5539), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5527), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [57100] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5779), 1, - anon_sym_STAR, - ACTIONS(5781), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_async, - ACTIONS(5785), 1, - anon_sym_readonly, - ACTIONS(5789), 1, - sym__automatic_semicolon, - STATE(2591), 1, - sym_comment, - STATE(3524), 1, - sym_statement_block, - STATE(3626), 1, - sym_override_modifier, - STATE(3929), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5787), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [57188] = 5, + [53160] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2592), 1, + STATE(2549), 1, sym_comment, - ACTIONS(2294), 13, + ACTIONS(2239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263551,7 +262850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2296), 31, + ACTIONS(2241), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263583,772 +262882,868 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57246] = 34, + [53218] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2593), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2550), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5709), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5676), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [57362] = 5, + [53338] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2594), 1, - sym_comment, - ACTIONS(2298), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2300), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(5450), 1, anon_sym_LBRACK, + ACTIONS(5452), 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(5484), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [57420] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5423), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5558), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5560), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5566), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5568), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5570), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5576), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5586), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5588), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2595), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2551), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5556), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5564), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5572), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5582), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5711), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5580), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5698), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [57536] = 34, + [53458] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2596), 1, + ACTIONS(5713), 1, + anon_sym_COMMA, + ACTIONS(5716), 1, + anon_sym_RBRACE, + STATE(2552), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, + ACTIONS(5539), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5523), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [57652] = 11, + [53578] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5465), 1, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5578), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2597), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + ACTIONS(5716), 1, + anon_sym_RBRACE, + ACTIONS(5718), 1, + anon_sym_COMMA, + STATE(2553), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5792), 12, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5794), 25, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5639), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 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, - [57722] = 16, + [53698] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5495), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5623), 1, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2598), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + ACTIONS(5716), 1, + anon_sym_RBRACE, + ACTIONS(5718), 1, + anon_sym_COMMA, + STATE(2554), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 12, + ACTIONS(5495), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5721), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [57802] = 34, + [53818] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2599), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2555), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, + ACTIONS(5723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5678), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [57918] = 36, + [53938] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2600), 1, + STATE(2556), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5796), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58038] = 21, + ACTIONS(5545), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [54054] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5493), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5725), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2601), 1, + STATE(2557), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 7, + ACTIONS(5422), 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(5420), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [54138] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2558), 1, + sym_comment, + ACTIONS(5728), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 16, + ACTIONS(5730), 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, - [58128] = 34, + anon_sym_implements, + [54196] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2602), 1, + STATE(2559), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5513), 4, + ACTIONS(5420), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [58244] = 14, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [54304] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5798), 1, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2603), 1, + STATE(2560), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - STATE(3163), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5759), 12, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 13, + 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, + [54398] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2561), 1, + sym_comment, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264359,15 +263754,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(5761), 22, - sym__automatic_semicolon, + ACTIONS(5325), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -264383,150 +263786,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, - [58320] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2604), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5552), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58406] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5511), 1, - anon_sym_LBRACK, - STATE(2605), 1, - sym_comment, - STATE(3959), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58494] = 5, + anon_sym_implements, + [54456] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2606), 1, + STATE(2562), 1, sym_comment, - ACTIONS(5801), 13, + ACTIONS(5732), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264540,7 +263810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5803), 31, + ACTIONS(5734), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264572,35 +263842,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58552] = 14, + [54514] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5805), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5725), 1, anon_sym_LT, - STATE(2607), 1, + STATE(2563), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - STATE(3163), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5759), 12, + ACTIONS(5422), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -264611,12 +263891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5761), 22, + ACTIONS(5420), 17, 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, @@ -264624,24 +263903,20 @@ 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, - [58628] = 5, + [54600] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2608), 1, + STATE(2564), 1, sym_comment, - ACTIONS(2178), 13, + ACTIONS(5736), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264655,7 +263930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2182), 31, + ACTIONS(5738), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264687,67 +263962,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58686] = 5, + [54658] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2609), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + STATE(2565), 1, sym_comment, - ACTIONS(2194), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5601), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [54774] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5505), 1, anon_sym_GT_GT, + ACTIONS(5509), 1, anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + STATE(2566), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5422), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2198), 31, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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, - [58744] = 5, + [54876] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2610), 1, + STATE(2567), 1, sym_comment, - ACTIONS(5808), 13, + ACTIONS(5740), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264761,7 +264140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5600), 31, + ACTIONS(5742), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264793,67 +264172,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58802] = 5, + [54934] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2611), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + STATE(2568), 1, sym_comment, - ACTIONS(5810), 13, - anon_sym_STAR, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5422), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5812), 31, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 11, + 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, - [58860] = 5, + [55034] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2612), 1, + STATE(2569), 1, sym_comment, - ACTIONS(5814), 13, + ACTIONS(5744), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264867,7 +264267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 31, + ACTIONS(5746), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264899,202 +264299,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58918] = 5, + [55092] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2613), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + STATE(2570), 1, sym_comment, - ACTIONS(5818), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5820), 31, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 11, + 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, - [58976] = 34, + [55190] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2614), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2571), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5748), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5509), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [59092] = 5, + [55310] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2615), 1, - sym_comment, - ACTIONS(5822), 13, - anon_sym_STAR, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, anon_sym_GT_GT, + ACTIONS(5509), 1, anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5824), 31, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5553), 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, + STATE(2572), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5507), 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(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5750), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 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, - [59150] = 5, + [55430] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2616), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5752), 1, + anon_sym_LT, + STATE(2573), 1, sym_comment, - ACTIONS(5826), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265105,23 +264580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5828), 31, + ACTIONS(5586), 20, + 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, @@ -265135,76 +264602,111 @@ 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, - [59208] = 5, + [55508] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2617), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5725), 1, + anon_sym_LT, + STATE(2574), 1, sym_comment, - ACTIONS(5830), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5832), 31, + ACTIONS(5420), 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, - [59266] = 6, + [55594] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2618), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5755), 1, + anon_sym_LT, + STATE(2575), 1, sym_comment, - ACTIONS(2140), 13, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5569), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -265213,22 +264715,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(2146), 30, + ACTIONS(5571), 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_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, @@ -265242,75 +264736,91 @@ 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, - [59326] = 8, + [55678] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5380), 1, - anon_sym_extends, - STATE(2619), 1, - sym_comment, - ACTIONS(5834), 2, - anon_sym_COMMA, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5837), 3, - anon_sym_GT, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5822), 10, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + STATE(2576), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 28, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [59390] = 5, + [55784] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2620), 1, + STATE(2577), 1, sym_comment, - ACTIONS(5840), 13, + ACTIONS(5758), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265324,7 +264834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5842), 31, + ACTIONS(5760), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265356,23 +264866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59448] = 7, + [55842] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2621), 1, + STATE(2578), 1, sym_comment, - ACTIONS(2142), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5844), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2140), 13, + ACTIONS(5762), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265386,12 +264887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 24, + ACTIONS(5764), 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, @@ -265411,16 +264918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59510] = 6, + anon_sym_implements, + [55900] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5748), 1, - anon_sym_EQ, - STATE(2622), 1, + STATE(2579), 1, sym_comment, - ACTIONS(5746), 13, + ACTIONS(5766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265434,7 +264940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 30, + ACTIONS(5768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265442,6 +264948,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, @@ -265465,269 +264972,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59570] = 35, + [55958] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, + ACTIONS(5422), 1, anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2623), 1, + STATE(2580), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5706), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5847), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59688] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5420), 10, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2624), 1, + [56062] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5211), 1, + anon_sym_EQ, + STATE(2581), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5209), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5473), 4, - sym__automatic_semicolon, + ACTIONS(5213), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [59804] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5517), 1, - anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, - STATE(2625), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [59910] = 11, + anon_sym_implements, + [56122] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - STATE(2626), 1, + STATE(2582), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5792), 12, + ACTIONS(5770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265738,16 +265120,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(5794), 25, - sym__automatic_semicolon, + ACTIONS(5772), 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, @@ -265765,15 +265152,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, - [59980] = 5, + anon_sym_implements, + [56180] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2627), 1, + STATE(2583), 1, sym_comment, - ACTIONS(2310), 13, + ACTIONS(5774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265787,7 +265176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2312), 31, + ACTIONS(5776), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265819,98 +265208,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60038] = 36, + [56238] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, sym__ternary_qmark, - STATE(2628), 1, + STATE(2584), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5849), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60158] = 5, + ACTIONS(5690), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [56354] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2629), 1, + STATE(2585), 1, sym_comment, - ACTIONS(5851), 13, + ACTIONS(5778), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265924,7 +265311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5853), 31, + ACTIONS(5780), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265956,14 +265343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60216] = 5, + [56412] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2630), 1, + STATE(2586), 1, sym_comment, - ACTIONS(5855), 13, + ACTIONS(5782), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265977,7 +265364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5857), 31, + ACTIONS(5784), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266009,14 +265396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60274] = 5, + [56470] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2631), 1, + STATE(2587), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(5786), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266030,7 +265417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 31, + ACTIONS(5788), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266062,14 +265449,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60332] = 5, + [56528] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2632), 1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5549), 1, + anon_sym_LT, + ACTIONS(5790), 1, + anon_sym_QMARK_DOT, + STATE(2588), 1, sym_comment, - ACTIONS(2294), 13, + STATE(2897), 1, + sym_type_arguments, + STATE(3156), 1, + sym_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(4948), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266080,23 +265483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2296), 31, + ACTIONS(4950), 24, 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, @@ -266114,292 +265510,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [60390] = 36, + [56602] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5549), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2633), 1, + ACTIONS(5792), 1, + anon_sym_DOT, + STATE(2589), 1, sym_comment, - STATE(2742), 1, + STATE(2954), 1, + sym_arguments, + STATE(2955), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(4291), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5859), 2, + ACTIONS(4281), 27, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, + 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, - [60510] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56670] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2634), 1, - sym_comment, - STATE(2742), 1, + STATE(2305), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(2590), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5861), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60630] = 8, + ACTIONS(5539), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [56786] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, - anon_sym_extends, - STATE(2635), 1, - sym_comment, - ACTIONS(5863), 2, - anon_sym_COMMA, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5866), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, - anon_sym_STAR, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 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(5660), 1, anon_sym_AMP_AMP, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2591), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [60694] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2636), 1, - sym_comment, - ACTIONS(2310), 13, + ACTIONS(5418), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2312), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 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_PIPE_RBRACE, - [60752] = 5, + ACTIONS(5533), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [56902] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2637), 1, + STATE(2592), 1, sym_comment, - ACTIONS(2298), 13, + ACTIONS(2255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266413,7 +265753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2300), 31, + ACTIONS(2259), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266445,68 +265785,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60810] = 25, + [56960] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5481), 1, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(5493), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5436), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2638), 1, + STATE(2593), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5517), 3, + ACTIONS(5422), 7, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5515), 11, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 16, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -266516,102 +265847,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [60908] = 36, + [57050] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5421), 1, - anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5725), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2639), 1, + STATE(2594), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5570), 1, - aux_sym_sequence_expression_repeat1, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5869), 2, + ACTIONS(5420), 19, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61028] = 6, + anon_sym_satisfies, + [57130] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - STATE(2640), 1, + STATE(2595), 1, sym_comment, - ACTIONS(5051), 13, + ACTIONS(2265), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266625,7 +265939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 30, + ACTIONS(2269), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266633,6 +265947,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, @@ -266656,96 +265971,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61088] = 34, + [57188] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5549), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2641), 1, + ACTIONS(5794), 1, + anon_sym_DOT, + STATE(2596), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5459), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, + STATE(2957), 1, sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5604), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [61204] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2642), 1, - sym_comment, - ACTIONS(5871), 13, + STATE(2958), 1, + sym_type_arguments, + ACTIONS(4964), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266756,22 +265999,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(5873), 31, + ACTIONS(4966), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -266790,28 +266028,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [61262] = 11, + anon_sym_extends, + [57256] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2643), 1, + ACTIONS(5796), 1, + anon_sym_DOT, + STATE(2597), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, + STATE(2959), 1, sym_arguments, - ACTIONS(5792), 12, + STATE(2960), 1, + sym_type_arguments, + ACTIONS(4942), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266824,15 +266059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5794), 25, + ACTIONS(4944), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - 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, @@ -266849,179 +266084,70 @@ 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, - [61332] = 34, + anon_sym_extends, + [57324] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, - anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2644), 1, + STATE(2598), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5798), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5698), 4, + ACTIONS(5690), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [61448] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2645), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5676), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [61564] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [57382] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2646), 1, + STATE(2599), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267035,7 +266161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 31, + ACTIONS(5802), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267067,38 +266193,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61622] = 5, + [57440] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2647), 1, + ACTIONS(5367), 1, + anon_sym_extends, + STATE(2600), 1, sym_comment, - ACTIONS(5875), 13, + ACTIONS(5804), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5807), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5770), 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(5877), 31, + ACTIONS(5772), 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, @@ -267120,178 +266249,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61680] = 34, + [57504] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2648), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2601), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5810), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5678), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [61796] = 34, + [57624] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5812), 1, anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2649), 1, + STATE(2602), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5604), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [61912] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2650), 1, - sym_comment, - ACTIONS(2256), 13, + ACTIONS(5422), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267302,102 +266375,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2258), 31, + ACTIONS(5420), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [61970] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2651), 1, - sym_comment, - ACTIONS(2200), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2202), 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, - [62028] = 5, + [57704] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2652), 1, + STATE(2603), 1, sym_comment, - ACTIONS(4456), 13, + ACTIONS(5815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267411,16 +266418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4989), 30, - sym__automatic_semicolon, + ACTIONS(5817), 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, @@ -267440,145 +266449,151 @@ 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, - [62085] = 34, + anon_sym_implements, + [57762] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2653), 1, + STATE(2604), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5525), 3, + ACTIONS(5819), 4, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, - [62200] = 16, + anon_sym_RBRACK, + [57878] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5203), 1, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5879), 1, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2654), 1, + STATE(2605), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 12, - anon_sym_STAR, + ACTIONS(5422), 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(5515), 18, + ACTIONS(5420), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -267586,495 +266601,539 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [62279] = 28, + [57968] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5189), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5517), 1, - anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, - STATE(2655), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + STATE(2606), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 9, + ACTIONS(5533), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [58084] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2607), 1, + sym_comment, + ACTIONS(5821), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5823), 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, - [62382] = 29, + anon_sym_implements, + [58142] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5189), 1, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5517), 1, - anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, - STATE(2656), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + STATE(2608), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 8, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5539), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [62487] = 19, + anon_sym_RBRACE, + anon_sym_SEMI, + [58258] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5879), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2657), 1, + STATE(2609), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5825), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 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(5515), 17, + ACTIONS(5827), 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, - [62572] = 25, + anon_sym_implements, + [58316] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5189), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(5201), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5436), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + STATE(2305), 1, sym_type_arguments, - STATE(2658), 1, + STATE(2610), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5517), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5515), 10, + ACTIONS(5420), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [62669] = 26, + [58420] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2659), 1, + STATE(2611), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5211), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5829), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5209), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 10, + ACTIONS(5213), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + 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, - [62768] = 27, + [58482] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5189), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5201), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5436), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + STATE(2305), 1, sym_type_arguments, - STATE(2660), 1, + STATE(2612), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 9, + ACTIONS(5420), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, - anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [62869] = 18, + [58588] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5201), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5879), 1, + ACTIONS(5812), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2661), 1, + STATE(2613), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 10, + ACTIONS(5422), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 17, + ACTIONS(5420), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -268087,45 +267146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [62952] = 19, + [58674] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5879), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2662), 1, + STATE(2614), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 11, + ACTIONS(2215), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -268134,371 +267164,480 @@ 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(5515), 16, + ACTIONS(2217), 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, - [63037] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [58732] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2663), 1, + STATE(2615), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(2329), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5517), 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(5515), 12, + ACTIONS(2333), 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, - [63130] = 34, + anon_sym_implements, + [58790] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2616), 1, + sym_comment, + STATE(2764), 1, sym_type_arguments, - STATE(2664), 1, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5832), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58910] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5664), 1, + anon_sym_AMP, + STATE(2305), 1, + sym_type_arguments, + STATE(2617), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5882), 3, + ACTIONS(5420), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_RBRACK, - [63245] = 30, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [59010] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5436), 1, anon_sym_LT, - ACTIONS(5517), 1, - anon_sym_BANG, - STATE(2313), 1, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + STATE(2305), 1, sym_type_arguments, - STATE(2665), 1, + STATE(2618), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 7, + ACTIONS(5420), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [63352] = 34, + [59112] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5812), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2619), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5420), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2666), 1, + [59196] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2620), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(2235), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(2237), 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, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5600), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [63467] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [59254] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, + ACTIONS(5649), 1, anon_sym_EQ, - ACTIONS(5063), 1, - anon_sym_extends, - STATE(2667), 1, + STATE(2621), 1, sym_comment, - ACTIONS(5057), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5060), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5051), 10, + ACTIONS(5647), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 26, - sym__automatic_semicolon, + ACTIONS(5651), 30, 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_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -268518,428 +267657,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63532] = 34, + anon_sym_implements, + [59314] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5448), 1, + anon_sym_GT, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5456), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5458), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5462), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5464), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5466), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5470), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5472), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5474), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5535), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5537), 1, sym__ternary_qmark, - STATE(2668), 1, + ACTIONS(5836), 1, + anon_sym_in, + STATE(2622), 1, sym_comment, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5460), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5480), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5476), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5590), 3, + ACTIONS(5834), 4, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - [63647] = 36, + [59432] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - ACTIONS(5884), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2669), 1, + STATE(2623), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63766] = 36, + ACTIONS(5658), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [59548] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5812), 1, anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - ACTIONS(5886), 1, - anon_sym_COMMA, - ACTIONS(5888), 1, - anon_sym_RBRACK, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2670), 1, + STATE(2624), 1, sym_comment, - STATE(5002), 1, - aux_sym_sequence_expression_repeat1, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63885] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5420), 17, sym__ternary_qmark, - ACTIONS(5676), 1, anon_sym_COMMA, - STATE(2671), 1, - sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5439), 2, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5459), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5890), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64002] = 36, + [59634] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - ACTIONS(5892), 1, - anon_sym_COMMA, - ACTIONS(5894), 1, - anon_sym_RBRACK, - STATE(2313), 1, - sym_type_arguments, - STATE(2672), 1, + STATE(2625), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - STATE(5891), 1, - aux_sym_array_repeat1, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64121] = 6, + ACTIONS(5561), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [59750] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5896), 1, - anon_sym_is, - STATE(2673), 1, + STATE(2626), 1, sym_comment, - ACTIONS(4977), 13, + ACTIONS(2163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268953,16 +267993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4979), 29, - sym__automatic_semicolon, + ACTIONS(2167), 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, @@ -268982,17 +268024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [64180] = 6, + anon_sym_implements, + [59808] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5662), 1, - anon_sym_is, - STATE(2674), 1, + STATE(2627), 1, sym_comment, - ACTIONS(4963), 13, + ACTIONS(2149), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269006,16 +268048,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 29, - sym__automatic_semicolon, + ACTIONS(2155), 30, 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_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -269035,55 +268078,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [64239] = 15, + anon_sym_implements, + [59868] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5898), 1, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2675), 1, + STATE(2628), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5680), 12, - anon_sym_STAR, + ACTIONS(5438), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, anon_sym_BANG, - anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [59962] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5006), 1, + anon_sym_extends, + STATE(2629), 1, + sym_comment, + ACTIONS(5839), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5842), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4225), 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(5682), 19, + ACTIONS(4229), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -269097,64 +268201,150 @@ 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, + [60026] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + STATE(2305), 1, + sym_type_arguments, + STATE(2630), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [64316] = 17, + [60134] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5275), 1, - anon_sym_RBRACE, - ACTIONS(5550), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(2676), 1, + ACTIONS(5845), 1, + anon_sym_STAR, + ACTIONS(5847), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, + anon_sym_async, + ACTIONS(5851), 1, + anon_sym_readonly, + ACTIONS(5855), 1, + sym__automatic_semicolon, + STATE(2631), 1, sym_comment, - STATE(4803), 1, + STATE(3527), 1, + sym_statement_block, + STATE(3627), 1, + sym_override_modifier, + STATE(3898), 1, sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(5853), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 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(2989), 23, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -269162,862 +268352,974 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [64397] = 21, + [60222] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5858), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2677), 1, + STATE(2632), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 7, + ACTIONS(5613), 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(5515), 15, + ACTIONS(5615), 22, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + 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, - [64486] = 34, + [60298] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2678), 1, + STATE(2633), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5513), 3, + ACTIONS(5690), 4, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, - [64601] = 36, + anon_sym_RBRACK, + [60414] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5861), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2634), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5613), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5615), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(5903), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2679), 1, + [60490] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2635), 1, sym_comment, - STATE(5659), 1, - aux_sym_array_repeat1, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(2187), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(2189), 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, - ACTIONS(5215), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [60548] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5864), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2636), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5584), 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(5586), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64720] = 34, + anon_sym_satisfies, + [60626] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2680), 1, + STATE(2637), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5523), 3, + ACTIONS(5545), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [60742] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2638), 1, + sym_comment, + ACTIONS(5867), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5533), 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, - [64835] = 34, + 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, + [60800] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2681), 1, + STATE(2639), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5509), 3, + ACTIONS(5561), 4, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, - [64950] = 34, + anon_sym_RBRACK, + [60916] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2682), 1, + STATE(2640), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5519), 3, + ACTIONS(5567), 4, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, - [65065] = 34, + anon_sym_RBRACK, + [61032] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2683), 1, + STATE(2641), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5473), 3, + ACTIONS(5497), 4, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, - [65180] = 34, + anon_sym_RBRACK, + [61148] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2684), 1, + STATE(2642), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5670), 3, + ACTIONS(5541), 4, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, - [65295] = 8, + anon_sym_RBRACK, + [61264] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4367), 1, - anon_sym_EQ, - STATE(2685), 1, - sym_comment, - ACTIONS(4370), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2643), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 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(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 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, - [65358] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, + ACTIONS(5595), 4, anon_sym_COMMA, - ACTIONS(5334), 1, anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2686), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65439] = 34, + anon_sym_RBRACK, + [61380] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2687), 1, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2644), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5572), 1, + aux_sym_sequence_expression_repeat1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + ACTIONS(5869), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5527), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65554] = 9, + [61500] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3679), 1, + ACTIONS(5044), 1, anon_sym_extends, - STATE(2688), 1, + STATE(2645), 1, sym_comment, - ACTIONS(5075), 2, + ACTIONS(5871), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5078), 3, + ACTIONS(5874), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2140), 10, + ACTIONS(4225), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270028,14 +269330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 26, - sym__automatic_semicolon, + ACTIONS(4229), 28, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, 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_AMP_AMP, @@ -270055,125 +269358,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65619] = 36, + anon_sym_implements, + [61564] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - ACTIONS(5905), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2689), 1, + STATE(2646), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + ACTIONS(5716), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5877), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65738] = 18, + [61682] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5907), 1, + ACTIONS(5879), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2690), 1, + STATE(2647), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5614), 11, + ACTIONS(5569), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -270185,11 +269489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5616), 17, + ACTIONS(5571), 18, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -270203,227 +269508,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65821] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + [61766] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5331), 1, - anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2691), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65902] = 19, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5910), 1, - anon_sym_static, - ACTIONS(5912), 1, - anon_sym_readonly, - ACTIONS(5914), 1, - anon_sym_abstract, - STATE(2692), 1, + STATE(2648), 1, sym_comment, - STATE(3588), 1, - sym_accessibility_modifier, - STATE(3689), 1, - sym_override_modifier, - STATE(4271), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4676), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4225), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4498), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65987] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - ACTIONS(5886), 1, - anon_sym_COMMA, - ACTIONS(5916), 1, - anon_sym_RBRACK, - STATE(2313), 1, - sym_type_arguments, - STATE(2693), 1, - sym_comment, - STATE(5002), 1, - aux_sym_sequence_expression_repeat1, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66106] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [61824] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2694), 1, + STATE(2649), 1, sym_comment, - ACTIONS(4973), 13, + ACTIONS(5882), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270437,16 +269582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4975), 30, - sym__automatic_semicolon, + ACTIONS(5884), 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, @@ -270466,97 +269613,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [66163] = 34, + anon_sym_implements, + [61882] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, - anon_sym_GT_GT, - ACTIONS(5441), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, - anon_sym_PERCENT, - ACTIONS(5451), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - STATE(2695), 1, + STATE(2650), 1, sym_comment, - STATE(2742), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5886), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5425), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5447), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5888), 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(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5455), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5668), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [66278] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [61940] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2696), 1, + STATE(2651), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270570,7 +269688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 30, + ACTIONS(2201), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -270578,6 +269696,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, @@ -270601,812 +269720,879 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [66335] = 36, + [61998] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(5918), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2697), 1, + STATE(2652), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(5941), 1, - aux_sym_array_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66454] = 34, + ACTIONS(5591), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [62114] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5890), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2698), 1, + STATE(2653), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5602), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66569] = 9, + [62233] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_EQ, - ACTIONS(5544), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - STATE(2699), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2654), 1, sym_comment, - ACTIONS(5547), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5011), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4218), 11, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 8, 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_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5420), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [66634] = 36, + [62318] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - ACTIONS(5886), 1, - anon_sym_COMMA, - ACTIONS(5920), 1, - anon_sym_RBRACE, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2700), 1, + STATE(2655), 1, sym_comment, - STATE(5002), 1, - aux_sym_sequence_expression_repeat1, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5539), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66753] = 36, + [62433] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - ACTIONS(5886), 1, - anon_sym_COMMA, - ACTIONS(5922), 1, - anon_sym_RBRACK, - STATE(2313), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + STATE(2305), 1, sym_type_arguments, - STATE(2701), 1, + STATE(2656), 1, sym_comment, - STATE(5002), 1, - aux_sym_sequence_expression_repeat1, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66872] = 36, + ACTIONS(5420), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [62538] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5924), 1, - anon_sym_RPAREN, - STATE(2313), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + STATE(2305), 1, sym_type_arguments, - STATE(2702), 1, + STATE(2657), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66991] = 34, + ACTIONS(5420), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [62641] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5931), 1, + anon_sym_COMMA, + ACTIONS(5933), 1, + anon_sym_RBRACK, + STATE(2305), 1, sym_type_arguments, - STATE(2703), 1, + STATE(2658), 1, sym_comment, - STATE(5797), 1, + STATE(5774), 1, + aux_sym_array_repeat1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5604), 3, + [62760] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2659), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5420), 18, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [67106] = 35, + anon_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, + [62839] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - ACTIONS(5676), 1, - anon_sym_COMMA, - STATE(2704), 1, - sym_comment, - STATE(2742), 1, + STATE(2305), 1, sym_type_arguments, - STATE(5719), 1, + STATE(2660), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5533), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67223] = 36, + [62954] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - ACTIONS(5901), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(5928), 1, + ACTIONS(5937), 1, anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2705), 1, + STATE(2661), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6055), 1, + STATE(6294), 1, aux_sym_array_repeat1, - ACTIONS(5171), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67342] = 36, + [63073] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5930), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2706), 1, + STATE(2662), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5211), 2, + ACTIONS(5420), 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, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67461] = 5, + anon_sym_satisfies, + anon_sym_implements, + [63162] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2707), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5917), 1, + anon_sym_STAR_STAR, + ACTIONS(5939), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2663), 1, sym_comment, - ACTIONS(2061), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271417,758 +270603,649 @@ 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(2063), 30, - sym__automatic_semicolon, + ACTIONS(5420), 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, - anon_sym_is, - [67518] = 34, + anon_sym_implements, + [63241] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5938), 1, - anon_sym_AMP_AMP, - ACTIONS(5940), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5966), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, - sym__ternary_qmark, - STATE(2708), 1, - sym_comment, - STATE(3148), 1, + STATE(2305), 1, sym_type_arguments, - STATE(5797), 1, + STATE(2664), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5934), 3, + ACTIONS(5921), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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, - ACTIONS(5960), 3, + [63344] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_AMP_AMP, + ACTIONS(5903), 1, + anon_sym_GT_GT, + ACTIONS(5907), 1, + anon_sym_AMP, + ACTIONS(5909), 1, + anon_sym_CARET, + ACTIONS(5911), 1, + anon_sym_PIPE, + ACTIONS(5915), 1, + anon_sym_PERCENT, + ACTIONS(5917), 1, + anon_sym_STAR_STAR, + ACTIONS(5919), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2665), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5905), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5913), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5923), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5925), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67633] = 7, + ACTIONS(5420), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [63449] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2709), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5915), 1, + anon_sym_PERCENT, + ACTIONS(5917), 1, + anon_sym_STAR_STAR, + ACTIONS(5939), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2666), 1, sym_comment, - ACTIONS(2142), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5970), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2140), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5913), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(2146), 23, + ACTIONS(5420), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [67694] = 36, + anon_sym_implements, + [63534] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5972), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2710), 1, + STATE(2667), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5422), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67813] = 36, + ACTIONS(5420), 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, + [63631] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5974), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2711), 1, + STATE(2668), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67932] = 36, + ACTIONS(5420), 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, + [63730] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(5976), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2712), 1, + STATE(2669), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(5889), 1, - aux_sym_array_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68051] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5415), 1, - anon_sym_LT, - STATE(2713), 1, - sym_comment, - STATE(2872), 1, - sym_type_arguments, - ACTIONS(4977), 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(4979), 29, - sym__automatic_semicolon, + ACTIONS(5420), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [68112] = 6, + anon_sym_implements, + [63831] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5662), 1, - anon_sym_is, - STATE(2714), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2670), 1, sym_comment, - ACTIONS(4969), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(4971), 29, - sym__automatic_semicolon, + ACTIONS(5420), 15, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [68171] = 34, + [63920] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2715), 1, + STATE(2671), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5676), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68286] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2716), 1, - sym_comment, - ACTIONS(5748), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5978), 5, + ACTIONS(5533), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5746), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5750), 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, - [68347] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2717), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68428] = 14, + [64035] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5980), 1, + ACTIONS(5915), 1, + anon_sym_PERCENT, + ACTIONS(5917), 1, + anon_sym_STAR_STAR, + ACTIONS(5939), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2718), 1, + STATE(2672), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5759), 12, - anon_sym_STAR, + ACTIONS(5422), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -272177,405 +271254,346 @@ 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(5761), 21, + ACTIONS(5420), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [68503] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5408), 1, - anon_sym_RBRACE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2719), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68584] = 36, + anon_sym_implements, + [64118] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - ACTIONS(5983), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2720), 1, + STATE(2673), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5601), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68703] = 36, + [64233] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5939), 1, anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - ACTIONS(5886), 1, - anon_sym_COMMA, - ACTIONS(5985), 1, - anon_sym_RBRACK, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2721), 1, + STATE(2674), 1, sym_comment, - STATE(5002), 1, - aux_sym_sequence_expression_repeat1, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5420), 16, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68822] = 35, + anon_sym_implements, + [64318] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_AMP_AMP, - ACTIONS(5435), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_CARET, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5461), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(5469), 1, - sym__ternary_qmark, - ACTIONS(5676), 1, - anon_sym_COMMA, - STATE(2722), 1, - sym_comment, - STATE(2742), 1, + STATE(2305), 1, sym_type_arguments, - STATE(5719), 1, + STATE(2675), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5987), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68939] = 7, + ACTIONS(5420), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [64417] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2723), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5903), 1, + anon_sym_GT_GT, + ACTIONS(5915), 1, + anon_sym_PERCENT, + ACTIONS(5917), 1, + anon_sym_STAR_STAR, + ACTIONS(5919), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2676), 1, sym_comment, - ACTIONS(5053), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5989), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5051), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5905), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 23, + ACTIONS(5420), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [69000] = 5, + anon_sym_implements, + [64510] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2724), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5942), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2677), 1, sym_comment, - ACTIONS(4454), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272586,21 +271604,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(4967), 30, - sym__automatic_semicolon, + ACTIONS(5586), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -272614,276 +271625,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [69057] = 36, + [64587] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - ACTIONS(5886), 1, - anon_sym_COMMA, - ACTIONS(5991), 1, - anon_sym_COLON, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2725), 1, + STATE(2678), 1, sym_comment, - STATE(5002), 1, - aux_sym_sequence_expression_repeat1, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69176] = 36, + ACTIONS(5420), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [64688] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5175), 1, + ACTIONS(5146), 1, anon_sym_COMMA, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - ACTIONS(5993), 1, + ACTIONS(5945), 1, anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2726), 1, + STATE(2679), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, + STATE(6202), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69295] = 36, + [64807] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5892), 1, anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5995), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2727), 1, + STATE(2680), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69414] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2728), 1, - sym_comment, - STATE(2864), 1, - sym_type_arguments, - ACTIONS(4915), 12, - anon_sym_STAR, + ACTIONS(5422), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -272892,540 +271828,513 @@ 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(4307), 28, - sym__automatic_semicolon, + ACTIONS(5420), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [69477] = 36, + [64890] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5997), 1, - anon_sym_RPAREN, - STATE(2313), 1, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(2305), 1, sym_type_arguments, - STATE(2729), 1, + STATE(2681), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5420), 16, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69596] = 36, + [64975] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5999), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2730), 1, + STATE(2682), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69715] = 36, + ACTIONS(5420), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [65082] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(6001), 1, - anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2731), 1, + STATE(2683), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6183), 1, - aux_sym_array_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5690), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69834] = 34, + [65197] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2732), 1, + STATE(2684), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6003), 3, + ACTIONS(5539), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [69949] = 36, + anon_sym_RPAREN, + anon_sym_COLON, + [65312] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - ACTIONS(5892), 1, - anon_sym_COMMA, - ACTIONS(6005), 1, - anon_sym_RBRACK, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2733), 1, + STATE(2685), 1, sym_comment, - STATE(5776), 1, - aux_sym_array_repeat1, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5545), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70068] = 34, + [65427] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5947), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2734), 1, + STATE(2686), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5604), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70183] = 5, + [65546] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2735), 1, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_EQ, + STATE(2687), 1, sym_comment, - ACTIONS(4450), 13, + ACTIONS(4378), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273439,15 +272348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4985), 30, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -273468,276 +272372,360 @@ 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, - [70240] = 35, + [65609] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - ACTIONS(5676), 1, - anon_sym_COMMA, - STATE(2736), 1, - sym_comment, - STATE(2742), 1, + ACTIONS(5949), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(5719), 1, + STATE(2688), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6007), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70357] = 34, + [65728] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2689), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [65821] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2737), 1, + STATE(2690), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5639), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5678), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [70472] = 35, + [65936] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5435), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5437), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5441), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5445), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5449), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5451), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5461), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5469), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - ACTIONS(5676), 1, - anon_sym_COMMA, - STATE(2738), 1, - sym_comment, - STATE(2742), 1, + ACTIONS(5951), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(5719), 1, + STATE(2691), 1, + sym_comment, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5417), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5425), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5439), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5447), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5457), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5459), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5708), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5455), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70589] = 11, + [66055] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4997), 1, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5958), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2739), 1, + STATE(2692), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5792), 12, + ACTIONS(5569), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -273748,14 +272736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5794), 24, + ACTIONS(5571), 17, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -273769,172 +272754,158 @@ 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, - anon_sym_implements, - [70658] = 34, + [66138] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5938), 1, - anon_sym_AMP_AMP, - ACTIONS(5940), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, - anon_sym_GT_GT, - ACTIONS(5946), 1, - anon_sym_AMP, - ACTIONS(5948), 1, - anon_sym_CARET, - ACTIONS(5950), 1, - anon_sym_PIPE, - ACTIONS(5954), 1, - anon_sym_PERCENT, - ACTIONS(5956), 1, - anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5549), 1, anon_sym_LT, - ACTIONS(5966), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2740), 1, + STATE(2693), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + STATE(2875), 1, + sym_type_arguments, + ACTIONS(4974), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5936), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5952), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5698), 3, - anon_sym_LBRACE, + ACTIONS(4976), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5960), 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, - [70773] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [66199] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5956), 1, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(6009), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + STATE(2305), 1, sym_type_arguments, - STATE(2741), 1, + STATE(2694), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 11, + ACTIONS(5142), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 16, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [70858] = 8, + ACTIONS(5420), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [66306] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - STATE(2742), 1, + ACTIONS(5919), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2695), 1, sym_comment, - STATE(3071), 2, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(4993), 13, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273945,17 +272916,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(4995), 26, - sym__automatic_semicolon, + ACTIONS(5637), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -273975,790 +272942,816 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [70921] = 36, + anon_sym_implements, + [66375] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(6012), 1, + ACTIONS(5956), 1, anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2743), 1, + STATE(2696), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6140), 1, - aux_sym_array_repeat1, - ACTIONS(5171), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71040] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5103), 1, - anon_sym_readonly, - STATE(2744), 1, - sym_comment, - STATE(3631), 1, - sym_override_modifier, - STATE(3959), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6014), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71127] = 34, + [66494] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, - anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5954), 1, - anon_sym_PERCENT, - ACTIONS(5956), 1, - anon_sym_STAR_STAR, - ACTIONS(5958), 1, - anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5958), 1, + anon_sym_COMMA, + ACTIONS(5960), 1, + anon_sym_RBRACE, + STATE(2305), 1, sym_type_arguments, - STATE(2745), 1, + STATE(2697), 1, sym_comment, - STATE(5797), 1, + STATE(5005), 1, + aux_sym_sequence_expression_repeat1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5527), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71242] = 34, + [66613] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2746), 1, + STATE(2698), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5670), 3, + ACTIONS(5567), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71357] = 34, + [66728] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2747), 1, + STATE(2699), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5678), 3, + ACTIONS(5497), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71472] = 15, + [66843] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6018), 1, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(2748), 1, + STATE(2700), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5680), 12, + ACTIONS(5142), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5682), 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, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [71549] = 34, + ACTIONS(5561), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [66958] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2749), 1, + STATE(2701), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5473), 3, + ACTIONS(5541), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71664] = 34, + [67073] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2750), 1, + STATE(2702), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5519), 3, + ACTIONS(5595), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71779] = 34, + [67188] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2751), 1, + STATE(2703), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5523), 3, + ACTIONS(5591), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71894] = 18, + [67303] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6021), 1, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2752), 1, + STATE(2704), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, + STATE(6144), 1, + aux_sym_array_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5616), 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, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [71977] = 11, + [67422] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(5964), 1, + anon_sym_static, + ACTIONS(5966), 1, + anon_sym_readonly, + ACTIONS(5968), 1, + anon_sym_abstract, + STATE(2705), 1, + sym_comment, + STATE(3575), 1, + sym_accessibility_modifier, + STATE(3693), 1, + sym_override_modifier, + STATE(4315), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4683), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(992), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5205), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2753), 1, + anon_sym_QMARK, + ACTIONS(4505), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67507] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2706), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5792), 12, + ACTIONS(4426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274769,14 +273762,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(5794), 24, + ACTIONS(4986), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -274795,1486 +273792,1373 @@ 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, - [72046] = 36, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [67564] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - ACTIONS(6024), 1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(5970), 1, anon_sym_RPAREN, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2754), 1, + STATE(2707), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(6201), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5171), 2, + STATE(5942), 1, + aux_sym_array_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72165] = 36, + [67683] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(2708), 1, + sym_comment, + ACTIONS(4982), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4984), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - ACTIONS(5892), 1, - anon_sym_COMMA, - ACTIONS(6026), 1, - anon_sym_RBRACK, - STATE(2313), 1, - sym_type_arguments, - STATE(2755), 1, - sym_comment, - STATE(5776), 1, - aux_sym_array_repeat1, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [67740] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2709), 1, + sym_comment, + ACTIONS(2092), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72284] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(2094), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, - anon_sym_GT_GT, - ACTIONS(5946), 1, - anon_sym_AMP, - ACTIONS(5948), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5950), 1, - anon_sym_PIPE, - ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, - anon_sym_LT, - ACTIONS(5966), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2756), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5936), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5944), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5952), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5964), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5525), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5960), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72399] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [67797] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2757), 1, + STATE(2710), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5602), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72514] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2758), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5759), 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(5761), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5690), 3, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [72589] = 34, + anon_sym_RPAREN, + anon_sym_COLON, + [67912] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2759), 1, + STATE(2711), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5600), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72704] = 34, + ACTIONS(5545), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [68027] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2760), 1, + STATE(2712), 1, sym_comment, - STATE(5797), 1, + STATE(3091), 1, + sym_type_arguments, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5698), 3, + ACTIONS(5972), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [72819] = 30, + anon_sym_implements, + [68142] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5938), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2761), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + STATE(2713), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5960), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5819), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [72926] = 34, + anon_sym_SEMI, + [68257] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5974), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2762), 1, + STATE(2714), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5171), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5676), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [73041] = 23, + [68376] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5942), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5954), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2763), 1, + STATE(2715), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2631), 2, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5960), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5517), 5, + ACTIONS(5422), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 12, + ACTIONS(5420), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_implements, - [73134] = 34, + [68473] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(5976), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2764), 1, + STATE(2716), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5509), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73249] = 34, + [68592] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5938), 1, + ACTIONS(5899), 1, anon_sym_AMP_AMP, - ACTIONS(5940), 1, + ACTIONS(5901), 1, anon_sym_PIPE_PIPE, - ACTIONS(5942), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5919), 1, anon_sym_LT, - ACTIONS(5966), 1, + ACTIONS(5927), 1, anon_sym_QMARK_QMARK, - ACTIONS(5968), 1, + ACTIONS(5929), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2765), 1, + STATE(2717), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5513), 3, + ACTIONS(5645), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5960), 3, + ACTIONS(5921), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73364] = 10, + [68707] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5075), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - STATE(2766), 1, - sym_comment, - ACTIONS(5078), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6031), 2, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3679), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2140), 11, - anon_sym_STAR, + ACTIONS(5148), 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(2146), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5188), 1, anon_sym_satisfies, - [73431] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5057), 1, - anon_sym_LBRACK, - STATE(2767), 1, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5978), 1, + anon_sym_RPAREN, + STATE(2305), 1, + sym_type_arguments, + STATE(2718), 1, sym_comment, - ACTIONS(5060), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6035), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5063), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5051), 11, + STATE(5805), 1, + sym_optional_chain, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 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(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73498] = 36, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68826] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - ACTIONS(5901), 1, + ACTIONS(5958), 1, anon_sym_COMMA, - ACTIONS(6039), 1, - anon_sym_RPAREN, - STATE(2313), 1, + ACTIONS(5980), 1, + anon_sym_COLON, + STATE(2305), 1, sym_type_arguments, - STATE(2768), 1, + STATE(2719), 1, sym_comment, - STATE(5797), 1, + STATE(5005), 1, + aux_sym_sequence_expression_repeat1, + STATE(5805), 1, sym_optional_chain, - STATE(6291), 1, - aux_sym_array_repeat1, - ACTIONS(5171), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73617] = 21, + [68945] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5942), 1, - anon_sym_GT_GT, - ACTIONS(5954), 1, - anon_sym_PERCENT, - ACTIONS(5956), 1, - anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5982), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2769), 1, + STATE(2720), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5944), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5952), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 7, + ACTIONS(5613), 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(5515), 15, + ACTIONS(5615), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - anon_sym_implements, - [73706] = 16, + [69020] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5956), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(6009), 1, + ACTIONS(5436), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + ACTIONS(5958), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_RBRACK, + STATE(2305), 1, sym_type_arguments, - STATE(2770), 1, + STATE(2721), 1, sym_comment, - STATE(5797), 1, + STATE(5005), 1, + aux_sym_sequence_expression_repeat1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 12, + ACTIONS(5418), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [73785] = 28, + [69139] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5942), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5899), 1, + anon_sym_AMP_AMP, + ACTIONS(5901), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5903), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5907), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5909), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5911), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5915), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5917), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5919), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5927), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5929), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(2771), 1, + STATE(2722), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5895), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5905), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5960), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5658), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, anon_sym_implements, - [73888] = 29, + ACTIONS(5921), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69254] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5938), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(5942), 1, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(5950), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(5954), 1, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5521), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2772), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(2723), 1, sym_comment, - STATE(5797), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5987), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5960), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [73993] = 19, + [69371] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6041), 1, - anon_sym_static, - ACTIONS(6043), 1, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5068), 1, anon_sym_readonly, - ACTIONS(6045), 1, - anon_sym_abstract, - STATE(2773), 1, + STATE(2724), 1, sym_comment, - STATE(3575), 1, - sym_accessibility_modifier, - STATE(3670), 1, + STATE(3625), 1, sym_override_modifier, - STATE(4187), 1, + STATE(3940), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4676), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, @@ -276282,108 +275166,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74078] = 19, + [69458] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5954), 1, - anon_sym_PERCENT, - ACTIONS(5956), 1, - anon_sym_STAR_STAR, - ACTIONS(6009), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2774), 1, + STATE(2725), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5323), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5952), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 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(5515), 17, + ACTIONS(5325), 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, - [74163] = 8, + [69515] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(2151), 1, anon_sym_EQ, - ACTIONS(4352), 1, - anon_sym_QMARK, - STATE(2775), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5008), 1, + anon_sym_LBRACK, + STATE(2726), 1, sym_comment, - ACTIONS(4348), 5, + ACTIONS(5011), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5993), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4218), 13, + ACTIONS(3612), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2149), 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(4222), 23, + ACTIONS(2155), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -276403,262 +275275,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74226] = 25, + [69582] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5942), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(5954), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5436), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + ACTIONS(5958), 1, + anon_sym_COMMA, + ACTIONS(5997), 1, + anon_sym_RBRACK, + STATE(2305), 1, sym_type_arguments, - STATE(2776), 1, + STATE(2727), 1, sym_comment, - STATE(5797), 1, + STATE(5005), 1, + aux_sym_sequence_expression_repeat1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5960), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 10, + [69701] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2728), 1, + sym_comment, + ACTIONS(4424), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4980), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_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, - [74323] = 26, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [69758] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5942), 1, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5954), 1, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5999), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2777), 1, + STATE(2729), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5932), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5960), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 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, - [74422] = 27, + [69877] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5942), 1, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5946), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5948), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5954), 1, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5956), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5958), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(2778), 1, + STATE(2730), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5932), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5936), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5944), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5952), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5962), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5964), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5960), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5595), 3, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [74523] = 18, + anon_sym_RPAREN, + anon_sym_COLON, + [69992] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5547), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5954), 1, - anon_sym_PERCENT, - ACTIONS(5956), 1, - anon_sym_STAR_STAR, - ACTIONS(6009), 1, + ACTIONS(5549), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2779), 1, + STATE(2731), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + STATE(2867), 1, + sym_type_arguments, + ACTIONS(4958), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -276667,395 +275597,463 @@ 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(5515), 17, + ACTIONS(4339), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [74606] = 25, + anon_sym_extends, + [70055] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(6051), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(2742), 1, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(2780), 1, + STATE(2732), 1, sym_comment, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6063), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 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, - [74702] = 6, + ACTIONS(5591), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [70170] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5353), 1, - anon_sym_DOT, - STATE(2781), 1, - sym_comment, - ACTIONS(5324), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5326), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5450), 1, anon_sym_LBRACK, - anon_sym_QMARK_DOT, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, anon_sym_PERCENT, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5521), 1, + anon_sym_LT, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [74760] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5654), 1, - anon_sym_QMARK_DOT, - STATE(2782), 1, + ACTIONS(5531), 1, + sym__ternary_qmark, + STATE(2733), 1, sym_comment, - STATE(5719), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(2256), 13, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2258), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 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, - [74824] = 35, + ACTIONS(5834), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [70285] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6051), 1, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(5436), 1, anon_sym_LT, - ACTIONS(6069), 1, - anon_sym_SEMI, - ACTIONS(6071), 1, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(6083), 1, - sym__automatic_semicolon, - ACTIONS(6085), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2742), 1, + ACTIONS(5958), 1, + anon_sym_COMMA, + ACTIONS(6001), 1, + anon_sym_RBRACK, + STATE(2305), 1, sym_type_arguments, - STATE(2783), 1, + STATE(2734), 1, sym_comment, - STATE(5719), 1, + STATE(5005), 1, + aux_sym_sequence_expression_repeat1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74940] = 5, + [70404] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2784), 1, - sym_comment, - ACTIONS(4492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5450), 1, anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, anon_sym_PERCENT, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5521), 1, + anon_sym_LT, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5531), 1, + sym__ternary_qmark, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(2735), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [74996] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2785), 1, - sym_comment, - ACTIONS(4490), 13, + ACTIONS(5495), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5316), 29, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6003), 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(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70521] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2736), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [75052] = 5, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5601), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [70636] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2786), 1, + STATE(2737), 1, sym_comment, - ACTIONS(4488), 13, + ACTIONS(5211), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6005), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277069,15 +276067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5290), 29, - sym__automatic_semicolon, + ACTIONS(5213), 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, @@ -277098,578 +276091,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75108] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(6089), 1, - anon_sym_COMMA, - ACTIONS(6091), 1, - anon_sym_RBRACE, - STATE(2787), 1, - sym_comment, - STATE(5716), 1, - aux_sym_object_pattern_repeat1, - STATE(7169), 1, - sym__property_name, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - STATE(5702), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6087), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75190] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6095), 1, - anon_sym_async, - ACTIONS(6099), 1, - anon_sym_abstract, - STATE(2788), 1, - sym_comment, - STATE(3898), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6097), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75268] = 34, + [70697] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6051), 1, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(5436), 1, anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2742), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2789), 1, + STATE(2738), 1, sym_comment, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6101), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75382] = 6, + ACTIONS(6007), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [70812] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - STATE(2790), 1, - sym_comment, - ACTIONS(5051), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5055), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 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(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, anon_sym_PERCENT, + ACTIONS(5434), 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, - [75440] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(2791), 1, - sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5436), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75530] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2792), 1, - sym_comment, - ACTIONS(5866), 2, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5863), 3, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + ACTIONS(5931), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4965), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4218), 11, + ACTIONS(6009), 1, + anon_sym_RBRACK, + STATE(2305), 1, + sym_type_arguments, + STATE(2739), 1, + sym_comment, + STATE(5774), 1, + aux_sym_array_repeat1, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 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(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 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, - [75592] = 34, + [70931] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(6011), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2793), 1, + STATE(2740), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5590), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75706] = 34, + [71050] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6051), 1, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(5436), 1, anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2742), 1, + ACTIONS(5958), 1, + anon_sym_COMMA, + ACTIONS(6013), 1, + anon_sym_RBRACK, + STATE(2305), 1, sym_type_arguments, - STATE(2794), 1, + STATE(2741), 1, sym_comment, - STATE(5719), 1, + STATE(5005), 1, + aux_sym_sequence_expression_repeat1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5847), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75820] = 5, + [71169] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2795), 1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5215), 1, + anon_sym_LBRACK, + STATE(2742), 1, sym_comment, - ACTIONS(3377), 13, + ACTIONS(5218), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6015), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5221), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5209), 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(5213), 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, + [71236] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(3612), 1, + anon_sym_extends, + STATE(2743), 1, + sym_comment, + ACTIONS(5008), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5011), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2149), 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(3679), 29, + ACTIONS(2155), 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, @@ -277689,185 +276534,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75876] = 35, + [71301] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5061), 1, + anon_sym_RBRACE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(2744), 1, + sym_comment, + STATE(4771), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71382] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - ACTIONS(6105), 1, - anon_sym_SEMI, - ACTIONS(6107), 1, - sym__automatic_semicolon, - STATE(2742), 1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(6019), 1, + anon_sym_RPAREN, + STATE(2305), 1, sym_type_arguments, - STATE(2796), 1, + STATE(2745), 1, sym_comment, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, + STATE(5893), 1, + aux_sym_array_repeat1, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75992] = 8, + [71501] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2797), 1, - sym_comment, - ACTIONS(5837), 2, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5834), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5380), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5822), 11, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2746), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 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(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 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, - [76054] = 17, + ACTIONS(6021), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [71616] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5415), 1, + anon_sym_RBRACE, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_static, - ACTIONS(6111), 1, - anon_sym_readonly, - ACTIONS(6113), 1, - anon_sym_abstract, - STATE(2798), 1, + STATE(2747), 1, sym_comment, - STATE(3683), 1, - sym_override_modifier, - STATE(4297), 1, + STATE(4771), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -277875,12 +276810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -277888,42 +276826,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76134] = 9, + [71697] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_extends, - STATE(2799), 1, - sym_comment, - ACTIONS(5544), 2, - anon_sym_COMMA, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5547), 3, - anon_sym_GT, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + anon_sym_RPAREN, + STATE(2305), 1, + sym_type_arguments, + STATE(2748), 1, + sym_comment, + STATE(5661), 1, + aux_sym_array_repeat1, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71816] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2749), 1, + sym_comment, + ACTIONS(4418), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(4988), 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, @@ -277943,41 +276959,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76198] = 8, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [71873] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2800), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5176), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2750), 1, sym_comment, - ACTIONS(5547), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5544), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5011), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4218), 11, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5635), 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(4222), 22, + ACTIONS(5637), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -277995,142 +277018,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, - [76260] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_STAR, - ACTIONS(6117), 1, - anon_sym_async, - ACTIONS(6121), 1, - anon_sym_abstract, - STATE(2801), 1, - sym_comment, - STATE(3926), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6119), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76338] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_STAR, - ACTIONS(6117), 1, - anon_sym_async, - ACTIONS(6123), 1, - anon_sym_readonly, - STATE(2802), 1, - sym_comment, - STATE(3637), 1, - sym_override_modifier, - STATE(3928), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6119), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76420] = 5, + [71942] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2803), 1, + ACTIONS(5551), 1, + anon_sym_is, + STATE(2751), 1, sym_comment, - ACTIONS(3227), 13, + ACTIONS(5000), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278144,7 +277042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3669), 29, + ACTIONS(5002), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -278174,115 +277072,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76476] = 22, + [72001] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5091), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6125), 1, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, anon_sym_RBRACE, - STATE(2804), 1, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(2752), 1, sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, + STATE(4771), 1, sym__property_name, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76566] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(2805), 1, - sym_comment, - STATE(4803), 1, - sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(5552), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6014), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -278292,69 +277122,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76644] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5511), 1, - anon_sym_LBRACK, - STATE(2806), 1, - sym_comment, - STATE(3959), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, anon_sym_get, anon_sym_set, - ACTIONS(6014), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -278367,293 +277136,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76724] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, + [72082] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1039), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(2807), 1, - sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76814] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2808), 1, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2753), 1, sym_comment, - ACTIONS(4486), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5645), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + [72197] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2754), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [76870] = 34, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5639), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [72312] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2809), 1, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(2755), 1, sym_comment, - STATE(5719), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6127), 2, + ACTIONS(6025), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76984] = 34, + [72429] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(6051), 1, + ACTIONS(5501), 1, + anon_sym_AMP_AMP, + ACTIONS(5503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5505), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(5509), 1, + anon_sym_AMP, + ACTIONS(5511), 1, + anon_sym_CARET, + ACTIONS(5513), 1, + anon_sym_PIPE, + ACTIONS(5517), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(5519), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(5529), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5531), 1, + sym__ternary_qmark, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(2756), 1, + sym_comment, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5499), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5507), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5527), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5721), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72546] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(5501), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5503), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5505), 1, + anon_sym_GT_GT, + ACTIONS(5509), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5511), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5513), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5517), 1, + anon_sym_PERCENT, + ACTIONS(5519), 1, + anon_sym_STAR_STAR, + ACTIONS(5521), 1, + anon_sym_LT, + ACTIONS(5529), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(5531), 1, sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2810), 1, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(2757), 1, sym_comment, - STATE(5719), 1, + STATE(2764), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5602), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, + ACTIONS(5495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5499), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5507), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5525), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5527), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(6027), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5523), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77098] = 5, + [72663] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2811), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4353), 1, + anon_sym_QMARK, + STATE(2758), 1, sym_comment, - ACTIONS(4486), 13, + ACTIONS(4349), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278667,15 +277575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 29, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -278696,38 +277599,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77154] = 5, + [72726] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2812), 1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5221), 1, + anon_sym_extends, + STATE(2759), 1, sym_comment, - ACTIONS(4484), 13, + ACTIONS(5215), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5218), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5209), 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(5345), 29, + ACTIONS(5213), 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, @@ -278747,66 +277655,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77210] = 5, + [72791] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2813), 1, - sym_comment, - ACTIONS(4484), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5345), 29, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, anon_sym_COMMA, + ACTIONS(5294), 1, anon_sym_RBRACE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(2760), 1, + sym_comment, + STATE(4771), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72872] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, + anon_sym_RPAREN, + STATE(2305), 1, + sym_type_arguments, + STATE(2761), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + STATE(6183), 1, + aux_sym_array_repeat1, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [77266] = 5, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72991] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2814), 1, + STATE(2762), 1, sym_comment, - ACTIONS(4482), 13, + ACTIONS(5649), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6031), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5647), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278820,15 +277832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5356), 29, - sym__automatic_semicolon, + ACTIONS(5651), 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, @@ -278849,64 +277856,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77322] = 18, + [73052] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5277), 1, + anon_sym_RBRACE, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_STAR, - ACTIONS(6131), 1, - anon_sym_async, - ACTIONS(6133), 1, - anon_sym_readonly, - STATE(2815), 1, + STATE(2763), 1, sym_comment, - STATE(3633), 1, - sym_override_modifier, - STATE(4000), 1, + STATE(4771), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6135), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -278914,96 +277920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77404] = 34, + [73133] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2816), 1, + STATE(2764), 1, sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6137), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + STATE(3055), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77518] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5748), 1, - anon_sym_EQ, - STATE(2817), 1, - sym_comment, - ACTIONS(5746), 13, + ACTIONS(4990), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279017,13 +277948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 28, + ACTIONS(4992), 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, @@ -279044,16 +277974,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [77576] = 5, + [73196] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2818), 1, + STATE(2765), 1, sym_comment, - ACTIONS(3241), 13, + ACTIONS(2151), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6033), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2149), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279067,15 +278005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3599), 29, - sym__automatic_semicolon, + ACTIONS(2155), 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, @@ -279096,89 +278029,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77632] = 5, + [73257] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2819), 1, - sym_comment, - ACTIONS(4467), 13, - anon_sym_STAR, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, anon_sym_GT_GT, + ACTIONS(5164), 1, anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2766), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5567), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + [73372] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(6035), 1, + anon_sym_RPAREN, + STATE(2305), 1, + sym_type_arguments, + STATE(2767), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + STATE(6202), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73491] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, anon_sym_satisfies, - anon_sym_extends, - [77688] = 5, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2768), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5497), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [73606] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2820), 1, + ACTIONS(4315), 1, + anon_sym_EQ, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(2769), 1, sym_comment, - ACTIONS(4465), 13, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5044), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4225), 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(5265), 29, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -279198,15 +278330,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77744] = 5, + [73671] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2821), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2770), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5541), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [73786] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + ACTIONS(5931), 1, + anon_sym_COMMA, + ACTIONS(6037), 1, + anon_sym_RBRACK, + STATE(2305), 1, + sym_type_arguments, + STATE(2771), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + STATE(5891), 1, + aux_sym_array_repeat1, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73905] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6039), 1, + anon_sym_is, + STATE(2772), 1, sym_comment, - ACTIONS(4463), 13, + ACTIONS(4974), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279220,7 +278517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5155), 29, + ACTIONS(4976), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279250,69 +278547,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77800] = 7, + [73964] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5713), 1, - sym__automatic_semicolon, - STATE(2822), 1, - sym_comment, - ACTIONS(2138), 13, - anon_sym_STAR, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, anon_sym_GT_GT, + ACTIONS(5164), 1, anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(6041), 1, + anon_sym_RPAREN, + STATE(2305), 1, + sym_type_arguments, + STATE(2773), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + STATE(6057), 1, + aux_sym_array_repeat1, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2190), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74083] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2774), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77860] = 6, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5658), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [74198] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2823), 1, + ACTIONS(5551), 1, + anon_sym_is, + STATE(2775), 1, sym_comment, - ACTIONS(2140), 13, + ACTIONS(5004), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279326,7 +278734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 28, + ACTIONS(5006), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279355,67 +278763,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77918] = 22, + anon_sym_extends, + [74257] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1014), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(2824), 1, + ACTIONS(6043), 1, + anon_sym_static, + ACTIONS(6045), 1, + anon_sym_readonly, + ACTIONS(6047), 1, + anon_sym_abstract, + STATE(2776), 1, sym_comment, - STATE(3627), 1, + STATE(3611), 1, + sym_accessibility_modifier, + STATE(3666), 1, sym_override_modifier, - STATE(4691), 1, + STATE(4309), 1, sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(4683), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(992), 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(2989), 18, + ACTIONS(4505), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, + anon_sym_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, @@ -279423,47 +278830,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78008] = 12, + [74342] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5057), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5063), 1, - anon_sym_extends, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5989), 1, - anon_sym_COLON, - STATE(2825), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6049), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2777), 1, sym_comment, - ACTIONS(5060), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6035), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5051), 11, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5613), 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(5055), 22, + ACTIONS(5615), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -279479,78 +278889,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, - [78078] = 14, + anon_sym_implements, + [74417] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(6139), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5899), 1, + anon_sym_AMP_AMP, + ACTIONS(5901), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5903), 1, + anon_sym_GT_GT, + ACTIONS(5907), 1, + anon_sym_AMP, + ACTIONS(5909), 1, + anon_sym_CARET, + ACTIONS(5911), 1, + anon_sym_PIPE, + ACTIONS(5915), 1, + anon_sym_PERCENT, + ACTIONS(5917), 1, + anon_sym_STAR_STAR, + ACTIONS(5919), 1, anon_sym_LT, - STATE(2742), 1, + ACTIONS(5927), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5929), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(2826), 1, + STATE(2778), 1, sym_comment, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5759), 12, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5905), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5913), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5761), 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(5925), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5561), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5921), 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, - [78152] = 5, + [74532] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2827), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6052), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2779), 1, sym_comment, - ACTIONS(3247), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5569), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -279559,21 +279017,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(3579), 29, - sym__automatic_semicolon, + ACTIONS(5571), 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, @@ -279587,19 +279036,37 @@ 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, - [78208] = 5, + anon_sym_implements, + [74615] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2828), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6055), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(2780), 1, sym_comment, - ACTIONS(3405), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279610,21 +279077,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(3569), 29, - sym__automatic_semicolon, + ACTIONS(5586), 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, @@ -279638,50 +279097,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [78264] = 12, + anon_sym_implements, + [74692] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3377), 1, - anon_sym_QMARK, - ACTIONS(3679), 1, - anon_sym_extends, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_COLON, - STATE(2829), 1, + STATE(2781), 1, sym_comment, - ACTIONS(5078), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6031), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2140), 11, + ACTIONS(4483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 22, + ACTIONS(5088), 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, @@ -279701,192 +279149,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78334] = 34, + anon_sym_extends, + [74748] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(6064), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(6068), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(6084), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(6094), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2830), 1, + STATE(2782), 1, sym_comment, - STATE(5797), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(6062), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5725), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78448] = 34, + [74862] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5477), 1, + ACTIONS(6064), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, + ACTIONS(6068), 1, anon_sym_GT_GT, - ACTIONS(5485), 1, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(5489), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(5493), 1, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, + ACTIONS(6084), 1, anon_sym_LT, - ACTIONS(5505), 1, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, + ACTIONS(6094), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2831), 1, + STATE(2783), 1, sym_comment, - STATE(5797), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + ACTIONS(5601), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5475), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5491), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5706), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5499), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78562] = 8, + [74976] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, - anon_sym_AMP, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6146), 1, - anon_sym_extends, - STATE(2832), 1, + STATE(2784), 1, sym_comment, - ACTIONS(5029), 11, + ACTIONS(5046), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5031), 28, + ACTIONS(5048), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279915,95 +279360,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78624] = 35, + anon_sym_extends, + [75032] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, + ACTIONS(5649), 1, + anon_sym_EQ, + STATE(2785), 1, + sym_comment, + ACTIONS(5647), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5429), 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(5651), 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, - ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5465), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(6051), 1, + [75090] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2786), 1, + sym_comment, + ACTIONS(5397), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6071), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5399), 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, - ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - ACTIONS(6148), 1, - anon_sym_SEMI, - ACTIONS(6150), 1, - sym__automatic_semicolon, - STATE(2742), 1, - sym_type_arguments, - STATE(2833), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [75146] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5215), 1, + anon_sym_LBRACK, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(5349), 1, + anon_sym_QMARK, + ACTIONS(6005), 1, + anon_sym_COLON, + STATE(2787), 1, + sym_comment, + ACTIONS(5218), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6015), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5209), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5213), 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(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78740] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75216] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2834), 1, + STATE(2788), 1, sym_comment, - ACTIONS(4969), 13, + ACTIONS(5337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280017,7 +279543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 29, + ACTIONS(5339), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280047,27 +279573,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78796] = 11, + [75272] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1056), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(2789), 1, + sym_comment, + STATE(3620), 1, + sym_override_modifier, + STATE(4658), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, anon_sym_LPAREN, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(6061), 1, + anon_sym_COLON, anon_sym_LT, - STATE(2742), 1, - sym_type_arguments, - STATE(2835), 1, + anon_sym_QMARK, + ACTIONS(2996), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75362] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2790), 1, sym_comment, - STATE(5719), 1, - sym_optional_chain, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5792), 12, + ACTIONS(5327), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280078,12 +279659,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(5794), 23, + ACTIONS(5329), 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, @@ -280103,15 +279689,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, - [78864] = 5, + anon_sym_extends, + [75418] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2836), 1, + STATE(2791), 1, sym_comment, - ACTIONS(5017), 13, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280125,7 +279713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5019), 29, + ACTIONS(5286), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280155,14 +279743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78920] = 5, + [75474] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2837), 1, + STATE(2792), 1, sym_comment, - ACTIONS(5071), 13, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280176,7 +279764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5073), 29, + ACTIONS(5286), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280206,14 +279794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78976] = 5, + [75530] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2838), 1, + STATE(2793), 1, sym_comment, - ACTIONS(4977), 13, + ACTIONS(5284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280227,7 +279815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4979), 29, + ACTIONS(5286), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280257,16 +279845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79032] = 6, + [75586] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6152), 1, - anon_sym_LBRACK, - STATE(2839), 1, + STATE(2794), 1, sym_comment, - ACTIONS(5065), 13, + ACTIONS(5243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280280,7 +279866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5067), 28, + ACTIONS(5245), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280289,6 +279875,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, @@ -280309,14 +279896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79090] = 5, + [75642] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2840), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(5243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280330,7 +279917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5015), 29, + ACTIONS(5245), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280360,18 +279947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79146] = 6, + [75698] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6158), 1, - sym_regex_flags, - STATE(2841), 1, + STATE(2796), 1, sym_comment, - ACTIONS(6154), 16, + ACTIONS(5243), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -280384,17 +279968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6156), 25, + ACTIONS(5245), 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, @@ -280409,17 +279992,20 @@ 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, - [79204] = 5, + anon_sym_satisfies, + anon_sym_extends, + [75754] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2842), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(5034), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280433,7 +280019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5015), 29, + ACTIONS(5036), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280463,14 +280049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79260] = 5, + [75810] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2843), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5065), 13, + ACTIONS(5020), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280484,7 +280070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5067), 29, + ACTIONS(5022), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280514,43 +280100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79316] = 18, + [75866] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6160), 1, - anon_sym_LT, - STATE(2742), 1, - sym_type_arguments, - STATE(2844), 1, + STATE(2799), 1, sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, + ACTIONS(5034), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -280559,12 +280118,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(5616), 16, + ACTIONS(5036), 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, @@ -280578,14 +280146,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79398] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [75922] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2845), 1, + STATE(2800), 1, sym_comment, - ACTIONS(4963), 13, + ACTIONS(5034), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280599,7 +280172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 29, + ACTIONS(5036), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280629,16 +280202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79454] = 6, + [75978] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6163), 1, - anon_sym_DOT, - STATE(2846), 1, + STATE(2801), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5038), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280652,7 +280223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5294), 28, + ACTIONS(5040), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280662,6 +280233,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, @@ -280681,14 +280253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79512] = 5, + [76034] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2847), 1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(6084), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2802), 1, sym_comment, - ACTIONS(5302), 13, + STATE(5714), 1, + sym_optional_chain, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280699,17 +280284,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(5304), 29, + ACTIONS(5637), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -280729,17 +280309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79568] = 5, + [76102] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2848), 1, + STATE(2803), 1, sym_comment, - ACTIONS(5009), 13, + ACTIONS(5020), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280753,7 +280331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5011), 29, + ACTIONS(5022), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280783,14 +280361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79624] = 5, + [76158] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2849), 1, + STATE(2804), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(2149), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280804,7 +280384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5015), 29, + ACTIONS(2155), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280833,15 +280413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79680] = 5, + [76216] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2850), 1, + STATE(2805), 1, sym_comment, - ACTIONS(5159), 13, + ACTIONS(5020), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280855,7 +280434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5161), 29, + ACTIONS(5022), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280885,14 +280464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79736] = 5, + [76272] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2851), 1, + STATE(2806), 1, sym_comment, - ACTIONS(5247), 13, + ACTIONS(5016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280906,7 +280485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 29, + ACTIONS(5018), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280936,14 +280515,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79792] = 5, + [76328] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2852), 1, + STATE(2807), 1, sym_comment, - ACTIONS(5159), 13, + ACTIONS(5016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280957,7 +280536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5161), 29, + ACTIONS(5018), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280987,41 +280566,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79848] = 8, + [76384] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5011), 1, - anon_sym_extends, - STATE(2853), 1, + STATE(2808), 1, sym_comment, - ACTIONS(5544), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, + ACTIONS(5018), 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, @@ -281041,58 +280616,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79910] = 17, + anon_sym_extends, + [76440] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6165), 1, - anon_sym_static, - ACTIONS(6167), 1, - anon_sym_readonly, - ACTIONS(6169), 1, - anon_sym_abstract, - STATE(2854), 1, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6098), 1, + anon_sym_RBRACE, + STATE(2809), 1, sym_comment, - STATE(3661), 1, + STATE(3620), 1, sym_override_modifier, - STATE(4188), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 20, + ACTIONS(2996), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -281104,86 +280685,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79990] = 11, + [76530] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, - anon_sym_extends, - ACTIONS(5863), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(6176), 1, - anon_sym_RPAREN, - STATE(2855), 1, - sym_comment, - ACTIONS(5866), 2, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6171), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6173), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4218), 11, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2810), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5539), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 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(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [80058] = 11, + [76644] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4338), 1, - anon_sym_EQ, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(5544), 1, - anon_sym_LBRACK, - STATE(2856), 1, + STATE(2811), 1, sym_comment, - ACTIONS(4341), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5011), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5547), 2, + ACTIONS(5874), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 11, + ACTIONS(5871), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5044), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4225), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281195,7 +280796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4229), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -281218,167 +280819,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80126] = 5, + [76706] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2857), 1, - sym_comment, - ACTIONS(5159), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5161), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5450), 1, anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, anon_sym_AMP_AMP, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, anon_sym_PERCENT, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2812), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [80182] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2858), 1, - sym_comment, - ACTIONS(5163), 13, + ACTIONS(5533), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 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(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [80238] = 5, + [76820] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2859), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2813), 1, sym_comment, - ACTIONS(5318), 13, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5063), 29, + ACTIONS(5420), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80294] = 5, + [76908] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2860), 1, + STATE(2814), 1, sym_comment, - ACTIONS(5362), 13, + ACTIONS(5223), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281392,7 +280987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5364), 29, + ACTIONS(5225), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281422,89 +281017,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80350] = 6, + [76964] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, - STATE(2861), 1, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2815), 1, sym_comment, - ACTIONS(5366), 12, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5368), 29, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6100), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [80408] = 5, + [77078] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2862), 1, + ACTIONS(3384), 1, + anon_sym_QMARK, + ACTIONS(3612), 1, + anon_sym_extends, + ACTIONS(5008), 1, + anon_sym_LBRACK, + ACTIONS(6033), 1, + anon_sym_COLON, + STATE(2816), 1, sym_comment, - ACTIONS(5045), 13, + ACTIONS(5011), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5993), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2149), 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(5043), 29, - sym__automatic_semicolon, + ACTIONS(2155), 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, @@ -281524,123 +281155,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80464] = 5, + [77148] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2863), 1, - sym_comment, - ACTIONS(5378), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5380), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5450), 1, anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, anon_sym_AMP_AMP, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, anon_sym_PERCENT, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2817), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [80520] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2864), 1, - sym_comment, - ACTIONS(5382), 13, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5384), 29, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6102), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [80576] = 8, + [77262] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, + ACTIONS(6104), 1, anon_sym_AMP, - ACTIONS(6144), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6146), 1, + ACTIONS(6108), 1, anon_sym_extends, - STATE(2865), 1, + STATE(2818), 1, sym_comment, - ACTIONS(5386), 11, + ACTIONS(5130), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281652,7 +281260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5388), 28, + ACTIONS(5132), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281681,70 +281289,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80638] = 8, + [77324] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5067), 1, - anon_sym_extends, - ACTIONS(6152), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, anon_sym_LBRACK, - STATE(2866), 1, - sym_comment, - ACTIONS(5065), 2, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(5390), 11, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2819), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5645), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5392), 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_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [80700] = 6, + [77438] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6180), 1, - anon_sym_extends, - STATE(2867), 1, + STATE(2820), 1, sym_comment, - ACTIONS(5394), 13, + ACTIONS(5074), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281758,7 +281390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5396), 28, + ACTIONS(5076), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281787,16 +281419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80758] = 6, + anon_sym_extends, + [77494] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6152), 1, - anon_sym_LBRACK, - STATE(2868), 1, + STATE(2821), 1, sym_comment, - ACTIONS(5400), 13, + ACTIONS(5046), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281810,7 +281441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5402), 28, + ACTIONS(5048), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281819,6 +281450,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, @@ -281839,14 +281471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80816] = 5, + [77550] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2869), 1, + STATE(2822), 1, sym_comment, - ACTIONS(5163), 13, + ACTIONS(5046), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281860,7 +281492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 29, + ACTIONS(5048), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281890,37 +281522,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80872] = 5, + [77606] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2870), 1, + ACTIONS(4311), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_extends, + STATE(2823), 1, sym_comment, - ACTIONS(5163), 13, + ACTIONS(5871), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(5165), 29, + ACTIONS(4229), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -281940,15 +281577,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80928] = 5, + [77670] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2871), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2824), 1, sym_comment, - ACTIONS(5231), 13, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5639), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77784] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5543), 1, + sym__automatic_semicolon, + STATE(2825), 1, + sym_comment, + ACTIONS(2147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281962,8 +281682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5233), 29, - sym__automatic_semicolon, + ACTIONS(2169), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -281991,15 +281710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80984] = 5, + [77844] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2872), 1, + STATE(2826), 1, sym_comment, - ACTIONS(5282), 13, + ACTIONS(5042), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282013,7 +281731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5284), 29, + ACTIONS(5044), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282043,128 +281761,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [81040] = 34, + [77900] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(6110), 1, anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2873), 1, + STATE(2827), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6182), 2, + ACTIONS(5420), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81154] = 16, + anon_sym_satisfies, + [77978] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1058), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(2828), 1, + sym_comment, + STATE(3620), 1, + sym_override_modifier, + STATE(4658), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78068] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6184), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(6186), 1, + ACTIONS(6115), 1, anon_sym_async, - ACTIONS(6190), 1, - anon_sym_abstract, - STATE(2874), 1, + ACTIONS(6117), 1, + anon_sym_readonly, + STATE(2829), 1, sym_comment, - STATE(3909), 1, + STATE(3637), 1, + sym_override_modifier, + STATE(3953), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6188), 2, + ACTIONS(6119), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, + ACTIONS(992), 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(4498), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282172,12 +281944,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, @@ -282185,113 +281955,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81232] = 15, + [78150] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(6192), 1, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, anon_sym_LT, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2875), 1, + STATE(2830), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5680), 12, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5682), 18, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 8, 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_QMARK_QMARK, + anon_sym_satisfies, + [78252] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, anon_sym_PERCENT, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6084), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2831), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(5420), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [81308] = 18, + [78356] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6184), 1, + ACTIONS(6096), 1, anon_sym_STAR, - ACTIONS(6186), 1, - anon_sym_async, - ACTIONS(6195), 1, - anon_sym_readonly, - STATE(2876), 1, + ACTIONS(6121), 1, + anon_sym_RBRACE, + STATE(2832), 1, sym_comment, - STATE(3635), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3909), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6188), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 18, + ACTIONS(2996), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282310,236 +282172,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81390] = 34, + [78446] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(4279), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_extends, + STATE(2833), 1, + sym_comment, + ACTIONS(5871), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(4229), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5411), 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, + [78510] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6051), 1, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(5436), 1, anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2742), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2877), 1, + STATE(2834), 1, sym_comment, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(6123), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81504] = 35, + [78624] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(6110), 1, anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - ACTIONS(6197), 1, - anon_sym_SEMI, - ACTIONS(6199), 1, - sym__automatic_semicolon, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2878), 1, + STATE(2835), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81620] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_extends, - STATE(2879), 1, - sym_comment, - ACTIONS(5544), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, - anon_sym_STAR, + ACTIONS(5422), 8, 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_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(5420), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - [81684] = 8, + [78708] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, + ACTIONS(6104), 1, anon_sym_AMP, - ACTIONS(6144), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6146), 1, + ACTIONS(6108), 1, anon_sym_extends, - STATE(2880), 1, + STATE(2836), 1, sym_comment, - ACTIONS(5261), 11, + ACTIONS(5078), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282551,7 +282397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 28, + ACTIONS(5080), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282580,32 +282426,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81746] = 8, + [78770] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, - anon_sym_AMP, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6146), 1, - anon_sym_extends, - STATE(2881), 1, + STATE(2837), 1, sym_comment, - ACTIONS(5257), 11, + ACTIONS(5078), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5259), 28, + ACTIONS(5080), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282634,147 +282476,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81808] = 34, + anon_sym_extends, + [78826] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5625), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, + STATE(2838), 1, + sym_comment, + STATE(3940), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78906] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2839), 1, + sym_comment, + ACTIONS(5807), 2, anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2882), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5676), 2, + ACTIONS(5804), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5367), 4, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6047), 2, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5770), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5772), 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(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81922] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78968] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5091), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6201), 1, - anon_sym_RBRACE, - STATE(2883), 1, + STATE(2840), 1, sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, + STATE(4771), 1, sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(5629), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + ACTIONS(5989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -282782,94 +282656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82012] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2884), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5678), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82126] = 5, + [79046] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2885), 1, + STATE(2841), 1, sym_comment, - ACTIONS(5339), 13, + ACTIONS(5118), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282883,7 +282677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5341), 29, + ACTIONS(5120), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282913,14 +282707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82182] = 5, + [79102] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2886), 1, + STATE(2842), 1, sym_comment, - ACTIONS(5306), 13, + ACTIONS(5082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282934,7 +282728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 29, + ACTIONS(5084), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282964,39 +282758,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82238] = 8, + [79158] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6203), 1, - sym__automatic_semicolon, - STATE(2887), 1, + ACTIONS(6104), 1, + anon_sym_AMP, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6108), 1, + anon_sym_extends, + STATE(2843), 1, sym_comment, - ACTIONS(2190), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2140), 13, + ACTIONS(5090), 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(2146), 25, + ACTIONS(5092), 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, @@ -283018,15 +282812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82300] = 5, + [79220] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2888), 1, + ACTIONS(6129), 1, + sym_regex_flags, + STATE(2844), 1, sym_comment, - ACTIONS(5021), 13, + ACTIONS(6125), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -283039,16 +282836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5023), 29, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6127), 25, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283063,20 +282861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [82356] = 5, + [79278] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2889), 1, + STATE(2845), 1, sym_comment, - ACTIONS(5025), 13, + ACTIONS(4974), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283090,7 +282885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5027), 29, + ACTIONS(4976), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283120,14 +282915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82412] = 5, + [79334] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2890), 1, + ACTIONS(6131), 1, + anon_sym_LBRACK, + STATE(2846), 1, sym_comment, - ACTIONS(5025), 13, + ACTIONS(5050), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283141,7 +282938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5027), 29, + ACTIONS(5052), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283150,7 +282947,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, @@ -283171,14 +282967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82468] = 5, + [79392] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2891), 1, + STATE(2847), 1, sym_comment, - ACTIONS(5025), 13, + ACTIONS(5050), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283192,7 +282988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5027), 29, + ACTIONS(5052), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283222,14 +283018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82524] = 5, + [79448] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2892), 1, + STATE(2848), 1, sym_comment, - ACTIONS(5081), 13, + ACTIONS(5004), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283243,7 +283039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5083), 29, + ACTIONS(5006), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283273,16 +283069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82580] = 6, + [79504] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - STATE(2893), 1, + ACTIONS(6133), 1, + anon_sym_DOT, + STATE(2849), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283296,7 +283092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 28, + ACTIONS(5333), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283306,7 +283102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -283325,14 +283120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82638] = 5, + anon_sym_extends, + [79562] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2894), 1, + STATE(2850), 1, sym_comment, - ACTIONS(5081), 13, + ACTIONS(5345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283346,7 +283142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5083), 29, + ACTIONS(5347), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283376,14 +283172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82694] = 5, + [79618] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2895), 1, + STATE(2851), 1, sym_comment, - ACTIONS(5081), 13, + ACTIONS(5094), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283397,7 +283193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5083), 29, + ACTIONS(5096), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283427,14 +283223,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82750] = 5, + [79674] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2896), 1, + STATE(2852), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(5098), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283448,7 +283244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 29, + ACTIONS(5100), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283478,14 +283274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82806] = 5, + [79730] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2897), 1, + ACTIONS(5321), 1, + anon_sym_extends, + STATE(2853), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283499,7 +283297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 29, + ACTIONS(5325), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283528,95 +283326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [82862] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2898), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5668), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82976] = 5, + [79788] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2899), 1, + STATE(2854), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(5102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283630,7 +283347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 29, + ACTIONS(5104), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283660,14 +283377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83032] = 5, + [79844] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2900), 1, + STATE(2855), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283681,7 +283398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5269), 29, + ACTIONS(5108), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283711,188 +283428,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83088] = 34, + [79900] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, - anon_sym_AMP_AMP, - ACTIONS(5479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, - anon_sym_PERCENT, - ACTIONS(5495), 1, - anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2901), 1, + ACTIONS(5044), 1, + anon_sym_extends, + STATE(2856), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5501), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6205), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83202] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, + ACTIONS(5871), 2, anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(2902), 1, - sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83292] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - STATE(2903), 1, - sym_comment, - STATE(3239), 1, - sym_arguments, - ACTIONS(5139), 13, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(5141), 27, + ACTIONS(4229), 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, @@ -283912,400 +283482,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83352] = 34, + [79962] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2904), 1, + STATE(2857), 1, sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, + ACTIONS(5102), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83466] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2905), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5513), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83580] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - STATE(2742), 1, - sym_type_arguments, - STATE(2906), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 14, + ACTIONS(5104), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_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, - [83668] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6209), 1, - anon_sym_STAR, - ACTIONS(6211), 1, - anon_sym_async, - ACTIONS(6213), 1, - anon_sym_readonly, - STATE(2907), 1, - sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(3981), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6215), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83750] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2908), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 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(6217), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83864] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [80018] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, + ACTIONS(5006), 1, anon_sym_extends, - ACTIONS(5863), 1, + ACTIONS(5839), 1, anon_sym_LBRACK, - ACTIONS(6223), 1, + ACTIONS(6140), 1, anon_sym_RPAREN, - STATE(2909), 1, + STATE(2858), 1, sym_comment, - ACTIONS(5866), 2, + ACTIONS(5842), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6219), 2, + ACTIONS(6135), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(6221), 2, + ACTIONS(6137), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4218), 11, + ACTIONS(4225), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284317,7 +283567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4229), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -284340,106 +283590,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83932] = 16, + [80086] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(5871), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6226), 1, - anon_sym_LT, - STATE(2742), 1, - sym_type_arguments, - STATE(2910), 1, + STATE(2859), 1, sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 12, + ACTIONS(4370), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5044), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(5515), 17, - sym__automatic_semicolon, + ACTIONS(4229), 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, - [84010] = 11, + [80154] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, - anon_sym_extends, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(6231), 1, - anon_sym_RPAREN, - STATE(2911), 1, + STATE(2860), 1, sym_comment, - ACTIONS(5866), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6171), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6229), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4218), 11, + ACTIONS(5106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5108), 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, @@ -284459,40 +283697,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84078] = 7, + anon_sym_extends, + [80210] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2912), 1, + STATE(2861), 1, sym_comment, - ACTIONS(5045), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5043), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4218), 11, + ACTIONS(5110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5112), 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, @@ -284512,256 +283748,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84138] = 28, + anon_sym_extends, + [80266] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - STATE(2742), 1, - sym_type_arguments, - STATE(2913), 1, + STATE(2862), 1, sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5349), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 8, + ACTIONS(5221), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [84240] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5429), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - STATE(2742), 1, - sym_type_arguments, - STATE(2914), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 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(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 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, - [84344] = 19, + anon_sym_extends, + [80322] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6226), 1, - anon_sym_LT, - STATE(2742), 1, - sym_type_arguments, - STATE(2915), 1, + STATE(2863), 1, sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5351), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 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(5515), 16, + ACTIONS(5353), 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, - [84428] = 9, + anon_sym_extends, + [80378] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5057), 1, - anon_sym_LBRACK, - STATE(2916), 1, - sym_comment, - ACTIONS(5063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5060), 3, - anon_sym_GT, + ACTIONS(6104), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5051), 10, + STATE(2864), 1, + sym_comment, + ACTIONS(5359), 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(5055), 25, + ACTIONS(5361), 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, @@ -284781,32 +283902,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84492] = 8, + anon_sym_extends, + [80436] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, - anon_sym_AMP, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6146), 1, - anon_sym_extends, - STATE(2917), 1, + STATE(2865), 1, sym_comment, - ACTIONS(5167), 11, + ACTIONS(5207), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 28, + ACTIONS(5205), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284835,14 +283953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84554] = 5, + anon_sym_extends, + [80492] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2918), 1, + STATE(2866), 1, sym_comment, - ACTIONS(5167), 13, + ACTIONS(5365), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284856,7 +283975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 29, + ACTIONS(5367), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284886,14 +284005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84610] = 5, + [80548] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2919), 1, + STATE(2867), 1, sym_comment, - ACTIONS(5147), 13, + ACTIONS(5369), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284907,7 +284026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5149), 29, + ACTIONS(5371), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284937,20 +284056,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84666] = 8, + [80604] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, + ACTIONS(6104), 1, anon_sym_AMP, - ACTIONS(6144), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6146), 1, + ACTIONS(6108), 1, anon_sym_extends, - STATE(2920), 1, + STATE(2868), 1, sym_comment, - ACTIONS(5298), 11, + ACTIONS(5375), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284962,7 +284081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5300), 28, + ACTIONS(5377), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284991,29 +284110,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84728] = 11, + [80666] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4367), 1, - anon_sym_EQ, - ACTIONS(5544), 1, + ACTIONS(5052), 1, + anon_sym_extends, + ACTIONS(6131), 1, anon_sym_LBRACK, - STATE(2921), 1, + STATE(2869), 1, sym_comment, - ACTIONS(4370), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5011), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5547), 2, + ACTIONS(5050), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 11, + ACTIONS(5379), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285025,10 +284136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5381), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -285048,42 +284164,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84796] = 9, + [80728] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5075), 1, - anon_sym_LBRACK, - STATE(2922), 1, - sym_comment, - ACTIONS(3679), 2, - anon_sym_COMMA, + ACTIONS(6144), 1, anon_sym_extends, - ACTIONS(5078), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2140), 10, + STATE(2870), 1, + sym_comment, + ACTIONS(5387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 25, + ACTIONS(5389), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -285103,14 +284216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84860] = 5, + [80786] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2923), 1, + ACTIONS(6131), 1, + anon_sym_LBRACK, + STATE(2871), 1, sym_comment, - ACTIONS(5143), 13, + ACTIONS(5393), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285124,7 +284239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5145), 29, + ACTIONS(5395), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285133,7 +284248,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, @@ -285154,14 +284268,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84916] = 5, + [80844] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2924), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, + anon_sym_AMP_AMP, + ACTIONS(5158), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2872), 1, sym_comment, - ACTIONS(5235), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5142), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5162), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6007), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80958] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2873), 1, + sym_comment, + ACTIONS(5114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285175,7 +284369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 29, + ACTIONS(5116), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285205,16 +284399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84972] = 6, + [81014] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5137), 1, - anon_sym_extends, - STATE(2925), 1, + STATE(2874), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(5110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285228,7 +284420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 28, + ACTIONS(5112), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285257,14 +284449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85030] = 5, + anon_sym_extends, + [81070] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2926), 1, + STATE(2875), 1, sym_comment, - ACTIONS(5039), 13, + ACTIONS(5401), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285278,7 +284471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5041), 29, + ACTIONS(5403), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285308,14 +284501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85086] = 5, + [81126] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2927), 1, + STATE(2876), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285329,7 +284522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5007), 29, + ACTIONS(5116), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285359,94 +284552,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85142] = 34, + [81182] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(2877), 1, + sym_comment, + ACTIONS(5122), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5124), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5481), 1, - anon_sym_GT_GT, - ACTIONS(5485), 1, - anon_sym_AMP, - ACTIONS(5487), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5489), 1, - anon_sym_PIPE, - ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5497), 1, - anon_sym_LT, - ACTIONS(5505), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5507), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2928), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5471), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [81238] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2878), 1, + sym_comment, + ACTIONS(5126), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5475), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5483), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5491), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5501), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5503), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6234), 2, + ACTIONS(5128), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5499), 3, + 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, - [85256] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [81294] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2929), 1, + STATE(2879), 1, sym_comment, - ACTIONS(5039), 13, + ACTIONS(5122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285460,7 +284675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5041), 29, + ACTIONS(5124), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285490,14 +284705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85312] = 5, + [81350] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2930), 1, + STATE(2880), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285511,7 +284726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5007), 29, + ACTIONS(5128), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285541,14 +284756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85368] = 5, + [81406] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2931), 1, + STATE(2881), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(5134), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285562,7 +284777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 29, + ACTIONS(5136), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285592,14 +284807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85424] = 5, + [81462] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2932), 1, + STATE(2882), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(5138), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285613,7 +284828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 29, + ACTIONS(5140), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285643,14 +284858,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85480] = 5, + [81518] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5625), 1, + anon_sym_LBRACK, + ACTIONS(5845), 1, + anon_sym_STAR, + ACTIONS(5849), 1, + anon_sym_async, + ACTIONS(6146), 1, + anon_sym_abstract, + STATE(2883), 1, + sym_comment, + STATE(3898), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5853), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81596] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2933), 1, + STATE(2884), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(5259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285664,7 +284941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 29, + ACTIONS(5261), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285694,209 +284971,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85536] = 34, + [81652] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(971), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(2885), 1, + sym_comment, + STATE(3620), 1, + sym_override_modifier, + STATE(4658), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81742] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5423), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2886), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5877), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81856] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6051), 1, + ACTIONS(5426), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(5432), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(5436), 1, anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(5660), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5670), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(5672), 1, sym__ternary_qmark, - STATE(2742), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2934), 1, + STATE(2887), 1, sym_comment, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5604), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, + ACTIONS(5418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5424), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + ACTIONS(5834), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5438), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85650] = 5, + [81970] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2935), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2888), 1, sym_comment, - ACTIONS(5243), 13, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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, + [82066] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(6068), 1, anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2889), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5422), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 29, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [82164] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2890), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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, + [82264] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6110), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2891), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5420), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_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, - [85706] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(6089), 1, - anon_sym_COMMA, - ACTIONS(6238), 1, - anon_sym_RBRACE, - STATE(2936), 1, - sym_comment, - STATE(5634), 1, - aux_sym_object_pattern_repeat1, - STATE(7169), 1, - sym__property_name, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - STATE(5628), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6236), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [85788] = 5, + [82346] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2937), 1, + ACTIONS(6148), 1, + sym__automatic_semicolon, + STATE(2892), 1, sym_comment, - ACTIONS(5001), 13, + ACTIONS(2169), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2149), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285910,14 +285507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5003), 29, - sym__automatic_semicolon, + ACTIONS(2155), 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, @@ -285939,15 +285533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [85844] = 5, + [82408] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2938), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5127), 13, + ACTIONS(3384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285961,7 +285554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5129), 29, + ACTIONS(3612), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285991,16 +285584,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85900] = 5, + [82464] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2939), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6110), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2894), 1, sym_comment, - ACTIONS(5001), 13, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -286009,47 +285631,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5003), 29, + ACTIONS(5420), 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, + [82548] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + STATE(2764), 1, + sym_type_arguments, + STATE(2895), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_extends, - [85956] = 5, + [82640] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6150), 1, + anon_sym_static, + ACTIONS(6152), 1, + anon_sym_readonly, + ACTIONS(6154), 1, + anon_sym_abstract, + STATE(2896), 1, + sym_comment, + STATE(3648), 1, + sym_override_modifier, + STATE(4283), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82720] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2940), 1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + STATE(2897), 1, sym_comment, - ACTIONS(5127), 13, + STATE(3140), 1, + sym_arguments, + ACTIONS(5341), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286063,13 +285806,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5129), 29, + ACTIONS(5343), 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, @@ -286092,15 +285834,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86012] = 5, + [82780] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, + anon_sym_STAR, + ACTIONS(6158), 1, + anon_sym_async, + ACTIONS(6162), 1, + anon_sym_abstract, + STATE(2898), 1, + sym_comment, + STATE(3929), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6160), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82858] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2941), 1, + STATE(2899), 1, sym_comment, - ACTIONS(5111), 13, + ACTIONS(4461), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286114,7 +285917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5113), 29, + ACTIONS(5405), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286144,14 +285947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86068] = 5, + [82914] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2942), 1, + ACTIONS(5211), 1, + anon_sym_EQ, + STATE(2900), 1, sym_comment, - ACTIONS(5107), 13, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286165,7 +285970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 29, + ACTIONS(5213), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286194,229 +285999,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86124] = 26, + [82972] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6075), 1, - anon_sym_AMP, - STATE(2742), 1, - sym_type_arguments, - STATE(2943), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 9, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5144), 1, anon_sym_as, - anon_sym_SEMI, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [86222] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(6051), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(6057), 1, + ACTIONS(5164), 1, + anon_sym_AMP, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(6059), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - STATE(2742), 1, + ACTIONS(5184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(2944), 1, + STATE(2901), 1, sym_comment, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6047), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 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, - [86322] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6226), 1, - anon_sym_LT, - STATE(2742), 1, - sym_type_arguments, - STATE(2945), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(3163), 2, + ACTIONS(5819), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 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(5515), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5178), 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, - [86404] = 6, + [83086] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2946), 1, + STATE(2902), 1, sym_comment, - ACTIONS(5137), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5347), 13, + ACTIONS(4459), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286430,12 +286100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 25, + ACTIONS(5407), 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, @@ -286456,45 +286129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86462] = 19, + anon_sym_extends, + [83142] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6226), 1, - anon_sym_LT, - STATE(2742), 1, - sym_type_arguments, - STATE(2947), 1, + STATE(2903), 1, sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 11, + ACTIONS(4457), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -286503,62 +286148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 15, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [86546] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5057), 1, - anon_sym_LBRACK, - ACTIONS(5063), 1, - anon_sym_extends, - ACTIONS(6240), 1, - anon_sym_RPAREN, - STATE(2948), 1, - sym_comment, - ACTIONS(5053), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5060), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5989), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5051), 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(5055), 22, + ACTIONS(5409), 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, @@ -286578,43 +286180,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86614] = 18, + anon_sym_extends, + [83198] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6156), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(6158), 1, anon_sym_async, - ACTIONS(6243), 1, + ACTIONS(6164), 1, anon_sym_readonly, - STATE(2949), 1, + STATE(2904), 1, sym_comment, - STATE(3619), 1, + STATE(3635), 1, sym_override_modifier, - STATE(3904), 1, + STATE(3911), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6097), 2, + ACTIONS(6160), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -286623,7 +286226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 18, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286642,111 +286245,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86696] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, + [83280] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6245), 1, - anon_sym_RBRACE, - STATE(2950), 1, - sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, - sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86786] = 18, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + ACTIONS(6166), 1, + anon_sym_SEMI, + ACTIONS(6168), 1, + sym__automatic_semicolon, + STATE(2764), 1, + sym_type_arguments, + STATE(2905), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83396] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6247), 1, + ACTIONS(6170), 1, anon_sym_STAR, - ACTIONS(6249), 1, + ACTIONS(6172), 1, anon_sym_async, - ACTIONS(6251), 1, + ACTIONS(6174), 1, anon_sym_readonly, - STATE(2951), 1, + STATE(2906), 1, sym_comment, - STATE(3621), 1, + STATE(3633), 1, sym_override_modifier, - STATE(3969), 1, + STATE(3947), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6253), 2, + ACTIONS(6176), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -286755,7 +286371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4498), 18, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286774,575 +286390,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86868] = 34, + [83478] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(2907), 1, + sym_comment, + ACTIONS(5321), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5323), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5325), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2952), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6205), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86982] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83536] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(6178), 1, anon_sym_LT, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2953), 1, + STATE(2908), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5517), 5, + ACTIONS(5613), 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(5515), 11, + ACTIONS(5615), 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, anon_sym_EQ_EQ_EQ, anon_sym_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, - [87074] = 34, + [83610] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, anon_sym_AMP_AMP, - ACTIONS(5187), 1, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, + ACTIONS(6068), 1, anon_sym_GT_GT, - ACTIONS(5193), 1, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(5195), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(5197), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(5201), 1, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(5203), 1, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - ACTIONS(5205), 1, + ACTIONS(6084), 1, anon_sym_LT, - ACTIONS(5213), 1, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, + ACTIONS(6094), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2954), 1, + STATE(2909), 1, sym_comment, - STATE(5797), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5171), 2, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5561), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5191), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5199), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5209), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6003), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5207), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87188] = 30, + [83724] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(6064), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - STATE(2742), 1, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + STATE(2764), 1, sym_type_arguments, - STATE(2955), 1, + STATE(2910), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 6, + ACTIONS(5420), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_SEMI, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [87294] = 34, + [83830] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(6064), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(6094), 1, sym__ternary_qmark, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2956), 1, + STATE(2911), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5600), 2, + ACTIONS(5690), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6047), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87408] = 34, + [83944] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(6181), 1, anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2957), 1, + STATE(2912), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5525), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5569), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5571), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87522] = 35, + [84026] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(6064), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(6094), 1, sym__ternary_qmark, - ACTIONS(6255), 1, - anon_sym_SEMI, - ACTIONS(6257), 1, - sym__automatic_semicolon, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2958), 1, + STATE(2913), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5545), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87638] = 11, + [84140] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5057), 1, - anon_sym_LBRACK, - ACTIONS(5063), 1, + ACTIONS(5006), 1, anon_sym_extends, - ACTIONS(6035), 1, + ACTIONS(5839), 1, + anon_sym_LBRACK, + ACTIONS(6186), 1, anon_sym_RPAREN, - STATE(2959), 1, + STATE(2914), 1, sym_comment, - ACTIONS(5053), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5060), 2, + ACTIONS(5842), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5700), 2, + ACTIONS(6135), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6184), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(5051), 11, + ACTIONS(4225), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287354,7 +286916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 22, + ACTIONS(4229), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -287377,109 +286939,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87706] = 34, + [84208] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_EQ, + ACTIONS(5871), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5185), 1, - anon_sym_AMP_AMP, - ACTIONS(5187), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5189), 1, - anon_sym_GT_GT, - ACTIONS(5193), 1, - anon_sym_AMP, - ACTIONS(5195), 1, - anon_sym_CARET, - ACTIONS(5197), 1, - anon_sym_PIPE, - ACTIONS(5201), 1, - anon_sym_PERCENT, - ACTIONS(5203), 1, - anon_sym_STAR_STAR, - ACTIONS(5205), 1, - anon_sym_LT, - ACTIONS(5213), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2960), 1, + STATE(2915), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5181), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5191), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5590), 2, + ACTIONS(4378), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5044), 2, anon_sym_RPAREN, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5207), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87820] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3679), 1, anon_sym_extends, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(6031), 1, - anon_sym_RPAREN, - STATE(2961), 1, - sym_comment, - ACTIONS(2142), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5078), 2, + ACTIONS(5874), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5844), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2140), 11, + ACTIONS(4225), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287491,7 +286973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 22, + ACTIONS(4229), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -287514,341 +286996,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87888] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [84276] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5511), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5215), 1, anon_sym_LBRACK, - ACTIONS(5779), 1, - anon_sym_STAR, - ACTIONS(5783), 1, - anon_sym_async, - ACTIONS(6259), 1, - anon_sym_abstract, - STATE(2962), 1, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6015), 1, + anon_sym_RPAREN, + STATE(2916), 1, sym_comment, - STATE(3929), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5787), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(5211), 2, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [87966] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5218), 2, anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2963), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5523), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, + ACTIONS(5829), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5209), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88080] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5213), 22, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2964), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5519), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88194] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6059), 1, anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2965), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5473), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [88308] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84344] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4979), 1, + ACTIONS(3612), 1, anon_sym_extends, - STATE(2966), 1, + ACTIONS(5008), 1, + anon_sym_LBRACK, + ACTIONS(5993), 1, + anon_sym_RPAREN, + STATE(2917), 1, sym_comment, - ACTIONS(5370), 13, + ACTIONS(2151), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5011), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5622), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2149), 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(5372), 28, - sym__automatic_semicolon, + ACTIONS(2155), 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, @@ -287868,254 +287110,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88366] = 34, + [84412] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(5160), 1, + anon_sym_GT_GT, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(5172), 1, + anon_sym_PERCENT, + ACTIONS(5174), 1, + anon_sym_STAR_STAR, + ACTIONS(5176), 1, + anon_sym_LT, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2742), 1, + STATE(2305), 1, sym_type_arguments, - STATE(2967), 1, + STATE(2918), 1, sym_comment, - STATE(5719), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6261), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3163), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6123), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88480] = 34, + [84526] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, + ACTIONS(6189), 1, anon_sym_LT, - ACTIONS(6071), 1, - anon_sym_AMP_AMP, - ACTIONS(6073), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2968), 1, + STATE(2919), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5670), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(5584), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6055), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88594] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5586), 18, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(5467), 1, - anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, - anon_sym_AMP, - ACTIONS(6077), 1, - anon_sym_CARET, - ACTIONS(6079), 1, - anon_sym_PIPE, - ACTIONS(6081), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, - sym__ternary_qmark, - STATE(2742), 1, - sym_type_arguments, - STATE(2969), 1, - sym_comment, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5527), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6049), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6067), 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(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6063), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [88708] = 5, + anon_sym_satisfies, + [84602] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2970), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + STATE(2920), 1, sym_comment, - ACTIONS(5310), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288129,7 +287274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5312), 29, + ACTIONS(4229), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288158,22 +287303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [88764] = 6, + [84660] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, - anon_sym_AMP, - STATE(2971), 1, + STATE(2921), 1, sym_comment, - ACTIONS(5374), 12, + ACTIONS(3386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -288181,7 +287324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5376), 29, + ACTIONS(3564), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288211,14 +287354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88822] = 5, + [84716] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2972), 1, + STATE(2922), 1, sym_comment, - ACTIONS(5404), 13, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288232,7 +287375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5406), 29, + ACTIONS(5014), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288262,44 +287405,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88878] = 11, + [84772] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3679), 1, - anon_sym_extends, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(6263), 1, - anon_sym_RPAREN, - STATE(2973), 1, + STATE(2923), 1, sym_comment, - ACTIONS(2142), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5078), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5970), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2140), 11, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 22, + ACTIONS(5014), 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, @@ -288319,32 +287455,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88946] = 8, + anon_sym_extends, + [84828] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, - anon_sym_AMP, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6146), 1, - anon_sym_extends, - STATE(2974), 1, + STATE(2924), 1, sym_comment, - ACTIONS(5370), 11, + ACTIONS(4451), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5372), 28, + ACTIONS(5241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288373,16 +287506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89008] = 6, + anon_sym_extends, + [84884] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5328), 1, - anon_sym_DOT, - STATE(2975), 1, + STATE(2925), 1, sym_comment, - ACTIONS(5324), 13, + ACTIONS(4451), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288396,7 +287528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 28, + ACTIONS(5241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288406,6 +287538,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, @@ -288425,14 +287558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89066] = 5, + [84940] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2976), 1, + STATE(2926), 1, sym_comment, - ACTIONS(5151), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288446,7 +287579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5153), 29, + ACTIONS(5239), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288476,82 +287609,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89122] = 8, + [84996] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6144), 1, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6146), 1, - anon_sym_extends, - STATE(2977), 1, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2927), 1, sym_comment, - ACTIONS(5151), 11, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5567), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5153), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85110] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5450), 1, anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, anon_sym_AMP_AMP, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, anon_sym_PERCENT, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2928), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5497), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [89184] = 5, + [85224] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2978), 1, + ACTIONS(6104), 1, + anon_sym_AMP, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6108), 1, + anon_sym_extends, + STATE(2929), 1, sym_comment, - ACTIONS(5358), 13, + ACTIONS(5355), 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(5360), 29, + ACTIONS(5357), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288580,41 +287823,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [89240] = 7, + [85286] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2979), 1, + STATE(2930), 1, sym_comment, - ACTIONS(5043), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5045), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, + ACTIONS(3664), 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, @@ -288634,26 +287873,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89300] = 8, + anon_sym_extends, + [85342] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5380), 1, - anon_sym_extends, - STATE(2980), 1, + STATE(2931), 1, sym_comment, - ACTIONS(5834), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5837), 3, - anon_sym_GT, + ACTIONS(5842), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5822), 10, + ACTIONS(5839), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5006), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4225), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -288661,14 +287905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 26, - sym__automatic_semicolon, + ACTIONS(4229), 22, 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, @@ -288688,95 +287928,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89362] = 35, + [85404] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_as, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5429), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(6051), 1, - anon_sym_GT_GT, - ACTIONS(6057), 1, - anon_sym_PERCENT, - ACTIONS(6059), 1, - anon_sym_STAR_STAR, - ACTIONS(6061), 1, - anon_sym_LT, - ACTIONS(6071), 1, + ACTIONS(6064), 1, anon_sym_AMP_AMP, - ACTIONS(6073), 1, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - ACTIONS(6075), 1, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6077), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(6079), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6081), 1, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - ACTIONS(6085), 1, + ACTIONS(6094), 1, sym__ternary_qmark, - ACTIONS(6266), 1, - anon_sym_SEMI, - ACTIONS(6268), 1, - sym__automatic_semicolon, - STATE(2742), 1, + STATE(2764), 1, sym_type_arguments, - STATE(2981), 1, + STATE(2932), 1, sym_comment, - STATE(5719), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5463), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6047), 2, + ACTIONS(5541), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6049), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6053), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6055), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6065), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6067), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3163), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6063), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89478] = 5, + [85518] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2982), 1, + STATE(2933), 1, sym_comment, - ACTIONS(5135), 13, + ACTIONS(4447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288790,7 +288029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5137), 29, + ACTIONS(5247), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288820,14 +288059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89534] = 5, + [85574] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2983), 1, + STATE(2934), 1, sym_comment, - ACTIONS(5131), 13, + ACTIONS(4481), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288841,7 +288080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5133), 29, + ACTIONS(5086), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288871,167 +288110,639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89590] = 5, + [85630] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2984), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + ACTIONS(6192), 1, + anon_sym_SEMI, + ACTIONS(6194), 1, + sym__automatic_semicolon, + STATE(2764), 1, + sym_type_arguments, + STATE(2935), 1, sym_comment, - ACTIONS(5123), 13, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85746] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2936), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5440), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5125), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5442), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5707), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85860] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5450), 1, anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, anon_sym_AMP_AMP, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, anon_sym_PERCENT, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2937), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5658), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [89646] = 5, + [85974] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2985), 1, - sym_comment, - ACTIONS(5119), 13, - anon_sym_STAR, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2938), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5595), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5121), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86088] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5450), 1, anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, anon_sym_AMP_AMP, + ACTIONS(6066), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, anon_sym_PERCENT, + ACTIONS(6082), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2939), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [89702] = 5, + [86202] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2986), 1, - sym_comment, - ACTIONS(5115), 13, - anon_sym_STAR, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, anon_sym_GT_GT, + ACTIONS(6072), 1, anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, + sym_type_arguments, + STATE(2940), 1, + sym_comment, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5117), 29, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6196), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_SEMI, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86316] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + ACTIONS(6200), 1, anon_sym_COMMA, + ACTIONS(6202), 1, anon_sym_RBRACE, + STATE(2941), 1, + sym_comment, + STATE(5718), 1, + aux_sym_object_pattern_repeat1, + STATE(7170), 1, + sym__property_name, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + STATE(5706), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6198), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86398] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LT, + ACTIONS(5660), 1, anon_sym_AMP_AMP, + ACTIONS(5662), 1, anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(2942), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 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(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5716), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5438), 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, - [89758] = 5, + [86512] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2987), 1, + STATE(2943), 1, sym_comment, - ACTIONS(5085), 13, + ACTIONS(3408), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289045,7 +288756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5087), 29, + ACTIONS(3546), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289075,28 +288786,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89814] = 5, + [86568] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2988), 1, + ACTIONS(6104), 1, + anon_sym_AMP, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6108), 1, + anon_sym_extends, + STATE(2944), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5024), 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(5253), 29, + ACTIONS(5026), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289125,15 +288840,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [89870] = 5, + [86630] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2989), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, + anon_sym_GT_GT, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_PERCENT, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + ACTIONS(6204), 1, + anon_sym_SEMI, + ACTIONS(6206), 1, + sym__automatic_semicolon, + STATE(2764), 1, + sym_type_arguments, + STATE(2945), 1, sym_comment, - ACTIONS(5271), 13, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(5482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6060), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6070), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6088), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6090), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86746] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2946), 1, + sym_comment, + ACTIONS(3410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289147,7 +288942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5273), 29, + ACTIONS(3682), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289177,24 +288972,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89926] = 8, + [86802] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6142), 1, - anon_sym_AMP, - ACTIONS(6144), 1, - anon_sym_PIPE, - ACTIONS(6146), 1, + ACTIONS(5006), 1, anon_sym_extends, - STATE(2990), 1, + STATE(2947), 1, sym_comment, - ACTIONS(5047), 11, + ACTIONS(5839), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5842), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -289202,16 +288999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5049), 28, + ACTIONS(4229), 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, @@ -289231,25 +289026,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89988] = 9, + [86864] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4321), 1, + ACTIONS(4303), 1, anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(5044), 1, anon_sym_extends, - STATE(2991), 1, + STATE(2948), 1, sym_comment, - ACTIONS(5544), 2, + ACTIONS(5871), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5547), 3, + ACTIONS(5874), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(4225), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289260,7 +289055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(4229), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289286,26 +289081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90052] = 8, + [86928] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, - anon_sym_extends, - STATE(2992), 1, - sym_comment, - ACTIONS(5863), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5866), 3, - anon_sym_GT, + ACTIONS(6104), 1, anon_sym_AMP, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(6108), 1, + anon_sym_extends, + STATE(2949), 1, + sym_comment, + ACTIONS(5383), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -289313,14 +289106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, + ACTIONS(5385), 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, @@ -289340,62 +289135,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90114] = 18, + [86990] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6096), 1, anon_sym_STAR, - ACTIONS(6245), 1, + ACTIONS(6208), 1, anon_sym_RBRACE, - STATE(2993), 1, + STATE(2950), 1, sym_comment, - STATE(4691), 1, + STATE(3620), 1, + sym_override_modifier, + STATE(4658), 1, sym__property_name, - STATE(5737), 1, + STATE(5732), 1, aux_sym_object_repeat1, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2996), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -289403,21 +289203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90195] = 7, + [87080] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(2994), 1, + STATE(2951), 1, sym_comment, - ACTIONS(6270), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6272), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(5263), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289431,10 +289224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5265), 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, @@ -289455,41 +289253,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90254] = 8, + anon_sym_extends, + [87136] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5863), 1, - anon_sym_LBRACK, - STATE(2995), 1, + ACTIONS(5256), 1, + anon_sym_DOT, + STATE(2952), 1, sym_comment, - ACTIONS(4965), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5866), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(5251), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -289508,38 +289305,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90315] = 16, + anon_sym_extends, + [87194] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6274), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5426), 1, + anon_sym_GT_GT, + ACTIONS(5432), 1, + anon_sym_PERCENT, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(6276), 1, + ACTIONS(5436), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(5660), 1, + anon_sym_AMP_AMP, + ACTIONS(5662), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5672), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(2996), 1, + STATE(2953), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + ACTIONS(5418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5424), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5440), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5442), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6210), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 12, + ACTIONS(5438), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87308] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2954), 1, + sym_comment, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289550,111 +289404,178 @@ 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(5515), 16, + ACTIONS(5321), 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, - [90392] = 28, + anon_sym_extends, + [87364] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(2955), 1, + sym_comment, + ACTIONS(5315), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5317), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5183), 1, + anon_sym_satisfies, + anon_sym_extends, + [87420] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + STATE(2764), 1, sym_type_arguments, - STATE(2997), 1, + STATE(2956), 1, sym_comment, - STATE(5797), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(6212), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 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, - [90493] = 7, + [87534] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6305), 1, - sym__automatic_semicolon, - STATE(2998), 1, + STATE(2957), 1, sym_comment, - ACTIONS(2380), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2286), 13, + ACTIONS(5311), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289668,11 +289589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 25, + ACTIONS(5313), 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, @@ -289694,93 +289618,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90552] = 29, + anon_sym_extends, + [87590] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - STATE(2313), 1, - sym_type_arguments, - STATE(2999), 1, + STATE(2958), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(5307), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 6, + ACTIONS(5309), 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, - [90655] = 7, + anon_sym_extends, + [87646] = 5, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6309), 1, - sym__automatic_semicolon, - STATE(3000), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2959), 1, sym_comment, - ACTIONS(2376), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2278), 13, + ACTIONS(5303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289794,11 +289691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2282), 25, + ACTIONS(5305), 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, @@ -289820,464 +289720,470 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90714] = 19, + anon_sym_extends, + [87702] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6276), 1, - anon_sym_LT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - STATE(2313), 1, - sym_type_arguments, - STATE(3001), 1, + STATE(2960), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(5299), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 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(5515), 15, + ACTIONS(5301), 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, - [90797] = 25, + anon_sym_extends, + [87758] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, anon_sym_GT_GT, - ACTIONS(6295), 1, + ACTIONS(6072), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + ACTIONS(6214), 1, + anon_sym_SEMI, + ACTIONS(6216), 1, + sym__automatic_semicolon, + STATE(2764), 1, sym_type_arguments, - STATE(3002), 1, + STATE(2961), 1, sym_comment, - STATE(5797), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6299), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 8, + [87874] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4976), 1, + anon_sym_extends, + STATE(2962), 1, + sym_comment, + ACTIONS(5355), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5357), 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, - [90892] = 34, + [87932] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6315), 1, - anon_sym_COLON, - ACTIONS(6317), 1, + ACTIONS(5156), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(5158), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(5160), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(5164), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(5172), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(5174), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(5184), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5190), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3003), 1, + STATE(2963), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(5142), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(5162), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(5170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(5180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(5182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5834), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(5178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91005] = 26, + [88046] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(5486), 1, + anon_sym_as, + ACTIONS(5488), 1, + anon_sym_BANG, + ACTIONS(5493), 1, + anon_sym_satisfies, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6074), 1, + anon_sym_CARET, + ACTIONS(6076), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6092), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6094), 1, + sym__ternary_qmark, + ACTIONS(6218), 1, + anon_sym_SEMI, + ACTIONS(6220), 1, + sym__automatic_semicolon, + STATE(2764), 1, sym_type_arguments, - STATE(3004), 1, + STATE(2964), 1, sym_comment, - STATE(5797), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6279), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 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, - [91102] = 27, + [88162] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6104), 1, anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3005), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6279), 2, + ACTIONS(6108), 1, + anon_sym_extends, + STATE(2965), 1, + sym_comment, + ACTIONS(5288), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 7, + ACTIONS(5290), 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, - [91201] = 18, + [88224] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6276), 1, - anon_sym_LT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - STATE(2313), 1, - sym_type_arguments, - STATE(3006), 1, + ACTIONS(6104), 1, + anon_sym_AMP, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6108), 1, + anon_sym_extends, + STATE(2966), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(5280), 11, anon_sym_STAR, - anon_sym_SLASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 15, + ACTIONS(5282), 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, - [91282] = 19, + [88286] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6276), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3007), 1, + STATE(2967), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 11, + ACTIONS(5235), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -290286,31 +290192,55 @@ 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(5515), 14, + ACTIONS(5237), 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, - [91365] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [88342] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3008), 1, + ACTIONS(5450), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5790), 1, + anon_sym_QMARK_DOT, + STATE(2968), 1, sym_comment, - ACTIONS(4218), 13, + STATE(5714), 1, + sym_optional_chain, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290324,7 +290254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 28, + ACTIONS(2201), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290333,9 +290263,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, @@ -290353,28 +290280,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91420] = 9, + [88406] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4388), 1, - anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(5006), 1, anon_sym_extends, - STATE(3009), 1, - sym_comment, - ACTIONS(5544), 2, - anon_sym_COMMA, + ACTIONS(5839), 1, anon_sym_LBRACK, - ACTIONS(5547), 3, - anon_sym_GT, + ACTIONS(6226), 1, + anon_sym_RPAREN, + STATE(2969), 1, + sym_comment, + ACTIONS(5842), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(6222), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6224), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4225), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -290382,10 +290314,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(4229), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -290406,39 +290337,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [91483] = 6, + [88474] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4321), 1, - anon_sym_EQ, - STATE(3010), 1, + ACTIONS(5215), 1, + anon_sym_LBRACK, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6229), 1, + anon_sym_RPAREN, + STATE(2970), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5211), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5218), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6005), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5209), 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(4222), 27, - sym__automatic_semicolon, + ACTIONS(5213), 22, 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, @@ -290458,27 +290394,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91540] = 7, + [88542] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6349), 1, - sym__automatic_semicolon, - STATE(3011), 1, + ACTIONS(6104), 1, + anon_sym_AMP, + STATE(2971), 1, sym_comment, - ACTIONS(2354), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2224), 13, + ACTIONS(5231), 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, @@ -290486,10 +290416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2228), 23, + ACTIONS(5233), 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, @@ -290510,87 +290445,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91599] = 23, + anon_sym_extends, + [88600] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3012), 1, + STATE(2972), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(5000), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5517), 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(5515), 10, + ACTIONS(5002), 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, - [91690] = 7, + anon_sym_extends, + [88656] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6351), 1, - sym__automatic_semicolon, - STATE(3013), 1, + STATE(2973), 1, sym_comment, - ACTIONS(2370), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2270), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290604,11 +290518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2274), 25, + ACTIONS(5229), 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, @@ -290630,329 +290547,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91749] = 30, + anon_sym_extends, + [88712] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(3612), 1, + anon_sym_extends, + ACTIONS(5008), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6232), 1, + anon_sym_RPAREN, + STATE(2974), 1, + sym_comment, + ACTIONS(2151), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5011), 2, anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - STATE(2313), 1, - sym_type_arguments, - STATE(3014), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6033), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2149), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 5, + ACTIONS(2155), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [91854] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5600), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - ACTIONS(6307), 1, anon_sym_AMP_AMP, - ACTIONS(6353), 1, anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3015), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6301), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6303), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91967] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88780] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5525), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, + ACTIONS(6094), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2764), 1, sym_type_arguments, - STATE(3016), 1, + STATE(2975), 1, sym_comment, - STATE(5797), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92080] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3017), 1, - sym_comment, - ACTIONS(5808), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5600), 28, + ACTIONS(6235), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3261), 2, + sym_template_string, + sym_arguments, + ACTIONS(6086), 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, - [92135] = 15, + [88894] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6359), 1, + ACTIONS(6237), 1, anon_sym_STAR, - ACTIONS(6361), 1, + ACTIONS(6239), 1, anon_sym_async, - STATE(3018), 1, + ACTIONS(6241), 1, + anon_sym_readonly, + STATE(2976), 1, sym_comment, - STATE(3947), 1, + STATE(3630), 1, + sym_override_modifier, + STATE(3913), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6363), 2, + ACTIONS(6243), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(4498), 20, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290960,12 +290738,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, @@ -290973,37 +290749,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92210] = 5, + [88976] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3019), 1, + STATE(2977), 1, sym_comment, - ACTIONS(5810), 13, + ACTIONS(5207), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5205), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4225), 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(4229), 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, + [89036] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2978), 1, + sym_comment, + ACTIONS(5205), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5207), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4225), 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(5812), 28, + ACTIONS(4229), 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, @@ -291023,37 +290855,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92265] = 5, + [89096] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3020), 1, + ACTIONS(5367), 1, + anon_sym_extends, + STATE(2979), 1, sym_comment, - ACTIONS(5814), 13, + ACTIONS(5804), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5807), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5770), 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(5816), 28, + ACTIONS(5772), 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, @@ -291073,14 +290909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92320] = 5, + [89158] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3021), 1, + STATE(2980), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(5271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291094,7 +290930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2258), 28, + ACTIONS(5273), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291123,36 +290959,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92375] = 15, + anon_sym_extends, + [89214] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5215), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + STATE(2981), 1, + sym_comment, + ACTIONS(5221), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5218), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5209), 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(5213), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6365), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3022), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5680), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89278] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(2982), 1, + sym_comment, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291163,12 +291033,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(5682), 17, + ACTIONS(5269), 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, @@ -291182,43 +291061,44 @@ 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, - [92450] = 9, + anon_sym_extends, + [89334] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4363), 1, - anon_sym_EQ, - ACTIONS(5544), 1, - anon_sym_LBRACK, - STATE(3023), 1, + ACTIONS(5253), 1, + anon_sym_DOT, + STATE(2983), 1, sym_comment, - ACTIONS(5011), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(5251), 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, @@ -291237,43 +291117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92513] = 18, + anon_sym_extends, + [89392] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6368), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3024), 1, + STATE(2984), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, + ACTIONS(5024), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -291282,11 +291136,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(5616), 15, + ACTIONS(5026), 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, @@ -291300,55 +291164,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [92594] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [89448] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5091), 1, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6237), 1, + anon_sym_STAR, + ACTIONS(6239), 1, + anon_sym_async, + ACTIONS(6245), 1, + anon_sym_abstract, + STATE(2985), 1, + sym_comment, + STATE(3913), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6243), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, anon_sym_EQ, - ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5096), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89526] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6247), 1, anon_sym_RBRACE, - STATE(3025), 1, + STATE(2986), 1, sym_comment, - STATE(5738), 1, + STATE(3620), 1, + sym_override_modifier, + STATE(4658), 1, + sym__property_name, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(1035), 6, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2482), 29, + ACTIONS(2996), 18, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, + 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, + [89616] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, anon_sym_DQUOTE, + ACTIONS(2020), 1, anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + anon_sym_STAR, + ACTIONS(6251), 1, anon_sym_async, - anon_sym_new, + ACTIONS(6253), 1, + anon_sym_readonly, + STATE(2987), 1, + sym_comment, + STATE(3631), 1, + sym_override_modifier, + STATE(3986), 1, + sym__property_name, + ACTIONS(4002), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6255), 2, anon_sym_get, anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -291356,111 +291363,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92661] = 34, + [89698] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5486), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5493), 1, anon_sym_satisfies, - ACTIONS(5602), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(6064), 1, + anon_sym_AMP_AMP, + ACTIONS(6066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6068), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6072), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6074), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6080), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6082), 1, + anon_sym_STAR_STAR, + ACTIONS(6084), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, + ACTIONS(6092), 1, anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, + ACTIONS(6094), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(6257), 1, + anon_sym_SEMI, + ACTIONS(6259), 1, + sym__automatic_semicolon, + STATE(2764), 1, sym_type_arguments, - STATE(3026), 1, + STATE(2988), 1, sym_comment, - STATE(5797), 1, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6058), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6060), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6070), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6090), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6086), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92774] = 11, + [89814] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(2151), 1, anon_sym_EQ, - ACTIONS(4348), 1, - anon_sym_COLON, - ACTIONS(5011), 1, - anon_sym_extends, - ACTIONS(5544), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5008), 1, anon_sym_LBRACK, - STATE(3027), 1, + STATE(2989), 1, sym_comment, - ACTIONS(5547), 2, + ACTIONS(3612), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5011), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6371), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4218), 11, + ACTIONS(2149), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -291468,10 +291473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(2155), 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, @@ -291491,46 +291499,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92841] = 11, + [89878] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + ACTIONS(6200), 1, anon_sym_COMMA, - ACTIONS(5096), 1, + ACTIONS(6263), 1, anon_sym_RBRACE, - STATE(3028), 1, + STATE(2990), 1, sym_comment, - STATE(5738), 1, + STATE(5640), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2486), 29, + STATE(7170), 1, + sym__property_name, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + STATE(5631), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6261), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -291547,137 +291563,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92908] = 34, + [89960] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(6265), 1, + anon_sym_static, + ACTIONS(6267), 1, + anon_sym_readonly, + ACTIONS(6269), 1, + anon_sym_abstract, + STATE(2991), 1, + sym_comment, + STATE(3658), 1, + sym_override_modifier, + STATE(4335), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5670), 1, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6319), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3029), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93021] = 14, + anon_sym_QMARK, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90040] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6271), 1, anon_sym_STAR, - STATE(3030), 1, + ACTIONS(6273), 1, + anon_sym_async, + ACTIONS(6275), 1, + anon_sym_readonly, + STATE(2992), 1, sym_comment, - STATE(4845), 1, + STATE(3626), 1, + sym_override_modifier, + STATE(3907), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6375), 2, + ACTIONS(6277), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(2989), 21, + ACTIONS(4505), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -291685,555 +291690,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93094] = 11, + [90122] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(6337), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3031), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5792), 12, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6271), 1, anon_sym_STAR, + ACTIONS(6273), 1, + anon_sym_async, + ACTIONS(6279), 1, + anon_sym_abstract, + STATE(2993), 1, + sym_comment, + STATE(3904), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6277), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5794), 22, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [93161] = 34, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90200] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5698), 1, - anon_sym_COLON, - ACTIONS(6317), 1, + ACTIONS(6285), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6289), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6299), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6307), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6315), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6317), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3032), 1, + STATE(2994), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93274] = 34, + [90313] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5676), 1, - anon_sym_COLON, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6319), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6323), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6325), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6327), 1, anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3033), 1, + STATE(2995), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93387] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5422), 8, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6319), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3034), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93500] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5420), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5509), 1, anon_sym_COLON, - ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3035), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [93613] = 34, + anon_sym_satisfies, + [90396] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5513), 1, - anon_sym_COLON, - ACTIONS(6317), 1, + ACTIONS(5639), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6364), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3036), 1, + STATE(2996), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93726] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3037), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 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(5515), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(6356), 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, - [93813] = 16, + [90509] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6377), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3038), 1, + ACTIONS(4279), 1, + anon_sym_EQ, + STATE(2997), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 12, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292244,69 +291994,84 @@ 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(5515), 16, + ACTIONS(4229), 27, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [93890] = 11, + [90566] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5091), 1, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6366), 1, + anon_sym_STAR, + STATE(2998), 1, + sym_comment, + STATE(4764), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6368), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, anon_sym_EQ, - ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5334), 1, - anon_sym_RBRACE, - STATE(3039), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 6, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2482), 29, + ACTIONS(2996), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -292319,823 +292084,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93957] = 34, + [90639] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5678), 1, + ACTIONS(5645), 1, anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, + ACTIONS(6364), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3040), 1, + STATE(2999), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94070] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5334), 1, - anon_sym_RBRACE, - STATE(3041), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2486), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [94137] = 21, + [90752] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6354), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3042), 1, + STATE(3000), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 7, + ACTIONS(5635), 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(5515), 13, + ACTIONS(5637), 22, sym__ternary_qmark, anon_sym_as, anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [94224] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5513), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - ACTIONS(6307), 1, anon_sym_AMP_AMP, - ACTIONS(6353), 1, anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3043), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6301), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6303), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [94337] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5509), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3044), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6301), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6303), 2, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94450] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3045), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 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, - [94551] = 29, + [90819] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3046), 1, + STATE(3001), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(5728), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 6, + ACTIONS(5730), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [94654] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6377), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3047), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 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(5515), 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, - [94737] = 25, + [90874] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3048), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6370), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 3, + STATE(3002), 1, + sym_comment, + STATE(4731), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6372), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 8, - sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [94832] = 26, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90947] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3049), 1, + STATE(3003), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6311), 2, + ACTIONS(4225), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 8, + ACTIONS(4229), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [94929] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3050), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - 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, - [95028] = 8, + [91002] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5011), 1, - anon_sym_extends, - STATE(3051), 1, + ACTIONS(5649), 1, + anon_sym_EQ, + ACTIONS(6031), 1, + anon_sym_of, + ACTIONS(6374), 1, + anon_sym_in, + STATE(3004), 1, sym_comment, - ACTIONS(5547), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5544), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4218), 11, + ACTIONS(5647), 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(4222), 24, + ACTIONS(5651), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -293155,22 +292431,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95089] = 9, + [91063] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6380), 1, + ACTIONS(6377), 1, anon_sym_LPAREN, - ACTIONS(6383), 1, + ACTIONS(6380), 1, anon_sym_COLON, - ACTIONS(6385), 1, + ACTIONS(6382), 1, anon_sym_LT, - ACTIONS(6388), 1, + ACTIONS(6385), 1, anon_sym_QMARK, - STATE(3052), 1, + STATE(3005), 1, sym_comment, - ACTIONS(4218), 12, + ACTIONS(5692), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293183,7 +292459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(5694), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293209,43 +292485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95152] = 18, + [91126] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6377), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3053), 1, + ACTIONS(4303), 1, + anon_sym_EQ, + STATE(3006), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(4225), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -293254,64 +292504,54 @@ 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(5515), 15, + ACTIONS(4229), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [95233] = 19, + [91183] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6377), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3054), 1, + ACTIONS(6033), 1, + anon_sym_of, + ACTIONS(6387), 1, + anon_sym_in, + STATE(3007), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 11, + ACTIONS(2149), 12, anon_sym_STAR, - anon_sym_in, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -293319,67 +292559,83 @@ 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(5515), 14, + ACTIONS(2155), 26, + sym__automatic_semicolon, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95316] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91244] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6390), 1, + ACTIONS(6096), 1, anon_sym_STAR, - ACTIONS(6392), 1, - anon_sym_async, - STATE(3055), 1, + ACTIONS(6208), 1, + anon_sym_RBRACE, + STATE(3008), 1, sym_comment, - STATE(3915), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6394), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 20, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -293396,334 +292652,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95391] = 23, + [91325] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6208), 1, + anon_sym_RBRACE, + STATE(3009), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3056), 1, + anon_sym_QMARK, + ACTIONS(2996), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91408] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(6005), 1, + anon_sym_of, + ACTIONS(6390), 1, + anon_sym_in, + STATE(3010), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(5209), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5517), 5, 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(5515), 10, + ACTIONS(5213), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + 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, - [95482] = 30, + [91469] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(3011), 1, + sym_comment, + ACTIONS(2199), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2201), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3057), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 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(6311), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91524] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3012), 1, + sym_comment, + ACTIONS(5696), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 5, + ACTIONS(5698), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [95587] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - ACTIONS(6345), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3058), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91579] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3013), 1, + sym_comment, + ACTIONS(5798), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95700] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5690), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5525), 1, - anon_sym_COLON, - ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - ACTIONS(6345), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3059), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91634] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3014), 1, + sym_comment, + ACTIONS(5800), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(5802), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95813] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91689] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6393), 1, + anon_sym_STAR, + STATE(3015), 1, + sym_comment, + STATE(4744), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6395), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91762] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5093), 1, + ACTIONS(5058), 1, anon_sym_COMMA, - ACTIONS(5275), 1, + ACTIONS(5061), 1, anon_sym_RBRACE, - STATE(3060), 1, + STATE(3016), 1, sym_comment, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2482), 29, + ACTIONS(2485), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -293753,112 +293084,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95880] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5523), 1, - anon_sym_COLON, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6319), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3061), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95993] = 11, + [91829] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5093), 1, + ACTIONS(5058), 1, anon_sym_COMMA, - ACTIONS(5275), 1, + ACTIONS(5061), 1, anon_sym_RBRACE, - STATE(3062), 1, + STATE(3017), 1, sym_comment, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2486), 29, + ACTIONS(2487), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -293888,19 +293140,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96060] = 7, + [91896] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6396), 1, + STATE(3018), 1, + sym_comment, + ACTIONS(2245), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2249), 28, sym__automatic_semicolon, - STATE(3063), 1, + sym__ternary_qmark, + anon_sym_as, + anon_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, + [91951] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3019), 1, sym_comment, - ACTIONS(2364), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2240), 13, + ACTIONS(5821), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293914,11 +293211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2244), 25, + ACTIONS(5823), 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, @@ -293940,199 +293240,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96119] = 34, + [92006] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5519), 1, - anon_sym_COLON, - ACTIONS(6317), 1, + ACTIONS(5601), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6364), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3064), 1, + STATE(3020), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96232] = 34, + [92119] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(227), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6401), 1, + anon_sym_RBRACE, + ACTIONS(6403), 1, + anon_sym_async, + ACTIONS(6405), 1, + anon_sym_static, + ACTIONS(6407), 1, + anon_sym_readonly, + ACTIONS(6413), 1, + anon_sym_override, + STATE(3021), 1, + sym_comment, + STATE(3581), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(4474), 1, + sym__property_name, + STATE(6099), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6409), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(6411), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6106), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6397), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92212] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5044), 1, + anon_sym_extends, + STATE(3022), 1, + sym_comment, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5871), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4225), 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(4229), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92273] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6415), 1, + sym__automatic_semicolon, + STATE(3023), 1, + sym_comment, + ACTIONS(2371), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2255), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2259), 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, + [92332] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5473), 1, - anon_sym_COLON, - ACTIONS(6317), 1, + ACTIONS(5539), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6364), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3065), 1, + STATE(3024), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96345] = 9, + [92445] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_extends, - STATE(3066), 1, + ACTIONS(6417), 1, + sym__automatic_semicolon, + STATE(3025), 1, sym_comment, - ACTIONS(5544), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(2375), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2265), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(2269), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -294152,14 +293624,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96408] = 5, + [92504] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3067), 1, + STATE(3026), 1, sym_comment, - ACTIONS(5755), 13, + ACTIONS(2445), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294173,15 +293651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5757), 28, - sym__automatic_semicolon, + ACTIONS(2287), 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, @@ -294202,622 +293675,512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96463] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [92561] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6419), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_STAR, - STATE(3068), 1, + STATE(3027), 1, sym_comment, - STATE(4824), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6398), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2381), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2329), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96536] = 34, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 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, + [92620] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5527), 1, - anon_sym_COLON, - ACTIONS(6317), 1, + ACTIONS(5533), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6364), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3069), 1, + STATE(3028), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96649] = 34, + [92733] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6319), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - ACTIONS(6400), 1, - anon_sym_COLON, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3070), 1, + STATE(3029), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [96762] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3071), 1, - sym_comment, - ACTIONS(5875), 13, - anon_sym_STAR, + ACTIONS(5422), 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(5877), 28, - sym__automatic_semicolon, + ACTIONS(5420), 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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [96817] = 34, + [92820] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5604), 1, - anon_sym_COLON, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6319), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6421), 1, anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3072), 1, + STATE(3030), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(5420), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [96930] = 34, + anon_sym_satisfies, + [92897] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5523), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3073), 1, + STATE(3031), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97043] = 34, + ACTIONS(5420), 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, + [92998] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5519), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3074), 1, + STATE(3032), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97156] = 34, + ACTIONS(5420), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [93101] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5473), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6421), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3075), 1, + STATE(3033), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(6303), 2, + ACTIONS(5420), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [97269] = 7, + anon_sym_satisfies, + [93184] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3076), 1, - sym_comment, - ACTIONS(6171), 2, + ACTIONS(4279), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6173), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4349), 1, anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(5044), 1, + anon_sym_extends, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(3034), 1, + sym_comment, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6424), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4225), 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(4222), 23, + ACTIONS(4229), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -294837,274 +294200,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97328] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6402), 1, - anon_sym_STAR, - STATE(3077), 1, - sym_comment, - STATE(4768), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97401] = 34, + [93251] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5670), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3078), 1, + STATE(3035), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(5422), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97514] = 34, + ACTIONS(5420), 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, + [93346] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5527), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3079), 1, + STATE(3036), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97627] = 18, + ACTIONS(5420), 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, + [93443] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, anon_sym_COMMA, - ACTIONS(1057), 1, + ACTIONS(5277), 1, anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(3080), 1, + STATE(3037), 1, sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2485), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(2995), 2, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93510] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5277), 1, + anon_sym_RBRACE, + STATE(3038), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2487), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -295117,280 +294453,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97708] = 34, + [93577] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6410), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, - anon_sym_AMP_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6422), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3081), 1, + STATE(3039), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97821] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4338), 1, - anon_sym_EQ, - ACTIONS(4346), 1, - anon_sym_QMARK, - STATE(3082), 1, - sym_comment, - ACTIONS(4341), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5420), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [97882] = 34, + [93676] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6412), 1, - anon_sym_AMP_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, - anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6421), 1, anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - ACTIONS(6444), 1, - anon_sym_RBRACK, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3083), 1, + STATE(3040), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97995] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5380), 1, - anon_sym_extends, - STATE(3084), 1, - sym_comment, - ACTIONS(5837), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5834), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(5822), 11, - anon_sym_STAR, + ACTIONS(5422), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 24, + ACTIONS(5420), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - 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, - [98056] = 5, + [93757] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3085), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6421), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3041), 1, sym_comment, - ACTIONS(5642), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -295399,50 +294635,38 @@ 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(5513), 28, - sym__automatic_semicolon, + ACTIONS(5420), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98111] = 6, + [93840] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3086), 1, - sym_comment, - ACTIONS(6446), 3, + ACTIONS(6428), 1, sym__automatic_semicolon, + STATE(3042), 1, + sym_comment, + ACTIONS(2437), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(5347), 13, + ACTIONS(2337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295456,11 +294680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 25, + ACTIONS(2341), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -295482,40 +294704,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98168] = 8, + [93899] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5544), 1, - anon_sym_LBRACK, - STATE(3087), 1, + STATE(3043), 1, sym_comment, - ACTIONS(5011), 2, + ACTIONS(6430), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6432), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(4229), 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, @@ -295535,30 +294756,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98229] = 9, + [93958] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5009), 1, - anon_sym_QMARK, - STATE(3088), 1, - sym_comment, - ACTIONS(5011), 2, - anon_sym_RPAREN, + ACTIONS(4385), 1, + anon_sym_EQ, + ACTIONS(5044), 1, anon_sym_extends, - ACTIONS(5547), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5544), 3, + STATE(3044), 1, + sym_comment, + ACTIONS(5871), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4218), 11, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -295566,9 +294785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4229), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -295589,22 +294809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98292] = 9, + anon_sym_implements, + [94021] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6448), 1, + ACTIONS(6434), 1, anon_sym_LPAREN, - ACTIONS(6451), 1, + ACTIONS(6437), 1, anon_sym_COLON, - ACTIONS(6453), 1, + ACTIONS(6439), 1, anon_sym_LT, - ACTIONS(6456), 1, + ACTIONS(6442), 1, anon_sym_QMARK, - STATE(3089), 1, + STATE(3045), 1, sym_comment, - ACTIONS(5871), 12, + ACTIONS(4225), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295617,7 +294838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5873), 25, + ACTIONS(4229), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295643,401 +294864,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98355] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [94084] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6402), 1, - anon_sym_STAR, - ACTIONS(6458), 1, - anon_sym_async, - STATE(3090), 1, - sym_comment, - STATE(3911), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6460), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98430] = 15, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6462), 1, - anon_sym_STAR, - ACTIONS(6464), 1, - anon_sym_async, - STATE(3091), 1, - sym_comment, - STATE(3983), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6466), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6350), 1, + anon_sym_PERCENT, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6354), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98505] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3092), 1, + STATE(2305), 1, + sym_type_arguments, + STATE(3046), 1, sym_comment, - ACTIONS(5636), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6330), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6356), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 28, - sym__automatic_semicolon, + ACTIONS(5420), 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, - [98560] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6462), 1, - anon_sym_STAR, - STATE(3093), 1, - sym_comment, - STATE(4813), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6468), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98633] = 9, + [94175] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5057), 1, - anon_sym_LBRACK, - STATE(3094), 1, - sym_comment, - ACTIONS(5063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5060), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5051), 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(5055), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6334), 1, anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6342), 1, + anon_sym_AMP, + ACTIONS(6344), 1, anon_sym_CARET, + ACTIONS(6346), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_PERCENT, + ACTIONS(6352), 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, + ACTIONS(6354), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3047), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98696] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6330), 2, anon_sym_STAR, - ACTIONS(6245), 1, - anon_sym_RBRACE, - STATE(3095), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98779] = 19, + anon_sym_SLASH, + ACTIONS(6332), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6358), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6360), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6356), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [94280] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6444), 1, anon_sym_STAR, - STATE(3096), 1, + STATE(3048), 1, sym_comment, - STATE(4691), 1, + STATE(4743), 1, sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6446), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296054,121 +295066,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98862] = 34, + [94353] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6317), 1, + ACTIONS(5690), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6364), 1, sym__ternary_qmark, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3097), 1, + STATE(3049), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98975] = 10, + [94466] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_EQ, - ACTIONS(5009), 1, - anon_sym_QMARK, - ACTIONS(5544), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - STATE(3098), 1, - sym_comment, - ACTIONS(5547), 2, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5545), 1, + anon_sym_of, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6342), 1, anon_sym_AMP, + ACTIONS(6344), 1, + anon_sym_CARET, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(5011), 3, + ACTIONS(6350), 1, + anon_sym_PERCENT, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6354), 1, + anon_sym_LT, + ACTIONS(6362), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6364), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3050), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6330), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6332), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6358), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6360), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6356), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94579] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3051), 1, + sym_comment, + ACTIONS(2429), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(2279), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -296188,21 +295275,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99040] = 6, + [94636] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6472), 1, - sym_regex_flags, - STATE(3099), 1, + STATE(3052), 1, sym_comment, - ACTIONS(6154), 17, + ACTIONS(2425), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2319), 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, @@ -296213,14 +295302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6156), 23, - sym__automatic_semicolon, + ACTIONS(2323), 23, 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, @@ -296236,102 +295321,154 @@ 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, - [99097] = 35, + anon_sym_satisfies, + [94693] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5294), 1, + anon_sym_RBRACE, + STATE(3053), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2485), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [94760] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5590), 1, - anon_sym_of, - ACTIONS(6274), 1, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, anon_sym_STAR_STAR, - ACTIONS(6281), 1, - anon_sym_GT, - ACTIONS(6283), 1, + ACTIONS(6450), 1, + anon_sym_COLON, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6460), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6462), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6466), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, + ACTIONS(6474), 1, anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, + ACTIONS(6476), 1, sym__ternary_qmark, - ACTIONS(6474), 1, - anon_sym_in, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3100), 1, + STATE(3054), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6468), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99212] = 7, + [94873] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6477), 1, - sym__automatic_semicolon, - STATE(3101), 1, + STATE(3055), 1, sym_comment, - ACTIONS(2358), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2232), 13, + ACTIONS(5886), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296345,11 +295482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2236), 25, + ACTIONS(5888), 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, @@ -296371,100 +295511,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99271] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [94928] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6390), 1, - anon_sym_STAR, - STATE(3102), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3056), 1, sym_comment, - STATE(4830), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6479), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(6478), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6480), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(4225), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99344] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 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, + [94987] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5075), 1, - anon_sym_LBRACK, - STATE(3103), 1, + STATE(3057), 1, sym_comment, - ACTIONS(3679), 2, + ACTIONS(6478), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6480), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5078), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2140), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 24, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -296484,82 +295615,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99407] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [95046] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6247), 1, - anon_sym_STAR, - ACTIONS(6249), 1, - anon_sym_async, - STATE(3104), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3058), 1, sym_comment, - STATE(3969), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6253), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(6478), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6480), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99482] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5970), 1, - anon_sym_of, - ACTIONS(6481), 1, - anon_sym_in, - STATE(3105), 1, - sym_comment, - ACTIONS(2140), 12, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -296570,13 +295643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 26, - sym__automatic_semicolon, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -296597,53 +295667,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99543] = 14, + [95105] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6247), 1, - anon_sym_STAR, - STATE(3106), 1, - sym_comment, - STATE(4782), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6484), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, anon_sym_COMMA, + ACTIONS(5294), 1, anon_sym_RBRACE, + STATE(3059), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, + ACTIONS(2487), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -296656,71 +295723,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99616] = 7, + [95172] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6486), 1, - sym__automatic_semicolon, - STATE(3107), 1, - sym_comment, - ACTIONS(2354), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2224), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2228), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, anon_sym_AMP_AMP, + ACTIONS(6454), 1, anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + ACTIONS(6482), 1, + anon_sym_COLON, + STATE(2305), 1, + sym_type_arguments, + STATE(3060), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 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(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 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, - [99675] = 7, + [95285] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6488), 1, - sym__automatic_semicolon, - STATE(3108), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2318), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2216), 13, + ACTIONS(5867), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296734,11 +295823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2220), 25, + ACTIONS(5533), 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, @@ -296760,14 +295852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99734] = 5, + [95340] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3109), 1, + STATE(3062), 1, sym_comment, - ACTIONS(5672), 13, + ACTIONS(5815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296781,7 +295873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5674), 28, + ACTIONS(5817), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296810,93 +295902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99789] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5604), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3110), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6301), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6303), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99902] = 5, + [95395] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3111), 1, + STATE(3063), 1, sym_comment, - ACTIONS(5692), 13, + ACTIONS(5631), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296910,7 +295923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5694), 28, + ACTIONS(5633), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296939,20 +295952,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99957] = 6, + [95450] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3112), 1, + STATE(3064), 1, sym_comment, - ACTIONS(2380), 5, - sym__automatic_semicolon, + ACTIONS(6484), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6486), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2286), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296966,7 +295980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -296990,99 +296004,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100014] = 34, + [95509] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6317), 1, + ACTIONS(5567), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6364), 1, sym__ternary_qmark, - ACTIONS(6490), 1, - anon_sym_COLON, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3113), 1, + STATE(3065), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100127] = 6, + [95622] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3114), 1, - sym_comment, - ACTIONS(2376), 5, + ACTIONS(6488), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2278), 13, + STATE(3066), 1, + sym_comment, + ACTIONS(2387), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297096,10 +296109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2282), 23, + ACTIONS(2167), 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, @@ -297120,440 +296135,495 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100184] = 8, + [95681] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5748), 1, - anon_sym_EQ, - ACTIONS(5978), 1, - anon_sym_of, - ACTIONS(6492), 1, - anon_sym_in, - STATE(3115), 1, - sym_comment, - ACTIONS(5746), 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(5750), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5497), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6342), 1, + anon_sym_AMP, + ACTIONS(6344), 1, anon_sym_CARET, + ACTIONS(6346), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_PERCENT, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6354), 1, + anon_sym_LT, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6364), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3067), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100245] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6330), 2, anon_sym_STAR, - ACTIONS(6117), 1, - anon_sym_async, - STATE(3116), 1, - sym_comment, - STATE(3920), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6119), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100320] = 14, + anon_sym_SLASH, + ACTIONS(6332), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6358), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6360), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6356), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95794] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6495), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5541), 1, + anon_sym_of, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6342), 1, + anon_sym_AMP, + ACTIONS(6344), 1, + anon_sym_CARET, + ACTIONS(6346), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, + anon_sym_PERCENT, + ACTIONS(6352), 1, + anon_sym_STAR_STAR, + ACTIONS(6354), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6362), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6364), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3117), 1, + STATE(3068), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5759), 12, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6330), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5761), 19, - 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, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6356), 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, - [100393] = 10, + [95907] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5057), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5989), 1, - anon_sym_COLON, - STATE(3118), 1, - sym_comment, - ACTIONS(5060), 2, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(5063), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5051), 11, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + ACTIONS(6490), 1, + anon_sym_COLON, + STATE(2305), 1, + sym_type_arguments, + STATE(3069), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(6321), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96020] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5595), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6342), 1, + anon_sym_AMP, + ACTIONS(6344), 1, anon_sym_CARET, + ACTIONS(6346), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_PERCENT, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6354), 1, + anon_sym_LT, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6364), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3070), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100458] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_COLON, - STATE(3119), 1, - sym_comment, - ACTIONS(5078), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3679), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2140), 11, + ACTIONS(6330), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 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(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6356), 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, - [100523] = 34, + [96133] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5698), 1, - anon_sym_of, - ACTIONS(6274), 1, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, anon_sym_STAR_STAR, - ACTIONS(6283), 1, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6460), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6462), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6466), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, + ACTIONS(6474), 1, anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, + ACTIONS(6476), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(6492), 1, + anon_sym_COLON, + STATE(2305), 1, sym_type_arguments, - STATE(3120), 1, + STATE(3071), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6458), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6303), 2, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6299), 3, + ACTIONS(6468), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100636] = 7, + [96246] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6498), 1, - sym__automatic_semicolon, - STATE(3121), 1, - sym_comment, - ACTIONS(2370), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2270), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2274), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5591), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6342), 1, + anon_sym_AMP, + ACTIONS(6344), 1, anon_sym_CARET, + ACTIONS(6346), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_PERCENT, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6354), 1, + anon_sym_LT, + ACTIONS(6362), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6364), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3072), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6330), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6332), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6358), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6356), 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, - [100695] = 11, + [96359] = 7, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(6297), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3122), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6494), 1, + sym__automatic_semicolon, + STATE(3073), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5792), 12, + ACTIONS(2413), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297564,12 +296634,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(5794), 22, + ACTIONS(2295), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -297588,15 +296659,23 @@ 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, - [100762] = 5, + [96418] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3123), 1, + ACTIONS(6496), 1, + sym__automatic_semicolon, + STATE(3074), 1, sym_comment, - ACTIONS(5738), 13, + ACTIONS(2409), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297610,15 +296689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 28, - sym__automatic_semicolon, + ACTIONS(2313), 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, @@ -297639,20 +296713,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100817] = 6, + [96477] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3124), 1, + STATE(3075), 1, sym_comment, - ACTIONS(2358), 5, + ACTIONS(2405), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2232), 13, + ACTIONS(2301), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297666,7 +296740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2236), 23, + ACTIONS(2305), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -297690,37 +296764,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100874] = 5, + [96534] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3125), 1, + ACTIONS(5367), 1, + anon_sym_extends, + STATE(3076), 1, sym_comment, - ACTIONS(2304), 13, + ACTIONS(5807), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5804), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(5770), 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(2308), 28, - sym__automatic_semicolon, + ACTIONS(5772), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -297740,68 +296817,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100929] = 24, + [96595] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(2492), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6502), 1, + ACTIONS(6237), 1, + anon_sym_STAR, + STATE(3077), 1, + sym_comment, + STATE(4761), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6498), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(6504), 1, - anon_sym_RBRACE, - ACTIONS(6506), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(6508), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(6510), 1, anon_sym_readonly, - ACTIONS(6516), 1, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - STATE(3126), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96668] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6237), 1, + anon_sym_STAR, + ACTIONS(6239), 1, + anon_sym_async, + STATE(3078), 1, sym_comment, - STATE(3599), 1, - sym_accessibility_modifier, - STATE(3625), 1, - sym_override_modifier, - STATE(4462), 1, + STATE(3913), 1, sym__property_name, - STATE(6103), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6512), 2, + ACTIONS(6243), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(6514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6110), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6500), 14, + ACTIONS(992), 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(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -297809,20 +296936,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101022] = 6, + [96743] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3127), 1, + STATE(3079), 1, sym_comment, - ACTIONS(2400), 5, + ACTIONS(2387), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2304), 13, + ACTIONS(2163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297836,63 +296963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2308), 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, - [101079] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5989), 1, - anon_sym_of, - ACTIONS(6518), 1, - anon_sym_in, - STATE(3128), 1, - sym_comment, - ACTIONS(5051), 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(5055), 26, - sym__automatic_semicolon, + ACTIONS(2167), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -297913,123 +296987,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101140] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5676), 1, - anon_sym_of, - ACTIONS(6274), 1, - anon_sym_STAR_STAR, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6355), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3129), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6301), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6303), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6299), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101253] = 14, + [96800] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6521), 1, + ACTIONS(6500), 1, anon_sym_STAR, - STATE(3130), 1, + STATE(3080), 1, sym_comment, - STATE(4695), 1, + STATE(4821), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6523), 2, + ACTIONS(6502), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(2989), 21, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298051,49 +297046,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101326] = 14, + [96873] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6359), 1, + ACTIONS(6500), 1, anon_sym_STAR, - STATE(3131), 1, + ACTIONS(6504), 1, + anon_sym_async, + STATE(3081), 1, sym_comment, - STATE(4807), 1, + STATE(3925), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6525), 2, + ACTIONS(6506), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(2989), 21, + ACTIONS(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -298110,16 +297106,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101399] = 6, + [96948] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_EQ, - STATE(3132), 1, + STATE(3082), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(6508), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298133,14 +297131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 27, - sym__automatic_semicolon, + ACTIONS(5325), 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, @@ -298161,39 +297157,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101456] = 7, + [97005] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3133), 1, + ACTIONS(5804), 1, + anon_sym_LBRACK, + STATE(3083), 1, sym_comment, - ACTIONS(5045), 2, + ACTIONS(5367), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5807), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5043), 4, + ACTIONS(5770), 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(5772), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97066] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6510), 1, + sym__automatic_semicolon, + STATE(3084), 1, + sym_comment, + ACTIONS(2381), 4, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(2333), 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, + [97125] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3085), 1, + sym_comment, + ACTIONS(2375), 5, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2265), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2269), 23, + 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, @@ -298213,120 +297313,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101515] = 34, + [97182] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6317), 1, + ACTIONS(6287), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6289), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6299), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6307), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6315), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6317), 1, sym__ternary_qmark, - ACTIONS(6527), 1, - anon_sym_COLON, - STATE(2313), 1, + ACTIONS(6512), 1, + anon_sym_RBRACK, + STATE(2305), 1, sym_type_arguments, - STATE(3134), 1, + STATE(3086), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101628] = 9, + [97295] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5378), 1, - anon_sym_QMARK, - STATE(3135), 1, + STATE(3087), 1, sym_comment, - ACTIONS(5380), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5837), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5834), 3, + ACTIONS(2371), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5822), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 22, + ACTIONS(2259), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -298346,50 +297443,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101691] = 11, + [97352] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5091), 1, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6271), 1, + anon_sym_STAR, + STATE(3088), 1, + sym_comment, + STATE(4684), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6514), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, anon_sym_EQ, - ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5331), 1, - anon_sym_RBRACE, - STATE(3136), 1, - sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1035), 6, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2482), 29, + ACTIONS(2996), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -298402,39 +297502,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101758] = 7, + [97425] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3137), 1, - sym_comment, - ACTIONS(6270), 2, - anon_sym_EQ, + ACTIONS(5042), 1, anon_sym_QMARK, - ACTIONS(6272), 3, - anon_sym_COMMA, + STATE(3089), 1, + sym_comment, + ACTIONS(5044), 2, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + anon_sym_extends, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5871), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4225), 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(4222), 23, + ACTIONS(4229), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -298454,43 +297556,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101817] = 18, + [97488] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6428), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5834), 1, + anon_sym_of, + ACTIONS(6332), 1, + anon_sym_GT, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6342), 1, + anon_sym_AMP, + ACTIONS(6344), 1, + anon_sym_CARET, + ACTIONS(6346), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6529), 1, + ACTIONS(6354), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6362), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6364), 1, + sym__ternary_qmark, + ACTIONS(6516), 1, + anon_sym_in, + STATE(2305), 1, sym_type_arguments, - STATE(3138), 1, + STATE(3090), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2631), 2, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6358), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6360), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 10, + ACTIONS(6356), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97603] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + STATE(3091), 1, + sym_comment, + STATE(2650), 2, + sym_template_string, + sym_arguments, + ACTIONS(6519), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4990), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -298499,39 +297664,40 @@ 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(5515), 15, + ACTIONS(4992), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [101898] = 7, + [97666] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3139), 1, + STATE(3092), 1, sym_comment, - ACTIONS(6270), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6272), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(5609), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298545,10 +297711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5611), 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, @@ -298569,14 +297740,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101957] = 5, + [97721] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3140), 1, + ACTIONS(4359), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_extends, + STATE(3093), 1, + sym_comment, + ACTIONS(5871), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(4229), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97784] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3094), 1, sym_comment, - ACTIONS(5664), 13, + ACTIONS(5607), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298590,7 +297815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5666), 28, + ACTIONS(5567), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -298619,289 +297844,673 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102012] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [97839] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5331), 1, - anon_sym_RBRACE, - STATE(3141), 1, - sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1035), 6, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5658), 1, anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2486), 29, - anon_sym_export, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3095), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [102079] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97952] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6125), 1, - anon_sym_RBRACE, - STATE(3142), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5591), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3096), 1, sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98065] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5595), 1, anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102162] = 8, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3097), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98178] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5834), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - STATE(3143), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5541), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3098), 1, sym_comment, - ACTIONS(5380), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5837), 3, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98291] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5497), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(5822), 10, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3099), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98404] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5567), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3100), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98517] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5545), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, anon_sym_AMP_AMP, + ACTIONS(6454), 1, anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3101), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 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(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 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, - [102223] = 34, + [98630] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6317), 1, + ACTIONS(5690), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6454), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6456), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6460), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6462), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6466), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6474), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6476), 1, sym__ternary_qmark, - ACTIONS(6532), 1, - anon_sym_COLON, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3144), 1, + STATE(3102), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6458), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6468), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102336] = 5, + [98743] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3145), 1, + ACTIONS(4363), 1, + anon_sym_EQ, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(3103), 1, sym_comment, - ACTIONS(5851), 13, + ACTIONS(5044), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(5853), 28, + ACTIONS(4229), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -298921,147 +298530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102391] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [98806] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6125), 1, - anon_sym_RBRACE, - STATE(3146), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102472] = 14, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(6521), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_STAR, - STATE(3147), 1, - sym_comment, - STATE(4828), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6536), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102545] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - STATE(3148), 1, + STATE(3104), 1, sym_comment, - STATE(2647), 2, - sym_template_string, - sym_arguments, - ACTIONS(6538), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4993), 13, + ACTIONS(2405), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2301), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299075,9 +298556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 21, + ACTIONS(2305), 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, @@ -299096,163 +298580,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [102608] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6540), 1, - anon_sym_STAR, - ACTIONS(6542), 1, - anon_sym_async, - STATE(3149), 1, - sym_comment, - STATE(3931), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6544), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102683] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5511), 1, - anon_sym_LBRACK, - ACTIONS(6209), 1, - anon_sym_STAR, - ACTIONS(6211), 1, - anon_sym_async, - STATE(3150), 1, - sym_comment, - STATE(3981), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6215), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102758] = 10, + [98865] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4348), 1, - anon_sym_COLON, - ACTIONS(5544), 1, - anon_sym_LBRACK, - STATE(3151), 1, + STATE(3105), 1, sym_comment, - ACTIONS(5547), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5011), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + ACTIONS(5597), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5599), 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, @@ -299272,14 +298632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102823] = 5, + [98920] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3152), 1, + STATE(3106), 1, sym_comment, - ACTIONS(5822), 13, + ACTIONS(5582), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299293,7 +298653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 28, + ACTIONS(5497), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299322,98 +298682,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102878] = 34, + [98975] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6317), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6454), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6456), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6460), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6462), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6466), 1, anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - ACTIONS(6546), 1, - anon_sym_COLON, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3153), 1, + STATE(3107), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6458), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [99080] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6466), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3108), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(5420), 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, - STATE(2631), 2, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [99171] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6327), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3109), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(5422), 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(5420), 14, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102991] = 7, + [99254] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6548), 1, + ACTIONS(6523), 1, sym__automatic_semicolon, - STATE(3154), 1, + STATE(3110), 1, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2409), 2, anon_sym_else, anon_sym_while, - ACTIONS(2166), 13, + ACTIONS(2309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299427,7 +298915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2170), 25, + ACTIONS(2313), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -299453,78 +298941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103050] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6209), 1, - anon_sym_STAR, - STATE(3155), 1, - sym_comment, - STATE(4790), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6550), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103123] = 7, + [99313] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6552), 1, + ACTIONS(6525), 1, sym__automatic_semicolon, - STATE(3156), 1, + STATE(3111), 1, sym_comment, - ACTIONS(2344), 2, + ACTIONS(2413), 2, anon_sym_else, anon_sym_while, - ACTIONS(2158), 13, + ACTIONS(2291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299538,7 +298967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2162), 25, + ACTIONS(2295), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -299564,18 +298993,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103182] = 6, + [99372] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6472), 1, - sym_regex_flags, - STATE(3157), 1, + STATE(3112), 1, sym_comment, - ACTIONS(6154), 16, + ACTIONS(6135), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6137), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -299588,15 +299021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6156), 24, - sym__automatic_semicolon, + ACTIONS(4229), 23, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -299612,18 +299040,48 @@ 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, - [103239] = 5, + anon_sym_satisfies, + [99431] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3158), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6327), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3113), 1, sym_comment, - ACTIONS(5656), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -299632,263 +299090,328 @@ 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(5658), 28, - sym__automatic_semicolon, + ACTIONS(5420), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_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, + [99512] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6466), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3114), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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, - [103294] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [99611] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(6184), 1, - anon_sym_STAR, - STATE(3159), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6466), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3115), 1, sym_comment, - STATE(4686), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6554), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5422), 2, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 8, + sym__ternary_qmark, + anon_sym_as, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103367] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [99708] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - STATE(3160), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6466), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3116), 1, sym_comment, - STATE(4803), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6014), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 8, + sym__ternary_qmark, + anon_sym_as, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103440] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [99803] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1039), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5091), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4367), 1, anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(3161), 1, + ACTIONS(4373), 1, + anon_sym_QMARK, + STATE(3117), 1, sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, + ACTIONS(4370), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(4225), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + 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(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103523] = 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 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, + [99864] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1039), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6527), 1, anon_sym_STAR, - STATE(3162), 1, + STATE(3118), 1, sym_comment, - STATE(4691), 1, + STATE(4775), 1, sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6529), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -299910,14 +299433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103604] = 5, + [99937] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3163), 1, + STATE(3119), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(5758), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299931,7 +299454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 28, + ACTIONS(5760), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299960,128 +299483,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103659] = 5, + [99992] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3164), 1, - sym_comment, - ACTIONS(5830), 13, - anon_sym_STAR, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6456), 1, anon_sym_GT_GT, + ACTIONS(6460), 1, anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3120), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5832), 28, - sym__automatic_semicolon, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [100095] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 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(5422), 1, + anon_sym_BANG, + ACTIONS(6323), 1, anon_sym_PERCENT, + ACTIONS(6325), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3121), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 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, - [103714] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(3165), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103797] = 5, + ACTIONS(5420), 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, + [100196] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3166), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6327), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3122), 1, sym_comment, - ACTIONS(5652), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300092,127 +299672,56 @@ 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), 28, - sym__automatic_semicolon, + ACTIONS(5420), 16, sym__ternary_qmark, anon_sym_as, - anon_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, - [103852] = 15, + [100273] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6366), 1, anon_sym_STAR, - ACTIONS(6131), 1, + ACTIONS(6531), 1, anon_sym_async, - STATE(3167), 1, - sym_comment, - STATE(4000), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6135), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103927] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6556), 1, - anon_sym_STAR, - STATE(3168), 1, + STATE(3123), 1, sym_comment, - STATE(4689), 1, + STATE(3923), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6558), 2, + ACTIONS(6533), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -300221,12 +299730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -300243,37 +299751,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104000] = 5, + [100348] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3169), 1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5215), 1, + anon_sym_LBRACK, + STATE(3124), 1, sym_comment, - ACTIONS(5801), 13, + ACTIONS(5221), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5218), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5209), 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(5803), 28, + ACTIONS(5213), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -300293,14 +299805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104055] = 5, + [100411] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3170), 1, + STATE(3125), 1, sym_comment, - ACTIONS(5818), 13, + ACTIONS(5580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300314,7 +299826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5820), 28, + ACTIONS(5541), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300343,71 +299855,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104110] = 5, + [100466] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3171), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6466), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3126), 1, sym_comment, - ACTIONS(5826), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5828), 28, - sym__automatic_semicolon, + ACTIONS(5420), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_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, + [100553] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5533), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, anon_sym_AMP_AMP, + ACTIONS(6454), 1, anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3127), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100666] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5539), 1, + anon_sym_COLON, + ACTIONS(6323), 1, anon_sym_PERCENT, + ACTIONS(6325), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3128), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [100779] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5601), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3129), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100892] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, anon_sym_satisfies, - [104165] = 7, + ACTIONS(5639), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3130), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101005] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3172), 1, + STATE(3131), 1, sym_comment, - ACTIONS(6219), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6221), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(5576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300421,10 +300258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5578), 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, @@ -300445,14 +300287,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104224] = 5, + [101060] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3173), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5645), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3132), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101173] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(6466), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3133), 1, sym_comment, - ACTIONS(5855), 13, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300463,18 +300397,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(5857), 28, - sym__automatic_semicolon, + ACTIONS(5637), 22, 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, @@ -300493,81 +300421,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, - [104279] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [101240] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(3174), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6535), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [104360] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - STATE(3175), 1, + STATE(2305), 1, + sym_type_arguments, + STATE(3134), 1, sym_comment, - ACTIONS(4218), 13, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5613), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300578,20 +300459,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(4222), 27, + ACTIONS(5615), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -300607,39 +300480,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [104417] = 5, + [101313] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3176), 1, + ACTIONS(5008), 1, + anon_sym_LBRACK, + STATE(3135), 1, sym_comment, - ACTIONS(5715), 13, + ACTIONS(3612), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5011), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2149), 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(5717), 28, + ACTIONS(2155), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -300659,114 +300535,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104472] = 34, + [101376] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6317), 1, + ACTIONS(5561), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6338), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6344), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6346), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6350), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6354), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6362), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6364), 1, sym__ternary_qmark, - ACTIONS(6560), 1, - anon_sym_COLON, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3177), 1, + STATE(3136), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6332), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6340), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6358), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6356), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104585] = 14, + [101489] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6562), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6538), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3178), 1, + STATE(3137), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(2631), 2, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5759), 12, + ACTIONS(5569), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -300777,10 +300661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5761), 19, + ACTIONS(5571), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -300794,67 +300677,36 @@ 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, - [104658] = 5, + [101570] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3179), 1, - sym_comment, - ACTIONS(5646), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5648), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 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, + ACTIONS(6541), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3138), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104713] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3180), 1, - sym_comment, - ACTIONS(5644), 13, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300865,21 +300717,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(5519), 28, - sym__automatic_semicolon, + ACTIONS(5586), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -300893,39 +300736,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [104768] = 14, + [101645] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(5779), 1, + ACTIONS(6370), 1, anon_sym_STAR, - STATE(3181), 1, + ACTIONS(6544), 1, + anon_sym_async, + STATE(3139), 1, sym_comment, - STATE(4687), 1, + STATE(3935), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6565), 2, + ACTIONS(6546), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -300934,12 +300776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -300956,135 +300797,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104841] = 34, + [101720] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(3140), 1, + sym_comment, + ACTIONS(5732), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5734), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5602), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3182), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6438), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [104954] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101775] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5871), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6567), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3183), 1, + STATE(3141), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, - anon_sym_STAR, - anon_sym_in, + ACTIONS(5044), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5874), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4225), 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(5616), 15, + ACTIONS(4229), 25, sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -301098,39 +300896,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [105035] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101836] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6570), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3184), 1, + ACTIONS(6548), 1, + sym_regex_flags, + STATE(3142), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5680), 12, + ACTIONS(6125), 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, @@ -301138,12 +300922,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5682), 17, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6127), 23, + sym__automatic_semicolon, 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, @@ -301156,21 +300948,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [105110] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [101893] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6573), 1, - sym__automatic_semicolon, - STATE(3185), 1, + STATE(3143), 1, sym_comment, - ACTIONS(2328), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2178), 13, + ACTIONS(2477), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301184,12 +300978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2182), 25, + ACTIONS(2249), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -301210,14 +301002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105169] = 5, + [101950] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3186), 1, + ACTIONS(6550), 1, + sym__automatic_semicolon, + STATE(3144), 1, sym_comment, - ACTIONS(5871), 13, + ACTIONS(2477), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301231,14 +301028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5873), 28, - sym__automatic_semicolon, + ACTIONS(2249), 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, @@ -301260,46 +301054,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105224] = 15, + [102009] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + anon_sym_STAR, + STATE(3145), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6552), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102082] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6113), 1, + anon_sym_STAR, + STATE(3146), 1, + sym_comment, + STATE(4848), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6554), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102155] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + ACTIONS(6556), 1, + anon_sym_COLON, + STATE(2305), 1, + sym_type_arguments, + STATE(3147), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102268] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + anon_sym_STAR, + ACTIONS(6251), 1, + anon_sym_async, + STATE(3148), 1, + sym_comment, + STATE(3986), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6255), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102343] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5625), 1, anon_sym_LBRACK, - ACTIONS(6184), 1, + ACTIONS(6170), 1, anon_sym_STAR, - ACTIONS(6186), 1, + ACTIONS(6172), 1, anon_sym_async, - STATE(3187), 1, + STATE(3149), 1, sym_comment, - STATE(3909), 1, + STATE(3947), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6188), 2, + ACTIONS(6176), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, + ACTIONS(992), 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(4498), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301320,49 +301371,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105299] = 14, + [102418] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6096), 1, anon_sym_STAR, - STATE(3188), 1, + ACTIONS(6247), 1, + anon_sym_RBRACE, + STATE(3150), 1, sym_comment, - STATE(4721), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6575), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2996), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -301379,50 +301435,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105372] = 15, + [102501] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6558), 1, anon_sym_STAR, - ACTIONS(6117), 1, - anon_sym_async, - STATE(3189), 1, + STATE(3151), 1, sym_comment, - STATE(3913), 1, + STATE(4690), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6119), 2, + ACTIONS(6560), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, + ACTIONS(992), 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(4498), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -301439,88 +301494,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105447] = 6, + [102574] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3190), 1, - sym_comment, - ACTIONS(2332), 5, - sym__automatic_semicolon, + ACTIONS(233), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2194), 13, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 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(6247), 1, + anon_sym_RBRACE, + STATE(3152), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2198), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102655] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5658), 1, + anon_sym_of, + ACTIONS(6334), 1, anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6338), 1, + anon_sym_GT_GT, + ACTIONS(6342), 1, + anon_sym_AMP, + ACTIONS(6344), 1, anon_sym_CARET, + ACTIONS(6346), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_PERCENT, + ACTIONS(6352), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6354), 1, + anon_sym_LT, + ACTIONS(6362), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6364), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3153), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6330), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6332), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6340), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6358), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6360), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6356), 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, - [105504] = 15, + [102768] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6534), 1, + ACTIONS(6170), 1, anon_sym_STAR, - ACTIONS(6577), 1, - anon_sym_async, - STATE(3191), 1, + STATE(3154), 1, sym_comment, - STATE(3996), 1, + STATE(4849), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6579), 2, + ACTIONS(6562), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -301529,11 +301673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4498), 20, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -301550,15 +301695,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105579] = 5, + [102841] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3192), 1, + ACTIONS(6548), 1, + sym_regex_flags, + STATE(3155), 1, sym_comment, - ACTIONS(5696), 13, + ACTIONS(6125), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -301571,14 +301719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5698), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6127), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -301595,378 +301743,174 @@ 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, - [105634] = 34, + [102898] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(3156), 1, + sym_comment, + ACTIONS(5786), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5527), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3193), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102953] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6564), 1, + sym__automatic_semicolon, + STATE(3157), 1, + sym_comment, + ACTIONS(2425), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2319), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [105747] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(2323), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5670), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3194), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103012] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3158), 1, + sym_comment, + ACTIONS(5825), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [105860] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5827), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5473), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3195), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6438), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [105973] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103067] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_STAR, - STATE(3196), 1, - sym_comment, - STATE(4740), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6583), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106046] = 15, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(6566), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6390), 1, - anon_sym_STAR, - ACTIONS(6392), 1, - anon_sym_async, - STATE(3197), 1, - sym_comment, - STATE(3905), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6394), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106121] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3198), 1, + STATE(3159), 1, sym_comment, - ACTIONS(2428), 2, + ACTIONS(2429), 2, anon_sym_else, anon_sym_while, - ACTIONS(2256), 13, + ACTIONS(2275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301980,8 +301924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2258), 26, - sym__automatic_semicolon, + ACTIONS(2279), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -302007,14 +301950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106178] = 5, + [103126] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3199), 1, + STATE(3160), 1, sym_comment, - ACTIONS(5608), 13, + ACTIONS(5766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302028,7 +301971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5610), 28, + ACTIONS(5768), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -302057,179 +302000,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106233] = 34, + [103181] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(3161), 1, + sym_comment, + ACTIONS(5762), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5764), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5519), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3200), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103236] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3162), 1, + sym_comment, + ACTIONS(5744), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106346] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5746), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5523), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3201), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103291] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3163), 1, + sym_comment, + ACTIONS(5740), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(5742), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [106459] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103346] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6585), 1, - sym__automatic_semicolon, - STATE(3202), 1, + STATE(3164), 1, sym_comment, - ACTIONS(2328), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2178), 13, + ACTIONS(2275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302243,10 +302171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2182), 23, + ACTIONS(2279), 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, @@ -302267,100 +302200,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106518] = 34, + [103401] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5525), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, + ACTIONS(6454), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, + ACTIONS(6456), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, + ACTIONS(6460), 1, anon_sym_AMP, - ACTIONS(6422), 1, + ACTIONS(6462), 1, anon_sym_CARET, - ACTIONS(6424), 1, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(6428), 1, - anon_sym_PERCENT, - ACTIONS(6430), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6466), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6474), 1, anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, + ACTIONS(6476), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(6568), 1, + anon_sym_COLON, + STATE(2305), 1, sym_type_arguments, - STATE(3203), 1, + STATE(3165), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6458), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6468), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [106631] = 7, + [103514] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3204), 1, + STATE(3166), 1, sym_comment, - ACTIONS(6587), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6589), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(2319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302374,10 +302300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(2323), 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, @@ -302398,14 +302329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106690] = 5, + [103569] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3205), 1, + STATE(3167), 1, sym_comment, - ACTIONS(5734), 13, + ACTIONS(2291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302419,7 +302350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5736), 28, + ACTIONS(2295), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -302448,285 +302379,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106745] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [103624] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6201), 1, - anon_sym_RBRACE, - STATE(3206), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106826] = 15, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6591), 1, - anon_sym_STAR, - ACTIONS(6593), 1, - anon_sym_async, - STATE(3207), 1, - sym_comment, - STATE(3907), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6595), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4498), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106901] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(6591), 1, - anon_sym_STAR, - STATE(3208), 1, - sym_comment, - STATE(4674), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6597), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106974] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6201), 1, - anon_sym_RBRACE, - STATE(3209), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + ACTIONS(6570), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [107057] = 7, + STATE(2305), 1, + sym_type_arguments, + STATE(3168), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103737] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6599), 1, - sym__automatic_semicolon, - STATE(3210), 1, + STATE(3169), 1, sym_comment, - ACTIONS(2332), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2194), 13, + ACTIONS(5207), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5205), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4225), 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(2198), 25, + ACTIONS(4229), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -302746,39 +302510,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107116] = 7, + [103796] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6601), 1, - sym__automatic_semicolon, - STATE(3211), 1, + ACTIONS(5365), 1, + anon_sym_QMARK, + STATE(3170), 1, sym_comment, - ACTIONS(2318), 4, + ACTIONS(5367), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5807), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5804), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2216), 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(5770), 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(2220), 23, + ACTIONS(5772), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -302798,106 +302564,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107175] = 11, + [103859] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5093), 1, - anon_sym_COMMA, - ACTIONS(5408), 1, - anon_sym_RBRACE, - STATE(3212), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2486), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1972), 1, anon_sym_DQUOTE, + ACTIONS(1974), 1, anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6572), 1, + anon_sym_STAR, + STATE(3171), 1, + sym_comment, + STATE(4818), 1, + sym__property_name, + ACTIONS(2830), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6574), 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, - [107242] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, anon_sym_EQ, - ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5408), 1, - anon_sym_RBRACE, - STATE(3213), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 6, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2482), 29, + ACTIONS(2996), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -302910,50 +302623,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107309] = 15, + [103932] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4349), 1, + anon_sym_COLON, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(3172), 1, + sym_comment, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5044), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4225), 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(4229), 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, + [103997] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6603), 1, + ACTIONS(5845), 1, anon_sym_STAR, - ACTIONS(6605), 1, - anon_sym_async, - STATE(3214), 1, + STATE(3173), 1, sym_comment, - STATE(3993), 1, + STATE(4720), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6607), 2, + ACTIONS(6576), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(4498), 20, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -302970,20 +302737,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107384] = 6, + [104070] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3215), 1, + STATE(3174), 1, sym_comment, - ACTIONS(2344), 5, + ACTIONS(2357), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2158), 13, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302997,7 +302764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2162), 23, + ACTIONS(2201), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -303021,20 +302788,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107441] = 6, + [104127] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3216), 1, + STATE(3175), 1, sym_comment, - ACTIONS(2348), 5, + ACTIONS(5700), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5702), 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_PIPE_RBRACE, - ACTIONS(2166), 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104182] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3176), 1, + sym_comment, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303048,10 +302859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2170), 23, + 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, anon_sym_QMARK_DOT, @@ -303072,90 +302888,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107498] = 23, + [104237] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6428), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6323), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6325), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + ACTIONS(6578), 1, + anon_sym_COLON, + STATE(2305), 1, sym_type_arguments, - STATE(3217), 1, + STATE(3177), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6458), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6468), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5517), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [107589] = 8, + [104350] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4321), 1, - anon_sym_EQ, - ACTIONS(4439), 1, - anon_sym_in, - ACTIONS(4442), 1, - anon_sym_of, - STATE(3218), 1, + STATE(3178), 1, sym_comment, - ACTIONS(4218), 12, + ACTIONS(2309), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -303166,12 +302988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, + ACTIONS(2313), 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, @@ -303193,14 +303017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107650] = 5, + [104405] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3219), 1, + STATE(3179), 1, sym_comment, - ACTIONS(5730), 13, + ACTIONS(2301), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303214,7 +303038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5732), 28, + ACTIONS(2305), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -303243,21 +303067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107705] = 7, + [104460] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3220), 1, + STATE(3180), 1, sym_comment, - ACTIONS(6171), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6229), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303271,10 +303088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5325), 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, @@ -303295,14 +303117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107764] = 5, + [104515] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3221), 1, + STATE(3181), 1, sym_comment, - ACTIONS(5775), 13, + ACTIONS(5774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303316,7 +303138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 28, + ACTIONS(5776), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -303345,14 +303167,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107819] = 5, + [104570] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3222), 1, + STATE(3182), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(6580), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6582), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303366,15 +303195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 28, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -303395,271 +303219,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107874] = 34, + [104629] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5600), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, - anon_sym_AMP_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, - anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, - anon_sym_PERCENT, - ACTIONS(6430), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3223), 1, + STATE(3183), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(5778), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107987] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, - anon_sym_BANG, - ACTIONS(6412), 1, - anon_sym_AMP_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6422), 1, - anon_sym_CARET, - ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6428), 1, - anon_sym_PERCENT, - ACTIONS(6430), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3224), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 5, + ACTIONS(5780), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [108092] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5604), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3225), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6438), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [108205] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104684] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3226), 1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5215), 1, + anon_sym_LBRACK, + ACTIONS(6005), 1, + anon_sym_COLON, + STATE(3184), 1, sym_comment, - ACTIONS(5137), 3, + ACTIONS(5218), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5221), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5347), 13, + ACTIONS(5209), 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(5349), 25, + ACTIONS(5213), 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, @@ -303679,39 +303324,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108262] = 7, + [104749] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3227), 1, + ACTIONS(5008), 1, + anon_sym_LBRACK, + ACTIONS(6033), 1, + anon_sym_COLON, + STATE(3185), 1, sym_comment, - ACTIONS(6609), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6611), 3, + ACTIONS(5011), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3612), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2149), 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(4222), 23, + ACTIONS(2155), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -303731,106 +303379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108321] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6319), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, - anon_sym_GT_GT, - ACTIONS(6325), 1, - anon_sym_AMP, - ACTIONS(6327), 1, - anon_sym_CARET, - ACTIONS(6329), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, - anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - ACTIONS(6613), 1, - anon_sym_COLON, - STATE(2313), 1, - sym_type_arguments, - STATE(3228), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6313), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6339), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [108434] = 11, + [104814] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3229), 1, + STATE(3186), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5792), 12, + ACTIONS(5782), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303841,13 +303397,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(5794), 22, + ACTIONS(5784), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -303865,81 +303427,23 @@ 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, - [108501] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_STAR, - STATE(3230), 1, - sym_comment, - STATE(4822), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6615), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [108574] = 7, + [104869] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3231), 1, + STATE(3187), 1, sym_comment, - ACTIONS(6609), 2, + ACTIONS(6222), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(6611), 3, + ACTIONS(6224), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303953,7 +303457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -303977,21 +303481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108633] = 7, + [104928] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3232), 1, + ACTIONS(6584), 1, + sym__automatic_semicolon, + STATE(3188), 1, sym_comment, - ACTIONS(6609), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6611), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(2437), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304005,10 +303507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(2341), 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, @@ -304029,45 +303533,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108692] = 19, + [104987] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6430), 1, - anon_sym_STAR_STAR, - ACTIONS(6529), 1, + ACTIONS(6586), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3233), 1, + STATE(3189), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 11, + ACTIONS(5613), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -304078,31 +303572,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 14, + ACTIONS(5615), 19, sym__ternary_qmark, - anon_sym_RBRACK, + 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, - [108775] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [105060] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3234), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5561), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, + anon_sym_AMP_AMP, + ACTIONS(6454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6456), 1, + anon_sym_GT_GT, + ACTIONS(6460), 1, + anon_sym_AMP, + ACTIONS(6462), 1, + anon_sym_CARET, + ACTIONS(6464), 1, + anon_sym_PIPE, + ACTIONS(6466), 1, + anon_sym_LT, + ACTIONS(6474), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6476), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3190), 1, sym_comment, - ACTIONS(2270), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6319), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6458), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6470), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6472), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6468), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105173] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6589), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3191), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5569), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -304111,21 +303716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2274), 28, - sym__automatic_semicolon, + ACTIONS(5571), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -304139,18 +303734,36 @@ 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, - [108830] = 5, + [105254] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3235), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6592), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3192), 1, sym_comment, - ACTIONS(2232), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304161,21 +303774,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(2236), 28, - sym__automatic_semicolon, + ACTIONS(5586), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -304189,21 +303793,23 @@ 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, - [108885] = 5, + [105329] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3236), 1, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(4471), 1, + anon_sym_in, + ACTIONS(4474), 1, + anon_sym_of, + STATE(3193), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(4225), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -304214,14 +303820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2228), 28, + ACTIONS(4229), 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, @@ -304243,14 +303847,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108940] = 5, + [105390] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6393), 1, + anon_sym_STAR, + ACTIONS(6595), 1, + anon_sym_async, + STATE(3194), 1, + sym_comment, + STATE(3941), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6597), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105465] = 14, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(3237), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6599), 1, + anon_sym_STAR, + STATE(3195), 1, + sym_comment, + STATE(4824), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6601), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105538] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3196), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304264,7 +303987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2220), 28, + ACTIONS(2259), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -304293,14 +304016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108995] = 5, + [105593] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3238), 1, + STATE(3197), 1, sym_comment, - ACTIONS(2166), 13, + ACTIONS(2265), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304314,7 +304037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2170), 28, + ACTIONS(2269), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -304343,14 +304066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109050] = 5, + [105648] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3239), 1, + STATE(3198), 1, sym_comment, - ACTIONS(5628), 13, + ACTIONS(2329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304364,7 +304087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5630), 28, + ACTIONS(2333), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -304393,14 +304116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109105] = 5, + [105703] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3240), 1, + STATE(3199), 1, sym_comment, - ACTIONS(5632), 13, + ACTIONS(2163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304414,7 +304137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 28, + ACTIONS(2167), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -304443,50 +304166,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109160] = 15, + [105758] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6390), 1, + ACTIONS(6096), 1, anon_sym_STAR, - ACTIONS(6392), 1, - anon_sym_async, - STATE(3241), 1, + ACTIONS(6121), 1, + anon_sym_RBRACE, + STATE(3200), 1, sym_comment, - STATE(3918), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6394), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 20, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -304503,55 +304229,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109235] = 16, + [105839] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3242), 1, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6121), 1, + anon_sym_RBRACE, + STATE(3201), 1, sym_comment, - STATE(7169), 1, + STATE(4658), 1, sym__property_name, - STATE(7205), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6619), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4459), 2, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - STATE(6535), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6617), 23, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -304564,301 +304293,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109312] = 5, + [105922] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3243), 1, - sym_comment, - ACTIONS(5540), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5542), 28, + ACTIONS(4649), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, anon_sym_COMMA, + ACTIONS(5202), 1, anon_sym_RBRACE, + STATE(3202), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 6, 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, - [109367] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5698), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, - anon_sym_AMP_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, - anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, - anon_sym_PERCENT, - ACTIONS(6430), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3244), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2487), 29, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [109480] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5676), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, - anon_sym_AMP_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6422), 1, - anon_sym_CARET, - ACTIONS(6424), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, - anon_sym_PERCENT, - ACTIONS(6430), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3245), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [109593] = 34, + 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, + [105989] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5678), 1, - anon_sym_RBRACK, - ACTIONS(6412), 1, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, + ACTIONS(6454), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, + ACTIONS(6456), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, + ACTIONS(6460), 1, anon_sym_AMP, - ACTIONS(6422), 1, + ACTIONS(6462), 1, anon_sym_CARET, - ACTIONS(6424), 1, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(6428), 1, - anon_sym_PERCENT, - ACTIONS(6430), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6466), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6474), 1, anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, + ACTIONS(6476), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(6603), 1, + anon_sym_COLON, + STATE(2305), 1, sym_type_arguments, - STATE(3246), 1, + STATE(3203), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6458), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6468), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109706] = 5, + [106102] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1056), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3204), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [106185] = 18, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(3247), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1056), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3205), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [106266] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3206), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(5557), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304872,7 +304576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2198), 28, + ACTIONS(5559), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -304901,14 +304605,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109761] = 5, + [106321] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3248), 1, + STATE(3207), 1, sym_comment, - ACTIONS(2178), 13, + ACTIONS(6605), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6607), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304922,15 +304633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2182), 28, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -304951,14 +304657,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109816] = 5, + [106380] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(3208), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2485), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [106447] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3249), 1, + STATE(3209), 1, sym_comment, - ACTIONS(5536), 13, + ACTIONS(6609), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6611), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304972,15 +304741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5538), 28, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -305001,14 +304765,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109871] = 5, + [106506] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3250), 1, + STATE(3210), 1, sym_comment, - ACTIONS(5532), 13, + ACTIONS(6609), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6611), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305022,15 +304793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5534), 28, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -305051,33 +304817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109926] = 14, + [106565] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6621), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3251), 1, + STATE(3211), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5759), 12, + ACTIONS(6609), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6611), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305088,12 +304842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5761), 19, + ACTIONS(4229), 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, @@ -305109,123 +304867,102 @@ 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, - [109999] = 34, + [106624] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5602), 1, - anon_sym_COLON, - ACTIONS(6317), 1, + ACTIONS(6323), 1, + anon_sym_PERCENT, + ACTIONS(6325), 1, + anon_sym_STAR_STAR, + ACTIONS(6452), 1, anon_sym_AMP_AMP, - ACTIONS(6319), 1, + ACTIONS(6454), 1, anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(6456), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6460), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6462), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6464), 1, anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_PERCENT, - ACTIONS(6335), 1, - anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6466), 1, anon_sym_LT, - ACTIONS(6345), 1, + ACTIONS(6474), 1, anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, + ACTIONS(6476), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(6613), 1, + anon_sym_COLON, + STATE(2305), 1, sym_type_arguments, - STATE(3252), 1, + STATE(3212), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6448), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6458), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6470), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6472), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6468), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110112] = 18, + [106737] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6624), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3253), 1, + ACTIONS(6615), 1, + sym__automatic_semicolon, + STATE(3213), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, + ACTIONS(2445), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2283), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -305234,11 +304971,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(5616), 15, + ACTIONS(2287), 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, @@ -305252,36 +304996,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110193] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106796] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6627), 1, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3254), 1, + STATE(3214), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5680), 12, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305294,10 +305033,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5682), 17, + ACTIONS(5637), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -305311,525 +305053,598 @@ 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, - [110268] = 34, + [106863] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5509), 1, + ACTIONS(5645), 1, anon_sym_RBRACK, - ACTIONS(6412), 1, + ACTIONS(6287), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, + ACTIONS(6289), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6422), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6424), 1, + ACTIONS(6299), 1, anon_sym_PIPE, - ACTIONS(6428), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6307), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6315), 1, anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, + ACTIONS(6317), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3255), 1, + STATE(3215), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110381] = 34, + [106976] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(5513), 1, + ACTIONS(5639), 1, anon_sym_RBRACK, - ACTIONS(6412), 1, + ACTIONS(6287), 1, anon_sym_AMP_AMP, - ACTIONS(6414), 1, + ACTIONS(6289), 1, anon_sym_PIPE_PIPE, - ACTIONS(6416), 1, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6422), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6424), 1, + ACTIONS(6299), 1, anon_sym_PIPE, - ACTIONS(6428), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6307), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6315), 1, anon_sym_QMARK_QMARK, - ACTIONS(6442), 1, + ACTIONS(6317), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3256), 1, + STATE(3216), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110494] = 21, + [107089] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6416), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5601), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6428), 1, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3257), 1, + STATE(3217), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6418), 2, + ACTIONS(6283), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 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, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [110581] = 16, + [107202] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6430), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5539), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, + anon_sym_PERCENT, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6529), 1, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3258), 1, + STATE(3218), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 12, + ACTIONS(6281), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 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, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [110658] = 28, + [107315] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(6416), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5533), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6422), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6424), 1, + ACTIONS(6299), 1, anon_sym_PIPE, - ACTIONS(6428), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3259), 1, + STATE(3219), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [110759] = 6, + [107428] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3260), 1, - sym_comment, - ACTIONS(2364), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2240), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2244), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 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(6291), 1, + anon_sym_GT_GT, + ACTIONS(6303), 1, anon_sym_PERCENT, + ACTIONS(6305), 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, + ACTIONS(6307), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3220), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [110816] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3261), 1, - sym_comment, - ACTIONS(2428), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2256), 13, + ACTIONS(6281), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(2258), 23, + ACTIONS(5420), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [110873] = 5, + [107515] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3262), 1, - sym_comment, - ACTIONS(2286), 13, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6617), 1, anon_sym_STAR, + STATE(3221), 1, + sym_comment, + STATE(4805), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6619), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(2290), 28, + anon_sym_QMARK, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107588] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, + anon_sym_STAR, + STATE(3222), 1, + sym_comment, + STATE(4753), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6621), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [110928] = 5, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107661] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3263), 1, + ACTIONS(4311), 1, + anon_sym_EQ, + STATE(3223), 1, sym_comment, - ACTIONS(2278), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305843,12 +305658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2282), 28, + ACTIONS(4229), 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, @@ -305872,66 +305686,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110983] = 7, + [107718] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3264), 1, - sym_comment, - ACTIONS(6630), 2, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6632), 3, + ACTIONS(5058), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5415), 1, + anon_sym_RBRACE, + STATE(3224), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4218), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2485), 29, + 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_type, + anon_sym_namespace, + anon_sym_let, + 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, + [107785] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5058), 1, + anon_sym_COMMA, + ACTIONS(5415), 1, + anon_sym_RBRACE, + STATE(3225), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2487), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [107852] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(6305), 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, + ACTIONS(6623), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3226), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [111042] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3265), 1, - sym_comment, - ACTIONS(2240), 13, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305942,81 +305840,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2244), 28, - sym__automatic_semicolon, + ACTIONS(5420), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [111097] = 14, + [107929] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6634), 1, + ACTIONS(6096), 1, anon_sym_STAR, - STATE(3266), 1, + ACTIONS(6098), 1, + anon_sym_RBRACE, + STATE(3227), 1, sym_comment, - STATE(4821), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6636), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, + ACTIONS(2996), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -306033,54 +305923,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111170] = 19, + [108012] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(1014), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6096), 1, anon_sym_STAR, - STATE(3267), 1, + ACTIONS(6098), 1, + anon_sym_RBRACE, + STATE(3228), 1, sym_comment, - STATE(4691), 1, + STATE(4658), 1, sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -306097,96 +305986,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111253] = 7, + [108093] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6638), 1, - sym__automatic_semicolon, - STATE(3268), 1, - sym_comment, - ACTIONS(2400), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2304), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2308), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(233), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1058), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 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, - [111312] = 14, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3229), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108176] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1058), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6096), 1, anon_sym_STAR, - STATE(3269), 1, + STATE(3230), 1, sym_comment, - STATE(4731), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6640), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306208,132 +306113,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111385] = 34, + [108257] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6317), 1, - anon_sym_AMP_AMP, - ACTIONS(6319), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6321), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6325), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6327), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6329), 1, + ACTIONS(6299), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6335), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6337), 1, + ACTIONS(6307), 1, anon_sym_LT, - ACTIONS(6345), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6347), 1, - sym__ternary_qmark, - ACTIONS(6642), 1, - anon_sym_COLON, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3270), 1, + STATE(3231), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6311), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6313), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6331), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6343), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6339), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111498] = 18, + ACTIONS(5420), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [108358] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1014), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6617), 1, anon_sym_STAR, - STATE(3271), 1, + ACTIONS(6626), 1, + anon_sym_async, + STATE(3232), 1, sym_comment, - STATE(4691), 1, + STATE(3910), 1, sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6628), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 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(2989), 21, + ACTIONS(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -306350,222 +306246,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111579] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3272), 1, - sym_comment, - ACTIONS(6644), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6646), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 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, - [111638] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3273), 1, - sym_comment, - ACTIONS(5640), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5473), 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, - [111693] = 29, + [108433] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5422), 1, anon_sym_BANG, - ACTIONS(6412), 1, + ACTIONS(6287), 1, anon_sym_AMP_AMP, - ACTIONS(6416), 1, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6422), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6424), 1, + ACTIONS(6299), 1, anon_sym_PIPE, - ACTIONS(6428), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3274), 1, + STATE(3233), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 6, + ACTIONS(5420), 6, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [111796] = 19, + [108536] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6428), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6529), 1, + ACTIONS(6623), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3275), 1, + STATE(3234), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6426), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 8, + ACTIONS(5422), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -306574,7 +306368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 15, + ACTIONS(5420), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -306590,68 +306384,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [111879] = 25, + [108619] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6416), 1, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6428), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3276), 1, + STATE(3235), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 3, + ACTIONS(5422), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6434), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 8, + ACTIONS(5420), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -306660,164 +306454,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [111974] = 26, + [108714] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6416), 1, - anon_sym_GT_GT, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6428), 1, - anon_sym_PERCENT, - ACTIONS(6430), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3277), 1, + STATE(3236), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6406), 2, + ACTIONS(2283), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6408), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6426), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6434), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 8, + ACTIONS(2287), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_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, - [112071] = 27, + [108769] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, + anon_sym_STAR, + ACTIONS(6158), 1, + anon_sym_async, + STATE(3237), 1, + sym_comment, + STATE(3914), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6160), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108844] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6416), 1, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6420), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6422), 1, - anon_sym_CARET, - ACTIONS(6428), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6430), 1, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3278), 1, + STATE(3238), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5517), 2, + ACTIONS(5422), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(6406), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6408), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6418), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6426), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6436), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6438), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6434), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 7, + ACTIONS(5420), 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, - [112170] = 7, + [108941] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3279), 1, + STATE(3239), 1, sym_comment, - ACTIONS(6648), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6650), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(5641), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306831,10 +306656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5643), 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, @@ -306855,14 +306685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112229] = 5, + [108996] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3280), 1, + STATE(3240), 1, sym_comment, - ACTIONS(5840), 13, + ACTIONS(2337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306876,7 +306706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5842), 28, + ACTIONS(2341), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306905,37 +306735,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112284] = 5, + [109051] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3281), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6303), 1, + anon_sym_PERCENT, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3241), 1, sym_comment, - ACTIONS(2158), 13, - anon_sym_STAR, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5422), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6311), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6313), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [109150] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + STATE(3242), 1, + sym_comment, + STATE(7170), 1, + sym__property_name, + STATE(7208), 1, + sym__destructuring_pattern, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6632), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + STATE(6554), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6630), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109227] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5839), 1, + anon_sym_LBRACK, + STATE(3243), 1, + sym_comment, + ACTIONS(5006), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5842), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4225), 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(2162), 28, - sym__automatic_semicolon, + ACTIONS(4229), 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, @@ -306955,39 +306921,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112339] = 8, + [109288] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5544), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - STATE(3282), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6303), 1, + anon_sym_PERCENT, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6623), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3244), 1, sym_comment, - ACTIONS(5011), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5547), 3, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 10, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 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, + [109369] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3245), 1, + sym_comment, + ACTIONS(2357), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(2201), 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, @@ -307007,18 +307035,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112399] = 6, + [109426] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4354), 1, - anon_sym_EQ, - STATE(3283), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6623), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3246), 1, sym_comment, - ACTIONS(4218), 13, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -307027,17 +307082,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 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, + [109509] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6303), 1, + anon_sym_PERCENT, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3247), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6283), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, + ACTIONS(5420), 10, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [109600] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4315), 1, + anon_sym_EQ, + ACTIONS(5042), 1, + anon_sym_QMARK, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(3248), 1, + sym_comment, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5044), 3, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4225), 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(4229), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -307057,38 +307222,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112455] = 7, + [109665] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3284), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, + anon_sym_STAR, + ACTIONS(6158), 1, + anon_sym_async, + STATE(3249), 1, sym_comment, - ACTIONS(5045), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(5043), 4, + STATE(3919), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6160), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109740] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, + anon_sym_PERCENT, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3250), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6283), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6311), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6313), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 5, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [109845] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6527), 1, + anon_sym_STAR, + ACTIONS(6634), 1, + anon_sym_async, + STATE(3251), 1, + sym_comment, + STATE(3983), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6636), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109920] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3252), 1, + sym_comment, + 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(4222), 22, + ACTIONS(5884), 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, @@ -307108,54 +307467,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112513] = 16, + [109975] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6245), 1, - anon_sym_RBRACE, - STATE(3285), 1, + ACTIONS(6638), 1, + anon_sym_STAR, + ACTIONS(6640), 1, + anon_sym_async, + STATE(3253), 1, sym_comment, - STATE(4691), 1, + STATE(3994), 1, sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(6642), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -307168,39 +307527,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112589] = 12, + [110050] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, + anon_sym_PERCENT, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, + anon_sym_LT, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3254), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6283), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6311), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6313), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110163] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5545), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, + anon_sym_PERCENT, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, + anon_sym_LT, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3255), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6283), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6311), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6313), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110276] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3286), 1, + ACTIONS(6644), 1, + anon_sym_STAR, + STATE(3256), 1, sym_comment, - STATE(4674), 1, + STATE(4681), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(6646), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, + ACTIONS(992), 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(2989), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307210,8 +307732,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, @@ -307224,114 +307744,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112657] = 20, + [110349] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6644), 1, anon_sym_STAR, - ACTIONS(6502), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_RBRACE, - STATE(3287), 1, + ACTIONS(6648), 1, + anon_sym_async, + STATE(3257), 1, sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, + STATE(4003), 1, sym__property_name, - STATE(5954), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6650), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112741] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(3288), 1, - sym_comment, - STATE(4777), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, + ACTIONS(992), 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(2989), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -307344,50 +307804,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112809] = 12, + [110424] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(971), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3289), 1, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3258), 1, sym_comment, - STATE(4830), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -307400,20 +307868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112877] = 7, + [110507] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_EQ, - STATE(3290), 1, + STATE(3259), 1, sym_comment, - ACTIONS(4341), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4218), 13, + ACTIONS(5770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307427,10 +307889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5772), 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, @@ -307451,17 +307918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112935] = 6, + [110562] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3291), 1, + STATE(3260), 1, sym_comment, - ACTIONS(5137), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5347), 13, + ACTIONS(5736), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307475,11 +307939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 25, + ACTIONS(5738), 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, @@ -307501,45 +307968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112991] = 19, + [110617] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6656), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3292), 1, + STATE(3261), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 11, + ACTIONS(5323), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -307548,56 +307986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 13, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [113073] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4419), 1, - anon_sym_EQ, - ACTIONS(5544), 1, - anon_sym_LBRACK, - STATE(3293), 1, - sym_comment, - ACTIONS(5011), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 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(4222), 23, + ACTIONS(5325), 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, @@ -307617,43 +308018,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [113135] = 16, + [110672] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(1014), 1, + ACTIONS(971), 1, anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3294), 1, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3262), 1, sym_comment, - STATE(4691), 1, + STATE(4658), 1, sym__property_name, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307663,8 +308069,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, @@ -307677,36 +308081,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113211] = 15, + [110753] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6659), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3295), 1, + STATE(3263), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5680), 12, + ACTIONS(6135), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6184), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307717,11 +308106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5682), 16, + ACTIONS(4229), 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, @@ -307735,44 +308129,70 @@ 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, - [113285] = 18, + [110812] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + STATE(3264), 1, + sym_comment, + ACTIONS(5682), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5684), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4935), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6662), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3296), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5614), 11, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110867] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3265), 1, + sym_comment, + ACTIONS(5678), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -307781,10 +308201,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(5616), 14, + ACTIONS(5680), 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, @@ -307798,30 +308229,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [113365] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110922] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3297), 1, + ACTIONS(6638), 1, + anon_sym_STAR, + STATE(3266), 1, sym_comment, - STATE(4782), 1, + STATE(4664), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(6652), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -307830,7 +308270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307840,8 +308280,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, @@ -307854,39 +308292,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113433] = 8, + [110995] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5834), 1, - anon_sym_LBRACK, - STATE(3298), 1, + STATE(3267), 1, sym_comment, - ACTIONS(5380), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5837), 3, + ACTIONS(5674), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5822), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5676), 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, + [111050] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3268), 1, + sym_comment, + ACTIONS(5321), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 24, - sym__automatic_semicolon, + ACTIONS(5325), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -307906,408 +308393,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [113493] = 33, + [111107] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(5658), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, + ACTIONS(6289), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6299), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6315), 1, anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, + ACTIONS(6317), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3299), 1, + STATE(3269), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113603] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2492), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6703), 1, - anon_sym_async, - ACTIONS(6705), 1, - anon_sym_static, - ACTIONS(6707), 1, - anon_sym_readonly, - ACTIONS(6713), 1, - anon_sym_override, - STATE(3300), 1, - sym_comment, - STATE(3599), 1, - sym_accessibility_modifier, - STATE(3625), 1, - sym_override_modifier, - STATE(4462), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6701), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6709), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(6711), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6537), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6699), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113691] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(3301), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113767] = 27, + [111220] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6673), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5567), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6295), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6297), 1, anon_sym_CARET, - ACTIONS(6685), 1, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3302), 1, + STATE(3270), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6665), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [113865] = 18, + [111333] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5497), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, + anon_sym_PERCENT, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - ACTIONS(6656), 1, + ACTIONS(6307), 1, anon_sym_LT, - ACTIONS(6685), 1, - anon_sym_PERCENT, - STATE(2313), 1, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3303), 1, + STATE(3271), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 10, - anon_sym_BANG, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 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, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [113945] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [111446] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(3304), 1, - sym_comment, - STATE(4813), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6654), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114013] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4388), 1, - anon_sym_EQ, - STATE(3305), 1, + STATE(2305), 1, + sym_type_arguments, + STATE(3272), 1, sym_comment, - ACTIONS(4218), 13, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5613), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308318,18 +308667,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(4222), 26, + ACTIONS(5615), 19, 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_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -308345,259 +308688,450 @@ 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, - [114069] = 21, + [111519] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6673), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5561), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3306), 1, + STATE(3273), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6675), 2, + ACTIONS(6283), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6313), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [114155] = 9, + [111632] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, - anon_sym_QMARK, - ACTIONS(4965), 1, - anon_sym_extends, - STATE(3307), 1, - sym_comment, - ACTIONS(5866), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5863), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4218), 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(4222), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5541), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, anon_sym_AMP_AMP, + ACTIONS(6289), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, anon_sym_PERCENT, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6307), 1, + anon_sym_LT, + ACTIONS(6315), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3274), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [114217] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6158), 1, - sym_regex_flags, - STATE(3308), 1, - sym_comment, - ACTIONS(6154), 17, + ACTIONS(6281), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6313), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(6156), 22, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + [111745] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5595), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, anon_sym_AMP_AMP, + ACTIONS(6289), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6291), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, anon_sym_PERCENT, + ACTIONS(6305), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6307), 1, + anon_sym_LT, + ACTIONS(6315), 1, anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3275), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [114273] = 23, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6283), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6293), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6301), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6311), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6313), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6309), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111858] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6673), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(5591), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_AMP_AMP, + ACTIONS(6289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6291), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6295), 1, + anon_sym_AMP, + ACTIONS(6297), 1, + anon_sym_CARET, + ACTIONS(6299), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6305), 1, + anon_sym_STAR_STAR, + ACTIONS(6307), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6315), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6317), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3309), 1, + STATE(3276), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6283), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6293), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6301), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2631), 2, + ACTIONS(6311), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6313), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6309), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5517), 5, + [111971] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6370), 1, + anon_sym_STAR, + ACTIONS(6544), 1, + anon_sym_async, + STATE(3277), 1, + sym_comment, + STATE(3918), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6546), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 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, - [114363] = 8, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112046] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3278), 1, + sym_comment, + STATE(4771), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112119] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5748), 1, - anon_sym_EQ, - ACTIONS(5978), 1, - anon_sym_COLON, - STATE(3310), 1, + STATE(3279), 1, sym_comment, - ACTIONS(5752), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5746), 13, + ACTIONS(5656), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308611,10 +309145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 23, + ACTIONS(5645), 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, @@ -308635,171 +309174,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114423] = 30, + [112174] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_AMP_AMP, - ACTIONS(6671), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, - anon_sym_GT_GT, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6657), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3311), 1, + STATE(3280), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5569), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6683), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(5571), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6689), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5515), 4, - sym__ternary_qmark, - anon_sym_as, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [114527] = 33, + anon_sym_instanceof, + [112255] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6113), 1, + anon_sym_STAR, + ACTIONS(6115), 1, + anon_sym_async, + STATE(3281), 1, + sym_comment, + STATE(3953), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6119), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112330] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_AMP_AMP, - ACTIONS(6671), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, - anon_sym_GT_GT, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6660), 1, anon_sym_LT, - ACTIONS(6695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3312), 1, + STATE(3282), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6667), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6675), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6683), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6693), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [114637] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ, - STATE(3313), 1, - sym_comment, - ACTIONS(4460), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4218), 13, + ACTIONS(5584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308810,16 +309337,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(4222), 23, + ACTIONS(5586), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -308833,274 +309356,290 @@ 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, - [114695] = 33, + [112405] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6370), 1, + anon_sym_STAR, + ACTIONS(6544), 1, + anon_sym_async, + STATE(3283), 1, + sym_comment, + STATE(3926), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6546), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112480] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3284), 1, + sym_comment, + STATE(3620), 1, + sym_override_modifier, + STATE(4658), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6663), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112562] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6670), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6698), 1, anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, + ACTIONS(6700), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3314), 1, + STATE(3285), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114805] = 33, + [112672] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5173), 1, + ACTIONS(6129), 1, + sym_regex_flags, + STATE(3286), 1, + sym_comment, + ACTIONS(6125), 17, + anon_sym_STAR, anon_sym_as, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5429), 1, - anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_AMP_AMP, - ACTIONS(6671), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_PERCENT, - ACTIONS(6687), 1, - anon_sym_LT, - ACTIONS(6695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, - sym__ternary_qmark, - STATE(3315), 1, - sym_comment, - STATE(3433), 1, - sym_type_arguments, - STATE(5719), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6667), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6675), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3163), 2, - sym_template_string, - sym_arguments, - ACTIONS(6689), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - [114915] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(6127), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, - anon_sym_GT_GT, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_PERCENT, - ACTIONS(6687), 1, - anon_sym_LT, - ACTIONS(6695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3316), 1, - sym_comment, - STATE(5797), 1, - sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6667), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6693), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6689), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [115025] = 12, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [112728] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3317), 1, + STATE(3287), 1, sym_comment, - STATE(4695), 1, + STATE(4731), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309124,30 +309663,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115093] = 12, + [112796] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3288), 1, sym_comment, - STATE(4740), 1, + STATE(4335), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -309156,7 +309695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309180,153 +309719,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115161] = 33, + [112864] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6670), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6698), 1, anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, + ACTIONS(6700), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3319), 1, + STATE(3289), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115271] = 9, + [112974] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4412), 1, anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_extends, - STATE(3320), 1, - sym_comment, - ACTIONS(5544), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5547), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 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(4222), 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, - [115333] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5863), 1, + ACTIONS(5871), 1, anon_sym_LBRACK, - STATE(3321), 1, + STATE(3290), 1, sym_comment, - ACTIONS(4965), 2, + ACTIONS(5044), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5866), 3, + ACTIONS(5874), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(4225), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309337,12 +309825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, - sym__automatic_semicolon, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -309362,285 +309849,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115393] = 9, + [113036] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4403), 1, - anon_sym_EQ, - ACTIONS(5544), 1, - anon_sym_LBRACK, - STATE(3322), 1, - sym_comment, - ACTIONS(5011), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 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(4222), 23, - sym__ternary_qmark, + ACTIONS(5144), 1, anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5188), 1, anon_sym_satisfies, - [115455] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5452), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5488), 1, anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6670), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6698), 1, anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, + ACTIONS(6700), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3323), 1, + STATE(3291), 1, sym_comment, - STATE(5797), 1, + STATE(3426), 1, + sym_type_arguments, + STATE(5714), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(3261), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115565] = 26, + [113146] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3292), 1, + sym_comment, + STATE(4821), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113214] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6673), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, + anon_sym_AMP_AMP, + ACTIONS(6672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6685), 1, + ACTIONS(6680), 1, + anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3324), 1, + STATE(3293), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5517), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 7, + [113324] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5221), 1, + anon_sym_extends, + STATE(3294), 1, + sym_comment, + ACTIONS(5215), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5218), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5209), 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(5213), 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, - [115661] = 25, + [113386] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6673), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, + anon_sym_AMP_AMP, + ACTIONS(6672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6680), 1, + anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3325), 1, + STATE(3295), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 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, - [115755] = 6, + [113496] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3296), 1, + sym_comment, + STATE(4664), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113564] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5137), 1, - anon_sym_extends, - STATE(3326), 1, + ACTIONS(4315), 1, + anon_sym_EQ, + STATE(3297), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(4370), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309654,13 +310272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 26, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -309681,106 +310296,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115811] = 19, + [113622] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, + anon_sym_AMP_AMP, + ACTIONS(6672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6680), 1, + anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, anon_sym_STAR_STAR, - ACTIONS(6656), 1, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6685), 1, - anon_sym_PERCENT, - STATE(2313), 1, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3327), 1, + STATE(3298), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6683), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5517), 8, - anon_sym_BANG, + ACTIONS(6668), 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(5515), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6694), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [115893] = 16, + [113732] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6201), 1, - anon_sym_RBRACE, - STATE(3328), 1, + STATE(3299), 1, sym_comment, - STATE(4691), 1, + STATE(4764), 1, sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 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(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309804,39 +310429,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115969] = 12, + [113800] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3329), 1, + ACTIONS(6208), 1, + anon_sym_RBRACE, + STATE(3300), 1, sym_comment, - STATE(4697), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309860,30 +310489,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116037] = 12, + [113876] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5321), 1, + anon_sym_extends, + STATE(3301), 1, + sym_comment, + ACTIONS(5323), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5325), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [113932] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(6690), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3302), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5635), 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(5637), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [113998] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3330), 1, + STATE(3303), 1, sym_comment, - STATE(4188), 1, + STATE(4720), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -309892,7 +310626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309916,30 +310650,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116105] = 12, + [114066] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(3612), 1, + anon_sym_extends, + STATE(3304), 1, + sym_comment, + ACTIONS(5008), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5011), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2149), 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(2155), 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, + [114128] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6670), 1, + anon_sym_AMP_AMP, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6680), 1, + anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3305), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6694), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6696), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [114230] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3306), 1, + sym_comment, + ACTIONS(5207), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(5205), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4225), 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(4229), 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, + [114288] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3331), 1, + STATE(3307), 1, sym_comment, - STATE(4686), 1, + STATE(4684), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -309948,7 +310859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309972,193 +310883,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116173] = 33, + [114356] = 27, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_AMP_AMP, - ACTIONS(6671), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3332), 1, + STATE(3308), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(5422), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116283] = 33, + ACTIONS(5420), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [114454] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_AMP_AMP, - ACTIONS(6671), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, - anon_sym_GT_GT, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6702), 1, anon_sym_LT, - ACTIONS(6695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3333), 1, + STATE(3309), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + 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(5420), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [114534] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4279), 1, + anon_sym_EQ, + STATE(3310), 1, + sym_comment, + ACTIONS(4485), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4225), 13, + anon_sym_STAR, + anon_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(6691), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(4229), 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(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6689), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [116393] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [114592] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6705), 1, + anon_sym_RBRACE, + STATE(3311), 1, + sym_comment, + STATE(3620), 1, + sym_override_modifier, + STATE(4658), 1, + sym__property_name, + STATE(5948), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114676] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3334), 1, + STATE(3312), 1, sym_comment, - STATE(4342), 1, + STATE(4848), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, + ACTIONS(992), 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(4498), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -310182,139 +311187,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116461] = 33, + [114744] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6670), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6698), 1, anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, + ACTIONS(6700), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3335), 1, + STATE(3313), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116571] = 19, + [114854] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(3336), 1, + ACTIONS(6121), 1, + anon_sym_RBRACE, + STATE(3314), 1, sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6715), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 18, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -310322,39 +311324,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116653] = 12, + [114930] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4359), 1, + anon_sym_EQ, + STATE(3315), 1, + sym_comment, + ACTIONS(4225), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [114986] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1056), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3337), 1, + STATE(3316), 1, sym_comment, - STATE(4821), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -310378,39 +311434,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116721] = 12, + [115062] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3338), 1, + STATE(3317), 1, sym_comment, - STATE(4845), 1, + STATE(4818), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -310434,227 +311490,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116789] = 11, + [115130] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4997), 1, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(6687), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, + anon_sym_AMP_AMP, + ACTIONS(6672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6680), 1, + anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3339), 1, + STATE(3318), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5792), 12, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5794), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6696), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115240] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, anon_sym_AMP_AMP, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6680), 1, anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, anon_sym_PERCENT, + ACTIONS(6688), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6690), 1, + anon_sym_LT, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3319), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6694), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 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, - [116855] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6125), 1, - anon_sym_RBRACE, - STATE(3340), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116931] = 29, + [115350] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, anon_sym_AMP_AMP, - ACTIONS(6673), 1, + ACTIONS(6672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3341), 1, + STATE(3320), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 5, + [115460] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6508), 1, + anon_sym_COMMA, + STATE(3321), 1, + sym_comment, + ACTIONS(5323), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5325), 26, 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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [117033] = 12, + [115516] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3342), 1, + STATE(3322), 1, sym_comment, - STATE(4790), 1, + STATE(4761), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -310678,189 +311827,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117101] = 33, + [115584] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_AMP_AMP, - ACTIONS(6671), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, - anon_sym_GT_GT, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6707), 1, anon_sym_LT, - ACTIONS(6695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3343), 1, + STATE(3323), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6665), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5613), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6667), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6683), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(5615), 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, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6689), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [117211] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [115656] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5517), 1, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6673), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, + anon_sym_AMP_AMP, + ACTIONS(6672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - STATE(2313), 1, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, sym_type_arguments, - STATE(3344), 1, + STATE(3324), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5515), 6, + [115766] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(3325), 1, + sym_comment, + ACTIONS(5044), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(4229), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [117311] = 9, + [115826] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(5649), 1, anon_sym_EQ, - ACTIONS(5544), 1, - anon_sym_LBRACK, - STATE(3345), 1, + ACTIONS(6031), 1, + anon_sym_COLON, + STATE(3326), 1, sym_comment, - ACTIONS(5011), 2, + ACTIONS(5653), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5547), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + anon_sym_RBRACK, + ACTIONS(5647), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5651), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -310880,116 +312066,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117373] = 33, + [115886] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3327), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 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(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115954] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_AMP_AMP, - ACTIONS(6671), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, - anon_sym_GT_GT, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6710), 1, anon_sym_LT, - ACTIONS(6695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3346), 1, + STATE(3328), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5569), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6683), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(5571), 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, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6689), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [117483] = 12, + [116034] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + STATE(3329), 1, + sym_comment, + ACTIONS(992), 10, + 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(2485), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + 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, + [116090] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3347), 1, + ACTIONS(6247), 1, + anon_sym_RBRACE, + STATE(3330), 1, sym_comment, - STATE(4807), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -311013,30 +312294,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117551] = 12, + [116166] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3348), 1, + STATE(3331), 1, sym_comment, - STATE(4822), 1, + STATE(4849), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -311045,7 +312326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -311069,37 +312350,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117619] = 6, + [116234] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6446), 1, - anon_sym_COMMA, - STATE(3349), 1, + ACTIONS(5839), 1, + anon_sym_LBRACK, + STATE(3332), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(5006), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5842), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(5349), 26, + ACTIONS(4229), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -311119,48 +312402,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117675] = 14, + [116294] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(6718), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3350), 1, + ACTIONS(4279), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_extends, + STATE(3333), 1, sym_comment, - STATE(5797), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(5759), 12, + ACTIONS(5871), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(5761), 18, + ACTIONS(4229), 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, @@ -311176,177 +312453,345 @@ 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, - [117747] = 16, + [116356] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6680), 1, + anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, anon_sym_STAR_STAR, - ACTIONS(6656), 1, + ACTIONS(6690), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3351), 1, + STATE(3334), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2631), 2, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6694), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6696), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(5517), 12, - anon_sym_STAR, + ACTIONS(6692), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [116456] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3335), 1, + sym_comment, + STATE(4753), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [116524] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4437), 1, + anon_sym_EQ, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_comment, + ACTIONS(5044), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5874), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4225), 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(5515), 15, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [117823] = 33, + [116586] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, - anon_sym_as, - ACTIONS(5177), 1, - anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_AMP_AMP, - ACTIONS(6671), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, - anon_sym_GT_GT, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6695), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3352), 1, + STATE(3337), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5584), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6667), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6683), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(5586), 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, - STATE(2631), 2, - sym_template_string, - sym_arguments, - ACTIONS(6689), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [117933] = 12, + anon_sym_satisfies, + [116660] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6098), 1, + anon_sym_RBRACE, + STATE(3338), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [116736] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(233), 1, + anon_sym_COMMA, + ACTIONS(1058), 1, + anon_sym_RBRACE, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3353), 1, + STATE(3339), 1, sym_comment, - STATE(4768), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -311370,39 +312815,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118001] = 12, + [116812] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3354), 1, + STATE(3340), 1, sym_comment, - STATE(4824), 1, + STATE(4775), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, + ACTIONS(992), 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(2989), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -311426,39 +312871,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118069] = 12, + [116880] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3355), 1, + STATE(3341), 1, sym_comment, - STATE(4828), 1, + STATE(4824), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 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(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -311482,310 +312927,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118137] = 33, + [116948] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3342), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6694), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6696), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6692), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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, + [117042] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6670), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6698), 1, anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, + ACTIONS(6700), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3356), 1, + STATE(3343), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [118247] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [117152] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - STATE(3357), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6702), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3344), 1, sym_comment, - STATE(4721), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, - anon_sym_COMMA, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 12, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [118315] = 33, + anon_sym_in, + 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(5420), 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, + [117228] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6670), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6698), 1, anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, + ACTIONS(6700), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3358), 1, + STATE(3345), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117338] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3346), 1, + sym_comment, + ACTIONS(5321), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5323), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5325), 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, - [118425] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [117394] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1039), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3359), 1, + STATE(3347), 1, sym_comment, - STATE(4691), 1, + STATE(4690), 1, sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [118501] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4642), 1, - sym__automatic_semicolon, - STATE(3360), 1, - sym_comment, - ACTIONS(1035), 10, - anon_sym_EQ, + ACTIONS(992), 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(2482), 29, + ACTIONS(2996), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -311802,39 +313316,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118557] = 12, + [117462] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3361), 1, + STATE(3348), 1, sym_comment, - STATE(4687), 1, + STATE(4744), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, - anon_sym_EQ, + ACTIONS(992), 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(2989), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -311858,30 +313372,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118625] = 12, + [117530] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3362), 1, + STATE(3349), 1, sym_comment, - STATE(4731), 1, + STATE(4732), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -311890,7 +313404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -311914,83 +313428,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118693] = 9, + [117598] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3679), 1, - anon_sym_extends, - STATE(3363), 1, - sym_comment, - ACTIONS(5075), 2, - anon_sym_RBRACE, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5078), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2140), 11, - anon_sym_STAR, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6702), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3350), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 23, + ACTIONS(5420), 13, 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, - [118755] = 12, + [117680] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3364), 1, + STATE(3351), 1, sym_comment, - STATE(4689), 1, + STATE(4196), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 8, + ACTIONS(992), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -311999,7 +313523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312023,120 +313547,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118823] = 33, + [117748] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5173), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5177), 1, + ACTIONS(5148), 1, anon_sym_BANG, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, + ACTIONS(5188), 1, anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6670), 1, anon_sym_AMP_AMP, - ACTIONS(6671), 1, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_GT_GT, - ACTIONS(6677), 1, + ACTIONS(6678), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6680), 1, anon_sym_CARET, - ACTIONS(6681), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(6686), 1, anon_sym_PERCENT, - ACTIONS(6687), 1, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6698), 1, anon_sym_QMARK_QMARK, - ACTIONS(6697), 1, + ACTIONS(6700), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2305), 1, sym_type_arguments, - STATE(3365), 1, + STATE(3352), 1, sym_comment, - STATE(5797), 1, + STATE(5805), 1, sym_optional_chain, - ACTIONS(5215), 2, + ACTIONS(5186), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6667), 2, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6675), 2, + ACTIONS(6676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6683), 2, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6691), 2, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6693), 2, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2631), 2, + STATE(2561), 2, sym_template_string, sym_arguments, - ACTIONS(6689), 3, + ACTIONS(6692), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [118933] = 16, + [117858] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(3366), 1, + STATE(3353), 1, sym_comment, - STATE(4691), 1, + STATE(4743), 1, sym__property_name, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312160,142 +313680,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119009] = 9, + [117926] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5063), 1, - anon_sym_extends, - STATE(3367), 1, - sym_comment, - ACTIONS(5057), 2, - anon_sym_RBRACE, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(5060), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5051), 11, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3354), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6668), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5422), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 23, + ACTIONS(5420), 9, 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, - [119071] = 8, + [118016] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5844), 1, - anon_sym_RBRACK, - ACTIONS(5970), 1, - anon_sym_COMMA, - STATE(3368), 1, - sym_comment, - ACTIONS(2140), 13, - anon_sym_STAR, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, + anon_sym_AMP_AMP, + ACTIONS(6672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6674), 1, anon_sym_GT_GT, + ACTIONS(6678), 1, anon_sym_AMP, + ACTIONS(6680), 1, + anon_sym_CARET, + ACTIONS(6682), 1, anon_sym_PIPE, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, + anon_sym_LT, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3355), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6694), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2146), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6696), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118126] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(6670), 1, anon_sym_AMP_AMP, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6680), 1, anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, anon_sym_PERCENT, + ACTIONS(6688), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6690), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3356), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6694), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 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(5420), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [119130] = 8, + [118230] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, - anon_sym_extends, - STATE(3369), 1, + ACTIONS(4385), 1, + anon_sym_EQ, + STATE(3357), 1, sym_comment, - ACTIONS(5863), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5866), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 11, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -312315,41 +313947,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119189] = 8, + anon_sym_implements, + [118286] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - STATE(3370), 1, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3358), 1, sym_comment, - ACTIONS(6014), 2, + STATE(4681), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 8, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2482), 29, + ACTIONS(2996), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -312366,38 +314004,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119248] = 8, + [118354] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5748), 1, - anon_sym_EQ, - ACTIONS(5752), 1, - anon_sym_RBRACK, - ACTIONS(5978), 1, - anon_sym_COMMA, - STATE(3371), 1, + ACTIONS(5804), 1, + anon_sym_LBRACK, + STATE(3359), 1, sym_comment, - ACTIONS(5746), 13, + ACTIONS(5367), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5807), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5770), 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(5750), 23, + ACTIONS(5772), 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, @@ -312417,141 +314056,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119307] = 8, + [118414] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, - anon_sym_EQ, - ACTIONS(5700), 1, - anon_sym_RBRACK, - ACTIONS(5989), 1, - anon_sym_COMMA, - STATE(3372), 1, - sym_comment, - ACTIONS(5051), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5055), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4936), 1, anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, + ACTIONS(4954), 1, anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_BANG, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, + ACTIONS(5188), 1, + anon_sym_satisfies, + ACTIONS(6670), 1, anon_sym_AMP_AMP, + ACTIONS(6672), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6680), 1, anon_sym_CARET, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, anon_sym_PERCENT, + ACTIONS(6688), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6690), 1, + anon_sym_LT, + ACTIONS(6698), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6700), 1, + sym__ternary_qmark, + STATE(2305), 1, + sym_type_arguments, + STATE(3360), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6694), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6696), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 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, - [119366] = 8, + [118524] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5091), 1, - anon_sym_EQ, - STATE(3373), 1, - sym_comment, - ACTIONS(6014), 2, + ACTIONS(233), 1, anon_sym_COMMA, + ACTIONS(971), 1, anon_sym_RBRACE, - ACTIONS(1035), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2486), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1972), 1, anon_sym_DQUOTE, + ACTIONS(1974), 1, 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, - [119425] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6721), 1, - anon_sym_abstract, - STATE(3374), 1, + STATE(3361), 1, sym_comment, - STATE(4331), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(992), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312575,155 +314193,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119494] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [118600] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(6723), 1, - anon_sym_readonly, - STATE(3375), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6678), 1, + anon_sym_AMP, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3362), 1, sym_comment, - STATE(3639), 1, - sym_override_modifier, - STATE(4279), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, - anon_sym_COMMA, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5422), 2, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4498), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119567] = 15, - ACTIONS(3), 1, + anon_sym_PIPE, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6694), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6696), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(6692), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5420), 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, + [118696] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5004), 1, + anon_sym_QMARK, + ACTIONS(5006), 1, + anon_sym_extends, + STATE(3363), 1, + sym_comment, + ACTIONS(5842), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5839), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4225), 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(4229), 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, + [118758] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(5871), 1, anon_sym_LBRACK, - ACTIONS(6725), 1, - anon_sym_readonly, - STATE(3376), 1, + STATE(3364), 1, sym_comment, - STATE(3661), 1, - sym_override_modifier, - STATE(4188), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, + ACTIONS(5044), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 10, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4498), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119640] = 13, + 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(4229), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [118820] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6190), 1, - anon_sym_abstract, - STATE(3377), 1, + STATE(3365), 1, sym_comment, - STATE(4188), 1, + STATE(4739), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 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(4498), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312747,99 +314425,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119709] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [118888] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, anon_sym_LBRACK, - ACTIONS(6727), 1, - anon_sym_abstract, - STATE(3378), 1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6674), 1, + anon_sym_GT_GT, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6690), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3366), 1, sym_comment, - STATE(4342), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, - anon_sym_COMMA, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 7, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4498), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119778] = 15, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 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, + [118974] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_readonly, - STATE(3379), 1, + STATE(3367), 1, sym_comment, - STATE(3677), 1, - sym_override_modifier, - STATE(4164), 1, + STATE(4805), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 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(4498), 21, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312848,12 +314531,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, @@ -312861,57 +314546,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119851] = 15, + [119042] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + anon_sym_LBRACK, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(6686), 1, + anon_sym_PERCENT, + ACTIONS(6688), 1, + anon_sym_STAR_STAR, + ACTIONS(6702), 1, + anon_sym_LT, + STATE(2305), 1, + sym_type_arguments, + STATE(3368), 1, + sym_comment, + STATE(5805), 1, + sym_optional_chain, + ACTIONS(5186), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6684), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2561), 2, + sym_template_string, + sym_arguments, + ACTIONS(5422), 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(5420), 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, + [119124] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(227), 1, + anon_sym_STAR, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, + ACTIONS(2393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(3380), 1, + ACTIONS(6720), 1, + anon_sym_async, + ACTIONS(6722), 1, + anon_sym_static, + ACTIONS(6724), 1, + anon_sym_readonly, + ACTIONS(6730), 1, + anon_sym_override, + STATE(3369), 1, sym_comment, - STATE(4691), 1, + STATE(3581), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(4474), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6715), 2, + ACTIONS(6718), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4459), 2, + ACTIONS(6726), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(6728), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6562), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6716), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -312919,43 +314675,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119924] = 15, + [119212] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6732), 1, anon_sym_readonly, - STATE(3381), 1, + STATE(3370), 1, sym_comment, - STATE(3653), 1, + STATE(3670), 1, sym_override_modifier, - STATE(4342), 1, + STATE(4247), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 21, + ACTIONS(4505), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312977,95 +314733,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119997] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(3382), 1, - sym_comment, - STATE(4691), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6715), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [120072] = 6, + [119285] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3383), 1, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(3371), 1, sym_comment, - ACTIONS(5777), 3, + ACTIONS(5874), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5044), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6733), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4225), 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(6736), 23, + ACTIONS(4229), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313085,43 +314784,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120127] = 15, + [119344] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6739), 1, + ACTIONS(6734), 1, anon_sym_readonly, - STATE(3384), 1, + STATE(3372), 1, sym_comment, - STATE(3694), 1, + STATE(3688), 1, sym_override_modifier, - STATE(4229), 1, + STATE(4239), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 21, + ACTIONS(4505), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313143,74 +314842,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120200] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4363), 1, - anon_sym_EQ, - STATE(3385), 1, - sym_comment, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 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, - [120255] = 6, + [119417] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - STATE(3386), 1, - sym_comment, - ACTIONS(1035), 8, + ACTIONS(5056), 1, anon_sym_EQ, + STATE(3373), 1, + sym_comment, + ACTIONS(5989), 2, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + ACTIONS(992), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(2487), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -313240,68 +314893,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [120310] = 25, + [119476] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5056), 1, + anon_sym_EQ, + STATE(3374), 1, + sym_comment, + ACTIONS(5989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(992), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2485), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_STAR, - ACTIONS(6743), 1, anon_sym_async, - ACTIONS(6745), 1, - anon_sym_static, - ACTIONS(6747), 1, - anon_sym_readonly, - ACTIONS(6751), 1, - anon_sym_declare, - ACTIONS(6753), 1, - anon_sym_abstract, - STATE(3387), 1, - sym_comment, - STATE(3471), 1, - sym_method_definition, - STATE(3550), 1, - sym_accessibility_modifier, - STATE(3579), 1, - aux_sym_export_statement_repeat1, - STATE(3622), 1, - sym_override_modifier, - STATE(3678), 1, - sym_decorator, - STATE(3910), 1, - sym__property_name, - ACTIONS(3995), 2, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(6749), 2, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4676), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - ACTIONS(4498), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -313309,18 +314944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120403] = 6, + [119535] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3388), 1, + STATE(3375), 1, sym_comment, - ACTIONS(5534), 3, + ACTIONS(2323), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6755), 13, + ACTIONS(6736), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313334,7 +314969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6758), 23, + ACTIONS(6739), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313358,39 +314993,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120458] = 13, + [119590] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5804), 1, + anon_sym_LBRACK, + STATE(3376), 1, + sym_comment, + ACTIONS(5807), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5367), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5770), 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(5772), 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, + [119649] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6761), 1, + ACTIONS(6742), 1, anon_sym_abstract, - STATE(3389), 1, + STATE(3377), 1, sym_comment, - STATE(4231), 1, + STATE(4196), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313414,60 +315100,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120527] = 18, + [119718] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(3390), 1, + ACTIONS(6744), 1, + anon_sym_abstract, + STATE(3378), 1, sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, + STATE(4248), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6763), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 18, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -313475,17 +315156,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120606] = 6, + [119787] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3391), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(5871), 1, + anon_sym_LBRACK, + STATE(3379), 1, sym_comment, - ACTIONS(5137), 2, + ACTIONS(5044), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5347), 13, + ACTIONS(5874), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 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(4229), 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, + [119848] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5211), 1, + anon_sym_EQ, + ACTIONS(5829), 1, + anon_sym_RBRACK, + ACTIONS(6005), 1, + anon_sym_COMMA, + STATE(3380), 1, + sym_comment, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313499,12 +315235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 24, + ACTIONS(5213), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313524,18 +315259,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120661] = 6, + [119907] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3392), 1, + STATE(3381), 1, sym_comment, - ACTIONS(5538), 3, + ACTIONS(5760), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6765), 13, + ACTIONS(6746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313549,7 +315284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6768), 23, + ACTIONS(6749), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313573,18 +315308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120716] = 6, + [119962] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3393), 1, + STATE(3382), 1, sym_comment, - ACTIONS(2198), 3, + ACTIONS(2287), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6771), 13, + ACTIONS(6752), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313598,7 +315333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6774), 23, + ACTIONS(6755), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313622,16 +315357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120771] = 6, + [120017] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6446), 1, - anon_sym_COMMA, - STATE(3394), 1, + STATE(3383), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(5784), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6758), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313645,12 +315382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 25, - sym__automatic_semicolon, + ACTIONS(6761), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -313671,20 +315406,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120826] = 8, + [120072] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4341), 1, - anon_sym_RBRACK, - ACTIONS(4370), 1, + ACTIONS(5839), 1, + anon_sym_LBRACK, + STATE(3384), 1, + sym_comment, + ACTIONS(5842), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5006), 3, anon_sym_COMMA, - ACTIONS(4469), 1, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4225), 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(4229), 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, + [120131] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5056), 1, anon_sym_EQ, - STATE(3395), 1, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3385), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6663), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120206] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3386), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(2279), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6764), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313698,7 +315541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(6767), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313722,38 +315565,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120885] = 8, + [120261] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3387), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6663), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120334] = 13, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5544), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3396), 1, + ACTIONS(6770), 1, + anon_sym_abstract, + STATE(3388), 1, sym_comment, - ACTIONS(5547), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5011), 3, + STATE(4275), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4505), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120403] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3389), 1, + sym_comment, + ACTIONS(5321), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4218), 11, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5325), 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, @@ -313773,18 +315728,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120944] = 6, + [120458] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6772), 1, + anon_sym_readonly, + STATE(3390), 1, + sym_comment, + STATE(3669), 1, + sym_override_modifier, + STATE(4196), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4505), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120531] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3397), 1, + STATE(3391), 1, sym_comment, - ACTIONS(2244), 3, + ACTIONS(5559), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6777), 13, + ACTIONS(6774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313798,7 +315811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6780), 23, + ACTIONS(6777), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313822,18 +315835,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120999] = 6, + [120586] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4673), 1, + anon_sym_AT, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6780), 1, + anon_sym_STAR, + ACTIONS(6782), 1, + anon_sym_async, + ACTIONS(6784), 1, + anon_sym_static, + ACTIONS(6786), 1, + anon_sym_readonly, + ACTIONS(6790), 1, + anon_sym_declare, + ACTIONS(6792), 1, + anon_sym_abstract, + STATE(3392), 1, + sym_comment, + STATE(3521), 1, + sym_method_definition, + STATE(3550), 1, + sym_accessibility_modifier, + STATE(3591), 1, + aux_sym_export_statement_repeat1, + STATE(3621), 1, + sym_override_modifier, + STATE(3650), 1, + sym_decorator, + STATE(3906), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6788), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4683), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(4505), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120679] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3398), 1, + STATE(3393), 1, sym_comment, - ACTIONS(2170), 3, + ACTIONS(2167), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6783), 13, + ACTIONS(6794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313847,7 +315928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6786), 23, + ACTIONS(6797), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313871,39 +315952,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121054] = 9, + [120734] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(5544), 1, - anon_sym_LBRACK, - STATE(3399), 1, + STATE(3394), 1, sym_comment, - ACTIONS(5011), 2, + ACTIONS(5780), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5547), 3, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6800), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6803), 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, + [120789] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6705), 1, + anon_sym_RBRACE, + STATE(3395), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + STATE(5948), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120866] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3396), 1, + sym_comment, + STATE(3620), 1, + sym_override_modifier, + STATE(4658), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6806), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120945] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4370), 1, + anon_sym_RBRACK, + ACTIONS(4378), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, + anon_sym_EQ, + STATE(3397), 1, + sym_comment, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313923,38 +316173,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121115] = 8, + [121004] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5863), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3400), 1, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6705), 1, + anon_sym_RBRACE, + STATE(3398), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + STATE(5948), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121079] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5622), 1, + anon_sym_RBRACK, + ACTIONS(6033), 1, + anon_sym_COMMA, + STATE(3399), 1, sym_comment, - ACTIONS(5866), 2, + ACTIONS(2149), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4965), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 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, + [121138] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4649), 1, + sym__automatic_semicolon, + STATE(3400), 1, + sym_comment, + ACTIONS(992), 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(2487), 30, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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_abstract, + [121193] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5649), 1, + anon_sym_EQ, + ACTIONS(5653), 1, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + ACTIONS(6031), 1, + anon_sym_COMMA, + STATE(3401), 1, + sym_comment, + ACTIONS(5647), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5651), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313974,54 +316383,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121174] = 17, + [121252] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6502), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_RBRACE, - STATE(3401), 1, + ACTIONS(6808), 1, + anon_sym_abstract, + STATE(3402), 1, sym_comment, - STATE(4691), 1, + STATE(4302), 1, sym__property_name, - STATE(5954), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -314034,18 +316439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121251] = 6, + [121321] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3402), 1, - sym_comment, - ACTIONS(2162), 3, + ACTIONS(6508), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6789), 13, + STATE(3403), 1, + sym_comment, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314059,10 +316462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6792), 23, + ACTIONS(5325), 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, @@ -314083,23 +316488,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121306] = 8, + [121376] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6810), 1, + anon_sym_readonly, + STATE(3404), 1, + sym_comment, + STATE(3671), 1, + sym_override_modifier, + STATE(4207), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4505), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121449] = 15, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5834), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3403), 1, + ACTIONS(6812), 1, + anon_sym_readonly, + STATE(3405), 1, sym_comment, - ACTIONS(5837), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5380), 3, + STATE(3658), 1, + sym_override_modifier, + STATE(4335), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4505), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121522] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5006), 1, anon_sym_extends, - ACTIONS(5822), 11, + STATE(3406), 1, + sym_comment, + ACTIONS(5839), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5842), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314111,9 +316631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 22, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -314134,18 +316655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121365] = 6, + [121581] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3404), 1, + ACTIONS(4363), 1, + anon_sym_EQ, + STATE(3407), 1, sym_comment, - ACTIONS(5732), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6795), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314159,10 +316678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6798), 23, + ACTIONS(4229), 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, @@ -314183,44 +316704,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121420] = 16, + [121636] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6502), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_RBRACE, - STATE(3405), 1, + ACTIONS(6245), 1, + anon_sym_abstract, + STATE(3408), 1, sym_comment, - STATE(4691), 1, + STATE(4335), 1, sym__property_name, - STATE(5954), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314230,6 +316746,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, @@ -314242,39 +316760,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121495] = 13, + [121705] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_abstract, - STATE(3406), 1, + STATE(3409), 1, sym_comment, - STATE(4161), 1, + STATE(4340), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314298,22 +316814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121564] = 8, + [121771] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5053), 1, + ACTIONS(4437), 1, anon_sym_EQ, - ACTIONS(5989), 1, - anon_sym_of, - ACTIONS(6518), 1, - anon_sym_in, - STATE(3407), 1, + STATE(3410), 1, sym_comment, - ACTIONS(5051), 12, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -314324,10 +316837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 23, + ACTIONS(4229), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -314348,41 +316862,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121622] = 14, + [121825] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - STATE(3408), 1, + STATE(3411), 1, sym_comment, - STATE(4691), 1, + STATE(4169), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6763), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314392,6 +316902,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, @@ -314404,37 +316916,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121692] = 12, + [121891] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3412), 1, sym_comment, - STATE(4176), 1, + STATE(4195), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314458,42 +316970,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121758] = 10, + [121957] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_RBRACE, - ACTIONS(5091), 1, - anon_sym_EQ, - STATE(3410), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + STATE(3413), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 4, - anon_sym_LPAREN, + STATE(4234), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2482), 29, + ACTIONS(4505), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -314510,29 +317024,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121820] = 10, + [122023] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_RBRACE, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - STATE(3411), 1, + ACTIONS(6208), 1, + anon_sym_RBRACE, + STATE(3414), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5732), 1, aux_sym_object_repeat1, - ACTIONS(1035), 4, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(2487), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -314562,44 +317076,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121882] = 12, + [122085] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - STATE(3412), 1, - sym_comment, - STATE(4250), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, + ACTIONS(233), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(6208), 1, + anon_sym_RBRACE, + STATE(3415), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(992), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(2485), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -314616,46 +317128,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121948] = 10, + [122147] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(4471), 1, + anon_sym_in, + ACTIONS(4474), 1, + anon_sym_of, + STATE(3416), 1, + sym_comment, + ACTIONS(4225), 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(4229), 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, + [122205] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3417), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6806), 2, anon_sym_COMMA, - ACTIONS(1039), 1, anon_sym_RBRACE, - ACTIONS(5091), 1, - anon_sym_EQ, - STATE(3413), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 4, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(2996), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -314668,43 +317234,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122010] = 15, + [122275] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, + ACTIONS(2998), 1, anon_sym_async, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6096), 1, anon_sym_STAR, - STATE(3414), 1, + STATE(3418), 1, sym_comment, - STATE(4691), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - ACTIONS(6763), 2, + ACTIONS(6806), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2996), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314725,37 +317291,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122082] = 12, + [122347] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3415), 1, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6705), 1, + anon_sym_RBRACE, + STATE(3419), 1, sym_comment, - STATE(4329), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5948), 1, + aux_sym_object_repeat1, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(992), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314779,44 +317347,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122148] = 12, + [122417] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - STATE(3416), 1, - sym_comment, - STATE(4261), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, + ACTIONS(233), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1056), 1, + anon_sym_RBRACE, + ACTIONS(5056), 1, + anon_sym_EQ, + STATE(3420), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(2485), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -314833,29 +317399,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122214] = 10, + [122479] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(1039), 1, + ACTIONS(1056), 1, anon_sym_RBRACE, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - STATE(3417), 1, + STATE(3421), 1, sym_comment, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2482), 29, + ACTIONS(2487), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -314885,92 +317451,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122276] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5748), 1, - anon_sym_EQ, - ACTIONS(5978), 1, - anon_sym_of, - ACTIONS(6492), 1, - anon_sym_in, - STATE(3418), 1, - sym_comment, - ACTIONS(5746), 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(5750), 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, - [122334] = 10, + [122541] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(3419), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + STATE(3422), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 4, - anon_sym_LPAREN, + STATE(4268), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2482), 29, + ACTIONS(4505), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -314987,37 +317505,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122396] = 12, + [122607] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3420), 1, + STATE(3423), 1, sym_comment, - STATE(4162), 1, + STATE(4209), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315041,19 +317559,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122462] = 6, + [122673] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4403), 1, - anon_sym_EQ, - STATE(3421), 1, + ACTIONS(6129), 1, + sym_regex_flags, + STATE(3424), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(6125), 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, @@ -315064,11 +317584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6127), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -315084,47 +317604,47 @@ 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, - [122516] = 10, + [122727] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(6125), 1, - anon_sym_RBRACE, - STATE(3422), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + STATE(3425), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 4, - anon_sym_LPAREN, + STATE(4294), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(4505), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -315141,29 +317661,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122578] = 10, + [122793] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(3426), 1, + sym_comment, + STATE(3055), 2, + sym_template_string, + sym_arguments, + ACTIONS(4990), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4992), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [122851] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(6245), 1, + ACTIONS(6121), 1, anon_sym_RBRACE, - STATE(3423), 1, + STATE(3427), 1, sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1035), 4, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(2487), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315193,29 +317763,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122640] = 10, + [122913] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(6125), 1, + ACTIONS(6121), 1, anon_sym_RBRACE, - STATE(3424), 1, + STATE(3428), 1, sym_comment, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2482), 29, + ACTIONS(2485), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315245,29 +317815,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122702] = 10, + [122975] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(6245), 1, + ACTIONS(6247), 1, anon_sym_RBRACE, - STATE(3425), 1, + STATE(3429), 1, sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1035), 4, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2482), 29, + ACTIONS(2487), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315297,79 +317867,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122764] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2142), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5970), 1, - anon_sym_of, - ACTIONS(6481), 1, - anon_sym_in, - STATE(3426), 1, - sym_comment, - ACTIONS(2140), 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(2146), 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, - [122822] = 10, + [123037] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(6201), 1, + ACTIONS(6247), 1, anon_sym_RBRACE, - STATE(3427), 1, + STATE(3430), 1, sym_comment, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(2485), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315399,29 +317919,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122884] = 10, + [123099] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + STATE(3431), 1, + sym_comment, + ACTIONS(992), 8, anon_sym_COMMA, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(6201), 1, anon_sym_RBRACE, - STATE(3428), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 4, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2482), 29, + anon_sym_PIPE_RBRACE, + ACTIONS(2487), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315451,42 +317967,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122946] = 10, + [123153] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1014), 1, - anon_sym_RBRACE, - ACTIONS(5091), 1, - anon_sym_EQ, - STATE(3429), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + STATE(3432), 1, sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1035), 4, - anon_sym_LPAREN, + STATE(4346), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(4505), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -315503,92 +318021,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123008] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4439), 1, - anon_sym_in, - ACTIONS(4442), 1, - anon_sym_of, - STATE(3430), 1, - sym_comment, - ACTIONS(4218), 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(4222), 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, - [123066] = 10, + [123219] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(5091), 1, - anon_sym_EQ, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(3431), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, + anon_sym_LBRACK, + STATE(3433), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 4, - anon_sym_LPAREN, + STATE(4287), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(4505), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -315605,29 +318075,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123128] = 10, + [123285] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_COMMA, - ACTIONS(1014), 1, + ACTIONS(1058), 1, anon_sym_RBRACE, - ACTIONS(5091), 1, + ACTIONS(5056), 1, anon_sym_EQ, - STATE(3432), 1, + STATE(3434), 1, sym_comment, - STATE(5737), 1, + STATE(5732), 1, aux_sym_object_repeat1, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2482), 29, + ACTIONS(2485), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315657,21 +318127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123190] = 8, + [123347] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - STATE(3433), 1, + ACTIONS(4420), 1, + anon_sym_EQ, + STATE(3435), 1, sym_comment, - STATE(3071), 2, - sym_template_string, - sym_arguments, - ACTIONS(4993), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315685,10 +318150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 21, + ACTIONS(4229), 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, @@ -315706,38 +318173,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [123248] = 12, + [123401] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3434), 1, + STATE(3436), 1, sym_comment, - STATE(4278), 1, + STATE(4313), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315761,16 +318229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123314] = 6, + [123467] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(4412), 1, anon_sym_EQ, - STATE(3435), 1, + STATE(3437), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315784,12 +318252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(4229), 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, @@ -315809,44 +318277,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [123368] = 12, + [123521] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - STATE(3436), 1, - sym_comment, - STATE(4293), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, + ACTIONS(233), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1058), 1, + anon_sym_RBRACE, + ACTIONS(5056), 1, + anon_sym_EQ, + STATE(3438), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(992), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(2487), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -315863,91 +318329,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123434] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [123583] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - STATE(3437), 1, + ACTIONS(2151), 1, + anon_sym_EQ, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6033), 1, + anon_sym_of, + ACTIONS(6387), 1, + anon_sym_in, + STATE(3439), 1, sym_comment, - STATE(4233), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(2149), 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(2155), 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, + [123641] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5211), 1, anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(6005), 1, + anon_sym_of, + ACTIONS(6390), 1, + anon_sym_in, + STATE(3440), 1, + sym_comment, + ACTIONS(5209), 12, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4498), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [123500] = 12, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5213), 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, + [123699] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3438), 1, + STATE(3441), 1, sym_comment, - STATE(4305), 1, + STATE(4267), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315971,21 +318483,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123566] = 6, + [123765] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6158), 1, - sym_regex_flags, - STATE(3439), 1, + ACTIONS(5649), 1, + anon_sym_EQ, + ACTIONS(6031), 1, + anon_sym_of, + ACTIONS(6374), 1, + anon_sym_in, + STATE(3442), 1, sym_comment, - ACTIONS(6154), 17, + ACTIONS(5647), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -315996,10 +318509,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(6156), 20, + ACTIONS(5651), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -316016,47 +318528,47 @@ 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, - [123620] = 12, + anon_sym_satisfies, + [123823] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - STATE(3440), 1, - sym_comment, - STATE(4190), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, + ACTIONS(233), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(6098), 1, + anon_sym_RBRACE, + STATE(3443), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(2487), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -316073,99 +318585,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123686] = 12, + [123885] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - STATE(3441), 1, - sym_comment, - STATE(4206), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, + ACTIONS(233), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4498), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [123752] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5091), 1, + ACTIONS(971), 1, + anon_sym_RBRACE, + ACTIONS(5056), 1, anon_sym_EQ, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(3442), 1, + STATE(3444), 1, sym_comment, - STATE(4691), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6715), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 4, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2487), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -316182,37 +318637,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123820] = 12, + [123947] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3443), 1, + STATE(3445), 1, sym_comment, - STATE(4205), 1, + STATE(4177), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316236,37 +318691,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123886] = 12, + [124013] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3444), 1, + STATE(3446), 1, sym_comment, - STATE(4169), 1, + STATE(4284), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316290,92 +318745,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123952] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4419), 1, - anon_sym_EQ, - STATE(3445), 1, - sym_comment, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 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, - [124006] = 12, + [124079] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4642), 1, - sym__automatic_semicolon, - ACTIONS(5099), 1, - anon_sym_LBRACK, - STATE(3446), 1, - sym_comment, - STATE(4168), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 6, - anon_sym_EQ, + ACTIONS(233), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(971), 1, + anon_sym_RBRACE, + ACTIONS(5056), 1, + anon_sym_EQ, + STATE(3447), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(2485), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -316392,25 +318797,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124072] = 6, + [124141] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4642), 1, - sym__automatic_semicolon, - STATE(3447), 1, - sym_comment, - ACTIONS(1035), 8, + ACTIONS(233), 1, anon_sym_COMMA, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(6098), 1, anon_sym_RBRACE, + STATE(3448), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2486), 29, + ACTIONS(2485), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -316440,37 +318849,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124126] = 12, + [124203] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3448), 1, + STATE(3449), 1, sym_comment, - STATE(4269), 1, + STATE(4336), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316494,37 +318903,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124192] = 12, + [124269] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4642), 1, + ACTIONS(4649), 1, sym__automatic_semicolon, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3449), 1, + STATE(3450), 1, sym_comment, - STATE(4227), 1, + STATE(4254), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 6, + ACTIONS(992), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316548,39 +318957,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124258] = 14, + [124335] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(4649), 1, + sym__automatic_semicolon, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6502), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_RBRACE, - STATE(3450), 1, + STATE(3451), 1, sym_comment, - STATE(4691), 1, + STATE(4272), 1, sym__property_name, - STATE(5954), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, - anon_sym_LPAREN, + ACTIONS(992), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316604,36 +319011,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124328] = 12, + [124401] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3451), 1, + STATE(3452), 1, sym_comment, - STATE(4691), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6763), 2, + ACTIONS(6663), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316657,16 +319066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124393] = 6, + [124469] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4604), 1, + ACTIONS(4613), 1, anon_sym_EQ, - STATE(3452), 1, + STATE(3453), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316680,7 +319089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316704,16 +319113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124446] = 6, + [124522] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4576), 1, + ACTIONS(4607), 1, anon_sym_EQ, - STATE(3453), 1, + STATE(3454), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316727,7 +319136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316751,16 +319160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124499] = 6, + [124575] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4562), 1, + ACTIONS(4603), 1, anon_sym_EQ, - STATE(3454), 1, + STATE(3455), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316774,7 +319183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316798,16 +319207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124552] = 6, + [124628] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4608), 1, + ACTIONS(4565), 1, anon_sym_EQ, - STATE(3455), 1, + STATE(3456), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316821,7 +319230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316845,16 +319254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124605] = 6, + [124681] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4574), 1, + ACTIONS(4627), 1, anon_sym_EQ, - STATE(3456), 1, + STATE(3457), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316868,7 +319277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316892,16 +319301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124658] = 6, + [124734] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4568), 1, + ACTIONS(4615), 1, anon_sym_EQ, - STATE(3457), 1, + STATE(3458), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316915,7 +319324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316939,16 +319348,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124711] = 6, + [124787] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3459), 1, + sym_comment, + STATE(4658), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6806), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124852] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4590), 1, + ACTIONS(4619), 1, anon_sym_EQ, - STATE(3458), 1, + STATE(3460), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316962,7 +319424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316986,16 +319448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124764] = 6, + [124905] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4606), 1, + ACTIONS(4601), 1, anon_sym_EQ, - STATE(3459), 1, + STATE(3461), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317009,7 +319471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -317033,16 +319495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124817] = 6, + [124958] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4564), 1, + ACTIONS(4589), 1, anon_sym_EQ, - STATE(3460), 1, + STATE(3462), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317056,7 +319518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -317080,16 +319542,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124870] = 6, + [125011] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4552), 1, + ACTIONS(4621), 1, anon_sym_EQ, - STATE(3461), 1, + STATE(3463), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317103,7 +319565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4229), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -317127,124 +319589,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124923] = 5, + [125064] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6805), 1, - sym__automatic_semicolon, - STATE(3462), 1, - sym_comment, - ACTIONS(6803), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - 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_abstract, - [124973] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6809), 1, - sym__automatic_semicolon, - STATE(3463), 1, - sym_comment, - ACTIONS(6807), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6705), 1, anon_sym_RBRACE, - anon_sym_let, - 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_abstract, - [125023] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6811), 1, - sym__automatic_semicolon, STATE(3464), 1, sym_comment, - ACTIONS(2208), 35, + STATE(5948), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2485), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -317261,17 +319637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [125073] = 5, + [125120] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6816), 1, sym__automatic_semicolon, STATE(3465), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6814), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317307,16 +319682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125123] = 5, + [125170] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6805), 1, + ACTIONS(6820), 1, sym__automatic_semicolon, STATE(3466), 1, sym_comment, - ACTIONS(6803), 35, + ACTIONS(6818), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317352,16 +319727,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125173] = 5, + [125220] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6805), 1, + ACTIONS(6820), 1, sym__automatic_semicolon, STATE(3467), 1, sym_comment, - ACTIONS(6803), 35, + ACTIONS(6818), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317397,16 +319772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125223] = 5, + [125270] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6805), 1, + ACTIONS(6824), 1, sym__automatic_semicolon, STATE(3468), 1, sym_comment, - ACTIONS(6803), 35, + ACTIONS(6822), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317442,16 +319817,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125273] = 5, + [125320] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6828), 1, sym__automatic_semicolon, STATE(3469), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6826), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317487,16 +319862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125323] = 5, + [125370] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6819), 1, + ACTIONS(6832), 1, sym__automatic_semicolon, STATE(3470), 1, sym_comment, - ACTIONS(6817), 35, + ACTIONS(6830), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317532,24 +319907,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125373] = 6, + [125420] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, - anon_sym_SEMI, - ACTIONS(6826), 1, + ACTIONS(6836), 1, sym__automatic_semicolon, STATE(3471), 1, sym_comment, - ACTIONS(6821), 34, + ACTIONS(6834), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -317578,16 +319952,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125425] = 5, + [125470] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6830), 1, + ACTIONS(6816), 1, sym__automatic_semicolon, STATE(3472), 1, sym_comment, - ACTIONS(6828), 35, + ACTIONS(6814), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317623,151 +319997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125475] = 5, + [125520] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2186), 1, + ACTIONS(2193), 1, sym__automatic_semicolon, STATE(3473), 1, sym_comment, - ACTIONS(2184), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - 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_abstract, - [125525] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2212), 1, - sym__automatic_semicolon, - STATE(3474), 1, - sym_comment, - ACTIONS(2208), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - 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_abstract, - [125575] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6834), 1, - sym__automatic_semicolon, - STATE(3475), 1, - sym_comment, - ACTIONS(6832), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - 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_abstract, - [125625] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6838), 1, - sym__automatic_semicolon, - STATE(3476), 1, - sym_comment, - ACTIONS(6836), 35, + ACTIONS(2191), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317803,75 +320042,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125675] = 5, + [125570] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(4253), 1, + anon_sym_LT, ACTIONS(6838), 1, - sym__automatic_semicolon, - STATE(3477), 1, - sym_comment, - ACTIONS(6836), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - 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_abstract, - [125725] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6842), 1, - sym__automatic_semicolon, - STATE(3478), 1, + anon_sym_LPAREN, + ACTIONS(6840), 1, + anon_sym_DOT, + STATE(3474), 1, sym_comment, - ACTIONS(6840), 35, + STATE(3678), 1, + sym_arguments, + STATE(6734), 1, + sym_type_arguments, + ACTIONS(4247), 31, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -317893,16 +320091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125775] = 5, + [125628] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6834), 1, + ACTIONS(6816), 1, sym__automatic_semicolon, - STATE(3479), 1, + STATE(3475), 1, sym_comment, - ACTIONS(6832), 35, + ACTIONS(6814), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317938,16 +320136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125825] = 5, + [125678] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6846), 1, + ACTIONS(6816), 1, sym__automatic_semicolon, - STATE(3480), 1, + STATE(3476), 1, sym_comment, - ACTIONS(6844), 35, + ACTIONS(6814), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317983,34 +320181,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125875] = 9, + [125728] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(6848), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, - anon_sym_DOT, - STATE(3481), 1, + ACTIONS(6844), 1, + sym__automatic_semicolon, + STATE(3477), 1, sym_comment, - STATE(3640), 1, - sym_arguments, - STATE(6718), 1, - sym_type_arguments, - ACTIONS(4294), 31, + ACTIONS(6842), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -318032,16 +320226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125933] = 5, + [125778] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6842), 1, + ACTIONS(6832), 1, sym__automatic_semicolon, - STATE(3482), 1, + STATE(3478), 1, sym_comment, - ACTIONS(6840), 35, + ACTIONS(6830), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318077,16 +320271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125983] = 5, + [125828] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6852), 1, + ACTIONS(6848), 1, sym__automatic_semicolon, - STATE(3483), 1, + STATE(3479), 1, sym_comment, - ACTIONS(2138), 35, + ACTIONS(6846), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318122,16 +320316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126033] = 5, + [125878] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6854), 1, + ACTIONS(6832), 1, sym__automatic_semicolon, - STATE(3484), 1, + STATE(3480), 1, sym_comment, - ACTIONS(2208), 35, + ACTIONS(6830), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318167,16 +320361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126083] = 5, + [125928] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6842), 1, + ACTIONS(6844), 1, sym__automatic_semicolon, - STATE(3485), 1, + STATE(3481), 1, sym_comment, - ACTIONS(6840), 35, + ACTIONS(6842), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318212,16 +320406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126133] = 5, + [125978] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6834), 1, + ACTIONS(6850), 1, sym__automatic_semicolon, - STATE(3486), 1, + STATE(3482), 1, sym_comment, - ACTIONS(6832), 35, + ACTIONS(2191), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318257,16 +320451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126183] = 5, + [126028] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6805), 1, + ACTIONS(6854), 1, sym__automatic_semicolon, - STATE(3487), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6803), 35, + ACTIONS(6852), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318302,16 +320496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126233] = 5, + [126078] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6824), 1, sym__automatic_semicolon, - STATE(3488), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6822), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318347,16 +320541,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126283] = 5, + [126128] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6838), 1, + ACTIONS(6858), 1, sym__automatic_semicolon, - STATE(3489), 1, + STATE(3485), 1, sym_comment, - ACTIONS(6836), 35, + ACTIONS(6856), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318392,23 +320586,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126333] = 5, + [126178] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6838), 1, + ACTIONS(6862), 1, + anon_sym_SEMI, + ACTIONS(6865), 1, sym__automatic_semicolon, - STATE(3490), 1, + STATE(3486), 1, sym_comment, - ACTIONS(6836), 35, + ACTIONS(6860), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -318437,38 +320632,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126383] = 8, + [126230] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6502), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_RBRACE, - STATE(3491), 1, + ACTIONS(6832), 1, + sym__automatic_semicolon, + STATE(3487), 1, sym_comment, - STATE(5954), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2482), 29, + ACTIONS(6830), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -318485,16 +320676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126439] = 5, + anon_sym_abstract, + [126280] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6805), 1, + ACTIONS(6869), 1, sym__automatic_semicolon, - STATE(3492), 1, + STATE(3488), 1, sym_comment, - ACTIONS(6803), 35, + ACTIONS(6867), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318530,25 +320722,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126489] = 8, + [126330] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6502), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + STATE(3489), 1, + sym_comment, + ACTIONS(6663), 2, anon_sym_COMMA, - ACTIONS(6652), 1, anon_sym_RBRACE, - STATE(3493), 1, - sym_comment, - STATE(5954), 1, - aux_sym_object_repeat1, - ACTIONS(1035), 4, + ACTIONS(992), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(2485), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318578,16 +320769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126545] = 5, + [126384] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6856), 1, + ACTIONS(6828), 1, sym__automatic_semicolon, - STATE(3494), 1, + STATE(3490), 1, sym_comment, - ACTIONS(2138), 35, + ACTIONS(6826), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318623,16 +320814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126595] = 5, + [126434] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6805), 1, + ACTIONS(6820), 1, sym__automatic_semicolon, - STATE(3495), 1, + STATE(3491), 1, sym_comment, - ACTIONS(6803), 35, + ACTIONS(6818), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318668,16 +320859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126645] = 5, + [126484] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6824), 1, sym__automatic_semicolon, - STATE(3496), 1, + STATE(3492), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6822), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318713,16 +320904,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126695] = 5, + [126534] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6705), 1, + anon_sym_RBRACE, + STATE(3493), 1, + sym_comment, + STATE(5948), 1, + aux_sym_object_repeat1, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2487), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [126590] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6848), 1, sym__automatic_semicolon, - STATE(3497), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6846), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318758,16 +320997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126745] = 5, + [126640] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6830), 1, + ACTIONS(6871), 1, sym__automatic_semicolon, - STATE(3498), 1, + STATE(3495), 1, sym_comment, - ACTIONS(6828), 35, + ACTIONS(2147), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318803,24 +321042,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126795] = 6, + [126690] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6860), 1, - anon_sym_SEMI, - ACTIONS(6863), 1, + ACTIONS(6875), 1, sym__automatic_semicolon, - STATE(3499), 1, + STATE(3496), 1, sym_comment, - ACTIONS(6858), 34, + ACTIONS(6873), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -318849,16 +321087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126847] = 5, + [126740] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6838), 1, + ACTIONS(6877), 1, sym__automatic_semicolon, - STATE(3500), 1, + STATE(3497), 1, sym_comment, - ACTIONS(6836), 35, + ACTIONS(2147), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318894,16 +321132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126897] = 5, + [126790] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6838), 1, + ACTIONS(6820), 1, sym__automatic_semicolon, - STATE(3501), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6836), 35, + ACTIONS(6818), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318939,56 +321177,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126947] = 17, + [126840] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(6879), 1, + sym__automatic_semicolon, + STATE(3499), 1, + sym_comment, + ACTIONS(2191), 35, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_STAR, - ACTIONS(6867), 1, anon_sym_async, - ACTIONS(6869), 1, + 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, - STATE(3502), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [126890] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6883), 1, + sym__automatic_semicolon, + STATE(3500), 1, sym_comment, - STATE(3623), 1, - sym_override_modifier, - STATE(4713), 1, - sym__property_name, - ACTIONS(2823), 2, + ACTIONS(6881), 35, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_let, + 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, - ACTIONS(6871), 2, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [126940] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2217), 1, + sym__automatic_semicolon, + STATE(3501), 1, + sym_comment, + ACTIONS(2215), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -318996,16 +321311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127021] = 5, + anon_sym_abstract, + [126990] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6830), 1, + ACTIONS(6848), 1, sym__automatic_semicolon, - STATE(3503), 1, + STATE(3502), 1, sym_comment, - ACTIONS(6828), 35, + ACTIONS(6846), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319041,16 +321357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127071] = 5, + [127040] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6838), 1, + ACTIONS(6816), 1, sym__automatic_semicolon, - STATE(3504), 1, + STATE(3503), 1, sym_comment, - ACTIONS(6836), 35, + ACTIONS(6814), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319086,16 +321402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127121] = 5, + [127090] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6842), 1, + ACTIONS(6828), 1, sym__automatic_semicolon, - STATE(3505), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6840), 35, + ACTIONS(6826), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319131,34 +321447,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127171] = 5, + [127140] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6842), 1, - sym__automatic_semicolon, - STATE(3506), 1, + ACTIONS(5056), 1, + anon_sym_EQ, + STATE(3505), 1, sym_comment, - ACTIONS(6840), 35, + ACTIONS(6663), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2487), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -319175,17 +321494,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [127221] = 5, + [127194] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6809), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_override, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6885), 1, + anon_sym_STAR, + ACTIONS(6887), 1, + anon_sym_async, + ACTIONS(6889), 1, + anon_sym_readonly, + STATE(3506), 1, + sym_comment, + STATE(3634), 1, + sym_override_modifier, + STATE(4822), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6891), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127268] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6848), 1, sym__automatic_semicolon, STATE(3507), 1, sym_comment, - ACTIONS(6807), 35, + ACTIONS(6846), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319221,16 +321596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127271] = 5, + [127318] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6830), 1, + ACTIONS(6820), 1, sym__automatic_semicolon, STATE(3508), 1, sym_comment, - ACTIONS(6828), 35, + ACTIONS(6818), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319266,16 +321641,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127321] = 5, + [127368] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6875), 1, + ACTIONS(6832), 1, sym__automatic_semicolon, STATE(3509), 1, sym_comment, - ACTIONS(6873), 35, + ACTIONS(6830), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319311,37 +321686,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127371] = 7, + [127418] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5091), 1, - anon_sym_EQ, + ACTIONS(6828), 1, + sym__automatic_semicolon, STATE(3510), 1, sym_comment, - ACTIONS(6715), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2482), 29, + ACTIONS(6826), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -319358,16 +321730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127425] = 5, + anon_sym_abstract, + [127468] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6830), 1, + ACTIONS(6836), 1, sym__automatic_semicolon, STATE(3511), 1, sym_comment, - ACTIONS(6828), 35, + ACTIONS(6834), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319403,16 +321776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127475] = 5, + [127518] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6879), 1, + ACTIONS(6824), 1, sym__automatic_semicolon, STATE(3512), 1, sym_comment, - ACTIONS(6877), 35, + ACTIONS(6822), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319448,37 +321821,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127525] = 7, + [127568] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5091), 1, - anon_sym_EQ, + ACTIONS(6816), 1, + sym__automatic_semicolon, STATE(3513), 1, sym_comment, - ACTIONS(6715), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(6814), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -319495,16 +321865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127579] = 5, + anon_sym_abstract, + [127618] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6819), 1, + ACTIONS(6828), 1, sym__automatic_semicolon, STATE(3514), 1, sym_comment, - ACTIONS(6817), 35, + ACTIONS(6826), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319540,16 +321911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127629] = 5, + [127668] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6883), 1, + ACTIONS(6824), 1, sym__automatic_semicolon, STATE(3515), 1, sym_comment, - ACTIONS(6881), 35, + ACTIONS(6822), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319585,16 +321956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127679] = 5, + [127718] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6834), 1, + ACTIONS(6816), 1, sym__automatic_semicolon, STATE(3516), 1, sym_comment, - ACTIONS(6832), 35, + ACTIONS(6814), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319630,16 +322001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127729] = 5, + [127768] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6834), 1, + ACTIONS(6895), 1, sym__automatic_semicolon, STATE(3517), 1, sym_comment, - ACTIONS(6832), 35, + ACTIONS(6893), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319675,16 +322046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127779] = 5, + [127818] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6887), 1, + ACTIONS(6824), 1, sym__automatic_semicolon, STATE(3518), 1, sym_comment, - ACTIONS(6885), 35, + ACTIONS(6822), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319720,16 +322091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127829] = 5, + [127868] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6891), 1, + ACTIONS(6824), 1, sym__automatic_semicolon, STATE(3519), 1, sym_comment, - ACTIONS(6889), 35, + ACTIONS(6822), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319765,41 +322136,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127879] = 12, + [127918] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6893), 1, - anon_sym_EQ_GT, + ACTIONS(6848), 1, + sym__automatic_semicolon, STATE(3520), 1, sym_comment, - STATE(4713), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(6846), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -319816,46 +322180,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127942] = 13, + anon_sym_abstract, + [127968] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_STAR, + ACTIONS(6899), 1, + anon_sym_SEMI, + ACTIONS(6902), 1, + sym__automatic_semicolon, STATE(3521), 1, sym_comment, - STATE(4713), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6871), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(6897), 34, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -319868,47 +322226,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128007] = 14, + anon_sym_abstract, + [128020] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_STAR, - ACTIONS(6867), 1, - anon_sym_async, + ACTIONS(6904), 1, + anon_sym_EQ_GT, STATE(3522), 1, sym_comment, - STATE(4713), 1, + STATE(4822), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6871), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -319921,14 +322278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128074] = 4, + [128083] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3523), 1, sym_comment, - ACTIONS(2208), 35, + ACTIONS(2215), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319964,14 +322321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128121] = 4, + [128130] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3524), 1, sym_comment, - ACTIONS(6895), 35, + ACTIONS(6906), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320007,32 +322364,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128168] = 4, + [128177] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3525), 1, sym_comment, - ACTIONS(2184), 35, + ACTIONS(6806), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2485), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -320049,15 +322409,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [128215] = 4, + [128228] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3526), 1, sym_comment, - ACTIONS(6858), 35, + ACTIONS(6806), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2487), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [128279] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3527), 1, + sym_comment, + ACTIONS(6908), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320093,46 +322497,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128262] = 13, + [128326] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_STAR, - STATE(3527), 1, + STATE(3528), 1, sym_comment, - STATE(4669), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6899), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(6910), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -320145,14 +322539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128327] = 4, + anon_sym_abstract, + [128373] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3528), 1, + STATE(3529), 1, sym_comment, - ACTIONS(6901), 35, + ACTIONS(6860), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320188,84 +322583,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128374] = 6, + [128420] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3529), 1, - sym_comment, - ACTIONS(6763), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1035), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2482), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1972), 1, anon_sym_DQUOTE, + ACTIONS(1974), 1, anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6912), 1, + anon_sym_STAR, + STATE(3530), 1, + sym_comment, + STATE(4707), 1, + sym__property_name, + ACTIONS(2830), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6914), 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, - [128425] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3530), 1, - sym_comment, - ACTIONS(6763), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1035), 4, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2486), 29, + ACTIONS(2996), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -320278,14 +322635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128476] = 4, + [128485] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3531), 1, sym_comment, - ACTIONS(6903), 35, + ACTIONS(6906), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320321,39 +322678,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128523] = 14, + [128532] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(6916), 1, anon_sym_STAR, - ACTIONS(6905), 1, + ACTIONS(6918), 1, anon_sym_async, STATE(3532), 1, sym_comment, - STATE(4669), 1, + STATE(4783), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6899), 2, + ACTIONS(6920), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2996), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320374,43 +322731,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128590] = 14, + [128599] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6907), 1, + ACTIONS(6916), 1, anon_sym_STAR, - ACTIONS(6909), 1, - anon_sym_async, STATE(3533), 1, sym_comment, - STATE(4698), 1, + STATE(4783), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6911), 2, + ACTIONS(6920), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -320427,42 +322783,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128657] = 13, + [128664] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6907), 1, + ACTIONS(6885), 1, anon_sym_STAR, + ACTIONS(6887), 1, + anon_sym_async, STATE(3534), 1, sym_comment, - STATE(4698), 1, + STATE(4822), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6911), 2, + ACTIONS(6891), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2996), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -320479,42 +322836,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128722] = 13, + [128731] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6913), 1, + ACTIONS(6922), 1, anon_sym_STAR, + ACTIONS(6924), 1, + anon_sym_async, STATE(3535), 1, sym_comment, - STATE(4773), 1, + STATE(4680), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6915), 2, + ACTIONS(6926), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2996), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -320531,14 +322889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128787] = 4, + [128798] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3536), 1, sym_comment, - ACTIONS(6903), 35, + ACTIONS(2191), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320574,36 +322932,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128834] = 4, + [128845] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6922), 1, + anon_sym_STAR, STATE(3537), 1, sym_comment, - ACTIONS(6917), 35, + STATE(4680), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6926), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -320616,33 +322984,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [128881] = 11, + [128910] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, + ACTIONS(6885), 1, + anon_sym_STAR, STATE(3538), 1, sym_comment, - STATE(4821), 1, + STATE(4822), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(6891), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320652,8 +323024,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, @@ -320666,39 +323036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128941] = 11, + [128975] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, STATE(3539), 1, sym_comment, - STATE(4686), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(6928), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -320715,56 +323078,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129001] = 19, + anon_sym_abstract, + [129022] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(5779), 1, - anon_sym_STAR, - ACTIONS(5783), 1, - anon_sym_async, - ACTIONS(6919), 1, - anon_sym_static, - ACTIONS(6921), 1, - anon_sym_readonly, - ACTIONS(6923), 1, - anon_sym_declare, - ACTIONS(6925), 1, - anon_sym_abstract, STATE(3540), 1, sym_comment, - STATE(3626), 1, - sym_override_modifier, - STATE(3929), 1, + STATE(4848), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(5787), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 16, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -320772,32 +323128,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129077] = 11, + [129082] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3541), 1, sym_comment, - STATE(4830), 1, + STATE(4777), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320821,32 +323177,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129137] = 11, + [129142] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3542), 1, sym_comment, - STATE(4689), 1, + STATE(4681), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320870,32 +323226,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129197] = 11, + [129202] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3543), 1, sym_comment, - STATE(4695), 1, + STATE(4753), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320919,32 +323275,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129257] = 11, + [129262] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3544), 1, sym_comment, - STATE(4698), 1, + STATE(4764), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320968,32 +323324,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129317] = 11, + [129322] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3545), 1, sym_comment, - STATE(4768), 1, + STATE(4680), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321017,32 +323373,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129377] = 11, + [129382] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3546), 1, sym_comment, - STATE(4782), 1, + STATE(4781), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321066,32 +323422,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129437] = 11, + [129442] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3547), 1, sym_comment, - STATE(4824), 1, + STATE(4783), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321115,32 +323471,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129497] = 11, + [129502] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3548), 1, sym_comment, - STATE(4807), 1, + STATE(4822), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321164,32 +323520,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129557] = 11, + [129562] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3549), 1, sym_comment, - STATE(4674), 1, + STATE(4818), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321213,47 +323569,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129617] = 19, + [129622] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6271), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(6273), 1, anon_sym_async, - ACTIONS(6927), 1, + ACTIONS(6930), 1, anon_sym_static, - ACTIONS(6929), 1, + ACTIONS(6932), 1, anon_sym_readonly, - ACTIONS(6931), 1, + ACTIONS(6934), 1, anon_sym_declare, - ACTIONS(6933), 1, + ACTIONS(6936), 1, anon_sym_abstract, STATE(3550), 1, sym_comment, - STATE(3629), 1, + STATE(3623), 1, sym_override_modifier, - STATE(3924), 1, + STATE(3936), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6097), 2, + ACTIONS(6277), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 16, + ACTIONS(4505), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321270,130 +323626,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129693] = 11, + [129698] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3551), 1, sym_comment, - STATE(4673), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [129753] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(3552), 1, - sym_comment, - STATE(4829), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [129813] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(3553), 1, - sym_comment, - STATE(4813), 1, + STATE(4693), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321417,32 +323675,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129873] = 11, + [129758] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3554), 1, + STATE(3552), 1, sym_comment, - STATE(4777), 1, + STATE(4723), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321466,32 +323724,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129933] = 11, + [129818] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3555), 1, + STATE(3553), 1, sym_comment, - STATE(4746), 1, + STATE(4664), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321515,32 +323773,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129993] = 11, + [129878] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3556), 1, + STATE(3554), 1, sym_comment, - STATE(4669), 1, + STATE(4739), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321564,32 +323822,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130053] = 11, + [129938] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3557), 1, + STATE(3555), 1, sym_comment, - STATE(4845), 1, + STATE(4707), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321613,74 +323871,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130113] = 4, + [129998] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3558), 1, - sym_comment, - ACTIONS(4417), 34, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1972), 1, anon_sym_DQUOTE, + ACTIONS(1974), 1, anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_LT, - 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_abstract, - [130159] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3559), 1, + STATE(3556), 1, sym_comment, - STATE(4740), 1, + STATE(4824), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321704,48 +323920,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130219] = 11, + [130058] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3560), 1, + ACTIONS(5845), 1, + anon_sym_STAR, + ACTIONS(5849), 1, + anon_sym_async, + ACTIONS(6938), 1, + anon_sym_static, + ACTIONS(6940), 1, + anon_sym_readonly, + ACTIONS(6942), 1, + anon_sym_declare, + ACTIONS(6944), 1, + anon_sym_abstract, + STATE(3557), 1, sym_comment, - STATE(4822), 1, + STATE(3627), 1, + sym_override_modifier, + STATE(3898), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(5853), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(4505), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -321753,32 +323977,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130279] = 11, + [130134] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3561), 1, + STATE(3558), 1, sym_comment, - STATE(4773), 1, + STATE(4805), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321802,32 +324026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130339] = 11, + [130194] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3562), 1, + STATE(3559), 1, sym_comment, - STATE(4696), 1, + STATE(4741), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321851,32 +324075,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130399] = 11, + [130254] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3563), 1, + STATE(3560), 1, sym_comment, - STATE(4747), 1, + STATE(4731), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321900,39 +324124,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130459] = 11, + [130314] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(3564), 1, + STATE(3561), 1, sym_comment, - STATE(4828), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(4383), 34, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_LT, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -321949,32 +324165,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130519] = 11, + anon_sym_abstract, + [130360] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3565), 1, + STATE(3562), 1, sym_comment, - STATE(4713), 1, + STATE(4821), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321998,32 +324215,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130579] = 11, + [130420] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3566), 1, + STATE(3563), 1, sym_comment, - STATE(4711), 1, + STATE(4690), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322047,32 +324264,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130639] = 11, + [130480] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3567), 1, + STATE(3564), 1, sym_comment, - STATE(4721), 1, + STATE(4825), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(1035), 3, + ACTIONS(992), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322096,39 +324313,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130699] = 15, + [130540] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6725), 1, - anon_sym_readonly, - ACTIONS(6935), 1, - anon_sym_STAR, - STATE(3568), 1, + STATE(3565), 1, sym_comment, - STATE(3634), 1, - sym_override_modifier, - STATE(3906), 1, + STATE(4743), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6937), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322137,10 +324347,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, @@ -322148,32 +324362,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130766] = 12, + [130600] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6939), 1, - anon_sym_RBRACE, - STATE(3569), 1, + STATE(3566), 1, sym_comment, - STATE(5449), 1, + STATE(4761), 1, sym__property_name, - STATE(6552), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322183,168 +324397,46 @@ 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, - [130827] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2923), 1, - anon_sym_namespace, - ACTIONS(2925), 1, - anon_sym_import, - ACTIONS(2927), 1, - anon_sym_var, - ACTIONS(2929), 1, - anon_sym_let, - ACTIONS(2931), 1, - anon_sym_const, - ACTIONS(2935), 1, - anon_sym_class, - ACTIONS(2937), 1, - anon_sym_async, - ACTIONS(2939), 1, - anon_sym_function, - ACTIONS(2941), 1, - anon_sym_declare, - ACTIONS(2943), 1, - anon_sym_module, - ACTIONS(2945), 1, - anon_sym_abstract, - ACTIONS(2947), 1, - anon_sym_interface, - ACTIONS(2949), 1, - anon_sym_enum, - ACTIONS(3005), 1, - anon_sym_type, - ACTIONS(6941), 1, - anon_sym_default, - STATE(1350), 1, - sym_internal_module, - STATE(1381), 1, - sym_declaration, - STATE(3570), 1, - sym_comment, - STATE(4862), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(1344), 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, - [130912] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3025), 1, - anon_sym_type, - ACTIONS(3027), 1, - anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, - anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, - anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, - anon_sym_declare, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4644), 1, - anon_sym_module, - ACTIONS(6943), 1, - anon_sym_default, - STATE(3571), 1, - sym_comment, - STATE(4889), 1, - aux_sym_export_statement_repeat1, - STATE(4985), 1, - sym_declaration, - STATE(4995), 1, - sym_internal_module, - STATE(5599), 1, - sym_decorator, - STATE(4988), 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, - [130997] = 12, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130660] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6945), 1, - anon_sym_RBRACE, - STATE(3572), 1, + STATE(3567), 1, sym_comment, - STATE(5449), 1, + STATE(4744), 1, sym__property_name, - STATE(6552), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322368,160 +324460,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131058] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2961), 1, - anon_sym_namespace, - ACTIONS(2963), 1, - anon_sym_import, - ACTIONS(2965), 1, - anon_sym_var, - ACTIONS(2967), 1, - anon_sym_let, - ACTIONS(2969), 1, - anon_sym_const, - ACTIONS(2973), 1, - anon_sym_class, - ACTIONS(2975), 1, - anon_sym_async, - ACTIONS(2977), 1, - anon_sym_function, - ACTIONS(2979), 1, - anon_sym_declare, - ACTIONS(2981), 1, - anon_sym_module, - ACTIONS(2983), 1, - anon_sym_abstract, - ACTIONS(2985), 1, - anon_sym_interface, - ACTIONS(2987), 1, - anon_sym_enum, - ACTIONS(2999), 1, - anon_sym_type, - ACTIONS(6947), 1, - anon_sym_default, - STATE(3573), 1, - sym_comment, - STATE(5028), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(6333), 1, - sym_internal_module, - STATE(6441), 1, - sym_declaration, - STATE(6330), 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, - [131143] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2752), 1, - anon_sym_namespace, - ACTIONS(2758), 1, - anon_sym_import, - ACTIONS(2760), 1, - anon_sym_var, - ACTIONS(2762), 1, - anon_sym_let, - ACTIONS(2764), 1, - anon_sym_const, - ACTIONS(2772), 1, - anon_sym_class, - ACTIONS(2774), 1, - anon_sym_async, - ACTIONS(2776), 1, - anon_sym_function, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2789), 1, - anon_sym_declare, - ACTIONS(2791), 1, - anon_sym_module, - ACTIONS(2793), 1, - anon_sym_abstract, - ACTIONS(2795), 1, - anon_sym_interface, - ACTIONS(2797), 1, - anon_sym_enum, - ACTIONS(2827), 1, - anon_sym_type, - ACTIONS(6949), 1, - anon_sym_default, - STATE(1583), 1, - sym_declaration, - STATE(1584), 1, - sym_internal_module, - STATE(3574), 1, - sym_comment, - STATE(4853), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(1618), 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, - [131228] = 15, + [130720] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6951), 1, - anon_sym_static, - ACTIONS(6953), 1, - anon_sym_readonly, - ACTIONS(6955), 1, - anon_sym_abstract, - STATE(3575), 1, + STATE(3568), 1, sym_comment, - STATE(3649), 1, - sym_override_modifier, - STATE(4234), 1, + STATE(4800), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 20, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322529,12 +324493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -322542,32 +324509,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131295] = 12, + [130780] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6957), 1, - anon_sym_RBRACE, - STATE(3576), 1, + STATE(3569), 1, sym_comment, - STATE(4867), 1, + STATE(4775), 1, sym__property_name, - STATE(5663), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322591,93 +324558,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131356] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2923), 1, - anon_sym_namespace, - ACTIONS(2925), 1, - anon_sym_import, - ACTIONS(2927), 1, - anon_sym_var, - ACTIONS(2929), 1, - anon_sym_let, - ACTIONS(2931), 1, - anon_sym_const, - ACTIONS(2935), 1, - anon_sym_class, - ACTIONS(2937), 1, - anon_sym_async, - ACTIONS(2939), 1, - anon_sym_function, - ACTIONS(2941), 1, - anon_sym_declare, - ACTIONS(2945), 1, - anon_sym_abstract, - ACTIONS(2947), 1, - anon_sym_interface, - ACTIONS(2949), 1, - anon_sym_enum, - ACTIONS(3005), 1, - anon_sym_type, - ACTIONS(3007), 1, - anon_sym_module, - ACTIONS(3009), 1, - anon_sym_global, - STATE(1350), 1, - sym_internal_module, - STATE(1362), 1, - sym_declaration, - STATE(3577), 1, - sym_comment, - STATE(4862), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(1344), 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, - [131441] = 12, + [130840] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6959), 1, + ACTIONS(6946), 1, anon_sym_RBRACE, - STATE(3578), 1, + STATE(3570), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322701,41 +324607,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131502] = 6, + [130901] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6961), 1, - anon_sym_AT, - STATE(3678), 1, - sym_decorator, - STATE(3579), 2, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, + anon_sym_STAR, + ACTIONS(6950), 1, + anon_sym_readonly, + STATE(3571), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4380), 30, + STATE(3624), 1, + sym_override_modifier, + STATE(3934), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6952), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4505), 19, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -322743,33 +324659,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [131551] = 12, + [130968] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6964), 1, + ACTIONS(6954), 1, anon_sym_RBRACE, - STATE(3580), 1, + STATE(3572), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322793,32 +324708,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131612] = 12, + [131029] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6966), 1, + ACTIONS(6956), 1, anon_sym_RBRACE, - STATE(3581), 1, + STATE(3573), 1, sym_comment, - STATE(5115), 1, + STATE(5451), 1, sym__property_name, - STATE(5940), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322842,43 +324757,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131673] = 17, + [131090] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_override, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6209), 1, + ACTIONS(5054), 1, anon_sym_STAR, - ACTIONS(6211), 1, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, anon_sym_async, - ACTIONS(6213), 1, + ACTIONS(5068), 1, anon_sym_readonly, - ACTIONS(6968), 1, + ACTIONS(6958), 1, anon_sym_static, - STATE(3582), 1, + STATE(3574), 1, sym_comment, - STATE(3632), 1, + STATE(3625), 1, sym_override_modifier, - STATE(3981), 1, + STATE(3940), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6215), 2, + ACTIONS(5070), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 17, + ACTIONS(4505), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322896,32 +324811,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131744] = 12, + [131161] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6970), 1, - anon_sym_RBRACE, - STATE(3583), 1, + ACTIONS(6265), 1, + anon_sym_static, + ACTIONS(6267), 1, + anon_sym_readonly, + ACTIONS(6269), 1, + anon_sym_abstract, + STATE(3575), 1, sym_comment, - STATE(5449), 1, + STATE(3658), 1, + sym_override_modifier, + STATE(4335), 1, sym__property_name, - STATE(6552), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322929,15 +324850,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, @@ -322945,32 +324863,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131805] = 12, + [131228] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, + ACTIONS(6960), 1, anon_sym_RBRACE, - STATE(3584), 1, + STATE(3576), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322994,32 +324912,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131866] = 12, + [131289] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6974), 1, + ACTIONS(6962), 1, anon_sym_RBRACE, - STATE(3585), 1, + STATE(3577), 1, sym_comment, - STATE(5305), 1, + STATE(4861), 1, sym__property_name, - STATE(6139), 1, + STATE(5662), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323043,54 +324961,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131927] = 24, + [131350] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(2961), 1, + ACTIONS(2930), 1, anon_sym_namespace, - ACTIONS(2963), 1, + ACTIONS(2932), 1, anon_sym_import, - ACTIONS(2965), 1, + ACTIONS(2934), 1, anon_sym_var, - ACTIONS(2967), 1, + ACTIONS(2936), 1, anon_sym_let, - ACTIONS(2969), 1, + ACTIONS(2938), 1, anon_sym_const, - ACTIONS(2973), 1, + ACTIONS(2942), 1, anon_sym_class, - ACTIONS(2975), 1, + ACTIONS(2944), 1, anon_sym_async, - ACTIONS(2977), 1, + ACTIONS(2946), 1, anon_sym_function, - ACTIONS(2979), 1, + ACTIONS(2948), 1, anon_sym_declare, - ACTIONS(2983), 1, + ACTIONS(2950), 1, + anon_sym_module, + ACTIONS(2952), 1, anon_sym_abstract, - ACTIONS(2985), 1, + ACTIONS(2954), 1, anon_sym_interface, - ACTIONS(2987), 1, + ACTIONS(2956), 1, anon_sym_enum, - ACTIONS(2999), 1, + ACTIONS(3006), 1, anon_sym_type, - ACTIONS(3001), 1, - anon_sym_module, - ACTIONS(3003), 1, - anon_sym_global, - STATE(3586), 1, + ACTIONS(6964), 1, + anon_sym_default, + STATE(3578), 1, sym_comment, - STATE(5028), 1, + STATE(5030), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(6333), 1, + STATE(6337), 1, sym_internal_module, - STATE(6342), 1, + STATE(6445), 1, sym_declaration, - STATE(6330), 13, + STATE(6333), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -323104,32 +325022,84 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [132012] = 12, + [131435] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6976), 1, + ACTIONS(6812), 1, + anon_sym_readonly, + ACTIONS(6966), 1, + anon_sym_STAR, + STATE(3579), 1, + sym_comment, + STATE(3628), 1, + sym_override_modifier, + STATE(3909), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6968), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4505), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131502] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6970), 1, anon_sym_RBRACE, - STATE(3587), 1, + STATE(3580), 1, sym_comment, - STATE(5348), 1, + STATE(5451), 1, sym__property_name, - STATE(6290), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323153,47 +325123,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132073] = 15, + [131563] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, + ACTIONS(2998), 1, + anon_sym_async, + ACTIONS(3000), 1, + anon_sym_readonly, + ACTIONS(3004), 1, anon_sym_override, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6165), 1, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6972), 1, anon_sym_static, - ACTIONS(6167), 1, - anon_sym_readonly, - ACTIONS(6169), 1, - anon_sym_abstract, - STATE(3588), 1, + STATE(3581), 1, sym_comment, - STATE(3661), 1, + STATE(3620), 1, sym_override_modifier, - STATE(4188), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + ACTIONS(3002), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 20, + ACTIONS(2996), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -323205,32 +325177,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132140] = 12, + [131634] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(2968), 1, + anon_sym_namespace, + ACTIONS(2970), 1, + anon_sym_import, + ACTIONS(2972), 1, + anon_sym_var, + ACTIONS(2974), 1, + anon_sym_let, + ACTIONS(2976), 1, + anon_sym_const, + ACTIONS(2980), 1, + anon_sym_class, + ACTIONS(2982), 1, + anon_sym_async, + ACTIONS(2984), 1, + anon_sym_function, + ACTIONS(2986), 1, + anon_sym_declare, + ACTIONS(2990), 1, + anon_sym_abstract, + ACTIONS(2992), 1, + anon_sym_interface, + ACTIONS(2994), 1, + anon_sym_enum, + ACTIONS(3012), 1, + anon_sym_type, + ACTIONS(3014), 1, + anon_sym_module, + ACTIONS(3016), 1, + anon_sym_global, + STATE(1446), 1, + sym_internal_module, + STATE(1489), 1, + sym_declaration, + STATE(3582), 1, + sym_comment, + STATE(4864), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(1436), 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, + [131719] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6978), 1, + ACTIONS(6974), 1, anon_sym_RBRACE, - STATE(3589), 1, + STATE(3583), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323254,54 +325287,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132201] = 24, + [131780] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(2881), 1, + ACTIONS(2888), 1, anon_sym_namespace, - ACTIONS(2883), 1, + ACTIONS(2890), 1, anon_sym_import, - ACTIONS(2885), 1, + ACTIONS(2892), 1, anon_sym_var, - ACTIONS(2887), 1, + ACTIONS(2894), 1, anon_sym_let, - ACTIONS(2889), 1, + ACTIONS(2896), 1, anon_sym_const, - ACTIONS(2893), 1, + ACTIONS(2900), 1, anon_sym_class, - ACTIONS(2895), 1, + ACTIONS(2902), 1, anon_sym_async, - ACTIONS(2897), 1, + ACTIONS(2904), 1, anon_sym_function, - ACTIONS(2899), 1, + ACTIONS(2906), 1, anon_sym_declare, - ACTIONS(2901), 1, - anon_sym_module, - ACTIONS(2903), 1, + ACTIONS(2910), 1, anon_sym_abstract, - ACTIONS(2905), 1, + ACTIONS(2912), 1, anon_sym_interface, - ACTIONS(2907), 1, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(3017), 1, + ACTIONS(3024), 1, anon_sym_type, - ACTIONS(6980), 1, - anon_sym_default, - STATE(1357), 1, + ACTIONS(3026), 1, + anon_sym_module, + ACTIONS(3028), 1, + anon_sym_global, + STATE(1041), 1, sym_internal_module, - STATE(1402), 1, + STATE(1084), 1, sym_declaration, - STATE(3590), 1, + STATE(3584), 1, sym_comment, - STATE(4902), 1, + STATE(4859), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(1331), 13, + STATE(1042), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -323315,32 +325348,32 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [132286] = 12, + [131865] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6982), 1, + ACTIONS(6976), 1, anon_sym_RBRACE, - STATE(3591), 1, + STATE(3585), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323364,32 +325397,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132347] = 12, + [131926] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6984), 1, + ACTIONS(6978), 1, anon_sym_RBRACE, - STATE(3592), 1, + STATE(3586), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323413,32 +325446,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132408] = 12, + [131987] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(2930), 1, + anon_sym_namespace, + ACTIONS(2932), 1, + anon_sym_import, + ACTIONS(2934), 1, + anon_sym_var, + ACTIONS(2936), 1, + anon_sym_let, + ACTIONS(2938), 1, + anon_sym_const, + ACTIONS(2942), 1, + anon_sym_class, + ACTIONS(2944), 1, + anon_sym_async, + ACTIONS(2946), 1, + anon_sym_function, + ACTIONS(2948), 1, + anon_sym_declare, + ACTIONS(2952), 1, + anon_sym_abstract, + ACTIONS(2954), 1, + anon_sym_interface, + ACTIONS(2956), 1, + anon_sym_enum, + ACTIONS(3006), 1, + anon_sym_type, + ACTIONS(3008), 1, + anon_sym_module, + ACTIONS(3010), 1, + anon_sym_global, + STATE(3587), 1, + sym_comment, + STATE(5030), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(6337), 1, + sym_internal_module, + STATE(6346), 1, + sym_declaration, + STATE(6333), 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, + [132072] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6986), 1, + ACTIONS(6980), 1, anon_sym_RBRACE, - STATE(3593), 1, + STATE(3588), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323462,32 +325556,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132469] = 12, + [132133] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6988), 1, + ACTIONS(6982), 1, anon_sym_RBRACE, - STATE(3594), 1, + STATE(3589), 1, sym_comment, - STATE(5449), 1, + STATE(5205), 1, sym__property_name, - STATE(6552), 1, + STATE(6056), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323511,39 +325605,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132530] = 12, + [132194] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6990), 1, + ACTIONS(6984), 1, anon_sym_RBRACE, - STATE(3595), 1, + STATE(3590), 1, sym_comment, - STATE(5449), 1, + STATE(5070), 1, sym__property_name, - STATE(6552), 1, + STATE(5892), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132255] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6986), 1, + anon_sym_AT, + STATE(3650), 1, + sym_decorator, + STATE(3591), 2, + sym_comment, + aux_sym_export_statement_repeat1, + ACTIONS(4295), 30, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -323560,54 +325696,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132591] = 24, + anon_sym_abstract, + [132304] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2752), 1, + ACTIONS(2759), 1, anon_sym_namespace, - ACTIONS(2758), 1, + ACTIONS(2765), 1, anon_sym_import, - ACTIONS(2760), 1, + ACTIONS(2767), 1, anon_sym_var, - ACTIONS(2762), 1, + ACTIONS(2769), 1, anon_sym_let, - ACTIONS(2764), 1, + ACTIONS(2771), 1, anon_sym_const, - ACTIONS(2772), 1, + ACTIONS(2779), 1, anon_sym_class, - ACTIONS(2774), 1, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2776), 1, + ACTIONS(2783), 1, anon_sym_function, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(2789), 1, + ACTIONS(2796), 1, anon_sym_declare, - ACTIONS(2793), 1, + ACTIONS(2800), 1, anon_sym_abstract, - ACTIONS(2795), 1, + ACTIONS(2802), 1, anon_sym_interface, - ACTIONS(2797), 1, + ACTIONS(2804), 1, anon_sym_enum, - ACTIONS(2827), 1, + ACTIONS(2834), 1, anon_sym_type, - ACTIONS(2829), 1, + ACTIONS(2836), 1, anon_sym_module, - ACTIONS(2831), 1, + ACTIONS(2838), 1, anon_sym_global, - STATE(1556), 1, + STATE(1516), 1, sym_declaration, - STATE(1584), 1, + STATE(1606), 1, sym_internal_module, - STATE(3596), 1, + STATE(3592), 1, sym_comment, - STATE(4853), 1, + STATE(4862), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(1618), 13, + STATE(1544), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -323621,103 +325758,115 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [132676] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [132389] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(6992), 1, - anon_sym_RBRACE, - STATE(3597), 1, - sym_comment, - STATE(5065), 1, - sym__property_name, - STATE(5888), 1, - sym_enum_assignment, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, - anon_sym_export, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(3030), 1, anon_sym_type, + ACTIONS(3032), 1, anon_sym_namespace, + ACTIONS(3034), 1, + anon_sym_import, + ACTIONS(3036), 1, + anon_sym_var, + ACTIONS(3038), 1, anon_sym_let, + ACTIONS(3040), 1, + anon_sym_const, + ACTIONS(3042), 1, + anon_sym_class, + ACTIONS(3044), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(3046), 1, + anon_sym_function, + ACTIONS(3050), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(3052), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [132737] = 24, + ACTIONS(3054), 1, + anon_sym_abstract, + ACTIONS(3056), 1, + anon_sym_global, + ACTIONS(3058), 1, + anon_sym_interface, + ACTIONS(3060), 1, + anon_sym_enum, + STATE(3593), 1, + sym_comment, + STATE(4891), 1, + aux_sym_export_statement_repeat1, + STATE(4995), 1, + sym_declaration, + STATE(4998), 1, + sym_internal_module, + STATE(5601), 1, + sym_decorator, + STATE(4991), 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, + [132474] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(2881), 1, + ACTIONS(2850), 1, anon_sym_namespace, - ACTIONS(2883), 1, + ACTIONS(2852), 1, anon_sym_import, - ACTIONS(2885), 1, + ACTIONS(2854), 1, anon_sym_var, - ACTIONS(2887), 1, + ACTIONS(2856), 1, anon_sym_let, - ACTIONS(2889), 1, + ACTIONS(2858), 1, anon_sym_const, - ACTIONS(2893), 1, + ACTIONS(2862), 1, anon_sym_class, - ACTIONS(2895), 1, + ACTIONS(2864), 1, anon_sym_async, - ACTIONS(2897), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2899), 1, + ACTIONS(2868), 1, anon_sym_declare, - ACTIONS(2903), 1, + ACTIONS(2872), 1, anon_sym_abstract, - ACTIONS(2905), 1, + ACTIONS(2874), 1, anon_sym_interface, - ACTIONS(2907), 1, + ACTIONS(2876), 1, anon_sym_enum, - ACTIONS(3017), 1, + ACTIONS(3018), 1, anon_sym_type, - ACTIONS(3019), 1, + ACTIONS(3020), 1, anon_sym_module, - ACTIONS(3021), 1, + ACTIONS(3022), 1, anon_sym_global, - STATE(1357), 1, - sym_internal_module, - STATE(1472), 1, + STATE(1422), 1, sym_declaration, - STATE(3598), 1, + STATE(1454), 1, + sym_internal_module, + STATE(3594), 1, sym_comment, - STATE(4902), 1, + STATE(4904), 1, aux_sym_export_statement_repeat1, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(1331), 13, + STATE(1470), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -323731,53 +325880,97 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [132822] = 17, + [132559] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6989), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_comment, + STATE(5451), 1, + sym__property_name, + STATE(6555), 1, + sym_enum_assignment, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(2993), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, - ACTIONS(2997), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(5550), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132620] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_STAR, - ACTIONS(6994), 1, - anon_sym_static, - STATE(3599), 1, + ACTIONS(6991), 1, + anon_sym_RBRACE, + STATE(3596), 1, sym_comment, - STATE(3627), 1, - sym_override_modifier, - STATE(4691), 1, + STATE(5451), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(6555), 1, + sym_enum_assignment, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 17, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -323785,32 +325978,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132893] = 12, + [132681] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6996), 1, + ACTIONS(6993), 1, anon_sym_RBRACE, - STATE(3600), 1, + STATE(3597), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323834,32 +326027,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132954] = 12, + [132742] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6998), 1, + ACTIONS(6995), 1, anon_sym_RBRACE, - STATE(3601), 1, + STATE(3598), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323883,32 +326076,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133015] = 12, + [132803] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(2968), 1, + anon_sym_namespace, + ACTIONS(2970), 1, + anon_sym_import, + ACTIONS(2972), 1, + anon_sym_var, + ACTIONS(2974), 1, + anon_sym_let, + ACTIONS(2976), 1, + anon_sym_const, + ACTIONS(2980), 1, + anon_sym_class, + ACTIONS(2982), 1, + anon_sym_async, + ACTIONS(2984), 1, + anon_sym_function, + ACTIONS(2986), 1, + anon_sym_declare, + ACTIONS(2988), 1, + anon_sym_module, + ACTIONS(2990), 1, + anon_sym_abstract, + ACTIONS(2992), 1, + anon_sym_interface, + ACTIONS(2994), 1, + anon_sym_enum, + ACTIONS(3012), 1, + anon_sym_type, + ACTIONS(6997), 1, + anon_sym_default, + STATE(1293), 1, + sym_declaration, + STATE(1446), 1, + sym_internal_module, + STATE(3599), 1, + sym_comment, + STATE(4864), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(1436), 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, + [132888] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_RBRACE, - STATE(3602), 1, + STATE(3600), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323932,54 +326186,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133076] = 24, + [132949] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(3025), 1, + ACTIONS(3030), 1, anon_sym_type, - ACTIONS(3027), 1, + ACTIONS(3032), 1, anon_sym_namespace, - ACTIONS(3029), 1, + ACTIONS(3034), 1, anon_sym_import, - ACTIONS(3031), 1, + ACTIONS(3036), 1, anon_sym_var, - ACTIONS(3033), 1, + ACTIONS(3038), 1, anon_sym_let, - ACTIONS(3035), 1, + ACTIONS(3040), 1, anon_sym_const, - ACTIONS(3037), 1, + ACTIONS(3042), 1, anon_sym_class, - ACTIONS(3039), 1, + ACTIONS(3044), 1, anon_sym_async, - ACTIONS(3041), 1, + ACTIONS(3046), 1, anon_sym_function, - ACTIONS(3043), 1, + ACTIONS(3050), 1, anon_sym_declare, - ACTIONS(3045), 1, - anon_sym_module, - ACTIONS(3047), 1, + ACTIONS(3054), 1, anon_sym_abstract, - ACTIONS(3049), 1, - anon_sym_global, - ACTIONS(3051), 1, + ACTIONS(3058), 1, anon_sym_interface, - ACTIONS(3053), 1, + ACTIONS(3060), 1, anon_sym_enum, - STATE(3603), 1, + ACTIONS(4651), 1, + anon_sym_module, + ACTIONS(7001), 1, + anon_sym_default, + STATE(3601), 1, sym_comment, - STATE(4889), 1, + STATE(4891), 1, aux_sym_export_statement_repeat1, - STATE(4992), 1, + STATE(4988), 1, sym_declaration, - STATE(4995), 1, + STATE(4998), 1, sym_internal_module, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(4988), 13, + STATE(4991), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -323993,32 +326247,32 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [133161] = 12, + [133034] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7003), 1, anon_sym_RBRACE, - STATE(3604), 1, + STATE(3602), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324042,32 +326296,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133222] = 12, + [133095] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7004), 1, + ACTIONS(7005), 1, anon_sym_RBRACE, - STATE(3605), 1, + STATE(3603), 1, sym_comment, - STATE(5449), 1, + STATE(5117), 1, sym__property_name, - STATE(6552), 1, + STATE(5941), 1, + sym_enum_assignment, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2996), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133156] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(7007), 1, + anon_sym_RBRACE, + STATE(3604), 1, + sym_comment, + STATE(5451), 1, + sym__property_name, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324091,32 +326394,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133283] = 12, + [133217] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(6170), 1, + anon_sym_STAR, + ACTIONS(6172), 1, + anon_sym_async, + ACTIONS(6174), 1, + anon_sym_readonly, + ACTIONS(7009), 1, + anon_sym_static, + STATE(3605), 1, + sym_comment, + STATE(3633), 1, + sym_override_modifier, + STATE(3947), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6176), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4505), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133288] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7006), 1, + ACTIONS(7011), 1, anon_sym_RBRACE, STATE(3606), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324140,32 +326497,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133344] = 12, + [133349] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7008), 1, + ACTIONS(7013), 1, anon_sym_RBRACE, STATE(3607), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324189,32 +326546,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133405] = 12, + [133410] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(2888), 1, + anon_sym_namespace, + ACTIONS(2890), 1, + anon_sym_import, + ACTIONS(2892), 1, + anon_sym_var, + ACTIONS(2894), 1, + anon_sym_let, + ACTIONS(2896), 1, + anon_sym_const, + ACTIONS(2900), 1, + anon_sym_class, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_function, + ACTIONS(2906), 1, + anon_sym_declare, + ACTIONS(2908), 1, + anon_sym_module, + ACTIONS(2910), 1, + anon_sym_abstract, + ACTIONS(2912), 1, + anon_sym_interface, + ACTIONS(2914), 1, + anon_sym_enum, + ACTIONS(3024), 1, + anon_sym_type, + ACTIONS(7015), 1, + anon_sym_default, + STATE(1041), 1, + sym_internal_module, + STATE(1203), 1, + sym_declaration, + STATE(3608), 1, + sym_comment, + STATE(4859), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(1042), 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, + [133495] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(2850), 1, + anon_sym_namespace, + ACTIONS(2852), 1, + anon_sym_import, + ACTIONS(2854), 1, + anon_sym_var, + ACTIONS(2856), 1, + anon_sym_let, + ACTIONS(2858), 1, + anon_sym_const, + ACTIONS(2862), 1, + anon_sym_class, + ACTIONS(2864), 1, + anon_sym_async, + ACTIONS(2866), 1, + anon_sym_function, + ACTIONS(2868), 1, + anon_sym_declare, + ACTIONS(2870), 1, + anon_sym_module, + ACTIONS(2872), 1, + anon_sym_abstract, + ACTIONS(2874), 1, + anon_sym_interface, + ACTIONS(2876), 1, + anon_sym_enum, + ACTIONS(3018), 1, + anon_sym_type, + ACTIONS(7017), 1, + anon_sym_default, + STATE(1351), 1, + sym_declaration, + STATE(1454), 1, + sym_internal_module, + STATE(3609), 1, + sym_comment, + STATE(4904), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(1470), 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, + [133580] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2759), 1, + anon_sym_namespace, + ACTIONS(2765), 1, + anon_sym_import, + ACTIONS(2767), 1, + anon_sym_var, + ACTIONS(2769), 1, + anon_sym_let, + ACTIONS(2771), 1, + anon_sym_const, + ACTIONS(2779), 1, + anon_sym_class, + ACTIONS(2781), 1, + anon_sym_async, + ACTIONS(2783), 1, + anon_sym_function, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(2796), 1, + anon_sym_declare, + ACTIONS(2798), 1, + anon_sym_module, + ACTIONS(2800), 1, + anon_sym_abstract, + ACTIONS(2802), 1, + anon_sym_interface, + ACTIONS(2804), 1, + anon_sym_enum, + ACTIONS(2834), 1, + anon_sym_type, + ACTIONS(7019), 1, + anon_sym_default, + STATE(1564), 1, + sym_declaration, + STATE(1606), 1, + sym_internal_module, + STATE(3610), 1, + sym_comment, + STATE(4862), 1, + aux_sym_export_statement_repeat1, + STATE(5601), 1, + sym_decorator, + STATE(1544), 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, + [133665] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(4529), 1, + anon_sym_override, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(7021), 1, + anon_sym_static, + ACTIONS(7023), 1, + anon_sym_readonly, + ACTIONS(7025), 1, + anon_sym_abstract, + STATE(3611), 1, + sym_comment, + STATE(3680), 1, + sym_override_modifier, + STATE(4261), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4505), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133732] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7010), 1, + ACTIONS(7027), 1, anon_sym_RBRACE, - STATE(3608), 1, + STATE(3612), 1, sym_comment, - STATE(5449), 1, + STATE(5309), 1, sym__property_name, - STATE(6552), 1, + STATE(5607), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324238,32 +326830,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133466] = 12, + [133793] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7012), 1, + ACTIONS(7029), 1, anon_sym_RBRACE, - STATE(3609), 1, + STATE(3613), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324287,147 +326879,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133527] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(5101), 1, - anon_sym_async, - ACTIONS(5103), 1, - anon_sym_readonly, - ACTIONS(7014), 1, - anon_sym_static, - STATE(3610), 1, - sym_comment, - STATE(3631), 1, - sym_override_modifier, - STATE(3959), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5105), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4498), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [133598] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2843), 1, - anon_sym_namespace, - ACTIONS(2845), 1, - anon_sym_import, - ACTIONS(2847), 1, - anon_sym_var, - ACTIONS(2849), 1, - anon_sym_let, - ACTIONS(2851), 1, - anon_sym_const, - ACTIONS(2855), 1, - anon_sym_class, - ACTIONS(2857), 1, - anon_sym_async, - ACTIONS(2859), 1, - anon_sym_function, - ACTIONS(2861), 1, - anon_sym_declare, - ACTIONS(2863), 1, - anon_sym_module, - ACTIONS(2865), 1, - anon_sym_abstract, - ACTIONS(2867), 1, - anon_sym_interface, - ACTIONS(2869), 1, - anon_sym_enum, - ACTIONS(3011), 1, - anon_sym_type, - ACTIONS(7016), 1, - anon_sym_default, - STATE(1179), 1, - sym_declaration, - STATE(1205), 1, - sym_internal_module, - STATE(3611), 1, - sym_comment, - STATE(4852), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(1204), 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, - [133683] = 12, + [133854] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7018), 1, + ACTIONS(7031), 1, anon_sym_RBRACE, - STATE(3612), 1, + STATE(3614), 1, sym_comment, - STATE(5202), 1, + STATE(5451), 1, sym__property_name, - STATE(6053), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324451,32 +326928,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133744] = 12, + [133915] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7020), 1, + ACTIONS(7033), 1, anon_sym_RBRACE, - STATE(3613), 1, + STATE(3615), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324500,32 +326977,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133805] = 12, + [133976] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7022), 1, + ACTIONS(7035), 1, anon_sym_RBRACE, - STATE(3614), 1, + STATE(3616), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324549,100 +327026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133866] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2843), 1, - anon_sym_namespace, - ACTIONS(2845), 1, - anon_sym_import, - ACTIONS(2847), 1, - anon_sym_var, - ACTIONS(2849), 1, - anon_sym_let, - ACTIONS(2851), 1, - anon_sym_const, - ACTIONS(2855), 1, - anon_sym_class, - ACTIONS(2857), 1, - anon_sym_async, - ACTIONS(2859), 1, - anon_sym_function, - ACTIONS(2861), 1, - anon_sym_declare, - ACTIONS(2865), 1, - anon_sym_abstract, - ACTIONS(2867), 1, - anon_sym_interface, - ACTIONS(2869), 1, - anon_sym_enum, - ACTIONS(3011), 1, - anon_sym_type, - ACTIONS(3013), 1, - anon_sym_module, - ACTIONS(3015), 1, - anon_sym_global, - STATE(1120), 1, - sym_declaration, - STATE(1205), 1, - sym_internal_module, - STATE(3615), 1, - sym_comment, - STATE(4852), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - STATE(1204), 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, - [133951] = 15, + [134037] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(4522), 1, - anon_sym_override, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7024), 1, - anon_sym_STAR, - ACTIONS(7026), 1, - anon_sym_readonly, - STATE(3616), 1, + ACTIONS(7037), 1, + anon_sym_RBRACE, + STATE(3617), 1, sym_comment, - STATE(3618), 1, - sym_override_modifier, - STATE(3930), 1, + STATE(5451), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(6555), 1, + sym_enum_assignment, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(7028), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324651,10 +327060,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, @@ -324662,32 +327075,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134018] = 12, + [134098] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7030), 1, + ACTIONS(7039), 1, anon_sym_RBRACE, - STATE(3617), 1, + STATE(3618), 1, sym_comment, - STATE(5449), 1, + STATE(5451), 1, sym__property_name, - STATE(6552), 1, + STATE(6555), 1, sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324711,33 +327124,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134079] = 12, + [134159] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6935), 1, - anon_sym_STAR, - STATE(3618), 1, + ACTIONS(7041), 1, + anon_sym_RBRACE, + STATE(3619), 1, sym_comment, - STATE(4697), 1, + STATE(5350), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(6293), 1, + sym_enum_assignment, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(7032), 2, - anon_sym_get, - anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 21, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324747,6 +327159,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, @@ -324759,37 +327173,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134139] = 14, + [134220] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6885), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(6887), 1, anon_sym_async, - ACTIONS(7034), 1, + ACTIONS(6889), 1, anon_sym_readonly, - STATE(3619), 1, + STATE(3620), 1, sym_comment, - STATE(3916), 1, + STATE(4822), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6119), 2, + ACTIONS(6891), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(2996), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324809,37 +327223,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134203] = 14, + [134284] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(5779), 1, + ACTIONS(6271), 1, anon_sym_STAR, - ACTIONS(5783), 1, + ACTIONS(6273), 1, anon_sym_async, - ACTIONS(5785), 1, + ACTIONS(7043), 1, anon_sym_readonly, - STATE(3620), 1, + STATE(3621), 1, sym_comment, - STATE(3929), 1, + STATE(3901), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(5787), 2, + ACTIONS(6277), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324859,44 +327273,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134267] = 14, + [134348] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6462), 1, - anon_sym_STAR, - ACTIONS(6464), 1, - anon_sym_async, - ACTIONS(7036), 1, - anon_sym_readonly, - STATE(3621), 1, + STATE(3622), 1, sym_comment, - STATE(3983), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6466), 2, - anon_sym_get, - anon_sym_set, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(992), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2485), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -324909,37 +327314,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134331] = 14, + [134394] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6156), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(6158), 1, anon_sym_async, - ACTIONS(7038), 1, + ACTIONS(7045), 1, anon_sym_readonly, - STATE(3622), 1, + STATE(3623), 1, sym_comment, - STATE(3934), 1, + STATE(3922), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6097), 2, + ACTIONS(6160), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324959,44 +327364,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134395] = 14, + [134458] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6907), 1, + ACTIONS(6966), 1, anon_sym_STAR, - ACTIONS(6909), 1, - anon_sym_async, - ACTIONS(7040), 1, - anon_sym_readonly, - STATE(3623), 1, + STATE(3624), 1, sym_comment, - STATE(4698), 1, + STATE(4732), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6911), 2, + ACTIONS(7047), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 19, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -325009,41 +327412,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134459] = 11, + [134518] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3624), 1, + ACTIONS(6113), 1, + anon_sym_STAR, + ACTIONS(6115), 1, + anon_sym_async, + ACTIONS(6117), 1, + anon_sym_readonly, + STATE(3625), 1, sym_comment, - STATE(5449), 1, + STATE(3953), 1, sym__property_name, - STATE(6552), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + ACTIONS(6119), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -325056,37 +327462,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134517] = 14, + [134582] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6156), 1, anon_sym_STAR, - STATE(3625), 1, + ACTIONS(6158), 1, + anon_sym_async, + ACTIONS(7049), 1, + anon_sym_readonly, + STATE(3626), 1, sym_comment, - STATE(4691), 1, + STATE(3920), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6160), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325106,37 +327512,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134581] = 14, + [134646] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6184), 1, + ACTIONS(6237), 1, anon_sym_STAR, - ACTIONS(6186), 1, + ACTIONS(6239), 1, anon_sym_async, - ACTIONS(6195), 1, + ACTIONS(6241), 1, anon_sym_readonly, - STATE(3626), 1, + STATE(3627), 1, sym_comment, - STATE(3909), 1, + STATE(3913), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6188), 2, + ACTIONS(6243), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325156,85 +327562,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134645] = 14, + [134710] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6865), 1, + ACTIONS(7051), 1, anon_sym_STAR, - ACTIONS(6867), 1, - anon_sym_async, - ACTIONS(6869), 1, - anon_sym_readonly, - STATE(3627), 1, + STATE(3628), 1, sym_comment, - STATE(4713), 1, + STATE(4739), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6871), 2, + ACTIONS(7053), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 19, + ACTIONS(2996), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [134709] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3628), 1, - sym_comment, - ACTIONS(1035), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2482), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, @@ -325247,37 +327610,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134755] = 14, + [134770] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6170), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(6172), 1, anon_sym_async, - ACTIONS(7042), 1, + ACTIONS(6174), 1, anon_sym_readonly, STATE(3629), 1, sym_comment, - STATE(3921), 1, + STATE(3947), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6119), 2, + ACTIONS(6176), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325297,37 +327660,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134819] = 14, + [134834] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5089), 1, - anon_sym_STAR, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(5101), 1, + ACTIONS(6617), 1, + anon_sym_STAR, + ACTIONS(6626), 1, anon_sym_async, - ACTIONS(5103), 1, + ACTIONS(7055), 1, anon_sym_readonly, STATE(3630), 1, sym_comment, - STATE(3959), 1, + STATE(3910), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(5105), 2, + ACTIONS(6628), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325347,37 +327710,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134883] = 14, + [134898] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6644), 1, anon_sym_STAR, - ACTIONS(6131), 1, + ACTIONS(6648), 1, anon_sym_async, - ACTIONS(6133), 1, + ACTIONS(7057), 1, anon_sym_readonly, STATE(3631), 1, sym_comment, - STATE(4000), 1, + STATE(4003), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6135), 2, + ACTIONS(6650), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325397,37 +327760,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134947] = 14, + [134962] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6247), 1, + ACTIONS(5845), 1, anon_sym_STAR, - ACTIONS(6249), 1, + ACTIONS(5849), 1, anon_sym_async, - ACTIONS(6251), 1, + ACTIONS(5851), 1, anon_sym_readonly, STATE(3632), 1, sym_comment, - STATE(3969), 1, + STATE(3898), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6253), 2, + ACTIONS(5853), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325447,37 +327810,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135011] = 14, + [135026] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6534), 1, + ACTIONS(6249), 1, anon_sym_STAR, - ACTIONS(6577), 1, + ACTIONS(6251), 1, anon_sym_async, - ACTIONS(7044), 1, + ACTIONS(6253), 1, anon_sym_readonly, STATE(3633), 1, sym_comment, - STATE(3996), 1, + STATE(3986), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6579), 2, + ACTIONS(6255), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325497,42 +327860,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135075] = 12, + [135090] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7046), 1, + ACTIONS(6916), 1, anon_sym_STAR, + ACTIONS(6918), 1, + anon_sym_async, + ACTIONS(7059), 1, + anon_sym_readonly, STATE(3634), 1, sym_comment, - STATE(4777), 1, + STATE(4783), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(7048), 2, + ACTIONS(6920), 2, anon_sym_get, anon_sym_set, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 21, + ACTIONS(2996), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -325545,37 +327910,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135135] = 14, + [135154] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6591), 1, + ACTIONS(6370), 1, anon_sym_STAR, - ACTIONS(6593), 1, + ACTIONS(6544), 1, anon_sym_async, - ACTIONS(7050), 1, + ACTIONS(7061), 1, anon_sym_readonly, STATE(3635), 1, sym_comment, - STATE(3907), 1, + STATE(3932), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6595), 2, + ACTIONS(6546), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325595,37 +327960,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135199] = 14, + [135218] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(6209), 1, - anon_sym_STAR, - ACTIONS(6211), 1, + ACTIONS(2998), 1, anon_sym_async, - ACTIONS(6213), 1, + ACTIONS(3000), 1, anon_sym_readonly, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, STATE(3636), 1, sym_comment, - STATE(3981), 1, + STATE(4658), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - ACTIONS(6215), 2, + ACTIONS(3002), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(2996), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325645,37 +328010,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135263] = 14, + [135282] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6390), 1, + ACTIONS(6527), 1, anon_sym_STAR, - ACTIONS(6392), 1, + ACTIONS(6634), 1, anon_sym_async, - ACTIONS(7052), 1, + ACTIONS(7063), 1, anon_sym_readonly, STATE(3637), 1, sym_comment, - STATE(3925), 1, + STATE(3983), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - ACTIONS(6394), 2, + ACTIONS(6636), 2, anon_sym_get, anon_sym_set, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 19, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325695,28 +328060,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135327] = 10, + [135346] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3638), 1, sym_comment, - STATE(4829), 1, + STATE(5451), 1, sym__property_name, - ACTIONS(2823), 2, + STATE(6555), 1, + sym_enum_assignment, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325740,40 +328107,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135382] = 11, + [135404] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5054), 1, + anon_sym_STAR, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, + ACTIONS(5066), 1, + anon_sym_async, + ACTIONS(5068), 1, anon_sym_readonly, STATE(3639), 1, sym_comment, - STATE(4195), 1, + STATE(3940), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + ACTIONS(5070), 2, + anon_sym_get, + anon_sym_set, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(4505), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -325786,28 +328157,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135439] = 4, + [135468] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, STATE(3640), 1, sym_comment, - ACTIONS(4428), 31, + STATE(4739), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2996), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -325824,29 +328202,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [135482] = 10, + [135523] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, STATE(3641), 1, sym_comment, - STATE(4674), 1, + STATE(4262), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325870,28 +328247,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135537] = 10, + [135578] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3642), 1, sym_comment, - STATE(4698), 1, + STATE(4693), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325915,28 +328292,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135592] = 10, + [135633] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3643), 1, sym_comment, - STATE(4196), 1, + STATE(4684), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325960,28 +328337,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135647] = 10, + [135688] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3644), 1, sym_comment, - STATE(4768), 1, + STATE(4805), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326005,28 +328382,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135702] = 10, + [135743] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, STATE(3645), 1, sym_comment, - STATE(4689), 1, + STATE(4324), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326050,28 +328427,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135757] = 10, + [135798] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_readonly, STATE(3646), 1, sym_comment, - STATE(4686), 1, + STATE(4253), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326080,7 +328459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -326095,28 +328473,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135812] = 10, + [135855] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3647), 1, sym_comment, - STATE(4782), 1, + STATE(4783), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326140,28 +328518,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135867] = 10, + [135910] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, + ACTIONS(7067), 1, + anon_sym_readonly, STATE(3648), 1, sym_comment, - STATE(4669), 1, + STATE(4238), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326170,7 +328550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -326185,38 +328564,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135922] = 11, + [135967] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(7056), 1, - anon_sym_readonly, STATE(3649), 1, sym_comment, - STATE(4167), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(4426), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -326231,38 +328602,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135979] = 11, + anon_sym_abstract, + [136010] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(7058), 1, - anon_sym_readonly, STATE(3650), 1, sym_comment, - STATE(4163), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(4430), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -326277,30 +328641,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136036] = 11, + anon_sym_abstract, + [136053] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7060), 1, - anon_sym_readonly, STATE(3651), 1, sym_comment, - STATE(4173), 1, + STATE(4849), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326309,6 +328672,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, @@ -326323,35 +328687,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136093] = 10, + [136108] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5099), 1, - anon_sym_LBRACK, STATE(3652), 1, sym_comment, - STATE(4233), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4498), 23, + ACTIONS(4410), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -326368,30 +328725,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136148] = 11, + anon_sym_abstract, + [136151] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_readonly, STATE(3653), 1, sym_comment, - STATE(4233), 1, + STATE(4680), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326400,6 +328756,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, @@ -326414,28 +328771,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136205] = 10, + [136206] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3654), 1, sym_comment, - STATE(4773), 1, + STATE(4848), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326459,28 +328816,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136260] = 10, + [136261] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3655), 1, sym_comment, - STATE(4824), 1, + STATE(4800), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326504,28 +328861,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136315] = 10, + [136316] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3656), 1, sym_comment, - STATE(4673), 1, + STATE(4681), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326549,28 +328906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136370] = 10, + [136371] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3657), 1, sym_comment, - STATE(4807), 1, + STATE(4775), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326594,28 +328951,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136425] = 10, + [136426] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, + ACTIONS(6772), 1, + anon_sym_readonly, STATE(3658), 1, sym_comment, - STATE(4166), 1, + STATE(4196), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 23, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326624,7 +328983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -326639,28 +328997,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136480] = 10, + [136483] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, STATE(3659), 1, sym_comment, STATE(4777), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326684,28 +329042,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136535] = 10, + [136538] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, STATE(3660), 1, sym_comment, - STATE(4687), 1, + STATE(4196), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326729,30 +329087,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136590] = 11, + [136593] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(7069), 1, anon_sym_readonly, STATE(3661), 1, sym_comment, - STATE(4342), 1, + STATE(4339), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326775,28 +329133,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136647] = 10, + [136650] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, STATE(3662), 1, sym_comment, - STATE(4845), 1, + STATE(4205), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4505), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136705] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3663), 1, + sym_comment, + STATE(4707), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326820,28 +329223,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136702] = 4, + [136760] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3663), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3664), 1, sym_comment, - ACTIONS(4294), 31, + STATE(4744), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2996), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -326858,29 +329268,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [136745] = 10, + [136815] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3664), 1, + ACTIONS(7071), 1, + anon_sym_readonly, + STATE(3665), 1, sym_comment, - STATE(4342), 1, + STATE(4250), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 23, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326889,7 +329300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -326904,28 +329314,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136800] = 10, + [136872] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3665), 1, + ACTIONS(7073), 1, + anon_sym_readonly, + STATE(3666), 1, sym_comment, - STATE(4746), 1, + STATE(4266), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326934,7 +329346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -326949,28 +329360,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136855] = 10, + [136929] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3666), 1, + STATE(3667), 1, sym_comment, - STATE(4803), 1, + STATE(4336), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326994,28 +329405,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136910] = 4, + [136984] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3667), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3668), 1, sym_comment, - ACTIONS(4456), 31, + STATE(4825), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2996), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -327032,29 +329450,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [136953] = 10, + [137039] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3668), 1, + ACTIONS(7075), 1, + anon_sym_readonly, + STATE(3669), 1, sym_comment, - STATE(4711), 1, + STATE(4336), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327063,7 +329482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -327078,30 +329496,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137008] = 4, + [137096] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3669), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(7077), 1, + anon_sym_readonly, + STATE(3670), 1, sym_comment, - ACTIONS(4458), 31, + STATE(4260), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4505), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -327116,31 +329542,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [137051] = 11, + [137153] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(7064), 1, + ACTIONS(7079), 1, anon_sym_readonly, - STATE(3670), 1, + STATE(3671), 1, sym_comment, - STATE(4273), 1, + STATE(4263), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327163,28 +329588,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137108] = 10, + [137210] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3671), 1, + STATE(3672), 1, sym_comment, - STATE(4263), 1, + STATE(4723), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327208,28 +329633,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137163] = 10, + [137265] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3672), 1, + STATE(3673), 1, sym_comment, - STATE(4822), 1, + STATE(4824), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327253,28 +329678,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137218] = 10, + [137320] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3673), 1, + STATE(3674), 1, sym_comment, - STATE(4697), 1, + STATE(4764), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327298,14 +329723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137273] = 4, + [137375] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3674), 1, + STATE(3675), 1, sym_comment, - ACTIONS(4450), 31, + ACTIONS(4247), 31, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -327337,28 +329762,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [137316] = 10, + [137418] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3675), 1, + STATE(3676), 1, sym_comment, - STATE(4691), 1, + STATE(4743), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327382,35 +329807,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137371] = 10, + [137473] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + STATE(3677), 1, + sym_comment, + ACTIONS(4424), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, - anon_sym_LBRACK, - STATE(3676), 1, - sym_comment, - STATE(4813), 1, - sym__property_name, - ACTIONS(2823), 2, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - STATE(4459), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, + 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_abstract, + [137516] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3678), 1, + sym_comment, + ACTIONS(4428), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -327427,30 +329884,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137426] = 11, + anon_sym_abstract, + [137559] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(7066), 1, + ACTIONS(7081), 1, anon_sym_readonly, - STATE(3677), 1, + STATE(3679), 1, sym_comment, - STATE(4165), 1, + STATE(4289), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327473,30 +329931,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137483] = 4, + [137616] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3678), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(7083), 1, + anon_sym_readonly, + STATE(3680), 1, sym_comment, - ACTIONS(4448), 31, + STATE(4310), 1, + sym__property_name, + ACTIONS(4002), 2, + sym_number, + sym_private_property_identifier, + STATE(4081), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4505), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -327511,29 +329977,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [137526] = 4, + [137673] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3679), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_LBRACK, + STATE(3681), 1, sym_comment, - ACTIONS(4454), 31, + STATE(4658), 1, + sym__property_name, + ACTIONS(2830), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2996), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -327550,29 +330022,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [137569] = 10, + [137728] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3680), 1, + STATE(3682), 1, sym_comment, - STATE(4821), 1, + STATE(4822), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327596,28 +330067,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137624] = 10, + [137783] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3681), 1, + STATE(3683), 1, sym_comment, - STATE(4830), 1, + STATE(4781), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327641,28 +330112,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137679] = 10, + [137838] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3682), 1, + STATE(3684), 1, sym_comment, - STATE(4695), 1, + STATE(4771), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327686,30 +330157,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137734] = 11, + [137893] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7068), 1, - anon_sym_readonly, - STATE(3683), 1, + STATE(3685), 1, sym_comment, - STATE(4248), 1, + STATE(4818), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327718,6 +330187,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, @@ -327732,30 +330202,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137791] = 11, + [137948] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7070), 1, - anon_sym_readonly, - STATE(3684), 1, + STATE(3686), 1, sym_comment, - STATE(4235), 1, + STATE(4821), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327764,6 +330232,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, @@ -327778,28 +330247,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137848] = 10, + [138003] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3685), 1, + ACTIONS(7085), 1, + anon_sym_readonly, + STATE(3687), 1, sym_comment, - STATE(4188), 1, + STATE(4276), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 23, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327808,7 +330279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -327823,30 +330293,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137903] = 11, + [138060] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7087), 1, anon_sym_readonly, - STATE(3686), 1, + STATE(3688), 1, sym_comment, - STATE(4303), 1, + STATE(4265), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327869,28 +330339,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137960] = 10, + [138117] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3687), 1, + STATE(3689), 1, sym_comment, - STATE(4731), 1, + STATE(4720), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327914,28 +330384,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138015] = 10, + [138172] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3688), 1, + STATE(3690), 1, sym_comment, - STATE(4344), 1, + STATE(4732), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327959,30 +330429,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138070] = 11, + [138227] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(6725), 1, - anon_sym_readonly, - STATE(3689), 1, + STATE(3691), 1, sym_comment, - STATE(4188), 1, + STATE(4731), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327991,6 +330459,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, @@ -328005,28 +330474,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138127] = 10, + [138282] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3690), 1, + STATE(3692), 1, sym_comment, - STATE(4201), 1, + STATE(4240), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328050,28 +330519,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138182] = 10, + [138337] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3691), 1, + ACTIONS(6812), 1, + anon_sym_readonly, + STATE(3693), 1, sym_comment, - STATE(4828), 1, + STATE(4335), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328080,7 +330551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -328095,28 +330565,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138237] = 10, + [138394] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3692), 1, + STATE(3694), 1, sym_comment, - STATE(4713), 1, + STATE(4335), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328140,28 +330610,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138292] = 10, + [138449] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3693), 1, + STATE(3695), 1, sym_comment, - STATE(4721), 1, + STATE(4761), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328185,30 +330655,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138347] = 11, + [138504] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5099), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(7074), 1, - anon_sym_readonly, - STATE(3694), 1, + STATE(3696), 1, sym_comment, - STATE(4199), 1, + STATE(4664), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4056), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328217,6 +330685,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, @@ -328231,28 +330700,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138404] = 10, + [138559] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3695), 1, + STATE(3697), 1, sym_comment, - STATE(4790), 1, + STATE(4690), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328276,28 +330745,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138459] = 10, + [138614] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5064), 1, anon_sym_LBRACK, - STATE(3696), 1, + STATE(3698), 1, sym_comment, - STATE(4740), 1, + STATE(4291), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(4002), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4081), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4505), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328321,38 +330790,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138514] = 11, + [138669] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5099), 1, - anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_readonly, - STATE(3697), 1, + STATE(3699), 1, sym_comment, - STATE(4251), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4056), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4498), 22, + ACTIONS(4418), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -328367,28 +330828,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138571] = 10, + anon_sym_abstract, + [138712] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3698), 1, + STATE(3700), 1, sym_comment, - STATE(4696), 1, + STATE(4753), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328412,28 +330874,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138626] = 10, + [138767] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(5550), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(3699), 1, + STATE(3701), 1, sym_comment, - STATE(4747), 1, + STATE(4741), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(2830), 2, sym_number, sym_private_property_identifier, - STATE(4459), 2, + STATE(4552), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2996), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328457,18 +330919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138681] = 6, + [138822] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7078), 1, + ACTIONS(7089), 1, sym_identifier, - STATE(3700), 1, + STATE(3702), 1, sym_comment, - STATE(7132), 1, + STATE(7139), 1, sym_mapped_type_clause, - ACTIONS(7080), 22, + ACTIONS(7091), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328491,17 +330953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138721] = 5, + [138862] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3701), 1, + STATE(3703), 1, sym_comment, - ACTIONS(4454), 2, + ACTIONS(4424), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4967), 19, + ACTIONS(4980), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -328521,29 +330983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [138756] = 11, + [138897] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_QMARK_DOT, - ACTIONS(7082), 1, - anon_sym_LT, - STATE(3702), 1, + STATE(3704), 1, sym_comment, - STATE(3767), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - ACTIONS(4258), 2, + ACTIONS(4426), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4248), 13, + ACTIONS(4986), 19, + anon_sym_export, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328553,33 +331004,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, - [138803] = 11, + [138932] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7084), 1, - anon_sym_DOT, - ACTIONS(7086), 1, - anon_sym_QMARK_DOT, - STATE(3703), 1, + STATE(3705), 1, sym_comment, - STATE(3764), 1, - sym_arguments, - STATE(3826), 1, - sym_type_arguments, - ACTIONS(4957), 2, + ACTIONS(4418), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4959), 13, + ACTIONS(4988), 19, + anon_sym_export, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328589,33 +331034,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, - [138850] = 11, + [138967] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7088), 1, + ACTIONS(4307), 1, anon_sym_DOT, - ACTIONS(7090), 1, + ACTIONS(4309), 1, anon_sym_QMARK_DOT, - STATE(3704), 1, + ACTIONS(7093), 1, + anon_sym_LT, + STATE(3706), 1, sym_comment, - STATE(3758), 1, + STATE(3779), 1, sym_arguments, - STATE(3871), 1, + STATE(3800), 1, sym_type_arguments, - ACTIONS(4923), 2, + ACTIONS(4291), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4925), 13, + ACTIONS(4281), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328629,18 +331079,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [138897] = 5, + [139014] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3705), 1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7095), 1, + anon_sym_DOT, + ACTIONS(7097), 1, + anon_sym_QMARK_DOT, + STATE(3707), 1, sym_comment, - ACTIONS(4456), 2, + STATE(3778), 1, + sym_arguments, + STATE(3797), 1, + sym_type_arguments, + ACTIONS(4964), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4989), 19, - anon_sym_export, + ACTIONS(4966), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328650,27 +331111,33 @@ 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, - [138932] = 5, + [139061] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3706), 1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7099), 1, + anon_sym_DOT, + ACTIONS(7101), 1, + anon_sym_QMARK_DOT, + STATE(3708), 1, sym_comment, - ACTIONS(4450), 2, + STATE(3773), 1, + sym_arguments, + STATE(3807), 1, + sym_type_arguments, + ACTIONS(4942), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4985), 19, - anon_sym_export, + ACTIONS(4944), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328680,25 +331147,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, - [138967] = 5, + [139108] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2172), 1, + ACTIONS(2219), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3707), 1, + STATE(3709), 1, sym_comment, - ACTIONS(2174), 19, + ACTIONS(2221), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328718,16 +331180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [139001] = 5, + [139142] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2314), 1, + ACTIONS(2209), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3708), 1, + STATE(3710), 1, sym_comment, - ACTIONS(2316), 19, + ACTIONS(2211), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328747,17 +331209,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [139035] = 5, + [139176] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3709), 1, + ACTIONS(4958), 1, + anon_sym_EQ, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7103), 1, + anon_sym_DOT, + ACTIONS(7105), 1, + anon_sym_is, + STATE(3711), 1, sym_comment, - ACTIONS(5039), 2, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4339), 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, + [139217] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3712), 1, + sym_comment, + ACTIONS(5020), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5041), 17, + ACTIONS(5022), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328775,49 +331269,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139068] = 9, + [139250] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4915), 1, + STATE(3713), 1, + sym_comment, + ACTIONS(5243), 2, anon_sym_EQ, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7092), 1, + anon_sym_QMARK, + ACTIONS(5245), 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, - ACTIONS(7094), 1, - anon_sym_is, - STATE(3710), 1, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139283] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3714), 1, sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4307), 14, + ACTIONS(5243), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5245), 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, - [139109] = 5, + [139316] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3711), 1, + STATE(3715), 1, sym_comment, - ACTIONS(5159), 2, + ACTIONS(5284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5161), 17, + ACTIONS(5286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328835,17 +331353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139142] = 5, + [139349] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3712), 1, + STATE(3716), 1, sym_comment, - ACTIONS(5159), 2, + ACTIONS(5046), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5161), 17, + ACTIONS(5048), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328863,17 +331381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139175] = 5, + [139382] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3713), 1, + STATE(3717), 1, sym_comment, - ACTIONS(5039), 2, + ACTIONS(5284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5041), 17, + ACTIONS(5286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328891,17 +331409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139208] = 5, + [139415] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3714), 1, + STATE(3718), 1, sym_comment, - ACTIONS(5159), 2, + ACTIONS(5243), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5161), 17, + ACTIONS(5245), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328919,17 +331437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139241] = 5, + [139448] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3715), 1, + STATE(3719), 1, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5126), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5165), 17, + ACTIONS(5128), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328947,17 +331465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139274] = 5, + [139481] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3716), 1, + STATE(3720), 1, sym_comment, - ACTIONS(5013), 2, + ACTIONS(5122), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5015), 17, + ACTIONS(5124), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328975,17 +331493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139307] = 5, + [139514] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3717), 1, + STATE(3721), 1, sym_comment, - ACTIONS(5013), 2, + ACTIONS(5114), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5015), 17, + ACTIONS(5116), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329003,17 +331521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139340] = 5, + [139547] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3718), 1, + STATE(3722), 1, sym_comment, - ACTIONS(5005), 2, + ACTIONS(5016), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5007), 17, + ACTIONS(5018), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329031,17 +331549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139373] = 5, + [139580] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3719), 1, + STATE(3723), 1, sym_comment, - ACTIONS(5111), 2, + ACTIONS(5020), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5113), 17, + ACTIONS(5022), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329059,17 +331577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139406] = 5, + [139613] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3720), 1, + STATE(3724), 1, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5020), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5165), 17, + ACTIONS(5022), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329087,17 +331605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139439] = 5, + [139646] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3721), 1, + STATE(3725), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5046), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5109), 17, + ACTIONS(5048), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329115,17 +331633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139472] = 5, + [139679] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3722), 1, + STATE(3726), 1, sym_comment, - ACTIONS(5267), 2, + ACTIONS(5134), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5269), 17, + ACTIONS(5136), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329143,17 +331661,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139505] = 5, + [139712] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3723), 1, + STATE(3727), 1, sym_comment, - ACTIONS(5227), 2, + ACTIONS(5034), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5229), 17, + ACTIONS(5036), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329171,17 +331689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139538] = 5, + [139745] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3724), 1, + STATE(3728), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5126), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5241), 17, + ACTIONS(5128), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329199,17 +331717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139571] = 5, + [139778] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3725), 1, + STATE(3729), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5241), 17, + ACTIONS(5286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329227,17 +331745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139604] = 5, + [139811] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3726), 1, + STATE(3730), 1, sym_comment, - ACTIONS(5243), 2, + ACTIONS(5223), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5245), 17, + ACTIONS(5225), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329255,17 +331773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139637] = 5, + [139844] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3727), 1, + STATE(3731), 1, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5016), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5165), 17, + ACTIONS(5018), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329283,45 +331801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139670] = 5, + [139877] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3728), 1, - sym_comment, - ACTIONS(5239), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5241), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [139703] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3729), 1, + STATE(3732), 1, sym_comment, - ACTIONS(5025), 2, + ACTIONS(5122), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5027), 17, + ACTIONS(5124), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329339,17 +331829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139736] = 5, + [139910] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3730), 1, + STATE(3733), 1, sym_comment, - ACTIONS(5013), 2, + ACTIONS(5046), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5015), 17, + ACTIONS(5048), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329367,45 +331857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139769] = 5, + [139943] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3731), 1, - sym_comment, - ACTIONS(5231), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5233), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [139802] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3732), 1, + STATE(3734), 1, sym_comment, - ACTIONS(5025), 2, + ACTIONS(5038), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5027), 17, + ACTIONS(5040), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329423,17 +331885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139835] = 5, + [139976] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3733), 1, + STATE(3735), 1, sym_comment, - ACTIONS(5127), 2, + ACTIONS(5102), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5129), 17, + ACTIONS(5104), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329451,17 +331913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139868] = 5, + [140009] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3734), 1, + STATE(3736), 1, sym_comment, - ACTIONS(5001), 2, + ACTIONS(5102), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5003), 17, + ACTIONS(5104), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329479,17 +331941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139901] = 5, + [140042] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3735), 1, + STATE(3737), 1, sym_comment, - ACTIONS(5227), 2, + ACTIONS(5016), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5229), 17, + ACTIONS(5018), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329507,17 +331969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139934] = 5, + [140075] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3736), 1, + STATE(3738), 1, sym_comment, - ACTIONS(5025), 2, + ACTIONS(5110), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5027), 17, + ACTIONS(5112), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329535,17 +331997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139967] = 5, + [140108] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3737), 1, + STATE(3739), 1, sym_comment, - ACTIONS(5081), 2, + ACTIONS(5114), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5083), 17, + ACTIONS(5116), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329563,17 +332025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140000] = 5, + [140141] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3738), 1, + STATE(3740), 1, sym_comment, - ACTIONS(5243), 2, + ACTIONS(5106), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5245), 17, + ACTIONS(5108), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329591,17 +332053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140033] = 5, + [140174] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3739), 1, + STATE(3741), 1, sym_comment, - ACTIONS(5081), 2, + ACTIONS(5110), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5083), 17, + ACTIONS(5112), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329619,17 +332081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140066] = 5, + [140207] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3740), 1, + STATE(3742), 1, sym_comment, - ACTIONS(5127), 2, + ACTIONS(5106), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5129), 17, + ACTIONS(5108), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329647,17 +332109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140099] = 5, + [140240] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3741), 1, + STATE(3743), 1, sym_comment, - ACTIONS(5001), 2, + ACTIONS(5034), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5003), 17, + ACTIONS(5036), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329675,17 +332137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140132] = 5, + [140273] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3742), 1, + STATE(3744), 1, sym_comment, - ACTIONS(5005), 2, + ACTIONS(5138), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5007), 17, + ACTIONS(5140), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329703,17 +332165,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140165] = 5, + [140306] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3743), 1, + STATE(3745), 1, sym_comment, - ACTIONS(5081), 2, + ACTIONS(5034), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5083), 17, + ACTIONS(5036), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329731,295 +332193,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140198] = 16, + [140339] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7107), 1, sym_identifier, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7111), 1, anon_sym_type, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7104), 1, + ACTIONS(7115), 1, anon_sym_typeof, - STATE(3744), 1, + STATE(3746), 1, sym_comment, - STATE(5588), 1, - sym_import_require_clause, - STATE(5592), 1, + STATE(5427), 1, sym_string, - STATE(6389), 1, - sym_import_clause, - STATE(6415), 1, + STATE(5428), 1, + sym_import_require_clause, + STATE(6423), 1, sym__import_identifier, - STATE(7338), 2, + STATE(6771), 1, + sym_import_clause, + STATE(7340), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140252] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4915), 1, - anon_sym_EQ, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7092), 1, - anon_sym_DOT, - STATE(3745), 1, - sym_comment, - STATE(3867), 1, - sym_type_arguments, - ACTIONS(4307), 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, - [140290] = 16, + [140393] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7108), 1, + ACTIONS(7119), 1, sym_identifier, - ACTIONS(7110), 1, + ACTIONS(7121), 1, anon_sym_type, - ACTIONS(7112), 1, + ACTIONS(7123), 1, anon_sym_typeof, - STATE(3746), 1, + STATE(3747), 1, sym_comment, - STATE(5423), 1, - sym_string, - STATE(5424), 1, + STATE(5568), 1, sym_import_require_clause, - STATE(6415), 1, + STATE(5570), 1, + sym_string, + STATE(6423), 1, sym__import_identifier, - STATE(6767), 1, + STATE(6536), 1, sym_import_clause, - STATE(7338), 2, + STATE(7340), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140344] = 16, + [140447] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7114), 1, + ACTIONS(7125), 1, sym_identifier, - ACTIONS(7116), 1, + ACTIONS(7127), 1, anon_sym_type, - ACTIONS(7118), 1, + ACTIONS(7129), 1, anon_sym_typeof, - STATE(3747), 1, + STATE(3748), 1, sym_comment, - STATE(5562), 1, - sym_import_require_clause, STATE(5563), 1, + sym_import_require_clause, + STATE(5565), 1, sym_string, - STATE(6415), 1, + STATE(6423), 1, sym__import_identifier, - STATE(6887), 1, + STATE(6891), 1, sym_import_clause, - STATE(7338), 2, + STATE(7340), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140398] = 16, + [140501] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4958), 1, + anon_sym_EQ, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7103), 1, + anon_sym_DOT, + STATE(3749), 1, + sym_comment, + STATE(3806), 1, + sym_type_arguments, + ACTIONS(4339), 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, + [140539] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7120), 1, + ACTIONS(7131), 1, sym_identifier, - ACTIONS(7122), 1, + ACTIONS(7133), 1, anon_sym_type, - ACTIONS(7124), 1, + ACTIONS(7135), 1, anon_sym_typeof, - STATE(3748), 1, + STATE(3750), 1, sym_comment, - STATE(5473), 1, - sym_import_require_clause, STATE(5474), 1, + sym_import_require_clause, + STATE(5475), 1, sym_string, - STATE(6415), 1, + STATE(6423), 1, sym__import_identifier, - STATE(6923), 1, + STATE(6932), 1, sym_import_clause, - STATE(7338), 2, + STATE(7340), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140452] = 16, + [140593] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7126), 1, + ACTIONS(7137), 1, sym_identifier, - ACTIONS(7128), 1, + ACTIONS(7139), 1, anon_sym_type, - ACTIONS(7130), 1, + ACTIONS(7141), 1, anon_sym_typeof, - STATE(3749), 1, + STATE(3751), 1, sym_comment, - STATE(5568), 1, + STATE(5590), 1, sym_import_require_clause, - STATE(5569), 1, + STATE(5594), 1, sym_string, - STATE(6415), 1, - sym__import_identifier, - STATE(6532), 1, - sym_import_clause, - STATE(7338), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(7106), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [140506] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4465), 1, - anon_sym_EQ, - STATE(3750), 1, - sym_comment, - ACTIONS(5265), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, - anon_sym_extends, - [140537] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4484), 1, - anon_sym_EQ, - STATE(3751), 1, - sym_comment, - ACTIONS(5345), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + STATE(6418), 1, + sym_import_clause, + STATE(6423), 1, + sym__import_identifier, + STATE(7340), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7117), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, anon_sym_BQUOTE, - anon_sym_QMARK, - anon_sym_extends, - [140568] = 5, + [140647] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2227), 1, + anon_sym_DOT, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3241), 1, + ACTIONS(5249), 1, anon_sym_EQ, STATE(3752), 1, sym_comment, - ACTIONS(3599), 16, + ACTIONS(5251), 15, 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, @@ -330027,18 +332437,19 @@ 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, - [140599] = 5, + [140680] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4482), 1, + ACTIONS(4481), 1, anon_sym_EQ, STATE(3753), 1, sym_comment, - ACTIONS(5356), 16, + ACTIONS(5086), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330055,23 +332466,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140630] = 5, + [140711] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3247), 1, + ACTIONS(4457), 1, anon_sym_EQ, STATE(3754), 1, sym_comment, - ACTIONS(3579), 16, + ACTIONS(5409), 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, @@ -330079,49 +332489,54 @@ 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, - [140661] = 5, + [140742] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2219), 1, + anon_sym_PIPE, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4486), 1, - anon_sym_EQ, STATE(3755), 1, sym_comment, - ACTIONS(5278), 16, - anon_sym_as, + ACTIONS(2221), 16, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, 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_LT, anon_sym_QMARK, anon_sym_extends, - [140692] = 5, + anon_sym_PIPE_RBRACE, + [140773] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4486), 1, - anon_sym_EQ, + ACTIONS(7143), 1, + anon_sym_DOT, + ACTIONS(7145), 1, + anon_sym_QMARK_DOT, STATE(3756), 1, sym_comment, - ACTIONS(5278), 16, + ACTIONS(5331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5333), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -330130,19 +332545,17 @@ 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, - [140723] = 5, + [140808] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4463), 1, + ACTIONS(4449), 1, anon_sym_EQ, STATE(3757), 1, sym_comment, - ACTIONS(5155), 16, + ACTIONS(5014), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330159,52 +332572,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140754] = 5, + [140839] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4459), 1, + anon_sym_EQ, STATE(3758), 1, sym_comment, - ACTIONS(5115), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5117), 15, + ACTIONS(5407), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [140785] = 7, + [140870] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7132), 1, - anon_sym_DOT, - ACTIONS(7134), 1, - anon_sym_QMARK_DOT, + ACTIONS(3408), 1, + anon_sym_EQ, STATE(3759), 1, sym_comment, - ACTIONS(5292), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5294), 13, + ACTIONS(3546), 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, @@ -330212,29 +332622,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [140820] = 11, + [140901] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4250), 1, + ACTIONS(4283), 1, anon_sym_LPAREN, - ACTIONS(4923), 1, + ACTIONS(4964), 1, anon_sym_PIPE, - ACTIONS(7136), 1, + ACTIONS(7147), 1, anon_sym_DOT, - ACTIONS(7138), 1, + ACTIONS(7149), 1, anon_sym_QMARK_DOT, - ACTIONS(7140), 1, + ACTIONS(7151), 1, anon_sym_LT, STATE(3760), 1, sym_comment, - STATE(3946), 1, + STATE(3964), 1, sym_arguments, - STATE(4077), 1, + STATE(4088), 1, sym_type_arguments, - ACTIONS(4925), 10, + ACTIONS(4966), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -330245,44 +332656,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140863] = 5, + [140944] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2172), 1, - anon_sym_PIPE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4461), 1, + anon_sym_EQ, STATE(3761), 1, sym_comment, - ACTIONS(2174), 16, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5405), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [140894] = 6, + [140975] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2252), 1, - anon_sym_DOT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, + ACTIONS(4974), 1, anon_sym_EQ, + ACTIONS(7093), 1, + anon_sym_LT, STATE(3762), 1, sym_comment, - ACTIONS(5326), 15, + STATE(3892), 1, + sym_type_arguments, + ACTIONS(4976), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330295,24 +332708,24 @@ 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, - [140927] = 5, + [141010] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2231), 1, + anon_sym_DOT, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4484), 1, + ACTIONS(5249), 1, anon_sym_EQ, STATE(3763), 1, sym_comment, - ACTIONS(5345), 16, + ACTIONS(5251), 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, @@ -330321,77 +332734,45 @@ 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, - [140958] = 5, + [141043] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4449), 1, + anon_sym_EQ, STATE(3764), 1, sym_comment, - ACTIONS(5123), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5125), 15, + ACTIONS(5014), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [140989] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4250), 1, - anon_sym_LPAREN, - ACTIONS(4252), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_QMARK_DOT, - ACTIONS(4258), 1, - anon_sym_PIPE, - ACTIONS(7140), 1, - anon_sym_LT, - STATE(3765), 1, - sym_comment, - STATE(3963), 1, - sym_arguments, - STATE(4085), 1, - sym_type_arguments, - ACTIONS(4248), 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, - [141032] = 5, + [141074] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3405), 1, + ACTIONS(3410), 1, anon_sym_EQ, - STATE(3766), 1, + STATE(3765), 1, sym_comment, - ACTIONS(3569), 16, + ACTIONS(3682), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330408,42 +332789,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141063] = 5, + [141105] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3767), 1, - sym_comment, - ACTIONS(5135), 2, + ACTIONS(4453), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5137), 15, + STATE(3766), 1, + sym_comment, + ACTIONS(5239), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [141094] = 5, + [141136] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4467), 1, + ACTIONS(4447), 1, anon_sym_EQ, - STATE(3768), 1, + STATE(3767), 1, sym_comment, - ACTIONS(5280), 16, + ACTIONS(5247), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330460,24 +332841,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [141125] = 7, + [141167] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, + ACTIONS(4483), 1, anon_sym_EQ, - ACTIONS(7082), 1, - anon_sym_LT, - STATE(3769), 1, + STATE(3768), 1, sym_comment, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(4979), 14, + ACTIONS(5088), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -330486,70 +332864,51 @@ 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, - [141160] = 5, + [141198] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2314), 1, - anon_sym_PIPE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3770), 1, + ACTIONS(4283), 1, + anon_sym_LPAREN, + ACTIONS(4285), 1, + anon_sym_DOT, + ACTIONS(4289), 1, + anon_sym_QMARK_DOT, + ACTIONS(4291), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_LT, + STATE(3769), 1, sym_comment, - ACTIONS(2316), 16, + STATE(3979), 1, + sym_arguments, + STATE(4083), 1, + sym_type_arguments, + ACTIONS(4281), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141191] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3377), 1, - anon_sym_EQ, - STATE(3771), 1, - sym_comment, - ACTIONS(3679), 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, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [141222] = 5, + [141241] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3227), 1, + ACTIONS(3400), 1, anon_sym_EQ, - STATE(3772), 1, + STATE(3770), 1, sym_comment, - ACTIONS(3669), 16, + ACTIONS(3664), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330566,43 +332925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141253] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2154), 1, - anon_sym_DOT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5324), 1, - anon_sym_EQ, - STATE(3773), 1, - sym_comment, - ACTIONS(5326), 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, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [141286] = 5, + [141272] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(4451), 1, anon_sym_EQ, - STATE(3774), 1, + STATE(3771), 1, sym_comment, - ACTIONS(5290), 16, + ACTIONS(5241), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330619,80 +332951,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [141317] = 5, + [141303] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2209), 1, + anon_sym_PIPE, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4490), 1, - anon_sym_EQ, - STATE(3775), 1, + STATE(3772), 1, sym_comment, - ACTIONS(5316), 16, - anon_sym_as, + ACTIONS(2211), 16, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, 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_LT, anon_sym_QMARK, anon_sym_extends, - [141348] = 5, + anon_sym_PIPE_RBRACE, + [141334] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4492), 1, - anon_sym_EQ, - STATE(3776), 1, + STATE(3773), 1, sym_comment, - ACTIONS(5320), 16, + ACTIONS(5303), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5305), 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, 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_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - [141379] = 11, + [141365] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4250), 1, + ACTIONS(4283), 1, anon_sym_LPAREN, - ACTIONS(4957), 1, + ACTIONS(4942), 1, anon_sym_PIPE, - ACTIONS(7140), 1, + ACTIONS(7151), 1, anon_sym_LT, - ACTIONS(7142), 1, + ACTIONS(7153), 1, anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(7155), 1, anon_sym_QMARK_DOT, - STATE(3777), 1, + STATE(3774), 1, sym_comment, - STATE(3968), 1, + STATE(3963), 1, sym_arguments, - STATE(4066), 1, + STATE(4095), 1, sym_type_arguments, - ACTIONS(4959), 10, + ACTIONS(4944), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -330703,21 +333035,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141422] = 5, + [141408] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, + ACTIONS(3386), 1, anon_sym_EQ, - STATE(3778), 1, + STATE(3775), 1, sym_comment, - ACTIONS(4975), 15, + ACTIONS(3564), 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, @@ -330727,24 +333061,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [141452] = 6, + [141439] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(3384), 1, anon_sym_EQ, - ACTIONS(7094), 1, - anon_sym_is, - STATE(3779), 1, + STATE(3776), 1, sym_comment, - ACTIONS(4971), 14, + ACTIONS(3612), 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, @@ -330754,22 +333087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141484] = 6, + [141470] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, + ACTIONS(4451), 1, anon_sym_EQ, - ACTIONS(7094), 1, - anon_sym_is, - STATE(3780), 1, + STATE(3777), 1, sym_comment, - ACTIONS(4965), 14, + ACTIONS(5241), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -330778,20 +333110,20 @@ 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, - [141516] = 6, + [141501] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, - anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_is, - STATE(3781), 1, + STATE(3778), 1, sym_comment, - ACTIONS(4979), 14, + ACTIONS(5311), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5313), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330801,21 +333133,23 @@ 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, - [141548] = 5, + [141532] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3782), 1, + STATE(3779), 1, sym_comment, - ACTIONS(2063), 15, + ACTIONS(5319), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5321), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330825,24 +333159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [141578] = 6, + [141563] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5366), 1, + ACTIONS(4982), 1, anon_sym_EQ, - ACTIONS(7148), 1, - anon_sym_AMP, - STATE(3783), 1, + STATE(3780), 1, sym_comment, - ACTIONS(5368), 13, + ACTIONS(4984), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330853,19 +333185,23 @@ 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, - [141609] = 5, + anon_sym_is, + [141593] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5045), 1, + ACTIONS(4974), 1, anon_sym_EQ, - STATE(3784), 1, + ACTIONS(7157), 1, + anon_sym_is, + STATE(3781), 1, sym_comment, - ACTIONS(5043), 14, + ACTIONS(4976), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330880,16 +333216,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141638] = 5, + [141625] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5021), 1, + ACTIONS(5004), 1, anon_sym_EQ, - STATE(3785), 1, + ACTIONS(7105), 1, + anon_sym_is, + STATE(3782), 1, sym_comment, - ACTIONS(5023), 14, + ACTIONS(5006), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330904,16 +333242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141667] = 5, + [141657] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(2092), 1, anon_sym_EQ, - STATE(3786), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3783), 1, sym_comment, - ACTIONS(4971), 14, + ACTIONS(2094), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330928,16 +333266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141696] = 5, + anon_sym_is, + [141687] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5235), 1, + ACTIONS(5000), 1, anon_sym_EQ, - STATE(3787), 1, + ACTIONS(7105), 1, + anon_sym_is, + STATE(3784), 1, sym_comment, - ACTIONS(5237), 14, + ACTIONS(5002), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330952,49 +333293,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141725] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3788), 1, - sym_comment, - ACTIONS(7150), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [141752] = 10, + [141719] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7158), 1, + ACTIONS(7165), 1, sym_number, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - STATE(3789), 1, + STATE(3785), 1, sym_comment, - STATE(7310), 1, + STATE(7019), 2, sym_string, - STATE(7317), 1, sym_predefined_type, - ACTIONS(7156), 9, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -331004,40 +333321,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141791] = 5, + [141756] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5017), 1, - anon_sym_EQ, - STATE(3790), 1, + ACTIONS(5016), 1, + anon_sym_PIPE, + STATE(3786), 1, sym_comment, - ACTIONS(5019), 14, - anon_sym_as, + ACTIONS(5018), 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, - [141820] = 5, + anon_sym_PIPE_RBRACE, + [141785] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5143), 1, + STATE(3787), 1, + sym_comment, + ACTIONS(7169), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141812] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5098), 1, anon_sym_EQ, - STATE(3791), 1, + STATE(3788), 1, sym_comment, - ACTIONS(5145), 14, + ACTIONS(5100), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331052,22 +333392,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141849] = 8, + [141841] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3789), 1, + sym_comment, + ACTIONS(7171), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141868] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5298), 1, + ACTIONS(5042), 1, anon_sym_EQ, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - STATE(3792), 1, + STATE(3790), 1, sym_comment, - ACTIONS(5300), 11, + ACTIONS(5044), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331078,110 +333435,76 @@ 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, - [141884] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7166), 1, - sym_number, - STATE(3793), 1, - sym_comment, - STATE(7303), 1, - sym_string, - STATE(7307), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [141923] = 10, + anon_sym_extends, + [141897] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7168), 1, - sym_number, - STATE(3794), 1, + ACTIONS(5126), 1, + anon_sym_PIPE, + STATE(3791), 1, sym_comment, - STATE(7290), 1, - sym_string, - STATE(7298), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [141962] = 9, + ACTIONS(5128), 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, + [141926] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4915), 1, + ACTIONS(5122), 1, anon_sym_PIPE, - ACTIONS(7140), 1, - anon_sym_LT, - ACTIONS(7170), 1, - anon_sym_DOT, - ACTIONS(7172), 1, - anon_sym_is, - STATE(3795), 1, + STATE(3792), 1, sym_comment, - STATE(4093), 1, - sym_type_arguments, - ACTIONS(4307), 10, + ACTIONS(5124), 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, - [141999] = 5, + [141955] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5147), 1, + ACTIONS(5393), 1, anon_sym_EQ, - STATE(3796), 1, + ACTIONS(7173), 1, + anon_sym_LBRACK, + STATE(3793), 1, sym_comment, - ACTIONS(5149), 14, + ACTIONS(5395), 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, @@ -331189,39 +333512,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142028] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3797), 1, - sym_comment, - ACTIONS(7174), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [142055] = 5, + [141986] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5358), 1, + ACTIONS(5130), 1, anon_sym_EQ, - STATE(3798), 1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + STATE(3794), 1, sym_comment, - ACTIONS(5360), 14, + ACTIONS(5132), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331232,18 +333538,15 @@ 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, - [142084] = 4, + [142021] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3799), 1, + STATE(3795), 1, sym_comment, - ACTIONS(7176), 15, + ACTIONS(7181), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -331259,22 +333562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [142111] = 8, + [142048] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5151), 1, + ACTIONS(5387), 1, anon_sym_EQ, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7183), 1, anon_sym_extends, - STATE(3800), 1, + STATE(3796), 1, sym_comment, - ACTIONS(5153), 11, + ACTIONS(5389), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331285,73 +333584,43 @@ 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, - [142146] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7178), 1, - sym_number, - STATE(3801), 1, - sym_comment, - STATE(7287), 2, - sym_string, - sym_predefined_type, - ACTIONS(7156), 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, - [142183] = 9, + [142079] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7180), 1, - sym_number, - STATE(3802), 1, + ACTIONS(5307), 1, + anon_sym_EQ, + STATE(3797), 1, sym_comment, - STATE(7179), 2, - sym_string, - sym_predefined_type, - ACTIONS(7156), 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, - [142220] = 5, + ACTIONS(5309), 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, + [142108] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5151), 1, + ACTIONS(5082), 1, anon_sym_EQ, - STATE(3803), 1, + STATE(3798), 1, sym_comment, - ACTIONS(5153), 14, + ACTIONS(5084), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331366,16 +333635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142249] = 5, + [142137] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + ACTIONS(5078), 1, anon_sym_EQ, - STATE(3804), 1, + STATE(3799), 1, sym_comment, - ACTIONS(5312), 14, + ACTIONS(5080), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331390,16 +333659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142278] = 5, + [142166] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5271), 1, + ACTIONS(5315), 1, anon_sym_EQ, - STATE(3805), 1, + STATE(3800), 1, sym_comment, - ACTIONS(5273), 14, + ACTIONS(5317), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331414,26 +333683,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142307] = 10, + [142195] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7182), 1, + ACTIONS(7185), 1, sym_number, - STATE(3806), 1, + STATE(3801), 1, sym_comment, - STATE(7342), 1, - sym_predefined_type, - STATE(7344), 1, + STATE(7030), 1, sym_string, - ACTIONS(7156), 9, + STATE(7035), 1, + sym_predefined_type, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -331443,87 +333712,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142346] = 5, + [142234] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(5379), 1, anon_sym_EQ, - STATE(3807), 1, + ACTIONS(7173), 1, + anon_sym_LBRACK, + STATE(3802), 1, sym_comment, - ACTIONS(5253), 14, + ACTIONS(5052), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5381), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [142375] = 5, + [142267] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, - anon_sym_EQ, - STATE(3808), 1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7187), 1, + sym_number, + STATE(3803), 1, sym_comment, - ACTIONS(5169), 14, - anon_sym_as, + STATE(7345), 2, + sym_string, + sym_predefined_type, + ACTIONS(7163), 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, + [142304] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5126), 1, + anon_sym_PIPE, + STATE(3804), 1, + sym_comment, + ACTIONS(5128), 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, - [142404] = 4, + anon_sym_PIPE_RBRACE, + [142333] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3809), 1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7189), 1, + sym_number, + STATE(3805), 1, sym_comment, - ACTIONS(7184), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [142431] = 5, + STATE(7327), 1, + sym_predefined_type, + STATE(7329), 1, + sym_string, + ACTIONS(7163), 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, + [142372] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5306), 1, + ACTIONS(5369), 1, anon_sym_EQ, - STATE(3810), 1, + STATE(3806), 1, sym_comment, - ACTIONS(5308), 14, + ACTIONS(5371), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331538,22 +333843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142460] = 8, + [142401] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, + ACTIONS(5299), 1, anon_sym_EQ, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - STATE(3811), 1, + STATE(3807), 1, sym_comment, - ACTIONS(5031), 11, + ACTIONS(5301), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331564,54 +333863,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_QMARK, - [142495] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5167), 1, - anon_sym_EQ, - ACTIONS(7148), 1, anon_sym_AMP, - ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - STATE(3812), 1, - sym_comment, - ACTIONS(5169), 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, - [142530] = 10, + anon_sym_extends, + [142430] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7186), 1, + ACTIONS(7191), 1, sym_number, - STATE(3813), 1, + STATE(3808), 1, sym_comment, - STATE(7373), 1, - sym_string, - STATE(7376), 1, + STATE(7316), 1, sym_predefined_type, - ACTIONS(7156), 9, + STATE(7317), 1, + sym_string, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -331621,26 +333896,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142569] = 10, + [142469] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7188), 1, + ACTIONS(7193), 1, sym_number, - STATE(3814), 1, + STATE(3809), 1, sym_comment, - STATE(7312), 1, + STATE(7308), 1, sym_predefined_type, STATE(7313), 1, sym_string, - ACTIONS(7156), 9, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -331650,49 +333925,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142608] = 4, + [142508] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3815), 1, + ACTIONS(5078), 1, + anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + STATE(3810), 1, sym_comment, - ACTIONS(7190), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [142635] = 10, + ACTIONS(5080), 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, + [142543] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7192), 1, + ACTIONS(7195), 1, sym_number, - STATE(3816), 1, + STATE(3811), 1, sym_comment, - STATE(7359), 1, + STATE(7197), 2, sym_string, - STATE(7361), 1, sym_predefined_type, - ACTIONS(7156), 9, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -331702,16 +333980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142674] = 5, + [142580] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5339), 1, + ACTIONS(5337), 1, anon_sym_EQ, - STATE(3817), 1, + STATE(3812), 1, sym_comment, - ACTIONS(5341), 14, + ACTIONS(5339), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331726,94 +334004,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142703] = 10, + [142609] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7194), 1, - sym_number, - STATE(3818), 1, + ACTIONS(5074), 1, + anon_sym_EQ, + STATE(3813), 1, sym_comment, - STATE(7322), 1, - sym_predefined_type, - STATE(7323), 1, - sym_string, - ACTIONS(7156), 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, - [142742] = 4, + ACTIONS(5076), 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, + [142638] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3819), 1, + ACTIONS(5038), 1, + anon_sym_PIPE, + STATE(3814), 1, sym_comment, - ACTIONS(7196), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [142769] = 9, + ACTIONS(5040), 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, + [142667] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7198), 1, - sym_number, - STATE(3820), 1, + ACTIONS(5134), 1, + anon_sym_PIPE, + STATE(3815), 1, sym_comment, - STATE(7352), 2, - sym_string, - sym_predefined_type, - ACTIONS(7156), 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, - [142806] = 4, + ACTIONS(5136), 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, + [142696] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3821), 1, + STATE(3816), 1, sym_comment, - ACTIONS(7200), 15, + ACTIONS(7197), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -331829,16 +334099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [142833] = 5, + [142723] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5107), 1, + ACTIONS(5034), 1, anon_sym_PIPE, - STATE(3822), 1, + STATE(3817), 1, sym_comment, - ACTIONS(5109), 14, + ACTIONS(5036), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331853,26 +334123,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142862] = 10, + [142752] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5034), 1, + anon_sym_PIPE, + STATE(3818), 1, + sym_comment, + ACTIONS(5036), 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, + [142781] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7202), 1, + ACTIONS(7199), 1, sym_number, - STATE(3823), 1, + STATE(3819), 1, sym_comment, - STATE(7022), 1, + STATE(7206), 1, sym_string, - STATE(7026), 1, + STATE(7207), 1, sym_predefined_type, - ACTIONS(7156), 9, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -331882,14 +334176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142901] = 4, + [142820] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3824), 1, + STATE(3820), 1, sym_comment, - ACTIONS(7204), 15, + ACTIONS(7201), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -331905,16 +334199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [142928] = 5, + [142847] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5111), 1, + ACTIONS(5034), 1, anon_sym_PIPE, - STATE(3825), 1, + STATE(3821), 1, sym_comment, - ACTIONS(5113), 14, + ACTIONS(5036), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331929,16 +334223,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142957] = 5, + [142876] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5119), 1, + ACTIONS(5243), 1, + anon_sym_PIPE, + STATE(3822), 1, + sym_comment, + ACTIONS(5245), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3826), 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, + [142905] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5243), 1, + anon_sym_PIPE, + STATE(3823), 1, + sym_comment, + ACTIONS(5245), 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, + [142934] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7203), 1, + sym_number, + STATE(3824), 1, + sym_comment, + STATE(7406), 1, + sym_string, + STATE(7407), 1, + sym_predefined_type, + ACTIONS(7163), 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, + [142973] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5365), 1, + anon_sym_EQ, + STATE(3825), 1, sym_comment, - ACTIONS(5121), 14, + ACTIONS(5367), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331953,26 +334324,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142986] = 10, + [143002] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7206), 1, + ACTIONS(7205), 1, sym_number, - STATE(3827), 1, + STATE(3826), 1, sym_comment, - STATE(7016), 1, + STATE(7387), 1, sym_string, - STATE(7019), 1, + STATE(7395), 1, sym_predefined_type, - ACTIONS(7156), 9, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -331982,25 +334353,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [143025] = 9, + [143041] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7208), 1, + ACTIONS(7207), 1, sym_number, - STATE(3828), 1, + STATE(3827), 1, sym_comment, - STATE(7008), 2, + STATE(7374), 1, sym_string, + STATE(7377), 1, sym_predefined_type, - ACTIONS(7156), 9, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -332010,26 +334382,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [143062] = 10, + [143080] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7210), 1, + ACTIONS(7209), 1, sym_number, - STATE(3829), 1, + STATE(3828), 1, sym_comment, - STATE(7030), 1, + STATE(7362), 2, sym_string, - STATE(7033), 1, sym_predefined_type, - ACTIONS(7156), 9, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -332039,16 +334410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [143101] = 5, + [143117] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5127), 1, + ACTIONS(5243), 1, anon_sym_PIPE, - STATE(3830), 1, + STATE(3829), 1, sym_comment, - ACTIONS(5129), 14, + ACTIONS(5245), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332063,49 +334434,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143130] = 5, + [143146] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5001), 1, - anon_sym_PIPE, - STATE(3831), 1, + ACTIONS(7211), 1, + anon_sym_LPAREN, + ACTIONS(7213), 1, + anon_sym_DOT, + ACTIONS(7215), 1, + anon_sym_QMARK_DOT, + ACTIONS(7217), 1, + anon_sym_LT, + STATE(3830), 1, sym_comment, - ACTIONS(5003), 14, + STATE(4105), 1, + sym_arguments, + STATE(4301), 1, + sym_type_arguments, + ACTIONS(4281), 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, - [143159] = 9, + [143185] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3831), 1, + sym_comment, + ACTIONS(7219), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [143212] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7160), 1, + ACTIONS(7167), 1, anon_sym_unique, - ACTIONS(7212), 1, + ACTIONS(7221), 1, sym_number, STATE(3832), 1, sym_comment, - STATE(7349), 2, + STATE(7039), 1, sym_string, + STATE(7040), 1, sym_predefined_type, - ACTIONS(7156), 9, + ACTIONS(7163), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -332115,88 +334515,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [143196] = 5, + [143251] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5127), 1, - anon_sym_PIPE, + ACTIONS(7211), 1, + anon_sym_LPAREN, + ACTIONS(7217), 1, + anon_sym_LT, + ACTIONS(7223), 1, + anon_sym_DOT, + ACTIONS(7225), 1, + anon_sym_QMARK_DOT, STATE(3833), 1, sym_comment, - ACTIONS(5129), 14, + STATE(4092), 1, + sym_arguments, + STATE(4303), 1, + sym_type_arguments, + ACTIONS(4966), 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, - [143225] = 5, + [143290] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5013), 1, - anon_sym_PIPE, + ACTIONS(7211), 1, + anon_sym_LPAREN, + ACTIONS(7217), 1, + anon_sym_LT, + ACTIONS(7227), 1, + anon_sym_DOT, + ACTIONS(7229), 1, + anon_sym_QMARK_DOT, STATE(3834), 1, sym_comment, - ACTIONS(5015), 14, + STATE(4084), 1, + sym_arguments, + STATE(4305), 1, + sym_type_arguments, + ACTIONS(4944), 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, - [143254] = 5, + [143329] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5013), 1, - anon_sym_PIPE, STATE(3835), 1, sym_comment, - ACTIONS(5015), 14, - sym__automatic_semicolon, + ACTIONS(7231), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [143356] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5207), 1, anon_sym_EQ, + STATE(3836), 1, + sym_comment, + ACTIONS(5205), 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, - [143283] = 5, + [143385] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5013), 1, + ACTIONS(5284), 1, anon_sym_PIPE, - STATE(3836), 1, + STATE(3837), 1, sym_comment, - ACTIONS(5015), 14, + ACTIONS(5286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332211,48 +334644,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143312] = 5, + [143414] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5159), 1, + ACTIONS(5375), 1, + anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, anon_sym_PIPE, - STATE(3837), 1, + ACTIONS(7179), 1, + anon_sym_extends, + STATE(3838), 1, sym_comment, - ACTIONS(5161), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5377), 11, + 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_QMARK, + [143449] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5359), 1, + anon_sym_EQ, + ACTIONS(7175), 1, anon_sym_AMP, - anon_sym_LT, + STATE(3839), 1, + sym_comment, + ACTIONS(5361), 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, - anon_sym_PIPE_RBRACE, - [143341] = 6, + [143480] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5065), 1, + ACTIONS(5351), 1, anon_sym_EQ, - ACTIONS(7214), 1, - anon_sym_LBRACK, - STATE(3838), 1, + STATE(3840), 1, sym_comment, - ACTIONS(5067), 13, + ACTIONS(5353), 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, @@ -332260,16 +334720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [143372] = 5, + [143509] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5159), 1, + ACTIONS(5284), 1, anon_sym_PIPE, - STATE(3839), 1, + STATE(3841), 1, sym_comment, - ACTIONS(5161), 14, + ACTIONS(5286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332284,16 +334744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143401] = 5, + [143538] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5159), 1, + ACTIONS(5138), 1, anon_sym_PIPE, - STATE(3840), 1, + STATE(3842), 1, sym_comment, - ACTIONS(5161), 14, + ACTIONS(5140), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332308,45 +334768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143430] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DOT, - ACTIONS(7220), 1, - anon_sym_QMARK_DOT, - ACTIONS(7222), 1, - anon_sym_LT, - STATE(3841), 1, - sym_comment, - STATE(4098), 1, - sym_arguments, - STATE(4298), 1, - sym_type_arguments, - ACTIONS(4248), 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, - [143469] = 5, + [143567] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5163), 1, + ACTIONS(5284), 1, anon_sym_PIPE, - STATE(3842), 1, + STATE(3843), 1, sym_comment, - ACTIONS(5165), 14, + ACTIONS(5286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332361,93 +334792,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143498] = 10, + [143596] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7222), 1, - anon_sym_LT, - ACTIONS(7224), 1, - anon_sym_DOT, - ACTIONS(7226), 1, - anon_sym_QMARK_DOT, - STATE(3843), 1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7233), 1, + sym_number, + STATE(3844), 1, sym_comment, - STATE(4102), 1, - sym_arguments, - STATE(4300), 1, - sym_type_arguments, - ACTIONS(4959), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(7202), 1, + sym_string, + STATE(7203), 1, + sym_predefined_type, + ACTIONS(7163), 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, + [143635] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5263), 1, + anon_sym_EQ, + STATE(3845), 1, + sym_comment, + ACTIONS(5265), 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, - [143537] = 5, + [143664] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5163), 1, - anon_sym_PIPE, - STATE(3844), 1, - sym_comment, - ACTIONS(5165), 14, - sym__automatic_semicolon, + ACTIONS(5000), 1, anon_sym_EQ, + STATE(3846), 1, + sym_comment, + ACTIONS(5002), 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, - [143566] = 5, + [143693] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5163), 1, - anon_sym_PIPE, - STATE(3845), 1, - sym_comment, - ACTIONS(5165), 14, - sym__automatic_semicolon, + ACTIONS(5024), 1, anon_sym_EQ, + STATE(3847), 1, + sym_comment, + ACTIONS(5026), 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, - [143595] = 5, + [143722] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5231), 1, + ACTIONS(5102), 1, anon_sym_PIPE, - STATE(3846), 1, + STATE(3848), 1, sym_comment, - ACTIONS(5233), 14, + ACTIONS(5104), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332462,16 +334917,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143624] = 5, + [143751] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(3849), 1, + sym_comment, + ACTIONS(7235), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [143778] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5001), 1, + ACTIONS(5106), 1, anon_sym_PIPE, - STATE(3847), 1, + STATE(3850), 1, sym_comment, - ACTIONS(5003), 14, + ACTIONS(5108), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332486,40 +334964,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143653] = 5, + [143807] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5243), 1, + ACTIONS(5280), 1, + anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, anon_sym_PIPE, - STATE(3848), 1, + ACTIONS(7179), 1, + anon_sym_extends, + STATE(3851), 1, sym_comment, - ACTIONS(5245), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5282), 11, + 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_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143682] = 5, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [143842] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5227), 1, + ACTIONS(5102), 1, anon_sym_PIPE, - STATE(3849), 1, + STATE(3852), 1, sym_comment, - ACTIONS(5229), 14, + ACTIONS(5104), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332534,16 +335015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143711] = 5, + [143871] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5243), 1, + ACTIONS(5106), 1, anon_sym_PIPE, - STATE(3850), 1, + STATE(3853), 1, sym_comment, - ACTIONS(5245), 14, + ACTIONS(5108), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332558,16 +335039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143740] = 5, + [143900] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5227), 1, + ACTIONS(5110), 1, anon_sym_PIPE, - STATE(3851), 1, + STATE(3854), 1, sym_comment, - ACTIONS(5229), 14, + ACTIONS(5112), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332582,40 +335063,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143769] = 5, + [143929] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5005), 1, - anon_sym_PIPE, - STATE(3852), 1, - sym_comment, - ACTIONS(5007), 14, - sym__automatic_semicolon, + ACTIONS(5349), 1, anon_sym_EQ, + STATE(3855), 1, + sym_comment, + ACTIONS(5221), 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, - [143798] = 5, + [143958] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, + ACTIONS(5227), 1, anon_sym_EQ, - STATE(3853), 1, + STATE(3856), 1, sym_comment, - ACTIONS(5284), 14, + ACTIONS(5229), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332630,16 +335111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [143827] = 5, + [143987] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5039), 1, + ACTIONS(5114), 1, anon_sym_PIPE, - STATE(3854), 1, + STATE(3857), 1, sym_comment, - ACTIONS(5041), 14, + ACTIONS(5116), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332654,45 +335135,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143856] = 10, + [144016] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7222), 1, - anon_sym_LT, - ACTIONS(7228), 1, - anon_sym_DOT, - ACTIONS(7230), 1, - anon_sym_QMARK_DOT, - STATE(3855), 1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7237), 1, + sym_number, + STATE(3858), 1, sym_comment, - STATE(4107), 1, - sym_arguments, - STATE(4302), 1, - sym_type_arguments, - ACTIONS(4925), 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, - [143895] = 5, + STATE(7199), 1, + sym_string, + STATE(7200), 1, + sym_predefined_type, + ACTIONS(7163), 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, + [144055] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5005), 1, + ACTIONS(5223), 1, anon_sym_PIPE, - STATE(3856), 1, + STATE(3859), 1, sym_comment, - ACTIONS(5007), 14, + ACTIONS(5225), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332707,42 +335188,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143924] = 5, + [144084] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5039), 1, - anon_sym_PIPE, - STATE(3857), 1, - sym_comment, - ACTIONS(5041), 14, - sym__automatic_semicolon, + ACTIONS(5094), 1, anon_sym_EQ, + STATE(3860), 1, + sym_comment, + ACTIONS(5096), 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, - [143953] = 6, + [144113] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5374), 1, + ACTIONS(5288), 1, anon_sym_EQ, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - STATE(3858), 1, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + STATE(3861), 1, sym_comment, - ACTIONS(5376), 13, + ACTIONS(5290), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332753,46 +335238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [143984] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7232), 1, - sym_number, - STATE(3859), 1, - sym_comment, - STATE(7185), 1, - sym_string, - STATE(7190), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [144023] = 4, + [144148] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3860), 1, + STATE(3862), 1, sym_comment, - ACTIONS(7234), 15, + ACTIONS(7239), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -332808,146 +335262,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [144050] = 6, + [144175] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5400), 1, - anon_sym_EQ, - ACTIONS(7214), 1, - anon_sym_LBRACK, - STATE(3861), 1, - sym_comment, - ACTIONS(5402), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, + ACTIONS(5016), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [144081] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5394), 1, - anon_sym_EQ, - ACTIONS(7236), 1, - anon_sym_extends, - STATE(3862), 1, + STATE(3863), 1, sym_comment, - ACTIONS(5396), 13, - anon_sym_as, + ACTIONS(5018), 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, - [144112] = 7, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144204] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5390), 1, - anon_sym_EQ, - ACTIONS(7214), 1, - anon_sym_LBRACK, - STATE(3863), 1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7241), 1, + sym_number, + STATE(3864), 1, sym_comment, - ACTIONS(5067), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(5392), 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, - [144145] = 8, + STATE(7291), 2, + sym_string, + sym_predefined_type, + ACTIONS(7163), 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, + [144241] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5386), 1, - anon_sym_EQ, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(5122), 1, anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - STATE(3864), 1, + STATE(3865), 1, sym_comment, - ACTIONS(5388), 11, - anon_sym_as, + ACTIONS(5124), 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, - [144180] = 8, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144270] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5261), 1, - anon_sym_EQ, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(5114), 1, anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - STATE(3865), 1, + STATE(3866), 1, sym_comment, - ACTIONS(5263), 11, - anon_sym_as, + ACTIONS(5116), 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, - [144215] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144299] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5404), 1, + ACTIONS(5004), 1, anon_sym_EQ, - STATE(3866), 1, + STATE(3867), 1, sym_comment, - ACTIONS(5406), 14, + ACTIONS(5006), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332962,16 +335386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144244] = 5, + [144328] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5382), 1, + ACTIONS(5345), 1, anon_sym_EQ, - STATE(3867), 1, + STATE(3868), 1, sym_comment, - ACTIONS(5384), 14, + ACTIONS(5347), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332986,16 +335410,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144273] = 5, + [144357] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7243), 1, + sym_number, + STATE(3869), 1, + sym_comment, + STATE(7300), 1, + sym_string, + STATE(7302), 1, + sym_predefined_type, + ACTIONS(7163), 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, + [144396] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7245), 1, + sym_number, + STATE(3870), 1, + sym_comment, + STATE(7307), 1, + sym_string, + STATE(7312), 1, + sym_predefined_type, + ACTIONS(7163), 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, + [144435] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7247), 1, + sym_number, + STATE(3871), 1, + sym_comment, + STATE(7320), 1, + sym_string, + STATE(7325), 1, + sym_predefined_type, + ACTIONS(7163), 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, + [144474] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5247), 1, + ACTIONS(5327), 1, anon_sym_EQ, - STATE(3868), 1, + STATE(3872), 1, sym_comment, - ACTIONS(5249), 14, + ACTIONS(5329), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333010,16 +335521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144302] = 5, + [144503] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, + ACTIONS(5016), 1, anon_sym_PIPE, - STATE(3869), 1, + STATE(3873), 1, sym_comment, - ACTIONS(5027), 14, + ACTIONS(5018), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333034,40 +335545,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144331] = 5, + [144532] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, - anon_sym_PIPE, - STATE(3870), 1, + STATE(3874), 1, sym_comment, - ACTIONS(5027), 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, - [144360] = 5, + ACTIONS(7249), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [144559] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5085), 1, + ACTIONS(5090), 1, anon_sym_EQ, - STATE(3871), 1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + STATE(3875), 1, sym_comment, - ACTIONS(5087), 14, + ACTIONS(5092), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333078,44 +335594,44 @@ 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, - [144389] = 5, + [144594] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, + ACTIONS(5024), 1, + anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, anon_sym_PIPE, - STATE(3872), 1, + ACTIONS(7179), 1, + anon_sym_extends, + STATE(3876), 1, sym_comment, - ACTIONS(5027), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5026), 11, + 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_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144418] = 5, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [144629] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5020), 1, anon_sym_PIPE, - STATE(3873), 1, + STATE(3877), 1, sym_comment, - ACTIONS(5083), 14, + ACTIONS(5022), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333130,40 +335646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144447] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5009), 1, - anon_sym_EQ, - STATE(3874), 1, - sym_comment, - ACTIONS(5011), 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, - [144476] = 5, + [144658] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5020), 1, anon_sym_PIPE, - STATE(3875), 1, + STATE(3878), 1, sym_comment, - ACTIONS(5083), 14, + ACTIONS(5022), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333178,22 +335670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144505] = 8, + [144687] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5257), 1, + ACTIONS(5118), 1, anon_sym_EQ, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - STATE(3876), 1, + STATE(3879), 1, sym_comment, - ACTIONS(5259), 11, + ACTIONS(5120), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333204,17 +335690,20 @@ 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, - [144540] = 5, + anon_sym_extends, + [144716] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5046), 1, anon_sym_PIPE, - STATE(3877), 1, + STATE(3880), 1, sym_comment, - ACTIONS(5083), 14, + ACTIONS(5048), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333229,16 +335718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144569] = 5, + [144745] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, + ACTIONS(5046), 1, anon_sym_PIPE, - STATE(3878), 1, + STATE(3881), 1, sym_comment, - ACTIONS(5241), 14, + ACTIONS(5048), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333253,40 +335742,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144598] = 5, + [144774] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, - anon_sym_PIPE, - STATE(3879), 1, - sym_comment, - ACTIONS(5241), 14, - sym__automatic_semicolon, + ACTIONS(4974), 1, anon_sym_EQ, + STATE(3882), 1, + sym_comment, + ACTIONS(4976), 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, - [144627] = 5, + [144803] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5302), 1, + ACTIONS(5267), 1, anon_sym_EQ, - STATE(3880), 1, + STATE(3883), 1, sym_comment, - ACTIONS(5304), 14, + ACTIONS(5269), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333301,16 +335790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144656] = 5, + [144832] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, + ACTIONS(5020), 1, anon_sym_PIPE, - STATE(3881), 1, + STATE(3884), 1, sym_comment, - ACTIONS(5241), 14, + ACTIONS(5022), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333325,23 +335814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144685] = 5, + [144861] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5318), 1, + ACTIONS(5050), 1, anon_sym_EQ, - STATE(3882), 1, + ACTIONS(7173), 1, + anon_sym_LBRACK, + STATE(3885), 1, sym_comment, - ACTIONS(5063), 14, + ACTIONS(5052), 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, @@ -333349,45 +335839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144714] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7238), 1, - sym_number, - STATE(3883), 1, - sym_comment, - STATE(7200), 1, - sym_string, - STATE(7201), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [144753] = 5, + [144892] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5267), 1, + ACTIONS(5046), 1, anon_sym_PIPE, - STATE(3884), 1, + STATE(3886), 1, sym_comment, - ACTIONS(5269), 14, + ACTIONS(5048), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333402,16 +335863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144782] = 5, + [144921] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, + ACTIONS(5259), 1, anon_sym_EQ, - STATE(3885), 1, + STATE(3887), 1, sym_comment, - ACTIONS(4965), 14, + ACTIONS(5261), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333426,16 +335887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144811] = 5, + [144950] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5378), 1, + ACTIONS(5050), 1, anon_sym_EQ, - STATE(3886), 1, + STATE(3888), 1, sym_comment, - ACTIONS(5380), 14, + ACTIONS(5052), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333450,68 +335911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144840] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3887), 1, - sym_comment, - ACTIONS(7240), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [144867] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7242), 1, - sym_number, - STATE(3888), 1, - sym_comment, - STATE(7197), 1, - sym_string, - STATE(7198), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [144906] = 5, + [144979] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5071), 1, + ACTIONS(5231), 1, anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_AMP, STATE(3889), 1, sym_comment, - ACTIONS(5073), 14, + ACTIONS(5233), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333522,20 +335933,19 @@ 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, - [144935] = 5, + [145010] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5362), 1, + ACTIONS(5235), 1, anon_sym_EQ, STATE(3890), 1, sym_comment, - ACTIONS(5364), 14, + ACTIONS(5237), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333550,69 +335960,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144964] = 10, + [145039] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7244), 1, - sym_number, + ACTIONS(4958), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_LT, + ACTIONS(7251), 1, + anon_sym_DOT, + ACTIONS(7253), 1, + anon_sym_is, STATE(3891), 1, sym_comment, - STATE(7383), 1, - sym_string, - STATE(7392), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [145003] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5065), 1, + STATE(4096), 1, + sym_type_arguments, + ACTIONS(4339), 10, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3892), 1, - sym_comment, - ACTIONS(5067), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [145032] = 5, + anon_sym_PIPE_RBRACE, + [145076] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5131), 1, + ACTIONS(5401), 1, anon_sym_EQ, - STATE(3893), 1, + STATE(3892), 1, sym_comment, - ACTIONS(5133), 14, + ACTIONS(5403), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333627,16 +336012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [145061] = 5, + [145105] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, + ACTIONS(5271), 1, anon_sym_EQ, - STATE(3894), 1, + STATE(3893), 1, sym_comment, - ACTIONS(4979), 14, + ACTIONS(5273), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333651,186 +336036,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [145090] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [145134] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, - anon_sym_STAR, - ACTIONS(7102), 1, - anon_sym_LBRACE, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7248), 1, - anon_sym_type, - STATE(3895), 1, + ACTIONS(7167), 1, + anon_sym_unique, + ACTIONS(7255), 1, + sym_number, + STATE(3894), 1, sym_comment, - STATE(5444), 1, - sym_import_require_clause, - STATE(5445), 1, + STATE(7025), 1, sym_string, - STATE(6415), 1, - sym__import_identifier, - STATE(6900), 1, - sym_import_clause, - ACTIONS(7250), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7338), 2, - sym_namespace_import, - sym_named_imports, - [145138] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4655), 1, - anon_sym_RBRACE, - ACTIONS(7252), 1, - anon_sym_EQ, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - STATE(3896), 1, - sym_comment, - STATE(4389), 1, - sym_formal_parameters, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(6831), 1, - sym_type_parameters, - ACTIONS(4642), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145182] = 15, + STATE(7026), 1, + sym_predefined_type, + ACTIONS(7163), 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, + [145173] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7262), 1, - anon_sym_BANG, - ACTIONS(7264), 1, - anon_sym_LPAREN, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7268), 1, - anon_sym_QMARK, - STATE(3897), 1, + ACTIONS(5110), 1, + anon_sym_PIPE, + STATE(3895), 1, sym_comment, - STATE(4226), 1, - sym_formal_parameters, - STATE(4756), 1, - sym__call_signature, - STATE(5072), 1, - sym_type_annotation, - STATE(5901), 1, - sym__initializer, - STATE(6465), 1, - sym_type_parameters, - ACTIONS(7260), 3, + ACTIONS(5112), 14, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [145230] = 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145202] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(5397), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7272), 1, - anon_sym_BANG, - ACTIONS(7274), 1, - anon_sym_LPAREN, - ACTIONS(7276), 1, - anon_sym_QMARK, - STATE(3898), 1, + STATE(3896), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(5184), 1, - sym_type_annotation, - STATE(6040), 1, - sym__initializer, - STATE(6363), 1, - sym_type_parameters, - STATE(6617), 1, - sym__call_signature, - ACTIONS(7270), 3, - sym__automatic_semicolon, + ACTIONS(5399), 14, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [145278] = 15, + 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, + [145231] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7246), 1, + ACTIONS(7257), 1, sym_identifier, - ACTIONS(7248), 1, + ACTIONS(7259), 1, anon_sym_type, - STATE(3899), 1, + STATE(3897), 1, sym_comment, - STATE(5547), 1, + STATE(5549), 1, sym_import_require_clause, - STATE(5548), 1, + STATE(5550), 1, sym_string, - STATE(6415), 1, + STATE(6423), 1, sym__import_identifier, - STATE(6565), 1, + STATE(6573), 1, sym_import_clause, - ACTIONS(7250), 2, + ACTIONS(7261), 2, anon_sym_COMMA, anon_sym_from, - STATE(7338), 2, + STATE(7340), 2, sym_namespace_import, sym_named_imports, - [145326] = 8, + [145279] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7267), 1, + anon_sym_BANG, + ACTIONS(7269), 1, + anon_sym_LPAREN, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7275), 1, + anon_sym_QMARK, + STATE(3898), 1, + sym_comment, + STATE(4285), 1, + sym_formal_parameters, + STATE(4740), 1, + sym__call_signature, + STATE(5144), 1, + sym_type_annotation, + STATE(5979), 1, + sym__initializer, + STATE(6484), 1, + sym_type_parameters, + ACTIONS(7265), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145327] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(203), 1, + ACTIONS(207), 1, anon_sym_unique, - STATE(2409), 1, - sym_type_predicate, - STATE(3900), 1, + STATE(3899), 1, sym_comment, - STATE(7250), 1, + STATE(4189), 1, + sym_type_predicate, + STATE(7184), 1, sym_predefined_type, - ACTIONS(7278), 2, + ACTIONS(7277), 2, sym_identifier, sym_this, - ACTIONS(205), 9, + ACTIONS(209), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -333840,22 +336205,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [145360] = 8, + [145361] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_PIPE, - ACTIONS(7140), 1, + ACTIONS(7151), 1, anon_sym_LT, - ACTIONS(7170), 1, + ACTIONS(7251), 1, anon_sym_DOT, - STATE(3901), 1, + STATE(3900), 1, sym_comment, - STATE(4093), 1, + STATE(4096), 1, sym_type_arguments, - ACTIONS(4307), 10, + ACTIONS(4339), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333866,23 +336231,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [145394] = 8, + [145395] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7281), 1, + anon_sym_BANG, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7285), 1, + anon_sym_QMARK, + STATE(3901), 1, + sym_comment, + STATE(4812), 1, + sym_formal_parameters, + STATE(5204), 1, + sym_type_annotation, + STATE(6054), 1, + sym__initializer, + STATE(6366), 1, + sym_type_parameters, + STATE(6592), 1, + sym__call_signature, + ACTIONS(7279), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145443] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(203), 1, + ACTIONS(207), 1, anon_sym_unique, + STATE(2972), 1, + sym_type_predicate, STATE(3902), 1, sym_comment, - STATE(4114), 1, - sym_type_predicate, - STATE(7304), 1, + STATE(6957), 1, sym_predefined_type, - ACTIONS(7280), 2, + ACTIONS(7287), 2, sym_identifier, sym_this, - ACTIONS(205), 9, + ACTIONS(209), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -333892,532 +336290,604 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [145428] = 13, + [145477] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4649), 1, - anon_sym_RBRACE, - ACTIONS(7252), 1, - anon_sym_EQ, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, + ACTIONS(207), 1, + anon_sym_unique, + STATE(2388), 1, + sym_type_predicate, STATE(3903), 1, sym_comment, - STATE(4389), 1, - sym_formal_parameters, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - STATE(6831), 1, - sym_type_parameters, - ACTIONS(4642), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145472] = 15, + STATE(7267), 1, + sym_predefined_type, + ACTIONS(7289), 2, + sym_identifier, + sym_this, + ACTIONS(209), 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, + [145511] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7282), 1, + ACTIONS(7291), 1, anon_sym_BANG, - ACTIONS(7284), 1, + ACTIONS(7293), 1, anon_sym_QMARK, STATE(3904), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5180), 1, + STATE(5186), 1, sym_type_annotation, - STATE(6032), 1, + STATE(6042), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6624), 1, + STATE(6619), 1, sym__call_signature, - ACTIONS(7270), 3, + ACTIONS(7279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145520] = 15, + [145559] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4656), 1, + anon_sym_RBRACE, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(7288), 1, - anon_sym_BANG, - ACTIONS(7290), 1, - anon_sym_QMARK, STATE(3905), 1, sym_comment, - STATE(4817), 1, + STATE(4395), 1, sym_formal_parameters, - STATE(5331), 1, - sym_type_annotation, - STATE(6202), 1, - sym__initializer, - STATE(6352), 1, - sym__call_signature, - STATE(6363), 1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + STATE(6834), 1, sym_type_parameters, - ACTIONS(7286), 3, + ACTIONS(4649), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [145568] = 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [145603] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7294), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7301), 1, anon_sym_BANG, - ACTIONS(7296), 1, + ACTIONS(7303), 1, anon_sym_QMARK, STATE(3906), 1, sym_comment, - STATE(4119), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5174), 1, + STATE(5147), 1, sym_type_annotation, - STATE(6029), 1, - sym__call_signature, - STATE(6030), 1, + STATE(5995), 1, sym__initializer, - STATE(6380), 1, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7292), 3, + STATE(6844), 1, + sym__call_signature, + ACTIONS(7299), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145616] = 15, + [145651] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7264), 1, - anon_sym_LPAREN, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7300), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7305), 1, anon_sym_BANG, - ACTIONS(7302), 1, + ACTIONS(7307), 1, anon_sym_QMARK, STATE(3907), 1, sym_comment, - STATE(4226), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4677), 1, - sym__call_signature, - STATE(5231), 1, + STATE(5184), 1, sym_type_annotation, - STATE(6073), 1, + STATE(6039), 1, sym__initializer, - STATE(6465), 1, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7298), 3, + STATE(6627), 1, + sym__call_signature, + ACTIONS(7279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145664] = 7, + [145699] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7313), 1, + anon_sym_QMARK, STATE(3908), 1, sym_comment, - STATE(2647), 2, - sym_template_string, - sym_arguments, - ACTIONS(5133), 10, + STATE(4285), 1, + sym_formal_parameters, + STATE(4738), 1, + sym__call_signature, + STATE(5074), 1, + sym_type_annotation, + STATE(5905), 1, + sym__initializer, + STATE(6484), 1, + sym_type_parameters, + ACTIONS(7309), 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, - [145696] = 15, + anon_sym_SEMI, + [145747] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7264), 1, - anon_sym_LPAREN, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7294), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7317), 1, anon_sym_BANG, - ACTIONS(7304), 1, + ACTIONS(7319), 1, anon_sym_QMARK, STATE(3909), 1, sym_comment, - STATE(4226), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4710), 1, - sym__call_signature, - STATE(5174), 1, + STATE(5176), 1, sym_type_annotation, - STATE(6016), 1, + STATE(6028), 1, + sym__call_signature, + STATE(6029), 1, sym__initializer, - STATE(6465), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7292), 3, + ACTIONS(7315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145744] = 15, + [145795] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7308), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7323), 1, anon_sym_BANG, - ACTIONS(7310), 1, + ACTIONS(7325), 1, anon_sym_QMARK, STATE(3910), 1, sym_comment, - STATE(4817), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(5146), 1, + STATE(4776), 1, + sym__call_signature, + STATE(5232), 1, sym_type_annotation, - STATE(5992), 1, + STATE(6077), 1, sym__initializer, - STATE(6363), 1, + STATE(6484), 1, sym_type_parameters, - STATE(6836), 1, - sym__call_signature, - ACTIONS(7306), 3, + ACTIONS(7321), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145792] = 15, + [145843] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7314), 1, + ACTIONS(7329), 1, anon_sym_BANG, - ACTIONS(7316), 1, + ACTIONS(7331), 1, anon_sym_QMARK, STATE(3911), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4980), 1, + STATE(5266), 1, sym_type_annotation, - STATE(5761), 1, + STATE(6164), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6600), 1, + STATE(6450), 1, sym__call_signature, - ACTIONS(7312), 3, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145840] = 15, + [145891] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7246), 1, + ACTIONS(7257), 1, sym_identifier, - ACTIONS(7248), 1, + ACTIONS(7259), 1, anon_sym_type, STATE(3912), 1, sym_comment, - STATE(5511), 1, + STATE(5513), 1, sym_import_require_clause, - STATE(5512), 1, + STATE(5514), 1, sym_string, - STATE(6415), 1, + STATE(6423), 1, sym__import_identifier, - STATE(6578), 1, + STATE(6582), 1, sym_import_clause, - ACTIONS(7250), 2, + ACTIONS(7261), 2, anon_sym_COMMA, anon_sym_from, - STATE(7338), 2, + STATE(7340), 2, sym_namespace_import, sym_named_imports, - [145888] = 15, + [145939] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7320), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7317), 1, anon_sym_BANG, - ACTIONS(7322), 1, + ACTIONS(7333), 1, anon_sym_QMARK, STATE(3913), 1, sym_comment, - STATE(4817), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(5236), 1, + STATE(4817), 1, + sym__call_signature, + STATE(5176), 1, sym_type_annotation, - STATE(6099), 1, + STATE(6017), 1, sym__initializer, - STATE(6363), 1, + STATE(6484), 1, sym_type_parameters, - STATE(6502), 1, - sym__call_signature, - ACTIONS(7318), 3, + ACTIONS(7315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145936] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(203), 1, - anon_sym_unique, - STATE(3914), 1, - sym_comment, - STATE(4340), 1, - sym_type_predicate, - STATE(7178), 1, - sym_predefined_type, - ACTIONS(7324), 2, - sym_identifier, - sym_this, - ACTIONS(205), 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, - [145970] = 15, + [145987] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7326), 1, + ACTIONS(7335), 1, anon_sym_BANG, - ACTIONS(7328), 1, + ACTIONS(7337), 1, anon_sym_QMARK, - STATE(3915), 1, + STATE(3914), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5326), 1, + STATE(5238), 1, sym_type_annotation, - STATE(6217), 1, + STATE(6103), 1, sym__initializer, - STATE(6343), 1, - sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7286), 3, + STATE(6505), 1, + sym__call_signature, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146018] = 15, + [146035] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(7109), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_LBRACE, + ACTIONS(7257), 1, + sym_identifier, + ACTIONS(7259), 1, + anon_sym_type, + STATE(3915), 1, + sym_comment, + STATE(5492), 1, + sym_string, + STATE(5493), 1, + sym_import_require_clause, + STATE(6423), 1, + sym__import_identifier, + STATE(6789), 1, + sym_import_clause, + ACTIONS(7261), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7340), 2, + sym_namespace_import, + sym_named_imports, + [146083] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4659), 1, + anon_sym_RBRACE, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(7330), 1, - anon_sym_BANG, - ACTIONS(7332), 1, - anon_sym_QMARK, STATE(3916), 1, sym_comment, - STATE(4817), 1, + STATE(4395), 1, sym_formal_parameters, - STATE(5239), 1, - sym_type_annotation, - STATE(6112), 1, - sym__initializer, - STATE(6363), 1, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(6834), 1, sym_type_parameters, - STATE(6493), 1, - sym__call_signature, - ACTIONS(7318), 3, + ACTIONS(4649), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [146066] = 13, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146127] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, + ACTIONS(4643), 1, anon_sym_COMMA, - ACTIONS(4639), 1, + ACTIONS(4646), 1, anon_sym_RBRACE, - ACTIONS(7252), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7254), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, STATE(3917), 1, sym_comment, - STATE(4389), 1, + STATE(4395), 1, sym_formal_parameters, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - STATE(6831), 1, + STATE(6834), 1, sym_type_parameters, - ACTIONS(4642), 5, + ACTIONS(4649), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [146110] = 15, + [146171] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7334), 1, + ACTIONS(7341), 1, anon_sym_BANG, - ACTIONS(7336), 1, + ACTIONS(7343), 1, anon_sym_QMARK, STATE(3918), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, STATE(5255), 1, sym_type_annotation, - STATE(6069), 1, + STATE(6072), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6515), 1, + STATE(6528), 1, + sym__call_signature, + ACTIONS(7339), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146219] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7345), 1, + anon_sym_BANG, + ACTIONS(7347), 1, + anon_sym_QMARK, + STATE(3919), 1, + sym_comment, + STATE(4812), 1, + sym_formal_parameters, + STATE(5286), 1, + sym_type_annotation, + STATE(6171), 1, + sym__initializer, + STATE(6366), 1, + sym_type_parameters, + STATE(6421), 1, + sym__call_signature, + ACTIONS(7327), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146267] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7349), 1, + anon_sym_BANG, + ACTIONS(7351), 1, + anon_sym_QMARK, + STATE(3920), 1, + sym_comment, + STATE(4812), 1, + sym_formal_parameters, + STATE(5241), 1, + sym_type_annotation, + STATE(6116), 1, + sym__initializer, + STATE(6366), 1, + sym_type_parameters, + STATE(6496), 1, sym__call_signature, - ACTIONS(7286), 3, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146158] = 8, + [146315] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(203), 1, + ACTIONS(207), 1, anon_sym_unique, - STATE(2834), 1, - sym_type_predicate, - STATE(3919), 1, + STATE(3921), 1, sym_comment, - STATE(6962), 1, + STATE(4056), 1, + sym_type_predicate, + STATE(7210), 1, sym_predefined_type, - ACTIONS(7338), 2, + ACTIONS(7353), 2, sym_identifier, sym_this, - ACTIONS(205), 9, + ACTIONS(209), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -334427,122 +336897,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [146192] = 15, + [146349] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7340), 1, + ACTIONS(7355), 1, anon_sym_BANG, - ACTIONS(7342), 1, + ACTIONS(7357), 1, anon_sym_QMARK, - STATE(3920), 1, + STATE(3922), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5283), 1, + STATE(5285), 1, sym_type_annotation, STATE(6170), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6418), 1, + STATE(6424), 1, sym__call_signature, - ACTIONS(7318), 3, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146240] = 15, + [146397] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7344), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7361), 1, anon_sym_BANG, - ACTIONS(7346), 1, + ACTIONS(7363), 1, anon_sym_QMARK, - STATE(3921), 1, + STATE(3923), 1, sym_comment, - STATE(4817), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(5282), 1, + STATE(4811), 1, + sym__call_signature, + STATE(5320), 1, sym_type_annotation, - STATE(6168), 1, + STATE(6195), 1, sym__initializer, - STATE(6363), 1, + STATE(6484), 1, sym_type_parameters, - STATE(6421), 1, - sym__call_signature, - ACTIONS(7318), 3, + ACTIONS(7359), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146288] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7098), 1, - anon_sym_STAR, - ACTIONS(7102), 1, - anon_sym_LBRACE, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7248), 1, - anon_sym_type, - STATE(3922), 1, - sym_comment, - STATE(5488), 1, - sym_string, - STATE(5489), 1, - sym_import_require_clause, - STATE(6415), 1, - sym__import_identifier, - STATE(6785), 1, - sym_import_clause, - ACTIONS(7250), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7338), 2, - sym_namespace_import, - sym_named_imports, - [146336] = 8, + [146445] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(203), 1, + ACTIONS(207), 1, anon_sym_unique, - STATE(3786), 1, + STATE(3846), 1, sym_type_predicate, - STATE(3923), 1, + STATE(3924), 1, sym_comment, - STATE(7035), 1, + STATE(7038), 1, sym_predefined_type, - ACTIONS(7348), 2, + ACTIONS(7365), 2, sym_identifier, sym_this, - ACTIONS(205), 9, + ACTIONS(209), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -334552,413 +336989,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [146370] = 15, + [146479] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7350), 1, + ACTIONS(7369), 1, anon_sym_BANG, - ACTIONS(7352), 1, + ACTIONS(7371), 1, anon_sym_QMARK, - STATE(3924), 1, + STATE(3925), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5200), 1, + STATE(4978), 1, sym_type_annotation, - STATE(6049), 1, + STATE(5764), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6536), 1, + STATE(6608), 1, sym__call_signature, - ACTIONS(7270), 3, + ACTIONS(7367), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146418] = 15, + [146527] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7354), 1, + ACTIONS(7373), 1, anon_sym_BANG, - ACTIONS(7356), 1, + ACTIONS(7375), 1, anon_sym_QMARK, - STATE(3925), 1, + STATE(3926), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5324), 1, + STATE(5335), 1, sym_type_annotation, - STATE(6172), 1, + STATE(6205), 1, sym__initializer, - STATE(6363), 1, - sym_type_parameters, - STATE(6412), 1, + STATE(6355), 1, sym__call_signature, - ACTIONS(7286), 3, + STATE(6366), 1, + sym_type_parameters, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146466] = 15, + [146575] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, - anon_sym_LPAREN, - ACTIONS(7358), 1, - anon_sym_BANG, - ACTIONS(7360), 1, - anon_sym_QMARK, - STATE(3926), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(7109), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_LBRACE, + ACTIONS(7257), 1, + sym_identifier, + ACTIONS(7259), 1, + anon_sym_type, + STATE(3927), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(5268), 1, - sym_type_annotation, - STATE(6163), 1, - sym__initializer, - STATE(6363), 1, - sym_type_parameters, - STATE(6442), 1, - sym__call_signature, - ACTIONS(7318), 3, - sym__automatic_semicolon, + STATE(5541), 1, + sym_import_require_clause, + STATE(5543), 1, + sym_string, + STATE(6423), 1, + sym__import_identifier, + STATE(6909), 1, + sym_import_clause, + ACTIONS(7261), 2, anon_sym_COMMA, - anon_sym_SEMI, - [146514] = 13, + anon_sym_from, + STATE(7340), 2, + sym_namespace_import, + sym_named_imports, + [146623] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, + ACTIONS(4643), 1, anon_sym_COMMA, - ACTIONS(4646), 1, + ACTIONS(4662), 1, anon_sym_RBRACE, - ACTIONS(7252), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7254), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - STATE(3927), 1, + STATE(3928), 1, sym_comment, - STATE(4389), 1, + STATE(4395), 1, sym_formal_parameters, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - STATE(6831), 1, + STATE(6834), 1, sym_type_parameters, - ACTIONS(4642), 5, + ACTIONS(4649), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [146558] = 15, + [146667] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7362), 1, + ACTIONS(7377), 1, anon_sym_BANG, - ACTIONS(7364), 1, + ACTIONS(7379), 1, anon_sym_QMARK, - STATE(3928), 1, + STATE(3929), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5263), 1, + STATE(5271), 1, sym_type_annotation, - STATE(6162), 1, + STATE(6165), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6449), 1, + STATE(6443), 1, sym__call_signature, - ACTIONS(7318), 3, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146606] = 15, + [146715] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7264), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7368), 1, - anon_sym_BANG, - ACTIONS(7370), 1, - anon_sym_QMARK, - STATE(3929), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + STATE(3930), 1, sym_comment, - STATE(4226), 1, - sym_formal_parameters, - STATE(4692), 1, - sym__call_signature, - STATE(5142), 1, - sym_type_annotation, - STATE(5975), 1, - sym__initializer, - STATE(6465), 1, - sym_type_parameters, - ACTIONS(7366), 3, - sym__automatic_semicolon, + STATE(2650), 2, + sym_template_string, + sym_arguments, + ACTIONS(5317), 10, anon_sym_COMMA, - anon_sym_SEMI, - [146654] = 15, + 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, + [146747] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7368), 1, - anon_sym_BANG, - ACTIONS(7372), 1, - anon_sym_QMARK, - STATE(3930), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(3931), 1, sym_comment, - STATE(4119), 1, + STATE(4395), 1, sym_formal_parameters, - STATE(5142), 1, - sym_type_annotation, - STATE(5978), 1, - sym__call_signature, - STATE(5979), 1, - sym__initializer, - STATE(6380), 1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + STATE(6834), 1, sym_type_parameters, - ACTIONS(7366), 3, + ACTIONS(4649), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [146702] = 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146791] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7264), 1, - anon_sym_LPAREN, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7376), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7381), 1, anon_sym_BANG, - ACTIONS(7378), 1, + ACTIONS(7383), 1, anon_sym_QMARK, - STATE(3931), 1, + STATE(3932), 1, sym_comment, - STATE(4226), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4685), 1, - sym__call_signature, - STATE(5317), 1, + STATE(5327), 1, sym_type_annotation, - STATE(6193), 1, + STATE(6173), 1, sym__initializer, - STATE(6465), 1, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7374), 3, + STATE(6407), 1, + sym__call_signature, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146750] = 15, + [146839] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7246), 1, + ACTIONS(7257), 1, sym_identifier, - ACTIONS(7248), 1, + ACTIONS(7259), 1, anon_sym_type, - STATE(3932), 1, + STATE(3933), 1, sym_comment, - STATE(5539), 1, + STATE(5446), 1, sym_import_require_clause, - STATE(5540), 1, + STATE(5448), 1, sym_string, - STATE(6415), 1, + STATE(6423), 1, sym__import_identifier, - STATE(6905), 1, + STATE(6903), 1, sym_import_clause, - ACTIONS(7250), 2, + ACTIONS(7261), 2, anon_sym_COMMA, anon_sym_from, - STATE(7338), 2, + STATE(7340), 2, sym_namespace_import, sym_named_imports, - [146798] = 13, + [146887] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4652), 1, - anon_sym_RBRACE, - ACTIONS(7252), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7267), 1, + anon_sym_BANG, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, anon_sym_LT, - STATE(3933), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7385), 1, + anon_sym_QMARK, + STATE(3934), 1, sym_comment, - STATE(4389), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - STATE(6831), 1, + STATE(5144), 1, + sym_type_annotation, + STATE(5982), 1, + sym__call_signature, + STATE(5983), 1, + sym__initializer, + STATE(6467), 1, sym_type_parameters, - ACTIONS(4642), 5, + ACTIONS(7265), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [146842] = 15, + [146935] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7387), 1, anon_sym_BANG, - ACTIONS(7382), 1, + ACTIONS(7389), 1, anon_sym_QMARK, - STATE(3934), 1, + STATE(3935), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5201), 1, + STATE(5329), 1, sym_type_annotation, - STATE(6052), 1, + STATE(6221), 1, sym__initializer, - STATE(6363), 1, - sym_type_parameters, - STATE(6589), 1, + STATE(6345), 1, sym__call_signature, - ACTIONS(7270), 3, + STATE(6366), 1, + sym_type_parameters, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146890] = 6, + [146983] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2154), 1, - anon_sym_DOT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, - anon_sym_PIPE, - STATE(3935), 1, - sym_comment, - ACTIONS(5326), 11, - sym__automatic_semicolon, + ACTIONS(7263), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [146919] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7391), 1, + anon_sym_BANG, + ACTIONS(7393), 1, + anon_sym_QMARK, STATE(3936), 1, sym_comment, - ACTIONS(5041), 13, + STATE(4812), 1, + sym_formal_parameters, + STATE(5202), 1, + sym_type_annotation, + STATE(6053), 1, + sym__initializer, + STATE(6366), 1, + sym_type_parameters, + STATE(6540), 1, + sym__call_signature, + ACTIONS(7279), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [146944] = 4, + [147031] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3937), 1, sym_comment, @@ -334976,14 +337394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [146969] = 4, + [147056] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3938), 1, sym_comment, - ACTIONS(5003), 13, + ACTIONS(5136), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334997,269 +337415,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [146994] = 4, + [147081] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4418), 1, + anon_sym_PIPE, STATE(3939), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(4988), 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, - [147019] = 4, + anon_sym_PIPE_RBRACE, + [147108] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7397), 1, + anon_sym_QMARK, STATE(3940), 1, sym_comment, - ACTIONS(5003), 13, + STATE(4142), 1, + sym_formal_parameters, + STATE(4529), 1, + sym__call_signature, + STATE(5155), 1, + sym_type_annotation, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7395), 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, - [147044] = 4, + anon_sym_PIPE_RBRACE, + [147149] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7401), 1, + anon_sym_QMARK, STATE(3941), 1, sym_comment, - ACTIONS(5129), 13, + STATE(4142), 1, + sym_formal_parameters, + STATE(4634), 1, + sym__call_signature, + STATE(5164), 1, + sym_type_annotation, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7399), 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, - [147069] = 4, + anon_sym_PIPE_RBRACE, + [147190] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2227), 1, + anon_sym_DOT, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5249), 1, + anon_sym_PIPE, STATE(3942), 1, sym_comment, - ACTIONS(5113), 13, + ACTIONS(5251), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147094] = 8, + anon_sym_PIPE_RBRACE, + [147219] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7222), 1, - anon_sym_LT, - ACTIONS(7384), 1, - anon_sym_DOT, - ACTIONS(7386), 1, - anon_sym_is, + ACTIONS(4481), 1, + anon_sym_PIPE, STATE(3943), 1, sym_comment, - STATE(4217), 1, - sym_type_arguments, - ACTIONS(4307), 9, + ACTIONS(5086), 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_AMP, - anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_extends, - [147127] = 4, + anon_sym_PIPE_RBRACE, + [147246] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4483), 1, + anon_sym_PIPE, STATE(3944), 1, sym_comment, - ACTIONS(5109), 13, + ACTIONS(5088), 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, - [147152] = 12, + anon_sym_PIPE_RBRACE, + [147273] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7390), 1, - anon_sym_QMARK, + ACTIONS(4424), 1, + anon_sym_PIPE, STATE(3945), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(5091), 1, - sym__call_signature, - STATE(5092), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7388), 5, + ACTIONS(4980), 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, - [147193] = 5, + [147300] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5115), 1, + ACTIONS(4447), 1, anon_sym_PIPE, STATE(3946), 1, sym_comment, - ACTIONS(5117), 12, + ACTIONS(5247), 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, - [147220] = 12, + [147327] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7394), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7403), 1, anon_sym_QMARK, STATE(3947), 1, sym_comment, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5160), 1, - sym_type_annotation, - STATE(5161), 1, + STATE(5154), 1, sym__call_signature, - STATE(6380), 1, + STATE(5155), 1, + sym_type_annotation, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7392), 5, + ACTIONS(7395), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147261] = 4, + [147368] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7407), 1, + anon_sym_QMARK, STATE(3948), 1, sym_comment, - ACTIONS(5269), 13, + STATE(4142), 1, + sym_formal_parameters, + STATE(5093), 1, + sym__call_signature, + STATE(5095), 1, + sym_type_annotation, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7405), 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, - [147286] = 7, + anon_sym_PIPE_RBRACE, + [147409] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(7140), 1, - anon_sym_LT, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(3949), 1, sym_comment, - STATE(4115), 1, - sym_type_arguments, - ACTIONS(4979), 10, + ACTIONS(5104), 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, - [147317] = 4, + [147434] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3950), 1, sym_comment, - ACTIONS(5241), 13, + ACTIONS(5108), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335273,37 +337706,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147342] = 6, + [147459] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2252), 1, - anon_sym_DOT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, + ACTIONS(4453), 1, anon_sym_PIPE, STATE(3951), 1, sym_comment, - ACTIONS(5326), 11, + ACTIONS(5239), 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_LT, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147371] = 4, + [147486] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3952), 1, sym_comment, - ACTIONS(5241), 13, + ACTIONS(5104), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335317,59 +337749,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147396] = 7, + [147511] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5292), 1, - anon_sym_PIPE, - ACTIONS(7396), 1, - anon_sym_DOT, - ACTIONS(7398), 1, - anon_sym_QMARK_DOT, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7411), 1, + anon_sym_QMARK, STATE(3953), 1, sym_comment, - ACTIONS(5294), 10, + STATE(4142), 1, + sym_formal_parameters, + STATE(4600), 1, + sym__call_signature, + STATE(5214), 1, + sym_type_annotation, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7409), 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, - [147427] = 4, + [147552] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7217), 1, + anon_sym_LT, + ACTIONS(7413), 1, + anon_sym_DOT, + ACTIONS(7415), 1, + anon_sym_is, STATE(3954), 1, sym_comment, - ACTIONS(5241), 13, + STATE(4215), 1, + sym_type_arguments, + ACTIONS(4339), 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, - [147452] = 4, + [147585] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3955), 1, sym_comment, - ACTIONS(5083), 13, + ACTIONS(5108), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335383,16 +337824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147477] = 5, + [147610] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4463), 1, + ACTIONS(4451), 1, anon_sym_PIPE, STATE(3956), 1, sym_comment, - ACTIONS(5155), 12, + ACTIONS(5241), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -335405,85 +337846,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147504] = 4, + [147637] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7103), 1, + anon_sym_DOT, + ACTIONS(7417), 1, + anon_sym_EQ, + ACTIONS(7422), 1, + anon_sym_COLON, + ACTIONS(7424), 1, + anon_sym_extends, + STATE(3806), 1, + sym_type_arguments, STATE(3957), 1, sym_comment, - ACTIONS(5083), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(5526), 1, + sym_constraint, + STATE(6702), 1, + sym_default_type, + ACTIONS(7419), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_GT, + ACTIONS(4339), 3, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [147529] = 4, + [147680] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4451), 1, + anon_sym_PIPE, STATE(3958), 1, sym_comment, - ACTIONS(5083), 13, + ACTIONS(5241), 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, - [147554] = 12, + anon_sym_PIPE_RBRACE, + [147707] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7402), 1, - anon_sym_QMARK, + ACTIONS(4449), 1, + anon_sym_PIPE, STATE(3959), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(4456), 1, - sym__call_signature, - STATE(5154), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7400), 5, + ACTIONS(5014), 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, - [147595] = 4, + [147734] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3960), 1, sym_comment, - ACTIONS(5229), 13, + ACTIONS(5112), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335497,35 +337941,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147620] = 4, + [147759] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4449), 1, + anon_sym_PIPE, STATE(3961), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5014), 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, - [147645] = 4, + anon_sym_PIPE_RBRACE, + [147786] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3962), 1, sym_comment, - ACTIONS(5027), 13, + ACTIONS(5116), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335539,16 +337984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147670] = 5, + [147811] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5135), 1, + ACTIONS(5303), 1, anon_sym_PIPE, STATE(3963), 1, sym_comment, - ACTIONS(5137), 12, + ACTIONS(5305), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -335561,35 +338006,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147697] = 4, + [147838] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5311), 1, + anon_sym_PIPE, STATE(3964), 1, sym_comment, - ACTIONS(5027), 13, + ACTIONS(5313), 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, - [147722] = 4, + anon_sym_PIPE_RBRACE, + [147865] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3965), 1, sym_comment, - ACTIONS(5229), 13, + ACTIONS(5112), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335603,107 +338049,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147747] = 4, + [147890] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4461), 1, + anon_sym_PIPE, STATE(3966), 1, sym_comment, - ACTIONS(5007), 13, + ACTIONS(5405), 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, - [147772] = 4, + anon_sym_PIPE_RBRACE, + [147917] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2231), 1, + anon_sym_DOT, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5249), 1, + anon_sym_PIPE, STATE(3967), 1, sym_comment, - ACTIONS(5027), 13, + ACTIONS(5251), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147797] = 5, + anon_sym_PIPE_RBRACE, + [147946] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5123), 1, + ACTIONS(4459), 1, anon_sym_PIPE, STATE(3968), 1, sym_comment, - ACTIONS(5125), 12, + ACTIONS(5407), 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, - [147824] = 12, + [147973] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7406), 1, - anon_sym_QMARK, + ACTIONS(5331), 1, + anon_sym_PIPE, + ACTIONS(7427), 1, + anon_sym_DOT, + ACTIONS(7429), 1, + anon_sym_QMARK_DOT, STATE(3969), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(5210), 1, - sym__call_signature, - STATE(5212), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7404), 5, + ACTIONS(5333), 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, - [147865] = 4, + [148004] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3970), 1, sym_comment, - ACTIONS(5007), 13, + ACTIONS(5245), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335717,86 +338161,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147890] = 4, + [148029] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4457), 1, + anon_sym_PIPE, STATE(3971), 1, sym_comment, - ACTIONS(5233), 13, + ACTIONS(5409), 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, - [147915] = 13, + anon_sym_PIPE_RBRACE, + [148056] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7082), 1, + ACTIONS(4974), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_LT, - ACTIONS(7092), 1, - anon_sym_DOT, - ACTIONS(7408), 1, - anon_sym_EQ, - ACTIONS(7413), 1, - anon_sym_COLON, - ACTIONS(7415), 1, - anon_sym_extends, - STATE(3867), 1, - sym_type_arguments, STATE(3972), 1, sym_comment, - STATE(5523), 1, - sym_constraint, - STATE(6698), 1, - sym_default_type, - ACTIONS(7410), 2, + STATE(4077), 1, + sym_type_arguments, + ACTIONS(4976), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(4307), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - [147958] = 4, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148087] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7431), 1, + anon_sym_COLON, + ACTIONS(7433), 1, + anon_sym_QMARK, STATE(3973), 1, sym_comment, - ACTIONS(5165), 13, + STATE(4142), 1, + sym_formal_parameters, + STATE(4449), 1, + sym__call_signature, + STATE(5095), 1, + sym_type_annotation, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7405), 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, - [147983] = 4, + anon_sym_PIPE_RBRACE, + [148128] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3974), 1, sym_comment, - ACTIONS(5165), 13, + ACTIONS(5225), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335810,14 +338257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148008] = 4, + [148153] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3975), 1, sym_comment, - ACTIONS(5161), 13, + ACTIONS(5018), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335831,14 +338278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148033] = 4, + [148178] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3976), 1, sym_comment, - ACTIONS(5161), 13, + ACTIONS(5018), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335852,66 +338299,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148058] = 12, + [148203] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7418), 1, - anon_sym_COLON, - ACTIONS(7420), 1, - anon_sym_QMARK, STATE(3977), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(4415), 1, - sym__call_signature, - STATE(5092), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7388), 5, + ACTIONS(5018), 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, - [148099] = 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148228] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4426), 1, + anon_sym_PIPE, STATE(3978), 1, sym_comment, - ACTIONS(5041), 13, + ACTIONS(4986), 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, - [148124] = 5, + anon_sym_PIPE_RBRACE, + [148255] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4456), 1, + ACTIONS(5319), 1, anon_sym_PIPE, STATE(3979), 1, sym_comment, - ACTIONS(4989), 12, + ACTIONS(5321), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -335924,138 +338364,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148151] = 5, + [148282] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, - anon_sym_PIPE, STATE(3980), 1, sym_comment, - ACTIONS(5290), 12, + ACTIONS(5022), 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, - [148178] = 12, + [148307] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7422), 1, - anon_sym_QMARK, STATE(3981), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(5152), 1, - sym__call_signature, - STATE(5154), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7400), 5, + ACTIONS(5116), 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, - [148219] = 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148332] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4450), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5315), 1, anon_sym_PIPE, STATE(3982), 1, sym_comment, - ACTIONS(4985), 12, + STATE(2650), 2, + sym_template_string, + sym_arguments, + ACTIONS(5317), 8, 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, - [148246] = 12, + [148365] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7426), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7437), 1, anon_sym_QMARK, STATE(3983), 1, sym_comment, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5298), 1, + STATE(4649), 1, sym__call_signature, - STATE(5299), 1, + STATE(5303), 1, sym_type_annotation, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7424), 5, + ACTIONS(7435), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148287] = 5, + [148406] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4454), 1, - anon_sym_PIPE, STATE(3984), 1, sym_comment, - ACTIONS(4967), 12, + ACTIONS(5022), 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, - [148314] = 4, + [148431] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3985), 1, sym_comment, - ACTIONS(5161), 13, + ACTIONS(5048), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336069,58 +338502,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148339] = 5, + [148456] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4482), 1, - anon_sym_PIPE, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7439), 1, + anon_sym_QMARK, STATE(3986), 1, sym_comment, - ACTIONS(5356), 12, + STATE(4142), 1, + sym_formal_parameters, + STATE(5213), 1, + sym__call_signature, + STATE(5214), 1, + sym_type_annotation, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7409), 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, - [148366] = 5, + [148497] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4484), 1, - anon_sym_PIPE, STATE(3987), 1, sym_comment, - ACTIONS(5345), 12, + ACTIONS(5036), 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, - [148393] = 4, + [148522] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3988), 1, sym_comment, - ACTIONS(5015), 13, + ACTIONS(5040), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336134,36 +338573,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148418] = 5, + [148547] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4484), 1, - anon_sym_PIPE, STATE(3989), 1, sym_comment, - ACTIONS(5345), 12, + ACTIONS(5286), 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, - [148445] = 4, + [148572] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(3990), 1, sym_comment, - ACTIONS(5015), 13, + ACTIONS(5022), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336177,87 +338615,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148470] = 5, + [148597] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4486), 1, - anon_sym_PIPE, STATE(3991), 1, sym_comment, - ACTIONS(5278), 12, + ACTIONS(5128), 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, - [148497] = 5, + [148622] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4486), 1, - anon_sym_PIPE, STATE(3992), 1, sym_comment, - ACTIONS(5278), 12, + ACTIONS(5048), 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, - [148524] = 12, + [148647] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + STATE(3993), 1, + sym_comment, + ACTIONS(5036), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7256), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(7266), 1, + anon_sym_extends, + [148672] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7428), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7441), 1, anon_sym_QMARK, - STATE(3993), 1, + STATE(3994), 1, sym_comment, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4465), 1, - sym__call_signature, - STATE(5160), 1, + STATE(5164), 1, sym_type_annotation, - STATE(6380), 1, + STATE(5168), 1, + sym__call_signature, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7392), 5, + ACTIONS(7399), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148565] = 4, + [148713] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(3994), 1, + STATE(3995), 1, sym_comment, - ACTIONS(5015), 13, + ACTIONS(5124), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336271,160 +338728,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148590] = 5, + [148738] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4467), 1, - anon_sym_PIPE, - STATE(3995), 1, + STATE(3996), 1, sym_comment, - ACTIONS(5280), 12, + ACTIONS(5048), 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_extends, - anon_sym_PIPE_RBRACE, - [148617] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7430), 1, - anon_sym_QMARK, - STATE(3996), 1, - sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(4568), 1, - sym__call_signature, - STATE(5299), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7424), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148658] = 5, + anon_sym_extends, + [148763] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4492), 1, - anon_sym_PIPE, STATE(3997), 1, sym_comment, - ACTIONS(5320), 12, + ACTIONS(5286), 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, - [148685] = 5, + [148788] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4465), 1, - anon_sym_PIPE, STATE(3998), 1, sym_comment, - ACTIONS(5265), 12, + ACTIONS(5140), 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, - [148712] = 5, + [148813] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4490), 1, - anon_sym_PIPE, STATE(3999), 1, sym_comment, - ACTIONS(5316), 12, + ACTIONS(5128), 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, - [148739] = 12, + [148838] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7432), 1, - anon_sym_QMARK, STATE(4000), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(4480), 1, - sym__call_signature, - STATE(5212), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7404), 5, + ACTIONS(5124), 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, - [148780] = 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148863] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4001), 1, sym_comment, - ACTIONS(5165), 13, + ACTIONS(5036), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336438,134 +338854,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148805] = 8, + [148888] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5131), 1, - anon_sym_PIPE, STATE(4002), 1, sym_comment, - STATE(2647), 2, - sym_template_string, - sym_arguments, - ACTIONS(5133), 8, + ACTIONS(5286), 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_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148838] = 13, + [148913] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, anon_sym_LPAREN, + ACTIONS(7443), 1, + anon_sym_QMARK, STATE(4003), 1, sym_comment, - STATE(4817), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4993), 1, + STATE(5302), 1, + sym__call_signature, + STATE(5303), 1, sym_type_annotation, - STATE(5775), 1, - sym__initializer, - STATE(6363), 1, + STATE(6467), 1, sym_type_parameters, - STATE(6630), 1, - sym__call_signature, - ACTIONS(7434), 3, + ACTIONS(7435), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148880] = 13, + anon_sym_PIPE_RBRACE, + [148954] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(4004), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(5196), 1, - sym_type_annotation, - STATE(6047), 1, - sym__initializer, - STATE(6363), 1, - sym_type_parameters, - STATE(6715), 1, - sym__call_signature, - ACTIONS(7436), 3, + ACTIONS(5245), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [148922] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4005), 1, - sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(4484), 1, - sym__call_signature, - STATE(5214), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7438), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148960] = 9, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148979] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, + ACTIONS(4643), 1, anon_sym_COMMA, - ACTIONS(4639), 1, + ACTIONS(4659), 1, anon_sym_RBRACE, - ACTIONS(7252), 1, + ACTIONS(7295), 1, anon_sym_EQ, - STATE(4006), 1, + STATE(4005), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5732), 1, aux_sym_object_repeat1, - ACTIONS(4642), 7, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4649), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -336573,338 +338950,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [148994] = 10, + [149013] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(7109), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_LBRACE, + ACTIONS(7257), 1, + sym_identifier, + ACTIONS(7259), 1, + anon_sym_type, + STATE(4006), 1, + sym_comment, + STATE(5446), 1, + sym_import_require_clause, + STATE(5448), 1, + sym_string, + STATE(6423), 1, + sym__import_identifier, + STATE(6903), 1, + sym_import_clause, + STATE(7340), 2, + sym_namespace_import, + sym_named_imports, + [149057] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7254), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, anon_sym_LT, STATE(4007), 1, sym_comment, - STATE(4389), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(6831), 1, + STATE(4840), 1, + sym__call_signature, + STATE(5319), 1, + sym_type_annotation, + STATE(6187), 1, + sym__initializer, + STATE(6484), 1, sym_type_parameters, - ACTIONS(4909), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4642), 5, + ACTIONS(7445), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [149030] = 5, + [149099] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_PIPE, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(4008), 1, sym_comment, - ACTIONS(4975), 11, + STATE(4812), 1, + sym_formal_parameters, + STATE(5226), 1, + sym_type_annotation, + STATE(6041), 1, + sym__initializer, + STATE(6366), 1, + sym_type_parameters, + STATE(6624), 1, + sym__call_signature, + ACTIONS(7447), 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, - [149056] = 13, + [149141] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, STATE(4009), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5325), 1, + STATE(4914), 1, sym_type_annotation, - STATE(6195), 1, + STATE(5778), 1, sym__initializer, - STATE(6360), 1, - sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7440), 3, + STATE(6635), 1, + sym__call_signature, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149098] = 11, + [149183] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(4010), 1, sym_comment, - STATE(4119), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5163), 1, + STATE(5307), 1, sym_type_annotation, - STATE(6380), 1, + STATE(6030), 1, + sym__initializer, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7442), 5, + STATE(6476), 1, + sym__call_signature, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149136] = 6, + [149225] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_PIPE, - ACTIONS(7172), 1, - anon_sym_is, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(4011), 1, sym_comment, - ACTIONS(4971), 10, + STATE(4812), 1, + sym_formal_parameters, + STATE(5323), 1, + sym_type_annotation, + STATE(6201), 1, + sym__initializer, + STATE(6302), 1, + sym__call_signature, + STATE(6366), 1, + sym_type_parameters, + ACTIONS(7447), 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, - [149164] = 13, + [149267] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7264), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4012), 1, sym_comment, - STATE(4226), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4727), 1, + STATE(4530), 1, sym__call_signature, - STATE(5176), 1, + STATE(5159), 1, sym_type_annotation, - STATE(6019), 1, - sym__initializer, - STATE(6465), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7444), 3, + ACTIONS(7451), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149206] = 11, + anon_sym_PIPE_RBRACE, + [149305] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, STATE(4013), 1, sym_comment, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4567), 1, - sym__call_signature, - STATE(5296), 1, + STATE(5171), 1, sym_type_annotation, - STATE(6380), 1, + STATE(5190), 1, + sym__call_signature, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7446), 5, + ACTIONS(7453), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149244] = 13, + [149343] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, STATE(4014), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4970), 1, + STATE(5127), 1, sym_type_annotation, - STATE(5756), 1, + STATE(5988), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6566), 1, + STATE(6739), 1, sym__call_signature, - ACTIONS(7434), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149286] = 13, + [149385] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(7109), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_LBRACE, + ACTIONS(7257), 1, + sym_identifier, + ACTIONS(7259), 1, + anon_sym_type, + STATE(4015), 1, + sym_comment, + STATE(5541), 1, + sym_import_require_clause, + STATE(5543), 1, + sym_string, + STATE(6423), 1, + sym__import_identifier, + STATE(6909), 1, + sym_import_clause, + STATE(7340), 2, + sym_namespace_import, + sym_named_imports, + [149429] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4015), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4016), 1, sym_comment, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5229), 1, - sym_type_annotation, - STATE(6097), 1, + STATE(5158), 1, sym__call_signature, - STATE(6098), 1, - sym__initializer, - STATE(6380), 1, + STATE(5159), 1, + sym_type_annotation, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7448), 3, + ACTIONS(7451), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149328] = 6, + anon_sym_PIPE_RBRACE, + [149467] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, - anon_sym_PIPE, - ACTIONS(7172), 1, - anon_sym_is, - STATE(4016), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4017), 1, sym_comment, - ACTIONS(4965), 10, + STATE(4142), 1, + sym_formal_parameters, + STATE(4637), 1, + sym__call_signature, + STATE(5171), 1, + sym_type_annotation, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7453), 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, - [149356] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [149505] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7098), 1, - anon_sym_STAR, - ACTIONS(7102), 1, - anon_sym_LBRACE, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7248), 1, - anon_sym_type, - STATE(4017), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4018), 1, sym_comment, - STATE(5511), 1, - sym_import_require_clause, - STATE(5512), 1, - sym_string, - STATE(6415), 1, - sym__import_identifier, - STATE(6578), 1, - sym_import_clause, - STATE(7338), 2, - sym_namespace_import, - sym_named_imports, - [149400] = 13, + STATE(4812), 1, + sym_formal_parameters, + STATE(5330), 1, + sym_type_annotation, + STATE(6186), 1, + sym__initializer, + STATE(6359), 1, + sym__call_signature, + STATE(6366), 1, + sym_type_parameters, + ACTIONS(7447), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149547] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4018), 1, + STATE(4019), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5109), 1, + STATE(5280), 1, sym_type_annotation, - STATE(5974), 1, + STATE(6168), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6736), 1, + STATE(6428), 1, sym__call_signature, - ACTIONS(7434), 3, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149442] = 6, + [149589] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, + ACTIONS(5004), 1, anon_sym_PIPE, - ACTIONS(7450), 1, + ACTIONS(7253), 1, anon_sym_is, - STATE(4019), 1, + STATE(4020), 1, sym_comment, - ACTIONS(4979), 10, + ACTIONS(5006), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336915,380 +339372,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [149470] = 9, + [149617] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4649), 1, - anon_sym_RBRACE, - ACTIONS(7252), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7295), 1, anon_sym_EQ, - STATE(4020), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4021), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(4642), 7, + STATE(4395), 1, + sym_formal_parameters, + STATE(6834), 1, + sym_type_parameters, + ACTIONS(4918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4649), 5, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [149504] = 11, + [149653] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4021), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4022), 1, sym_comment, - STATE(4119), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4586), 1, - sym__call_signature, - STATE(5163), 1, + STATE(5114), 1, sym_type_annotation, - STATE(6380), 1, + STATE(5977), 1, + sym__initializer, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7442), 5, + STATE(6748), 1, + sym__call_signature, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149542] = 11, + [149695] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4022), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4023), 1, sym_comment, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4868), 1, - sym_type_annotation, - STATE(4869), 1, + STATE(5215), 1, sym__call_signature, - STATE(6380), 1, + STATE(5216), 1, + sym_type_annotation, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7452), 5, + ACTIONS(7459), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149580] = 9, + [149733] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4646), 1, - anon_sym_RBRACE, - ACTIONS(7252), 1, - anon_sym_EQ, - STATE(4023), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(4642), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [149614] = 14, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7098), 1, - anon_sym_STAR, - ACTIONS(7102), 1, - anon_sym_LBRACE, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7248), 1, - anon_sym_type, + ACTIONS(4982), 1, + anon_sym_PIPE, STATE(4024), 1, sym_comment, - STATE(5444), 1, - sym_import_require_clause, - STATE(5445), 1, - sym_string, - STATE(6415), 1, - sym__import_identifier, - STATE(6900), 1, - sym_import_clause, - STATE(7338), 2, - sym_namespace_import, - sym_named_imports, - [149658] = 13, + ACTIONS(4984), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [149759] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, STATE(4025), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5223), 1, + STATE(5244), 1, sym_type_annotation, - STATE(6038), 1, + STATE(6124), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6622), 1, + STATE(6489), 1, sym__call_signature, - ACTIONS(7440), 3, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149700] = 13, + [149801] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4646), 1, + anon_sym_RBRACE, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(4026), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(5233), 1, - sym_type_annotation, - STATE(6063), 1, - sym__initializer, - STATE(6363), 1, - sym_type_parameters, - STATE(6540), 1, - sym__call_signature, - ACTIONS(7440), 3, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 7, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [149742] = 11, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149835] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(4974), 1, + anon_sym_PIPE, + ACTIONS(7461), 1, + anon_sym_is, STATE(4027), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(4457), 1, - sym__call_signature, - STATE(5157), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7454), 5, + ACTIONS(4976), 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, - [149780] = 11, + [149863] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4656), 1, + anon_sym_RBRACE, + ACTIONS(7295), 1, + anon_sym_EQ, STATE(4028), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(5295), 1, - sym__call_signature, - STATE(5296), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7446), 5, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [149818] = 13, + [149897] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, anon_sym_LPAREN, STATE(4029), 1, sym_comment, - STATE(4817), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5289), 1, + STATE(5299), 1, + sym__call_signature, + STATE(5301), 1, sym_type_annotation, - STATE(6177), 1, - sym__initializer, - STATE(6363), 1, + STATE(6467), 1, sym_type_parameters, - STATE(6407), 1, - sym__call_signature, - ACTIONS(7456), 3, + ACTIONS(7463), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149860] = 13, + anon_sym_PIPE_RBRACE, + [149935] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, anon_sym_LPAREN, STATE(4030), 1, sym_comment, - STATE(4817), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5277), 1, + STATE(4869), 1, sym_type_annotation, - STATE(6166), 1, - sym__initializer, - STATE(6363), 1, - sym_type_parameters, - STATE(6425), 1, + STATE(4870), 1, sym__call_signature, - ACTIONS(7456), 3, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7465), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149902] = 11, + anon_sym_PIPE_RBRACE, + [149973] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, STATE(4031), 1, sym_comment, - STATE(4119), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(5213), 1, + STATE(4746), 1, sym__call_signature, - STATE(5214), 1, + STATE(5133), 1, sym_type_annotation, - STATE(6380), 1, + STATE(5987), 1, + sym__initializer, + STATE(6484), 1, sym_type_parameters, - ACTIONS(7438), 5, + ACTIONS(7467), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149940] = 13, + [150015] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, STATE(4032), 1, sym_comment, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5176), 1, - sym_type_annotation, - STATE(6024), 1, + STATE(4601), 1, sym__call_signature, - STATE(6025), 1, - sym__initializer, - STATE(6380), 1, + STATE(5216), 1, + sym_type_annotation, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7444), 3, + ACTIONS(7459), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149982] = 7, + anon_sym_PIPE_RBRACE, + [150053] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7222), 1, + ACTIONS(7217), 1, anon_sym_LT, - ACTIONS(7384), 1, + ACTIONS(7413), 1, anon_sym_DOT, STATE(4033), 1, sym_comment, - STATE(4217), 1, + STATE(4215), 1, sym_type_arguments, - ACTIONS(4307), 9, + ACTIONS(4339), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337298,256 +339709,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [150012] = 13, + [150083] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7264), 1, - anon_sym_LPAREN, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(4034), 1, sym_comment, - STATE(4226), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4716), 1, - sym__call_signature, - STATE(5144), 1, + STATE(5199), 1, sym_type_annotation, - STATE(5988), 1, + STATE(6050), 1, sym__initializer, - STATE(6465), 1, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7458), 3, + STATE(6717), 1, + sym__call_signature, + ACTIONS(7469), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150054] = 13, + [150125] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, STATE(4035), 1, sym_comment, - STATE(4817), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(5306), 1, + STATE(4729), 1, + sym__call_signature, + STATE(5145), 1, sym_type_annotation, - STATE(6145), 1, + STATE(5992), 1, sym__initializer, - STATE(6363), 1, + STATE(6484), 1, sym_type_parameters, - STATE(6473), 1, - sym__call_signature, - ACTIONS(7440), 3, + ACTIONS(7471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150096] = 11, + [150167] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2092), 1, + anon_sym_PIPE, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4036), 1, sym_comment, - STATE(4119), 1, - sym_formal_parameters, - STATE(4595), 1, - sym__call_signature, - STATE(4868), 1, - sym_type_annotation, - STATE(6380), 1, - sym_type_parameters, - ACTIONS(7452), 5, + ACTIONS(2094), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [150134] = 13, + [150193] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, STATE(4037), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5238), 1, + STATE(4876), 1, sym_type_annotation, - STATE(6106), 1, + STATE(5677), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6497), 1, + STATE(6463), 1, sym__call_signature, - ACTIONS(7456), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150176] = 13, + [150235] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, STATE(4038), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5332), 1, + STATE(5235), 1, sym_type_annotation, - STATE(6229), 1, + STATE(6065), 1, sym__initializer, - STATE(6334), 1, + STATE(6366), 1, + sym_type_parameters, + STATE(6544), 1, sym__call_signature, - STATE(6363), 1, + ACTIONS(7447), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150277] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4039), 1, + sym_comment, + STATE(4142), 1, + sym_formal_parameters, + STATE(4653), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_annotation, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7440), 3, + ACTIONS(7463), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150218] = 14, + anon_sym_PIPE_RBRACE, + [150315] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(7098), 1, + ACTIONS(7109), 1, anon_sym_STAR, - ACTIONS(7102), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - ACTIONS(7246), 1, + ACTIONS(7257), 1, sym_identifier, - ACTIONS(7248), 1, + ACTIONS(7259), 1, anon_sym_type, - STATE(4039), 1, + STATE(4040), 1, sym_comment, - STATE(5488), 1, - sym_string, - STATE(5489), 1, + STATE(5513), 1, sym_import_require_clause, - STATE(6415), 1, + STATE(5514), 1, + sym_string, + STATE(6423), 1, sym__import_identifier, - STATE(6785), 1, + STATE(6582), 1, sym_import_clause, - STATE(7338), 2, + STATE(7340), 2, sym_namespace_import, sym_named_imports, - [150262] = 13, + [150359] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, anon_sym_LPAREN, - STATE(4040), 1, + STATE(4041), 1, sym_comment, - STATE(4817), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5242), 1, + STATE(5178), 1, sym_type_annotation, - STATE(6120), 1, + STATE(6025), 1, + sym__call_signature, + STATE(6026), 1, sym__initializer, - STATE(6363), 1, + STATE(6467), 1, sym_type_parameters, - STATE(6486), 1, - sym__call_signature, - ACTIONS(7456), 3, + ACTIONS(7473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150304] = 14, - ACTIONS(3), 1, + [150401] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7103), 1, + anon_sym_DOT, + ACTIONS(7475), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_type_arguments, + STATE(4042), 1, + sym_comment, + STATE(6864), 1, + sym_type_annotation, + ACTIONS(4339), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150437] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7098), 1, - anon_sym_STAR, - ACTIONS(7102), 1, - anon_sym_LBRACE, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7248), 1, - anon_sym_type, - STATE(4041), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4043), 1, sym_comment, - STATE(5547), 1, - sym_import_require_clause, - STATE(5548), 1, - sym_string, - STATE(6415), 1, - sym__import_identifier, - STATE(6565), 1, - sym_import_clause, - STATE(7338), 2, - sym_namespace_import, - sym_named_imports, - [150348] = 9, + STATE(4142), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_annotation, + STATE(6101), 1, + sym__call_signature, + STATE(6102), 1, + sym__initializer, + STATE(6467), 1, + sym_type_parameters, + ACTIONS(7478), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150479] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, + ACTIONS(4643), 1, anon_sym_COMMA, - ACTIONS(4652), 1, + ACTIONS(4662), 1, anon_sym_RBRACE, - ACTIONS(7252), 1, + ACTIONS(7295), 1, anon_sym_EQ, - STATE(4042), 1, + STATE(4044), 1, sym_comment, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - STATE(5844), 1, + STATE(5840), 1, aux_sym_object_repeat1, - ACTIONS(4642), 7, + ACTIONS(4649), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -337555,340 +340012,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [150382] = 13, + [150513] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7264), 1, - anon_sym_LPAREN, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4043), 1, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(7253), 1, + anon_sym_is, + STATE(4045), 1, sym_comment, - STATE(4226), 1, - sym_formal_parameters, - STATE(4712), 1, - sym__call_signature, - STATE(5127), 1, - sym_type_annotation, - STATE(5985), 1, - sym__initializer, - STATE(6465), 1, - sym_type_parameters, - ACTIONS(7460), 3, + ACTIONS(5002), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150424] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150541] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4044), 1, + STATE(4046), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5352), 1, + STATE(5294), 1, sym_type_annotation, - STATE(6199), 1, + STATE(6175), 1, sym__initializer, - STATE(6354), 1, - sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7440), 3, + STATE(6410), 1, + sym__call_signature, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150466] = 13, + [150583] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4045), 1, + STATE(4047), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4878), 1, + STATE(5240), 1, sym_type_annotation, - STATE(5674), 1, + STATE(6110), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6450), 1, + STATE(6500), 1, sym__call_signature, - ACTIONS(7434), 3, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150508] = 10, + [150625] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7269), 1, + anon_sym_LPAREN, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7082), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7092), 1, - anon_sym_DOT, - ACTIONS(7462), 1, - anon_sym_QMARK, - STATE(3867), 1, - sym_type_arguments, - STATE(4046), 1, + STATE(4048), 1, sym_comment, - STATE(6861), 1, + STATE(4285), 1, + sym_formal_parameters, + STATE(4820), 1, + sym__call_signature, + STATE(5178), 1, sym_type_annotation, - ACTIONS(4307), 6, + STATE(6019), 1, + sym__initializer, + STATE(6484), 1, + sym_type_parameters, + ACTIONS(7473), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [150544] = 13, + anon_sym_SEMI, + [150667] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7274), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4047), 1, + STATE(4049), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5126), 1, + STATE(4974), 1, sym_type_annotation, - STATE(5987), 1, + STATE(5759), 1, sym__initializer, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6723), 1, + STATE(6575), 1, sym__call_signature, - ACTIONS(7465), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150586] = 9, + [150709] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4655), 1, - anon_sym_RBRACE, - ACTIONS(7252), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4048), 1, - sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4642), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7271), 1, anon_sym_COLON, + ACTIONS(7273), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [150620] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7098), 1, - anon_sym_STAR, - ACTIONS(7102), 1, - anon_sym_LBRACE, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7248), 1, - anon_sym_type, - STATE(4049), 1, - sym_comment, - STATE(5539), 1, - sym_import_require_clause, - STATE(5540), 1, - sym_string, - STATE(6415), 1, - sym__import_identifier, - STATE(6905), 1, - sym_import_clause, - STATE(7338), 2, - sym_namespace_import, - sym_named_imports, - [150664] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4050), 1, sym_comment, - STATE(4119), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5156), 1, - sym__call_signature, - STATE(5157), 1, + STATE(5337), 1, sym_type_annotation, - STATE(6380), 1, + STATE(6228), 1, + sym__initializer, + STATE(6335), 1, + sym__call_signature, + STATE(6366), 1, sym_type_parameters, - ACTIONS(7454), 5, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150702] = 13, + [150751] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, + ACTIONS(7273), 1, + anon_sym_LT, STATE(4051), 1, sym_comment, - STATE(4226), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(4729), 1, + STATE(4765), 1, sym__call_signature, - STATE(5316), 1, + STATE(5231), 1, sym_type_annotation, - STATE(6186), 1, + STATE(6071), 1, sym__initializer, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - ACTIONS(7467), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150744] = 5, + [150793] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_PIPE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(7295), 1, + anon_sym_EQ, STATE(4052), 1, sym_comment, - ACTIONS(2063), 11, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [150770] = 13, + [150827] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7264), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4053), 1, sym_comment, - STATE(4226), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4705), 1, + STATE(4623), 1, sym__call_signature, - STATE(5229), 1, + STATE(4869), 1, sym_type_annotation, - STATE(6068), 1, - sym__initializer, - STATE(6465), 1, + STATE(6467), 1, sym_type_parameters, - ACTIONS(7448), 3, + ACTIONS(7465), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150812] = 6, + anon_sym_PIPE_RBRACE, + [150865] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5065), 1, - anon_sym_PIPE, - ACTIONS(7469), 1, - anon_sym_LBRACK, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(7109), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_LBRACE, + ACTIONS(7257), 1, + sym_identifier, + ACTIONS(7259), 1, + anon_sym_type, STATE(4054), 1, sym_comment, - ACTIONS(5067), 9, - sym__automatic_semicolon, - anon_sym_EQ, + STATE(5492), 1, + sym_string, + STATE(5493), 1, + sym_import_require_clause, + STATE(6423), 1, + sym__import_identifier, + STATE(6789), 1, + sym_import_clause, + STATE(7340), 2, + sym_namespace_import, + sym_named_imports, + [150909] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(7109), 1, + anon_sym_STAR, + ACTIONS(7113), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [150839] = 5, + ACTIONS(7257), 1, + sym_identifier, + ACTIONS(7259), 1, + anon_sym_type, + STATE(4055), 1, + sym_comment, + STATE(5549), 1, + sym_import_require_clause, + STATE(5550), 1, + sym_string, + STATE(6423), 1, + sym__import_identifier, + STATE(6573), 1, + sym_import_clause, + STATE(7340), 2, + sym_namespace_import, + sym_named_imports, + [150953] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5143), 1, + ACTIONS(5000), 1, anon_sym_PIPE, - STATE(4055), 1, + STATE(4056), 1, sym_comment, - ACTIONS(5145), 10, + ACTIONS(5002), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337899,55 +340340,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150864] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4056), 1, - sym_comment, - ACTIONS(6383), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [150887] = 5, + [150978] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3227), 1, + ACTIONS(5393), 1, anon_sym_PIPE, + ACTIONS(7480), 1, + anon_sym_LBRACK, STATE(4057), 1, sym_comment, - ACTIONS(3669), 10, + ACTIONS(5395), 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, - [150912] = 5, + [151005] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5009), 1, + ACTIONS(5231), 1, anon_sym_PIPE, + ACTIONS(7482), 1, + anon_sym_AMP, STATE(4058), 1, sym_comment, - ACTIONS(5011), 10, + ACTIONS(5233), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337955,23 +340380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150937] = 7, + [151032] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7473), 1, + ACTIONS(3408), 1, anon_sym_PIPE, - ACTIONS(7475), 1, - anon_sym_extends, STATE(4059), 1, sym_comment, - ACTIONS(5263), 8, + ACTIONS(3546), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337979,21 +340399,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, - [150966] = 7, + [151057] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7473), 1, + ACTIONS(5082), 1, anon_sym_PIPE, - ACTIONS(7475), 1, - anon_sym_extends, STATE(4060), 1, sym_comment, - ACTIONS(5259), 8, + ACTIONS(5084), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338001,17 +340419,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, - [150995] = 5, + [151082] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5247), 1, + ACTIONS(5098), 1, anon_sym_PIPE, STATE(4061), 1, sym_comment, - ACTIONS(5249), 10, + ACTIONS(5100), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338022,35 +340442,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151020] = 4, + [151107] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5207), 1, + anon_sym_PIPE, STATE(4062), 1, sym_comment, - ACTIONS(4989), 11, + ACTIONS(5205), 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, - [151043] = 5, + anon_sym_PIPE_RBRACE, + [151132] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3241), 1, + ACTIONS(5094), 1, anon_sym_PIPE, STATE(4063), 1, sym_comment, - ACTIONS(3599), 10, + ACTIONS(5096), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338061,16 +340482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151068] = 5, + [151157] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, + ACTIONS(5235), 1, anon_sym_PIPE, STATE(4064), 1, sym_comment, - ACTIONS(4965), 10, + ACTIONS(5237), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338081,20 +340502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151093] = 7, + [151182] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7473), 1, + ACTIONS(5397), 1, anon_sym_PIPE, - ACTIONS(7475), 1, - anon_sym_extends, STATE(4065), 1, sym_comment, - ACTIONS(5169), 8, + ACTIONS(5399), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338102,17 +340519,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, - [151122] = 5, + [151207] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5119), 1, + ACTIONS(5337), 1, anon_sym_PIPE, STATE(4066), 1, sym_comment, - ACTIONS(5121), 10, + ACTIONS(5339), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338123,16 +340542,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151147] = 5, + [151232] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, + ACTIONS(5327), 1, anon_sym_PIPE, STATE(4067), 1, sym_comment, - ACTIONS(5169), 10, + ACTIONS(5329), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338143,36 +340562,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151172] = 5, + [151257] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5021), 1, - anon_sym_PIPE, STATE(4068), 1, sym_comment, - ACTIONS(5023), 10, + ACTIONS(6380), 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, - [151197] = 5, + [151280] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5306), 1, + ACTIONS(5118), 1, anon_sym_PIPE, STATE(4069), 1, sym_comment, - ACTIONS(5308), 10, + ACTIONS(5120), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338183,56 +340601,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151222] = 4, + [151305] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4974), 1, + anon_sym_PIPE, STATE(4070), 1, sym_comment, - ACTIONS(4985), 11, + ACTIONS(4976), 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, - [151245] = 6, + anon_sym_PIPE_RBRACE, + [151330] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7477), 1, - anon_sym_DOT, - ACTIONS(7479), 1, - anon_sym_QMARK_DOT, + ACTIONS(5050), 1, + anon_sym_PIPE, + ACTIONS(7480), 1, + anon_sym_LBRACK, STATE(4071), 1, sym_comment, - ACTIONS(5294), 9, + ACTIONS(5052), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [151272] = 5, + anon_sym_PIPE_RBRACE, + [151357] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5302), 1, + ACTIONS(5050), 1, anon_sym_PIPE, STATE(4072), 1, sym_comment, - ACTIONS(5304), 10, + ACTIONS(5052), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338243,36 +340662,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151297] = 5, + [151382] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3247), 1, - anon_sym_PIPE, STATE(4073), 1, sym_comment, - ACTIONS(3579), 10, + ACTIONS(4988), 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, - [151322] = 5, + [151405] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3405), 1, + ACTIONS(5078), 1, anon_sym_PIPE, STATE(4074), 1, sym_comment, - ACTIONS(3569), 10, + ACTIONS(5080), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338283,16 +340701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151347] = 5, + [151430] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5147), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, STATE(4075), 1, sym_comment, - ACTIONS(5149), 10, + ACTIONS(5026), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338300,19 +340722,46 @@ 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, - [151372] = 5, + [151459] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(7488), 1, + sym_identifier, + ACTIONS(7490), 1, + anon_sym_type, + ACTIONS(7492), 1, + anon_sym_COMMA, + ACTIONS(7494), 1, + anon_sym_RBRACE, + ACTIONS(7496), 1, + anon_sym_typeof, + STATE(4076), 1, + sym_comment, + STATE(5560), 1, + sym_string, + STATE(5758), 1, + sym_import_specifier, + STATE(6584), 1, + sym__import_identifier, + STATE(7187), 1, + sym__module_export_name, + [151502] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5065), 1, + ACTIONS(5401), 1, anon_sym_PIPE, - STATE(4076), 1, + STATE(4077), 1, sym_comment, - ACTIONS(5067), 10, + ACTIONS(5403), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338323,16 +340772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151397] = 5, + [151527] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5085), 1, + ACTIONS(3410), 1, anon_sym_PIPE, - STATE(4077), 1, + STATE(4078), 1, sym_comment, - ACTIONS(5087), 10, + ACTIONS(3682), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338343,45 +340792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151422] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7481), 1, - sym_identifier, - ACTIONS(7483), 1, - anon_sym_type, - ACTIONS(7485), 1, - anon_sym_COMMA, - ACTIONS(7487), 1, - anon_sym_RBRACE, - ACTIONS(7489), 1, - anon_sym_typeof, - STATE(4078), 1, - sym_comment, - STATE(5558), 1, - sym_string, - STATE(5757), 1, - sym_import_specifier, - STATE(6569), 1, - sym__import_identifier, - STATE(7184), 1, - sym__module_export_name, - [151465] = 5, + [151552] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, STATE(4079), 1, sym_comment, - ACTIONS(5253), 10, + ACTIONS(5080), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338389,23 +340813,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, - [151490] = 7, + [151581] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7473), 1, + ACTIONS(5345), 1, anon_sym_PIPE, - ACTIONS(7475), 1, - anon_sym_extends, STATE(4080), 1, sym_comment, - ACTIONS(5300), 8, + ACTIONS(5347), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338413,37 +340831,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, - [151519] = 5, + [151606] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5271), 1, - anon_sym_PIPE, STATE(4081), 1, sym_comment, - ACTIONS(5273), 10, + ACTIONS(6437), 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, - [151544] = 5, + [151629] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5358), 1, + ACTIONS(3400), 1, anon_sym_PIPE, STATE(4082), 1, sym_comment, - ACTIONS(5360), 10, + ACTIONS(3664), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338454,16 +340873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151569] = 5, + [151654] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5318), 1, + ACTIONS(5315), 1, anon_sym_PIPE, STATE(4083), 1, sym_comment, - ACTIONS(5063), 10, + ACTIONS(5317), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338474,81 +340893,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151594] = 5, + [151679] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5362), 1, - anon_sym_PIPE, STATE(4084), 1, sym_comment, - ACTIONS(5364), 10, + ACTIONS(5305), 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, - [151619] = 5, + [151702] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5131), 1, - anon_sym_PIPE, + ACTIONS(7498), 1, + anon_sym_DOT, + ACTIONS(7500), 1, + anon_sym_QMARK_DOT, STATE(4085), 1, sym_comment, - ACTIONS(5133), 10, + ACTIONS(5333), 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, - [151644] = 8, + [151729] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, + ACTIONS(5365), 1, + anon_sym_PIPE, STATE(4086), 1, sym_comment, - STATE(4389), 1, - sym_formal_parameters, - STATE(6831), 1, - sym_type_parameters, - ACTIONS(4642), 7, + ACTIONS(5367), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151675] = 6, + [151754] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5366), 1, - anon_sym_PIPE, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, STATE(4087), 1, sym_comment, - ACTIONS(5368), 9, + ACTIONS(5132), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338556,18 +340974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [151702] = 5, + [151783] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5045), 1, + ACTIONS(5307), 1, anon_sym_PIPE, STATE(4088), 1, sym_comment, - ACTIONS(5043), 10, + ACTIONS(5309), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338578,55 +340995,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151727] = 5, + [151808] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2231), 1, + anon_sym_DOT, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5235), 1, - anon_sym_PIPE, STATE(4089), 1, sym_comment, - ACTIONS(5237), 10, + ACTIONS(5251), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [151752] = 4, + [151833] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2227), 1, + anon_sym_DOT, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4090), 1, sym_comment, - ACTIONS(6451), 11, + ACTIONS(5251), 10, 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_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [151775] = 5, + anon_sym_extends, + [151858] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5151), 1, + ACTIONS(5004), 1, anon_sym_PIPE, STATE(4091), 1, sym_comment, - ACTIONS(5153), 10, + ACTIONS(5006), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338637,16 +341055,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151800] = 5, + [151883] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5378), 1, - anon_sym_PIPE, STATE(4092), 1, sym_comment, - ACTIONS(5380), 10, + ACTIONS(5313), 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, + [151906] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5042), 1, + anon_sym_PIPE, + STATE(4093), 1, + sym_comment, + ACTIONS(5044), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338657,16 +341094,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151825] = 5, + [151931] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5382), 1, + ACTIONS(5387), 1, anon_sym_PIPE, - STATE(4093), 1, + ACTIONS(7502), 1, + anon_sym_extends, + STATE(4094), 1, + sym_comment, + ACTIONS(5389), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [151958] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5299), 1, + anon_sym_PIPE, + STATE(4095), 1, sym_comment, - ACTIONS(5384), 10, + ACTIONS(5301), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338677,16 +341135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151850] = 5, + [151983] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5017), 1, + ACTIONS(5369), 1, anon_sym_PIPE, - STATE(4094), 1, + STATE(4096), 1, sym_comment, - ACTIONS(5019), 10, + ACTIONS(5371), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338697,20 +341155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151875] = 7, + [152008] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7473), 1, + ACTIONS(7484), 1, anon_sym_PIPE, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - STATE(4095), 1, + STATE(4097), 1, sym_comment, - ACTIONS(5153), 8, + ACTIONS(5282), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338719,20 +341177,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [151904] = 7, + [152037] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7217), 1, + anon_sym_LT, + STATE(4098), 1, + sym_comment, + STATE(4222), 1, + sym_type_arguments, + ACTIONS(4976), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7473), 1, anon_sym_PIPE, - ACTIONS(7475), 1, anon_sym_extends, - STATE(4096), 1, + [152064] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5227), 1, + anon_sym_PIPE, + STATE(4099), 1, sym_comment, - ACTIONS(5388), 8, + ACTIONS(5229), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338740,17 +341215,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, - [151933] = 5, + [152089] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3377), 1, + ACTIONS(3384), 1, anon_sym_PIPE, - STATE(4097), 1, + STATE(4100), 1, sym_comment, - ACTIONS(3679), 10, + ACTIONS(3612), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338761,39 +341238,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151958] = 4, + [152114] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4098), 1, + STATE(4101), 1, sym_comment, - ACTIONS(5137), 11, + ACTIONS(4649), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [152137] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5024), 1, + anon_sym_PIPE, + STATE(4102), 1, + sym_comment, + ACTIONS(5026), 10, + 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_PIPE, anon_sym_extends, - [151981] = 7, + anon_sym_PIPE_RBRACE, + [152162] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7473), 1, + ACTIONS(7484), 1, anon_sym_PIPE, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - STATE(4099), 1, + STATE(4103), 1, sym_comment, - ACTIONS(5031), 8, + ACTIONS(5092), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338802,37 +341299,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [152010] = 6, + [152191] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5349), 1, + anon_sym_PIPE, + STATE(4104), 1, + sym_comment, + ACTIONS(5221), 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, + [152216] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4105), 1, + sym_comment, + ACTIONS(5321), 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, + [152239] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7222), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4100), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4106), 1, sym_comment, - STATE(4223), 1, - sym_type_arguments, - ACTIONS(4979), 9, + STATE(4395), 1, + sym_formal_parameters, + STATE(6834), 1, + sym_type_parameters, + ACTIONS(4649), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152037] = 5, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [152270] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5339), 1, + ACTIONS(5259), 1, anon_sym_PIPE, - STATE(4101), 1, + STATE(4107), 1, sym_comment, - ACTIONS(5341), 10, + ACTIONS(5261), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338843,14 +341381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152062] = 4, + [152295] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4102), 1, + STATE(4108), 1, sym_comment, - ACTIONS(5125), 11, + ACTIONS(4986), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338862,16 +341400,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152085] = 5, + [152318] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, anon_sym_PIPE, - STATE(4103), 1, + ACTIONS(7486), 1, + anon_sym_extends, + STATE(4109), 1, sym_comment, - ACTIONS(4979), 10, + ACTIONS(5290), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338879,43 +341421,37 @@ 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, - [152110] = 7, + [152347] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5065), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(7469), 1, - anon_sym_LBRACK, - STATE(4104), 1, + STATE(4110), 1, sym_comment, - ACTIONS(5067), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5392), 7, + ACTIONS(5353), 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, - [152139] = 6, + [152372] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, + ACTIONS(3386), 1, anon_sym_PIPE, - ACTIONS(7491), 1, - anon_sym_extends, - STATE(4105), 1, + STATE(4111), 1, sym_comment, - ACTIONS(5396), 9, + ACTIONS(3564), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338924,17 +341460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [152166] = 5, + [152397] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5404), 1, + ACTIONS(5271), 1, anon_sym_PIPE, - STATE(4106), 1, + STATE(4112), 1, sym_comment, - ACTIONS(5406), 10, + ACTIONS(5273), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338945,14 +341482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152191] = 4, + [152422] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4107), 1, + STATE(4113), 1, sym_comment, - ACTIONS(5117), 11, + ACTIONS(4980), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338964,18 +341501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152214] = 6, + [152445] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5374), 1, + ACTIONS(5267), 1, anon_sym_PIPE, - ACTIONS(7471), 1, - anon_sym_AMP, - STATE(4108), 1, + STATE(4114), 1, sym_comment, - ACTIONS(5376), 9, + ACTIONS(5269), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338983,18 +341518,21 @@ 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, - [152241] = 5, + [152470] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5071), 1, + ACTIONS(5359), 1, anon_sym_PIPE, - STATE(4109), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + STATE(4115), 1, sym_comment, - ACTIONS(5073), 10, + ACTIONS(5361), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -339002,99 +341540,62 @@ 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, - [152266] = 5, + [152497] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + ACTIONS(5050), 1, anon_sym_PIPE, - STATE(4110), 1, + ACTIONS(7480), 1, + anon_sym_LBRACK, + STATE(4116), 1, sym_comment, - ACTIONS(5312), 10, + ACTIONS(5052), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5381), 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, - [152291] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4111), 1, - sym_comment, - ACTIONS(4967), 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, - [152314] = 5, + [152526] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2154), 1, - anon_sym_DOT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4112), 1, - sym_comment, - ACTIONS(5326), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7482), 1, anon_sym_AMP, + ACTIONS(7484), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(7486), 1, anon_sym_extends, - [152339] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5400), 1, - anon_sym_PIPE, - ACTIONS(7469), 1, - anon_sym_LBRACK, - STATE(4113), 1, + STATE(4117), 1, sym_comment, - ACTIONS(5402), 9, + ACTIONS(5377), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [152366] = 5, + [152555] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(5263), 1, anon_sym_PIPE, - STATE(4114), 1, + STATE(4118), 1, sym_comment, - ACTIONS(4971), 10, + ACTIONS(5265), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -339105,16 +341606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152391] = 5, + [152580] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, + ACTIONS(5074), 1, anon_sym_PIPE, - STATE(4115), 1, + STATE(4119), 1, sym_comment, - ACTIONS(5284), 10, + ACTIONS(5076), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -339125,150 +341626,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152416] = 5, + [152605] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2252), 1, - anon_sym_DOT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4116), 1, - sym_comment, - ACTIONS(5326), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7482), 1, anon_sym_AMP, + ACTIONS(7484), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(7486), 1, anon_sym_extends, - [152441] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4117), 1, + STATE(4120), 1, sym_comment, - ACTIONS(4642), 11, + ACTIONS(7504), 7, 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, - [152464] = 13, + [152633] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7493), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - STATE(3221), 1, + STATE(3119), 1, sym_class_body, - STATE(4118), 1, + STATE(4121), 1, sym_comment, - STATE(4647), 1, + STATE(4415), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6762), 1, + STATE(6774), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [152504] = 6, + [152673] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7503), 1, - anon_sym_COLON, - STATE(4119), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(7488), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_type, + ACTIONS(7516), 1, + anon_sym_as, + STATE(4122), 1, sym_comment, - STATE(4717), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7501), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + STATE(5560), 1, + sym_string, + STATE(6879), 1, + sym__import_identifier, + STATE(6996), 1, + sym__module_export_name, + ACTIONS(7261), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [152530] = 13, + [152711] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7505), 1, + ACTIONS(7518), 1, sym_identifier, - STATE(3221), 1, + STATE(3158), 1, sym_class_body, - STATE(4120), 1, + STATE(4123), 1, sym_comment, - STATE(4647), 1, + STATE(4583), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6762), 1, + STATE(6466), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [152570] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - STATE(4121), 1, - sym_comment, - STATE(3071), 2, - sym_template_string, - sym_arguments, - ACTIONS(5133), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152598] = 5, + [152751] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7507), 1, + ACTIONS(7415), 1, anon_sym_is, - STATE(4122), 1, + STATE(4124), 1, sym_comment, - ACTIONS(4979), 9, + ACTIONS(5002), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -339278,103 +341746,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152622] = 13, + [152775] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, - anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7509), 1, + ACTIONS(7520), 1, sym_identifier, - STATE(3221), 1, + ACTIONS(7522), 1, + anon_sym_LBRACE, + STATE(2577), 1, sym_class_body, - STATE(4123), 1, + STATE(4125), 1, sym_comment, - STATE(4647), 1, + STATE(4509), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6762), 1, + STATE(6743), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [152662] = 4, + [152815] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4124), 1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + STATE(4126), 1, sym_comment, - ACTIONS(2063), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(3055), 2, + sym_template_string, + sym_arguments, + ACTIONS(5317), 6, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - [152684] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7473), 1, - anon_sym_PIPE, - ACTIONS(7475), 1, - anon_sym_extends, - STATE(4125), 1, - sym_comment, - ACTIONS(7511), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [152712] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4250), 1, - anon_sym_LPAREN, - ACTIONS(7515), 1, - anon_sym_DOT, - STATE(4126), 1, - sym_comment, - STATE(4357), 1, - sym_arguments, - ACTIONS(7513), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [152740] = 5, + [152843] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7386), 1, - anon_sym_is, STATE(4127), 1, sym_comment, - ACTIONS(4965), 9, + ACTIONS(2094), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -339384,146 +341811,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152764] = 13, + anon_sym_is, + [152865] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7517), 1, + ACTIONS(7524), 1, sym_identifier, - STATE(3111), 1, + STATE(3119), 1, sym_class_body, STATE(4128), 1, sym_comment, - STATE(4563), 1, + STATE(4415), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6453), 1, + STATE(6774), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [152804] = 13, + [152905] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7519), 1, + ACTIONS(7526), 1, sym_identifier, - STATE(3111), 1, + STATE(3119), 1, sym_class_body, STATE(4129), 1, sym_comment, - STATE(4563), 1, + STATE(4415), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6453), 1, + STATE(6774), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [152844] = 13, + [152945] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7497), 1, + ACTIONS(7508), 1, + anon_sym_LBRACE, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7521), 1, + ACTIONS(7528), 1, sym_identifier, - ACTIONS(7523), 1, - anon_sym_LBRACE, - STATE(2548), 1, + STATE(3158), 1, sym_class_body, STATE(4130), 1, sym_comment, - STATE(4411), 1, + STATE(4583), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6606), 1, + STATE(6466), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [152884] = 5, + [152985] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7386), 1, - anon_sym_is, - STATE(4131), 1, - sym_comment, - ACTIONS(4971), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7508), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7510), 1, anon_sym_extends, - [152908] = 13, + ACTIONS(7512), 1, + anon_sym_implements, + ACTIONS(7530), 1, + sym_identifier, + STATE(3158), 1, + sym_class_body, + STATE(4131), 1, + sym_comment, + STATE(4583), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6466), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [153025] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, - anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7525), 1, + ACTIONS(7522), 1, + anon_sym_LBRACE, + ACTIONS(7532), 1, sym_identifier, - STATE(3221), 1, + STATE(2609), 1, sym_class_body, STATE(4132), 1, sym_comment, - STATE(4647), 1, + STATE(4429), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6762), 1, + STATE(6616), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [152948] = 6, + [153065] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7295), 1, anon_sym_EQ, STATE(4133), 1, sym_comment, - ACTIONS(4909), 2, + ACTIONS(4918), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4642), 7, + ACTIONS(4649), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -339531,476 +341967,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [152974] = 13, + [153091] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7497), 1, - anon_sym_extends, - ACTIONS(7499), 1, - anon_sym_implements, - ACTIONS(7523), 1, - anon_sym_LBRACE, - ACTIONS(7527), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(7488), 1, sym_identifier, - STATE(3383), 1, - sym_class_body, + ACTIONS(7490), 1, + anon_sym_type, + ACTIONS(7496), 1, + anon_sym_typeof, + ACTIONS(7534), 1, + anon_sym_RBRACE, STATE(4134), 1, sym_comment, - STATE(4398), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6935), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [153014] = 13, + STATE(5560), 1, + sym_string, + STATE(6584), 1, + sym__import_identifier, + STATE(6769), 1, + sym_import_specifier, + STATE(7187), 1, + sym__module_export_name, + [153131] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7497), 1, + ACTIONS(7508), 1, + anon_sym_LBRACE, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7523), 1, - anon_sym_LBRACE, - ACTIONS(7529), 1, + ACTIONS(7536), 1, sym_identifier, - STATE(2587), 1, + STATE(3158), 1, sym_class_body, STATE(4135), 1, sym_comment, - STATE(4449), 1, + STATE(4583), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6747), 1, + STATE(6466), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153054] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [153171] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7481), 1, - sym_identifier, - ACTIONS(7483), 1, - anon_sym_type, - ACTIONS(7489), 1, - anon_sym_typeof, - ACTIONS(7531), 1, - anon_sym_RBRACE, - STATE(4136), 1, - sym_comment, - STATE(5558), 1, - sym_string, - STATE(6569), 1, - sym__import_identifier, - STATE(6766), 1, - sym_import_specifier, - STATE(7184), 1, - sym__module_export_name, - [153094] = 12, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7481), 1, - sym_identifier, - ACTIONS(7533), 1, - anon_sym_type, - ACTIONS(7535), 1, - anon_sym_as, - STATE(4137), 1, + ACTIONS(7538), 1, + anon_sym_is, + STATE(4136), 1, sym_comment, - STATE(5558), 1, - sym_string, - STATE(6875), 1, - sym__import_identifier, - STATE(6994), 1, - sym__module_export_name, - ACTIONS(7250), 2, + ACTIONS(4976), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - [153132] = 13, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153195] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7537), 1, + ACTIONS(7540), 1, sym_identifier, - STATE(3221), 1, + STATE(3119), 1, sym_class_body, - STATE(4138), 1, + STATE(4137), 1, sym_comment, - STATE(4647), 1, + STATE(4415), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6762), 1, + STATE(6774), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153172] = 13, + [153235] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7544), 1, + anon_sym_COLON, + STATE(4138), 1, + sym_comment, + STATE(4719), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7542), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [153261] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(7546), 1, + sym_identifier, + ACTIONS(7550), 1, + anon_sym_COMMA, + ACTIONS(7552), 1, + anon_sym_RBRACE, + STATE(4139), 1, + sym_comment, + STATE(5560), 1, + sym_string, + STATE(5726), 1, + sym_export_specifier, + STATE(5727), 1, + sym__module_export_name, + ACTIONS(7548), 2, + anon_sym_type, + anon_sym_typeof, + [153299] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7539), 1, + ACTIONS(7554), 1, sym_identifier, - STATE(3221), 1, + STATE(3119), 1, sym_class_body, - STATE(4139), 1, + STATE(4140), 1, sym_comment, - STATE(4647), 1, + STATE(4415), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6762), 1, + STATE(6774), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153212] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [153339] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7481), 1, - sym_identifier, - ACTIONS(7483), 1, - anon_sym_type, - ACTIONS(7489), 1, - anon_sym_typeof, - ACTIONS(7541), 1, - anon_sym_RBRACE, - STATE(4140), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4141), 1, sym_comment, - STATE(5558), 1, - sym_string, - STATE(6569), 1, - sym__import_identifier, - STATE(6766), 1, - sym_import_specifier, - STATE(7184), 1, - sym__module_export_name, - [153252] = 10, + ACTIONS(4984), 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, + [153361] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, + ACTIONS(7544), 1, anon_sym_COLON, - ACTIONS(7543), 1, - anon_sym_EQ, - ACTIONS(7547), 1, - anon_sym_BANG, - STATE(4141), 1, + STATE(4142), 1, sym_comment, - STATE(4984), 1, + STATE(4682), 3, sym_type_annotation, - STATE(5134), 1, - sym__initializer, - ACTIONS(7549), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7545), 3, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7556), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [153286] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [153387] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7415), 1, + anon_sym_is, + STATE(4143), 1, + sym_comment, + ACTIONS(5006), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7497), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7499), 1, - anon_sym_implements, - ACTIONS(7551), 1, - sym_identifier, - STATE(3111), 1, - sym_class_body, - STATE(4142), 1, - sym_comment, - STATE(4563), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6453), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [153326] = 13, + [153411] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7553), 1, + ACTIONS(7558), 1, sym_identifier, - STATE(3111), 1, + STATE(3158), 1, sym_class_body, - STATE(4143), 1, + STATE(4144), 1, sym_comment, - STATE(4563), 1, + STATE(4583), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6453), 1, + STATE(6466), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153366] = 4, + [153451] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4144), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7560), 1, + anon_sym_EQ, + ACTIONS(7564), 1, + anon_sym_BANG, + STATE(4145), 1, sym_comment, - ACTIONS(4975), 10, + STATE(4987), 1, + sym_type_annotation, + STATE(5135), 1, + sym__initializer, + ACTIONS(7566), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7562), 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, - anon_sym_is, - [153388] = 10, + [153485] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7547), 1, + ACTIONS(7564), 1, anon_sym_BANG, - STATE(4145), 1, + STATE(4146), 1, sym_comment, - STATE(4984), 1, + STATE(4987), 1, sym_type_annotation, - STATE(5762), 1, + STATE(5761), 1, sym__initializer, - ACTIONS(7549), 2, + ACTIONS(7566), 2, anon_sym_in, anon_sym_of, - ACTIONS(7545), 3, + ACTIONS(7562), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153422] = 12, + [153519] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(7555), 1, + ACTIONS(7488), 1, sym_identifier, - ACTIONS(7559), 1, - anon_sym_COMMA, - ACTIONS(7561), 1, + ACTIONS(7490), 1, + anon_sym_type, + ACTIONS(7496), 1, + anon_sym_typeof, + ACTIONS(7568), 1, anon_sym_RBRACE, - STATE(4146), 1, + STATE(4147), 1, sym_comment, - STATE(5558), 1, + STATE(5560), 1, sym_string, - STATE(5727), 1, - sym_export_specifier, - STATE(5732), 1, + STATE(6584), 1, + sym__import_identifier, + STATE(6769), 1, + sym_import_specifier, + STATE(7187), 1, sym__module_export_name, - ACTIONS(7557), 2, - anon_sym_type, - anon_sym_typeof, - [153460] = 13, + [153559] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7563), 1, + ACTIONS(7570), 1, sym_identifier, - STATE(3111), 1, + STATE(3119), 1, sym_class_body, - STATE(4147), 1, + STATE(4148), 1, sym_comment, - STATE(4563), 1, + STATE(4415), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6453), 1, + STATE(6774), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153500] = 13, + [153599] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7565), 1, + ACTIONS(7572), 1, sym_identifier, - STATE(3111), 1, + STATE(3158), 1, sym_class_body, - STATE(4148), 1, + STATE(4149), 1, sym_comment, - STATE(4563), 1, + STATE(4583), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6453), 1, + STATE(6466), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153540] = 13, + [153639] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, - anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7567), 1, + ACTIONS(7522), 1, + anon_sym_LBRACE, + ACTIONS(7574), 1, sym_identifier, - STATE(3221), 1, + STATE(3381), 1, sym_class_body, - STATE(4149), 1, + STATE(4150), 1, sym_comment, - STATE(4647), 1, + STATE(4650), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6762), 1, + STATE(6938), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153580] = 6, + [153679] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7503), 1, - anon_sym_COLON, - STATE(4150), 1, + ACTIONS(4283), 1, + anon_sym_LPAREN, + ACTIONS(7578), 1, + anon_sym_DOT, + STATE(4151), 1, sym_comment, - STATE(4819), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7569), 6, + STATE(4376), 1, + sym_arguments, + ACTIONS(7576), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [153606] = 13, + [153707] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7495), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - ACTIONS(7497), 1, + ACTIONS(7510), 1, anon_sym_extends, - ACTIONS(7499), 1, + ACTIONS(7512), 1, anon_sym_implements, - ACTIONS(7571), 1, + ACTIONS(7580), 1, sym_identifier, - STATE(3111), 1, + STATE(3119), 1, sym_class_body, - STATE(4151), 1, + STATE(4152), 1, sym_comment, - STATE(4563), 1, + STATE(4415), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6453), 1, + STATE(6774), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153646] = 4, + [153747] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7508), 1, + anon_sym_LBRACE, + ACTIONS(7510), 1, + anon_sym_extends, + ACTIONS(7512), 1, + anon_sym_implements, + ACTIONS(7582), 1, + sym_identifier, + STATE(3158), 1, + sym_class_body, + STATE(4153), 1, + sym_comment, + STATE(4583), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6466), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [153787] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4152), 1, + STATE(4154), 1, sym_comment, - ACTIONS(5155), 9, + ACTIONS(5100), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340010,503 +342472,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [153667] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_DOT, - STATE(3163), 1, - sym_template_string, - STATE(3222), 1, - sym_arguments, - STATE(4153), 1, - sym_comment, - STATE(5571), 1, - sym_type_arguments, - STATE(6495), 1, - sym_optional_chain, - [153704] = 12, + [153808] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7575), 1, + ACTIONS(7584), 1, anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - STATE(3265), 1, + STATE(1448), 1, sym_class_body, - STATE(4154), 1, + STATE(4155), 1, sym_comment, - STATE(4612), 1, + STATE(4412), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6790), 1, + STATE(6482), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153741] = 4, + [153845] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4155), 1, - sym_comment, - ACTIONS(7581), 9, + ACTIONS(7295), 1, anon_sym_EQ, + ACTIONS(7590), 1, anon_sym_COMMA, + ACTIONS(7592), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [153762] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(7082), 1, - anon_sym_LT, - STATE(2631), 1, - sym_template_string, - STATE(3391), 1, - sym_arguments, - STATE(3908), 1, - sym_type_arguments, STATE(4156), 1, sym_comment, - STATE(6687), 1, - sym_optional_chain, - [153799] = 12, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [153876] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7596), 1, + anon_sym_PIPE, + ACTIONS(7598), 1, anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7583), 1, - anon_sym_LBRACE, - STATE(988), 1, - sym_class_body, STATE(4157), 1, sym_comment, - STATE(4418), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6305), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [153836] = 12, + ACTIONS(5080), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [153903] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7585), 1, + ACTIONS(7600), 1, anon_sym_LBRACE, - STATE(320), 1, + STATE(1220), 1, sym_class_body, STATE(4158), 1, sym_comment, - STATE(4421), 1, + STATE(4483), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6299), 1, + STATE(6815), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153873] = 12, + [153940] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7587), 1, + ACTIONS(7602), 1, anon_sym_LBRACE, - STATE(1191), 1, + STATE(406), 1, sym_class_body, STATE(4159), 1, sym_comment, - STATE(4423), 1, + STATE(4620), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, STATE(6298), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153910] = 12, + [153977] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7589), 1, + ACTIONS(7604), 1, anon_sym_LBRACE, STATE(4160), 1, sym_comment, - STATE(4410), 1, + STATE(4489), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6461), 1, + STATE(6460), 1, sym_class_heritage, - STATE(6840), 1, + STATE(6842), 1, sym_class_body, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [153947] = 10, + [154014] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7591), 1, - anon_sym_BANG, - ACTIONS(7593), 1, - anon_sym_QMARK, STATE(4161), 1, sym_comment, - STATE(5364), 1, - sym_type_annotation, - STATE(6252), 1, - sym__initializer, - ACTIONS(7286), 3, + ACTIONS(5096), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [153980] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154035] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7595), 1, - anon_sym_BANG, - ACTIONS(7597), 1, - anon_sym_QMARK, STATE(4162), 1, sym_comment, - STATE(5059), 1, - sym_type_annotation, - STATE(5876), 1, - sym__initializer, - ACTIONS(7312), 3, + ACTIONS(5080), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154013] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154056] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7599), 1, - anon_sym_BANG, - ACTIONS(7601), 1, - anon_sym_QMARK, STATE(4163), 1, sym_comment, - STATE(5366), 1, - sym_type_annotation, - STATE(6249), 1, - sym__initializer, - ACTIONS(7286), 3, + ACTIONS(5084), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154046] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154077] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7603), 1, - anon_sym_BANG, - ACTIONS(7605), 1, - anon_sym_QMARK, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(7546), 1, + sym_identifier, + ACTIONS(7606), 1, + anon_sym_RBRACE, STATE(4164), 1, sym_comment, - STATE(5363), 1, - sym_type_annotation, - STATE(6254), 1, - sym__initializer, - ACTIONS(7286), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154079] = 10, + STATE(5560), 1, + sym_string, + STATE(5727), 1, + sym__module_export_name, + STATE(6822), 1, + sym_export_specifier, + ACTIONS(7548), 2, + anon_sym_type, + anon_sym_typeof, + [154112] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7607), 1, - anon_sym_BANG, - ACTIONS(7609), 1, - anon_sym_QMARK, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(7093), 1, + anon_sym_LT, STATE(4165), 1, sym_comment, - STATE(5048), 1, - sym_type_annotation, - STATE(5869), 1, - sym__initializer, - ACTIONS(7312), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154112] = 10, + STATE(5573), 1, + sym_type_arguments, + STATE(6511), 1, + sym_optional_chain, + STATE(3261), 2, + sym_template_string, + sym_arguments, + [154147] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7611), 1, - anon_sym_BANG, - ACTIONS(7613), 1, - anon_sym_QMARK, STATE(4166), 1, sym_comment, - STATE(5047), 1, - sym_type_annotation, - STATE(5863), 1, - sym__initializer, - ACTIONS(7312), 3, - sym__automatic_semicolon, + ACTIONS(7608), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [154145] = 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [154168] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7615), 1, - anon_sym_BANG, - ACTIONS(7617), 1, - anon_sym_QMARK, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_class_body, STATE(4167), 1, sym_comment, - STATE(5372), 1, - sym_type_annotation, - STATE(6231), 1, - sym__initializer, - ACTIONS(7286), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154178] = 10, + STATE(4478), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6826), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [154205] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7619), 1, - anon_sym_BANG, - ACTIONS(7621), 1, - anon_sym_QMARK, + ACTIONS(7590), 1, + anon_sym_COMMA, + ACTIONS(7612), 1, + anon_sym_RBRACE, STATE(4168), 1, sym_comment, - STATE(5373), 1, - sym_type_annotation, - STATE(6227), 1, - sym__initializer, - ACTIONS(7286), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154211] = 10, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4649), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154236] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7623), 1, - anon_sym_BANG, - ACTIONS(7625), 1, - anon_sym_QMARK, STATE(4169), 1, sym_comment, - STATE(5020), 1, + STATE(5128), 1, sym_type_annotation, - STATE(5842), 1, + STATE(5990), 1, sym__initializer, - ACTIONS(7312), 3, + ACTIONS(7616), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154244] = 7, + [154267] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, - anon_sym_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE, - ACTIONS(7631), 1, - anon_sym_extends, STATE(4170), 1, sym_comment, - ACTIONS(5169), 6, + ACTIONS(7618), 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, + [154288] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4171), 1, + sym_comment, + ACTIONS(5120), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [154271] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7583), 1, - anon_sym_LBRACE, - STATE(974), 1, - sym_class_body, - STATE(4171), 1, - sym_comment, - STATE(4441), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6865), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [154308] = 9, + [154309] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_EQ, - ACTIONS(7633), 1, - anon_sym_COMMA, - ACTIONS(7635), 1, - anon_sym_RBRACE, STATE(4172), 1, sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4642), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [154339] = 10, + ACTIONS(4976), 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, + [154330] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7637), 1, - anon_sym_BANG, - ACTIONS(7639), 1, - anon_sym_QMARK, + ACTIONS(7620), 1, + anon_sym_LBRACK, STATE(4173), 1, sym_comment, - STATE(5191), 1, - sym_type_annotation, - STATE(6045), 1, - sym__initializer, - ACTIONS(7270), 3, + ACTIONS(5052), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154372] = 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154353] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4174), 1, sym_comment, - ACTIONS(2174), 9, + ACTIONS(5052), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340516,366 +342885,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154393] = 9, + [154374] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(7093), 1, + anon_sym_LT, + STATE(2853), 1, + sym_arguments, + STATE(3261), 1, + sym_template_string, + STATE(4126), 1, + sym_type_arguments, STATE(4175), 1, sym_comment, - STATE(4984), 1, - sym_type_annotation, - STATE(5763), 1, - sym__initializer, - ACTIONS(7549), 2, + STATE(6511), 1, + sym_optional_chain, + [154411] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4176), 1, + sym_comment, + ACTIONS(7622), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_in, anon_sym_of, - ACTIONS(7545), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154424] = 10, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [154432] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7641), 1, + ACTIONS(7624), 1, anon_sym_BANG, - ACTIONS(7643), 1, + ACTIONS(7626), 1, anon_sym_QMARK, - STATE(4176), 1, + STATE(4177), 1, sym_comment, - STATE(5013), 1, + STATE(4954), 1, sym_type_annotation, - STATE(5825), 1, + STATE(5733), 1, sym__initializer, - ACTIONS(7312), 3, + ACTIONS(7367), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154457] = 12, + [154465] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7645), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_class_body, - STATE(4177), 1, - sym_comment, - STATE(4650), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6903), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [154494] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7628), 1, anon_sym_EQ, - ACTIONS(7633), 1, - anon_sym_COMMA, - ACTIONS(7647), 1, - anon_sym_RBRACE, STATE(4178), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(4642), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [154525] = 4, + ACTIONS(7504), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [154494] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4179), 1, sym_comment, - ACTIONS(2316), 9, + ACTIONS(4467), 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, - [154546] = 4, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [154515] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4180), 1, sym_comment, - ACTIONS(7649), 9, + ACTIONS(4469), 9, + sym__automatic_semicolon, anon_sym_EQ, + 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, - [154567] = 9, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [154536] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7630), 1, anon_sym_EQ, + ACTIONS(7632), 1, + anon_sym_DOT, STATE(4181), 1, sym_comment, - STATE(4984), 1, - sym_type_annotation, - STATE(5135), 1, - sym__initializer, - ACTIONS(7549), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7545), 3, - sym__automatic_semicolon, + STATE(4363), 1, + sym_arguments, + ACTIONS(7576), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [154598] = 12, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [154565] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7585), 1, - anon_sym_LBRACE, - STATE(335), 1, - sym_class_body, STATE(4182), 1, sym_comment, - STATE(4496), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6307), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [154635] = 9, + ACTIONS(5006), 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, + [154586] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2756), 1, - anon_sym_RBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_EQ, - ACTIONS(7633), 1, - anon_sym_COMMA, STATE(4183), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(4642), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [154666] = 12, + ACTIONS(5044), 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, + [154607] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7651), 1, - anon_sym_LBRACE, - STATE(446), 1, - sym_class_body, STATE(4184), 1, sym_comment, - STATE(4469), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6641), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [154703] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7634), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7633), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7653), 1, anon_sym_RBRACE, - STATE(4185), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(4642), 4, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [154734] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7655), 1, - anon_sym_LBRACE, - STATE(1461), 1, - sym_class_body, - STATE(4186), 1, - sym_comment, - STATE(4551), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6409), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [154771] = 10, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [154628] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7657), 1, - anon_sym_BANG, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(4187), 1, + STATE(4185), 1, sym_comment, - STATE(5185), 1, - sym_type_annotation, - STATE(6042), 1, - sym__initializer, - ACTIONS(7270), 3, + ACTIONS(7636), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [154804] = 9, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [154649] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4188), 1, + STATE(4186), 1, sym_comment, - STATE(5174), 1, - sym_type_annotation, - STATE(6021), 1, - sym__initializer, - ACTIONS(7294), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7292), 3, + ACTIONS(5261), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154835] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154670] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4189), 1, + STATE(4187), 1, sym_comment, - ACTIONS(7661), 9, + ACTIONS(7638), 9, + sym__automatic_semicolon, anon_sym_EQ, + 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, - [154856] = 10, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [154691] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7663), 1, - anon_sym_BANG, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(4190), 1, + STATE(4188), 1, sym_comment, - STATE(4952), 1, - sym_type_annotation, - STATE(5730), 1, - sym__initializer, - ACTIONS(7312), 3, + ACTIONS(7640), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [154889] = 4, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [154712] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4191), 1, + STATE(4189), 1, sym_comment, - ACTIONS(5169), 9, + ACTIONS(5002), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340885,136 +343162,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154910] = 12, + [154733] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(7093), 1, + anon_sym_LT, + STATE(2561), 1, + sym_template_string, + STATE(3301), 1, + sym_arguments, + STATE(3930), 1, + sym_type_arguments, + STATE(4190), 1, + sym_comment, + STATE(6701), 1, + sym_optional_chain, + [154770] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7667), 1, + ACTIONS(7642), 1, anon_sym_LBRACE, - STATE(1234), 1, + STATE(2626), 1, sym_class_body, + STATE(4191), 1, + sym_comment, + STATE(4408), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6547), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [154807] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7644), 1, + anon_sym_LBRACE, STATE(4192), 1, sym_comment, - STATE(4587), 1, + STATE(4409), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6812), 1, + STATE(6010), 1, + sym_class_body, + STATE(6574), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [154947] = 4, + [154844] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3066), 1, + sym_class_body, STATE(4193), 1, sym_comment, - ACTIONS(5149), 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, - [154968] = 4, + STATE(4420), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6581), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [154881] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3199), 1, + sym_class_body, STATE(4194), 1, sym_comment, - ACTIONS(3569), 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, - [154989] = 10, + STATE(4493), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6791), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [154918] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7669), 1, + ACTIONS(7648), 1, anon_sym_BANG, - ACTIONS(7671), 1, + ACTIONS(7650), 1, anon_sym_QMARK, STATE(4195), 1, sym_comment, - STATE(5349), 1, + STATE(5360), 1, sym_type_annotation, - STATE(6286), 1, + STATE(6273), 1, sym__initializer, - ACTIONS(7286), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155022] = 10, + [154951] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7673), 1, - anon_sym_BANG, - ACTIONS(7675), 1, - anon_sym_QMARK, STATE(4196), 1, sym_comment, - STATE(5311), 1, + STATE(5232), 1, sym_type_annotation, - STATE(6158), 1, + STATE(6081), 1, sym__initializer, - ACTIONS(7286), 3, + ACTIONS(7323), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7321), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155055] = 4, + [154982] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4197), 1, sym_comment, - ACTIONS(7677), 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, - [155076] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4198), 1, - sym_comment, - ACTIONS(3579), 9, + ACTIONS(2211), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341024,84 +343349,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155097] = 10, + [155003] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7679), 1, - anon_sym_BANG, - ACTIONS(7681), 1, - anon_sym_QMARK, - STATE(4199), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7652), 1, + anon_sym_DOT, + STATE(3180), 1, + sym_arguments, + STATE(3261), 1, + sym_template_string, + STATE(4198), 1, sym_comment, - STATE(4940), 1, - sym_type_annotation, - STATE(5720), 1, - sym__initializer, - ACTIONS(7312), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155130] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5573), 1, + sym_type_arguments, + STATE(6511), 1, + sym_optional_chain, + [155040] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7555), 1, - sym_identifier, - ACTIONS(7683), 1, - anon_sym_RBRACE, - STATE(4200), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7654), 1, + anon_sym_LBRACE, + STATE(1214), 1, + sym_class_body, + STATE(4199), 1, sym_comment, - STATE(5558), 1, - sym_string, - STATE(5732), 1, - sym__module_export_name, - STATE(6819), 1, - sym_export_specifier, - ACTIONS(7557), 2, - anon_sym_type, - anon_sym_typeof, - [155165] = 10, + STATE(4389), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6348), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [155077] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7590), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, + anon_sym_RBRACE, + STATE(4200), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7685), 1, - anon_sym_BANG, - ACTIONS(7687), 1, + anon_sym_LT, anon_sym_QMARK, + [155108] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7658), 1, + anon_sym_DOT, + STATE(2561), 1, + sym_template_string, + STATE(2725), 1, + sym_arguments, STATE(4201), 1, sym_comment, - STATE(4938), 1, - sym_type_annotation, - STATE(5717), 1, - sym__initializer, - ACTIONS(7312), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155198] = 4, + STATE(5525), 1, + sym_type_arguments, + STATE(6701), 1, + sym_optional_chain, + [155145] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4202), 1, sym_comment, - ACTIONS(3599), 9, + ACTIONS(2221), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341111,105 +343463,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155219] = 7, + [155166] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, - anon_sym_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE, - ACTIONS(7631), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7584), 1, + anon_sym_LBRACE, + ACTIONS(7586), 1, anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + STATE(1398), 1, + sym_class_body, STATE(4203), 1, sym_comment, - ACTIONS(5300), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [155246] = 12, + STATE(4477), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6400), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [155203] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(7082), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(3163), 1, - sym_template_string, - STATE(3291), 1, - sym_arguments, - STATE(4121), 1, - sym_type_arguments, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7660), 1, + anon_sym_LBRACE, + STATE(1205), 1, + sym_class_body, STATE(4204), 1, sym_comment, - STATE(6495), 1, - sym_optional_chain, - [155283] = 10, + STATE(4519), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6321), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [155240] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7689), 1, + ACTIONS(7662), 1, anon_sym_BANG, - ACTIONS(7691), 1, + ACTIONS(7664), 1, anon_sym_QMARK, STATE(4205), 1, sym_comment, - STATE(5338), 1, + STATE(5242), 1, sym_type_annotation, - STATE(6257), 1, + STATE(6118), 1, sym__initializer, - ACTIONS(7286), 3, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155316] = 10, + [155273] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7666), 1, + anon_sym_LBRACE, + STATE(371), 1, + sym_class_body, + STATE(4206), 1, + sym_comment, + STATE(4393), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6439), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [155310] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7693), 1, + ACTIONS(7668), 1, anon_sym_BANG, - ACTIONS(7695), 1, + ACTIONS(7670), 1, anon_sym_QMARK, - STATE(4206), 1, + STATE(4207), 1, sym_comment, - STATE(4916), 1, + STATE(5306), 1, sym_type_annotation, - STATE(5707), 1, + STATE(6136), 1, sym__initializer, - ACTIONS(7312), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155349] = 4, + [155343] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4207), 1, + STATE(4208), 1, sym_comment, - ACTIONS(3669), 9, + ACTIONS(5347), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341219,56 +343601,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155370] = 4, + [155364] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4208), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7674), 1, + anon_sym_QMARK, + STATE(4209), 1, sym_comment, - ACTIONS(5249), 9, + STATE(5106), 1, + sym_type_annotation, + STATE(5953), 1, + sym__initializer, + ACTIONS(7367), 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, - [155391] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7481), 1, - sym_identifier, - ACTIONS(7483), 1, - anon_sym_type, - ACTIONS(7489), 1, - anon_sym_typeof, - STATE(4209), 1, - sym_comment, - STATE(5558), 1, - sym_string, - STATE(6569), 1, - sym__import_identifier, - STATE(6766), 1, - sym_import_specifier, - STATE(7184), 1, - sym__module_export_name, - [155428] = 4, + [155397] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4210), 1, sym_comment, - ACTIONS(5304), 9, + ACTIONS(5221), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341278,56 +343641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155449] = 12, + [155418] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(1139), 1, - sym_class_body, STATE(4211), 1, sym_comment, - STATE(4571), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6468), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [155486] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4212), 1, - sym_comment, - ACTIONS(5063), 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, - [155507] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4213), 1, - sym_comment, - ACTIONS(5364), 9, + ACTIONS(5353), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341337,16 +343658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155528] = 5, + [155439] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, + ACTIONS(7594), 1, anon_sym_AMP, - STATE(4214), 1, + STATE(4212), 1, sym_comment, - ACTIONS(5368), 8, + ACTIONS(5361), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341355,14 +343676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [155551] = 4, + [155462] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4215), 1, + STATE(4213), 1, sym_comment, - ACTIONS(5043), 9, + ACTIONS(5205), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341372,14 +343693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155572] = 4, + [155483] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4216), 1, + STATE(4214), 1, sym_comment, - ACTIONS(5380), 9, + ACTIONS(5367), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341389,14 +343710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155593] = 4, + [155504] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4217), 1, + STATE(4215), 1, sym_comment, - ACTIONS(5384), 9, + ACTIONS(5371), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341406,55 +343727,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155614] = 7, + [155525] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, + ACTIONS(7594), 1, anon_sym_AMP, - ACTIONS(7629), 1, + ACTIONS(7596), 1, anon_sym_PIPE, - ACTIONS(7631), 1, + ACTIONS(7598), 1, anon_sym_extends, - STATE(4218), 1, + STATE(4216), 1, sym_comment, - ACTIONS(5388), 6, + ACTIONS(5377), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [155641] = 6, + [155552] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7699), 1, + ACTIONS(7620), 1, anon_sym_LBRACK, - STATE(4219), 1, + STATE(4217), 1, sym_comment, - ACTIONS(5067), 3, + ACTIONS(5052), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(5392), 5, + ACTIONS(5381), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155666] = 5, + [155577] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7701), 1, + ACTIONS(7676), 1, anon_sym_extends, - STATE(4220), 1, + STATE(4218), 1, sym_comment, - ACTIONS(5396), 8, + ACTIONS(5389), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341463,16 +343784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [155689] = 5, + [155600] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7699), 1, + ACTIONS(7620), 1, anon_sym_LBRACK, - STATE(4221), 1, + STATE(4219), 1, sym_comment, - ACTIONS(5402), 8, + ACTIONS(5395), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341481,14 +343802,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155712] = 4, + [155623] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(7093), 1, + anon_sym_LT, + STATE(2561), 1, + sym_template_string, + STATE(3389), 1, + sym_arguments, + STATE(3930), 1, + sym_type_arguments, + STATE(4220), 1, + sym_comment, + STATE(6701), 1, + sym_optional_chain, + [155660] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(7488), 1, + sym_identifier, + ACTIONS(7490), 1, + anon_sym_type, + ACTIONS(7496), 1, + anon_sym_typeof, + STATE(4221), 1, + sym_comment, + STATE(5560), 1, + sym_string, + STATE(6584), 1, + sym__import_identifier, + STATE(6769), 1, + sym_import_specifier, + STATE(7187), 1, + sym__module_export_name, + [155697] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4222), 1, sym_comment, - ACTIONS(3679), 9, + ACTIONS(5403), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341498,700 +343869,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155733] = 4, + [155718] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(7151), 1, + anon_sym_LT, + STATE(2561), 1, + sym_template_string, + STATE(2907), 1, + sym_arguments, + STATE(3982), 1, + sym_type_arguments, STATE(4223), 1, sym_comment, - ACTIONS(5284), 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, - [155754] = 4, + STATE(6701), 1, + sym_optional_chain, + [155755] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7596), 1, + anon_sym_PIPE, + ACTIONS(7598), 1, + anon_sym_extends, STATE(4224), 1, sym_comment, - ACTIONS(5145), 9, + ACTIONS(5282), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [155775] = 4, + [155782] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4225), 1, - sym_comment, - ACTIONS(5237), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7594), 1, anon_sym_AMP, + ACTIONS(7596), 1, anon_sym_PIPE, + ACTIONS(7598), 1, anon_sym_extends, - [155796] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7703), 1, - anon_sym_COLON, - STATE(4226), 1, + STATE(4225), 1, sym_comment, - STATE(5321), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7501), 5, + ACTIONS(5290), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155821] = 10, + anon_sym_LBRACK, + [155809] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7705), 1, - anon_sym_BANG, - ACTIONS(7707), 1, - anon_sym_QMARK, - STATE(4227), 1, - sym_comment, - STATE(4904), 1, - sym_type_annotation, - STATE(5691), 1, - sym__initializer, - ACTIONS(7312), 3, - sym__automatic_semicolon, + ACTIONS(7590), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155854] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7709), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_class_body, - STATE(4228), 1, - sym_comment, - STATE(4576), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6475), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [155891] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7711), 1, - anon_sym_BANG, - ACTIONS(7713), 1, - anon_sym_QMARK, - STATE(4229), 1, + ACTIONS(7678), 1, + anon_sym_RBRACE, + STATE(4226), 1, sym_comment, - STATE(5302), 1, - sym_type_annotation, - STATE(6133), 1, - sym__initializer, - ACTIONS(7286), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155924] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 4, anon_sym_LPAREN, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7715), 1, - anon_sym_DOT, - STATE(2631), 1, - sym_template_string, - STATE(3086), 1, - sym_arguments, - STATE(4230), 1, - sym_comment, - STATE(5524), 1, - sym_type_arguments, - STATE(6687), 1, - sym_optional_chain, - [155961] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7717), 1, - anon_sym_BANG, - ACTIONS(7719), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4231), 1, - sym_comment, - STATE(5287), 1, - sym_type_annotation, - STATE(6131), 1, - sym__initializer, - ACTIONS(7286), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155994] = 12, + [155840] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7651), 1, + ACTIONS(7680), 1, anon_sym_LBRACE, - STATE(425), 1, + STATE(991), 1, sym_class_body, - STATE(4232), 1, + STATE(4227), 1, sym_comment, - STATE(4578), 1, + STATE(4544), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6823), 1, + STATE(6309), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [156031] = 9, + [155877] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4233), 1, - sym_comment, - STATE(5317), 1, - sym_type_annotation, - STATE(6188), 1, - sym__initializer, - ACTIONS(7376), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7374), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156062] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7560), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7721), 1, - anon_sym_BANG, - ACTIONS(7723), 1, - anon_sym_QMARK, - STATE(4234), 1, + STATE(4228), 1, sym_comment, - STATE(5248), 1, + STATE(4987), 1, sym_type_annotation, - STATE(6146), 1, + STATE(5136), 1, sym__initializer, - ACTIONS(7318), 3, + ACTIONS(7566), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7562), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156095] = 10, + [155908] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7725), 1, - anon_sym_BANG, - ACTIONS(7727), 1, - anon_sym_QMARK, - STATE(4235), 1, + STATE(4229), 1, sym_comment, - STATE(5285), 1, + STATE(4987), 1, sym_type_annotation, - STATE(6126), 1, + STATE(5763), 1, sym__initializer, - ACTIONS(7286), 3, + ACTIONS(7566), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7562), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156128] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7655), 1, - anon_sym_LBRACE, - STATE(1419), 1, - sym_class_body, - STATE(4236), 1, - sym_comment, - STATE(4579), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6479), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [156165] = 12, + [155939] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7729), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_class_body, - STATE(4237), 1, - sym_comment, - STATE(4566), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6446), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [156202] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7733), 1, - anon_sym_DOT, - STATE(4238), 1, - sym_comment, - STATE(5519), 1, - sym_arguments, - STATE(6734), 1, - sym_type_arguments, - ACTIONS(7731), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [156233] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7735), 1, - anon_sym_DOT, - STATE(2631), 1, - sym_template_string, - STATE(3349), 1, - sym_arguments, - STATE(4239), 1, - sym_comment, - STATE(5524), 1, - sym_type_arguments, - STATE(6687), 1, - sym_optional_chain, - [156270] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7575), 1, + ACTIONS(7682), 1, anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - STATE(3268), 1, + STATE(305), 1, sym_class_body, - STATE(4240), 1, + STATE(4230), 1, sym_comment, - STATE(4508), 1, + STATE(4388), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6943), 1, + STATE(6303), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [156307] = 12, + [155976] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7645), 1, + ACTIONS(7610), 1, anon_sym_LBRACE, - STATE(360), 1, + STATE(439), 1, sym_class_body, - STATE(4241), 1, + STATE(4231), 1, sym_comment, - STATE(4564), 1, + STATE(4438), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6428), 1, + STATE(6655), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [156344] = 12, + [156013] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(7140), 1, + ACTIONS(7093), 1, anon_sym_LT, - STATE(2631), 1, + ACTIONS(7684), 1, + anon_sym_DOT, + STATE(2561), 1, sym_template_string, - STATE(2946), 1, + STATE(3321), 1, sym_arguments, - STATE(4002), 1, - sym_type_arguments, - STATE(4242), 1, + STATE(4232), 1, sym_comment, - STATE(6687), 1, - sym_optional_chain, - [156381] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(7082), 1, - anon_sym_LT, - STATE(2925), 1, - sym_arguments, - STATE(3163), 1, - sym_template_string, - STATE(4121), 1, + STATE(5525), 1, sym_type_arguments, - STATE(4243), 1, - sym_comment, - STATE(6495), 1, + STATE(6701), 1, sym_optional_chain, - [156418] = 12, + [156050] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7737), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(1169), 1, + STATE(1300), 1, sym_class_body, - STATE(4244), 1, + STATE(4233), 1, sym_comment, - STATE(4562), 1, + STATE(4394), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6344), 1, + STATE(6454), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [156455] = 12, + [156087] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7667), 1, - anon_sym_LBRACE, - STATE(1375), 1, - sym_class_body, - STATE(4245), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7688), 1, + anon_sym_BANG, + ACTIONS(7690), 1, + anon_sym_QMARK, + STATE(4234), 1, sym_comment, - STATE(4603), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6783), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [156492] = 8, + STATE(5264), 1, + sym_type_annotation, + STATE(6098), 1, + sym__initializer, + ACTIONS(7339), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156120] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + STATE(4235), 1, + sym_comment, + ACTIONS(3682), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(7739), 1, - anon_sym_EQ, - STATE(4246), 1, + [156141] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4236), 1, sym_comment, - ACTIONS(7511), 5, + ACTIONS(3546), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [156521] = 12, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156162] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7697), 1, + ACTIONS(7604), 1, anon_sym_LBRACE, - STATE(1020), 1, - sym_class_body, - STATE(4247), 1, + STATE(4237), 1, sym_comment, - STATE(4651), 1, + STATE(4421), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6505), 1, + STATE(6597), 1, sym_class_heritage, - STATE(7274), 1, + STATE(6643), 1, + sym_class_body, + STATE(7277), 1, sym_implements_clause, - [156558] = 10, + [156199] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7741), 1, + ACTIONS(7692), 1, anon_sym_BANG, - ACTIONS(7743), 1, + ACTIONS(7694), 1, anon_sym_QMARK, - STATE(4248), 1, + STATE(4238), 1, sym_comment, - STATE(5264), 1, + STATE(5265), 1, sym_type_annotation, STATE(6100), 1, sym__initializer, - ACTIONS(7286), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156591] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7587), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_class_body, - STATE(4249), 1, - sym_comment, - STATE(4561), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6317), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [156628] = 10, + [156232] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7745), 1, + ACTIONS(7696), 1, anon_sym_BANG, - ACTIONS(7747), 1, + ACTIONS(7698), 1, anon_sym_QMARK, - STATE(4250), 1, + STATE(4239), 1, sym_comment, - STATE(5102), 1, + STATE(4850), 1, sym_type_annotation, - STATE(5950), 1, + STATE(6128), 1, sym__initializer, - ACTIONS(7312), 3, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156661] = 10, + [156265] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7749), 1, + ACTIONS(7700), 1, anon_sym_BANG, - ACTIONS(7751), 1, + ACTIONS(7702), 1, anon_sym_QMARK, - STATE(4251), 1, + STATE(4240), 1, sym_comment, - STATE(5244), 1, + STATE(5353), 1, sym_type_annotation, - STATE(6130), 1, + STATE(6286), 1, sym__initializer, - ACTIONS(7318), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156694] = 4, + [156298] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4252), 1, - sym_comment, - ACTIONS(5265), 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(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, anon_sym_extends, - [156715] = 4, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4241), 1, + sym_comment, + STATE(4580), 1, + sym_type_parameters, + STATE(4920), 1, + sym_class_body, + STATE(5679), 1, + sym_extends_clause, + STATE(6862), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [156335] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4253), 1, + STATE(4242), 1, sym_comment, - ACTIONS(5280), 9, + ACTIONS(3664), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342201,101 +344318,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156736] = 4, + [156356] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4254), 1, - sym_comment, - ACTIONS(5011), 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(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, anon_sym_extends, - [156757] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7555), 1, - sym_identifier, - ACTIONS(7753), 1, - anon_sym_RBRACE, - STATE(4255), 1, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3144), 1, + sym_class_body, + STATE(4243), 1, sym_comment, - STATE(5558), 1, - sym_string, - STATE(5732), 1, - sym__module_export_name, - STATE(6819), 1, - sym_export_specifier, - ACTIONS(7557), 2, - anon_sym_type, - anon_sym_typeof, - [156792] = 8, + STATE(4639), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6941), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [156393] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(7755), 1, - anon_sym_EQ, - ACTIONS(7757), 1, - anon_sym_DOT, - STATE(4256), 1, - sym_comment, - STATE(4367), 1, - sym_arguments, - ACTIONS(7513), 5, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7660), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [156821] = 12, + STATE(1062), 1, + sym_class_body, + STATE(4244), 1, + sym_comment, + STATE(4551), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6304), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [156430] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7704), 1, anon_sym_LBRACE, - STATE(1507), 1, + STATE(1046), 1, sym_class_body, - STATE(4257), 1, + STATE(4245), 1, sym_comment, - STATE(4636), 1, + STATE(4566), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6674), 1, + STATE(6506), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [156858] = 4, + [156467] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4258), 1, + STATE(4246), 1, sym_comment, - ACTIONS(4965), 9, + ACTIONS(3564), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342305,149 +344410,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156879] = 4, + [156488] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4259), 1, - sym_comment, - ACTIONS(7761), 9, + ACTIONS(7263), 1, anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7706), 1, + anon_sym_BANG, + ACTIONS(7708), 1, + anon_sym_QMARK, + STATE(4247), 1, + sym_comment, + STATE(5364), 1, + sym_type_annotation, + STATE(6257), 1, + sym__initializer, + ACTIONS(7339), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + anon_sym_SEMI, + [156521] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7710), 1, + anon_sym_BANG, + ACTIONS(7712), 1, anon_sym_QMARK, - [156900] = 12, + STATE(4248), 1, + sym_comment, + STATE(5366), 1, + sym_type_annotation, + STATE(6255), 1, + sym__initializer, + ACTIONS(7339), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156554] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, + ACTIONS(5154), 1, anon_sym_QMARK_DOT, - ACTIONS(7082), 1, + ACTIONS(7093), 1, anon_sym_LT, - STATE(2631), 1, - sym_template_string, - STATE(3326), 1, + STATE(2415), 1, sym_arguments, - STATE(3908), 1, + STATE(2561), 1, + sym_template_string, + STATE(3930), 1, sym_type_arguments, - STATE(4260), 1, + STATE(4249), 1, sym_comment, - STATE(6687), 1, + STATE(6701), 1, sym_optional_chain, - [156937] = 10, + [156591] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7763), 1, + ACTIONS(7714), 1, anon_sym_BANG, - ACTIONS(7765), 1, + ACTIONS(7716), 1, anon_sym_QMARK, - STATE(4261), 1, + STATE(4250), 1, sym_comment, - STATE(5262), 1, + STATE(5246), 1, sym_type_annotation, - STATE(6095), 1, + STATE(6134), 1, sym__initializer, - ACTIONS(7286), 3, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156970] = 12, + [156624] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7709), 1, + ACTIONS(7642), 1, anon_sym_LBRACE, - STATE(406), 1, + STATE(3393), 1, sym_class_body, - STATE(4262), 1, + STATE(4251), 1, sym_comment, - STATE(4621), 1, + STATE(4512), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6555), 1, + STATE(6744), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [157007] = 10, + [156661] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(7093), 1, + anon_sym_LT, + STATE(4252), 1, + sym_comment, + STATE(5525), 1, + sym_type_arguments, + STATE(6701), 1, + sym_optional_chain, + STATE(2561), 2, + sym_template_string, + sym_arguments, + [156696] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7767), 1, + ACTIONS(7718), 1, anon_sym_BANG, - ACTIONS(7769), 1, + ACTIONS(7720), 1, anon_sym_QMARK, - STATE(4263), 1, + STATE(4253), 1, sym_comment, - STATE(5350), 1, + STATE(5287), 1, sym_type_annotation, - STATE(6284), 1, + STATE(6121), 1, sym__initializer, - ACTIONS(7286), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157040] = 9, + [156729] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7722), 1, + anon_sym_BANG, + ACTIONS(7724), 1, + anon_sym_QMARK, + STATE(4254), 1, + sym_comment, + STATE(5066), 1, + sym_type_annotation, + STATE(5879), 1, + sym__initializer, + ACTIONS(7367), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156762] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2799), 1, + ACTIONS(2808), 1, anon_sym_RBRACE, - ACTIONS(7252), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(7633), 1, + ACTIONS(7590), 1, anon_sym_COMMA, - STATE(4264), 1, + STATE(4255), 1, sym_comment, - STATE(5737), 1, - aux_sym_object_repeat1, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4642), 4, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [157071] = 4, + [156793] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4265), 1, + STATE(4256), 1, sym_comment, - ACTIONS(5356), 9, + ACTIONS(3612), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342457,423 +344638,503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157092] = 12, + [156814] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(7093), 1, + anon_sym_LT, + STATE(2561), 1, + sym_template_string, + STATE(3268), 1, + sym_arguments, + STATE(3930), 1, + sym_type_arguments, + STATE(4257), 1, + sym_comment, + STATE(6701), 1, + sym_optional_chain, + [156851] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7729), 1, + ACTIONS(7642), 1, anon_sym_LBRACE, - STATE(1280), 1, + STATE(2540), 1, sym_class_body, - STATE(4266), 1, + STATE(4258), 1, sym_comment, - STATE(4552), 1, + STATE(4504), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6373), 1, + STATE(6714), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [157129] = 4, + [156888] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4267), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4259), 1, + sym_comment, + STATE(4508), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6146), 1, + sym_class_body, + STATE(6735), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [156925] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7726), 1, + anon_sym_BANG, + ACTIONS(7728), 1, + anon_sym_QMARK, + STATE(4260), 1, sym_comment, - ACTIONS(5345), 9, + STATE(5056), 1, + sym_type_annotation, + STATE(5868), 1, + sym__initializer, + ACTIONS(7367), 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, - [157150] = 4, + [156958] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4268), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7730), 1, + anon_sym_BANG, + ACTIONS(7732), 1, + anon_sym_QMARK, + STATE(4261), 1, + sym_comment, + STATE(5250), 1, + sym_type_annotation, + STATE(6149), 1, + sym__initializer, + ACTIONS(7327), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156991] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7734), 1, + anon_sym_BANG, + ACTIONS(7736), 1, + anon_sym_QMARK, + STATE(4262), 1, sym_comment, - ACTIONS(5345), 9, + STATE(5050), 1, + sym_type_annotation, + STATE(5866), 1, + sym__initializer, + ACTIONS(7367), 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, - [157171] = 10, + [157024] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7771), 1, + ACTIONS(7738), 1, anon_sym_BANG, - ACTIONS(7773), 1, + ACTIONS(7740), 1, anon_sym_QMARK, - STATE(4269), 1, + STATE(4263), 1, sym_comment, - STATE(5359), 1, + STATE(4941), 1, sym_type_annotation, - STATE(6272), 1, + STATE(5722), 1, sym__initializer, - ACTIONS(7286), 3, + ACTIONS(7367), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157204] = 4, + [157057] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4270), 1, + ACTIONS(7742), 1, + anon_sym_COLON, + STATE(4264), 1, sym_comment, - ACTIONS(5278), 9, + STATE(5270), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7542), 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, - [157225] = 9, + [157082] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4271), 1, + ACTIONS(7744), 1, + anon_sym_BANG, + ACTIONS(7746), 1, + anon_sym_QMARK, + STATE(4265), 1, sym_comment, - STATE(5142), 1, + STATE(5352), 1, sym_type_annotation, - STATE(5976), 1, + STATE(6288), 1, sym__initializer, - ACTIONS(7368), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7366), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157256] = 4, + [157115] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4272), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7748), 1, + anon_sym_BANG, + ACTIONS(7750), 1, + anon_sym_QMARK, + STATE(4266), 1, sym_comment, - ACTIONS(5278), 9, + STATE(5251), 1, + sym_type_annotation, + STATE(6151), 1, + sym__initializer, + ACTIONS(7327), 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, - [157277] = 10, + [157148] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7775), 1, + ACTIONS(7752), 1, anon_sym_BANG, - ACTIONS(7777), 1, + ACTIONS(7754), 1, anon_sym_QMARK, - STATE(4273), 1, + STATE(4267), 1, sym_comment, - STATE(5249), 1, + STATE(5254), 1, sym_type_annotation, - STATE(6147), 1, + STATE(6153), 1, sym__initializer, - ACTIONS(7318), 3, + ACTIONS(7327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157310] = 12, + [157181] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4274), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7758), 1, + anon_sym_BANG, + ACTIONS(7760), 1, + anon_sym_QMARK, + STATE(4268), 1, sym_comment, - STATE(4448), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6141), 1, - sym_class_body, - STATE(6737), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [157347] = 12, + STATE(4944), 1, + sym_type_annotation, + STATE(5729), 1, + sym__initializer, + ACTIONS(7756), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157214] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7093), 1, anon_sym_LT, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - STATE(3125), 1, - sym_class_body, - STATE(4275), 1, + ACTIONS(7764), 1, + anon_sym_DOT, + STATE(4269), 1, sym_comment, - STATE(4433), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6845), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [157384] = 12, + STATE(5521), 1, + sym_arguments, + STATE(6751), 1, + sym_type_arguments, + ACTIONS(7762), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [157245] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7781), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(2566), 1, + STATE(3143), 1, sym_class_body, - STATE(4276), 1, + STATE(4270), 1, sym_comment, - STATE(4432), 1, + STATE(4545), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6714), 1, + STATE(6758), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [157421] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(7082), 1, - anon_sym_LT, - STATE(4277), 1, - sym_comment, - STATE(5524), 1, - sym_type_arguments, - STATE(6687), 1, - sym_optional_chain, - STATE(2631), 2, - sym_template_string, - sym_arguments, - [157456] = 10, + [157282] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7783), 1, - anon_sym_BANG, - ACTIONS(7785), 1, - anon_sym_QMARK, - STATE(4278), 1, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7596), 1, + anon_sym_PIPE, + ACTIONS(7598), 1, + anon_sym_extends, + STATE(4271), 1, sym_comment, - STATE(5250), 1, - sym_type_annotation, - STATE(6149), 1, - sym__initializer, - ACTIONS(7318), 3, + ACTIONS(5092), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157489] = 10, + anon_sym_LBRACK, + [157309] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7787), 1, + ACTIONS(7766), 1, anon_sym_BANG, - ACTIONS(7789), 1, + ACTIONS(7768), 1, anon_sym_QMARK, - STATE(4279), 1, + STATE(4272), 1, sym_comment, - STATE(4848), 1, + STATE(5021), 1, sym_type_annotation, - STATE(6124), 1, + STATE(5845), 1, sym__initializer, - ACTIONS(7318), 3, + ACTIONS(7367), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157522] = 12, + [157342] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7781), 1, + ACTIONS(7770), 1, anon_sym_LBRACE, - STATE(3397), 1, + STATE(1574), 1, sym_class_body, - STATE(4280), 1, + STATE(4273), 1, sym_comment, - STATE(4642), 1, + STATE(4467), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6741), 1, + STATE(6835), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [157559] = 5, + [157379] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7791), 1, - anon_sym_EQ, - STATE(4281), 1, - sym_comment, - ACTIONS(7793), 8, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7680), 1, 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, - [157582] = 5, + STATE(980), 1, + sym_class_body, + STATE(4274), 1, + sym_comment, + STATE(4570), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6307), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [157416] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7795), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4282), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7772), 1, + anon_sym_BANG, + ACTIONS(7774), 1, + anon_sym_QMARK, + STATE(4275), 1, sym_comment, - ACTIONS(7797), 8, - anon_sym_LBRACE, + STATE(5245), 1, + sym_type_annotation, + STATE(6133), 1, + sym__initializer, + ACTIONS(7327), 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, - [157605] = 4, + anon_sym_SEMI, + [157449] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4283), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7776), 1, + anon_sym_BANG, + ACTIONS(7778), 1, + anon_sym_QMARK, + STATE(4276), 1, sym_comment, - ACTIONS(4446), 9, + STATE(5278), 1, + sym_type_annotation, + STATE(6166), 1, + sym__initializer, + ACTIONS(7327), 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, - [157626] = 12, + [157482] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7779), 1, + ACTIONS(7600), 1, anon_sym_LBRACE, - STATE(4284), 1, + STATE(1492), 1, + sym_class_body, + STATE(4277), 1, sym_comment, - STATE(4528), 1, + STATE(4411), 1, sym_type_parameters, - STATE(4917), 1, - sym_class_body, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6866), 1, + STATE(6814), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [157663] = 4, + [157519] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4285), 1, + STATE(4278), 1, sym_comment, - ACTIONS(5320), 9, + ACTIONS(5086), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342883,14 +345144,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157684] = 4, + [157540] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4286), 1, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7780), 1, + anon_sym_DOT, + STATE(2561), 1, + sym_template_string, + STATE(3082), 1, + sym_arguments, + STATE(4279), 1, + sym_comment, + STATE(5525), 1, + sym_type_arguments, + STATE(6701), 1, + sym_optional_chain, + [157577] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4280), 1, sym_comment, - ACTIONS(5316), 9, + ACTIONS(5088), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342900,14 +345186,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157705] = 4, + [157598] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4287), 1, + STATE(4281), 1, sym_comment, - ACTIONS(5290), 9, + ACTIONS(5247), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342917,221 +345203,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157726] = 5, + [157619] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2763), 1, + anon_sym_RBRACE, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7799), 1, + ACTIONS(7295), 1, anon_sym_EQ, - STATE(4288), 1, - sym_comment, - ACTIONS(7801), 8, - anon_sym_LBRACE, + ACTIONS(7590), 1, anon_sym_COMMA, + STATE(4282), 1, + sym_comment, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [157749] = 11, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [157650] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(7082), 1, - anon_sym_LT, - STATE(4289), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7782), 1, + anon_sym_BANG, + ACTIONS(7784), 1, + anon_sym_QMARK, + STATE(4283), 1, sym_comment, - STATE(5571), 1, - sym_type_arguments, - STATE(6495), 1, - sym_optional_chain, - STATE(3163), 2, - sym_template_string, - sym_arguments, - [157784] = 12, + STATE(5275), 1, + sym_type_annotation, + STATE(6174), 1, + sym__initializer, + ACTIONS(7327), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157683] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(7082), 1, - anon_sym_LT, - STATE(2631), 1, - sym_template_string, - STATE(3226), 1, - sym_arguments, - STATE(3908), 1, - sym_type_arguments, - STATE(4290), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7786), 1, + anon_sym_BANG, + ACTIONS(7788), 1, + anon_sym_QMARK, + STATE(4284), 1, sym_comment, - STATE(6687), 1, - sym_optional_chain, - [157821] = 5, + STATE(5015), 1, + sym_type_annotation, + STATE(5820), 1, + sym__initializer, + ACTIONS(7367), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157716] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7803), 1, - anon_sym_EQ, - STATE(4291), 1, + ACTIONS(7742), 1, + anon_sym_COLON, + STATE(4285), 1, sym_comment, - ACTIONS(7805), 8, + STATE(5324), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7556), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, + [157741] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4286), 1, + sym_comment, + ACTIONS(7790), 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_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [157844] = 4, + anon_sym_QMARK, + [157762] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4292), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7792), 1, + anon_sym_BANG, + ACTIONS(7794), 1, + anon_sym_QMARK, + STATE(4287), 1, sym_comment, - ACTIONS(4452), 9, + STATE(4899), 1, + sym_type_annotation, + STATE(5694), 1, + sym__initializer, + ACTIONS(7367), 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, - [157865] = 10, + [157795] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7602), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_class_body, + STATE(4288), 1, + sym_comment, + STATE(4416), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6477), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [157832] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7809), 1, + ACTIONS(7796), 1, anon_sym_BANG, - ACTIONS(7811), 1, + ACTIONS(7798), 1, anon_sym_QMARK, - STATE(4293), 1, + STATE(4289), 1, sym_comment, - STATE(4948), 1, + STATE(5194), 1, sym_type_annotation, - STATE(5709), 1, + STATE(6047), 1, sym__initializer, - ACTIONS(7807), 3, + ACTIONS(7279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157898] = 4, + [157865] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4294), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4290), 1, sym_comment, - ACTIONS(7813), 9, + STATE(4582), 1, + sym_type_parameters, + STATE(4935), 1, + sym_class_body, + STATE(5679), 1, + sym_extends_clause, + STATE(6948), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [157902] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(7271), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7800), 1, + anon_sym_BANG, + ACTIONS(7802), 1, anon_sym_QMARK, - [157919] = 4, + STATE(4291), 1, + sym_comment, + STATE(4940), 1, + sym_type_annotation, + STATE(5720), 1, + sym__initializer, + ACTIONS(7367), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157935] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4295), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3079), 1, + sym_class_body, + STATE(4292), 1, + sym_comment, + STATE(4587), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6934), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [157972] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4293), 1, sym_comment, - ACTIONS(7805), 9, + ACTIONS(5239), 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_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157993] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7804), 1, + anon_sym_BANG, + ACTIONS(7806), 1, + anon_sym_QMARK, + STATE(4294), 1, + sym_comment, + STATE(5342), 1, + sym_type_annotation, + STATE(6261), 1, + sym__initializer, + ACTIONS(7339), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158026] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, + anon_sym_LPAREN, + ACTIONS(5484), 1, + anon_sym_BQUOTE, + ACTIONS(7093), 1, + anon_sym_LT, + ACTIONS(7808), 1, anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [157940] = 12, + STATE(3261), 1, + sym_template_string, + STATE(3403), 1, + sym_arguments, + STATE(4295), 1, + sym_comment, + STATE(5573), 1, + sym_type_arguments, + STATE(6511), 1, + sym_optional_chain, + [158063] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7779), 1, + ACTIONS(7704), 1, anon_sym_LBRACE, + STATE(1136), 1, + sym_class_body, STATE(4296), 1, sym_comment, - STATE(4523), 1, + STATE(4423), 1, sym_type_parameters, - STATE(4881), 1, - sym_class_body, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6942), 1, + STATE(6471), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [157977] = 10, + [158100] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7815), 1, - anon_sym_BANG, - ACTIONS(7817), 1, - anon_sym_QMARK, STATE(4297), 1, sym_comment, - STATE(5270), 1, - sym_type_annotation, - STATE(6176), 1, - sym__initializer, - ACTIONS(7318), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158010] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4298), 1, - sym_comment, - ACTIONS(5133), 9, + ACTIONS(5241), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343141,14 +345558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158031] = 4, + [158121] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4299), 1, + STATE(4298), 1, sym_comment, - ACTIONS(5067), 9, + ACTIONS(5241), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343158,14 +345575,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158052] = 4, + [158142] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4300), 1, + STATE(4299), 1, sym_comment, - ACTIONS(5121), 9, + ACTIONS(5014), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343175,31 +345592,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158073] = 4, + [158163] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4301), 1, - sym_comment, - ACTIONS(7801), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7644), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [158094] = 4, + STATE(4300), 1, + sym_comment, + STATE(4590), 1, + sym_type_parameters, + STATE(4949), 1, + sym_class_body, + STATE(5679), 1, + sym_extends_clause, + STATE(6907), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [158200] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4302), 1, + STATE(4301), 1, sym_comment, - ACTIONS(5087), 9, + ACTIONS(5317), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343209,127 +345634,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158115] = 10, + [158221] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7819), 1, + ACTIONS(7810), 1, anon_sym_BANG, - ACTIONS(7821), 1, + ACTIONS(7812), 1, anon_sym_QMARK, - STATE(4303), 1, + STATE(4302), 1, sym_comment, - STATE(5273), 1, + STATE(5291), 1, sym_type_annotation, - STATE(6164), 1, + STATE(6131), 1, sym__initializer, - ACTIONS(7318), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158148] = 5, + [158254] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7823), 1, - anon_sym_EQ, - STATE(4304), 1, + STATE(4303), 1, sym_comment, - ACTIONS(4452), 8, + ACTIONS(5309), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, - [158171] = 9, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [158275] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4305), 1, + STATE(4304), 1, sym_comment, - STATE(5114), 1, - sym_type_annotation, - STATE(5993), 1, - sym__initializer, - ACTIONS(7827), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7825), 3, + ACTIONS(5329), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [158202] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7737), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_class_body, - STATE(4306), 1, - sym_comment, - STATE(4624), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6567), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [158239] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5465), 1, - anon_sym_BQUOTE, - ACTIONS(7082), 1, - anon_sym_LT, - ACTIONS(7829), 1, - anon_sym_DOT, - STATE(3163), 1, - sym_template_string, - STATE(3394), 1, - sym_arguments, - STATE(4307), 1, - sym_comment, - STATE(5571), 1, - sym_type_arguments, - STATE(6495), 1, - sym_optional_chain, - [158276] = 4, + [158296] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4308), 1, + STATE(4305), 1, sym_comment, - ACTIONS(5253), 9, + ACTIONS(5301), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343339,14 +345708,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158297] = 4, + [158317] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4309), 1, + STATE(4306), 1, sym_comment, - ACTIONS(5273), 9, + ACTIONS(5014), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343356,39 +345725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158318] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4310), 1, - sym_comment, - STATE(4512), 1, - sym_type_parameters, - STATE(4946), 1, - sym_class_body, - STATE(5683), 1, - sym_extends_clause, - STATE(6899), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [158355] = 4, + [158338] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4311), 1, + STATE(4307), 1, sym_comment, - ACTIONS(5360), 9, + ACTIONS(5339), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343398,71 +345742,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158376] = 9, + [158359] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + STATE(4308), 1, + sym_comment, + ACTIONS(7814), 9, anon_sym_EQ, - ACTIONS(7633), 1, anon_sym_COMMA, - ACTIONS(7831), 1, anon_sym_RBRACE, - STATE(4312), 1, - sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(4642), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [158407] = 4, + [158380] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4313), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7816), 1, + anon_sym_BANG, + ACTIONS(7818), 1, + anon_sym_QMARK, + STATE(4309), 1, sym_comment, - ACTIONS(7797), 9, + STATE(5189), 1, + sym_type_annotation, + STATE(6044), 1, + sym__initializer, + ACTIONS(7279), 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, - [158428] = 5, + [158413] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4314), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7820), 1, + anon_sym_BANG, + ACTIONS(7822), 1, + anon_sym_QMARK, + STATE(4310), 1, sym_comment, - ACTIONS(4446), 8, - anon_sym_LBRACE, + STATE(5373), 1, + sym_type_annotation, + STATE(6233), 1, + sym__initializer, + ACTIONS(7339), 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, - [158451] = 4, + anon_sym_SEMI, + [158446] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4315), 1, + STATE(4311), 1, sym_comment, - ACTIONS(5153), 9, + ACTIONS(5273), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343472,53 +345822,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158472] = 7, + [158467] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, - anon_sym_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE, - ACTIONS(7631), 1, - anon_sym_extends, - STATE(4316), 1, + STATE(4312), 1, sym_comment, - ACTIONS(5153), 6, + ACTIONS(5269), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [158499] = 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [158488] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7703), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4317), 1, + ACTIONS(7824), 1, + anon_sym_BANG, + ACTIONS(7826), 1, + anon_sym_QMARK, + STATE(4313), 1, sym_comment, - STATE(5267), 3, + STATE(5375), 1, sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7569), 5, + STATE(6230), 1, + sym__initializer, + ACTIONS(7339), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [158524] = 4, + [158521] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4318), 1, + STATE(4314), 1, sym_comment, - ACTIONS(5073), 9, + ACTIONS(5265), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343528,34 +345879,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158545] = 7, + [158542] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, - anon_sym_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE, - ACTIONS(7631), 1, - anon_sym_extends, - STATE(4319), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4315), 1, sym_comment, - ACTIONS(5031), 6, + STATE(5144), 1, + sym_type_annotation, + STATE(5980), 1, + sym__initializer, + ACTIONS(7267), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7265), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [158572] = 4, + [158573] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4320), 1, + STATE(4316), 1, sym_comment, - ACTIONS(4979), 9, + ACTIONS(5399), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343565,39 +345918,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158593] = 12, + [158594] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(4321), 1, + ACTIONS(2806), 1, + anon_sym_RBRACE, + ACTIONS(7295), 1, + anon_sym_EQ, + ACTIONS(7590), 1, + anon_sym_COMMA, + STATE(4317), 1, sym_comment, - STATE(4396), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6517), 1, - sym_class_body, - STATE(6597), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [158630] = 4, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4649), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [158625] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4322), 1, + STATE(4318), 1, sym_comment, - ACTIONS(5406), 9, + ACTIONS(5026), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343607,391 +345957,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158651] = 5, + [158646] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, + ACTIONS(7594), 1, anon_sym_AMP, - STATE(4323), 1, - sym_comment, - ACTIONS(5376), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7596), 1, anon_sym_PIPE, + ACTIONS(7598), 1, anon_sym_extends, - [158674] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4324), 1, + STATE(4319), 1, sym_comment, - ACTIONS(5312), 9, + ACTIONS(5026), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [158695] = 12, + [158673] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(1620), 1, - sym_class_body, - STATE(4325), 1, + STATE(4320), 1, sym_comment, - STATE(4530), 1, + STATE(4568), 1, sym_type_parameters, - STATE(5683), 1, + STATE(4970), 1, + sym_class_body, + STATE(5679), 1, sym_extends_clause, - STATE(6832), 1, + STATE(6840), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [158732] = 7, + [158710] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, - anon_sym_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE, - ACTIONS(7631), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, anon_sym_extends, - STATE(4326), 1, - sym_comment, - ACTIONS(5259), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7654), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [158759] = 12, + STATE(1167), 1, + sym_class_body, + STATE(4321), 1, + sym_comment, + STATE(4419), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6790), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [158747] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - STATE(3260), 1, + ACTIONS(7682), 1, + anon_sym_LBRACE, + STATE(332), 1, sym_class_body, - STATE(4327), 1, + STATE(4322), 1, sym_comment, - STATE(4514), 1, + STATE(4627), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6908), 1, + STATE(6316), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [158796] = 4, + [158784] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4328), 1, - sym_comment, - ACTIONS(5019), 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(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, anon_sym_extends, - [158817] = 10, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(1226), 1, + sym_class_body, + STATE(4323), 1, + sym_comment, + STATE(4417), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6386), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [158821] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7835), 1, + ACTIONS(7828), 1, anon_sym_BANG, - ACTIONS(7837), 1, + ACTIONS(7830), 1, anon_sym_QMARK, - STATE(4329), 1, + STATE(4324), 1, sym_comment, - STATE(5224), 1, + STATE(5310), 1, sym_type_annotation, - STATE(6039), 1, + STATE(6161), 1, sym__initializer, - ACTIONS(7807), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158850] = 9, + [158854] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2801), 1, - anon_sym_RBRACE, - ACTIONS(7252), 1, - anon_sym_EQ, - ACTIONS(7633), 1, - anon_sym_COMMA, - STATE(4330), 1, + STATE(4325), 1, sym_comment, - STATE(5738), 1, - aux_sym_object_pattern_repeat1, - STATE(5844), 1, - aux_sym_object_repeat1, - ACTIONS(4642), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [158881] = 10, + ACTIONS(5237), 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, + [158875] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7839), 1, - anon_sym_BANG, - ACTIONS(7841), 1, - anon_sym_QMARK, - STATE(4331), 1, + ACTIONS(7594), 1, + anon_sym_AMP, + STATE(4326), 1, sym_comment, - STATE(5243), 1, - sym_type_annotation, - STATE(6129), 1, - sym__initializer, - ACTIONS(7318), 3, + ACTIONS(5233), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [158914] = 12, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [158898] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4937), 1, - anon_sym_DOT, - ACTIONS(4997), 1, - anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(7082), 1, - anon_sym_LT, - STATE(2423), 1, - sym_arguments, - STATE(2631), 1, - sym_template_string, - STATE(3908), 1, - sym_type_arguments, - STATE(4332), 1, + STATE(4327), 1, sym_comment, - STATE(6687), 1, - sym_optional_chain, - [158951] = 12, + ACTIONS(5229), 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, + [158919] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(5154), 1, + anon_sym_QMARK_DOT, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(4997), 1, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(5484), 1, anon_sym_BQUOTE, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - ACTIONS(7082), 1, + ACTIONS(7093), 1, anon_sym_LT, - ACTIONS(7843), 1, - anon_sym_DOT, - STATE(2631), 1, + STATE(3261), 1, sym_template_string, - STATE(2696), 1, + STATE(3346), 1, sym_arguments, - STATE(4333), 1, - sym_comment, - STATE(5524), 1, + STATE(4126), 1, sym_type_arguments, - STATE(6687), 1, + STATE(4328), 1, + sym_comment, + STATE(6511), 1, sym_optional_chain, - [158988] = 12, + [158956] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - STATE(3063), 1, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3018), 1, sym_class_body, - STATE(4334), 1, + STATE(4329), 1, sym_comment, - STATE(4395), 1, + STATE(4500), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6581), 1, + STATE(6850), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [159025] = 4, + [158993] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4335), 1, + STATE(4330), 1, sym_comment, - ACTIONS(7793), 9, + ACTIONS(5409), 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, - [159046] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4336), 1, - sym_comment, - STATE(4393), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(5999), 1, - sym_class_body, - STATE(6573), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [159083] = 7, + [159014] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, - anon_sym_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE, - ACTIONS(7631), 1, - anon_sym_extends, - STATE(4337), 1, + STATE(4331), 1, sym_comment, - ACTIONS(5263), 6, + ACTIONS(5407), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [159110] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(2457), 1, - sym_class_body, - STATE(4338), 1, - sym_comment, - STATE(4391), 1, - sym_type_parameters, - STATE(5683), 1, - sym_extends_clause, - STATE(6553), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [159147] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7577), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4339), 1, - sym_comment, - STATE(4487), 1, - sym_type_parameters, - STATE(4967), 1, - sym_class_body, - STATE(5683), 1, - sym_extends_clause, - STATE(6833), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [159184] = 4, + [159035] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4340), 1, + STATE(4332), 1, sym_comment, - ACTIONS(4971), 9, + ACTIONS(5405), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -344001,3482 +346253,3718 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [159205] = 5, + [159056] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7699), 1, - anon_sym_LBRACK, - STATE(4341), 1, + ACTIONS(7832), 1, + anon_sym_EQ, + STATE(4333), 1, sym_comment, - ACTIONS(5067), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4467), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [159228] = 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [159079] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7834), 1, + anon_sym_EQ, + STATE(4334), 1, + sym_comment, + ACTIONS(4469), 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, + [159102] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4342), 1, + STATE(4335), 1, sym_comment, - STATE(5231), 1, + STATE(5176), 1, sym_type_annotation, - STATE(6085), 1, + STATE(6021), 1, sym__initializer, - ACTIONS(7300), 2, + ACTIONS(7317), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(7298), 3, + ACTIONS(7315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159259] = 4, + [159133] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4343), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4336), 1, sym_comment, - ACTIONS(5341), 9, + STATE(5320), 1, + sym_type_annotation, + STATE(6189), 1, + sym__initializer, + ACTIONS(7361), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7359), 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, - [159280] = 10, + [159164] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(7546), 1, + sym_identifier, + ACTIONS(7836), 1, + anon_sym_RBRACE, + STATE(4337), 1, + sym_comment, + STATE(5560), 1, + sym_string, + STATE(5727), 1, + sym__module_export_name, + STATE(6822), 1, + sym_export_specifier, + ACTIONS(7548), 2, + anon_sym_type, + anon_sym_typeof, + [159199] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7838), 1, anon_sym_EQ, - ACTIONS(7266), 1, + STATE(4338), 1, + sym_comment, + ACTIONS(7634), 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, + [159222] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7845), 1, + ACTIONS(7840), 1, anon_sym_BANG, - ACTIONS(7847), 1, + ACTIONS(7842), 1, anon_sym_QMARK, - STATE(4344), 1, + STATE(4339), 1, sym_comment, - STATE(5240), 1, + STATE(5369), 1, sym_type_annotation, - STATE(6114), 1, + STATE(6251), 1, sym__initializer, - ACTIONS(7318), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159313] = 4, + [159255] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4345), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7844), 1, + anon_sym_BANG, + ACTIONS(7846), 1, + anon_sym_QMARK, + STATE(4340), 1, sym_comment, - ACTIONS(5308), 9, + STATE(4918), 1, + sym_type_annotation, + STATE(5705), 1, + sym__initializer, + ACTIONS(7367), 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, - [159334] = 4, + [159288] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4346), 1, - sym_comment, - ACTIONS(5023), 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(7273), 1, + anon_sym_LT, + ACTIONS(7586), 1, anon_sym_extends, - [159355] = 12, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7770), 1, + anon_sym_LBRACE, + STATE(1509), 1, + sym_class_body, + STATE(4341), 1, + sym_comment, + STATE(4614), 1, + sym_type_parameters, + STATE(5679), 1, + sym_extends_clause, + STATE(6677), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [159325] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - STATE(3127), 1, + ACTIONS(7666), 1, + anon_sym_LBRACE, + STATE(428), 1, sym_class_body, - STATE(4347), 1, + STATE(4342), 1, sym_comment, - STATE(4444), 1, + STATE(4441), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6732), 1, + STATE(6898), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [159392] = 8, + [159362] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7849), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, - anon_sym_QMARK_COLON, - STATE(4348), 1, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7596), 1, + anon_sym_PIPE, + ACTIONS(7598), 1, + anon_sym_extends, + STATE(4343), 1, sym_comment, - STATE(5136), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159420] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, + ACTIONS(5132), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4111), 1, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(7855), 1, - anon_sym_enum, - STATE(4349), 1, - sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5391), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [159452] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(7859), 1, - anon_sym_BQUOTE, - ACTIONS(7861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7863), 1, - sym__template_chars, - STATE(4350), 1, - sym_comment, - STATE(4726), 1, - aux_sym_template_string_repeat1, - STATE(5016), 1, - aux_sym_template_literal_type_repeat1, - STATE(5573), 1, - sym_template_substitution, - STATE(5792), 1, - sym_template_type, - [159486] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(7861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7863), 1, - sym__template_chars, - ACTIONS(7865), 1, - anon_sym_BQUOTE, - STATE(4351), 1, - sym_comment, - STATE(4659), 1, - aux_sym_template_string_repeat1, - STATE(5016), 1, - aux_sym_template_literal_type_repeat1, - STATE(5573), 1, - sym_template_substitution, - STATE(5792), 1, - sym_template_type, - [159520] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7849), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, - anon_sym_QMARK_COLON, - STATE(4352), 1, - sym_comment, - STATE(5234), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159548] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7849), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, - anon_sym_QMARK_COLON, - STATE(4353), 1, - sym_comment, - STATE(5132), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159576] = 8, + [159389] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, - ACTIONS(7849), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, - anon_sym_QMARK_COLON, - STATE(4354), 1, + STATE(4344), 1, sym_comment, - STATE(5304), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159604] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7266), 1, + ACTIONS(7848), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(7849), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, - anon_sym_QMARK_COLON, - STATE(4355), 1, - sym_comment, - STATE(5307), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159632] = 4, + anon_sym_RBRACK, + anon_sym_QMARK, + [159410] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4356), 1, + STATE(4345), 1, sym_comment, - ACTIONS(6446), 8, + ACTIONS(5076), 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_DOT, - anon_sym_PIPE_RBRACE, - [159652] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [159431] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4357), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7850), 1, + anon_sym_BANG, + ACTIONS(7852), 1, + anon_sym_QMARK, + STATE(4346), 1, sym_comment, - ACTIONS(7867), 8, + STATE(5225), 1, + sym_type_annotation, + STATE(6040), 1, + sym__initializer, + ACTIONS(7756), 3, 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, - [159672] = 7, + [159464] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7473), 1, - anon_sym_PIPE, - ACTIONS(7475), 1, - anon_sym_extends, - STATE(4358), 1, + ACTIONS(7854), 1, + anon_sym_EQ, + STATE(4347), 1, sym_comment, - ACTIONS(7869), 5, - sym__automatic_semicolon, + ACTIONS(7636), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159698] = 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [159487] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7473), 1, - anon_sym_PIPE, - ACTIONS(7475), 1, - anon_sym_extends, - STATE(4359), 1, + ACTIONS(7856), 1, + anon_sym_EQ, + STATE(4348), 1, sym_comment, - ACTIONS(7871), 5, - sym__automatic_semicolon, + ACTIONS(7640), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159724] = 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [159510] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7473), 1, - anon_sym_PIPE, - ACTIONS(7475), 1, - anon_sym_extends, - STATE(4360), 1, + ACTIONS(7858), 1, + anon_sym_EQ, + STATE(4349), 1, sym_comment, - ACTIONS(7873), 5, - sym__automatic_semicolon, + ACTIONS(7638), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159750] = 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [159533] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7849), 1, + ACTIONS(7860), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, + ACTIONS(7862), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, + ACTIONS(7864), 1, anon_sym_QMARK_COLON, - STATE(4361), 1, + STATE(4350), 1, sym_comment, - STATE(5312), 4, + STATE(5315), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159778] = 10, + [159561] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4107), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - ACTIONS(7875), 1, + ACTIONS(7866), 1, anon_sym_enum, - STATE(4362), 1, + STATE(4351), 1, sym_comment, - STATE(4506), 1, + STATE(4520), 1, sym__destructuring_pattern, - STATE(5471), 1, + STATE(5566), 1, sym_variable_declarator, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - [159810] = 7, + [159593] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7627), 1, - anon_sym_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE, - ACTIONS(7631), 1, - anon_sym_extends, - STATE(4363), 1, - sym_comment, - ACTIONS(7511), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [159836] = 10, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7877), 1, - anon_sym_enum, - STATE(4364), 1, + ACTIONS(7868), 1, + sym_escape_sequence, + ACTIONS(7870), 1, + anon_sym_BQUOTE, + ACTIONS(7872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7874), 1, + sym__template_chars, + STATE(4352), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5383), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [159868] = 10, + STATE(4691), 1, + aux_sym_template_string_repeat1, + STATE(5018), 1, + aux_sym_template_literal_type_repeat1, + STATE(5578), 1, + sym_template_substitution, + STATE(5795), 1, + sym_template_type, + [159627] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4107), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - ACTIONS(7879), 1, + ACTIONS(7876), 1, anon_sym_enum, - STATE(4365), 1, + STATE(4353), 1, sym_comment, - STATE(4506), 1, + STATE(4520), 1, sym__destructuring_pattern, - STATE(5585), 1, + STATE(5430), 1, sym_variable_declarator, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - [159900] = 11, + [159659] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(7861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7863), 1, - sym__template_chars, - ACTIONS(7881), 1, - anon_sym_BQUOTE, - STATE(4366), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7860), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7862), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7864), 1, + anon_sym_QMARK_COLON, + STATE(4354), 1, sym_comment, - STATE(4726), 1, - aux_sym_template_string_repeat1, - STATE(5023), 1, - aux_sym_template_literal_type_repeat1, - STATE(5573), 1, - sym_template_substitution, - STATE(5792), 1, - sym_template_type, - [159934] = 5, + STATE(5173), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [159687] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7883), 1, - anon_sym_EQ, - STATE(4367), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + STATE(4355), 1, sym_comment, - ACTIONS(7867), 7, - anon_sym_LBRACE, + ACTIONS(7878), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [159956] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159713] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7885), 1, - anon_sym_EQ, - STATE(4368), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + STATE(4356), 1, sym_comment, - ACTIONS(6446), 7, - anon_sym_LBRACE, + ACTIONS(7880), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [159978] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159739] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7889), 1, - anon_sym_DOT, - STATE(4369), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + STATE(4357), 1, sym_comment, - ACTIONS(7887), 7, + ACTIONS(7882), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160000] = 8, + [159765] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7884), 1, + anon_sym_EQ, + STATE(4358), 1, + sym_comment, + ACTIONS(6508), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [159787] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7849), 1, + ACTIONS(7860), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, + ACTIONS(7862), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, + ACTIONS(7864), 1, anon_sym_QMARK_COLON, - STATE(4370), 1, + STATE(4359), 1, sym_comment, - STATE(4861), 4, + STATE(5312), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [160028] = 8, + [159815] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7849), 1, + ACTIONS(7860), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, + ACTIONS(7862), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, + ACTIONS(7864), 1, anon_sym_QMARK_COLON, - STATE(4371), 1, + STATE(4360), 1, sym_comment, - STATE(4864), 4, + STATE(5308), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [160056] = 11, + [159843] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(7861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7863), 1, - sym__template_chars, - ACTIONS(7891), 1, - anon_sym_BQUOTE, - STATE(4372), 1, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7596), 1, + anon_sym_PIPE, + ACTIONS(7598), 1, + anon_sym_extends, + STATE(4361), 1, sym_comment, - STATE(4659), 1, - aux_sym_template_string_repeat1, - STATE(5016), 1, - aux_sym_template_literal_type_repeat1, - STATE(5573), 1, - sym_template_substitution, - STATE(5792), 1, - sym_template_type, - [160090] = 11, + ACTIONS(7504), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [159869] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7857), 1, + ACTIONS(7868), 1, sym_escape_sequence, - ACTIONS(7861), 1, + ACTIONS(7872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7863), 1, + ACTIONS(7874), 1, sym__template_chars, - ACTIONS(7893), 1, + ACTIONS(7886), 1, anon_sym_BQUOTE, - STATE(4373), 1, + STATE(4362), 1, sym_comment, - STATE(4726), 1, + STATE(4691), 1, aux_sym_template_string_repeat1, - STATE(5016), 1, + STATE(5018), 1, aux_sym_template_literal_type_repeat1, - STATE(5573), 1, + STATE(5578), 1, sym_template_substitution, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [160124] = 11, + [159903] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7888), 1, + anon_sym_EQ, + STATE(4363), 1, + sym_comment, + ACTIONS(7890), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [159925] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7857), 1, + ACTIONS(7868), 1, sym_escape_sequence, - ACTIONS(7861), 1, + ACTIONS(7872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7863), 1, + ACTIONS(7874), 1, sym__template_chars, - ACTIONS(7895), 1, + ACTIONS(7892), 1, anon_sym_BQUOTE, - STATE(4374), 1, + STATE(4364), 1, sym_comment, - STATE(4726), 1, + STATE(4691), 1, aux_sym_template_string_repeat1, - STATE(5016), 1, + STATE(5018), 1, aux_sym_template_literal_type_repeat1, - STATE(5573), 1, + STATE(5578), 1, sym_template_substitution, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [160158] = 7, + [159959] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7216), 1, + ACTIONS(7211), 1, anon_sym_LPAREN, - ACTIONS(7897), 1, + ACTIONS(7894), 1, anon_sym_DOT, - STATE(4375), 1, + STATE(4365), 1, sym_comment, - STATE(4720), 1, + STATE(4698), 1, sym_arguments, - ACTIONS(7513), 5, + ACTIONS(7576), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [160184] = 11, + [159985] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7857), 1, + ACTIONS(7868), 1, sym_escape_sequence, - ACTIONS(7861), 1, + ACTIONS(7872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7863), 1, + ACTIONS(7874), 1, sym__template_chars, - ACTIONS(7899), 1, + ACTIONS(7896), 1, anon_sym_BQUOTE, - STATE(4376), 1, + STATE(4366), 1, sym_comment, - STATE(4726), 1, + STATE(4691), 1, aux_sym_template_string_repeat1, - STATE(5016), 1, + STATE(5022), 1, aux_sym_template_literal_type_repeat1, - STATE(5573), 1, + STATE(5578), 1, sym_template_substitution, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [160218] = 10, - ACTIONS(3), 1, + [160019] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7868), 1, + sym_escape_sequence, + ACTIONS(7872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7874), 1, + sym__template_chars, + ACTIONS(7898), 1, + anon_sym_BQUOTE, + STATE(4367), 1, + sym_comment, + STATE(4691), 1, + aux_sym_template_string_repeat1, + STATE(5018), 1, + aux_sym_template_literal_type_repeat1, + STATE(5578), 1, + sym_template_substitution, + STATE(5795), 1, + sym_template_type, + [160053] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7901), 1, - anon_sym_enum, - STATE(4377), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, + sym_escape_sequence, + ACTIONS(7872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7874), 1, + sym__template_chars, + ACTIONS(7900), 1, + anon_sym_BQUOTE, + STATE(4368), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5426), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [160250] = 10, + STATE(4691), 1, + aux_sym_template_string_repeat1, + STATE(5018), 1, + aux_sym_template_literal_type_repeat1, + STATE(5578), 1, + sym_template_substitution, + STATE(5795), 1, + sym_template_type, + [160087] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4107), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - ACTIONS(7903), 1, + ACTIONS(7902), 1, anon_sym_enum, - STATE(4378), 1, + STATE(4369), 1, sym_comment, - STATE(4506), 1, + STATE(4520), 1, sym__destructuring_pattern, - STATE(5565), 1, + STATE(5380), 1, sym_variable_declarator, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - [160282] = 10, + [160119] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(7555), 1, + ACTIONS(7546), 1, sym_identifier, - STATE(4379), 1, + STATE(4370), 1, sym_comment, - STATE(5558), 1, + STATE(5560), 1, sym_string, - STATE(5732), 1, + STATE(5727), 1, sym__module_export_name, - STATE(6819), 1, + STATE(6822), 1, sym_export_specifier, - ACTIONS(7557), 2, + ACTIONS(7548), 2, anon_sym_type, anon_sym_typeof, - [160314] = 8, + [160151] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, + sym_escape_sequence, + ACTIONS(7872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7874), 1, + sym__template_chars, + ACTIONS(7904), 1, + anon_sym_BQUOTE, + STATE(4371), 1, + sym_comment, + STATE(4672), 1, + aux_sym_template_string_repeat1, + STATE(5018), 1, + aux_sym_template_literal_type_repeat1, + STATE(5578), 1, + sym_template_substitution, + STATE(5795), 1, + sym_template_type, + [160185] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7849), 1, + ACTIONS(7860), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7851), 1, + ACTIONS(7862), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7853), 1, + ACTIONS(7864), 1, anon_sym_QMARK_COLON, - STATE(4380), 1, + STATE(4372), 1, sym_comment, - STATE(5170), 4, + STATE(5236), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [160342] = 7, + [160213] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(7907), 1, + ACTIONS(7908), 1, anon_sym_DOT, - STATE(4381), 1, + STATE(4373), 1, sym_comment, - STATE(4850), 1, + STATE(4854), 1, sym_statement_block, - ACTIONS(2128), 5, + ACTIONS(2145), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160368] = 7, + [160239] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(7909), 1, + ACTIONS(7910), 1, anon_sym_DOT, - STATE(4382), 1, + STATE(4374), 1, sym_comment, - STATE(4850), 1, + STATE(4854), 1, sym_statement_block, - ACTIONS(2128), 5, + ACTIONS(2145), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160394] = 9, + [160265] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + STATE(4375), 1, + sym_comment, + ACTIONS(6508), 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, + [160285] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4376), 1, + sym_comment, + ACTIONS(7890), 8, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7266), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [160305] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7547), 1, + ACTIONS(7564), 1, anon_sym_BANG, - STATE(4383), 1, + STATE(4377), 1, sym_comment, - STATE(4984), 1, + STATE(4987), 1, sym_type_annotation, - STATE(5762), 1, + STATE(5761), 1, sym__initializer, - ACTIONS(7545), 3, + ACTIONS(7562), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160424] = 11, + [160335] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4114), 1, + sym_identifier, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7912), 1, + anon_sym_enum, + STATE(4378), 1, + sym_comment, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5472), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [160367] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4114), 1, + sym_identifier, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7914), 1, + anon_sym_enum, + STATE(4379), 1, + sym_comment, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5393), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [160399] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7918), 1, + anon_sym_DOT, + STATE(4380), 1, + sym_comment, + ACTIONS(7916), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160421] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7857), 1, + ACTIONS(7868), 1, sym_escape_sequence, - ACTIONS(7861), 1, + ACTIONS(7872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7863), 1, + ACTIONS(7874), 1, sym__template_chars, - ACTIONS(7911), 1, + ACTIONS(7920), 1, anon_sym_BQUOTE, - STATE(4384), 1, + STATE(4381), 1, sym_comment, - STATE(4726), 1, + STATE(4672), 1, aux_sym_template_string_repeat1, - STATE(5016), 1, + STATE(5018), 1, aux_sym_template_literal_type_repeat1, - STATE(5573), 1, + STATE(5578), 1, sym_template_substitution, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [160458] = 8, + [160455] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4385), 1, + ACTIONS(7860), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7862), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7864), 1, + anon_sym_QMARK_COLON, + STATE(4382), 1, sym_comment, - STATE(5003), 1, + STATE(4860), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(5795), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160485] = 4, + [160483] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4386), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7860), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7862), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7864), 1, + anon_sym_QMARK_COLON, + STATE(4383), 1, sym_comment, - ACTIONS(5989), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + STATE(5137), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [160511] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7271), 1, anon_sym_COLON, - [160504] = 4, + ACTIONS(7860), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7862), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7864), 1, + anon_sym_QMARK_COLON, + STATE(4384), 1, + sym_comment, + STATE(5149), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [160539] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4387), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + ACTIONS(7860), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7862), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7864), 1, + anon_sym_QMARK_COLON, + STATE(4385), 1, sym_comment, - ACTIONS(2186), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160523] = 9, + STATE(4866), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [160567] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, + ACTIONS(4114), 1, + sym_identifier, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, - STATE(4388), 1, + ACTIONS(7922), 1, + anon_sym_enum, + STATE(4386), 1, sym_comment, - STATE(4506), 1, + STATE(4520), 1, sym__destructuring_pattern, - STATE(5586), 1, + STATE(5587), 1, sym_variable_declarator, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - [160552] = 6, + [160599] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4389), 1, - sym_comment, - STATE(5151), 1, - sym_type_annotation, - ACTIONS(7915), 5, + ACTIONS(7924), 1, sym__automatic_semicolon, + STATE(4387), 1, + sym_comment, + ACTIONS(2193), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160575] = 4, + [160620] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4390), 1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7682), 1, + anon_sym_LBRACE, + STATE(339), 1, + sym_class_body, + STATE(4388), 1, sym_comment, - ACTIONS(7661), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [160594] = 10, + STATE(5679), 1, + sym_extends_clause, + STATE(6320), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [160651] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7781), 1, + ACTIONS(7654), 1, anon_sym_LBRACE, - STATE(2578), 1, + STATE(1209), 1, sym_class_body, - STATE(4391), 1, + STATE(4389), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6444), 1, + STATE(6412), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [160625] = 9, + [160682] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4390), 1, + sym_comment, + ACTIONS(2217), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160701] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - ACTIONS(7913), 1, + ACTIONS(7926), 1, sym_identifier, - STATE(4392), 1, + STATE(4391), 1, sym_comment, - STATE(4506), 1, + STATE(4520), 1, sym__destructuring_pattern, - STATE(5471), 1, + STATE(5588), 1, sym_variable_declarator, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - [160654] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4393), 1, - sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(5925), 1, - sym_class_body, - STATE(6455), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [160685] = 4, + [160730] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4394), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4392), 1, sym_comment, - ACTIONS(5978), 7, + STATE(5234), 1, + sym_type_annotation, + STATE(6052), 1, + sym__initializer, + ACTIONS(7455), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [160704] = 10, + [160757] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - STATE(3156), 1, + ACTIONS(7666), 1, + anon_sym_LBRACE, + STATE(391), 1, sym_class_body, - STATE(4395), 1, + STATE(4393), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6462), 1, + STATE(6383), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [160735] = 10, + [160788] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7589), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(4396), 1, + STATE(1239), 1, + sym_class_body, + STATE(4394), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6471), 1, + STATE(6374), 1, sym_class_heritage, - STATE(6802), 1, - sym_class_body, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [160766] = 4, + [160819] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4397), 1, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4395), 1, sym_comment, - ACTIONS(2212), 7, + STATE(5153), 1, + sym_type_annotation, + ACTIONS(7928), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160785] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(3388), 1, - sym_class_body, - STATE(4398), 1, - sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6700), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [160816] = 8, + [160842] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4399), 1, + STATE(4396), 1, sym_comment, - STATE(5361), 1, + STATE(5363), 1, sym_type_annotation, - STATE(6268), 1, + STATE(6265), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160843] = 8, + [160869] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6148), 1, + sym__automatic_semicolon, + STATE(4397), 1, + sym_comment, + ACTIONS(2169), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [160890] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + STATE(4398), 1, + sym_comment, + ACTIONS(2193), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160909] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4399), 1, + sym_comment, + ACTIONS(7608), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7266), 1, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, + [160928] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(4400), 1, sym_comment, - STATE(5113), 1, - sym_type_annotation, - STATE(5984), 1, - sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7622), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [160870] = 8, + anon_sym_COLON, + [160947] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4401), 1, sym_comment, - STATE(5247), 1, + STATE(5362), 1, sym_type_annotation, - STATE(6142), 1, + STATE(6269), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160897] = 8, + [160974] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, + sym_identifier, + STATE(4402), 1, + sym_comment, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5472), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [161003] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4402), 1, + STATE(4403), 1, sym_comment, - STATE(5245), 1, + STATE(4943), 1, sym_type_annotation, - STATE(6135), 1, + STATE(5728), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160924] = 4, + [161030] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4403), 1, - sym_comment, - ACTIONS(7649), 7, - sym__automatic_semicolon, + ACTIONS(7263), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(7271), 1, anon_sym_COLON, - [160943] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(7917), 1, - sym_identifier, - STATE(2294), 1, - sym__type_query_subscript_expression, - STATE(2298), 1, - sym__type_query_member_expression, - STATE(2403), 1, - sym__type_query_call_expression, - STATE(2405), 1, - sym__type_query_instantiation_expression, STATE(4404), 1, sym_comment, - STATE(5531), 1, - sym_import, - [160974] = 10, + STATE(4950), 1, + sym_type_annotation, + STATE(5730), 1, + sym__initializer, + ACTIONS(7449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161057] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7919), 1, + ACTIONS(7930), 1, sym_identifier, - ACTIONS(7921), 1, + ACTIONS(7932), 1, anon_sym_STAR, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, STATE(4405), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6459), 1, + STATE(6474), 1, sym__call_signature, - [161005] = 5, + [161088] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7925), 1, - sym__automatic_semicolon, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4406), 1, sym_comment, - ACTIONS(2190), 6, + STATE(5368), 1, + sym_type_annotation, + STATE(6218), 1, + sym__initializer, + ACTIONS(7936), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161026] = 8, + [161115] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4407), 1, sym_comment, - STATE(5108), 1, + STATE(5370), 1, sym_type_annotation, - STATE(5964), 1, + STATE(6219), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7936), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161053] = 6, + [161142] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(2498), 1, + sym_class_body, STATE(4408), 1, sym_comment, - STATE(5300), 1, - sym_type_annotation, - ACTIONS(7927), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161076] = 8, + STATE(5679), 1, + sym_extends_clause, + STATE(6448), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [161173] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7408), 1, - anon_sym_EQ, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7644), 1, + anon_sym_LBRACE, STATE(4409), 1, sym_comment, - STATE(5491), 1, - sym_constraint, - STATE(6873), 1, - sym_default_type, - ACTIONS(7413), 2, + STATE(5679), 1, + sym_extends_clause, + STATE(5923), 1, + sym_class_body, + STATE(6458), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [161204] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, - anon_sym_extends, - ACTIONS(7929), 2, + STATE(4410), 1, + sym_comment, + STATE(5358), 1, + sym_type_annotation, + STATE(6279), 1, + sym__initializer, + ACTIONS(7447), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [161103] = 10, + anon_sym_SEMI, + [161231] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7589), 1, + ACTIONS(7600), 1, anon_sym_LBRACE, - STATE(4410), 1, + STATE(1280), 1, + sym_class_body, + STATE(4411), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6423), 1, + STATE(6819), 1, sym_class_heritage, - STATE(6847), 1, - sym_class_body, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [161134] = 10, + [161262] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7584), 1, + anon_sym_LBRACE, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(2629), 1, + STATE(1458), 1, sym_class_body, - STATE(4411), 1, + STATE(4412), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6934), 1, + STATE(6413), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [161165] = 8, + [161293] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4412), 1, + STATE(4413), 1, sym_comment, - STATE(5103), 1, + STATE(5338), 1, sym_type_annotation, - STATE(5956), 1, + STATE(6234), 1, sym__initializer, - ACTIONS(7434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161192] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4413), 1, - sym_comment, - ACTIONS(7677), 7, + ACTIONS(7447), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [161211] = 10, + [161320] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7931), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, sym_identifier, - ACTIONS(7933), 1, - anon_sym_DOT, - STATE(4382), 1, - sym_nested_identifier, STATE(4414), 1, sym_comment, - STATE(4592), 1, - sym_string, - STATE(4991), 1, - sym__module, - [161242] = 6, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5473), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [161349] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7646), 1, anon_sym_LBRACE, + STATE(3186), 1, + sym_class_body, STATE(4415), 1, sym_comment, - STATE(6844), 1, - sym_statement_block, - ACTIONS(7937), 5, + STATE(5679), 1, + sym_extends_clause, + STATE(6825), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [161380] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7602), 1, + anon_sym_LBRACE, + STATE(365), 1, + sym_class_body, + STATE(4416), 1, + sym_comment, + STATE(5679), 1, + sym_extends_clause, + STATE(6318), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [161411] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(1362), 1, + sym_class_body, + STATE(4417), 1, + sym_comment, + STATE(5679), 1, + sym_extends_clause, + STATE(6441), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [161442] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7938), 1, sym__automatic_semicolon, + STATE(4418), 1, + sym_comment, + ACTIONS(2169), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [161265] = 10, + [161463] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1379), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7654), 1, anon_sym_LBRACE, - ACTIONS(2785), 1, + STATE(1197), 1, + sym_class_body, + STATE(4419), 1, + sym_comment, + STATE(5679), 1, + sym_extends_clause, + STATE(6319), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [161494] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7939), 1, - anon_sym_LT, - ACTIONS(7941), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7943), 1, - anon_sym_LBRACE_PIPE, - STATE(4416), 1, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3159), 1, + sym_class_body, + STATE(4420), 1, sym_comment, - STATE(4987), 1, - sym_object_type, - STATE(5018), 1, - sym_type_parameters, - STATE(5834), 1, - sym_extends_type_clause, - [161296] = 9, + STATE(5679), 1, + sym_extends_clause, + STATE(6464), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [161525] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7604), 1, + anon_sym_LBRACE, + STATE(4421), 1, + sym_comment, + STATE(5679), 1, + sym_extends_clause, + STATE(6472), 1, + sym_class_heritage, + STATE(6804), 1, + sym_class_body, + STATE(7277), 1, + sym_implements_clause, + [161556] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, + ACTIONS(4205), 1, + anon_sym_DQUOTE, + ACTIONS(4207), 1, + anon_sym_SQUOTE, + ACTIONS(7940), 1, sym_identifier, - STATE(4417), 1, + ACTIONS(7942), 1, + anon_sym_DOT, + STATE(962), 1, + sym_nested_identifier, + STATE(1164), 1, + sym_string, + STATE(1490), 1, + sym__module, + STATE(4422), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5384), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [161325] = 10, + [161587] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7583), 1, + ACTIONS(7704), 1, anon_sym_LBRACE, - STATE(1009), 1, + STATE(1133), 1, sym_class_body, - STATE(4418), 1, + STATE(4423), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6320), 1, + STATE(6377), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [161356] = 8, + [161618] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4419), 1, + STATE(4424), 1, sym_comment, - STATE(5253), 1, + STATE(4964), 1, sym_type_annotation, - STATE(6155), 1, + STATE(5745), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161383] = 9, - ACTIONS(3), 1, + [161645] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + STATE(4425), 1, + sym_comment, + ACTIONS(7944), 7, + anon_sym_export, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_LT, + anon_sym_AT, + anon_sym_abstract, + [161664] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, - STATE(4420), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4426), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5390), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [161412] = 10, + STATE(5292), 1, + sym_type_annotation, + STATE(6007), 1, + sym__initializer, + ACTIONS(7455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161691] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7585), 1, - anon_sym_LBRACE, - STATE(304), 1, - sym_class_body, - STATE(4421), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4427), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6316), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [161443] = 8, + STATE(5326), 1, + sym_type_annotation, + STATE(6284), 1, + sym__initializer, + ACTIONS(7447), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161718] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4422), 1, + STATE(4428), 1, sym_comment, - STATE(5256), 1, + STATE(5288), 1, sym_type_annotation, - STATE(6156), 1, + STATE(6130), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161470] = 10, + [161745] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7587), 1, + ACTIONS(7642), 1, anon_sym_LBRACE, - STATE(1087), 1, + STATE(2569), 1, sym_class_body, - STATE(4423), 1, + STATE(4429), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6311), 1, + STATE(6936), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [161501] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [161776] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, - STATE(4424), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4430), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5391), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [161530] = 8, + STATE(5371), 1, + sym_type_annotation, + STATE(6240), 1, + sym__initializer, + ACTIONS(7447), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161803] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4425), 1, + STATE(4431), 1, sym_comment, - STATE(5098), 1, + STATE(5351), 1, sym_type_annotation, - STATE(5948), 1, + STATE(6295), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161557] = 8, + [161830] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4426), 1, + STATE(4432), 1, sym_comment, - STATE(5090), 1, + STATE(5348), 1, sym_type_annotation, - STATE(5900), 1, + STATE(6297), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161584] = 8, + [161857] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4427), 1, + STATE(4433), 1, sym_comment, STATE(5276), 1, sym_type_annotation, - STATE(6165), 1, + STATE(6108), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161611] = 8, + [161884] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4428), 1, + STATE(4434), 1, sym_comment, - STATE(5084), 1, + STATE(5133), 1, sym_type_annotation, - STATE(5923), 1, + STATE(6002), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7467), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161638] = 8, + [161911] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4429), 1, + STATE(4435), 1, sym_comment, - STATE(5241), 1, + STATE(4924), 1, sym_type_annotation, - STATE(6118), 1, + STATE(5717), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161665] = 8, + [161938] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4430), 1, + STATE(4436), 1, sym_comment, - STATE(5320), 1, + STATE(5273), 1, sym_type_annotation, - STATE(6171), 1, + STATE(6107), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161692] = 8, + [161965] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4431), 1, + STATE(4437), 1, sym_comment, - STATE(5080), 1, + STATE(5372), 1, sym_type_annotation, - STATE(5918), 1, + STATE(6238), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161719] = 10, + [161992] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(2459), 1, - sym_class_body, - STATE(4432), 1, - sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6557), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [161750] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(7610), 1, anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - STATE(3263), 1, + STATE(450), 1, sym_class_body, - STATE(4433), 1, + STATE(4438), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6804), 1, + STATE(6928), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [161781] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4434), 1, - sym_comment, - STATE(5362), 1, - sym_type_annotation, - STATE(6263), 1, - sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161808] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, - STATE(4435), 1, - sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5585), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [161837] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(7945), 1, - sym_identifier, - ACTIONS(7947), 1, - anon_sym_STAR, - STATE(4436), 1, - sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6652), 1, - sym__call_signature, - [161868] = 5, + [162023] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, + ACTIONS(7417), 1, anon_sym_EQ, - STATE(4437), 1, + STATE(4439), 1, sym_comment, - ACTIONS(4348), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [161889] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7266), 1, + STATE(5526), 1, + sym_constraint, + STATE(6702), 1, + sym_default_type, + ACTIONS(7422), 2, anon_sym_COLON, - STATE(4438), 1, - sym_comment, - STATE(5216), 1, - sym_type_annotation, - ACTIONS(7951), 5, - sym__automatic_semicolon, + anon_sym_extends, + ACTIONS(7946), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161912] = 8, + anon_sym_GT, + [162050] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4439), 1, + STATE(4440), 1, sym_comment, - STATE(5237), 1, + STATE(4967), 1, sym_type_annotation, - STATE(6105), 1, + STATE(5750), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161939] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(7953), 1, - sym_identifier, - ACTIONS(7955), 1, - anon_sym_STAR, - STATE(4440), 1, - sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6459), 1, - sym__call_signature, - [161970] = 10, + [162077] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7583), 1, + ACTIONS(7666), 1, anon_sym_LBRACE, - STATE(987), 1, + STATE(367), 1, sym_class_body, STATE(4441), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6302), 1, + STATE(6548), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [162001] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [162108] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4442), 1, sym_comment, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(5383), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [162030] = 4, + STATE(5340), 1, + sym_type_annotation, + STATE(6243), 1, + sym__initializer, + ACTIONS(7447), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162135] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4443), 1, sym_comment, - ACTIONS(7813), 7, + STATE(5033), 1, + sym_type_annotation, + STATE(5657), 1, + sym__initializer, + ACTIONS(7948), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [162049] = 10, + [162162] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - STATE(3114), 1, - sym_class_body, + ACTIONS(7417), 1, + anon_sym_EQ, STATE(4444), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6858), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [162080] = 8, + STATE(5490), 1, + sym_constraint, + STATE(6876), 1, + sym_default_type, + ACTIONS(7422), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7950), 2, + anon_sym_COMMA, + anon_sym_GT, + [162189] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4445), 1, sym_comment, - STATE(5068), 1, + STATE(4919), 1, sym_type_annotation, - STATE(5895), 1, + STATE(5715), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162107] = 8, + [162216] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7952), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4446), 1, sym_comment, - STATE(5167), 1, - sym_type_annotation, - STATE(6010), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, + ACTIONS(4378), 6, anon_sym_COMMA, - anon_sym_SEMI, - [162134] = 8, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [162237] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4447), 1, sym_comment, - STATE(5187), 1, + STATE(5376), 1, sym_type_annotation, - STATE(6027), 1, + STATE(6227), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162161] = 10, + [162264] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7779), 1, - anon_sym_LBRACE, STATE(4448), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6011), 1, - sym_class_body, - STATE(6575), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [162192] = 10, + ACTIONS(7790), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [162283] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7781), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(2465), 1, - sym_class_body, STATE(4449), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6577), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [162223] = 8, + STATE(6846), 1, + sym_statement_block, + ACTIONS(7957), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162306] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4450), 1, sym_comment, - STATE(5064), 1, + STATE(5253), 1, sym_type_annotation, - STATE(5892), 1, + STATE(6070), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162250] = 8, + [162333] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4451), 1, sym_comment, - STATE(5049), 1, + STATE(5332), 1, sym_type_annotation, - STATE(5871), 1, + STATE(6222), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162277] = 6, + [162360] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(7959), 1, + anon_sym_LBRACE, + ACTIONS(7961), 1, + anon_sym_LT, + ACTIONS(7963), 1, + anon_sym_extends, + ACTIONS(7965), 1, + anon_sym_LBRACE_PIPE, + STATE(1355), 1, + sym_object_type, STATE(4452), 1, sym_comment, - STATE(5208), 1, + STATE(4997), 1, + sym_type_parameters, + STATE(5799), 1, + sym_extends_type_clause, + [162391] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4213), 1, + anon_sym_DQUOTE, + ACTIONS(4215), 1, + anon_sym_SQUOTE, + ACTIONS(7967), 1, + sym_identifier, + ACTIONS(7969), 1, + anon_sym_DOT, + STATE(1003), 1, + sym_nested_identifier, + STATE(1076), 1, + sym_string, + STATE(1421), 1, + sym__module, + STATE(4453), 1, + sym_comment, + [162422] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4454), 1, + sym_comment, + STATE(4977), 1, sym_type_annotation, - ACTIONS(7957), 5, + STATE(5762), 1, + sym__initializer, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162300] = 10, + [162449] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(7959), 1, + ACTIONS(7971), 1, sym_identifier, - ACTIONS(7961), 1, + ACTIONS(7973), 1, anon_sym_STAR, - STATE(4453), 1, + STATE(4455), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6652), 1, + STATE(6663), 1, sym__call_signature, - [162331] = 10, + [162480] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - ACTIONS(7963), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, - ACTIONS(7965), 1, - anon_sym_QMARK, - STATE(4454), 1, - sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6563), 1, - sym__call_signature, - [162362] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4455), 1, + STATE(4456), 1, sym_comment, - STATE(6808), 1, - sym_statement_block, - ACTIONS(7967), 5, + STATE(5231), 1, + sym_type_annotation, + STATE(6068), 1, + sym__initializer, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162385] = 6, + [162507] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(130), 1, + anon_sym_import, + ACTIONS(7975), 1, + sym_identifier, + STATE(2596), 1, + sym__type_query_member_expression, + STATE(2597), 1, + sym__type_query_subscript_expression, + STATE(2849), 1, + sym__type_query_call_expression, + STATE(2850), 1, + sym__type_query_instantiation_expression, + STATE(4457), 1, + sym_comment, + STATE(5501), 1, + sym_import, + [162538] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4456), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4458), 1, sym_comment, - STATE(6915), 1, - sym_statement_block, - ACTIONS(7967), 5, + STATE(5374), 1, + sym_type_annotation, + STATE(6225), 1, + sym__initializer, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162408] = 6, + [162565] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4457), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4459), 1, sym_comment, - STATE(6805), 1, - sym_statement_block, - ACTIONS(7969), 5, + STATE(5260), 1, + sym_type_annotation, + STATE(6092), 1, + sym__initializer, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162431] = 10, + [162592] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(7971), 1, + ACTIONS(130), 1, + anon_sym_import, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7973), 1, - anon_sym_STAR, - STATE(4458), 1, - sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6933), 1, - sym__call_signature, - [162462] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4459), 1, - sym_comment, - ACTIONS(6383), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [162481] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7975), 1, - sym__automatic_semicolon, + STATE(3760), 1, + sym__type_query_member_expression, + STATE(3774), 1, + sym__type_query_subscript_expression, + STATE(3969), 1, + sym__type_query_call_expression, + STATE(4080), 1, + sym__type_query_instantiation_expression, STATE(4460), 1, sym_comment, - ACTIONS(2212), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162502] = 9, + STATE(5512), 1, + sym_import, + [162623] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - ACTIONS(7913), 1, + ACTIONS(7926), 1, sym_identifier, STATE(4461), 1, sym_comment, - STATE(4506), 1, + STATE(4520), 1, sym__destructuring_pattern, - STATE(5472), 1, + STATE(5587), 1, sym_variable_declarator, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - [162531] = 10, + [162652] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - anon_sym_QMARK, - ACTIONS(7977), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4462), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6563), 1, - sym__call_signature, - [162562] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5256), 1, + sym_type_annotation, + STATE(6069), 1, + sym__initializer, + ACTIONS(7455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162679] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(7979), 1, - sym_identifier, - ACTIONS(7981), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4463), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6459), 1, - sym__call_signature, - [162593] = 8, + STATE(5322), 1, + sym_type_annotation, + STATE(6198), 1, + sym__initializer, + ACTIONS(7447), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162706] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4464), 1, sym_comment, - STATE(5220), 1, + STATE(4895), 1, sym_type_annotation, - STATE(5862), 1, + STATE(5692), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162620] = 6, + [162733] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4465), 1, sym_comment, - STATE(6685), 1, - sym_statement_block, - ACTIONS(7983), 5, + STATE(5230), 1, + sym_type_annotation, + STATE(6043), 1, + sym__initializer, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162643] = 10, + [162760] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(7985), 1, + ACTIONS(7979), 1, sym_identifier, - ACTIONS(7987), 1, + ACTIONS(7981), 1, anon_sym_STAR, STATE(4466), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6459), 1, + STATE(6663), 1, sym__call_signature, - [162674] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4467), 1, - sym_comment, - STATE(5232), 1, - sym_type_annotation, - STATE(6051), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162701] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7989), 1, - sym__automatic_semicolon, - STATE(4468), 1, - sym_comment, - ACTIONS(2212), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [162722] = 10, + [162791] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7651), 1, + ACTIONS(7770), 1, anon_sym_LBRACE, - STATE(443), 1, + STATE(1540), 1, sym_class_body, - STATE(4469), 1, + STATE(4467), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6925), 1, + STATE(6686), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [162753] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [162822] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4470), 1, - sym_comment, - ACTIONS(7761), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [162772] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7408), 1, - anon_sym_EQ, - STATE(4471), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(7983), 1, + sym_identifier, + ACTIONS(7985), 1, + anon_sym_STAR, + STATE(4468), 1, sym_comment, - STATE(5523), 1, - sym_constraint, - STATE(6698), 1, - sym_default_type, - ACTIONS(7413), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7991), 2, - anon_sym_COMMA, - anon_sym_GT, - [162799] = 8, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6474), 1, + sym__call_signature, + [162853] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4472), 1, + STATE(4469), 1, sym_comment, - STATE(5053), 1, + STATE(5367), 1, sym_type_annotation, - STATE(5874), 1, + STATE(6217), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162826] = 8, + [162880] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4473), 1, + STATE(4470), 1, sym_comment, - STATE(5051), 1, + STATE(5357), 1, sym_type_annotation, - STATE(5872), 1, + STATE(6278), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7936), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162853] = 4, + [162907] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4474), 1, + ACTIONS(7987), 1, + anon_sym_EQ, + ACTIONS(7989), 1, + anon_sym_DOT, + STATE(4471), 1, sym_comment, - ACTIONS(7993), 7, - sym__automatic_semicolon, + ACTIONS(7916), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [162872] = 8, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [162930] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4475), 1, + ACTIONS(7961), 1, + anon_sym_LT, + ACTIONS(7963), 1, + anon_sym_extends, + ACTIONS(7991), 1, + anon_sym_LBRACE, + ACTIONS(7993), 1, + anon_sym_LBRACE_PIPE, + STATE(1183), 1, + sym_object_type, + STATE(4472), 1, sym_comment, - STATE(5370), 1, - sym_type_annotation, - STATE(6238), 1, - sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162899] = 8, + STATE(5361), 1, + sym_type_parameters, + STATE(6270), 1, + sym_extends_type_clause, + [162961] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4476), 1, + STATE(4473), 1, sym_comment, - STATE(5319), 1, + STATE(5227), 1, sym_type_annotation, - STATE(6198), 1, + STATE(6045), 1, sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162926] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4477), 1, - sym_comment, - STATE(6669), 1, - sym_statement_block, - ACTIONS(7995), 5, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162949] = 6, + [162988] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4478), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7995), 1, + anon_sym_COLON, + ACTIONS(7997), 1, + anon_sym_QMARK, + STATE(4474), 1, sym_comment, - STATE(6667), 1, - sym_statement_block, - ACTIONS(7997), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162972] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6568), 1, + sym__call_signature, + [163019] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(6203), 1, - sym__automatic_semicolon, - STATE(4479), 1, - sym_comment, - ACTIONS(2190), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [162993] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(4480), 1, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, + sym_identifier, + STATE(4475), 1, sym_comment, - STATE(6795), 1, - sym_statement_block, - ACTIONS(7997), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163016] = 8, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5567), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [163048] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4481), 1, + STATE(4476), 1, sym_comment, - STATE(5254), 1, + STATE(5116), 1, sym_type_annotation, - STATE(6064), 1, + STATE(5981), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163043] = 8, + [163075] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4482), 1, + ACTIONS(7584), 1, + anon_sym_LBRACE, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + STATE(1406), 1, + sym_class_body, + STATE(4477), 1, sym_comment, - STATE(5006), 1, - sym_type_annotation, - STATE(5811), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163070] = 8, + STATE(5679), 1, + sym_extends_clause, + STATE(6357), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [163106] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(460), 1, + sym_class_body, + STATE(4478), 1, + sym_comment, + STATE(5679), 1, + sym_extends_clause, + STATE(6678), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [163137] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4483), 1, + STATE(4479), 1, sym_comment, - STATE(5260), 1, + STATE(5336), 1, sym_type_annotation, - STATE(6086), 1, + STATE(6214), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163097] = 6, + [163164] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4484), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(7999), 1, + sym_identifier, + ACTIONS(8001), 1, + anon_sym_STAR, + STATE(4480), 1, sym_comment, - STATE(6776), 1, - sym_statement_block, - ACTIONS(7995), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163120] = 8, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6663), 1, + sym__call_signature, + [163195] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4485), 1, + STATE(4481), 1, sym_comment, - STATE(5371), 1, + STATE(5198), 1, sym_type_annotation, - STATE(6235), 1, + STATE(6023), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163147] = 8, + [163222] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4486), 1, + STATE(4482), 1, sym_comment, - STATE(5030), 1, + STATE(5165), 1, sym_type_annotation, - STATE(5858), 1, + STATE(6022), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163174] = 10, + [163249] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7779), 1, + ACTIONS(7600), 1, anon_sym_LBRACE, - STATE(4487), 1, - sym_comment, - STATE(4933), 1, + STATE(1494), 1, sym_class_body, - STATE(5683), 1, + STATE(4483), 1, + sym_comment, + STATE(5679), 1, sym_extends_clause, - STATE(6930), 1, + STATE(6673), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [163205] = 4, + [163280] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4488), 1, + STATE(4484), 1, sym_comment, - ACTIONS(7999), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6380), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [163224] = 8, + anon_sym_LT, + anon_sym_QMARK, + [163299] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(8003), 1, + sym_identifier, + STATE(4229), 1, + sym__destructuring_pattern, + STATE(4485), 1, + sym_comment, + STATE(5561), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [163328] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4489), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(8005), 1, + sym_identifier, + STATE(4228), 1, + sym__destructuring_pattern, + STATE(4486), 1, sym_comment, - STATE(5272), 1, - sym_type_annotation, - STATE(6104), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163251] = 8, + STATE(5562), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [163357] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(7997), 1, + anon_sym_QMARK, + ACTIONS(8007), 1, anon_sym_COLON, - STATE(4490), 1, + STATE(4487), 1, sym_comment, - STATE(5275), 1, - sym_type_annotation, - STATE(6113), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163278] = 8, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6568), 1, + sym__call_signature, + [163388] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4491), 1, + STATE(4488), 1, sym_comment, - STATE(5195), 1, + STATE(4910), 1, sym_type_annotation, - STATE(6046), 1, + STATE(5656), 1, sym__initializer, - ACTIONS(7436), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163305] = 8, + [163415] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4492), 1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7604), 1, + anon_sym_LBRACE, + STATE(4489), 1, sym_comment, - STATE(5374), 1, - sym_type_annotation, - STATE(6224), 1, - sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163332] = 8, + STATE(5679), 1, + sym_extends_clause, + STATE(6426), 1, + sym_class_heritage, + STATE(6852), 1, + sym_class_body, + STATE(7277), 1, + sym_implements_clause, + [163446] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4493), 1, + STATE(4490), 1, sym_comment, - STATE(5021), 1, + STATE(4985), 1, sym_type_annotation, - STATE(5849), 1, + STATE(5783), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163359] = 8, + [163473] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4494), 1, + STATE(4491), 1, sym_comment, - STATE(4982), 1, + STATE(5334), 1, sym_type_annotation, - STATE(5774), 1, + STATE(6203), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163386] = 8, + [163500] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4495), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, + sym_identifier, + STATE(4492), 1, sym_comment, - STATE(4974), 1, - sym_type_annotation, - STATE(5758), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163413] = 10, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5888), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [163529] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7585), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(330), 1, + STATE(3164), 1, sym_class_body, - STATE(4496), 1, + STATE(4493), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6300), 1, + STATE(6666), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [163444] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4497), 1, - sym_comment, - STATE(5369), 1, - sym_type_annotation, - STATE(6222), 1, - sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163471] = 8, + [163560] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4498), 1, - sym_comment, - STATE(4958), 1, - sym_type_annotation, - STATE(5734), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163498] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4499), 1, + STATE(4494), 1, sym_comment, - STATE(4951), 1, - sym_type_annotation, - STATE(5729), 1, - sym__initializer, - ACTIONS(7465), 3, + ACTIONS(6005), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [163525] = 8, + anon_sym_COLON, + [163579] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4500), 1, + STATE(4495), 1, sym_comment, - STATE(5228), 1, - sym_type_annotation, - STATE(6054), 1, - sym__initializer, - ACTIONS(7440), 3, + ACTIONS(6033), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [163552] = 8, + anon_sym_COLON, + [163598] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4501), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, + sym_identifier, + STATE(4496), 1, sym_comment, - STATE(5019), 1, - sym_type_annotation, - STATE(5840), 1, - sym__initializer, - ACTIONS(7434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163579] = 10, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5566), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [163627] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8001), 1, + ACTIONS(8009), 1, sym_identifier, - ACTIONS(8003), 1, + ACTIONS(8011), 1, anon_sym_STAR, - STATE(4502), 1, + STATE(4497), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6652), 1, + STATE(6474), 1, sym__call_signature, - [163610] = 8, + [163658] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4503), 1, + STATE(4498), 1, sym_comment, - STATE(4897), 1, + STATE(5319), 1, sym_type_annotation, - STATE(5690), 1, + STATE(6185), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7445), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163637] = 8, + [163685] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4504), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, + sym_identifier, + STATE(4499), 1, sym_comment, - STATE(5252), 1, - sym_type_annotation, - STATE(6067), 1, - sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163664] = 8, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5430), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [163714] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4505), 1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3197), 1, + sym_class_body, + STATE(4500), 1, sym_comment, - STATE(4893), 1, - sym_type_annotation, - STATE(5688), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163691] = 8, + STATE(5679), 1, + sym_extends_clause, + STATE(6803), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [163745] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4506), 1, - sym_comment, - STATE(4984), 1, - sym_type_annotation, - STATE(5763), 1, - sym__initializer, - ACTIONS(7545), 3, - sym__automatic_semicolon, + ACTIONS(8013), 1, anon_sym_COMMA, - anon_sym_SEMI, - [163718] = 10, + ACTIONS(8015), 1, + anon_sym_RBRACE, + STATE(4501), 1, + sym_comment, + STATE(5948), 1, + aux_sym_object_repeat1, + ACTIONS(4649), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [163770] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8005), 1, + ACTIONS(8017), 1, sym_identifier, - ACTIONS(8007), 1, + ACTIONS(8019), 1, anon_sym_STAR, - STATE(4507), 1, + STATE(4502), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6459), 1, + STATE(6474), 1, sym__call_signature, - [163749] = 10, + [163801] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + STATE(4503), 1, + sym_comment, + ACTIONS(8021), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7577), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [163820] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - STATE(3000), 1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(2595), 1, sym_class_body, - STATE(4508), 1, + STATE(4504), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6680), 1, + STATE(6559), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [163780] = 8, + [163851] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4509), 1, + STATE(4505), 1, sym_comment, - STATE(5017), 1, + STATE(5113), 1, sym_type_annotation, - STATE(5836), 1, + STATE(5976), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163807] = 9, + [163878] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - ACTIONS(8009), 1, + ACTIONS(7926), 1, sym_identifier, - STATE(4175), 1, - sym__destructuring_pattern, - STATE(4510), 1, + STATE(4506), 1, sym_comment, - STATE(5559), 1, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5429), 1, sym_variable_declarator, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - [163836] = 9, + [163907] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4118), 1, anon_sym_LBRACK, - ACTIONS(8011), 1, + ACTIONS(7926), 1, sym_identifier, - STATE(4181), 1, - sym__destructuring_pattern, - STATE(4511), 1, + STATE(4507), 1, sym_comment, - STATE(5560), 1, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5393), 1, sym_variable_declarator, - STATE(4654), 2, + STATE(4575), 2, sym_object_pattern, sym_array_pattern, - [163865] = 10, + [163936] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7779), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(4512), 1, + STATE(4508), 1, sym_comment, - STATE(4924), 1, - sym_class_body, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6874), 1, + STATE(6012), 1, + sym_class_body, + STATE(6577), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [163896] = 8, + [163967] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4513), 1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(2586), 1, + sym_class_body, + STATE(4509), 1, sym_comment, - STATE(5334), 1, - sym_type_annotation, - STATE(6216), 1, - sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163923] = 10, + STATE(5679), 1, + sym_extends_clause, + STATE(6579), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [163998] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(8023), 1, anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(8025), 1, + anon_sym_COMMA, + ACTIONS(8027), 1, + anon_sym_DOT, + ACTIONS(8029), 1, + anon_sym_LT, + ACTIONS(8031), 1, + anon_sym_LBRACE_PIPE, + STATE(4510), 1, + sym_comment, + STATE(5463), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5644), 1, + sym_type_arguments, + [164029] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(7488), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_type, + STATE(4511), 1, + sym_comment, + STATE(5560), 1, + sym_string, + STATE(6879), 1, + sym__import_identifier, + STATE(6996), 1, + sym__module_export_name, + [164060] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - STATE(3215), 1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(3386), 1, sym_class_body, - STATE(4514), 1, + STATE(4512), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6868), 1, + STATE(6658), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [163954] = 8, + [164091] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4515), 1, + STATE(4513), 1, sym_comment, - STATE(5333), 1, + STATE(5359), 1, sym_type_annotation, - STATE(6212), 1, + STATE(6277), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7936), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163981] = 8, + [164118] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, + sym_identifier, + STATE(4514), 1, + sym_comment, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(5392), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [164147] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4516), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(130), 1, + anon_sym_import, + ACTIONS(8033), 1, + sym_identifier, + STATE(2295), 1, + sym__type_query_subscript_expression, + STATE(2298), 1, + sym__type_query_member_expression, + STATE(2418), 1, + sym__type_query_call_expression, + STATE(2421), 1, + sym__type_query_instantiation_expression, + STATE(4515), 1, sym_comment, - STATE(5330), 1, - sym_type_annotation, - STATE(6200), 1, - sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [164008] = 8, + STATE(5533), 1, + sym_import, + [164178] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(130), 1, + anon_sym_import, + ACTIONS(8035), 1, + sym_identifier, + STATE(3833), 1, + sym__type_query_member_expression, + STATE(3834), 1, + sym__type_query_subscript_expression, + STATE(4085), 1, + sym__type_query_call_expression, + STATE(4208), 1, + sym__type_query_instantiation_expression, + STATE(4516), 1, + sym_comment, + STATE(5437), 1, + sym_import, + [164209] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, + anon_sym_STAR, STATE(4517), 1, sym_comment, - STATE(5288), 1, - sym_type_annotation, - STATE(6003), 1, - sym__initializer, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [164035] = 8, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6663), 1, + sym__call_signature, + [164240] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4518), 1, sym_comment, - STATE(5303), 1, + STATE(5263), 1, sym_type_annotation, - STATE(6134), 1, + STATE(6094), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164062] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [164267] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7660), 1, anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, - STATE(4506), 1, - sym__destructuring_pattern, + STATE(1149), 1, + sym_class_body, STATE(4519), 1, sym_comment, - STATE(5890), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [164091] = 4, + STATE(5679), 1, + sym_extends_clause, + STATE(6329), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [164298] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4520), 1, sym_comment, - ACTIONS(8013), 7, + STATE(4987), 1, + sym_type_annotation, + STATE(5763), 1, + sym__initializer, + ACTIONS(7562), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [164110] = 4, + [164325] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4521), 1, sym_comment, - ACTIONS(4446), 7, + ACTIONS(7640), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347484,297 +349972,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_DOT, - [164129] = 4, + [164344] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4522), 1, sym_comment, - ACTIONS(5970), 7, + ACTIONS(7638), 7, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - [164148] = 10, + anon_sym_DOT, + [164363] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7779), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, STATE(4523), 1, sym_comment, - STATE(4909), 1, - sym_class_body, - STATE(5683), 1, - sym_extends_clause, - STATE(6864), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [164179] = 8, + STATE(6811), 1, + sym_statement_block, + ACTIONS(8041), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164386] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4524), 1, sym_comment, - STATE(5354), 1, - sym_type_annotation, - STATE(6279), 1, - sym__initializer, - ACTIONS(8015), 3, + ACTIONS(7636), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [164206] = 8, + anon_sym_DOT, + [164405] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4525), 1, sym_comment, - STATE(5012), 1, - sym_type_annotation, - STATE(5815), 1, - sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7634), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [164233] = 8, + anon_sym_DOT, + [164424] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4526), 1, sym_comment, - STATE(5007), 1, - sym_type_annotation, - STATE(5813), 1, - sym__initializer, - ACTIONS(7434), 3, + ACTIONS(4469), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [164260] = 4, + anon_sym_DOT, + [164443] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4527), 1, sym_comment, - ACTIONS(8017), 7, - anon_sym_export, + ACTIONS(4467), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_class, - anon_sym_LT, - anon_sym_AT, - anon_sym_abstract, - [164279] = 10, + [164462] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7779), 1, - anon_sym_LBRACE, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8043), 1, + sym_identifier, + ACTIONS(8045), 1, + anon_sym_STAR, STATE(4528), 1, sym_comment, - STATE(4895), 1, - sym_class_body, - STATE(5683), 1, - sym_extends_clause, - STATE(6803), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [164310] = 8, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6601), 1, + sym__call_signature, + [164493] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(7955), 1, + anon_sym_LBRACE, STATE(4529), 1, sym_comment, - STATE(5144), 1, - sym_type_annotation, - STATE(5986), 1, - sym__initializer, - ACTIONS(7458), 3, + STATE(6919), 1, + sym_statement_block, + ACTIONS(8041), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164337] = 10, + anon_sym_PIPE_RBRACE, + [164516] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(1518), 1, - sym_class_body, STATE(4530), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6683), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [164368] = 10, + STATE(6808), 1, + sym_statement_block, + ACTIONS(8047), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164539] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8019), 1, - anon_sym_LBRACE, - ACTIONS(8021), 1, - anon_sym_COMMA, - ACTIONS(8023), 1, - anon_sym_DOT, - ACTIONS(8025), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(8027), 1, - anon_sym_LBRACE_PIPE, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8049), 1, + sym_identifier, + ACTIONS(8051), 1, + anon_sym_STAR, STATE(4531), 1, sym_comment, - STATE(5461), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5641), 1, - sym_type_arguments, - [164399] = 10, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6474), 1, + sym__call_signature, + [164570] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7481), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8053), 1, sym_identifier, - ACTIONS(7533), 1, - anon_sym_type, + ACTIONS(8055), 1, + anon_sym_STAR, STATE(4532), 1, sym_comment, - STATE(5558), 1, - sym_string, - STATE(6875), 1, - sym__import_identifier, - STATE(6994), 1, - sym__module_export_name, - [164430] = 8, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6663), 1, + sym__call_signature, + [164601] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4533), 1, sym_comment, - STATE(4855), 1, + STATE(4906), 1, sym_type_annotation, - STATE(5612), 1, + STATE(5699), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164457] = 8, + [164628] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(8057), 1, + sym_identifier, + ACTIONS(8059), 1, + anon_sym_DOT, + STATE(4374), 1, + sym_nested_identifier, + STATE(4534), 1, + sym_comment, + STATE(4576), 1, + sym_string, + STATE(4994), 1, + sym__module, + [164659] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1388), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7961), 1, + anon_sym_LT, + ACTIONS(7963), 1, + anon_sym_extends, + ACTIONS(8061), 1, + anon_sym_LBRACE_PIPE, + STATE(4535), 1, + sym_comment, + STATE(4990), 1, + sym_object_type, + STATE(5019), 1, + sym_type_parameters, + STATE(5838), 1, + sym_extends_type_clause, + [164690] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4534), 1, + STATE(4536), 1, sym_comment, - STATE(4856), 1, + STATE(5178), 1, sym_type_annotation, - STATE(5615), 1, + STATE(6018), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164484] = 8, + [164717] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4535), 1, + STATE(4537), 1, sym_comment, - STATE(5356), 1, + STATE(5111), 1, sym_type_annotation, - STATE(6276), 1, + STATE(5962), 1, sym__initializer, - ACTIONS(8015), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164511] = 4, + [164744] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4536), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4538), 1, sym_comment, - ACTIONS(2154), 7, + STATE(5311), 1, + sym_type_annotation, + STATE(6155), 1, + sym__initializer, + ACTIONS(7447), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [164530] = 4, + [164771] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4537), 1, + STATE(4539), 1, sym_comment, - ACTIONS(2252), 7, + ACTIONS(2231), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -347782,833 +350294,843 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [164549] = 4, + [164790] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4538), 1, + STATE(4540), 1, sym_comment, - ACTIONS(4452), 7, + ACTIONS(2227), 7, 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, - [164568] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7939), 1, - anon_sym_LT, - ACTIONS(7941), 1, - anon_sym_extends, - ACTIONS(8029), 1, - anon_sym_LBRACE, - ACTIONS(8031), 1, - anon_sym_LBRACE_PIPE, - STATE(1161), 1, - sym_object_type, - STATE(4539), 1, - sym_comment, - STATE(5360), 1, - sym_type_parameters, - STATE(6266), 1, - sym_extends_type_clause, - [164599] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4192), 1, - anon_sym_DQUOTE, - ACTIONS(4194), 1, - anon_sym_SQUOTE, - ACTIONS(8033), 1, - sym_identifier, - ACTIONS(8035), 1, - anon_sym_DOT, - STATE(948), 1, - sym_nested_identifier, - STATE(997), 1, - sym_string, - STATE(1174), 1, - sym__module, - STATE(4540), 1, - sym_comment, - [164630] = 8, + anon_sym_PIPE_RBRACE, + [164809] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, STATE(4541), 1, sym_comment, - STATE(5004), 1, - sym_type_annotation, - STATE(5808), 1, - sym__initializer, - ACTIONS(7434), 3, + ACTIONS(6031), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [164657] = 8, + anon_sym_COLON, + [164828] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4542), 1, sym_comment, - STATE(4997), 1, + STATE(5110), 1, sym_type_annotation, - STATE(5801), 1, + STATE(5958), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164684] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4543), 1, - sym_comment, - ACTIONS(4370), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [164703] = 8, + [164855] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4544), 1, + STATE(4543), 1, sym_comment, - STATE(5225), 1, + STATE(5145), 1, sym_type_annotation, - STATE(6041), 1, + STATE(5989), 1, sym__initializer, - ACTIONS(7465), 3, + ACTIONS(7471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164730] = 9, + [164882] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(8037), 1, - anon_sym_EQ, - ACTIONS(8041), 1, - anon_sym_QMARK, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7680), 1, + anon_sym_LBRACE, + STATE(1000), 1, + sym_class_body, + STATE(4544), 1, + sym_comment, + STATE(5679), 1, + sym_extends_clause, + STATE(6324), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [164913] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3085), 1, + sym_class_body, STATE(4545), 1, sym_comment, - STATE(5538), 1, - sym_type_annotation, - STATE(6607), 1, - sym__initializer, - ACTIONS(8039), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [164759] = 8, + STATE(5679), 1, + sym_extends_clause, + STATE(6877), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [164944] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4546), 1, sym_comment, - STATE(5357), 1, + STATE(5210), 1, sym_type_annotation, - STATE(6154), 1, - sym__initializer, - ACTIONS(7440), 3, + ACTIONS(8063), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164786] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [164967] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8043), 1, - sym_identifier, - ACTIONS(8045), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(4547), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6652), 1, - sym__call_signature, - [164817] = 8, + ACTIONS(8065), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [164986] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4548), 1, sym_comment, - STATE(4994), 1, + STATE(5239), 1, sym_type_annotation, - STATE(5780), 1, + STATE(6109), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164844] = 4, + [165013] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4549), 1, sym_comment, - ACTIONS(7805), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(4378), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [164863] = 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [165032] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(8067), 1, + anon_sym_EQ, + ACTIONS(8071), 1, + anon_sym_QMARK, STATE(4550), 1, sym_comment, - ACTIONS(7801), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(5537), 1, + sym_type_annotation, + STATE(6629), 1, + sym__initializer, + ACTIONS(8069), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [164882] = 10, + anon_sym_RPAREN, + [165061] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7655), 1, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(1478), 1, + STATE(1129), 1, sym_class_body, STATE(4551), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6358), 1, + STATE(6315), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [164913] = 10, + [165092] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7729), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_class_body, STATE(4552), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6435), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [164944] = 4, + ACTIONS(6437), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [165111] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4553), 1, sym_comment, - ACTIONS(7797), 7, + STATE(5100), 1, + sym_type_annotation, + STATE(5904), 1, + sym__initializer, + ACTIONS(7449), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [164963] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [165138] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8049), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(4554), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6652), 1, - sym__call_signature, - [164994] = 6, + ACTIONS(7848), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [165157] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4555), 1, sym_comment, - STATE(6548), 1, - sym_statement_block, - ACTIONS(8051), 5, + STATE(4996), 1, + sym_type_annotation, + STATE(5792), 1, + sym__initializer, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165017] = 6, + [165184] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4556), 1, sym_comment, - STATE(6546), 1, - sym_statement_block, - ACTIONS(8053), 5, + STATE(5094), 1, + sym_type_annotation, + STATE(5935), 1, + sym__initializer, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165040] = 4, + [165211] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4557), 1, sym_comment, - ACTIONS(7793), 7, + STATE(5003), 1, + sym_type_annotation, + STATE(5810), 1, + sym__initializer, + ACTIONS(7449), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [165059] = 6, + [165238] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4558), 1, sym_comment, - STATE(6353), 1, - sym_statement_block, - ACTIONS(8055), 5, + STATE(5092), 1, + sym_type_annotation, + STATE(5925), 1, + sym__initializer, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165082] = 10, + [165265] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4559), 1, + sym_comment, + STATE(5259), 1, + sym_type_annotation, + STATE(6090), 1, + sym__initializer, + ACTIONS(7447), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165292] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8057), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, sym_identifier, - ACTIONS(8059), 1, - anon_sym_STAR, - STATE(4559), 1, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(4560), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, + STATE(5380), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [165321] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4561), 1, + sym_comment, + STATE(5051), 1, + sym_type_annotation, + STATE(5864), 1, + sym__initializer, + ACTIONS(7455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165348] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4562), 1, + sym_comment, + STATE(5040), 1, + sym_type_annotation, + STATE(6031), 1, + sym__initializer, + ACTIONS(7455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165375] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7961), 1, + anon_sym_LT, + ACTIONS(7963), 1, + anon_sym_extends, + ACTIONS(8073), 1, + anon_sym_LBRACE, + ACTIONS(8075), 1, + anon_sym_LBRACE_PIPE, + STATE(1288), 1, + sym_object_type, + STATE(4563), 1, + sym_comment, + STATE(5262), 1, sym_type_parameters, - STATE(6572), 1, - sym__call_signature, - [165113] = 8, + STATE(6091), 1, + sym_extends_type_clause, + [165406] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4564), 1, + sym_comment, + STATE(5010), 1, + sym_type_annotation, + STATE(5815), 1, + sym__initializer, + ACTIONS(7455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165433] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4560), 1, + STATE(4565), 1, sym_comment, - STATE(4975), 1, + STATE(5006), 1, sym_type_annotation, - STATE(5759), 1, + STATE(5802), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165140] = 10, + [165460] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7587), 1, + ACTIONS(7704), 1, anon_sym_LBRACE, - STATE(1036), 1, + STATE(1135), 1, sym_class_body, - STATE(4561), 1, + STATE(4566), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6325), 1, + STATE(6475), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [165171] = 10, + [165491] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8077), 1, + sym_identifier, + ACTIONS(8079), 1, + anon_sym_STAR, + STATE(4567), 1, + sym_comment, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6663), 1, + sym__call_signature, + [165522] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7737), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(1059), 1, - sym_class_body, - STATE(4562), 1, + STATE(4568), 1, sym_comment, - STATE(5683), 1, + STATE(4936), 1, + sym_class_body, + STATE(5679), 1, sym_extends_clause, - STATE(6382), 1, + STATE(6945), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [165202] = 10, + [165553] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - STATE(3145), 1, - sym_class_body, - STATE(4563), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8081), 1, + sym_identifier, + ACTIONS(8083), 1, + anon_sym_STAR, + STATE(4569), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6645), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [165233] = 10, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6474), 1, + sym__call_signature, + [165584] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7645), 1, + ACTIONS(7680), 1, anon_sym_LBRACE, - STATE(352), 1, + STATE(992), 1, sym_class_body, - STATE(4564), 1, + STATE(4570), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6372), 1, + STATE(6306), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [165264] = 8, + [165615] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4199), 1, + anon_sym_DQUOTE, + ACTIONS(4201), 1, + anon_sym_SQUOTE, + ACTIONS(8085), 1, + sym_identifier, + ACTIONS(8087), 1, + anon_sym_DOT, + STATE(943), 1, + sym_nested_identifier, + STATE(983), 1, + sym_string, + STATE(1088), 1, + sym__module, + STATE(4571), 1, + sym_comment, + [165646] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4565), 1, + STATE(4572), 1, sym_comment, - STATE(4962), 1, + STATE(5197), 1, sym_type_annotation, - STATE(5744), 1, + STATE(6049), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7469), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165291] = 10, + [165673] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7729), 1, - anon_sym_LBRACE, - STATE(1298), 1, - sym_class_body, - STATE(4566), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4573), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6369), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [165322] = 6, + STATE(5008), 1, + sym_type_annotation, + STATE(5816), 1, + sym__initializer, + ACTIONS(7449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165700] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4567), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4574), 1, sym_comment, - STATE(6702), 1, - sym_statement_block, - ACTIONS(8051), 5, + STATE(5009), 1, + sym_type_annotation, + STATE(5818), 1, + sym__initializer, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165345] = 6, + [165727] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4568), 1, + STATE(4575), 1, sym_comment, - STATE(6699), 1, - sym_statement_block, - ACTIONS(8053), 5, + ACTIONS(7618), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165368] = 8, + anon_sym_COLON, + [165746] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4569), 1, + ACTIONS(7906), 1, + anon_sym_LBRACE, + STATE(4576), 1, sym_comment, - STATE(4860), 1, - sym_type_annotation, - STATE(5656), 1, - sym__initializer, - ACTIONS(8061), 3, + STATE(4854), 1, + sym_statement_block, + ACTIONS(2145), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165395] = 8, + anon_sym_PIPE_RBRACE, + [165769] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4570), 1, + STATE(4577), 1, sym_comment, - STATE(5127), 1, + STATE(4852), 1, sym_type_annotation, - STATE(6000), 1, + STATE(5618), 1, sym__initializer, - ACTIONS(7460), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165422] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(1187), 1, - sym_class_body, - STATE(4571), 1, - sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6313), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [165453] = 8, + [165796] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4572), 1, + STATE(4578), 1, sym_comment, - STATE(5258), 1, + STATE(5229), 1, sym_type_annotation, - STATE(6089), 1, + STATE(5614), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165480] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8063), 1, - sym_identifier, - STATE(3760), 1, - sym__type_query_subscript_expression, - STATE(3777), 1, - sym__type_query_member_expression, - STATE(3953), 1, - sym__type_query_call_expression, - STATE(4072), 1, - sym__type_query_instantiation_expression, - STATE(4573), 1, - sym_comment, - STATE(5508), 1, - sym_import, - [165511] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8065), 1, - sym_identifier, - ACTIONS(8067), 1, - anon_sym_STAR, - STATE(4574), 1, - sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6652), 1, - sym__call_signature, - [165542] = 8, + [165823] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(8089), 1, anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4575), 1, + STATE(4579), 1, sym_comment, - STATE(5261), 1, - sym_type_annotation, - STATE(6093), 1, - sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, + ACTIONS(4349), 6, anon_sym_COMMA, - anon_sym_SEMI, - [165569] = 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [165844] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7709), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(377), 1, - sym_class_body, - STATE(4576), 1, + STATE(4580), 1, sym_comment, - STATE(5683), 1, + STATE(4897), 1, + sym_class_body, + STATE(5679), 1, sym_extends_clause, - STATE(6410), 1, + STATE(6801), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [165600] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [165875] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4292), 1, - anon_sym_LT, - ACTIONS(8069), 1, - sym_identifier, - ACTIONS(8071), 1, - anon_sym_LPAREN, - STATE(2612), 1, - sym_arguments, - STATE(4577), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4581), 1, sym_comment, - STATE(6780), 1, - sym_type_arguments, - ACTIONS(8073), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [165629] = 10, + STATE(4889), 1, + sym_type_annotation, + STATE(5690), 1, + sym__initializer, + ACTIONS(7449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165902] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7651), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(423), 1, - sym_class_body, - STATE(4578), 1, + STATE(4582), 1, sym_comment, - STATE(5683), 1, + STATE(4912), 1, + sym_class_body, + STATE(5679), 1, sym_extends_clause, - STATE(6675), 1, + STATE(6848), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [165660] = 10, + [165933] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7655), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(1452), 1, + STATE(3162), 1, sym_class_body, - STATE(4579), 1, + STATE(4583), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6417), 1, + STATE(6662), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [165691] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4580), 1, - sym_comment, - STATE(6393), 1, - sym_statement_block, - ACTIONS(8075), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165714] = 4, + [165964] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4581), 1, + STATE(4584), 1, sym_comment, - ACTIONS(8077), 7, + ACTIONS(8091), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -348616,9114 +351138,9058 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [165733] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8079), 1, - anon_sym_EQ, - ACTIONS(8081), 1, - anon_sym_DOT, - STATE(4582), 1, - sym_comment, - ACTIONS(7887), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [165756] = 10, + [165983] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4206), 1, - anon_sym_DQUOTE, - ACTIONS(4208), 1, - anon_sym_SQUOTE, - ACTIONS(8083), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8093), 1, sym_identifier, - ACTIONS(8085), 1, - anon_sym_DOT, - STATE(984), 1, - sym_nested_identifier, - STATE(1068), 1, - sym_string, - STATE(1471), 1, - sym__module, - STATE(4583), 1, - sym_comment, - [165787] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4584), 1, - sym_comment, - STATE(6391), 1, - sym_statement_block, - ACTIONS(7983), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165810] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(8095), 1, + anon_sym_STAR, STATE(4585), 1, sym_comment, - STATE(5229), 1, - sym_type_annotation, - STATE(6066), 1, - sym__initializer, - ACTIONS(7448), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165837] = 6, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6663), 1, + sym__call_signature, + [166014] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4586), 1, sym_comment, - STATE(6697), 1, - sym_statement_block, - ACTIONS(8075), 5, + STATE(5304), 1, + sym_type_annotation, + ACTIONS(8097), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [165860] = 10, + [166037] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7667), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(1492), 1, + STATE(3051), 1, sym_class_body, STATE(4587), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6670), 1, + STATE(6866), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [165891] = 4, + [166068] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(4588), 1, sym_comment, - ACTIONS(6451), 7, + STATE(5217), 1, + sym_type_annotation, + ACTIONS(8099), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [166091] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7295), 1, anon_sym_EQ, + STATE(4589), 1, + sym_comment, + ACTIONS(8101), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4649), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [165910] = 8, + [166114] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4590), 1, + sym_comment, + STATE(4927), 1, + sym_class_body, + STATE(5679), 1, + sym_extends_clause, + STATE(6299), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [166145] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4589), 1, + STATE(4591), 1, sym_comment, - STATE(4947), 1, + STATE(5269), 1, sym_type_annotation, - STATE(5728), 1, + STATE(6114), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165937] = 8, + [166172] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4590), 1, + STATE(4592), 1, sym_comment, - STATE(5316), 1, + STATE(5075), 1, sym_type_annotation, - STATE(6185), 1, + STATE(5898), 1, sym__initializer, - ACTIONS(7467), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165964] = 8, + [166199] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4591), 1, + STATE(4593), 1, sym_comment, - STATE(5367), 1, + STATE(4984), 1, sym_type_annotation, - STATE(6219), 1, + STATE(5777), 1, sym__initializer, - ACTIONS(8015), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165991] = 6, + [166226] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(4592), 1, + STATE(4594), 1, sym_comment, - STATE(4850), 1, + STATE(6672), 1, sym_statement_block, - ACTIONS(2128), 5, + ACTIONS(8104), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [166014] = 6, + [166249] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(4593), 1, + STATE(4595), 1, sym_comment, - STATE(6676), 1, + STATE(6396), 1, sym_statement_block, - ACTIONS(8087), 5, + ACTIONS(8106), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [166037] = 6, + [166272] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(4594), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4596), 1, sym_comment, - STATE(6681), 1, - sym_statement_block, - ACTIONS(8089), 5, + STATE(5068), 1, + sym_type_annotation, + STATE(5889), 1, + sym__initializer, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166060] = 6, + [166299] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(4595), 1, + STATE(4597), 1, sym_comment, - STATE(6664), 1, + STATE(6670), 1, sym_statement_block, - ACTIONS(8087), 5, + ACTIONS(8108), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [166083] = 10, + [166322] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(207), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7939), 1, - anon_sym_LT, - ACTIONS(7941), 1, - anon_sym_extends, - ACTIONS(8091), 1, - anon_sym_LBRACE_PIPE, - STATE(4596), 1, - sym_comment, - STATE(5112), 1, - sym_type_parameters, - STATE(5935), 1, - sym_extends_type_clause, - STATE(6399), 1, - sym_object_type, - [166114] = 10, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8093), 1, - sym_identifier, - STATE(2447), 1, - sym__type_query_member_expression, - STATE(2579), 1, - sym__type_query_subscript_expression, - STATE(2846), 1, - sym__type_query_call_expression, - STATE(2847), 1, - sym__type_query_instantiation_expression, - STATE(4597), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4598), 1, sym_comment, - STATE(5499), 1, - sym_import, - [166145] = 10, + STATE(5087), 1, + sym_type_annotation, + STATE(5911), 1, + sym__initializer, + ACTIONS(7449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166349] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8095), 1, - sym_identifier, - STATE(3843), 1, - sym__type_query_member_expression, - STATE(3855), 1, - sym__type_query_subscript_expression, - STATE(4071), 1, - sym__type_query_call_expression, - STATE(4210), 1, - sym__type_query_instantiation_expression, - STATE(4598), 1, - sym_comment, - STATE(5435), 1, - sym_import, - [166176] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7939), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7941), 1, - anon_sym_extends, - ACTIONS(8097), 1, - anon_sym_LBRACE, - ACTIONS(8099), 1, - anon_sym_LBRACE_PIPE, - STATE(1406), 1, - sym_object_type, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8110), 1, + sym_identifier, + ACTIONS(8112), 1, + anon_sym_STAR, STATE(4599), 1, sym_comment, - STATE(5000), 1, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, sym_type_parameters, - STATE(5798), 1, - sym_extends_type_clause, - [166207] = 6, + STATE(6935), 1, + sym__call_signature, + [166380] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, STATE(4600), 1, sym_comment, - STATE(6440), 1, + STATE(6823), 1, sym_statement_block, - ACTIONS(8101), 5, + ACTIONS(8108), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [166230] = 6, + [166403] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, STATE(4601), 1, sym_comment, - STATE(6438), 1, + STATE(6821), 1, sym_statement_block, - ACTIONS(8103), 5, + ACTIONS(8104), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [166253] = 8, + [166426] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, STATE(4602), 1, sym_comment, - STATE(5347), 1, + STATE(5277), 1, sym_type_annotation, - STATE(6293), 1, + STATE(6119), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166280] = 10, + [166453] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7667), 1, - anon_sym_LBRACE, - STATE(1223), 1, - sym_class_body, STATE(4603), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6816), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [166311] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4604), 1, - sym_comment, - STATE(4941), 1, - sym_type_annotation, - STATE(5725), 1, - sym__initializer, - ACTIONS(7434), 3, + ACTIONS(2185), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [166338] = 10, + anon_sym_PIPE_RBRACE, + [166472] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4178), 1, - anon_sym_DQUOTE, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(8105), 1, + ACTIONS(8114), 1, sym_identifier, - ACTIONS(8107), 1, - anon_sym_DOT, - STATE(972), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_string, - STATE(1366), 1, - sym__module, - STATE(4605), 1, - sym_comment, - [166369] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_EQ, - STATE(4606), 1, + STATE(4604), 1, sym_comment, - ACTIONS(8109), 2, + ACTIONS(4974), 6, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4642), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [166392] = 8, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [166493] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4607), 1, + STATE(4605), 1, sym_comment, - STATE(5176), 1, + STATE(5290), 1, sym_type_annotation, - STATE(6017), 1, + STATE(6199), 1, sym__initializer, - ACTIONS(7444), 3, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166419] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8112), 1, - sym_identifier, - ACTIONS(8114), 1, - anon_sym_STAR, - STATE(4608), 1, - sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6459), 1, - sym__call_signature, - [166450] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7939), 1, - anon_sym_LT, - ACTIONS(7941), 1, - anon_sym_extends, - ACTIONS(8116), 1, - anon_sym_LBRACE, - ACTIONS(8118), 1, - anon_sym_LBRACE_PIPE, - STATE(1378), 1, - sym_object_type, - STATE(4609), 1, - sym_comment, - STATE(5259), 1, - sym_type_parameters, - STATE(6087), 1, - sym_extends_type_clause, - [166481] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8122), 1, - anon_sym_DOT, - STATE(4610), 1, - sym_comment, - STATE(4880), 1, - sym_nested_identifier, - STATE(5587), 1, - sym_string, - STATE(6347), 1, - sym__module, - [166512] = 8, + [166520] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4611), 1, + STATE(4606), 1, sym_comment, - STATE(5309), 1, + STATE(5279), 1, sym_type_annotation, - STATE(6136), 1, + STATE(6167), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166539] = 10, + [166547] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - STATE(3281), 1, - sym_class_body, - STATE(4612), 1, - sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6663), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [166570] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4613), 1, + STATE(4607), 1, sym_comment, - STATE(5368), 1, - sym_type_annotation, - STATE(6220), 1, - sym__initializer, - ACTIONS(8015), 3, + ACTIONS(8116), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [166597] = 8, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [166566] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4614), 1, + STATE(4608), 1, sym_comment, - STATE(5346), 1, + STATE(4981), 1, sym_type_annotation, - STATE(5606), 1, + STATE(5755), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166624] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(4615), 1, - sym_comment, - STATE(5426), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [166653] = 8, + [166593] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4616), 1, + STATE(4609), 1, sym_comment, - STATE(4937), 1, + STATE(4887), 1, sym_type_annotation, - STATE(5715), 1, + STATE(5687), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166680] = 8, + [166620] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4617), 1, + STATE(4610), 1, sym_comment, - STATE(5351), 1, + STATE(4881), 1, sym_type_annotation, - STATE(6282), 1, + STATE(5685), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166707] = 8, + [166647] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4618), 1, + STATE(4611), 1, sym_comment, - STATE(4921), 1, + STATE(5261), 1, sym_type_annotation, - STATE(5712), 1, + STATE(6159), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166734] = 8, + [166674] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4619), 1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4612), 1, sym_comment, - STATE(5337), 1, - sym_type_annotation, - STATE(6239), 1, - sym__initializer, - ACTIONS(7440), 3, + STATE(6360), 1, + sym_statement_block, + ACTIONS(8118), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [166761] = 7, + anon_sym_PIPE_RBRACE, + [166697] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(8126), 1, - anon_sym_RBRACE, - STATE(4620), 1, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, + sym_identifier, + STATE(4520), 1, + sym__destructuring_pattern, + STATE(4613), 1, sym_comment, - STATE(5954), 1, - aux_sym_object_repeat1, - ACTIONS(4642), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [166786] = 10, + STATE(5382), 1, + sym_variable_declarator, + STATE(4575), 2, + sym_object_pattern, + sym_array_pattern, + [166726] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7709), 1, + ACTIONS(7770), 1, anon_sym_LBRACE, - STATE(393), 1, + STATE(1537), 1, sym_class_body, - STATE(4621), 1, + STATE(4614), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6494), 1, + STATE(6552), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [166817] = 8, + [166757] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4622), 1, + STATE(4615), 1, sym_comment, - STATE(5335), 1, + STATE(5017), 1, sym_type_annotation, - STATE(6233), 1, + STATE(5837), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166844] = 10, + [166784] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(8120), 1, + sym_identifier, + ACTIONS(8122), 1, + anon_sym_DOT, + STATE(4616), 1, + sym_comment, + STATE(4882), 1, + sym_nested_identifier, + STATE(5589), 1, + sym_string, + STATE(6351), 1, + sym__module, + [166815] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8128), 1, + ACTIONS(8124), 1, sym_identifier, - ACTIONS(8130), 1, + ACTIONS(8126), 1, anon_sym_STAR, - STATE(4623), 1, + STATE(4617), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6652), 1, + STATE(6474), 1, sym__call_signature, - [166875] = 10, + [166846] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7737), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(1142), 1, - sym_class_body, - STATE(4624), 1, + STATE(4618), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6436), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [166906] = 8, + STATE(6444), 1, + sym_statement_block, + ACTIONS(8128), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [166869] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4625), 1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4619), 1, sym_comment, - STATE(4912), 1, - sym_type_annotation, - STATE(5699), 1, - sym__initializer, - ACTIONS(7434), 3, + STATE(6453), 1, + sym_statement_block, + ACTIONS(8130), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [166933] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8132), 1, - sym_identifier, - STATE(3703), 1, - sym__type_query_member_expression, - STATE(3704), 1, - sym__type_query_subscript_expression, - STATE(3759), 1, - sym__type_query_call_expression, - STATE(3880), 1, - sym__type_query_instantiation_expression, - STATE(4626), 1, - sym_comment, - STATE(5527), 1, - sym_import, - [166964] = 8, + anon_sym_PIPE_RBRACE, + [166892] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4627), 1, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7602), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_class_body, + STATE(4620), 1, sym_comment, - STATE(4911), 1, - sym_type_annotation, - STATE(5652), 1, - sym__initializer, - ACTIONS(7434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166991] = 8, + STATE(5679), 1, + sym_extends_clause, + STATE(6497), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [166923] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4628), 1, + STATE(4621), 1, sym_comment, - STATE(5329), 1, + STATE(5020), 1, sym_type_annotation, - STATE(6223), 1, + STATE(5841), 1, sym__initializer, - ACTIONS(7440), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167018] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4629), 1, - sym_comment, - ACTIONS(2202), 7, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167037] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [166950] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8134), 1, - sym_identifier, - STATE(4630), 1, - sym_comment, - ACTIONS(4977), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [167058] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8136), 1, - anon_sym_EQ, - STATE(4631), 1, - sym_comment, - ACTIONS(4370), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [167079] = 10, - ACTIONS(3), 1, + ACTIONS(211), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(7961), 1, anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8139), 1, - sym_identifier, - ACTIONS(8141), 1, - anon_sym_STAR, - STATE(4632), 1, + ACTIONS(7963), 1, + anon_sym_extends, + ACTIONS(8132), 1, + anon_sym_LBRACE_PIPE, + STATE(4622), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, + STATE(5115), 1, sym_type_parameters, - STATE(6459), 1, - sym__call_signature, - [167110] = 8, + STATE(5937), 1, + sym_extends_type_clause, + STATE(6403), 1, + sym_object_type, + [166981] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4633), 1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4623), 1, sym_comment, - STATE(4879), 1, - sym_type_annotation, - STATE(5677), 1, - sym__initializer, - ACTIONS(7434), 3, + STATE(6687), 1, + sym_statement_block, + ACTIONS(8134), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [167137] = 9, + anon_sym_PIPE_RBRACE, + [167004] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4292), 1, + ACTIONS(4253), 1, anon_sym_LT, - ACTIONS(8069), 1, + ACTIONS(8136), 1, sym_identifier, - ACTIONS(8143), 1, + ACTIONS(8138), 1, anon_sym_LPAREN, - STATE(3020), 1, + STATE(3019), 1, sym_arguments, - STATE(4634), 1, + STATE(4624), 1, sym_comment, - STATE(6756), 1, + STATE(6763), 1, sym_type_arguments, - ACTIONS(8073), 2, + ACTIONS(8140), 2, anon_sym_LBRACK, sym_private_property_identifier, - [167166] = 8, + [167033] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4635), 1, + STATE(4625), 1, sym_comment, - STATE(5111), 1, + STATE(4960), 1, sym_type_annotation, - STATE(5980), 1, + STATE(5737), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167193] = 10, + [167060] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4626), 1, + sym_comment, + STATE(6679), 1, + sym_statement_block, + ACTIONS(8142), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [167083] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7682), 1, anon_sym_LBRACE, - STATE(1514), 1, + STATE(336), 1, sym_class_body, - STATE(4636), 1, + STATE(4627), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6549), 1, + STATE(6868), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [167224] = 8, + [167114] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4637), 1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4628), 1, sym_comment, - STATE(4966), 1, - sym_type_annotation, - STATE(5750), 1, - sym__initializer, - ACTIONS(7434), 3, + STATE(6644), 1, + sym_statement_block, + ACTIONS(8134), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [167251] = 10, + anon_sym_PIPE_RBRACE, + [167137] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7939), 1, + ACTIONS(7961), 1, anon_sym_LT, - ACTIONS(7941), 1, + ACTIONS(7963), 1, anon_sym_extends, - ACTIONS(8145), 1, + ACTIONS(8144), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, + ACTIONS(8146), 1, anon_sym_LBRACE_PIPE, - STATE(1599), 1, + STATE(1575), 1, sym_object_type, - STATE(4638), 1, + STATE(4629), 1, sym_comment, - STATE(5025), 1, + STATE(5027), 1, sym_type_parameters, - STATE(5807), 1, + STATE(5809), 1, sym_extends_type_clause, - [167282] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [167168] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(4639), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4630), 1, sym_comment, - STATE(5566), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [167311] = 10, + STATE(5257), 1, + sym_type_annotation, + STATE(6157), 1, + sym__initializer, + ACTIONS(7457), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167195] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4117), 1, + ACTIONS(4122), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, + ACTIONS(4124), 1, anon_sym_SQUOTE, - ACTIONS(8149), 1, + ACTIONS(8148), 1, sym_identifier, - ACTIONS(8151), 1, + ACTIONS(8150), 1, anon_sym_DOT, - STATE(1197), 1, + STATE(1064), 1, sym_nested_identifier, - STATE(1317), 1, + STATE(1402), 1, sym_string, - STATE(1559), 1, + STATE(1526), 1, sym__module, - STATE(4640), 1, + STATE(4631), 1, sym_comment, - [167342] = 9, - ACTIONS(3), 1, + [167226] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4632), 1, + sym_comment, + STATE(4955), 1, + sym_type_annotation, + STATE(5731), 1, + sym__initializer, + ACTIONS(7455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167253] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, - sym_identifier, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(4641), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4633), 1, sym_comment, - STATE(5565), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [167371] = 10, + STATE(5247), 1, + sym_type_annotation, + STATE(6139), 1, + sym__initializer, + ACTIONS(7457), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167280] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7781), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(3402), 1, - sym_class_body, - STATE(4642), 1, + STATE(4634), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6655), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [167402] = 8, + STATE(6689), 1, + sym_statement_block, + ACTIONS(8152), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [167303] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4643), 1, + STATE(4635), 1, sym_comment, - STATE(5274), 1, + STATE(5023), 1, sym_type_annotation, - STATE(6111), 1, + STATE(5851), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167429] = 8, + [167330] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4644), 1, + STATE(4636), 1, sym_comment, - STATE(5284), 1, + STATE(5061), 1, sym_type_annotation, - STATE(6116), 1, + STATE(5877), 1, sym__initializer, - ACTIONS(7440), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167456] = 8, + [167357] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(4645), 1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4637), 1, sym_comment, - STATE(4885), 1, - sym_type_annotation, - STATE(5682), 1, - sym__initializer, - ACTIONS(7434), 3, + STATE(6703), 1, + sym_statement_block, + ACTIONS(8106), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [167483] = 8, + anon_sym_PIPE_RBRACE, + [167380] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4646), 1, + STATE(4638), 1, sym_comment, - STATE(4887), 1, + STATE(5026), 1, sym_type_annotation, - STATE(5684), 1, + STATE(5861), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167510] = 10, + [167407] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(7586), 1, anon_sym_extends, - ACTIONS(7579), 1, + ACTIONS(7588), 1, anon_sym_implements, - STATE(3250), 1, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3025), 1, sym_class_body, - STATE(4647), 1, + STATE(4639), 1, sym_comment, - STATE(5683), 1, + STATE(5679), 1, sym_extends_clause, - STATE(6822), 1, + STATE(6682), 1, sym_class_heritage, - STATE(7274), 1, + STATE(7277), 1, sym_implements_clause, - [167541] = 8, + [167438] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4640), 1, + sym_comment, + STATE(6391), 1, + sym_statement_block, + ACTIONS(8152), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [167461] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4648), 1, + STATE(4641), 1, sym_comment, - STATE(4892), 1, + STATE(5057), 1, sym_type_annotation, - STATE(5687), 1, + STATE(5875), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167568] = 8, + [167488] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - ACTIONS(7266), 1, + ACTIONS(7271), 1, anon_sym_COLON, - STATE(4649), 1, + STATE(4642), 1, sym_comment, - STATE(4896), 1, + STATE(5243), 1, sym_type_annotation, - STATE(5689), 1, + STATE(6122), 1, sym__initializer, - ACTIONS(7434), 3, + ACTIONS(7457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167595] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [167515] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7645), 1, - anon_sym_LBRACE, - STATE(367), 1, - sym_class_body, - STATE(4650), 1, - sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6525), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [167626] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_extends, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_class_body, - STATE(4651), 1, + ACTIONS(130), 1, + anon_sym_import, + ACTIONS(8154), 1, + sym_identifier, + STATE(3707), 1, + sym__type_query_member_expression, + STATE(3708), 1, + sym__type_query_subscript_expression, + STATE(3756), 1, + sym__type_query_call_expression, + STATE(3868), 1, + sym__type_query_instantiation_expression, + STATE(4643), 1, sym_comment, - STATE(5683), 1, - sym_extends_clause, - STATE(6472), 1, - sym_class_heritage, - STATE(7274), 1, - sym_implements_clause, - [167657] = 9, + STATE(5528), 1, + sym_import, + [167546] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(8136), 1, sym_identifier, - STATE(4506), 1, - sym__destructuring_pattern, - STATE(4652), 1, + ACTIONS(8156), 1, + anon_sym_LPAREN, + STATE(2607), 1, + sym_arguments, + STATE(4644), 1, sym_comment, - STATE(5425), 1, - sym_variable_declarator, - STATE(4654), 2, - sym_object_pattern, - sym_array_pattern, - [167686] = 4, + STATE(6647), 1, + sym_type_arguments, + ACTIONS(8140), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [167575] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4653), 1, - sym_comment, - ACTIONS(2300), 7, + ACTIONS(8158), 1, sym__automatic_semicolon, + STATE(4645), 1, + sym_comment, + ACTIONS(2193), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167705] = 4, + anon_sym_catch, + anon_sym_finally, + [167596] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4654), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4646), 1, sym_comment, - ACTIONS(7581), 7, + STATE(4898), 1, + sym_type_annotation, + STATE(5693), 1, + sym__initializer, + ACTIONS(7455), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, + [167623] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, anon_sym_COLON, - [167724] = 6, + STATE(4647), 1, + sym_comment, + STATE(4880), 1, + sym_type_annotation, + STATE(5680), 1, + sym__initializer, + ACTIONS(7449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167650] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4655), 1, + STATE(4648), 1, sym_comment, - STATE(4751), 1, - aux_sym_object_type_repeat1, - ACTIONS(8155), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8153), 3, + ACTIONS(2189), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [167746] = 6, + anon_sym_PIPE_RBRACE, + [167669] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(3490), 1, - sym_statement_block, - STATE(4656), 1, + STATE(4649), 1, sym_comment, - ACTIONS(7997), 4, + STATE(6705), 1, + sym_statement_block, + ACTIONS(8160), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [167768] = 7, + anon_sym_PIPE_RBRACE, + [167692] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_default, - ACTIONS(8162), 1, - anon_sym_RBRACE, - ACTIONS(8164), 1, - anon_sym_case, - STATE(4657), 2, + ACTIONS(7586), 1, + anon_sym_extends, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(3383), 1, + sym_class_body, + STATE(4650), 1, sym_comment, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [167792] = 6, + STATE(5679), 1, + sym_extends_clause, + STATE(6704), 1, + sym_class_heritage, + STATE(7277), 1, + sym_implements_clause, + [167723] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4658), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4651), 1, sym_comment, - STATE(4688), 1, - aux_sym_object_type_repeat1, - ACTIONS(8169), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8167), 3, + STATE(4894), 1, + sym_type_annotation, + STATE(5691), 1, + sym__initializer, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167814] = 8, + [167750] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8171), 1, - anon_sym_BQUOTE, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4659), 1, + STATE(4652), 1, sym_comment, - STATE(4707), 1, - aux_sym_template_string_repeat1, - STATE(5573), 1, - sym_template_substitution, - ACTIONS(7857), 2, - sym__template_chars, - sym_escape_sequence, - [167840] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(7814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [167769] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8175), 1, - sym_identifier, - STATE(4660), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4653), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6932), 1, - sym__call_signature, - [167868] = 6, + STATE(6728), 1, + sym_statement_block, + ACTIONS(8162), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [167792] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(3511), 1, - sym_statement_block, - STATE(4661), 1, + STATE(4654), 1, sym_comment, - ACTIONS(7995), 4, + STATE(6546), 1, + sym_statement_block, + ACTIONS(8160), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [167890] = 9, + anon_sym_PIPE_RBRACE, + [167815] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8177), 1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4655), 1, + sym_comment, + STATE(6551), 1, + sym_statement_block, + ACTIONS(8162), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8179), 1, - anon_sym_GT, - STATE(4662), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [167838] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(4656), 1, sym_comment, - STATE(5802), 1, - aux_sym_type_arguments_repeat1, - [167918] = 9, + STATE(5248), 1, + sym_type_annotation, + STATE(6145), 1, + sym__initializer, + ACTIONS(7457), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167865] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7632), 1, anon_sym_DOT, - ACTIONS(8181), 1, + ACTIONS(8164), 1, anon_sym_COMMA, - ACTIONS(8183), 1, + ACTIONS(8166), 1, anon_sym_GT, - STATE(4367), 1, + STATE(4363), 1, sym_arguments, - STATE(4663), 1, + STATE(4657), 1, sym_comment, - STATE(5799), 1, + STATE(6083), 1, aux_sym_type_arguments_repeat1, - [167946] = 8, + [167893] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8185), 1, - anon_sym_default, - ACTIONS(8187), 1, - anon_sym_RBRACE, - ACTIONS(8189), 1, - anon_sym_case, - STATE(4664), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_QMARK, + STATE(4658), 1, sym_comment, - STATE(4684), 1, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [167972] = 8, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6830), 1, + sym__call_signature, + [167921] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8191), 1, - anon_sym_BQUOTE, - STATE(4665), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(8120), 1, + sym_identifier, + STATE(4659), 1, sym_comment, - STATE(4726), 1, - aux_sym_template_string_repeat1, - STATE(5573), 1, - sym_template_substitution, - ACTIONS(7857), 2, - sym__template_chars, - sym_escape_sequence, - [167998] = 8, + STATE(4882), 1, + sym_nested_identifier, + STATE(5589), 1, + sym_string, + STATE(6414), 1, + sym__module, + [167949] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8185), 1, + ACTIONS(8170), 1, anon_sym_default, - ACTIONS(8189), 1, - anon_sym_case, - ACTIONS(8193), 1, + ACTIONS(8172), 1, anon_sym_RBRACE, - STATE(4657), 1, - aux_sym_switch_body_repeat1, - STATE(4666), 1, + ACTIONS(8174), 1, + anon_sym_case, + STATE(4660), 1, sym_comment, - STATE(5904), 2, + STATE(4768), 1, + aux_sym_switch_body_repeat1, + STATE(5895), 2, sym_switch_case, sym_switch_default, - [168024] = 6, + [167975] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4667), 1, + STATE(4661), 1, sym_comment, - STATE(4714), 1, + ACTIONS(2193), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [167993] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4662), 1, + sym_comment, + STATE(4702), 1, aux_sym_object_type_repeat1, - ACTIONS(8197), 2, + ACTIONS(8178), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8195), 3, + ACTIONS(8176), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168046] = 6, + [168015] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4668), 1, + STATE(4663), 1, sym_comment, - STATE(4812), 1, + STATE(4710), 1, aux_sym_object_type_repeat1, - ACTIONS(8201), 2, + ACTIONS(8182), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8199), 3, + ACTIONS(8180), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168068] = 9, + [168037] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(8203), 1, + ACTIONS(8184), 1, anon_sym_QMARK, - STATE(4669), 1, - sym_comment, - STATE(4817), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6539), 1, + STATE(4664), 1, + sym_comment, + STATE(5104), 1, sym__call_signature, - [168096] = 9, + STATE(6467), 1, + sym_type_parameters, + [168065] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8205), 1, - anon_sym_export, - ACTIONS(8207), 1, - anon_sym_class, - ACTIONS(8209), 1, - anon_sym_abstract, - STATE(4670), 1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7632), 1, + anon_sym_DOT, + ACTIONS(8186), 1, + anon_sym_COMMA, + ACTIONS(8188), 1, + anon_sym_GT, + STATE(4363), 1, + sym_arguments, + STATE(4665), 1, sym_comment, - STATE(4678), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - [168124] = 9, + STATE(5800), 1, + aux_sym_type_arguments_repeat1, + [168093] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(8190), 1, anon_sym_COMMA, - ACTIONS(8213), 1, + ACTIONS(8192), 1, anon_sym_GT, - STATE(4367), 1, - sym_arguments, - STATE(4671), 1, + STATE(4666), 1, sym_comment, - STATE(6196), 1, + STATE(5804), 1, aux_sym_type_arguments_repeat1, - [168152] = 6, + [168121] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, + sym_identifier, + ACTIONS(8196), 1, + anon_sym_LBRACK, + STATE(4667), 1, + sym_comment, + STATE(6034), 1, + sym__destructuring_pattern, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + [168147] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4672), 1, + STATE(4668), 1, sym_comment, - STATE(4812), 1, + STATE(4685), 1, aux_sym_object_type_repeat1, - ACTIONS(8197), 2, + ACTIONS(8200), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8195), 3, + ACTIONS(8198), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168174] = 9, + [168169] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - ACTIONS(8215), 1, - anon_sym_QMARK, - STATE(4673), 1, + STATE(4669), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6400), 1, - sym__call_signature, - [168202] = 9, + STATE(4790), 1, + aux_sym_object_type_repeat1, + ACTIONS(8204), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8202), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168191] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LPAREN, - ACTIONS(8217), 1, - anon_sym_QMARK, - STATE(4226), 1, - sym_formal_parameters, - STATE(4674), 1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(8120), 1, + sym_identifier, + STATE(4670), 1, sym_comment, - STATE(4704), 1, - sym__call_signature, - STATE(6465), 1, - sym_type_parameters, - [168230] = 6, + STATE(4882), 1, + sym_nested_identifier, + STATE(5589), 1, + sym_string, + STATE(6351), 1, + sym__module, + [168219] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, - anon_sym_COLON, - STATE(4675), 1, + STATE(4671), 1, sym_comment, - ACTIONS(7569), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6759), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [168252] = 9, + STATE(4813), 1, + aux_sym_object_type_repeat1, + ACTIONS(8208), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8206), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168241] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8221), 1, - anon_sym_export, - ACTIONS(8223), 1, - anon_sym_class, - ACTIONS(8225), 1, - anon_sym_abstract, - STATE(4676), 1, + ACTIONS(8210), 1, + anon_sym_BQUOTE, + ACTIONS(8212), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4672), 1, sym_comment, - STATE(4678), 1, - aux_sym_export_statement_repeat1, - STATE(5599), 1, - sym_decorator, - [168280] = 6, + STATE(4687), 1, + aux_sym_template_string_repeat1, + STATE(5578), 1, + sym_template_substitution, + ACTIONS(7868), 2, + sym__template_chars, + sym_escape_sequence, + [168267] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3497), 1, - sym_statement_block, - STATE(4677), 1, + ACTIONS(8214), 1, + anon_sym_COLON, + STATE(4673), 1, sym_comment, - ACTIONS(8053), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168302] = 6, + ACTIONS(7542), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6773), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [168289] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8229), 1, + ACTIONS(8218), 1, anon_sym_AT, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - STATE(4678), 2, + STATE(4674), 2, sym_comment, aux_sym_export_statement_repeat1, - ACTIONS(8227), 3, + ACTIONS(8216), 3, anon_sym_export, anon_sym_class, anon_sym_abstract, - [168324] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8232), 1, - anon_sym_COMMA, - ACTIONS(8234), 1, - anon_sym_GT, - STATE(4679), 1, - sym_comment, - STATE(6192), 1, - aux_sym_type_arguments_repeat1, - [168352] = 5, + [168311] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8236), 1, + ACTIONS(8221), 1, sym_identifier, - STATE(4680), 1, + STATE(4675), 1, sym_comment, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [168372] = 6, + [168331] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4672), 1, - aux_sym_object_type_repeat1, - STATE(4681), 1, + STATE(4676), 1, sym_comment, - ACTIONS(8240), 2, + STATE(4695), 1, + aux_sym_object_type_repeat1, + ACTIONS(8200), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8238), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168394] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3516), 1, - sym_statement_block, - STATE(4682), 1, - sym_comment, - ACTIONS(7967), 4, + ACTIONS(8198), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168416] = 8, + [168353] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8185), 1, + ACTIONS(8170), 1, anon_sym_default, - ACTIONS(8189), 1, + ACTIONS(8174), 1, anon_sym_case, - ACTIONS(8242), 1, + ACTIONS(8223), 1, anon_sym_RBRACE, - STATE(4666), 1, - aux_sym_switch_body_repeat1, - STATE(4683), 1, + STATE(4677), 1, sym_comment, - STATE(5904), 2, + STATE(4711), 1, + aux_sym_switch_body_repeat1, + STATE(5895), 2, sym_switch_case, sym_switch_default, - [168442] = 8, + [168379] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8185), 1, - anon_sym_default, - ACTIONS(8189), 1, - anon_sym_case, - ACTIONS(8244), 1, - anon_sym_RBRACE, - STATE(4657), 1, - aux_sym_switch_body_repeat1, - STATE(4684), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8225), 1, + sym_identifier, + STATE(4678), 1, sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [168468] = 6, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6929), 1, + sym__call_signature, + [168407] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3463), 1, - sym_statement_block, - STATE(4685), 1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8227), 1, + anon_sym_export, + ACTIONS(8229), 1, + anon_sym_class, + ACTIONS(8231), 1, + anon_sym_abstract, + STATE(4674), 1, + aux_sym_export_statement_repeat1, + STATE(4679), 1, sym_comment, - ACTIONS(7983), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168490] = 9, + STATE(5601), 1, + sym_decorator, + [168435] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(8246), 1, + ACTIONS(8233), 1, anon_sym_QMARK, - STATE(4226), 1, - sym_formal_parameters, - STATE(4656), 1, - sym__call_signature, - STATE(4686), 1, + STATE(4680), 1, sym_comment, - STATE(6465), 1, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, sym_type_parameters, - [168518] = 9, + STATE(6542), 1, + sym__call_signature, + [168463] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(8248), 1, + ACTIONS(8235), 1, anon_sym_QMARK, - STATE(4226), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4682), 1, - sym__call_signature, - STATE(4687), 1, + STATE(4681), 1, sym_comment, - STATE(6465), 1, + STATE(5298), 1, + sym__call_signature, + STATE(6467), 1, sym_type_parameters, - [168546] = 6, + [168491] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4688), 1, + STATE(4682), 1, sym_comment, - STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8252), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8250), 3, + ACTIONS(8237), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [168568] = 9, + anon_sym_PIPE_RBRACE, + [168509] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8239), 1, + anon_sym_catch, + ACTIONS(8241), 1, + anon_sym_finally, + STATE(4683), 1, + sym_comment, + STATE(5426), 1, + sym_catch_clause, + STATE(6389), 1, + sym_finally_clause, + ACTIONS(3118), 2, + anon_sym_else, + anon_sym_while, + [168535] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(8254), 1, + ACTIONS(8243), 1, anon_sym_QMARK, - STATE(4689), 1, + STATE(4684), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6404), 1, + STATE(6718), 1, sym__call_signature, - [168596] = 4, + [168563] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4690), 1, + ACTIONS(8248), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4685), 2, sym_comment, - ACTIONS(4642), 6, - anon_sym_EQ, + aux_sym_object_type_repeat1, + ACTIONS(8245), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [168614] = 9, + anon_sym_SEMI, + [168583] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_QMARK, - STATE(4691), 1, + ACTIONS(8250), 1, + sym_identifier, + STATE(4686), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6828), 1, + STATE(6680), 1, sym__call_signature, - [168642] = 6, + [168611] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3479), 1, - sym_statement_block, - STATE(4692), 1, + ACTIONS(8255), 1, + anon_sym_BQUOTE, + ACTIONS(8257), 1, + anon_sym_DOLLAR_LBRACE, + STATE(5578), 1, + sym_template_substitution, + ACTIONS(8252), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4687), 2, sym_comment, - ACTIONS(7967), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168664] = 9, + aux_sym_template_string_repeat1, + [168635] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8258), 1, - anon_sym_COMMA, + ACTIONS(8170), 1, + anon_sym_default, + ACTIONS(8174), 1, + anon_sym_case, ACTIONS(8260), 1, - anon_sym_GT, - STATE(4693), 1, + anon_sym_RBRACE, + STATE(4688), 1, sym_comment, - STATE(6083), 1, - aux_sym_type_arguments_repeat1, - [168692] = 9, + STATE(4766), 1, + aux_sym_switch_body_repeat1, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [168661] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(8262), 1, - anon_sym_COMMA, - ACTIONS(8264), 1, - anon_sym_GT, - STATE(4367), 1, - sym_arguments, - STATE(4694), 1, + STATE(4689), 1, sym_comment, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, - [168720] = 9, + STATE(4715), 1, + aux_sym_object_type_repeat1, + ACTIONS(8264), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8262), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168683] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, ACTIONS(8266), 1, anon_sym_QMARK, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4695), 1, + STATE(4690), 1, sym_comment, - STATE(4870), 1, + STATE(4871), 1, sym__call_signature, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [168748] = 9, + [168711] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, + ACTIONS(8212), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(8268), 1, - anon_sym_QMARK, - STATE(4119), 1, - sym_formal_parameters, - STATE(4696), 1, + anon_sym_BQUOTE, + STATE(4687), 1, + aux_sym_template_string_repeat1, + STATE(4691), 1, sym_comment, - STATE(6197), 1, - sym__call_signature, - STATE(6380), 1, - sym_type_parameters, - [168776] = 9, + STATE(5578), 1, + sym_template_substitution, + ACTIONS(7868), 2, + sym__template_chars, + sym_escape_sequence, + [168737] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + STATE(4692), 1, + sym_comment, + ACTIONS(8116), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [168755] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, ACTIONS(8270), 1, anon_sym_QMARK, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4697), 1, + STATE(4693), 1, sym_comment, - STATE(6023), 1, + STATE(5209), 1, sym__call_signature, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [168804] = 9, + [168783] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - ACTIONS(8272), 1, - anon_sym_QMARK, - STATE(4698), 1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4694), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6665), 1, - sym__call_signature, - [168832] = 6, + ACTIONS(8274), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8272), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168805] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4699), 1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4695), 1, + sym_comment, + ACTIONS(8278), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8276), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168827] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4696), 1, + sym_comment, + ACTIONS(6508), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [168845] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4213), 1, + anon_sym_DQUOTE, + ACTIONS(4215), 1, + anon_sym_SQUOTE, + ACTIONS(7967), 1, + sym_identifier, + STATE(1003), 1, + sym_nested_identifier, + STATE(1076), 1, + sym_string, + STATE(1421), 1, + sym__module, + STATE(4697), 1, sym_comment, - STATE(4718), 1, - aux_sym_object_type_repeat1, - ACTIONS(8252), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8250), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168854] = 6, + [168873] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4700), 1, + STATE(4698), 1, sym_comment, - STATE(4745), 1, - aux_sym_object_type_repeat1, - ACTIONS(8276), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8274), 3, + ACTIONS(7890), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [168876] = 9, + anon_sym_DOT, + [168891] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8278), 1, - anon_sym_COMMA, + ACTIONS(8212), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(8280), 1, - anon_sym_GT, - STATE(4701), 1, - sym_comment, - STATE(5812), 1, - aux_sym_type_arguments_repeat1, - [168904] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(8282), 1, - anon_sym_COMMA, - ACTIONS(8284), 1, - anon_sym_GT, - STATE(4367), 1, - sym_arguments, - STATE(4702), 1, + anon_sym_BQUOTE, + STATE(4691), 1, + aux_sym_template_string_repeat1, + STATE(4699), 1, sym_comment, - STATE(5821), 1, - aux_sym_type_arguments_repeat1, - [168932] = 9, + STATE(5578), 1, + sym_template_substitution, + ACTIONS(7868), 2, + sym__template_chars, + sym_escape_sequence, + [168917] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8286), 1, + ACTIONS(8282), 1, sym_identifier, - STATE(4703), 1, + STATE(4700), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6659), 1, + STATE(6914), 1, sym__call_signature, - [168960] = 6, + [168945] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - STATE(3496), 1, - sym_statement_block, - STATE(4704), 1, + ACTIONS(8196), 1, + anon_sym_LBRACK, + ACTIONS(8284), 1, + sym_identifier, + STATE(4701), 1, sym_comment, - ACTIONS(8053), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168982] = 6, + STATE(6749), 1, + sym__destructuring_pattern, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + [168971] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3492), 1, - sym_statement_block, - STATE(4705), 1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4702), 1, sym_comment, - ACTIONS(8051), 4, + ACTIONS(8288), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8286), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169004] = 6, + [168993] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8027), 1, + anon_sym_DOT, + ACTIONS(8029), 1, + anon_sym_LT, + ACTIONS(8290), 1, anon_sym_LBRACE, - STATE(3512), 1, - sym_statement_block, - STATE(4706), 1, + STATE(4703), 1, sym_comment, - ACTIONS(8055), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(5644), 1, + sym_type_arguments, + ACTIONS(8292), 2, anon_sym_COMMA, - anon_sym_SEMI, - [169026] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + anon_sym_LBRACE_PIPE, + [169019] = 8, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8291), 1, - anon_sym_BQUOTE, - ACTIONS(8293), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5573), 1, - sym_template_substitution, - ACTIONS(8288), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4707), 2, - sym_comment, - aux_sym_template_string_repeat1, - [169050] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - STATE(3514), 1, - sym_statement_block, - STATE(4708), 1, + ACTIONS(8196), 1, + anon_sym_LBRACK, + ACTIONS(8294), 1, + sym_identifier, + STATE(4704), 1, sym_comment, - ACTIONS(8087), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169072] = 6, + STATE(5469), 1, + sym__destructuring_pattern, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + [169045] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3515), 1, - sym_statement_block, - STATE(4709), 1, + STATE(4705), 1, sym_comment, - ACTIONS(8089), 4, + STATE(4742), 1, + aux_sym_object_type_repeat1, + ACTIONS(8298), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8296), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169094] = 6, + [169067] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3501), 1, - sym_statement_block, - STATE(4710), 1, - sym_comment, - ACTIONS(7997), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(8300), 1, anon_sym_COMMA, - anon_sym_SEMI, - [169116] = 9, + ACTIONS(8302), 1, + anon_sym_GT, + STATE(4706), 1, + sym_comment, + STATE(6268), 1, + aux_sym_type_arguments_repeat1, + [169095] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(8296), 1, + ACTIONS(8304), 1, anon_sym_QMARK, - STATE(4226), 1, - sym_formal_parameters, - STATE(4711), 1, + STATE(4707), 1, sym_comment, - STATE(4725), 1, - sym__call_signature, - STATE(6465), 1, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, sym_type_parameters, - [169144] = 6, + STATE(6387), 1, + sym__call_signature, + [169123] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3470), 1, - sym_statement_block, - STATE(4712), 1, + STATE(4708), 1, sym_comment, - ACTIONS(8087), 4, + ACTIONS(8091), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [169166] = 9, + anon_sym_COLON, + [169141] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8298), 1, - anon_sym_QMARK, - STATE(4713), 1, + ACTIONS(8306), 1, + sym_identifier, + STATE(4709), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6806), 1, + STATE(6680), 1, sym__call_signature, - [169194] = 6, + [169169] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4714), 1, - sym_comment, - STATE(4812), 1, + STATE(4685), 1, aux_sym_object_type_repeat1, - ACTIONS(8302), 2, + STATE(4710), 1, + sym_comment, + ACTIONS(8298), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8300), 3, + ACTIONS(8296), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169216] = 6, + [169191] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4715), 1, + ACTIONS(8170), 1, + anon_sym_default, + ACTIONS(8174), 1, + anon_sym_case, + ACTIONS(8308), 1, + anon_sym_RBRACE, + STATE(4711), 1, sym_comment, - STATE(4728), 1, - aux_sym_object_type_repeat1, - ACTIONS(8306), 2, + STATE(4766), 1, + aux_sym_switch_body_repeat1, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [169217] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8170), 1, + anon_sym_default, + ACTIONS(8174), 1, + anon_sym_case, + ACTIONS(8310), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8304), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169238] = 6, + STATE(4712), 1, + sym_comment, + STATE(4766), 1, + aux_sym_switch_body_repeat1, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [169243] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3519), 1, - sym_statement_block, - STATE(4716), 1, + ACTIONS(8312), 1, + anon_sym_DOT, + STATE(4713), 1, sym_comment, - ACTIONS(7969), 4, + ACTIONS(7916), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [169260] = 4, + [169263] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4717), 1, + STATE(4714), 1, sym_comment, - ACTIONS(8308), 6, + ACTIONS(8314), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [169278] = 6, + [169281] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4718), 1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4715), 1, sym_comment, - STATE(4812), 1, + ACTIONS(8318), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8316), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169303] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4716), 1, + sym_comment, + STATE(4814), 1, aux_sym_object_type_repeat1, - ACTIONS(8312), 2, + ACTIONS(8322), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8310), 3, + ACTIONS(8320), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169300] = 6, + [169325] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3495), 1, - sym_statement_block, - STATE(4719), 1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4717), 1, sym_comment, - ACTIONS(8051), 4, + ACTIONS(8264), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8262), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169322] = 4, + [169347] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4720), 1, + STATE(4718), 1, sym_comment, - ACTIONS(7867), 6, + ACTIONS(8324), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - [169340] = 9, + anon_sym_PIPE_RBRACE, + [169365] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + STATE(4719), 1, + sym_comment, + ACTIONS(8326), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [169383] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(8314), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(8328), 1, anon_sym_QMARK, - STATE(4226), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(4721), 1, + STATE(4720), 1, sym_comment, - STATE(4743), 1, + STATE(4762), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [169368] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [169411] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4178), 1, - anon_sym_DQUOTE, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(8105), 1, - sym_identifier, - STATE(972), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_string, - STATE(1366), 1, - sym__module, - STATE(4722), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3483), 1, + sym_statement_block, + STATE(4721), 1, sym_comment, - [169396] = 9, + ACTIONS(8142), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169433] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4178), 1, - anon_sym_DQUOTE, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(8105), 1, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(8196), 1, + anon_sym_LBRACK, + ACTIONS(8332), 1, sym_identifier, - STATE(972), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_string, - STATE(1352), 1, - sym__module, - STATE(4723), 1, + STATE(4722), 1, sym_comment, - [169424] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5978), 1, + sym__destructuring_pattern, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + [169459] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(8316), 1, - sym_identifier, - STATE(4724), 1, + ACTIONS(8334), 1, + anon_sym_QMARK, + STATE(4723), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6659), 1, + STATE(6683), 1, sym__call_signature, - [169452] = 6, + [169487] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3509), 1, - sym_statement_block, - STATE(4725), 1, + STATE(4668), 1, + aux_sym_object_type_repeat1, + STATE(4724), 1, sym_comment, - ACTIONS(8103), 4, + ACTIONS(8338), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8336), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169474] = 8, + [169509] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8340), 1, + sym_identifier, + STATE(4725), 1, + sym_comment, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6914), 1, + sym__call_signature, + [169537] = 8, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_BQUOTE, - STATE(4707), 1, - aux_sym_template_string_repeat1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3984), 1, + anon_sym_LBRACE, + ACTIONS(8196), 1, + anon_sym_LBRACK, + ACTIONS(8342), 1, + sym_identifier, STATE(4726), 1, sym_comment, - STATE(5573), 1, - sym_template_substitution, - ACTIONS(7857), 2, - sym__template_chars, - sym_escape_sequence, - [169500] = 6, + STATE(5946), 1, + sym__destructuring_pattern, + STATE(4170), 2, + sym_object_pattern, + sym_array_pattern, + [169563] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3503), 1, - sym_statement_block, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(8344), 1, + anon_sym_COMMA, + ACTIONS(8346), 1, + anon_sym_GT, STATE(4727), 1, sym_comment, - ACTIONS(7995), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169522] = 6, + STATE(5924), 1, + aux_sym_type_arguments_repeat1, + [169591] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7632), 1, + anon_sym_DOT, + ACTIONS(8348), 1, + anon_sym_COMMA, + ACTIONS(8350), 1, + anon_sym_GT, + STATE(4363), 1, + sym_arguments, STATE(4728), 1, sym_comment, - STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8276), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8274), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169544] = 6, + STATE(5921), 1, + aux_sym_type_arguments_repeat1, + [169619] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3505), 1, + STATE(3500), 1, sym_statement_block, STATE(4729), 1, sym_comment, - ACTIONS(8075), 4, + ACTIONS(8047), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169566] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [169641] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4192), 1, - anon_sym_DQUOTE, - ACTIONS(4194), 1, - anon_sym_SQUOTE, - ACTIONS(8033), 1, - sym_identifier, - STATE(948), 1, - sym_nested_identifier, - STATE(997), 1, - sym_string, - STATE(1122), 1, - sym__module, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4717), 1, + aux_sym_object_type_repeat1, STATE(4730), 1, sym_comment, - [169594] = 9, + ACTIONS(8354), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8352), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169663] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(8320), 1, + ACTIONS(8356), 1, anon_sym_QMARK, STATE(4731), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6717), 1, + STATE(6455), 1, sym__call_signature, - [169622] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [169691] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4192), 1, - anon_sym_DQUOTE, - ACTIONS(4194), 1, - anon_sym_SQUOTE, - ACTIONS(8033), 1, - sym_identifier, - STATE(948), 1, - sym_nested_identifier, - STATE(997), 1, - sym_string, - STATE(1174), 1, - sym__module, - STATE(4732), 1, - sym_comment, - [169650] = 9, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(8322), 1, - sym_identifier, - STATE(4733), 1, - sym_comment, - STATE(4817), 1, + ACTIONS(8358), 1, + anon_sym_QMARK, + STATE(4142), 1, sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6917), 1, + STATE(4732), 1, + sym_comment, + STATE(6024), 1, sym__call_signature, - [169678] = 8, - ACTIONS(3), 1, + STATE(6467), 1, + sym_type_parameters, + [169719] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4733), 1, + sym_comment, + ACTIONS(8362), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8360), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169741] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(8324), 1, - sym_identifier, - ACTIONS(8326), 1, - anon_sym_LBRACK, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4685), 1, + aux_sym_object_type_repeat1, STATE(4734), 1, sym_comment, - STATE(5973), 1, - sym__destructuring_pattern, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - [169704] = 8, + ACTIONS(8366), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8364), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169763] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(8326), 1, - anon_sym_LBRACK, - ACTIONS(8328), 1, + ACTIONS(4205), 1, + anon_sym_DQUOTE, + ACTIONS(4207), 1, + anon_sym_SQUOTE, + ACTIONS(7940), 1, sym_identifier, + STATE(962), 1, + sym_nested_identifier, + STATE(1164), 1, + sym_string, + STATE(1358), 1, + sym__module, STATE(4735), 1, sym_comment, - STATE(5945), 1, - sym__destructuring_pattern, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - [169730] = 9, + [169791] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(8330), 1, - anon_sym_COMMA, - ACTIONS(8332), 1, - anon_sym_GT, - STATE(4367), 1, - sym_arguments, + ACTIONS(8170), 1, + anon_sym_default, + ACTIONS(8174), 1, + anon_sym_case, + ACTIONS(8368), 1, + anon_sym_RBRACE, + STATE(4688), 1, + aux_sym_switch_body_repeat1, STATE(4736), 1, sym_comment, - STATE(6260), 1, - aux_sym_type_arguments_repeat1, - [169758] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8334), 1, - sym_identifier, - STATE(4737), 1, - sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6659), 1, - sym__call_signature, - [169786] = 9, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [169817] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8336), 1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7632), 1, + anon_sym_DOT, + ACTIONS(8370), 1, anon_sym_COMMA, - ACTIONS(8338), 1, + ACTIONS(8372), 1, anon_sym_GT, - STATE(4738), 1, + STATE(4363), 1, + sym_arguments, + STATE(4737), 1, sym_comment, STATE(6264), 1, aux_sym_type_arguments_repeat1, - [169814] = 6, + [169845] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3518), 1, + STATE(3517), 1, sym_statement_block, - STATE(4739), 1, + STATE(4738), 1, sym_comment, - ACTIONS(8101), 4, + ACTIONS(7957), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169836] = 9, + [169867] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(8340), 1, + ACTIONS(8374), 1, anon_sym_QMARK, - STATE(4226), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4709), 1, - sym__call_signature, - STATE(4740), 1, + STATE(4739), 1, sym_comment, - STATE(6465), 1, + STATE(6089), 1, + sym__call_signature, + STATE(6467), 1, sym_type_parameters, - [169864] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8021), 1, - anon_sym_COMMA, - ACTIONS(8025), 1, - anon_sym_LT, - ACTIONS(8342), 1, - anon_sym_LBRACE, - ACTIONS(8344), 1, - anon_sym_LBRACE_PIPE, - STATE(4741), 1, - sym_comment, - STATE(5460), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5640), 1, - sym_type_arguments, - [169892] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8185), 1, - anon_sym_default, - ACTIONS(8189), 1, - anon_sym_case, - ACTIONS(8346), 1, - anon_sym_RBRACE, - STATE(4657), 1, - aux_sym_switch_body_repeat1, - STATE(4742), 1, - sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [169918] = 6, + [169895] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3507), 1, + STATE(3510), 1, sym_statement_block, - STATE(4743), 1, + STATE(4740), 1, sym_comment, - ACTIONS(7983), 4, + ACTIONS(8041), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169940] = 6, + [169917] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3506), 1, - sym_statement_block, - STATE(4744), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(8376), 1, + anon_sym_QMARK, + STATE(4142), 1, + sym_formal_parameters, + STATE(4618), 1, + sym__call_signature, + STATE(4741), 1, sym_comment, - ACTIONS(8075), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169962] = 6, + STATE(6467), 1, + sym_type_parameters, + [169945] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4745), 1, - sym_comment, - STATE(4812), 1, + STATE(4685), 1, aux_sym_object_type_repeat1, - ACTIONS(8350), 2, + STATE(4742), 1, + sym_comment, + ACTIONS(8380), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8348), 3, + ACTIONS(8378), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169984] = 9, + [169967] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(8352), 1, + ACTIONS(8382), 1, anon_sym_QMARK, - STATE(4746), 1, - sym_comment, - STATE(4817), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6684), 1, + STATE(4626), 1, sym__call_signature, - [170012] = 9, + STATE(4743), 1, + sym_comment, + STATE(6467), 1, + sym_type_parameters, + [169995] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(8354), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(8384), 1, anon_sym_QMARK, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4747), 1, - sym_comment, - STATE(5327), 1, + STATE(4640), 1, sym__call_signature, - STATE(6380), 1, + STATE(4744), 1, + sym_comment, + STATE(6467), 1, sym_type_parameters, - [170040] = 8, + [170023] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8185), 1, - anon_sym_default, - ACTIONS(8189), 1, - anon_sym_case, - ACTIONS(8356), 1, - anon_sym_RBRACE, - STATE(4748), 1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(8386), 1, + anon_sym_COMMA, + ACTIONS(8388), 1, + anon_sym_GT, + STATE(4745), 1, sym_comment, - STATE(4800), 1, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [170066] = 4, + STATE(5834), 1, + aux_sym_type_arguments_repeat1, + [170051] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4749), 1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3477), 1, + sym_statement_block, + STATE(4746), 1, sym_comment, - ACTIONS(8013), 6, + ACTIONS(8134), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [170084] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [170073] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4750), 1, - sym_comment, - STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8360), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8358), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170106] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4751), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8390), 1, + sym_identifier, + STATE(4747), 1, sym_comment, STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8364), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8362), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170128] = 6, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6680), 1, + sym__call_signature, + [170101] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4668), 1, - aux_sym_object_type_repeat1, - STATE(4752), 1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3468), 1, + sym_statement_block, + STATE(4748), 1, sym_comment, - ACTIONS(8364), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8362), 3, + ACTIONS(8162), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170150] = 4, + [170123] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4753), 1, - sym_comment, - ACTIONS(2186), 6, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(8392), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [170168] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8185), 1, - anon_sym_default, - ACTIONS(8189), 1, - anon_sym_case, - ACTIONS(8366), 1, - anon_sym_RBRACE, - STATE(4742), 1, - aux_sym_switch_body_repeat1, - STATE(4754), 1, + ACTIONS(8394), 1, + anon_sym_GT, + STATE(4749), 1, sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [170194] = 6, + STATE(6087), 1, + aux_sym_type_arguments_repeat1, + [170151] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4755), 1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3496), 1, + sym_statement_block, + STATE(4750), 1, sym_comment, - STATE(4792), 1, - aux_sym_object_type_repeat1, - ACTIONS(8370), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8368), 3, + ACTIONS(8118), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170216] = 6, + [170173] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3480), 1, + STATE(3467), 1, sym_statement_block, - STATE(4756), 1, + STATE(4751), 1, sym_comment, - ACTIONS(7937), 4, + ACTIONS(8160), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170238] = 8, + [170195] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4757), 1, - sym_comment, - STATE(5501), 1, - sym_type_annotation, - STATE(6939), 1, - sym__initializer, - ACTIONS(8372), 2, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7632), 1, + anon_sym_DOT, + ACTIONS(8396), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [170264] = 5, + ACTIONS(8398), 1, + anon_sym_GT, + STATE(4363), 1, + sym_arguments, + STATE(4752), 1, + sym_comment, + STATE(5830), 1, + aux_sym_type_arguments_repeat1, + [170223] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4758), 1, - sym_comment, - ACTIONS(8374), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4642), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7273), 1, anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(8400), 1, anon_sym_QMARK, - [170284] = 9, + STATE(4753), 1, + sym_comment, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6560), 1, + sym__call_signature, + [170251] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8120), 1, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8402), 1, sym_identifier, - STATE(4759), 1, + STATE(4754), 1, sym_comment, - STATE(4880), 1, - sym_nested_identifier, - STATE(5587), 1, - sym_string, - STATE(6390), 1, - sym__module, - [170312] = 6, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6657), 1, + sym__call_signature, + [170279] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4760), 1, - sym_comment, - STATE(4812), 1, + STATE(4685), 1, aux_sym_object_type_repeat1, - ACTIONS(8378), 2, + STATE(4755), 1, + sym_comment, + ACTIONS(8178), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8376), 3, + ACTIONS(8176), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170334] = 6, + [170301] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4761), 1, + ACTIONS(4213), 1, + anon_sym_DQUOTE, + ACTIONS(4215), 1, + anon_sym_SQUOTE, + ACTIONS(7967), 1, + sym_identifier, + STATE(1003), 1, + sym_nested_identifier, + STATE(1076), 1, + sym_string, + STATE(1452), 1, + sym__module, + STATE(4756), 1, sym_comment, - STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8382), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8380), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170356] = 9, + [170329] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8384), 1, + ACTIONS(8404), 1, sym_identifier, - STATE(4762), 1, + STATE(4757), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6659), 1, + STATE(6680), 1, sym__call_signature, - [170384] = 6, + [170357] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4763), 1, + STATE(4758), 1, sym_comment, - STATE(4810), 1, - aux_sym_object_type_repeat1, - ACTIONS(8388), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8386), 3, + ACTIONS(8021), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [170406] = 9, + anon_sym_COLON, + [170375] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8390), 1, + ACTIONS(8406), 1, sym_identifier, - STATE(4764), 1, + STATE(4759), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6917), 1, + STATE(6914), 1, sym__call_signature, - [170434] = 8, + [170403] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3977), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(8326), 1, + ACTIONS(8196), 1, anon_sym_LBRACK, - ACTIONS(8392), 1, + ACTIONS(8408), 1, sym_identifier, - STATE(4765), 1, + STATE(4760), 1, sym_comment, - STATE(5905), 1, + STATE(5906), 1, sym__destructuring_pattern, - STATE(4155), 2, + STATE(4170), 2, sym_object_pattern, sym_array_pattern, - [170460] = 6, + [170429] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4766), 1, + ACTIONS(7269), 1, + anon_sym_LPAREN, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(8410), 1, + anon_sym_QMARK, + STATE(4285), 1, + sym_formal_parameters, + STATE(4761), 1, sym_comment, - STATE(4816), 1, - aux_sym_object_type_repeat1, - ACTIONS(8396), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8394), 3, + STATE(4785), 1, + sym__call_signature, + STATE(6484), 1, + sym_type_parameters, + [170457] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3469), 1, + sym_statement_block, + STATE(4762), 1, + sym_comment, + ACTIONS(8041), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170482] = 6, + [170479] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4199), 1, + anon_sym_DQUOTE, + ACTIONS(4201), 1, + anon_sym_SQUOTE, + ACTIONS(8085), 1, + sym_identifier, + STATE(943), 1, + sym_nested_identifier, + STATE(983), 1, + sym_string, + STATE(1088), 1, + sym__module, + STATE(4763), 1, + sym_comment, + [170507] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4750), 1, - aux_sym_object_type_repeat1, - STATE(4767), 1, + ACTIONS(7269), 1, + anon_sym_LPAREN, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(8412), 1, + anon_sym_QMARK, + STATE(4285), 1, + sym_formal_parameters, + STATE(4764), 1, sym_comment, - ACTIONS(8382), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8380), 3, + STATE(4773), 1, + sym__call_signature, + STATE(6484), 1, + sym_type_parameters, + [170535] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3518), 1, + sym_statement_block, + STATE(4765), 1, + sym_comment, + ACTIONS(8162), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170504] = 9, + [170557] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8414), 1, + anon_sym_default, + ACTIONS(8417), 1, + anon_sym_RBRACE, + ACTIONS(8419), 1, + anon_sym_case, + STATE(4766), 2, + sym_comment, + aux_sym_switch_body_repeat1, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [170581] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8398), 1, - anon_sym_QMARK, - STATE(4768), 1, + ACTIONS(8422), 1, + sym_identifier, + STATE(4767), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6413), 1, + STATE(6914), 1, sym__call_signature, - [170532] = 8, + [170609] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8185), 1, + ACTIONS(8170), 1, anon_sym_default, - ACTIONS(8189), 1, + ACTIONS(8174), 1, anon_sym_case, - ACTIONS(8400), 1, + ACTIONS(8424), 1, anon_sym_RBRACE, - STATE(4657), 1, + STATE(4766), 1, aux_sym_switch_body_repeat1, + STATE(4768), 1, + sym_comment, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [170635] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4685), 1, + aux_sym_object_type_repeat1, STATE(4769), 1, sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [170558] = 9, + ACTIONS(8428), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8426), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170657] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(4199), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(4201), 1, anon_sym_SQUOTE, - ACTIONS(8120), 1, + ACTIONS(8085), 1, sym_identifier, - STATE(4770), 1, - sym_comment, - STATE(4880), 1, + STATE(943), 1, sym_nested_identifier, - STATE(5587), 1, + STATE(983), 1, sym_string, - STATE(6347), 1, + STATE(1202), 1, sym__module, - [170586] = 6, + STATE(4770), 1, + sym_comment, + [170685] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(8430), 1, + anon_sym_QMARK, + STATE(4142), 1, + sym_formal_parameters, + STATE(4523), 1, + sym__call_signature, STATE(4771), 1, sym_comment, - STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8404), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8402), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170608] = 8, + STATE(6467), 1, + sym_type_parameters, + [170713] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8406), 1, - anon_sym_catch, - ACTIONS(8408), 1, - anon_sym_finally, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3478), 1, + sym_statement_block, STATE(4772), 1, sym_comment, - STATE(5405), 1, - sym_catch_clause, - STATE(6384), 1, - sym_finally_clause, - ACTIONS(3129), 2, - anon_sym_else, - anon_sym_while, - [170634] = 9, + ACTIONS(8106), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170735] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - ACTIONS(8410), 1, - anon_sym_QMARK, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3471), 1, + sym_statement_block, STATE(4773), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6386), 1, - sym__call_signature, - [170662] = 8, + ACTIONS(8152), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170757] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8023), 1, - anon_sym_DOT, - ACTIONS(8025), 1, - anon_sym_LT, - ACTIONS(8412), 1, - anon_sym_LBRACE, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8432), 1, + anon_sym_export, + ACTIONS(8434), 1, + anon_sym_class, + ACTIONS(8436), 1, + anon_sym_abstract, + STATE(4674), 1, + aux_sym_export_statement_repeat1, STATE(4774), 1, sym_comment, - STATE(5641), 1, - sym_type_arguments, - ACTIONS(8414), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [170688] = 4, + STATE(5601), 1, + sym_decorator, + [170785] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(8438), 1, + anon_sym_QMARK, + STATE(4142), 1, + sym_formal_parameters, + STATE(4654), 1, + sym__call_signature, STATE(4775), 1, sym_comment, - ACTIONS(2212), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [170706] = 7, + STATE(6467), 1, + sym_type_parameters, + [170813] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3491), 1, + sym_statement_block, STATE(4776), 1, sym_comment, - ACTIONS(8416), 3, - anon_sym_EQ, + ACTIONS(8160), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [170730] = 9, + anon_sym_SEMI, + [170835] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(8418), 1, + ACTIONS(8440), 1, anon_sym_QMARK, - STATE(4119), 1, + STATE(4285), 1, sym_formal_parameters, STATE(4777), 1, sym_comment, - STATE(6090), 1, + STATE(4829), 1, sym__call_signature, - STATE(6380), 1, + STATE(6484), 1, sym_type_parameters, - [170758] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [170863] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3977), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, anon_sym_LBRACE, - ACTIONS(8326), 1, - anon_sym_LBRACK, - ACTIONS(8420), 1, - sym_identifier, + STATE(3520), 1, + sym_statement_block, STATE(4778), 1, sym_comment, - STATE(5465), 1, - sym__destructuring_pattern, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - [170784] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8104), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170885] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(8326), 1, - anon_sym_LBRACK, - ACTIONS(8422), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8170), 1, + anon_sym_default, + ACTIONS(8174), 1, + anon_sym_case, + ACTIONS(8442), 1, + anon_sym_RBRACE, + STATE(4712), 1, + aux_sym_switch_body_repeat1, STATE(4779), 1, sym_comment, - STATE(6746), 1, - sym__destructuring_pattern, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - [170810] = 9, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [170911] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8424), 1, - anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_COMMA, + STATE(4733), 1, + aux_sym_object_type_repeat1, STATE(4780), 1, sym_comment, - STATE(5902), 1, - aux_sym_implements_clause_repeat1, - [170838] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4781), 1, - sym_comment, - STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8430), 2, + ACTIONS(8446), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8428), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170860] = 9, + [170933] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(8432), 1, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(8448), 1, anon_sym_QMARK, - STATE(4119), 1, - sym_formal_parameters, - STATE(4782), 1, + STATE(4781), 1, sym_comment, - STATE(5207), 1, - sym__call_signature, - STATE(6380), 1, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, sym_type_parameters, - [170888] = 5, + STATE(6404), 1, + sym__call_signature, + [170961] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8434), 1, + ACTIONS(8450), 1, sym_identifier, - STATE(4783), 1, + STATE(4782), 1, sym_comment, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [170908] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - sym_identifier, - STATE(4784), 1, - sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6917), 1, - sym__call_signature, - [170936] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [170981] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4206), 1, - anon_sym_DQUOTE, - ACTIONS(4208), 1, - anon_sym_SQUOTE, - ACTIONS(8083), 1, - sym_identifier, - STATE(984), 1, - sym_nested_identifier, - STATE(1068), 1, - sym_string, - STATE(1471), 1, - sym__module, - STATE(4785), 1, - sym_comment, - [170964] = 9, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - ACTIONS(8438), 1, - sym_identifier, - STATE(4786), 1, + ACTIONS(8452), 1, + anon_sym_QMARK, + STATE(4783), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6659), 1, + STATE(6665), 1, sym__call_signature, - [170992] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [171009] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7931), 1, - sym_identifier, - STATE(4382), 1, - sym_nested_identifier, - STATE(4592), 1, - sym_string, - STATE(4787), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4784), 1, sym_comment, - STATE(4851), 1, - sym__module, - [171020] = 4, + ACTIONS(4649), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [171027] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4788), 1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3513), 1, + sym_statement_block, + STATE(4785), 1, sym_comment, - ACTIONS(8077), 6, + ACTIONS(8108), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [171038] = 9, + [171049] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8440), 1, + ACTIONS(8454), 1, sym_identifier, - STATE(4789), 1, + STATE(4786), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6659), 1, - sym__call_signature, - [171066] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(8442), 1, - anon_sym_QMARK, - STATE(4119), 1, - sym_formal_parameters, - STATE(4790), 1, - sym_comment, - STATE(5150), 1, + STATE(6680), 1, sym__call_signature, - STATE(6380), 1, - sym_type_parameters, - [171094] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7931), 1, - sym_identifier, - STATE(4382), 1, - sym_nested_identifier, - STATE(4592), 1, - sym_string, - STATE(4791), 1, - sym_comment, - STATE(4991), 1, - sym__module, - [171122] = 6, + [171077] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4792), 1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(8067), 1, + anon_sym_EQ, + STATE(4787), 1, sym_comment, - STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8446), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8444), 3, - sym__automatic_semicolon, + STATE(5503), 1, + sym_type_annotation, + STATE(6942), 1, + sym__initializer, + ACTIONS(8456), 2, anon_sym_COMMA, - anon_sym_SEMI, - [171144] = 9, + anon_sym_RPAREN, + [171103] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7632), 1, anon_sym_DOT, - ACTIONS(8448), 1, + ACTIONS(8458), 1, anon_sym_COMMA, - ACTIONS(8450), 1, + ACTIONS(8460), 1, anon_sym_GT, - STATE(4367), 1, + STATE(4363), 1, sym_arguments, - STATE(4793), 1, + STATE(4788), 1, sym_comment, - STATE(5912), 1, + STATE(6196), 1, aux_sym_type_arguments_repeat1, - [171172] = 9, + [171131] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(8452), 1, + ACTIONS(8462), 1, anon_sym_COMMA, - ACTIONS(8454), 1, + ACTIONS(8464), 1, anon_sym_GT, - STATE(4794), 1, + STATE(4789), 1, sym_comment, - STATE(5926), 1, + STATE(6192), 1, aux_sym_type_arguments_repeat1, - [171200] = 6, + [171159] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4761), 1, + STATE(4685), 1, aux_sym_object_type_repeat1, - STATE(4795), 1, + STATE(4790), 1, sym_comment, - ACTIONS(8458), 2, + ACTIONS(8446), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8456), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171222] = 8, + [171181] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4205), 1, + anon_sym_DQUOTE, + ACTIONS(4207), 1, + anon_sym_SQUOTE, + ACTIONS(7940), 1, + sym_identifier, + STATE(962), 1, + sym_nested_identifier, + STATE(1164), 1, + sym_string, + STATE(1490), 1, + sym__module, + STATE(4791), 1, + sym_comment, + [171209] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8185), 1, - anon_sym_default, - ACTIONS(8189), 1, - anon_sym_case, - ACTIONS(8460), 1, - anon_sym_RBRACE, - STATE(4769), 1, - aux_sym_switch_body_repeat1, - STATE(4796), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1980), 1, + anon_sym_LT, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8466), 1, + sym_identifier, + STATE(4792), 1, sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [171248] = 9, + STATE(4812), 1, + sym_formal_parameters, + STATE(6366), 1, + sym_type_parameters, + STATE(6680), 1, + sym__call_signature, + [171237] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8462), 1, + ACTIONS(8468), 1, sym_identifier, - STATE(4797), 1, + STATE(4793), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6917), 1, + STATE(6914), 1, sym__call_signature, - [171276] = 8, + [171265] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3977), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(8326), 1, + ACTIONS(8196), 1, anon_sym_LBRACK, - ACTIONS(8464), 1, + ACTIONS(8470), 1, sym_identifier, - STATE(4798), 1, + STATE(4794), 1, sym_comment, - STATE(5867), 1, + STATE(5870), 1, sym__destructuring_pattern, - STATE(4155), 2, + STATE(4170), 2, sym_object_pattern, sym_array_pattern, - [171302] = 9, + [171291] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8466), 1, - anon_sym_export, - ACTIONS(8468), 1, - anon_sym_class, - ACTIONS(8470), 1, - anon_sym_abstract, - STATE(4678), 1, - aux_sym_export_statement_repeat1, - STATE(4799), 1, + STATE(4795), 1, sym_comment, - STATE(5599), 1, - sym_decorator, - [171330] = 8, + STATE(4841), 1, + aux_sym_object_type_repeat1, + ACTIONS(8474), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171313] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8185), 1, - anon_sym_default, - ACTIONS(8189), 1, - anon_sym_case, - ACTIONS(8472), 1, - anon_sym_RBRACE, - STATE(4657), 1, - aux_sym_switch_body_repeat1, - STATE(4800), 1, + ACTIONS(4122), 1, + anon_sym_DQUOTE, + ACTIONS(4124), 1, + anon_sym_SQUOTE, + ACTIONS(8148), 1, + sym_identifier, + STATE(1064), 1, + sym_nested_identifier, + STATE(1402), 1, + sym_string, + STATE(1526), 1, + sym__module, + STATE(4796), 1, sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [171356] = 9, + [171341] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4117), 1, + ACTIONS(2018), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, + ACTIONS(2020), 1, anon_sym_SQUOTE, - ACTIONS(8149), 1, + ACTIONS(8057), 1, sym_identifier, - STATE(1197), 1, + STATE(4374), 1, sym_nested_identifier, - STATE(1317), 1, + STATE(4576), 1, sym_string, - STATE(1559), 1, - sym__module, - STATE(4801), 1, + STATE(4797), 1, sym_comment, - [171384] = 6, + STATE(4994), 1, + sym__module, + [171369] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4771), 1, - aux_sym_object_type_repeat1, - STATE(4802), 1, + STATE(4798), 1, sym_comment, - ACTIONS(8446), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8444), 3, - sym__automatic_semicolon, + ACTIONS(8476), 2, anon_sym_COMMA, - anon_sym_SEMI, - [171406] = 9, + anon_sym_RBRACE, + ACTIONS(4649), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [171389] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2018), 1, + anon_sym_DQUOTE, + ACTIONS(2020), 1, + anon_sym_SQUOTE, + ACTIONS(8057), 1, + sym_identifier, + STATE(4374), 1, + sym_nested_identifier, + STATE(4576), 1, + sym_string, + STATE(4799), 1, + sym_comment, + STATE(4855), 1, + sym__module, + [171417] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(8474), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(8478), 1, anon_sym_QMARK, - STATE(4119), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(4455), 1, - sym__call_signature, - STATE(4803), 1, + STATE(4800), 1, sym_comment, - STATE(6380), 1, + STATE(6197), 1, + sym__call_signature, + STATE(6467), 1, sym_type_parameters, - [171434] = 9, + [171445] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8025), 1, + anon_sym_COMMA, + ACTIONS(8029), 1, + anon_sym_LT, + ACTIONS(8480), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_LBRACE_PIPE, + STATE(4801), 1, + sym_comment, + STATE(5462), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5641), 1, + sym_type_arguments, + [171473] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8484), 1, + anon_sym_export, + ACTIONS(8486), 1, + anon_sym_class, + ACTIONS(8488), 1, + anon_sym_abstract, + STATE(4674), 1, + aux_sym_export_statement_repeat1, + STATE(4802), 1, + sym_comment, + STATE(5601), 1, + sym_decorator, + [171501] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8476), 1, + ACTIONS(8490), 1, sym_identifier, - STATE(4804), 1, + STATE(4803), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6659), 1, + STATE(6680), 1, sym__call_signature, - [171462] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4805), 1, - sym_comment, - STATE(4833), 1, - aux_sym_object_type_repeat1, - ACTIONS(8480), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8478), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171484] = 4, + [171529] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4806), 1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(8494), 1, + anon_sym_QMARK, + STATE(4804), 1, sym_comment, - ACTIONS(7999), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(8492), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [171502] = 9, + anon_sym_RBRACK, + [171555] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(8482), 1, + ACTIONS(8496), 1, anon_sym_QMARK, - STATE(4119), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(4807), 1, - sym_comment, - STATE(5197), 1, + STATE(4751), 1, sym__call_signature, - STATE(6380), 1, + STATE(4805), 1, + sym_comment, + STATE(6484), 1, sym_type_parameters, - [171530] = 9, + [171583] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(7632), 1, + anon_sym_DOT, + ACTIONS(8498), 1, + anon_sym_COMMA, + ACTIONS(8500), 1, + anon_sym_GT, + STATE(4363), 1, + sym_arguments, + STATE(4806), 1, + sym_comment, + STATE(5821), 1, + aux_sym_type_arguments_repeat1, + [171611] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4117), 1, + ACTIONS(4122), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, + ACTIONS(4124), 1, anon_sym_SQUOTE, - ACTIONS(8149), 1, + ACTIONS(8148), 1, sym_identifier, - STATE(1197), 1, + STATE(1064), 1, sym_nested_identifier, - STATE(1317), 1, + STATE(1402), 1, sym_string, - STATE(1561), 1, + STATE(1567), 1, sym__module, - STATE(4808), 1, + STATE(4807), 1, sym_comment, - [171558] = 9, + [171639] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(7923), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8484), 1, + ACTIONS(8502), 1, sym_identifier, - STATE(4809), 1, + STATE(4808), 1, sym_comment, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6917), 1, + STATE(6914), 1, sym__call_signature, - [171586] = 6, + [171667] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4810), 1, - sym_comment, - STATE(4812), 1, - aux_sym_object_type_repeat1, - ACTIONS(8480), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8478), 3, - sym__automatic_semicolon, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(8504), 1, anon_sym_COMMA, - anon_sym_SEMI, - [171608] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8506), 1, + anon_sym_GT, + STATE(4809), 1, + sym_comment, + STATE(5814), 1, + aux_sym_type_arguments_repeat1, + [171695] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8486), 1, - sym_identifier, - STATE(4811), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8508), 1, + anon_sym_export, + ACTIONS(8510), 1, + anon_sym_class, + ACTIONS(8512), 1, + anon_sym_abstract, + STATE(4674), 1, + aux_sym_export_statement_repeat1, + STATE(4810), 1, sym_comment, - STATE(4817), 1, - sym_formal_parameters, - STATE(6363), 1, - sym_type_parameters, - STATE(6917), 1, - sym__call_signature, - [171636] = 5, + STATE(5601), 1, + sym_decorator, + [171723] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8491), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4812), 2, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3511), 1, + sym_statement_block, + STATE(4811), 1, sym_comment, - aux_sym_object_type_repeat1, - ACTIONS(8488), 3, + ACTIONS(8152), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171656] = 9, + [171745] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(8493), 1, - anon_sym_QMARK, - STATE(4119), 1, - sym_formal_parameters, + ACTIONS(8214), 1, + anon_sym_COLON, + STATE(4812), 1, + sym_comment, + ACTIONS(7556), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6518), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [171767] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4685), 1, + aux_sym_object_type_repeat1, STATE(4813), 1, sym_comment, - STATE(5293), 1, - sym__call_signature, - STATE(6380), 1, - sym_type_parameters, - [171684] = 6, + ACTIONS(8322), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8320), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171789] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + STATE(4685), 1, + aux_sym_object_type_repeat1, STATE(4814), 1, sym_comment, - STATE(4846), 1, - aux_sym_object_type_repeat1, - ACTIONS(8497), 2, + ACTIONS(8516), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8495), 3, + ACTIONS(8514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171706] = 9, + [171811] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8499), 1, - anon_sym_export, - ACTIONS(8501), 1, - anon_sym_class, - ACTIONS(8503), 1, - anon_sym_abstract, - STATE(4678), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, STATE(4815), 1, sym_comment, - STATE(5599), 1, - sym_decorator, - [171734] = 6, + ACTIONS(8518), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [171835] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4812), 1, - aux_sym_object_type_repeat1, STATE(4816), 1, sym_comment, - ACTIONS(8497), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8495), 3, + ACTIONS(8065), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [171756] = 6, + anon_sym_COLON, + [171853] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, - anon_sym_COLON, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_statement_block, STATE(4817), 1, sym_comment, - ACTIONS(7501), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6509), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [171778] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8108), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171875] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(8326), 1, - anon_sym_LBRACK, - ACTIONS(8505), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(8520), 1, + anon_sym_QMARK, + STATE(4812), 1, + sym_formal_parameters, STATE(4818), 1, sym_comment, - STATE(6035), 1, - sym__destructuring_pattern, - STATE(4155), 2, - sym_object_pattern, - sym_array_pattern, - [171804] = 4, + STATE(6366), 1, + sym_type_parameters, + STATE(6409), 1, + sym__call_signature, + [171903] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8170), 1, + anon_sym_default, + ACTIONS(8174), 1, + anon_sym_case, + ACTIONS(8522), 1, + anon_sym_RBRACE, STATE(4819), 1, sym_comment, - ACTIONS(8507), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171822] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4831), 1, + aux_sym_switch_body_repeat1, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [171929] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8509), 1, - sym_identifier, - STATE(4817), 1, - sym_formal_parameters, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3502), 1, + sym_statement_block, STATE(4820), 1, sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6917), 1, - sym__call_signature, - [171850] = 9, + ACTIONS(8104), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171951] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(8511), 1, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(8524), 1, anon_sym_QMARK, - STATE(4119), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4594), 1, - sym__call_signature, STATE(4821), 1, sym_comment, - STATE(6380), 1, + STATE(6366), 1, sym_type_parameters, - [171878] = 9, + STATE(6416), 1, + sym__call_signature, + [171979] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(8513), 1, + ACTIONS(7283), 1, + anon_sym_LPAREN, + ACTIONS(8526), 1, anon_sym_QMARK, - STATE(4119), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4584), 1, - sym__call_signature, STATE(4822), 1, sym_comment, - STATE(6380), 1, + STATE(6366), 1, sym_type_parameters, - [171906] = 4, + STATE(6809), 1, + sym__call_signature, + [172007] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4823), 1, sym_comment, - ACTIONS(8515), 6, + STATE(4837), 1, + aux_sym_object_type_repeat1, + ACTIONS(8530), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8528), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171924] = 9, + [172029] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(8517), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(8532), 1, anon_sym_QMARK, - STATE(4817), 1, + STATE(4285), 1, sym_formal_parameters, + STATE(4721), 1, + sym__call_signature, STATE(4824), 1, sym_comment, - STATE(6363), 1, + STATE(6484), 1, sym_type_parameters, - STATE(6558), 1, - sym__call_signature, - [171952] = 6, + [172057] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4781), 1, - aux_sym_object_type_repeat1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(8534), 1, + anon_sym_QMARK, + STATE(4142), 1, + sym_formal_parameters, STATE(4825), 1, sym_comment, - ACTIONS(8378), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8376), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171974] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5331), 1, + sym__call_signature, + STATE(6467), 1, + sym_type_parameters, + [172085] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4206), 1, - anon_sym_DQUOTE, - ACTIONS(4208), 1, - anon_sym_SQUOTE, - ACTIONS(8083), 1, - sym_identifier, - STATE(984), 1, - sym_nested_identifier, - STATE(1068), 1, - sym_string, - STATE(1235), 1, - sym__module, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(8538), 1, + anon_sym_COMMA, STATE(4826), 1, sym_comment, - [172002] = 6, + STATE(5913), 1, + aux_sym_implements_clause_repeat1, + [172113] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4760), 1, - aux_sym_object_type_repeat1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3485), 1, + sym_statement_block, STATE(4827), 1, sym_comment, - ACTIONS(8521), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8519), 3, + ACTIONS(8130), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172024] = 9, + [172135] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(1980), 1, anon_sym_LT, - ACTIONS(8523), 1, - anon_sym_QMARK, - STATE(4119), 1, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(8540), 1, + sym_identifier, + STATE(4812), 1, sym_formal_parameters, - STATE(4556), 1, - sym__call_signature, STATE(4828), 1, sym_comment, - STATE(6380), 1, + STATE(6366), 1, sym_type_parameters, - [172052] = 9, + STATE(6914), 1, + sym__call_signature, + [172163] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(8525), 1, - anon_sym_QMARK, - STATE(4119), 1, - sym_formal_parameters, - STATE(4601), 1, - sym__call_signature, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3488), 1, + sym_statement_block, STATE(4829), 1, sym_comment, - STATE(6380), 1, - sym_type_parameters, - [172080] = 9, + ACTIONS(8128), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172185] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - ACTIONS(8527), 1, - anon_sym_QMARK, - STATE(4817), 1, - sym_formal_parameters, + STATE(4769), 1, + aux_sym_object_type_repeat1, STATE(4830), 1, sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6451), 1, - sym__call_signature, - [172108] = 5, + ACTIONS(8544), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8542), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172207] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8170), 1, + anon_sym_default, + ACTIONS(8174), 1, + anon_sym_case, + ACTIONS(8546), 1, + anon_sym_RBRACE, + STATE(4766), 1, + aux_sym_switch_body_repeat1, + STATE(4831), 1, + sym_comment, + STATE(5895), 2, + sym_switch_case, + sym_switch_default, + [172233] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8529), 1, + ACTIONS(8548), 1, sym_identifier, - STATE(4831), 1, + STATE(4832), 1, sym_comment, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172128] = 9, + [172253] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8531), 1, - anon_sym_COMMA, - ACTIONS(8533), 1, - anon_sym_GT, - STATE(4832), 1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8550), 1, + anon_sym_export, + ACTIONS(8552), 1, + anon_sym_class, + ACTIONS(8554), 1, + anon_sym_abstract, + STATE(4674), 1, + aux_sym_export_statement_repeat1, + STATE(4833), 1, sym_comment, - STATE(5830), 1, - aux_sym_type_arguments_repeat1, - [172156] = 6, + STATE(5601), 1, + sym_decorator, + [172281] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4812), 1, + STATE(4734), 1, aux_sym_object_type_repeat1, - STATE(4833), 1, + STATE(4834), 1, sym_comment, - ACTIONS(8537), 2, + ACTIONS(8558), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8535), 3, + ACTIONS(8556), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172178] = 4, + [172303] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4834), 1, + STATE(4835), 1, sym_comment, - ACTIONS(8539), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(2217), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172196] = 8, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [172321] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8173), 1, + ACTIONS(8212), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8541), 1, + ACTIONS(8560), 1, anon_sym_BQUOTE, - STATE(4659), 1, + STATE(4672), 1, aux_sym_template_string_repeat1, - STATE(4835), 1, + STATE(4836), 1, sym_comment, - STATE(5573), 1, + STATE(5578), 1, sym_template_substitution, - ACTIONS(7857), 2, + ACTIONS(7868), 2, sym__template_chars, sym_escape_sequence, - [172222] = 9, + [172347] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(8543), 1, - anon_sym_COMMA, - ACTIONS(8545), 1, - anon_sym_GT, - STATE(4367), 1, - sym_arguments, - STATE(4836), 1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4837), 1, sym_comment, - STATE(5826), 1, - aux_sym_type_arguments_repeat1, - [172250] = 4, + ACTIONS(8558), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8556), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172369] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4837), 1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4838), 1, sym_comment, - ACTIONS(7993), 6, + ACTIONS(8564), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8562), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [172268] = 5, + [172391] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8547), 1, - anon_sym_DOT, STATE(4838), 1, + aux_sym_object_type_repeat1, + STATE(4839), 1, + sym_comment, + ACTIONS(8568), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8566), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172413] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3509), 1, + sym_statement_block, + STATE(4840), 1, sym_comment, - ACTIONS(7887), 5, + ACTIONS(8106), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [172288] = 8, + [172435] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8551), 1, - anon_sym_QMARK, - STATE(4839), 1, + STATE(4685), 1, + aux_sym_object_type_repeat1, + STATE(4841), 1, sym_comment, - ACTIONS(8549), 2, + ACTIONS(8544), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8542), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [172314] = 5, + anon_sym_SEMI, + [172457] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8553), 1, + ACTIONS(8570), 1, sym_identifier, - STATE(4840), 1, + STATE(4842), 1, sym_comment, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172334] = 5, + [172477] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8555), 1, + ACTIONS(8572), 1, sym_identifier, - STATE(4841), 1, + STATE(4843), 1, sym_comment, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172354] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8557), 1, - anon_sym_export, - ACTIONS(8559), 1, - anon_sym_class, - ACTIONS(8561), 1, - anon_sym_abstract, - STATE(4678), 1, - aux_sym_export_statement_repeat1, - STATE(4842), 1, - sym_comment, - STATE(5599), 1, - sym_decorator, - [172382] = 5, + [172497] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8563), 1, + ACTIONS(8574), 1, sym_identifier, - STATE(4843), 1, + STATE(4844), 1, sym_comment, - ACTIONS(7106), 5, + ACTIONS(7117), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172402] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7923), 1, - anon_sym_LPAREN, - ACTIONS(8565), 1, - sym_identifier, - STATE(4817), 1, - sym_formal_parameters, - STATE(4844), 1, - sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6666), 1, - sym__call_signature, - [172430] = 9, + [172517] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(8567), 1, - anon_sym_QMARK, - STATE(4119), 1, - sym_formal_parameters, - STATE(4478), 1, - sym__call_signature, + STATE(4755), 1, + aux_sym_object_type_repeat1, STATE(4845), 1, sym_comment, - STATE(6380), 1, - sym_type_parameters, - [172458] = 6, + ACTIONS(8578), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172539] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4812), 1, - aux_sym_object_type_repeat1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3481), 1, + sym_statement_block, STATE(4846), 1, sym_comment, - ACTIONS(8571), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8569), 3, + ACTIONS(8134), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172480] = 4, + [172561] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + STATE(4694), 1, + aux_sym_object_type_repeat1, STATE(4847), 1, sym_comment, - ACTIONS(6446), 6, + ACTIONS(8564), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8562), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DOT, - [172498] = 6, + [172583] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(8580), 1, + anon_sym_QMARK, + STATE(4142), 1, + sym_formal_parameters, + STATE(4597), 1, + sym__call_signature, STATE(4848), 1, sym_comment, - STATE(6287), 1, - sym__initializer, - ACTIONS(8573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172519] = 8, + STATE(6467), 1, + sym_type_parameters, + [172611] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(8582), 1, + anon_sym_QMARK, + STATE(4142), 1, sym_formal_parameters, STATE(4849), 1, sym_comment, - STATE(5073), 1, + STATE(5152), 1, sym__call_signature, - STATE(6465), 1, + STATE(6467), 1, sym_type_parameters, - [172544] = 4, + [172639] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4850), 1, sym_comment, - ACTIONS(2296), 5, + STATE(6289), 1, + sym__initializer, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172561] = 4, + [172660] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, STATE(4851), 1, sym_comment, - ACTIONS(2312), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172578] = 8, + STATE(6366), 1, + sym_type_parameters, + STATE(6395), 1, + sym__call_signature, + [172685] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8470), 1, - anon_sym_abstract, - ACTIONS(8575), 1, - anon_sym_class, - STATE(4678), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4852), 1, sym_comment, - STATE(5599), 1, - sym_decorator, - [172603] = 8, + STATE(6204), 1, + sym__initializer, + ACTIONS(8586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172706] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8503), 1, - anon_sym_abstract, - ACTIONS(8577), 1, - anon_sym_class, - STATE(4678), 1, - aux_sym_export_statement_repeat1, + ACTIONS(8588), 1, + anon_sym_LBRACE, + ACTIONS(8590), 1, + anon_sym_SEMI, + ACTIONS(8592), 1, + sym__automatic_semicolon, + ACTIONS(8594), 1, + sym__function_signature_automatic_semicolon, + STATE(1212), 1, + sym_statement_block, STATE(4853), 1, sym_comment, - STATE(5599), 1, - sym_decorator, - [172628] = 5, + [172731] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5455), 1, - anon_sym_in, STATE(4854), 1, sym_comment, - ACTIONS(6383), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [172647] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(4855), 1, - sym_comment, - STATE(6210), 1, - sym__initializer, - ACTIONS(8579), 3, + ACTIONS(2237), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172668] = 6, + anon_sym_PIPE_RBRACE, + [172748] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(4856), 1, + STATE(4855), 1, sym_comment, - STATE(6204), 1, - sym__initializer, - ACTIONS(8579), 3, + ACTIONS(2241), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172689] = 7, + anon_sym_PIPE_RBRACE, + [172765] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(4857), 1, + STATE(4856), 1, sym_comment, - ACTIONS(8581), 2, + ACTIONS(8596), 2, sym__automatic_semicolon, anon_sym_SEMI, - [172712] = 8, + [172788] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(4706), 1, + STATE(4750), 1, sym__call_signature, - STATE(4858), 1, + STATE(4857), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [172737] = 7, + [172813] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(4859), 1, + STATE(4858), 1, sym_comment, - ACTIONS(8585), 2, + ACTIONS(8600), 2, sym__automatic_semicolon, anon_sym_SEMI, - [172760] = 6, + [172836] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(4860), 1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8231), 1, + anon_sym_abstract, + ACTIONS(8602), 1, + anon_sym_class, + STATE(4674), 1, + aux_sym_export_statement_repeat1, + STATE(4859), 1, sym_comment, - STATE(6203), 1, - sym__initializer, - ACTIONS(8587), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172781] = 4, + STATE(5601), 1, + sym_decorator, + [172861] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4861), 1, + STATE(4860), 1, sym_comment, - ACTIONS(8589), 5, + ACTIONS(8604), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172798] = 8, + [172878] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8606), 1, + anon_sym_EQ, + ACTIONS(8608), 1, + anon_sym_COMMA, + ACTIONS(8610), 1, + anon_sym_RBRACE, + STATE(4861), 1, + sym_comment, + STATE(5634), 1, + aux_sym_enum_body_repeat1, + STATE(6681), 1, + sym__initializer, + [172903] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(8561), 1, + ACTIONS(8512), 1, anon_sym_abstract, - ACTIONS(8591), 1, + ACTIONS(8612), 1, anon_sym_class, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, STATE(4862), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [172823] = 4, + [172928] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5523), 1, + anon_sym_in, STATE(4863), 1, sym_comment, - ACTIONS(8593), 5, + ACTIONS(6437), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [172947] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8554), 1, + anon_sym_abstract, + ACTIONS(8614), 1, + anon_sym_class, + STATE(4674), 1, + aux_sym_export_statement_repeat1, + STATE(4864), 1, + sym_comment, + STATE(5601), 1, + sym_decorator, + [172972] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4865), 1, + sym_comment, + ACTIONS(8616), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172840] = 4, + [172989] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4864), 1, + STATE(4866), 1, sym_comment, - ACTIONS(8595), 5, + ACTIONS(8618), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172857] = 6, + [173006] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2252), 1, + ACTIONS(2227), 1, anon_sym_DOT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - STATE(4865), 1, + STATE(4867), 1, sym_comment, - ACTIONS(5326), 3, + ACTIONS(5251), 3, anon_sym_COMMA, anon_sym_LT, anon_sym_LBRACE_PIPE, - [172878] = 6, + [173027] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2154), 1, + ACTIONS(2231), 1, anon_sym_DOT, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - STATE(4866), 1, + STATE(4868), 1, sym_comment, - ACTIONS(5326), 3, + ACTIONS(5251), 3, anon_sym_COMMA, anon_sym_LT, anon_sym_LBRACE_PIPE, - [172899] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8597), 1, - anon_sym_EQ, - ACTIONS(8599), 1, - anon_sym_COMMA, - ACTIONS(8601), 1, - anon_sym_RBRACE, - STATE(4867), 1, - sym_comment, - STATE(5630), 1, - aux_sym_enum_body_repeat1, - STATE(6678), 1, - sym__initializer, - [172924] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4868), 1, - sym_comment, - ACTIONS(8603), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172941] = 4, + [173048] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4869), 1, sym_comment, - ACTIONS(8087), 5, + ACTIONS(8620), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172958] = 4, + [173065] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4870), 1, sym_comment, - ACTIONS(8089), 5, + ACTIONS(8134), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172975] = 4, + [173082] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4871), 1, sym_comment, - ACTIONS(3603), 5, + ACTIONS(8142), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172992] = 8, + [173099] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, STATE(4872), 1, sym_comment, - STATE(5322), 1, + STATE(5314), 1, sym__call_signature, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [173017] = 4, + [173124] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4873), 1, sym_comment, - ACTIONS(3605), 5, + ACTIONS(8134), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173034] = 4, + [173141] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4874), 1, sym_comment, - ACTIONS(8087), 5, + ACTIONS(3578), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173051] = 7, + [173158] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4875), 1, + sym_comment, + ACTIONS(3580), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173175] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(4876), 1, + sym_comment, + STATE(6156), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173196] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - ACTIONS(8605), 1, + ACTIONS(8624), 1, anon_sym_DOT, - STATE(4875), 1, + STATE(4877), 1, sym_comment, - STATE(6408), 1, + STATE(6420), 1, sym_statement_block, - ACTIONS(2128), 2, + ACTIONS(2145), 2, anon_sym_else, anon_sym_while, - [173074] = 4, + [173219] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4876), 1, + STATE(4878), 1, sym_comment, - ACTIONS(3645), 5, + ACTIONS(3630), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173091] = 4, + [173236] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4877), 1, + STATE(4879), 1, sym_comment, - ACTIONS(3647), 5, + ACTIONS(3632), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173108] = 6, + [173253] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4878), 1, + STATE(4880), 1, sym_comment, - STATE(6169), 1, + STATE(6152), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173129] = 6, + [173274] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4879), 1, + STATE(4881), 1, sym_comment, - STATE(6157), 1, + STATE(6150), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173150] = 7, + [173295] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - ACTIONS(8609), 1, + ACTIONS(8626), 1, anon_sym_DOT, - STATE(4880), 1, + STATE(4882), 1, sym_comment, - STATE(6408), 1, + STATE(6420), 1, sym_statement_block, - ACTIONS(2128), 2, + ACTIONS(2145), 2, anon_sym_else, anon_sym_while, - [173173] = 4, + [173318] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4881), 1, + STATE(4883), 1, sym_comment, - ACTIONS(2364), 5, + ACTIONS(2371), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173190] = 4, + [173335] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4882), 1, + STATE(4884), 1, sym_comment, - ACTIONS(3473), 5, + ACTIONS(3662), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173207] = 4, + [173352] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4883), 1, + STATE(4885), 1, sym_comment, - ACTIONS(3483), 5, + ACTIONS(3652), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173224] = 4, + [173369] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4884), 1, + STATE(4886), 1, sym_comment, - ACTIONS(3465), 5, + ACTIONS(3650), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173241] = 6, + [173386] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4885), 1, + STATE(4887), 1, sym_comment, - STATE(6152), 1, + STATE(6147), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173262] = 4, + [173407] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4886), 1, + STATE(4888), 1, sym_comment, - ACTIONS(3467), 5, + ACTIONS(3648), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173279] = 6, + [173424] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4887), 1, + STATE(4889), 1, sym_comment, - STATE(6151), 1, + STATE(6142), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173300] = 4, + [173445] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4888), 1, + STATE(4890), 1, sym_comment, - ACTIONS(3469), 5, + ACTIONS(3646), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173317] = 8, + [173462] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(8611), 1, + ACTIONS(8628), 1, anon_sym_class, - ACTIONS(8613), 1, + ACTIONS(8630), 1, anon_sym_abstract, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(4889), 1, + STATE(4891), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [173342] = 5, + [173487] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8615), 1, + ACTIONS(8632), 1, anon_sym_EQ, - STATE(4890), 1, + STATE(4892), 1, sym_comment, - ACTIONS(4370), 4, + ACTIONS(4378), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [173361] = 4, + [173506] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4891), 1, + STATE(4893), 1, sym_comment, - ACTIONS(6229), 5, + ACTIONS(6184), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [173378] = 6, + [173523] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4892), 1, + STATE(4894), 1, sym_comment, - STATE(6148), 1, + STATE(6226), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173399] = 6, + [173544] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4893), 1, + STATE(4895), 1, sym_comment, - STATE(6211), 1, + STATE(6140), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173420] = 4, + [173565] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4894), 1, + STATE(4896), 1, sym_comment, - ACTIONS(2332), 5, + ACTIONS(2445), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173437] = 4, + [173582] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4895), 1, + STATE(4897), 1, sym_comment, - ACTIONS(3477), 5, + ACTIONS(3610), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173454] = 6, + [173599] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4896), 1, + STATE(4898), 1, sym_comment, - STATE(6143), 1, + STATE(6216), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173475] = 6, + [173620] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4897), 1, + STATE(4899), 1, sym_comment, - STATE(6228), 1, + STATE(6138), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173496] = 4, + [173641] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4898), 1, + STATE(4900), 1, sym_comment, - ACTIONS(3479), 5, + ACTIONS(3608), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173513] = 4, + [173658] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4899), 1, + STATE(4901), 1, sym_comment, - ACTIONS(3487), 5, + ACTIONS(3574), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173530] = 4, + [173675] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4900), 1, + STATE(4902), 1, sym_comment, - ACTIONS(3489), 5, + ACTIONS(3572), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173547] = 4, + [173692] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4901), 1, + STATE(4903), 1, sym_comment, - ACTIONS(3491), 5, + ACTIONS(3562), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173564] = 8, + [173709] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(8225), 1, + ACTIONS(8436), 1, anon_sym_abstract, - ACTIONS(8618), 1, + ACTIONS(8637), 1, anon_sym_class, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(4902), 1, + STATE(4904), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [173589] = 4, + [173734] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4903), 1, + STATE(4905), 1, sym_comment, - ACTIONS(3493), 5, + ACTIONS(3556), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173606] = 6, + [173751] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4904), 1, + STATE(4906), 1, sym_comment, - STATE(6138), 1, + STATE(6120), 1, sym__initializer, - ACTIONS(8620), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173627] = 4, + [173772] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4905), 1, + STATE(4907), 1, sym_comment, - ACTIONS(3495), 5, + ACTIONS(3554), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173644] = 4, + [173789] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4906), 1, + STATE(4908), 1, sym_comment, - ACTIONS(3497), 5, + ACTIONS(3550), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173661] = 4, + [173806] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4907), 1, + STATE(4909), 1, sym_comment, - ACTIONS(3499), 5, + ACTIONS(3536), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173678] = 4, + [173823] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4908), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(4910), 1, sym_comment, - ACTIONS(3507), 5, + STATE(6117), 1, + sym__initializer, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173695] = 4, + [173844] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4909), 1, + STATE(4911), 1, sym_comment, - ACTIONS(2344), 5, + ACTIONS(3474), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173712] = 4, + [173861] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4910), 1, + STATE(4912), 1, sym_comment, - ACTIONS(2348), 5, + ACTIONS(2429), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173729] = 6, + [173878] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(4911), 1, + STATE(4913), 1, sym_comment, - STATE(6127), 1, - sym__initializer, - ACTIONS(8607), 3, + ACTIONS(2425), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173750] = 6, + anon_sym_PIPE_RBRACE, + [173895] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4912), 1, + STATE(4914), 1, sym_comment, - STATE(6117), 1, + STATE(5971), 1, sym__initializer, - ACTIONS(8607), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173771] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4913), 1, - sym_comment, - ACTIONS(2358), 5, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173788] = 8, + [173916] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(4914), 1, + STATE(4915), 1, sym_comment, - STATE(5010), 1, + STATE(5013), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [173813] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8622), 1, - anon_sym_BQUOTE, - ACTIONS(8624), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, - sym__template_chars, - STATE(4915), 1, - sym_comment, - STATE(5016), 1, - aux_sym_template_literal_type_repeat1, - STATE(5792), 1, - sym_template_type, - [173838] = 6, + [173941] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4916), 1, sym_comment, - STATE(6115), 1, - sym__initializer, - ACTIONS(8620), 3, + ACTIONS(2405), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173859] = 4, + anon_sym_PIPE_RBRACE, + [173958] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8639), 1, + anon_sym_BQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8643), 1, + sym__template_chars, STATE(4917), 1, sym_comment, - ACTIONS(3509), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173876] = 4, + STATE(5018), 1, + aux_sym_template_literal_type_repeat1, + STATE(5795), 1, + sym_template_type, + [173983] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4918), 1, sym_comment, - ACTIONS(3513), 5, + STATE(6115), 1, + sym__initializer, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173893] = 4, + [174004] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4919), 1, sym_comment, - ACTIONS(3513), 5, + STATE(6105), 1, + sym__initializer, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173910] = 4, + [174025] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4920), 1, sym_comment, - ACTIONS(3515), 5, + ACTIONS(3476), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173927] = 6, + [174042] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4921), 1, sym_comment, - STATE(6101), 1, - sym__initializer, - ACTIONS(8607), 3, + ACTIONS(3480), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173948] = 4, + anon_sym_PIPE_RBRACE, + [174059] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4922), 1, sym_comment, - ACTIONS(3517), 5, + ACTIONS(3480), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173965] = 4, + [174076] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4923), 1, sym_comment, - ACTIONS(3519), 5, + ACTIONS(3482), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173982] = 4, + [174093] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4924), 1, sym_comment, - ACTIONS(3523), 5, + STATE(6097), 1, + sym__initializer, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173999] = 4, + [174114] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4925), 1, sym_comment, - ACTIONS(3525), 5, + ACTIONS(3484), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174016] = 4, + [174131] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4926), 1, sym_comment, - ACTIONS(3527), 5, + ACTIONS(3486), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174033] = 4, + [174148] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4927), 1, sym_comment, - ACTIONS(3529), 5, + ACTIONS(3488), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174050] = 4, + [174165] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4928), 1, sym_comment, - ACTIONS(3529), 5, + ACTIONS(3490), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174067] = 4, + [174182] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4929), 1, sym_comment, - ACTIONS(3529), 5, + ACTIONS(3494), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174084] = 4, + [174199] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4930), 1, sym_comment, - ACTIONS(3545), 5, + ACTIONS(3500), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174101] = 4, + [174216] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4931), 1, sym_comment, - ACTIONS(3555), 5, + ACTIONS(3500), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174118] = 4, + [174233] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4932), 1, sym_comment, - ACTIONS(3627), 5, + ACTIONS(3500), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174135] = 4, + [174250] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4933), 1, sym_comment, - ACTIONS(2376), 5, + ACTIONS(3514), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174152] = 4, + [174267] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4934), 1, sym_comment, - ACTIONS(2380), 5, + ACTIONS(3522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174169] = 4, + [174284] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4935), 1, sym_comment, - ACTIONS(3559), 5, + ACTIONS(2387), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174186] = 4, + [174301] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4936), 1, sym_comment, - ACTIONS(3561), 5, + ACTIONS(2375), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174203] = 6, + [174318] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4937), 1, sym_comment, - STATE(6096), 1, - sym__initializer, - ACTIONS(8607), 3, + ACTIONS(3606), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174224] = 6, + anon_sym_PIPE_RBRACE, + [174335] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4938), 1, sym_comment, - STATE(6094), 1, - sym__initializer, - ACTIONS(8620), 3, + ACTIONS(3526), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174245] = 4, + anon_sym_PIPE_RBRACE, + [174352] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4939), 1, sym_comment, - ACTIONS(3561), 5, + ACTIONS(3528), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174262] = 6, + [174369] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(4940), 1, sym_comment, - STATE(6061), 1, + STATE(6093), 1, sym__initializer, - ACTIONS(8620), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174283] = 6, + [174390] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(4941), 1, sym_comment, - STATE(6214), 1, + STATE(6063), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174304] = 4, + [174411] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4942), 1, sym_comment, - ACTIONS(3567), 5, + ACTIONS(3528), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174321] = 4, + [174428] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4943), 1, sym_comment, - ACTIONS(3571), 5, + STATE(6033), 1, + sym__initializer, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174338] = 4, + [174449] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4944), 1, sym_comment, - ACTIONS(3573), 5, + STATE(6229), 1, + sym__initializer, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174355] = 4, + [174470] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4945), 1, sym_comment, - ACTIONS(3575), 5, + ACTIONS(3532), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174372] = 4, + [174487] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4946), 1, sym_comment, - ACTIONS(3577), 5, + ACTIONS(3538), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174389] = 6, + [174504] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4947), 1, sym_comment, - STATE(6037), 1, - sym__initializer, - ACTIONS(8607), 3, + ACTIONS(3540), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174410] = 6, + anon_sym_PIPE_RBRACE, + [174521] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4948), 1, sym_comment, - STATE(6221), 1, - sym__initializer, - ACTIONS(8628), 3, + ACTIONS(3542), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174431] = 4, + anon_sym_PIPE_RBRACE, + [174538] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4949), 1, sym_comment, - ACTIONS(3583), 5, + ACTIONS(3544), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174448] = 4, + [174555] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4950), 1, sym_comment, - ACTIONS(3583), 5, + STATE(6032), 1, + sym__initializer, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174465] = 6, + [174576] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(8590), 1, + anon_sym_SEMI, + ACTIONS(8592), 1, + sym__automatic_semicolon, + ACTIONS(8594), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8647), 1, + anon_sym_LBRACE, + STATE(381), 1, + sym_statement_block, STATE(4951), 1, sym_comment, - STATE(6236), 1, - sym__initializer, - ACTIONS(8579), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174486] = 6, + [174601] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4952), 1, sym_comment, - STATE(6031), 1, - sym__initializer, - ACTIONS(8620), 3, + ACTIONS(3548), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174507] = 4, + anon_sym_PIPE_RBRACE, + [174618] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4953), 1, sym_comment, - ACTIONS(3583), 5, + ACTIONS(3548), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174524] = 8, + [174635] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(8632), 1, - anon_sym_SEMI, - ACTIONS(8634), 1, - sym__automatic_semicolon, - ACTIONS(8636), 1, - sym__function_signature_automatic_semicolon, - STATE(357), 1, - sym_statement_block, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4954), 1, sym_comment, - [174549] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6213), 1, + sym__initializer, + ACTIONS(8635), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174656] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8638), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4955), 1, sym_comment, - STATE(5558), 1, - sym_string, - STATE(7058), 1, - sym__module_export_name, - [174574] = 4, + STATE(6236), 1, + sym__initializer, + ACTIONS(8586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174677] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4956), 1, sym_comment, - ACTIONS(3601), 5, + ACTIONS(3548), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174591] = 8, + [174694] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8501), 1, - anon_sym_class, - ACTIONS(8503), 1, - anon_sym_abstract, - STATE(4678), 1, - aux_sym_export_statement_repeat1, + ACTIONS(1972), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + anon_sym_SQUOTE, + ACTIONS(8649), 1, + sym_identifier, STATE(4957), 1, sym_comment, - STATE(5599), 1, - sym_decorator, - [174616] = 6, + STATE(5560), 1, + sym_string, + STATE(7061), 1, + sym__module_export_name, + [174719] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8510), 1, + anon_sym_class, + ACTIONS(8512), 1, + anon_sym_abstract, + STATE(4674), 1, + aux_sym_export_statement_repeat1, STATE(4958), 1, sym_comment, - STATE(6243), 1, - sym__initializer, - ACTIONS(8579), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174637] = 4, + STATE(5601), 1, + sym_decorator, + [174744] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4959), 1, sym_comment, - ACTIONS(3615), 5, + ACTIONS(3576), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174654] = 4, + [174761] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(4960), 1, sym_comment, - ACTIONS(3615), 5, + STATE(6241), 1, + sym__initializer, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174671] = 8, + [174782] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(8638), 1, + ACTIONS(8649), 1, sym_identifier, STATE(4961), 1, sym_comment, - STATE(5558), 1, + STATE(5560), 1, sym_string, - STATE(5832), 1, + STATE(5826), 1, sym__module_export_name, - [174696] = 6, + [174807] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4962), 1, sym_comment, - STATE(6005), 1, - sym__initializer, - ACTIONS(8607), 3, + ACTIONS(3592), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174717] = 4, + anon_sym_PIPE_RBRACE, + [174824] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4963), 1, sym_comment, - ACTIONS(3615), 5, + ACTIONS(3592), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174734] = 8, + [174841] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(4964), 1, + sym_comment, + STATE(6006), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174862] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(4964), 1, + STATE(4965), 1, sym_comment, - STATE(5033), 1, + STATE(5035), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [174759] = 4, + [174887] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4965), 1, + STATE(4966), 1, sym_comment, - ACTIONS(3615), 5, + ACTIONS(3592), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174776] = 6, + [174904] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4966), 1, + STATE(4967), 1, sym_comment, STATE(6004), 1, sym__initializer, - ACTIONS(8607), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174797] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4967), 1, - sym_comment, - ACTIONS(2400), 5, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174814] = 4, + [174925] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(4968), 1, sym_comment, - ACTIONS(3617), 5, + ACTIONS(3592), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174831] = 7, + [174942] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, STATE(4969), 1, sym_comment, - ACTIONS(8640), 2, + ACTIONS(8651), 2, sym__automatic_semicolon, anon_sym_SEMI, - [174854] = 6, + [174965] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(4970), 1, sym_comment, - STATE(6002), 1, - sym__initializer, - ACTIONS(8607), 3, + ACTIONS(2477), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174875] = 8, + anon_sym_PIPE_RBRACE, + [174982] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(4971), 1, + sym_comment, + ACTIONS(3596), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174999] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8642), 1, + ACTIONS(8588), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, + ACTIONS(8653), 1, anon_sym_SEMI, - ACTIONS(8646), 1, + ACTIONS(8655), 1, sym__automatic_semicolon, - ACTIONS(8648), 1, + ACTIONS(8657), 1, sym__function_signature_automatic_semicolon, - STATE(1151), 1, + STATE(1198), 1, sym_statement_block, - STATE(4971), 1, + STATE(4972), 1, sym_comment, - [174900] = 5, + [175024] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8650), 1, + ACTIONS(8659), 1, anon_sym_EQ, - STATE(4972), 1, + STATE(4973), 1, sym_comment, - ACTIONS(4348), 4, + ACTIONS(4349), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [174919] = 8, + [175043] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(4974), 1, + sym_comment, + STATE(5999), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175064] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(4973), 1, + STATE(4975), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6839), 1, + STATE(6845), 1, sym__call_signature, - [174944] = 6, + [175089] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, + STATE(4976), 1, + sym_comment, + STATE(6366), 1, + sym_type_parameters, + STATE(6858), 1, + sym__call_signature, + [175114] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4974), 1, + STATE(4977), 1, sym_comment, - STATE(6247), 1, + STATE(5993), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174965] = 6, + [175135] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4975), 1, + STATE(4978), 1, sym_comment, - STATE(5990), 1, + STATE(5991), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174986] = 4, + [175156] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4976), 1, + STATE(4979), 1, sym_comment, - ACTIONS(3619), 5, + ACTIONS(3598), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175003] = 4, + [175173] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4977), 1, + STATE(4980), 1, sym_comment, - ACTIONS(3615), 5, + ACTIONS(3592), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175020] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(4817), 1, - sym_formal_parameters, - STATE(4978), 1, - sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6853), 1, - sym__call_signature, - [175045] = 4, + [175190] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4979), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(4981), 1, sym_comment, - ACTIONS(3615), 5, + STATE(6242), 1, + sym__initializer, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175062] = 6, + [175211] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(4980), 1, + STATE(4982), 1, sym_comment, - STATE(5989), 1, - sym__initializer, - ACTIONS(8620), 3, + ACTIONS(3592), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [175083] = 8, + anon_sym_PIPE_RBRACE, + [175228] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8624), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, + ACTIONS(8643), 1, sym__template_chars, - ACTIONS(8652), 1, + ACTIONS(8661), 1, anon_sym_BQUOTE, - STATE(4981), 1, + STATE(4983), 1, sym_comment, - STATE(5015), 1, + STATE(5016), 1, aux_sym_template_literal_type_repeat1, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [175108] = 6, + [175253] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4982), 1, + STATE(4984), 1, sym_comment, - STATE(6250), 1, + STATE(6247), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175129] = 8, + [175274] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(4985), 1, + sym_comment, + STATE(5970), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175295] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4642), 1, + ACTIONS(4649), 1, anon_sym_COLON, - ACTIONS(7252), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(8654), 1, + ACTIONS(8663), 1, anon_sym_COMMA, - ACTIONS(8656), 1, + ACTIONS(8665), 1, anon_sym_RBRACE, - STATE(4983), 1, + STATE(4986), 1, sym_comment, - STATE(5845), 1, + STATE(5912), 1, aux_sym_object_pattern_repeat1, - [175154] = 6, + [175320] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4984), 1, + STATE(4987), 1, sym_comment, - STATE(5885), 1, + STATE(5886), 1, sym__initializer, - ACTIONS(8658), 3, + ACTIONS(8667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175175] = 4, + [175341] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4985), 1, + STATE(4988), 1, sym_comment, - ACTIONS(3621), 5, + ACTIONS(3600), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175192] = 4, + [175358] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4986), 1, + STATE(4989), 1, sym_comment, - ACTIONS(3623), 5, + ACTIONS(3602), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175209] = 4, + [175375] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4987), 1, + STATE(4990), 1, sym_comment, - ACTIONS(3625), 5, + ACTIONS(3604), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175226] = 4, + [175392] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4988), 1, + STATE(4991), 1, sym_comment, - ACTIONS(2428), 5, + ACTIONS(2357), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175243] = 4, + [175409] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4989), 1, + STATE(4992), 1, sym_comment, - ACTIONS(3655), 5, + ACTIONS(3640), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175260] = 4, + [175426] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4990), 1, + STATE(4993), 1, sym_comment, - ACTIONS(3659), 5, + ACTIONS(3644), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175277] = 4, + [175443] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4991), 1, + STATE(4994), 1, sym_comment, - ACTIONS(3665), 5, + ACTIONS(3656), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175294] = 4, + [175460] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4992), 1, + STATE(4995), 1, sym_comment, - ACTIONS(3667), 5, + ACTIONS(3658), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175311] = 6, + [175477] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(4993), 1, + STATE(4996), 1, sym_comment, - STATE(5977), 1, + STATE(5910), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175332] = 6, + [175498] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(4994), 1, + ACTIONS(7959), 1, + anon_sym_LBRACE, + ACTIONS(7963), 1, + anon_sym_extends, + ACTIONS(7965), 1, + anon_sym_LBRACE_PIPE, + STATE(1295), 1, + sym_object_type, + STATE(4997), 1, sym_comment, - STATE(5942), 1, - sym__initializer, - ACTIONS(8607), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175353] = 4, + STATE(5666), 1, + sym_extends_type_clause, + [175523] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4995), 1, + STATE(4998), 1, sym_comment, - ACTIONS(2428), 5, + ACTIONS(2357), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175370] = 4, + [175540] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(4996), 1, + STATE(4999), 1, sym_comment, - ACTIONS(3581), 5, + ACTIONS(3676), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175387] = 6, + [175557] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(4997), 1, + STATE(5000), 1, sym_comment, - STATE(5921), 1, - sym__initializer, - ACTIONS(8607), 3, - sym__automatic_semicolon, + ACTIONS(6224), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [175408] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [175574] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8660), 1, + ACTIONS(8669), 1, anon_sym_COMMA, - STATE(4998), 2, + STATE(5001), 2, sym_comment, aux_sym_sequence_expression_repeat1, - ACTIONS(5668), 3, + ACTIONS(5819), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [175427] = 8, + [175593] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8624), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, + ACTIONS(8643), 1, sym__template_chars, - ACTIONS(8663), 1, + ACTIONS(8672), 1, anon_sym_BQUOTE, - STATE(4999), 1, + STATE(5002), 1, sym_comment, - STATE(5088), 1, + STATE(5091), 1, aux_sym_template_literal_type_repeat1, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [175452] = 8, + [175618] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7941), 1, - anon_sym_extends, - ACTIONS(8097), 1, - anon_sym_LBRACE, - ACTIONS(8099), 1, - anon_sym_LBRACE_PIPE, - STATE(1346), 1, - sym_object_type, - STATE(5000), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5003), 1, sym_comment, - STATE(5664), 1, - sym_extends_type_clause, - [175477] = 4, + STATE(5901), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175639] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5001), 1, + STATE(5004), 1, sym_comment, - ACTIONS(6589), 5, + ACTIONS(6582), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [175494] = 6, + [175656] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5886), 1, + ACTIONS(5958), 1, anon_sym_COMMA, - STATE(4998), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, - STATE(5002), 1, + STATE(5005), 1, sym_comment, - ACTIONS(8665), 3, + ACTIONS(8674), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [175515] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5003), 1, - sym_comment, - STATE(6251), 1, - sym__initializer, - ACTIONS(8579), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175536] = 6, + [175677] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5004), 1, + STATE(5006), 1, sym_comment, - STATE(5887), 1, + STATE(6248), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175557] = 8, + [175698] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - ACTIONS(8667), 1, + ACTIONS(8676), 1, anon_sym_SEMI, - ACTIONS(8669), 1, + ACTIONS(8678), 1, sym__automatic_semicolon, - ACTIONS(8671), 1, + ACTIONS(8680), 1, sym__function_signature_automatic_semicolon, - STATE(3121), 1, + STATE(3084), 1, sym_statement_block, - STATE(5005), 1, + STATE(5007), 1, sym_comment, - [175582] = 6, + [175723] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5006), 1, + STATE(5008), 1, sym_comment, - STATE(6253), 1, + STATE(5878), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175603] = 6, + [175744] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5007), 1, + STATE(5009), 1, sym_comment, - STATE(5883), 1, + STATE(5874), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175624] = 8, + [175765] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5010), 1, + sym_comment, + STATE(6253), 1, + sym__initializer, + ACTIONS(8586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175786] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5008), 1, + STATE(5011), 1, sym_comment, - STATE(5081), 1, + STATE(5088), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [175649] = 8, + [175811] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5012), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6907), 1, + STATE(6908), 1, sym__call_signature, - [175674] = 8, + [175836] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8673), 1, + ACTIONS(8682), 1, anon_sym_LBRACE, - ACTIONS(8675), 1, + ACTIONS(8684), 1, anon_sym_SEMI, - ACTIONS(8677), 1, + ACTIONS(8686), 1, sym__automatic_semicolon, - ACTIONS(8679), 1, + ACTIONS(8688), 1, sym__function_signature_automatic_semicolon, - STATE(407), 1, + STATE(445), 1, sym_statement_block, - STATE(5010), 1, + STATE(5013), 1, sym_comment, - [175699] = 4, + [175861] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5011), 1, + STATE(5014), 1, sym_comment, - ACTIONS(8681), 5, + ACTIONS(8690), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175716] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5012), 1, - sym_comment, - STATE(5748), 1, - sym__initializer, - ACTIONS(8607), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175737] = 6, + [175878] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5013), 1, + STATE(5015), 1, sym_comment, - STATE(5873), 1, + STATE(5867), 1, sym__initializer, - ACTIONS(8620), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175758] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5014), 1, - sym_comment, - ACTIONS(6221), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [175775] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8624), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, - sym__template_chars, - ACTIONS(8683), 1, - anon_sym_BQUOTE, - STATE(5015), 1, - sym_comment, - STATE(5104), 1, - aux_sym_template_literal_type_repeat1, - STATE(5792), 1, - sym_template_type, - [175800] = 8, + [175899] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8624), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, + ACTIONS(8643), 1, sym__template_chars, - ACTIONS(8685), 1, + ACTIONS(8692), 1, anon_sym_BQUOTE, STATE(5016), 1, sym_comment, - STATE(5104), 1, + STATE(5105), 1, aux_sym_template_literal_type_repeat1, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [175825] = 6, + [175924] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5017), 1, sym_comment, - STATE(5860), 1, + STATE(5862), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175846] = 8, + [175945] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8643), 1, + sym__template_chars, + ACTIONS(8694), 1, + anon_sym_BQUOTE, + STATE(5018), 1, + sym_comment, + STATE(5105), 1, + aux_sym_template_literal_type_repeat1, + STATE(5795), 1, + sym_template_type, + [175970] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1379), 1, + ACTIONS(1388), 1, anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7941), 1, + ACTIONS(7963), 1, anon_sym_extends, - ACTIONS(7943), 1, + ACTIONS(8061), 1, anon_sym_LBRACE_PIPE, - STATE(4944), 1, + STATE(4947), 1, sym_object_type, - STATE(5018), 1, + STATE(5019), 1, sym_comment, - STATE(5886), 1, + STATE(5890), 1, sym_extends_type_clause, - [175871] = 6, + [175995] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5019), 1, + STATE(5020), 1, sym_comment, - STATE(5835), 1, + STATE(5855), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175892] = 6, + [176016] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5020), 1, + STATE(5021), 1, sym_comment, - STATE(5817), 1, + STATE(5835), 1, sym__initializer, - ACTIONS(8620), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175913] = 6, + [176037] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8643), 1, + sym__template_chars, + ACTIONS(8696), 1, + anon_sym_BQUOTE, + STATE(5022), 1, + sym_comment, + STATE(5105), 1, + aux_sym_template_literal_type_repeat1, + STATE(5795), 1, + sym_template_type, + [176062] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5021), 1, + STATE(5023), 1, sym_comment, - STATE(5794), 1, + STATE(5798), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175934] = 4, + [176083] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5022), 1, + STATE(5024), 1, sym_comment, - ACTIONS(8687), 5, + ACTIONS(8698), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [175951] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8624), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, - sym__template_chars, - ACTIONS(8689), 1, - anon_sym_BQUOTE, - STATE(5023), 1, - sym_comment, - STATE(5104), 1, - aux_sym_template_literal_type_repeat1, - STATE(5792), 1, - sym_template_type, - [175976] = 8, + [176100] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(8667), 1, + ACTIONS(8676), 1, anon_sym_SEMI, - ACTIONS(8669), 1, + ACTIONS(8678), 1, sym__automatic_semicolon, - ACTIONS(8671), 1, + ACTIONS(8680), 1, sym__function_signature_automatic_semicolon, - STATE(5024), 1, + STATE(5025), 1, sym_comment, - STATE(5339), 1, + STATE(5343), 1, sym_statement_block, - [176001] = 8, + [176125] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5026), 1, + sym_comment, + STATE(5797), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176146] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7941), 1, + ACTIONS(7963), 1, anon_sym_extends, - ACTIONS(8145), 1, + ACTIONS(8144), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, + ACTIONS(8146), 1, anon_sym_LBRACE_PIPE, - STATE(1624), 1, + STATE(1584), 1, sym_object_type, - STATE(5025), 1, + STATE(5027), 1, sym_comment, - STATE(5938), 1, + STATE(5939), 1, sym_extends_type_clause, - [176026] = 7, + [176171] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(5026), 1, + STATE(5028), 1, sym_comment, - ACTIONS(8691), 2, + ACTIONS(8700), 2, sym__automatic_semicolon, anon_sym_SEMI, - [176049] = 6, + [176194] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, + ACTIONS(8214), 1, anon_sym_COLON, - ACTIONS(8693), 1, + ACTIONS(8702), 1, anon_sym_EQ_GT, - STATE(5027), 1, + STATE(5029), 1, sym_comment, - STATE(6509), 3, + STATE(6518), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [176070] = 8, + [176215] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(8209), 1, + ACTIONS(8488), 1, anon_sym_abstract, - ACTIONS(8696), 1, + ACTIONS(8705), 1, anon_sym_class, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(5028), 1, + STATE(5030), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [176095] = 8, + [176240] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(8638), 1, + ACTIONS(8649), 1, sym_identifier, - STATE(5029), 1, + STATE(5031), 1, sym_comment, - STATE(5558), 1, + STATE(5560), 1, sym_string, - STATE(6817), 1, + STATE(6820), 1, sym__module_export_name, - [176120] = 6, + [176265] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7269), 1, + anon_sym_LPAREN, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, + sym_formal_parameters, + STATE(5032), 1, + sym_comment, + STATE(5120), 1, + sym__call_signature, + STATE(6484), 1, + sym_type_parameters, + [176290] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5030), 1, + STATE(5033), 1, sym_comment, - STATE(5786), 1, + STATE(6200), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176141] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LPAREN, - STATE(4226), 1, - sym_formal_parameters, - STATE(5031), 1, - sym_comment, - STATE(5118), 1, - sym__call_signature, - STATE(6465), 1, - sym_type_parameters, - [176166] = 8, + [176311] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5032), 1, + STATE(5034), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6813), 1, + STATE(6816), 1, sym__call_signature, - [176191] = 8, + [176336] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8675), 1, + ACTIONS(8684), 1, anon_sym_SEMI, - ACTIONS(8677), 1, + ACTIONS(8686), 1, sym__automatic_semicolon, - ACTIONS(8679), 1, + ACTIONS(8688), 1, sym__function_signature_automatic_semicolon, - ACTIONS(8698), 1, + ACTIONS(8709), 1, anon_sym_LBRACE, - STATE(1230), 1, + STATE(1426), 1, sym_statement_block, - STATE(5033), 1, + STATE(5035), 1, sym_comment, - [176216] = 7, + [176361] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(5034), 1, + STATE(5036), 1, sym_comment, - ACTIONS(8700), 2, + ACTIONS(8711), 2, sym__automatic_semicolon, anon_sym_SEMI, - [176239] = 8, + [176384] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5035), 1, + STATE(5037), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6809), 1, + STATE(6812), 1, sym__call_signature, - [176264] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - ACTIONS(8702), 1, - anon_sym_SEMI, - ACTIONS(8704), 1, - sym__automatic_semicolon, - ACTIONS(8706), 1, - sym__function_signature_automatic_semicolon, - STATE(3011), 1, - sym_statement_block, - STATE(5036), 1, - sym_comment, - [176289] = 8, + [176409] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5037), 1, + STATE(5038), 1, sym_comment, - STATE(6319), 1, + STATE(6323), 1, sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - [176314] = 8, + [176434] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5038), 1, + STATE(5039), 1, sym_comment, - STATE(6308), 1, + STATE(6312), 1, sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - [176339] = 8, + [176459] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5040), 1, + sym_comment, + STATE(6254), 1, + sym__initializer, + ACTIONS(8586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176480] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5039), 1, + STATE(5041), 1, sym_comment, - STATE(6304), 1, + STATE(6308), 1, sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - [176364] = 8, + [176505] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5040), 1, + STATE(5042), 1, sym_comment, - STATE(5344), 1, + STATE(5345), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [176389] = 8, + [176530] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5041), 1, + STATE(5043), 1, sym_comment, - STATE(6303), 1, + STATE(6301), 1, sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - [176414] = 8, + [176555] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5042), 1, + STATE(5044), 1, sym_comment, - STATE(5353), 1, + STATE(5354), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [176439] = 8, + [176580] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5043), 1, + STATE(5045), 1, sym_comment, - STATE(5358), 1, + STATE(5356), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [176464] = 8, + [176605] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(8468), 1, + ACTIONS(8229), 1, anon_sym_class, - ACTIONS(8470), 1, + ACTIONS(8231), 1, anon_sym_abstract, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(5044), 1, + STATE(5046), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [176489] = 8, + [176630] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7269), 1, + anon_sym_LPAREN, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, + sym_formal_parameters, + STATE(5047), 1, + sym_comment, + STATE(5365), 1, + sym__call_signature, + STATE(6484), 1, + sym_type_parameters, + [176655] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5045), 1, + STATE(5048), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6740), 1, + STATE(6795), 1, sym__call_signature, - [176514] = 8, + [176680] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4226), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5046), 1, + STATE(5049), 1, sym_comment, - STATE(5365), 1, - sym__call_signature, - STATE(6465), 1, + STATE(6366), 1, sym_type_parameters, - [176539] = 6, + STATE(6794), 1, + sym__call_signature, + [176705] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5047), 1, + STATE(5050), 1, sym_comment, - STATE(5779), 1, + STATE(5781), 1, sym__initializer, - ACTIONS(8620), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176560] = 6, + [176726] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5048), 1, + STATE(5051), 1, sym_comment, - STATE(5735), 1, + STATE(6256), 1, sym__initializer, - ACTIONS(8620), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176581] = 6, + [176747] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5049), 1, - sym_comment, - STATE(6261), 1, - sym__initializer, - ACTIONS(8579), 3, + ACTIONS(4970), 1, + anon_sym_LBRACE, + ACTIONS(8713), 1, + anon_sym_SEMI, + ACTIONS(8715), 1, sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8717), 1, + sym__function_signature_automatic_semicolon, + STATE(3074), 1, + sym_statement_block, + STATE(5052), 1, + sym_comment, + [176772] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8647), 1, + anon_sym_LBRACE, + ACTIONS(8653), 1, anon_sym_SEMI, - [176602] = 8, + ACTIONS(8655), 1, + sym__automatic_semicolon, + ACTIONS(8657), 1, + sym__function_signature_automatic_semicolon, + STATE(369), 1, + sym_statement_block, + STATE(5053), 1, + sym_comment, + [176797] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5050), 1, + STATE(5054), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6791), 1, + STATE(6381), 1, sym__call_signature, - [176627] = 6, + [176822] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5051), 1, - sym_comment, - STATE(5701), 1, - sym__initializer, - ACTIONS(8607), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176648] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4642), 1, + ACTIONS(4649), 1, anon_sym_COLON, - ACTIONS(7252), 1, + ACTIONS(7295), 1, anon_sym_EQ, - ACTIONS(8654), 1, + ACTIONS(8663), 1, anon_sym_COMMA, - ACTIONS(8708), 1, + ACTIONS(8719), 1, anon_sym_RBRACE, - STATE(5052), 1, + STATE(5055), 1, sym_comment, - STATE(5738), 1, + STATE(5736), 1, aux_sym_object_pattern_repeat1, - [176673] = 6, + [176847] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5053), 1, + STATE(5056), 1, sym_comment, - STATE(5697), 1, + STATE(5753), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176694] = 8, + [176868] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_SEMI, - ACTIONS(8646), 1, - sym__automatic_semicolon, - ACTIONS(8648), 1, - sym__function_signature_automatic_semicolon, - STATE(363), 1, - sym_statement_block, - STATE(5054), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5057), 1, sym_comment, - [176719] = 8, + STATE(5701), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176889] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5055), 1, + STATE(5058), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6406), 1, + STATE(6461), 1, sym__call_signature, - [176744] = 8, + [176914] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5056), 1, + STATE(5059), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6464), 1, + STATE(6473), 1, sym__call_signature, - [176769] = 8, + [176939] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4817), 1, - sym_formal_parameters, - STATE(5057), 1, - sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6470), 1, - sym__call_signature, - [176794] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LPAREN, - STATE(4226), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(5058), 1, + STATE(5060), 1, sym_comment, - STATE(5308), 1, + STATE(5313), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [176819] = 6, + [176964] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5059), 1, + STATE(5061), 1, sym_comment, - STATE(5695), 1, + STATE(5700), 1, sym__initializer, - ACTIONS(8620), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176840] = 8, + [176985] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5060), 1, + STATE(5062), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6492), 1, + STATE(6495), 1, sym__call_signature, - [176865] = 8, + [177010] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5061), 1, + STATE(5063), 1, sym_comment, - STATE(5278), 1, + STATE(5281), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [176890] = 8, + [177035] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5062), 1, + STATE(5064), 1, sym_comment, - STATE(5266), 1, + STATE(5267), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [176915] = 8, + [177060] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(8559), 1, + ACTIONS(8552), 1, anon_sym_class, - ACTIONS(8561), 1, + ACTIONS(8554), 1, anon_sym_abstract, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(5063), 1, + STATE(5065), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [176940] = 6, + [177085] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5064), 1, + STATE(5066), 1, sym_comment, - STATE(5676), 1, + STATE(5698), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176961] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8597), 1, - anon_sym_EQ, - ACTIONS(8710), 1, - anon_sym_COMMA, - ACTIONS(8712), 1, - anon_sym_RBRACE, - STATE(5065), 1, - sym_comment, - STATE(5922), 1, - aux_sym_enum_body_repeat1, - STATE(6678), 1, - sym__initializer, - [176986] = 8, + [177106] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5066), 1, + STATE(5067), 1, sym_comment, - STATE(5251), 1, + STATE(5252), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [177011] = 4, + [177131] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5067), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5068), 1, + sym_comment, + STATE(5689), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177152] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5069), 1, sym_comment, - ACTIONS(6632), 5, + ACTIONS(6432), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [177028] = 6, + [177169] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(8606), 1, anon_sym_EQ, - STATE(5068), 1, + ACTIONS(8721), 1, + anon_sym_COMMA, + ACTIONS(8723), 1, + anon_sym_RBRACE, + STATE(5070), 1, sym_comment, - STATE(5673), 1, + STATE(5926), 1, + aux_sym_enum_body_repeat1, + STATE(6681), 1, sym__initializer, - ACTIONS(8607), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177049] = 4, + [177194] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5069), 1, + STATE(5071), 1, sym_comment, - ACTIONS(6272), 5, + ACTIONS(6480), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [177066] = 4, + [177211] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5070), 1, + STATE(5072), 1, sym_comment, - ACTIONS(6272), 5, + ACTIONS(6480), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [177083] = 4, + [177228] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5071), 1, + STATE(5073), 1, sym_comment, - ACTIONS(6272), 5, + ACTIONS(6480), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [177100] = 6, + [177245] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5072), 1, + STATE(5074), 1, sym_comment, - STATE(5991), 1, + STATE(5994), 1, sym__initializer, - ACTIONS(8714), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177121] = 8, + [177266] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5075), 1, + sym_comment, + STATE(5676), 1, + sym__initializer, + ACTIONS(8622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177287] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - ACTIONS(8716), 1, + ACTIONS(8727), 1, anon_sym_SEMI, - ACTIONS(8718), 1, + ACTIONS(8729), 1, sym__automatic_semicolon, - ACTIONS(8720), 1, + ACTIONS(8731), 1, sym__function_signature_automatic_semicolon, - STATE(3013), 1, + STATE(3027), 1, sym_statement_block, - STATE(5073), 1, + STATE(5076), 1, sym_comment, - [177146] = 8, + [177312] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, + STATE(5077), 1, + sym_comment, + STATE(6366), 1, + sym_type_parameters, + STATE(6853), 1, + sym__call_signature, + [177337] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(8702), 1, + ACTIONS(8713), 1, anon_sym_SEMI, - ACTIONS(8704), 1, + ACTIONS(8715), 1, sym__automatic_semicolon, - ACTIONS(8706), 1, + ACTIONS(8717), 1, sym__function_signature_automatic_semicolon, - STATE(5074), 1, + STATE(5078), 1, sym_comment, - STATE(5342), 1, + STATE(5346), 1, sym_statement_block, - [177171] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_extends, - ACTIONS(8583), 1, - anon_sym_PIPE, - STATE(5075), 1, - sym_comment, - ACTIONS(8722), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [177194] = 8, + [177362] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5076), 1, + STATE(5079), 1, sym_comment, - STATE(6297), 1, - sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - [177219] = 8, + STATE(6911), 1, + sym__call_signature, + [177387] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5077), 1, + STATE(5080), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6922), 1, + STATE(6715), 1, sym__call_signature, - [177244] = 8, + [177412] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5078), 1, + STATE(5081), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6941), 1, + STATE(6947), 1, sym__call_signature, - [177269] = 8, + [177437] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5074), 1, + STATE(5078), 1, sym__call_signature, - STATE(5079), 1, + STATE(5082), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [177294] = 6, + [177462] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5080), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8598), 1, + anon_sym_PIPE, + STATE(5083), 1, sym_comment, - STATE(5667), 1, - sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8733), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [177315] = 8, + [177485] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8673), 1, - anon_sym_LBRACE, - ACTIONS(8724), 1, - anon_sym_SEMI, - ACTIONS(8726), 1, - sym__automatic_semicolon, - ACTIONS(8728), 1, - sym__function_signature_automatic_semicolon, - STATE(445), 1, - sym_statement_block, - STATE(5081), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, + STATE(5084), 1, sym_comment, - [177340] = 8, + STATE(6366), 1, + sym_type_parameters, + STATE(6925), 1, + sym__call_signature, + [177510] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4817), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5082), 1, + STATE(5052), 1, + sym__call_signature, + STATE(5085), 1, sym_comment, - STATE(6363), 1, + STATE(6484), 1, sym_type_parameters, - STATE(6863), 1, - sym__call_signature, - [177365] = 6, + [177535] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, + ACTIONS(8214), 1, anon_sym_COLON, - ACTIONS(8730), 1, + ACTIONS(8735), 1, anon_sym_EQ_GT, - STATE(5083), 1, + STATE(5086), 1, sym_comment, - STATE(6509), 3, + STATE(6518), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [177386] = 6, + [177556] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5084), 1, + STATE(5087), 1, sym_comment, - STATE(5665), 1, + STATE(5670), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177407] = 8, + [177577] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LPAREN, - STATE(4226), 1, - sym_formal_parameters, - STATE(5036), 1, - sym__call_signature, - STATE(5085), 1, + ACTIONS(8682), 1, + anon_sym_LBRACE, + ACTIONS(8738), 1, + anon_sym_SEMI, + ACTIONS(8740), 1, + sym__automatic_semicolon, + ACTIONS(8742), 1, + sym__function_signature_automatic_semicolon, + STATE(459), 1, + sym_statement_block, + STATE(5088), 1, sym_comment, - STATE(6465), 1, - sym_type_parameters, - [177432] = 8, + [177602] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4817), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5086), 1, + STATE(5025), 1, + sym__call_signature, + STATE(5089), 1, sym_comment, - STATE(6363), 1, + STATE(6484), 1, sym_type_parameters, - STATE(6712), 1, - sym__call_signature, - [177457] = 8, + [177627] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LPAREN, - STATE(4226), 1, - sym_formal_parameters, - STATE(5024), 1, - sym__call_signature, - STATE(5087), 1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(8630), 1, + anon_sym_abstract, + ACTIONS(8744), 1, + anon_sym_class, + STATE(4674), 1, + aux_sym_export_statement_repeat1, + STATE(5090), 1, sym_comment, - STATE(6465), 1, - sym_type_parameters, - [177482] = 8, + STATE(5601), 1, + sym_decorator, + [177652] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8624), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, + ACTIONS(8643), 1, sym__template_chars, - ACTIONS(8733), 1, + ACTIONS(8746), 1, anon_sym_BQUOTE, - STATE(5088), 1, + STATE(5091), 1, sym_comment, - STATE(5104), 1, + STATE(5105), 1, aux_sym_template_literal_type_repeat1, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [177507] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8613), 1, - anon_sym_abstract, - ACTIONS(8735), 1, - anon_sym_class, - STATE(4678), 1, - aux_sym_export_statement_repeat1, - STATE(5089), 1, - sym_comment, - STATE(5599), 1, - sym_decorator, - [177532] = 6, + [177677] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5090), 1, + STATE(5092), 1, sym_comment, - STATE(5651), 1, + STATE(5669), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177553] = 4, + [177698] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5091), 1, + STATE(5093), 1, sym_comment, - ACTIONS(7937), 5, + ACTIONS(7957), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177570] = 4, + [177715] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5092), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5094), 1, sym_comment, - ACTIONS(8737), 5, + STATE(5667), 1, + sym__initializer, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177587] = 7, + [177736] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_extends, - ACTIONS(8583), 1, - anon_sym_PIPE, - STATE(5093), 1, + STATE(5095), 1, sym_comment, - ACTIONS(8739), 2, + ACTIONS(8748), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177610] = 8, + anon_sym_PIPE_RBRACE, + [177753] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5005), 1, + STATE(5007), 1, sym__call_signature, - STATE(5094), 1, + STATE(5096), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [177635] = 4, + [177778] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5095), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8598), 1, + anon_sym_PIPE, + STATE(5097), 1, sym_comment, - ACTIONS(8075), 5, + ACTIONS(8750), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177652] = 6, + [177801] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, + ACTIONS(4322), 1, anon_sym_COLON, - STATE(5096), 1, + STATE(5098), 1, sym_comment, - STATE(6861), 1, + STATE(6864), 1, sym_type_annotation, - ACTIONS(4370), 3, + ACTIONS(4378), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACK, - [177673] = 6, + [177822] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, + ACTIONS(8214), 1, anon_sym_COLON, - ACTIONS(8741), 1, + ACTIONS(8752), 1, anon_sym_EQ_GT, - STATE(5097), 1, + STATE(5099), 1, sym_comment, - STATE(6509), 3, + STATE(6518), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [177694] = 6, + [177843] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5098), 1, + STATE(5100), 1, sym_comment, - STATE(6075), 1, + STATE(6064), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177715] = 6, + [177864] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, + ACTIONS(8214), 1, anon_sym_COLON, - ACTIONS(8744), 1, + ACTIONS(8755), 1, anon_sym_EQ_GT, - STATE(5099), 1, + STATE(5101), 1, sym_comment, - STATE(6759), 3, + STATE(6773), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [177736] = 7, + [177885] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - STATE(5100), 1, + STATE(5102), 1, sym_comment, - ACTIONS(8747), 2, + ACTIONS(8758), 2, anon_sym_COMMA, anon_sym_RBRACK, - [177759] = 6, + [177908] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7214), 1, + ACTIONS(7173), 1, anon_sym_LBRACK, - ACTIONS(8749), 1, + ACTIONS(8760), 1, anon_sym_RBRACE, - STATE(5101), 1, + STATE(5103), 1, sym_comment, - ACTIONS(5067), 3, + ACTIONS(5052), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [177780] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5102), 1, - sym_comment, - STATE(5607), 1, - sym__initializer, - ACTIONS(8620), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177801] = 6, + [177929] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5103), 1, + STATE(5104), 1, sym_comment, - STATE(5626), 1, - sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8152), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177822] = 7, + anon_sym_PIPE_RBRACE, + [177946] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8751), 1, + ACTIONS(8762), 1, anon_sym_BQUOTE, - ACTIONS(8753), 1, + ACTIONS(8764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8756), 1, + ACTIONS(8767), 1, sym__template_chars, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - STATE(5104), 2, + STATE(5105), 2, sym_comment, aux_sym_template_literal_type_repeat1, - [177845] = 7, + [177969] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5106), 1, + sym_comment, + STATE(5610), 1, + sym__initializer, + ACTIONS(8635), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177990] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - STATE(5105), 1, + STATE(5107), 1, sym_comment, - ACTIONS(8759), 2, + ACTIONS(8770), 2, anon_sym_COMMA, anon_sym_GT, - [177868] = 7, + [178013] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7632), 1, anon_sym_DOT, - STATE(4367), 1, + STATE(4363), 1, sym_arguments, - STATE(5106), 1, + STATE(5108), 1, sym_comment, - ACTIONS(8761), 2, + ACTIONS(8772), 2, anon_sym_COMMA, anon_sym_GT, - [177891] = 7, + [178036] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - STATE(5107), 1, + STATE(5109), 1, sym_comment, - ACTIONS(8763), 2, + ACTIONS(8774), 2, anon_sym_COMMA, anon_sym_GT, - [177914] = 6, + [178059] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5108), 1, + STATE(5110), 1, sym_comment, - STATE(5629), 1, + STATE(5619), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177935] = 6, + [178080] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5109), 1, + STATE(5111), 1, sym_comment, - STATE(5631), 1, + STATE(5630), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177956] = 4, + [178101] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5110), 1, + STATE(5112), 1, sym_comment, - ACTIONS(8765), 5, + ACTIONS(8776), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [177973] = 6, + [178118] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5113), 1, + sym_comment, + STATE(6135), 1, + sym__initializer, + ACTIONS(8586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178139] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5111), 1, + STATE(5114), 1, sym_comment, - STATE(5635), 1, + STATE(5633), 1, sym__initializer, - ACTIONS(8607), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177994] = 8, + [178160] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(207), 1, + ACTIONS(211), 1, anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7941), 1, + ACTIONS(7963), 1, anon_sym_extends, - ACTIONS(8091), 1, + ACTIONS(8132), 1, anon_sym_LBRACE_PIPE, - STATE(5112), 1, + STATE(5115), 1, sym_comment, - STATE(6050), 1, + STATE(6055), 1, sym_extends_type_clause, - STATE(6647), 1, + STATE(6649), 1, sym_object_type, - [178019] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5113), 1, - sym_comment, - STATE(6267), 1, - sym__initializer, - ACTIONS(8579), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178040] = 6, + [178185] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5114), 1, + STATE(5116), 1, sym_comment, - STATE(5864), 1, + STATE(5635), 1, sym__initializer, - ACTIONS(8767), 3, + ACTIONS(8622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178061] = 8, + [178206] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8597), 1, + ACTIONS(8606), 1, anon_sym_EQ, - ACTIONS(8769), 1, + ACTIONS(8778), 1, anon_sym_COMMA, - ACTIONS(8771), 1, + ACTIONS(8780), 1, anon_sym_RBRACE, - STATE(5115), 1, + STATE(5117), 1, sym_comment, - STATE(6013), 1, + STATE(6014), 1, aux_sym_enum_body_repeat1, - STATE(6678), 1, + STATE(6681), 1, sym__initializer, - [178086] = 8, + [178231] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1972), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1974), 1, anon_sym_SQUOTE, - ACTIONS(8638), 1, + ACTIONS(8649), 1, sym_identifier, - STATE(5116), 1, + STATE(5118), 1, sym_comment, - STATE(5558), 1, + STATE(5560), 1, sym_string, - STATE(6673), 1, + STATE(6676), 1, sym__module_export_name, - [178111] = 8, + [178256] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5117), 1, + STATE(5119), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6671), 1, + STATE(6674), 1, sym__call_signature, - [178136] = 8, + [178281] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8698), 1, + ACTIONS(8709), 1, anon_sym_LBRACE, - ACTIONS(8724), 1, + ACTIONS(8738), 1, anon_sym_SEMI, - ACTIONS(8726), 1, + ACTIONS(8740), 1, sym__automatic_semicolon, - ACTIONS(8728), 1, + ACTIONS(8742), 1, sym__function_signature_automatic_semicolon, - STATE(1488), 1, + STATE(1499), 1, sym_statement_block, - STATE(5118), 1, + STATE(5120), 1, sym_comment, - [178161] = 7, + [178306] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(5119), 1, + STATE(5121), 1, sym_comment, - ACTIONS(8773), 2, + ACTIONS(8782), 2, sym__automatic_semicolon, anon_sym_SEMI, - [178184] = 8, + [178329] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5120), 1, + STATE(5122), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6668), 1, + STATE(6671), 1, sym__call_signature, - [178209] = 8, + [178354] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5121), 1, + STATE(5123), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6378), 1, + STATE(6393), 1, sym__call_signature, - [178234] = 8, + [178379] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5122), 1, + STATE(5124), 1, sym_comment, - STATE(6356), 1, + STATE(6364), 1, sym__call_signature, - STATE(6363), 1, - sym_type_parameters, - [178259] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(4817), 1, - sym_formal_parameters, - STATE(5123), 1, - sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6662), 1, - sym__call_signature, - [178284] = 8, + [178404] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5124), 1, + STATE(5125), 1, sym_comment, - STATE(6321), 1, + STATE(6347), 1, sym__call_signature, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - [178309] = 8, + [178429] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5125), 1, - sym_comment, - STATE(5227), 1, + STATE(4853), 1, sym__call_signature, - STATE(6465), 1, + STATE(5126), 1, + sym_comment, + STATE(6484), 1, sym_type_parameters, - [178334] = 6, + [178454] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5126), 1, + STATE(5127), 1, sym_comment, - STATE(6269), 1, + STATE(6267), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178355] = 6, + [178475] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5127), 1, + STATE(5128), 1, sym_comment, - STATE(5657), 1, + STATE(5643), 1, sym__initializer, - ACTIONS(8775), 3, + ACTIONS(8784), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178376] = 8, + [178496] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5128), 1, + STATE(5129), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6524), 1, + STATE(6534), 1, sym__call_signature, - [178401] = 8, + [178521] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(4954), 1, + STATE(4951), 1, sym__call_signature, - STATE(5129), 1, + STATE(5130), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [178426] = 8, + [178546] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(4971), 1, + STATE(4972), 1, sym__call_signature, - STATE(5130), 1, + STATE(5131), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [178451] = 8, + [178571] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(8223), 1, + ACTIONS(8434), 1, anon_sym_class, - ACTIONS(8225), 1, + ACTIONS(8436), 1, anon_sym_abstract, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(5131), 1, + STATE(5132), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [178476] = 4, + [178596] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5132), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5133), 1, sym_comment, - ACTIONS(8777), 5, + STATE(5660), 1, + sym__initializer, + ACTIONS(8786), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178493] = 8, + [178617] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5054), 1, + STATE(5053), 1, sym__call_signature, - STATE(5133), 1, + STATE(5134), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [178518] = 6, + [178642] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8781), 1, + ACTIONS(8790), 1, anon_sym_in, - ACTIONS(8783), 1, + ACTIONS(8792), 1, anon_sym_of, - STATE(5134), 1, + STATE(5135), 1, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8788), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178539] = 6, + [178663] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8785), 1, + ACTIONS(8794), 1, anon_sym_in, - ACTIONS(8787), 1, + ACTIONS(8796), 1, anon_sym_of, - STATE(5135), 1, + STATE(5136), 1, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8788), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178560] = 4, + [178684] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5136), 1, + STATE(5137), 1, sym_comment, - ACTIONS(8789), 5, + ACTIONS(8798), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178577] = 4, + [178701] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5137), 1, + STATE(5138), 1, sym_comment, - ACTIONS(6650), 5, + ACTIONS(6607), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [178594] = 4, + [178718] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5138), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, + STATE(5139), 1, + sym_comment, + STATE(6366), 1, + sym_type_parameters, + STATE(6667), 1, + sym__call_signature, + [178743] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5140), 1, sym_comment, ACTIONS(6611), 5, anon_sym_EQ, @@ -357731,12 +360197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [178611] = 4, + [178760] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5139), 1, + STATE(5141), 1, sym_comment, ACTIONS(6611), 5, anon_sym_EQ, @@ -357744,12 +360210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [178628] = 4, + [178777] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5140), 1, + STATE(5142), 1, sym_comment, ACTIONS(6611), 5, anon_sym_EQ, @@ -357757,26209 +360223,26227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [178645] = 8, + [178794] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(4661), 1, + STATE(4778), 1, sym__call_signature, - STATE(5141), 1, + STATE(5143), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [178670] = 6, + [178819] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5142), 1, + STATE(5144), 1, sym_comment, STATE(6020), 1, sym__initializer, - ACTIONS(8791), 3, + ACTIONS(8800), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178691] = 8, + [178840] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5145), 1, + sym_comment, + STATE(6027), 1, + sym__initializer, + ACTIONS(8802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178861] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(8716), 1, + ACTIONS(8727), 1, anon_sym_SEMI, - ACTIONS(8718), 1, + ACTIONS(8729), 1, sym__automatic_semicolon, - ACTIONS(8720), 1, + ACTIONS(8731), 1, sym__function_signature_automatic_semicolon, - STATE(5143), 1, + STATE(5146), 1, sym_comment, - STATE(6007), 1, + STATE(5951), 1, sym_statement_block, - [178716] = 6, + [178886] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5144), 1, + STATE(5147), 1, sym_comment, - STATE(6028), 1, + STATE(6051), 1, sym__initializer, - ACTIONS(8793), 3, + ACTIONS(8804), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178737] = 7, + [178907] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(5145), 1, + STATE(5148), 1, sym_comment, - ACTIONS(8795), 2, + ACTIONS(8806), 2, sym__automatic_semicolon, anon_sym_SEMI, - [178760] = 6, + [178930] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5146), 1, + STATE(5149), 1, sym_comment, - STATE(6048), 1, - sym__initializer, - ACTIONS(8797), 3, + ACTIONS(8808), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178781] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LPAREN, - STATE(4226), 1, - sym_formal_parameters, - STATE(4739), 1, - sym__call_signature, - STATE(5147), 1, - sym_comment, - STATE(6465), 1, - sym_type_parameters, - [178806] = 7, + anon_sym_PIPE_RBRACE, + [178947] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - STATE(5148), 1, + STATE(5150), 1, sym_comment, - ACTIONS(8799), 2, + ACTIONS(8810), 2, anon_sym_LBRACE, anon_sym_COMMA, - [178829] = 8, + [178970] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(5149), 1, + STATE(5151), 1, sym_comment, - STATE(5204), 1, + STATE(5206), 1, sym__call_signature, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [178854] = 4, + [178995] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5150), 1, + STATE(5152), 1, sym_comment, - ACTIONS(7967), 5, + ACTIONS(8041), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178871] = 4, + [179012] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5151), 1, + STATE(5153), 1, sym_comment, - ACTIONS(8801), 5, + ACTIONS(8812), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178888] = 4, + [179029] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5152), 1, + STATE(5154), 1, sym_comment, - ACTIONS(7967), 5, + ACTIONS(8041), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178905] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(4817), 1, - sym_formal_parameters, - STATE(5153), 1, - sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6439), 1, - sym__call_signature, - [178930] = 4, + [179046] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5154), 1, + STATE(5155), 1, sym_comment, - ACTIONS(8803), 5, + ACTIONS(8814), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178947] = 4, + [179063] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5155), 1, + ACTIONS(7269), 1, + anon_sym_LPAREN, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, + sym_formal_parameters, + STATE(4827), 1, + sym__call_signature, + STATE(5156), 1, + sym_comment, + STATE(6484), 1, + sym_type_parameters, + [179088] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5157), 1, sym_comment, - ACTIONS(8491), 5, + ACTIONS(8248), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178964] = 4, + [179105] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5156), 1, + STATE(5158), 1, sym_comment, - ACTIONS(7969), 5, + ACTIONS(8047), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178981] = 4, + [179122] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5157), 1, + STATE(5159), 1, sym_comment, - ACTIONS(8805), 5, + ACTIONS(8816), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178998] = 6, + [179139] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, + ACTIONS(8214), 1, anon_sym_COLON, - ACTIONS(8807), 1, + ACTIONS(8818), 1, anon_sym_EQ_GT, - STATE(5158), 1, + STATE(5160), 1, sym_comment, - STATE(6759), 3, + STATE(6773), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [179019] = 4, + [179160] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5159), 1, + STATE(5161), 1, sym_comment, - ACTIONS(8810), 5, + ACTIONS(8821), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [179036] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5160), 1, - sym_comment, - ACTIONS(8812), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179053] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5161), 1, - sym_comment, - ACTIONS(7983), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179070] = 8, + [179177] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8624), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, + ACTIONS(8643), 1, sym__template_chars, - ACTIONS(8814), 1, + ACTIONS(8823), 1, anon_sym_BQUOTE, - STATE(5023), 1, + STATE(5022), 1, aux_sym_template_literal_type_repeat1, STATE(5162), 1, sym_comment, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [179095] = 4, + [179202] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, STATE(5163), 1, sym_comment, - ACTIONS(8816), 5, + STATE(6366), 1, + sym_type_parameters, + STATE(6447), 1, + sym__call_signature, + [179227] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5164), 1, + sym_comment, + ACTIONS(8825), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179112] = 8, + [179244] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5165), 1, + sym_comment, + STATE(6271), 1, + sym__initializer, + ACTIONS(8586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179265] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5164), 1, + STATE(5166), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6547), 1, + STATE(6550), 1, sym__call_signature, - [179137] = 4, + [179290] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5165), 1, + STATE(5167), 1, sym_comment, - ACTIONS(6646), 5, + ACTIONS(6486), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [179154] = 8, + [179307] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5168), 1, + sym_comment, + ACTIONS(8152), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179324] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - ACTIONS(8818), 1, + ACTIONS(8827), 1, anon_sym_SEMI, - ACTIONS(8820), 1, + ACTIONS(8829), 1, sym__automatic_semicolon, - ACTIONS(8822), 1, + ACTIONS(8831), 1, sym__function_signature_automatic_semicolon, - STATE(3107), 1, + STATE(3110), 1, sym_statement_block, - STATE(5166), 1, - sym_comment, - [179179] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5167), 1, + STATE(5169), 1, sym_comment, - STATE(6274), 1, - sym__initializer, - ACTIONS(8579), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179200] = 8, + [179349] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(8824), 1, + ACTIONS(8833), 1, anon_sym_as, - ACTIONS(8826), 1, + ACTIONS(8835), 1, anon_sym_RBRACK, - STATE(5168), 1, - sym_comment, - [179225] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8624), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, - sym__template_chars, - ACTIONS(8828), 1, - anon_sym_BQUOTE, - STATE(5169), 1, + STATE(5170), 1, sym_comment, - STATE(5257), 1, - aux_sym_template_literal_type_repeat1, - STATE(5792), 1, - sym_template_type, - [179250] = 4, + [179374] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5170), 1, + STATE(5171), 1, sym_comment, - ACTIONS(8830), 5, + ACTIONS(8837), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179267] = 8, + [179391] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5171), 1, + STATE(5172), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6398), 1, + STATE(6402), 1, sym__call_signature, - [179292] = 8, + [179416] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LPAREN, - STATE(4226), 1, - sym_formal_parameters, - STATE(4719), 1, - sym__call_signature, - STATE(5172), 1, + STATE(5173), 1, sym_comment, - STATE(6465), 1, - sym_type_parameters, - [179317] = 8, + ACTIONS(8839), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179433] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4817), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5173), 1, - sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6401), 1, + STATE(4748), 1, sym__call_signature, - [179342] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(5174), 1, sym_comment, - STATE(6070), 1, - sym__initializer, - ACTIONS(8832), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179363] = 8, + STATE(6484), 1, + sym_type_parameters, + [179458] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, STATE(5175), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6405), 1, + STATE(6406), 1, sym__call_signature, - [179388] = 6, + [179483] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5176), 1, sym_comment, - STATE(6071), 1, + STATE(6073), 1, sym__initializer, - ACTIONS(8834), 3, + ACTIONS(8841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179409] = 8, + [179504] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, STATE(5177), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6419), 1, + STATE(6411), 1, sym__call_signature, - [179434] = 8, + [179529] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - STATE(4119), 1, - sym_formal_parameters, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(5178), 1, sym_comment, - STATE(6088), 1, - sym__call_signature, - STATE(6380), 1, - sym_type_parameters, - [179459] = 8, + STATE(6075), 1, + sym__initializer, + ACTIONS(8843), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179550] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, STATE(5179), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6445), 1, + STATE(6422), 1, sym__call_signature, - [179484] = 6, + [179575] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, + sym_formal_parameters, STATE(5180), 1, sym_comment, - STATE(6109), 1, - sym__initializer, - ACTIONS(8836), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179505] = 8, + STATE(6088), 1, + sym__call_signature, + STATE(6467), 1, + sym_type_parameters, + [179600] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, STATE(5181), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6452), 1, + STATE(6449), 1, sym__call_signature, - [179530] = 8, + [179625] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, STATE(5182), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, STATE(6456), 1, sym__call_signature, - [179555] = 8, + [179650] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, STATE(5183), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6521), 1, + STATE(6459), 1, sym__call_signature, - [179580] = 6, + [179675] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5184), 1, sym_comment, - STATE(6122), 1, + STATE(6113), 1, sym__initializer, - ACTIONS(8836), 3, + ACTIONS(8845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179601] = 6, + [179696] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, STATE(5185), 1, sym_comment, - STATE(6144), 1, + STATE(6366), 1, + sym_type_parameters, + STATE(6521), 1, + sym__call_signature, + [179721] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5186), 1, + sym_comment, + STATE(6126), 1, sym__initializer, - ACTIONS(8836), 3, + ACTIONS(8845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179622] = 8, + [179742] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5186), 1, + STATE(5187), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6554), 1, + STATE(6556), 1, sym__call_signature, - [179647] = 6, + [179767] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, + STATE(5188), 1, + sym_comment, + STATE(6366), 1, + sym_type_parameters, + STATE(6557), 1, + sym__call_signature, + [179792] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5187), 1, + STATE(5189), 1, sym_comment, - STATE(6275), 1, + STATE(6148), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179668] = 6, + [179813] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5190), 1, + sym_comment, + ACTIONS(8106), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179830] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, + ACTIONS(8214), 1, anon_sym_COLON, - ACTIONS(8838), 1, + ACTIONS(8847), 1, anon_sym_EQ_GT, - STATE(5188), 1, + STATE(5191), 1, sym_comment, - STATE(6509), 3, + STATE(6518), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [179689] = 6, + [179851] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, + ACTIONS(8214), 1, anon_sym_COLON, - ACTIONS(8841), 1, + ACTIONS(8850), 1, anon_sym_EQ_GT, - STATE(5189), 1, + STATE(5192), 1, sym_comment, - STATE(6759), 3, + STATE(6773), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [179710] = 8, + [179872] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5190), 1, + STATE(5193), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6556), 1, + STATE(6561), 1, sym__call_signature, - [179735] = 6, + [179897] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5191), 1, + STATE(5194), 1, sym_comment, - STATE(6159), 1, + STATE(6160), 1, sym__initializer, - ACTIONS(8836), 3, + ACTIONS(8845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179756] = 8, + [179918] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5192), 1, + STATE(5195), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6568), 1, + STATE(6576), 1, sym__call_signature, - [179781] = 8, + [179943] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4817), 1, - sym_formal_parameters, - STATE(5193), 1, - sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6574), 1, - sym__call_signature, - [179806] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LPAREN, - STATE(4226), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(5194), 1, + STATE(5196), 1, sym_comment, - STATE(5215), 1, + STATE(5218), 1, sym__call_signature, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [179831] = 6, + [179968] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5195), 1, + STATE(5197), 1, sym_comment, - STATE(6160), 1, + STATE(6162), 1, sym__initializer, - ACTIONS(8844), 3, + ACTIONS(8853), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179852] = 6, + [179989] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5196), 1, + STATE(5198), 1, sym_comment, - STATE(6161), 1, + STATE(6272), 1, sym__initializer, - ACTIONS(8844), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179873] = 4, + [180010] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5197), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5199), 1, sym_comment, - ACTIONS(7983), 5, + STATE(6163), 1, + sym__initializer, + ACTIONS(8853), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179890] = 8, + [180031] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8643), 1, + sym__template_chars, + ACTIONS(8855), 1, + anon_sym_BQUOTE, + STATE(5200), 1, + sym_comment, + STATE(5258), 1, + aux_sym_template_literal_type_repeat1, + STATE(5795), 1, + sym_template_type, + [180056] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(4874), 1, + STATE(4873), 1, sym__call_signature, - STATE(5198), 1, + STATE(5201), 1, sym_comment, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [179915] = 4, + [180081] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5199), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5202), 1, sym_comment, - ACTIONS(8075), 5, + STATE(6169), 1, + sym__initializer, + ACTIONS(8845), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179932] = 6, + [180102] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5200), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, + STATE(5203), 1, sym_comment, - STATE(6167), 1, - sym__initializer, - ACTIONS(8836), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179953] = 6, + STATE(6366), 1, + sym_type_parameters, + STATE(6652), 1, + sym__call_signature, + [180127] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5201), 1, + STATE(5204), 1, sym_comment, - STATE(6179), 1, + STATE(6176), 1, sym__initializer, - ACTIONS(8836), 3, + ACTIONS(8845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179974] = 8, + [180148] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8597), 1, + ACTIONS(8606), 1, anon_sym_EQ, - ACTIONS(8846), 1, + ACTIONS(8857), 1, anon_sym_COMMA, - ACTIONS(8848), 1, + ACTIONS(8859), 1, anon_sym_RBRACE, - STATE(5202), 1, + STATE(5205), 1, sym_comment, - STATE(6150), 1, + STATE(6154), 1, aux_sym_enum_body_repeat1, - STATE(6678), 1, + STATE(6681), 1, sym__initializer, - [179999] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(4817), 1, - sym_formal_parameters, - STATE(5203), 1, - sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6650), 1, - sym__call_signature, - [180024] = 4, + [180173] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5204), 1, + STATE(5206), 1, sym_comment, - ACTIONS(7995), 5, + ACTIONS(8104), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180041] = 8, + [180190] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(5205), 1, - sym_comment, - STATE(5291), 1, + STATE(5169), 1, sym__call_signature, - STATE(6380), 1, + STATE(5207), 1, + sym_comment, + STATE(6484), 1, sym_type_parameters, - [180066] = 8, + [180215] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - STATE(4226), 1, + STATE(4142), 1, sym_formal_parameters, - STATE(5166), 1, - sym__call_signature, - STATE(5206), 1, + STATE(5208), 1, sym_comment, - STATE(6465), 1, + STATE(5295), 1, + sym__call_signature, + STATE(6467), 1, sym_type_parameters, - [180091] = 4, + [180240] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5207), 1, + STATE(5209), 1, sym_comment, - ACTIONS(7997), 5, + ACTIONS(8108), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180108] = 4, + [180257] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5208), 1, + STATE(5210), 1, sym_comment, - ACTIONS(8850), 5, + ACTIONS(8861), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180125] = 4, + [180274] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5209), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, + STATE(5211), 1, + sym_comment, + STATE(6366), 1, + sym_type_parameters, + STATE(6712), 1, + sym__call_signature, + [180299] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5212), 1, sym_comment, - ACTIONS(5978), 5, + ACTIONS(6031), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [180142] = 4, + [180316] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5210), 1, + STATE(5213), 1, sym_comment, - ACTIONS(7997), 5, + ACTIONS(8108), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180159] = 8, + [180333] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(4817), 1, - sym_formal_parameters, - STATE(5211), 1, + STATE(5214), 1, sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6710), 1, - sym__call_signature, - [180184] = 4, + ACTIONS(8863), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180350] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5212), 1, + STATE(5215), 1, sym_comment, - ACTIONS(8852), 5, + ACTIONS(8104), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180201] = 4, + [180367] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5213), 1, + STATE(5216), 1, sym_comment, - ACTIONS(7995), 5, + ACTIONS(8865), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180218] = 4, + [180384] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5214), 1, + STATE(5217), 1, sym_comment, - ACTIONS(8854), 5, + ACTIONS(8867), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180235] = 8, + [180401] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(8818), 1, + ACTIONS(8827), 1, anon_sym_SEMI, - ACTIONS(8820), 1, + ACTIONS(8829), 1, sym__automatic_semicolon, - ACTIONS(8822), 1, + ACTIONS(8831), 1, sym__function_signature_automatic_semicolon, - STATE(5215), 1, + STATE(5218), 1, sym_comment, - STATE(5959), 1, + STATE(5932), 1, sym_statement_block, - [180260] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5216), 1, - sym_comment, - ACTIONS(8856), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180277] = 8, + [180426] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(5143), 1, + STATE(5146), 1, sym__call_signature, - STATE(5217), 1, + STATE(5219), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [180302] = 8, + [180451] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(8207), 1, + ACTIONS(8486), 1, anon_sym_class, - ACTIONS(8209), 1, + ACTIONS(8488), 1, anon_sym_abstract, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(5218), 1, + STATE(5220), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [180327] = 7, + [180476] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_extends, - ACTIONS(8583), 1, - anon_sym_PIPE, - STATE(5219), 1, + STATE(5221), 1, sym_comment, - ACTIONS(8858), 2, + ACTIONS(8106), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180350] = 6, + anon_sym_PIPE_RBRACE, + [180493] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5220), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8598), 1, + anon_sym_PIPE, + STATE(5222), 1, sym_comment, - STATE(6132), 1, - sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8869), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [180371] = 7, + [180516] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(5221), 1, + STATE(5223), 1, sym_comment, - ACTIONS(8860), 2, + ACTIONS(8871), 2, sym__automatic_semicolon, anon_sym_SEMI, - [180394] = 7, + [180539] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, + ACTIONS(8029), 1, anon_sym_LT, - ACTIONS(8862), 1, + ACTIONS(8873), 1, anon_sym_LBRACE, - STATE(5222), 1, + STATE(5224), 1, sym_comment, - STATE(5640), 1, + STATE(5641), 1, sym_type_arguments, - ACTIONS(8864), 2, + ACTIONS(8875), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [180417] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5223), 1, - sym_comment, - STATE(5668), 1, - sym__initializer, - ACTIONS(8866), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180438] = 6, + [180562] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5224), 1, + STATE(5225), 1, sym_comment, STATE(6280), 1, sym__initializer, - ACTIONS(8628), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180459] = 6, + [180583] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5225), 1, - sym_comment, - STATE(6281), 1, - sym__initializer, - ACTIONS(8579), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180480] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(4817), 1, - sym_formal_parameters, STATE(5226), 1, sym_comment, - STATE(6363), 1, - sym_type_parameters, - STATE(6392), 1, - sym__call_signature, - [180505] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8632), 1, - anon_sym_SEMI, - ACTIONS(8634), 1, - sym__automatic_semicolon, - ACTIONS(8636), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8642), 1, - anon_sym_LBRACE, - STATE(1049), 1, - sym_statement_block, - STATE(5227), 1, - sym_comment, - [180530] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5228), 1, - sym_comment, - STATE(5669), 1, + STATE(5671), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180551] = 6, + [180604] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5229), 1, + STATE(5227), 1, sym_comment, - STATE(6184), 1, + STATE(5672), 1, sym__initializer, - ACTIONS(8868), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180572] = 8, + [180625] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + STATE(4285), 1, sym_formal_parameters, - STATE(4477), 1, + STATE(5076), 1, sym__call_signature, - STATE(5230), 1, + STATE(5228), 1, sym_comment, - STATE(6380), 1, + STATE(6484), 1, sym_type_parameters, - [180597] = 6, + [180650] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5231), 1, + STATE(5229), 1, sym_comment, - STATE(6187), 1, + STATE(6207), 1, sym__initializer, - ACTIONS(8870), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180618] = 6, + [180671] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5232), 1, + STATE(5230), 1, sym_comment, STATE(6283), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180639] = 6, + [180692] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5233), 1, + STATE(5231), 1, sym_comment, - STATE(5670), 1, + STATE(6184), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8879), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180660] = 4, + [180713] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5234), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5232), 1, sym_comment, - ACTIONS(8872), 5, + STATE(6188), 1, + sym__initializer, + ACTIONS(8881), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180677] = 8, + [180734] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(5235), 1, - sym_comment, - STATE(6191), 1, + STATE(4594), 1, sym__call_signature, - STATE(6380), 1, + STATE(5233), 1, + sym_comment, + STATE(6467), 1, sym_type_parameters, - [180702] = 6, + [180759] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5236), 1, + STATE(5234), 1, sym_comment, - STATE(6205), 1, + STATE(6285), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180723] = 6, + [180780] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5237), 1, + STATE(5235), 1, sym_comment, - STATE(6206), 1, + STATE(5673), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180744] = 6, + [180801] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5236), 1, + sym_comment, + ACTIONS(8883), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180818] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, + sym_formal_parameters, + STATE(5237), 1, + sym_comment, + STATE(6193), 1, + sym__call_signature, + STATE(6467), 1, + sym_type_parameters, + [180843] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5238), 1, sym_comment, - STATE(6215), 1, + STATE(6206), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180765] = 6, + [180864] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5239), 1, sym_comment, - STATE(6230), 1, + STATE(6210), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180786] = 6, + [180885] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5240), 1, sym_comment, - STATE(6242), 1, + STATE(6215), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180807] = 6, + [180906] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5241), 1, sym_comment, - STATE(6245), 1, + STATE(6232), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180828] = 6, + [180927] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5242), 1, sym_comment, - STATE(6248), 1, + STATE(6246), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180849] = 6, + [180948] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5243), 1, sym_comment, - STATE(6273), 1, + STATE(6250), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180870] = 6, + [180969] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5244), 1, sym_comment, - STATE(6259), 1, + STATE(6252), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180891] = 6, + [180990] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5245), 1, sym_comment, - STATE(6256), 1, + STATE(6276), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180912] = 6, + [181011] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8219), 1, - anon_sym_COLON, - ACTIONS(8876), 1, - anon_sym_EQ_GT, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(5246), 1, sym_comment, - STATE(6759), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [180933] = 6, + STATE(6260), 1, + sym__initializer, + ACTIONS(8584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181032] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5247), 1, sym_comment, - STATE(6255), 1, + STATE(6259), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180954] = 6, + [181053] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5248), 1, sym_comment, - STATE(6232), 1, + STATE(6258), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180975] = 6, + [181074] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(8214), 1, + anon_sym_COLON, + ACTIONS(8887), 1, + anon_sym_EQ_GT, STATE(5249), 1, sym_comment, - STATE(6218), 1, + STATE(6773), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181095] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5250), 1, + sym_comment, + STATE(6235), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180996] = 6, + [181116] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5250), 1, + STATE(5251), 1, sym_comment, - STATE(6209), 1, + STATE(6220), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181017] = 8, + [181137] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8879), 1, + ACTIONS(8890), 1, anon_sym_LBRACE, - ACTIONS(8881), 1, + ACTIONS(8892), 1, anon_sym_SEMI, - ACTIONS(8883), 1, + ACTIONS(8894), 1, sym__automatic_semicolon, - ACTIONS(8885), 1, + ACTIONS(8896), 1, sym__function_signature_automatic_semicolon, - STATE(391), 1, + STATE(377), 1, sym_statement_block, - STATE(5251), 1, + STATE(5252), 1, sym_comment, - [181042] = 6, + [181162] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5252), 1, + STATE(5253), 1, sym_comment, - STATE(5671), 1, + STATE(5674), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181063] = 6, + [181183] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5253), 1, + STATE(5254), 1, sym_comment, - STATE(6208), 1, + STATE(6212), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181084] = 6, + [181204] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5254), 1, + STATE(5255), 1, sym_comment, - STATE(6285), 1, + STATE(5675), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181105] = 6, + [181225] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5255), 1, + STATE(5256), 1, sym_comment, - STATE(5672), 1, + STATE(6287), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181126] = 6, + [181246] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5256), 1, + STATE(5257), 1, sym_comment, - STATE(6207), 1, + STATE(6211), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181147] = 8, + [181267] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8624), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8626), 1, + ACTIONS(8643), 1, sym__template_chars, - ACTIONS(8889), 1, + ACTIONS(8900), 1, anon_sym_BQUOTE, - STATE(5104), 1, + STATE(5105), 1, aux_sym_template_literal_type_repeat1, - STATE(5257), 1, + STATE(5258), 1, sym_comment, - STATE(5792), 1, + STATE(5795), 1, sym_template_type, - [181172] = 6, + [181292] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5258), 1, + STATE(5259), 1, sym_comment, - STATE(5678), 1, + STATE(5681), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181193] = 8, + [181313] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5260), 1, + sym_comment, + STATE(6290), 1, + sym__initializer, + ACTIONS(8586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181334] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5261), 1, + sym_comment, + STATE(6209), 1, + sym__initializer, + ACTIONS(8885), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181355] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7941), 1, + ACTIONS(7963), 1, anon_sym_extends, - ACTIONS(8116), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - ACTIONS(8118), 1, + ACTIONS(8075), 1, anon_sym_LBRACE_PIPE, - STATE(1421), 1, + STATE(1443), 1, sym_object_type, - STATE(5259), 1, + STATE(5262), 1, sym_comment, - STATE(6137), 1, + STATE(6141), 1, sym_extends_type_clause, - [181218] = 6, + [181380] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5260), 1, + STATE(5263), 1, sym_comment, - STATE(6289), 1, + STATE(5682), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181239] = 6, + [181401] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5261), 1, + STATE(5264), 1, sym_comment, - STATE(5679), 1, + STATE(5683), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181260] = 6, + [181422] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5262), 1, + STATE(5265), 1, sym_comment, - STATE(5680), 1, + STATE(5688), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181281] = 6, + [181443] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5263), 1, + STATE(5266), 1, sym_comment, STATE(6178), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181302] = 6, + [181464] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5264), 1, - sym_comment, - STATE(5685), 1, - sym__initializer, - ACTIONS(8887), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_SEMI, - [181323] = 8, + ACTIONS(8894), 1, + sym__automatic_semicolon, + ACTIONS(8896), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8902), 1, + anon_sym_LBRACE, + STATE(1151), 1, + sym_statement_block, + STATE(5267), 1, + sym_comment, + [181489] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(4555), 1, + STATE(4655), 1, sym__call_signature, - STATE(5265), 1, + STATE(5268), 1, sym_comment, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [181348] = 8, + [181514] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8881), 1, - anon_sym_SEMI, - ACTIONS(8883), 1, - sym__automatic_semicolon, - ACTIONS(8885), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8891), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_statement_block, - STATE(5266), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5269), 1, sym_comment, - [181373] = 4, + STATE(5695), 1, + sym__initializer, + ACTIONS(8877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181535] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5267), 1, + STATE(5270), 1, sym_comment, - ACTIONS(8507), 5, + ACTIONS(8326), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181390] = 6, + [181552] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5268), 1, + STATE(5271), 1, sym_comment, - STATE(6026), 1, + STATE(6137), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181411] = 8, + [181573] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(4744), 1, + STATE(4772), 1, sym__call_signature, - STATE(5269), 1, + STATE(5272), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [181436] = 6, + [181598] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5270), 1, + STATE(5273), 1, sym_comment, - STATE(6102), 1, + STATE(6292), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181457] = 7, + [181619] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(5271), 1, + STATE(5274), 1, sym_comment, - ACTIONS(8893), 2, + ACTIONS(8904), 2, sym__automatic_semicolon, anon_sym_SEMI, - [181480] = 6, + [181642] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5272), 1, + STATE(5275), 1, sym_comment, - STATE(6292), 1, + STATE(6104), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181501] = 6, + [181663] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5273), 1, + STATE(5276), 1, sym_comment, - STATE(6084), 1, + STATE(6296), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181522] = 6, + [181684] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5274), 1, + STATE(5277), 1, sym_comment, - STATE(5692), 1, + STATE(5696), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181543] = 6, + [181705] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5275), 1, + STATE(5278), 1, sym_comment, - STATE(6294), 1, + STATE(6086), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181564] = 6, + [181726] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5276), 1, + STATE(5279), 1, sym_comment, - STATE(6082), 1, + STATE(6084), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181585] = 6, + [181747] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5277), 1, + STATE(5280), 1, sym_comment, - STATE(6080), 1, + STATE(6082), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181606] = 8, + [181768] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8879), 1, + ACTIONS(8890), 1, anon_sym_LBRACE, - ACTIONS(8895), 1, + ACTIONS(8906), 1, anon_sym_SEMI, - ACTIONS(8897), 1, + ACTIONS(8908), 1, sym__automatic_semicolon, - ACTIONS(8899), 1, + ACTIONS(8910), 1, sym__function_signature_automatic_semicolon, - STATE(383), 1, + STATE(368), 1, sym_statement_block, - STATE(5278), 1, + STATE(5281), 1, sym_comment, - [181631] = 7, + [181793] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(5279), 1, + STATE(5282), 1, sym_comment, - ACTIONS(8901), 2, + ACTIONS(8912), 2, sym__automatic_semicolon, anon_sym_SEMI, - [181654] = 4, + [181816] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5280), 1, + STATE(5283), 1, sym_comment, - ACTIONS(8515), 5, + ACTIONS(8324), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181671] = 4, + [181833] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5281), 1, + STATE(5284), 1, sym_comment, - ACTIONS(8539), 5, + ACTIONS(8314), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181688] = 6, + [181850] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5282), 1, + STATE(5285), 1, sym_comment, - STATE(6059), 1, + STATE(6058), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181709] = 6, + [181871] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5283), 1, + STATE(5286), 1, sym_comment, - STATE(6036), 1, + STATE(6038), 1, sym__initializer, - ACTIONS(8573), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181730] = 6, + [181892] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5284), 1, + STATE(5287), 1, sym_comment, - STATE(5693), 1, + STATE(5697), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181751] = 6, + [181913] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5285), 1, + STATE(5288), 1, sym_comment, - STATE(5694), 1, + STATE(5608), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181772] = 8, + [181934] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(4580), 1, + STATE(4595), 1, sym__call_signature, - STATE(5286), 1, + STATE(5289), 1, sym_comment, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [181797] = 6, + [181959] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5287), 1, + STATE(5290), 1, sym_comment, - STATE(5708), 1, + STATE(6037), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181818] = 6, + [181980] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5288), 1, + STATE(5291), 1, sym_comment, - STATE(6295), 1, + STATE(5711), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181839] = 6, + [182001] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5289), 1, + STATE(5292), 1, sym_comment, - STATE(6033), 1, + STATE(6263), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181860] = 8, + [182022] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(4593), 1, + STATE(4628), 1, sym__call_signature, - STATE(5290), 1, + STATE(5293), 1, sym_comment, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [181885] = 4, + [182047] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5291), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5294), 1, sym_comment, - ACTIONS(8051), 5, + STATE(6035), 1, + sym__initializer, + ACTIONS(8885), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181902] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - STATE(4119), 1, - sym_formal_parameters, - STATE(5199), 1, - sym__call_signature, - STATE(5292), 1, - sym_comment, - STATE(6380), 1, - sym_type_parameters, - [181927] = 4, + [182068] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5293), 1, + STATE(5295), 1, sym_comment, - ACTIONS(8053), 5, + ACTIONS(8162), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181944] = 8, + [182085] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, anon_sym_LPAREN, - ACTIONS(7256), 1, + STATE(4142), 1, + sym_formal_parameters, + STATE(5221), 1, + sym__call_signature, + STATE(5296), 1, + sym_comment, + STATE(6467), 1, + sym_type_parameters, + [182110] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(4600), 1, + STATE(4619), 1, sym__call_signature, - STATE(5294), 1, + STATE(5297), 1, sym_comment, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [181969] = 4, + [182135] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5295), 1, + STATE(5298), 1, sym_comment, - ACTIONS(8051), 5, + ACTIONS(8160), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181986] = 4, + [182152] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5296), 1, + STATE(5299), 1, sym_comment, - ACTIONS(8903), 5, + ACTIONS(8162), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182003] = 8, + [182169] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(4558), 1, + STATE(4612), 1, sym__call_signature, - STATE(5297), 1, + STATE(5300), 1, sym_comment, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [182028] = 4, + [182194] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5298), 1, + STATE(5301), 1, sym_comment, - ACTIONS(8053), 5, + ACTIONS(8914), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182045] = 4, + [182211] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5299), 1, + STATE(5302), 1, sym_comment, - ACTIONS(8905), 5, + ACTIONS(8160), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182062] = 4, + [182228] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5300), 1, + STATE(5303), 1, sym_comment, - ACTIONS(8907), 5, + ACTIONS(8916), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182079] = 8, + [182245] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5304), 1, + sym_comment, + ACTIONS(8918), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182262] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4817), 1, + STATE(4812), 1, sym_formal_parameters, - STATE(5301), 1, + STATE(5305), 1, sym_comment, - STATE(6363), 1, + STATE(6366), 1, sym_type_parameters, - STATE(6677), 1, + STATE(6531), 1, sym__call_signature, - [182104] = 6, + [182287] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5302), 1, + STATE(5306), 1, sym_comment, - STATE(5723), 1, + STATE(5724), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182125] = 6, + [182308] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5303), 1, + STATE(5307), 1, sym_comment, - STATE(6265), 1, + STATE(5734), 1, sym__initializer, - ACTIONS(8579), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182146] = 4, + [182329] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5304), 1, + STATE(5308), 1, sym_comment, - ACTIONS(8909), 5, + ACTIONS(8920), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182163] = 8, + [182346] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8597), 1, + ACTIONS(8606), 1, anon_sym_EQ, - ACTIONS(8911), 1, + ACTIONS(8922), 1, anon_sym_COMMA, - ACTIONS(8913), 1, + ACTIONS(8924), 1, anon_sym_RBRACE, - STATE(5305), 1, + STATE(5309), 1, sym_comment, - STATE(6173), 1, + STATE(6177), 1, aux_sym_enum_body_repeat1, - STATE(6678), 1, + STATE(6681), 1, sym__initializer, - [182188] = 6, + [182371] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5306), 1, + STATE(5310), 1, sym_comment, - STATE(5731), 1, + STATE(5740), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182209] = 4, + [182392] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5307), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5311), 1, sym_comment, - ACTIONS(8915), 5, + STATE(5735), 1, + sym__initializer, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182226] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8891), 1, - anon_sym_LBRACE, - ACTIONS(8895), 1, anon_sym_SEMI, - ACTIONS(8897), 1, - sym__automatic_semicolon, - ACTIONS(8899), 1, - sym__function_signature_automatic_semicolon, - STATE(1200), 1, - sym_statement_block, - STATE(5308), 1, - sym_comment, - [182251] = 6, + [182413] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5309), 1, + STATE(5312), 1, sym_comment, - STATE(5736), 1, - sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8926), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182272] = 7, + anon_sym_PIPE_RBRACE, + [182430] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_extends, - ACTIONS(8583), 1, - anon_sym_PIPE, - STATE(5310), 1, - sym_comment, - ACTIONS(8917), 2, - sym__automatic_semicolon, + ACTIONS(8902), 1, + anon_sym_LBRACE, + ACTIONS(8906), 1, anon_sym_SEMI, - [182295] = 6, + ACTIONS(8908), 1, + sym__automatic_semicolon, + ACTIONS(8910), 1, + sym__function_signature_automatic_semicolon, + STATE(1194), 1, + sym_statement_block, + STATE(5313), 1, + sym_comment, + [182455] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5311), 1, + STATE(5314), 1, sym_comment, - STATE(5739), 1, - sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8130), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182316] = 4, + anon_sym_PIPE_RBRACE, + [182472] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5312), 1, + STATE(5315), 1, sym_comment, - ACTIONS(8919), 5, + ACTIONS(8928), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182333] = 4, + [182489] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5313), 1, + STATE(5316), 1, sym_comment, - ACTIONS(5989), 5, + ACTIONS(6005), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [182350] = 4, + [182506] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5314), 1, + STATE(5317), 1, sym_comment, - ACTIONS(5970), 5, + ACTIONS(6033), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [182367] = 8, + [182523] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7264), 1, + ACTIONS(7269), 1, anon_sym_LPAREN, - STATE(4226), 1, + ACTIONS(7273), 1, + anon_sym_LT, + STATE(4285), 1, sym_formal_parameters, - STATE(4708), 1, + STATE(4846), 1, sym__call_signature, - STATE(5315), 1, + STATE(5318), 1, sym_comment, - STATE(6465), 1, + STATE(6484), 1, sym_type_parameters, - [182392] = 6, + [182548] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5316), 1, + STATE(5319), 1, sym_comment, STATE(6009), 1, sym__initializer, - ACTIONS(8921), 3, + ACTIONS(8930), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182413] = 6, + [182569] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5317), 1, + STATE(5320), 1, sym_comment, - STATE(5995), 1, + STATE(5997), 1, sym__initializer, - ACTIONS(8923), 3, + ACTIONS(8932), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182434] = 8, + [182590] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - STATE(4119), 1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, sym_formal_parameters, - STATE(5318), 1, + STATE(5321), 1, sym_comment, - STATE(5983), 1, + STATE(5986), 1, sym__call_signature, - STATE(6380), 1, + STATE(6467), 1, sym_type_parameters, - [182459] = 6, + [182615] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5319), 1, + STATE(5322), 1, sym_comment, - STATE(5982), 1, + STATE(5985), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182480] = 6, + [182636] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5320), 1, + STATE(5323), 1, sym_comment, - STATE(6034), 1, + STATE(5984), 1, sym__initializer, - ACTIONS(8874), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182501] = 4, + [182657] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5321), 1, + STATE(5324), 1, sym_comment, - ACTIONS(8308), 5, + ACTIONS(8237), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [182518] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5322), 1, - sym_comment, - ACTIONS(8101), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182535] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - STATE(4119), 1, - sym_formal_parameters, - STATE(5323), 1, - sym_comment, - STATE(5341), 1, - sym__call_signature, - STATE(6380), 1, - sym_type_parameters, - [182560] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5324), 1, - sym_comment, - STATE(5751), 1, - sym__initializer, - ACTIONS(8887), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182581] = 6, + [182674] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8598), 1, + anon_sym_PIPE, STATE(5325), 1, sym_comment, - STATE(5765), 1, - sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8934), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [182602] = 6, + [182697] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5326), 1, sym_comment, - STATE(5972), 1, + STATE(5776), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182623] = 4, + [182718] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(5327), 1, sym_comment, - ACTIONS(8103), 5, + STATE(5754), 1, + sym__initializer, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182640] = 7, + [182739] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_extends, - ACTIONS(8583), 1, - anon_sym_PIPE, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4142), 1, + sym_formal_parameters, STATE(5328), 1, sym_comment, - ACTIONS(8925), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [182663] = 6, + STATE(5344), 1, + sym__call_signature, + STATE(6467), 1, + sym_type_parameters, + [182764] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5329), 1, sym_comment, - STATE(5970), 1, + STATE(5974), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182684] = 6, + [182785] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5330), 1, sym_comment, - STATE(5766), 1, + STATE(5768), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182705] = 6, + [182806] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(5331), 1, sym_comment, - STATE(5696), 1, - sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8128), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182726] = 6, + anon_sym_PIPE_RBRACE, + [182823] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5332), 1, sym_comment, - STATE(5969), 1, + STATE(5973), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182747] = 6, + [182844] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8598), 1, + anon_sym_PIPE, STATE(5333), 1, sym_comment, - STATE(5782), 1, - sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8936), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [182768] = 6, + [182867] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5334), 1, sym_comment, - STATE(5783), 1, + STATE(5769), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182789] = 6, + [182888] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5335), 1, sym_comment, - STATE(5968), 1, + STATE(5770), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182810] = 7, + [182909] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_extends, - ACTIONS(8583), 1, - anon_sym_PIPE, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(5336), 1, sym_comment, - ACTIONS(8927), 2, + STATE(5784), 1, + sym__initializer, + ACTIONS(8877), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [182833] = 6, + [182930] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5337), 1, sym_comment, - STATE(5965), 1, + STATE(5972), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182854] = 6, + [182951] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5338), 1, sym_comment, - STATE(5953), 1, + STATE(5969), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182875] = 5, + [182972] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6498), 1, - sym__automatic_semicolon, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8598), 1, + anon_sym_PIPE, STATE(5339), 1, sym_comment, - ACTIONS(2370), 4, + ACTIONS(8938), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182995] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5340), 1, + sym_comment, + STATE(5968), 1, + sym__initializer, + ACTIONS(8877), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182894] = 7, + [183016] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, - STATE(5340), 1, + STATE(5341), 1, sym_comment, - ACTIONS(8929), 2, + ACTIONS(8940), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182917] = 4, + [183039] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5341), 1, + ACTIONS(7263), 1, + anon_sym_EQ, + STATE(5342), 1, sym_comment, - ACTIONS(8055), 5, + STATE(5956), 1, + sym__initializer, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182934] = 5, + [183060] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6349), 1, + ACTIONS(6510), 1, sym__automatic_semicolon, - STATE(5342), 1, + STATE(5343), 1, sym_comment, - ACTIONS(2354), 4, + ACTIONS(2381), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182953] = 5, + [183079] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6601), 1, - sym__automatic_semicolon, - STATE(5343), 1, + STATE(5344), 1, sym_comment, - ACTIONS(2318), 4, + ACTIONS(8118), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182972] = 8, + [183096] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8931), 1, + ACTIONS(8942), 1, anon_sym_LBRACE, - ACTIONS(8933), 1, + ACTIONS(8944), 1, anon_sym_SEMI, - ACTIONS(8935), 1, + ACTIONS(8946), 1, sym__automatic_semicolon, - ACTIONS(8937), 1, + ACTIONS(8948), 1, sym__function_signature_automatic_semicolon, - STATE(983), 1, + STATE(996), 1, sym_statement_block, - STATE(5344), 1, + STATE(5345), 1, sym_comment, - [182997] = 5, + [183121] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6585), 1, + ACTIONS(6496), 1, sym__automatic_semicolon, - STATE(5345), 1, + STATE(5346), 1, sym_comment, - ACTIONS(2328), 4, + ACTIONS(2409), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [183016] = 6, + [183140] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(5346), 1, - sym_comment, - STATE(5952), 1, - sym__initializer, - ACTIONS(8866), 3, + ACTIONS(6494), 1, sym__automatic_semicolon, + STATE(5347), 1, + sym_comment, + ACTIONS(2413), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [183037] = 6, + anon_sym_PIPE_RBRACE, + [183159] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5347), 1, + STATE(5348), 1, sym_comment, - STATE(5951), 1, + STATE(5955), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183058] = 8, + [183180] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8597), 1, - anon_sym_EQ, - ACTIONS(8939), 1, + ACTIONS(6428), 1, + sym__automatic_semicolon, + STATE(5349), 1, + sym_comment, + ACTIONS(2437), 4, anon_sym_COMMA, - ACTIONS(8941), 1, anon_sym_RBRACE, - STATE(5348), 1, - sym_comment, - STATE(6246), 1, - aux_sym_enum_body_repeat1, - STATE(6678), 1, - sym__initializer, - [183083] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [183199] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(8606), 1, anon_sym_EQ, - STATE(5349), 1, + ACTIONS(8950), 1, + anon_sym_COMMA, + ACTIONS(8952), 1, + anon_sym_RBRACE, + STATE(5350), 1, sym_comment, - STATE(5927), 1, + STATE(6249), 1, + aux_sym_enum_body_repeat1, + STATE(6681), 1, sym__initializer, - ACTIONS(8887), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183104] = 6, + [183224] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5350), 1, + STATE(5351), 1, sym_comment, - STATE(5906), 1, + STATE(5954), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183125] = 6, + [183245] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5351), 1, + STATE(5352), 1, sym_comment, - STATE(5903), 1, + STATE(5927), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183146] = 6, + [183266] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, - STATE(5352), 1, + STATE(5353), 1, sym_comment, - STATE(5981), 1, + STATE(5907), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183167] = 8, + [183287] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8933), 1, + ACTIONS(8944), 1, anon_sym_SEMI, - ACTIONS(8935), 1, + ACTIONS(8946), 1, sym__automatic_semicolon, - ACTIONS(8937), 1, + ACTIONS(8948), 1, sym__function_signature_automatic_semicolon, - ACTIONS(8943), 1, + ACTIONS(8954), 1, anon_sym_LBRACE, - STATE(318), 1, + STATE(344), 1, sym_statement_block, - STATE(5353), 1, - sym_comment, - [183192] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, STATE(5354), 1, sym_comment, - STATE(6234), 1, - sym__initializer, - ACTIONS(8945), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183213] = 7, + [183312] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7486), 1, anon_sym_extends, - ACTIONS(8583), 1, + ACTIONS(8598), 1, anon_sym_PIPE, STATE(5355), 1, sym_comment, - ACTIONS(8947), 2, + ACTIONS(8956), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183236] = 6, + [183335] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(8942), 1, + anon_sym_LBRACE, + ACTIONS(8958), 1, + anon_sym_SEMI, + ACTIONS(8960), 1, + sym__automatic_semicolon, + ACTIONS(8962), 1, + sym__function_signature_automatic_semicolon, + STATE(979), 1, + sym_statement_block, STATE(5356), 1, sym_comment, - STATE(6240), 1, - sym__initializer, - ACTIONS(8945), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183257] = 6, + [183360] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5357), 1, sym_comment, - STATE(5772), 1, + STATE(6237), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183278] = 8, + [183381] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8931), 1, - anon_sym_LBRACE, - ACTIONS(8949), 1, - anon_sym_SEMI, - ACTIONS(8951), 1, - sym__automatic_semicolon, - ACTIONS(8953), 1, - sym__function_signature_automatic_semicolon, - STATE(994), 1, - sym_statement_block, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(5358), 1, sym_comment, - [183303] = 6, + STATE(5899), 1, + sym__initializer, + ACTIONS(8877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183402] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5359), 1, sym_comment, - STATE(5882), 1, + STATE(6239), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183324] = 8, + [183423] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7941), 1, - anon_sym_extends, - ACTIONS(8029), 1, - anon_sym_LBRACE, - ACTIONS(8031), 1, - anon_sym_LBRACE_PIPE, - STATE(1180), 1, - sym_object_type, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(5360), 1, sym_comment, - STATE(6288), 1, - sym_extends_type_clause, - [183349] = 6, + STATE(5885), 1, + sym__initializer, + ACTIONS(8898), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183444] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(7963), 1, + anon_sym_extends, + ACTIONS(7991), 1, + anon_sym_LBRACE, + ACTIONS(7993), 1, + anon_sym_LBRACE_PIPE, + STATE(1071), 1, + sym_object_type, STATE(5361), 1, sym_comment, - STATE(5881), 1, - sym__initializer, - ACTIONS(8866), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183370] = 6, + STATE(6291), 1, + sym_extends_type_clause, + [183469] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5362), 1, sym_comment, - STATE(5880), 1, + STATE(5884), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183391] = 6, + [183490] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5363), 1, sym_comment, - STATE(5870), 1, + STATE(5880), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183412] = 6, + [183511] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5364), 1, sym_comment, - STATE(5843), 1, + STATE(5873), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183433] = 8, + [183532] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8943), 1, + ACTIONS(8954), 1, anon_sym_LBRACE, - ACTIONS(8949), 1, + ACTIONS(8958), 1, anon_sym_SEMI, - ACTIONS(8951), 1, + ACTIONS(8960), 1, sym__automatic_semicolon, - ACTIONS(8953), 1, + ACTIONS(8962), 1, sym__function_signature_automatic_semicolon, - STATE(328), 1, + STATE(348), 1, sym_statement_block, STATE(5365), 1, sym_comment, - [183458] = 6, + [183557] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5366), 1, sym_comment, - STATE(5831), 1, + STATE(5846), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183479] = 6, + [183578] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5367), 1, sym_comment, - STATE(6258), 1, + STATE(5786), 1, sym__initializer, - ACTIONS(8945), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183500] = 6, + [183599] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5368), 1, sym_comment, - STATE(6241), 1, + STATE(6262), 1, sym__initializer, - ACTIONS(8945), 3, + ACTIONS(8964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183521] = 6, + [183620] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5369), 1, sym_comment, - STATE(5784), 1, + STATE(5833), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183542] = 6, + [183641] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5370), 1, sym_comment, - STATE(5829), 1, + STATE(6244), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183563] = 6, + [183662] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5371), 1, sym_comment, - STATE(5827), 1, + STATE(5831), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183584] = 6, + [183683] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5372), 1, sym_comment, - STATE(5810), 1, + STATE(5829), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183605] = 6, + [183704] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5373), 1, sym_comment, - STATE(5787), 1, + STATE(5812), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183626] = 6, + [183725] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7263), 1, anon_sym_EQ, STATE(5374), 1, sym_comment, - STATE(5785), 1, + STATE(5787), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183647] = 7, + [183746] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8081), 1, - anon_sym_DOT, - ACTIONS(8955), 1, - anon_sym_COMMA, - ACTIONS(8957), 1, - anon_sym_GT, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(5375), 1, sym_comment, - STATE(6262), 1, - aux_sym_type_arguments_repeat1, - [183669] = 6, + STATE(5789), 1, + sym__initializer, + ACTIONS(8898), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183767] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, + ACTIONS(7263), 1, + anon_sym_EQ, STATE(5376), 1, sym_comment, - STATE(6301), 1, - sym__from_clause, - ACTIONS(6007), 2, + STATE(5788), 1, + sym__initializer, + ACTIONS(8877), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [183689] = 6, + [183788] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8961), 1, + ACTIONS(8966), 1, anon_sym_SQUOTE, STATE(5377), 1, sym_comment, - STATE(5533), 1, + STATE(5535), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183709] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - STATE(5378), 1, - sym_comment, - STATE(5502), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8967), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183729] = 6, + [183808] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8969), 1, + ACTIONS(8966), 1, anon_sym_DQUOTE, - STATE(5379), 1, + STATE(5378), 1, sym_comment, - STATE(5440), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183749] = 6, - ACTIONS(3), 1, + [183828] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7989), 1, + anon_sym_DOT, + ACTIONS(8972), 1, + anon_sym_COMMA, + ACTIONS(8974), 1, + anon_sym_GT, + STATE(5379), 1, + sym_comment, + STATE(6266), 1, + aux_sym_type_arguments_repeat1, + [183850] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8969), 1, - anon_sym_SQUOTE, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8976), 1, + anon_sym_COMMA, STATE(5380), 1, sym_comment, - STATE(5441), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [183769] = 6, + STATE(5386), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8978), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183870] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5381), 1, + sym_comment, + STATE(6300), 1, + sym__from_clause, + ACTIONS(5987), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183890] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8976), 1, + anon_sym_COMMA, + STATE(5382), 1, + sym_comment, + STATE(5385), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8982), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183910] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8961), 1, + ACTIONS(8984), 1, anon_sym_DQUOTE, - STATE(5381), 1, + STATE(5383), 1, sym_comment, - STATE(5536), 1, + STATE(5444), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183789] = 6, + [183930] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8984), 1, + anon_sym_SQUOTE, + STATE(5384), 1, + sym_comment, + STATE(5445), 1, + aux_sym_string_repeat2, + ACTIONS(8968), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183950] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5382), 1, + STATE(5385), 1, sym_comment, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8973), 2, + ACTIONS(8986), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183809] = 6, + [183970] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5382), 1, - aux_sym_variable_declaration_repeat1, - STATE(5383), 1, + STATE(5386), 1, sym_comment, - ACTIONS(8975), 2, + STATE(5505), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8988), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183829] = 6, + [183990] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - STATE(5378), 1, - aux_sym_variable_declaration_repeat1, - STATE(5384), 1, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5387), 1, sym_comment, - ACTIONS(8977), 2, + STATE(6325), 1, + sym__from_clause, + ACTIONS(8990), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183849] = 6, + [184010] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8979), 1, + ACTIONS(8992), 1, anon_sym_DQUOTE, - STATE(5385), 1, + STATE(5388), 1, sym_comment, - STATE(5392), 1, + STATE(5395), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183869] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5386), 1, - sym_comment, - STATE(6323), 1, - sym__from_clause, - ACTIONS(8981), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183889] = 6, + [184030] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8979), 1, + ACTIONS(8994), 1, anon_sym_SQUOTE, - STATE(5387), 1, - sym_comment, - STATE(5393), 1, + STATE(5377), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + STATE(5389), 1, + sym_comment, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183909] = 6, + [184050] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8983), 1, - anon_sym_SQUOTE, - STATE(5377), 1, - aux_sym_string_repeat2, - STATE(5388), 1, + ACTIONS(8994), 1, + anon_sym_DQUOTE, + STATE(5378), 1, + aux_sym_string_repeat1, + STATE(5390), 1, sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8970), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [183929] = 6, + [184070] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8983), 1, - anon_sym_DQUOTE, - STATE(5381), 1, - aux_sym_string_repeat1, - STATE(5389), 1, + ACTIONS(8992), 1, + anon_sym_SQUOTE, + STATE(5391), 1, sym_comment, - ACTIONS(8971), 2, - sym_unescaped_double_string_fragment, + STATE(5396), 1, + aux_sym_string_repeat2, + ACTIONS(8968), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [183949] = 6, + [184090] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5390), 1, + STATE(5392), 1, sym_comment, - STATE(5396), 1, + STATE(5398), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8985), 2, + ACTIONS(8996), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183969] = 6, + [184110] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5391), 1, + STATE(5393), 1, sym_comment, - STATE(5397), 1, + STATE(5399), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8987), 2, + ACTIONS(8998), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183989] = 6, + [184130] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(9000), 1, + anon_sym_COLON, + STATE(5394), 1, + sym_comment, + [184152] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8989), 1, + ACTIONS(9002), 1, anon_sym_DQUOTE, - STATE(5392), 1, + STATE(5395), 1, sym_comment, STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184009] = 6, + [184172] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8989), 1, + ACTIONS(9002), 1, anon_sym_SQUOTE, - STATE(5393), 1, + STATE(5396), 1, sym_comment, - STATE(5533), 1, + STATE(5535), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184029] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(8991), 1, - anon_sym_COLON, - STATE(5394), 1, - sym_comment, - [184051] = 7, + [184192] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8081), 1, + ACTIONS(7989), 1, anon_sym_DOT, - ACTIONS(8993), 1, + ACTIONS(9004), 1, anon_sym_COMMA, - ACTIONS(8995), 1, + ACTIONS(9006), 1, anon_sym_GT, - STATE(5395), 1, + STATE(5397), 1, sym_comment, STATE(6194), 1, aux_sym_type_arguments_repeat1, - [184073] = 6, + [184214] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5396), 1, + STATE(5398), 1, sym_comment, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8997), 2, + ACTIONS(9008), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184093] = 6, + [184234] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5397), 1, + STATE(5399), 1, sym_comment, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8999), 2, + ACTIONS(9010), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184113] = 7, + [184254] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9001), 1, + ACTIONS(9012), 1, sym__glimmer_template_content, - ACTIONS(9003), 1, + ACTIONS(9014), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(2611), 1, + STATE(2599), 1, sym_glimmer_closing_tag, - STATE(5398), 1, + STATE(5400), 1, sym_comment, - STATE(5818), 1, + STATE(5819), 1, aux_sym_glimmer_template_repeat1, - [184135] = 7, + [184276] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9005), 1, + ACTIONS(9016), 1, anon_sym_RBRACK, - STATE(5399), 1, + STATE(5401), 1, sym_comment, - [184157] = 7, + [184298] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9007), 1, + ACTIONS(9018), 1, anon_sym_RBRACK, - STATE(5400), 1, - sym_comment, - [184179] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5401), 1, + STATE(5402), 1, sym_comment, - STATE(6760), 1, - sym__from_clause, - ACTIONS(9009), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184199] = 6, + [184320] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9011), 1, + ACTIONS(9020), 1, anon_sym_DQUOTE, - STATE(5402), 1, + STATE(5403), 1, sym_comment, STATE(5407), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184219] = 6, + [184340] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9011), 1, + ACTIONS(9020), 1, anon_sym_SQUOTE, - STATE(5403), 1, + STATE(5404), 1, sym_comment, - STATE(5408), 1, + STATE(5409), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184239] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(9013), 1, - anon_sym_RBRACK, - STATE(5404), 1, - sym_comment, - [184261] = 6, + [184360] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8408), 1, - anon_sym_finally, + ACTIONS(8980), 1, + anon_sym_from, STATE(5405), 1, sym_comment, - STATE(6613), 1, - sym_finally_clause, - ACTIONS(3191), 2, - anon_sym_else, - anon_sym_while, - [184281] = 7, + STATE(6783), 1, + sym__from_clause, + ACTIONS(9022), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184380] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9015), 1, + ACTIONS(9024), 1, anon_sym_RBRACK, STATE(5406), 1, sym_comment, - [184303] = 6, + [184402] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9017), 1, + ACTIONS(9026), 1, anon_sym_DQUOTE, STATE(5407), 1, sym_comment, STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184323] = 6, + [184422] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(9028), 1, + anon_sym_RBRACK, + STATE(5408), 1, + sym_comment, + [184444] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9017), 1, + ACTIONS(9026), 1, anon_sym_SQUOTE, - STATE(5408), 1, + STATE(5409), 1, sym_comment, - STATE(5533), 1, + STATE(5535), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184343] = 6, + [184464] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9019), 1, + ACTIONS(9030), 1, anon_sym_DQUOTE, - STATE(5409), 1, + STATE(5410), 1, sym_comment, - STATE(5411), 1, + STATE(5412), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184363] = 6, + [184484] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9019), 1, + ACTIONS(9030), 1, anon_sym_SQUOTE, - STATE(5410), 1, + STATE(5411), 1, sym_comment, - STATE(5412), 1, + STATE(5413), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184383] = 6, + [184504] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9021), 1, + ACTIONS(9032), 1, anon_sym_DQUOTE, - STATE(5411), 1, + STATE(5412), 1, sym_comment, STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184403] = 6, + [184524] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9021), 1, + ACTIONS(9032), 1, anon_sym_SQUOTE, - STATE(5412), 1, + STATE(5413), 1, sym_comment, - STATE(5533), 1, + STATE(5535), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184423] = 7, + [184544] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9023), 1, + ACTIONS(9034), 1, anon_sym_COLON, - STATE(5413), 1, + STATE(5414), 1, sym_comment, - [184445] = 6, + [184566] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9025), 1, + ACTIONS(9036), 1, anon_sym_DQUOTE, - STATE(5414), 1, + STATE(5415), 1, sym_comment, - STATE(5416), 1, + STATE(5418), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184465] = 6, + [184586] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9038), 1, + anon_sym_with, + ACTIONS(9040), 1, + anon_sym_SEMI, + ACTIONS(9042), 1, + sym__automatic_semicolon, + STATE(5416), 1, + sym_comment, + STATE(6469), 1, + sym_import_attribute, + [184608] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9025), 1, + ACTIONS(9036), 1, anon_sym_SQUOTE, - STATE(5415), 1, + STATE(5417), 1, sym_comment, - STATE(5418), 1, + STATE(5419), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184485] = 6, + [184628] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9027), 1, + ACTIONS(9044), 1, anon_sym_DQUOTE, - STATE(5416), 1, + STATE(5418), 1, sym_comment, STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184505] = 7, + [184648] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9044), 1, + anon_sym_SQUOTE, + STATE(5419), 1, + sym_comment, + STATE(5535), 1, + aux_sym_string_repeat2, + ACTIONS(8968), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184668] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, - anon_sym_with, - ACTIONS(9031), 1, - anon_sym_SEMI, - ACTIONS(9033), 1, - sym__automatic_semicolon, - STATE(5417), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9046), 1, + anon_sym_DQUOTE, + STATE(5420), 1, sym_comment, - STATE(6467), 1, - sym_import_attribute, - [184527] = 6, + STATE(5422), 1, + aux_sym_string_repeat1, + ACTIONS(8970), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184688] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9027), 1, + ACTIONS(9046), 1, anon_sym_SQUOTE, - STATE(5418), 1, + STATE(5421), 1, sym_comment, - STATE(5533), 1, + STATE(5423), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184547] = 6, + [184708] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9035), 1, + ACTIONS(9048), 1, anon_sym_DQUOTE, - STATE(5419), 1, + STATE(5422), 1, sym_comment, - STATE(5421), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184567] = 6, + [184728] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9035), 1, + ACTIONS(9048), 1, anon_sym_SQUOTE, - STATE(5420), 1, + STATE(5423), 1, sym_comment, - STATE(5422), 1, + STATE(5535), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184587] = 6, + [184748] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9037), 1, + ACTIONS(9050), 1, anon_sym_DQUOTE, - STATE(5421), 1, + STATE(5424), 1, sym_comment, - STATE(5536), 1, + STATE(5431), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184607] = 6, + [184768] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9037), 1, + ACTIONS(9050), 1, anon_sym_SQUOTE, - STATE(5422), 1, + STATE(5425), 1, sym_comment, - STATE(5533), 1, + STATE(5432), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184627] = 6, + [184788] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8241), 1, + anon_sym_finally, + STATE(5426), 1, + sym_comment, + STATE(6615), 1, + sym_finally_clause, + ACTIONS(3174), 2, + anon_sym_else, + anon_sym_while, + [184808] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5423), 1, + STATE(5427), 1, sym_comment, - STATE(6888), 1, + STATE(6906), 1, sym_import_attribute, - ACTIONS(9039), 2, + ACTIONS(9052), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184647] = 6, + [184828] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5424), 1, + STATE(5428), 1, sym_comment, - STATE(6820), 1, + STATE(6860), 1, sym_import_attribute, - ACTIONS(9041), 2, + ACTIONS(9054), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184667] = 6, + [184848] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5425), 1, + STATE(5429), 1, sym_comment, - STATE(5493), 1, + STATE(5497), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9043), 2, + ACTIONS(9056), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184687] = 6, + [184868] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5426), 1, + STATE(5430), 1, sym_comment, - STATE(5494), 1, + STATE(5498), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9045), 2, + ACTIONS(9058), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184707] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9047), 1, - anon_sym_DQUOTE, - STATE(5427), 1, - sym_comment, - STATE(5429), 1, - aux_sym_string_repeat1, - ACTIONS(8971), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184727] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9047), 1, - anon_sym_SQUOTE, - STATE(5428), 1, - sym_comment, - STATE(5430), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184747] = 6, + [184888] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9049), 1, + ACTIONS(9060), 1, anon_sym_DQUOTE, - STATE(5429), 1, + STATE(5431), 1, sym_comment, STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184767] = 6, + [184908] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9049), 1, + ACTIONS(9060), 1, anon_sym_SQUOTE, - STATE(5430), 1, + STATE(5432), 1, sym_comment, - STATE(5533), 1, + STATE(5535), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184787] = 7, + [184928] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9051), 1, + ACTIONS(9062), 1, anon_sym_RPAREN, - STATE(5431), 1, + STATE(5433), 1, sym_comment, - [184809] = 6, + [184950] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9053), 1, + ACTIONS(9064), 1, anon_sym_DQUOTE, - STATE(5432), 1, - sym_comment, STATE(5434), 1, + sym_comment, + STATE(5436), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184829] = 6, + [184970] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9053), 1, + ACTIONS(9064), 1, anon_sym_SQUOTE, - STATE(5433), 1, + STATE(5435), 1, sym_comment, - STATE(5436), 1, + STATE(5438), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184849] = 6, + [184990] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9055), 1, + ACTIONS(9066), 1, anon_sym_DQUOTE, - STATE(5434), 1, + STATE(5436), 1, sym_comment, STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184869] = 7, + [185010] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7216), 1, + ACTIONS(7211), 1, anon_sym_LPAREN, - ACTIONS(7222), 1, + ACTIONS(7217), 1, anon_sym_LT, - STATE(4098), 1, + STATE(4105), 1, sym_arguments, - STATE(4298), 1, + STATE(4301), 1, sym_type_arguments, - STATE(5435), 1, + STATE(5437), 1, sym_comment, - [184891] = 6, + [185032] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9055), 1, + ACTIONS(9066), 1, anon_sym_SQUOTE, - STATE(5436), 1, + STATE(5438), 1, sym_comment, - STATE(5533), 1, + STATE(5535), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184911] = 7, + [185052] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9057), 1, + ACTIONS(9068), 1, anon_sym_RBRACK, - STATE(5437), 1, + STATE(5439), 1, sym_comment, - [184933] = 6, + [185074] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5438), 1, + STATE(5440), 1, sym_comment, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9059), 2, + ACTIONS(9070), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184953] = 6, + [185094] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5439), 1, + STATE(5441), 1, sym_comment, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9061), 2, + ACTIONS(9072), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184973] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9063), 1, - anon_sym_DQUOTE, - STATE(5440), 1, - sym_comment, - STATE(5536), 1, - aux_sym_string_repeat1, - ACTIONS(8971), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184993] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9063), 1, - anon_sym_SQUOTE, - STATE(5441), 1, - sym_comment, - STATE(5533), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185013] = 7, + [185114] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9065), 1, + ACTIONS(9074), 1, anon_sym_RBRACK, STATE(5442), 1, sym_comment, - [185035] = 7, + [185136] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - ACTIONS(9067), 1, + ACTIONS(9076), 1, anon_sym_SEMI, - ACTIONS(9069), 1, + ACTIONS(9078), 1, sym__automatic_semicolon, STATE(5443), 1, sym_comment, - STATE(6496), 1, + STATE(6499), 1, sym_import_attribute, - [185057] = 6, + [185158] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9029), 1, - anon_sym_with, + ACTIONS(9080), 1, + anon_sym_DQUOTE, STATE(5444), 1, sym_comment, - STATE(6499), 1, - sym_import_attribute, - ACTIONS(9071), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185077] = 6, + STATE(5536), 1, + aux_sym_string_repeat1, + ACTIONS(8970), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185178] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9080), 1, + anon_sym_SQUOTE, + STATE(5445), 1, + sym_comment, + STATE(5535), 1, + aux_sym_string_repeat2, + ACTIONS(8968), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185198] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5445), 1, + STATE(5446), 1, sym_comment, - STATE(6501), 1, + STATE(6502), 1, sym_import_attribute, - ACTIONS(9073), 2, + ACTIONS(9082), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185097] = 7, + [185218] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(9075), 1, + ACTIONS(9084), 1, anon_sym_class, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(5446), 1, + STATE(5447), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [185119] = 7, + [185240] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9038), 1, + anon_sym_with, + STATE(5448), 1, + sym_comment, + STATE(6504), 1, + sym_import_attribute, + ACTIONS(9086), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185260] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(5447), 1, + STATE(5449), 1, sym_comment, - STATE(6595), 1, + STATE(6599), 1, sym_type_parameters, - STATE(6963), 1, + STATE(6967), 1, sym_formal_parameters, - [185141] = 6, + [185282] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - STATE(5448), 1, + STATE(5450), 1, sym_comment, - STATE(6507), 1, + STATE(6510), 1, sym__from_clause, - ACTIONS(5926), 2, + ACTIONS(6025), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185161] = 6, + [185302] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8597), 1, + ACTIONS(8606), 1, anon_sym_EQ, - STATE(5449), 1, + STATE(5451), 1, sym_comment, - STATE(6678), 1, + STATE(6681), 1, sym__initializer, - ACTIONS(9077), 2, + ACTIONS(9088), 2, anon_sym_COMMA, anon_sym_RBRACE, - [185181] = 6, + [185322] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9079), 1, + ACTIONS(9090), 1, anon_sym_LBRACE, - ACTIONS(9081), 1, + ACTIONS(9092), 1, anon_sym_COMMA, - ACTIONS(9084), 1, + ACTIONS(9095), 1, anon_sym_LBRACE_PIPE, - STATE(5450), 2, + STATE(5452), 2, sym_comment, aux_sym_extends_type_clause_repeat1, - [185201] = 7, + [185342] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9086), 1, + ACTIONS(9097), 1, anon_sym_COLON, - STATE(5451), 1, - sym_comment, - [185223] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(5452), 1, + STATE(5453), 1, sym_comment, - STATE(6616), 1, - sym_type_parameters, - STATE(7156), 1, - sym_formal_parameters, - [185245] = 7, + [185364] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9088), 1, + ACTIONS(9099), 1, sym_identifier, - ACTIONS(9090), 1, + ACTIONS(9101), 1, anon_sym_const, - ACTIONS(9092), 1, + ACTIONS(9103), 1, anon_sym_GT, - STATE(5453), 1, + STATE(5454), 1, sym_comment, - STATE(6838), 1, + STATE(6841), 1, sym_type_parameter, - [185267] = 7, + [185386] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7989), 1, + anon_sym_DOT, + ACTIONS(9105), 1, + anon_sym_COMMA, + ACTIONS(9107), 1, + anon_sym_GT, + STATE(5455), 1, + sym_comment, + STATE(6085), 1, + aux_sym_type_arguments_repeat1, + [185408] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9094), 1, + ACTIONS(9109), 1, anon_sym_RBRACK, - STATE(5454), 1, + STATE(5456), 1, sym_comment, - [185289] = 7, + [185430] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8081), 1, - anon_sym_DOT, - ACTIONS(9096), 1, - anon_sym_COMMA, - ACTIONS(9098), 1, - anon_sym_GT, - STATE(5455), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(5457), 1, sym_comment, - STATE(6081), 1, - aux_sym_type_arguments_repeat1, - [185311] = 5, + STATE(6620), 1, + sym_type_parameters, + STATE(7168), 1, + sym_formal_parameters, + [185452] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5456), 1, + STATE(5458), 1, sym_comment, - ACTIONS(3287), 2, + ACTIONS(3426), 2, anon_sym_else, anon_sym_while, - ACTIONS(9100), 2, + ACTIONS(9111), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185329] = 7, + [185470] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9102), 1, + ACTIONS(9113), 1, anon_sym_RBRACK, - STATE(5457), 1, + STATE(5459), 1, sym_comment, - [185351] = 7, + [185492] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9104), 1, + ACTIONS(9115), 1, anon_sym_RBRACK, - STATE(5458), 1, + STATE(5460), 1, sym_comment, - [185373] = 7, + [185514] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8021), 1, + ACTIONS(8025), 1, anon_sym_COMMA, - ACTIONS(9106), 1, + ACTIONS(9117), 1, anon_sym_LBRACE, - ACTIONS(9108), 1, + ACTIONS(9119), 1, anon_sym_LBRACE_PIPE, - STATE(5450), 1, + STATE(5452), 1, aux_sym_extends_type_clause_repeat1, - STATE(5459), 1, + STATE(5461), 1, sym_comment, - [185395] = 7, + [185536] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8021), 1, + ACTIONS(8025), 1, anon_sym_COMMA, - ACTIONS(9106), 1, + ACTIONS(9117), 1, anon_sym_LBRACE, - ACTIONS(9108), 1, + ACTIONS(9119), 1, anon_sym_LBRACE_PIPE, - STATE(5450), 1, + STATE(5452), 1, aux_sym_extends_type_clause_repeat1, - STATE(5460), 1, + STATE(5462), 1, sym_comment, - [185417] = 7, + [185558] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8021), 1, + ACTIONS(8025), 1, anon_sym_COMMA, - ACTIONS(9110), 1, + ACTIONS(9121), 1, anon_sym_LBRACE, - ACTIONS(9112), 1, + ACTIONS(9123), 1, anon_sym_LBRACE_PIPE, - STATE(5450), 1, + STATE(5452), 1, aux_sym_extends_type_clause_repeat1, - STATE(5461), 1, + STATE(5463), 1, sym_comment, - [185439] = 7, + [185580] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9114), 1, + ACTIONS(9125), 1, sym_identifier, - STATE(5222), 1, + STATE(5224), 1, sym_nested_type_identifier, - STATE(5462), 1, + STATE(5464), 1, sym_comment, - STATE(6058), 1, + STATE(6060), 1, sym_generic_type, - STATE(6959), 1, + STATE(6963), 1, sym_nested_identifier, - [185461] = 7, + [185602] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - ACTIONS(9116), 1, + ACTIONS(9127), 1, anon_sym_SEMI, - ACTIONS(9118), 1, + ACTIONS(9129), 1, sym__automatic_semicolon, - STATE(5463), 1, + STATE(5465), 1, sym_comment, - STATE(6542), 1, + STATE(6543), 1, sym_import_attribute, - [185483] = 5, + [185624] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9122), 1, + ACTIONS(9133), 1, anon_sym_COMMA, - ACTIONS(9120), 2, + ACTIONS(9131), 2, anon_sym_LBRACE, anon_sym_implements, - STATE(5464), 2, + STATE(5466), 2, sym_comment, aux_sym_extends_clause_repeat1, - [185501] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9125), 1, - anon_sym_EQ, - STATE(5465), 1, - sym_comment, - STATE(6656), 1, - sym__initializer, - ACTIONS(7549), 2, - anon_sym_in, - anon_sym_of, - [185521] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8081), 1, - anon_sym_DOT, - ACTIONS(9127), 1, - anon_sym_COMMA, - ACTIONS(9129), 1, - anon_sym_GT, - STATE(5466), 1, - sym_comment, - STATE(5814), 1, - aux_sym_type_arguments_repeat1, - [185543] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(5467), 1, - sym_comment, - STATE(6793), 1, - sym_type_parameters, - STATE(7023), 1, - sym_formal_parameters, - [185565] = 6, + [185642] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9131), 1, + ACTIONS(9136), 1, anon_sym_SQUOTE, - STATE(5468), 1, + STATE(5467), 1, sym_comment, - STATE(5533), 1, + STATE(5535), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185585] = 6, + [185662] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9131), 1, + ACTIONS(9136), 1, anon_sym_DQUOTE, - STATE(5469), 1, + STATE(5468), 1, sym_comment, STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185605] = 7, + [185682] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9138), 1, + anon_sym_EQ, + STATE(5469), 1, + sym_comment, + STATE(6659), 1, + sym__initializer, + ACTIONS(7566), 2, + anon_sym_in, + anon_sym_of, + [185702] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8021), 1, + ACTIONS(7989), 1, + anon_sym_DOT, + ACTIONS(9140), 1, anon_sym_COMMA, - ACTIONS(8342), 1, - anon_sym_LBRACE, - ACTIONS(8344), 1, - anon_sym_LBRACE_PIPE, - STATE(5459), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(9142), 1, + anon_sym_GT, STATE(5470), 1, sym_comment, - [185627] = 6, + STATE(5817), 1, + aux_sym_type_arguments_repeat1, + [185724] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - STATE(5438), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(5471), 1, sym_comment, - ACTIONS(9133), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185647] = 6, + STATE(6797), 1, + sym_type_parameters, + STATE(7021), 1, + sym_formal_parameters, + [185746] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5439), 1, + STATE(5440), 1, aux_sym_variable_declaration_repeat1, STATE(5472), 1, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9144), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185667] = 6, + [185766] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, - anon_sym_with, + ACTIONS(8976), 1, + anon_sym_COMMA, + STATE(5441), 1, + aux_sym_variable_declaration_repeat1, STATE(5473), 1, sym_comment, - STATE(6591), 1, - sym_import_attribute, - ACTIONS(9137), 2, + ACTIONS(9146), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185687] = 6, + [185786] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, STATE(5474), 1, sym_comment, - STATE(6593), 1, + STATE(6594), 1, sym_import_attribute, - ACTIONS(9139), 2, + ACTIONS(9148), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185707] = 7, + [185806] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(9038), 1, + anon_sym_with, STATE(5475), 1, sym_comment, - STATE(6801), 1, - sym_type_parameters, - STATE(7279), 1, - sym_formal_parameters, - [185729] = 4, + STATE(6596), 1, + sym_import_attribute, + ACTIONS(9150), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185826] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8025), 1, + anon_sym_COMMA, + ACTIONS(8480), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_LBRACE_PIPE, + STATE(5461), 1, + aux_sym_extends_type_clause_repeat1, STATE(5476), 1, sym_comment, - ACTIONS(9141), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [185745] = 6, + [185848] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(5477), 1, sym_comment, - STATE(6611), 1, + STATE(6805), 1, + sym_type_parameters, + STATE(7280), 1, + sym_formal_parameters, + [185870] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5478), 1, + sym_comment, + STATE(6612), 1, sym__from_clause, - ACTIONS(9143), 2, + ACTIONS(9152), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185765] = 4, + [185890] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5478), 1, + STATE(5479), 1, sym_comment, - ACTIONS(9145), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [185781] = 6, + ACTIONS(9154), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [185906] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5479), 1, + STATE(5480), 1, sym_comment, - STATE(6628), 1, - sym__from_clause, - ACTIONS(5890), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185801] = 7, + ACTIONS(9156), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185922] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9088), 1, + ACTIONS(9099), 1, sym_identifier, - ACTIONS(9090), 1, + ACTIONS(9101), 1, anon_sym_const, - ACTIONS(9147), 1, + ACTIONS(9158), 1, anon_sym_GT, - STATE(5480), 1, - sym_comment, - STATE(6838), 1, - sym_type_parameter, - [185823] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(9149), 1, - anon_sym_RBRACK, STATE(5481), 1, sym_comment, - [185845] = 6, + STATE(6841), 1, + sym_type_parameter, + [185944] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9151), 1, + ACTIONS(9160), 1, anon_sym_SQUOTE, - STATE(5468), 1, + STATE(5467), 1, aux_sym_string_repeat2, STATE(5482), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185865] = 6, + [185964] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5483), 1, + sym_comment, + STATE(6631), 1, + sym__from_clause, + ACTIONS(6003), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185984] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9151), 1, + ACTIONS(9160), 1, anon_sym_DQUOTE, - STATE(5469), 1, + STATE(5468), 1, aux_sym_string_repeat1, - STATE(5483), 1, + STATE(5484), 1, sym_comment, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185885] = 7, + [186004] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(9162), 1, + anon_sym_RBRACK, + STATE(5485), 1, + sym_comment, + [186026] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9153), 1, + ACTIONS(9164), 1, anon_sym_QMARK, - STATE(5484), 1, + STATE(5486), 1, sym_comment, - [185907] = 7, + [186048] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9088), 1, + ACTIONS(9099), 1, sym_identifier, - ACTIONS(9090), 1, + ACTIONS(9101), 1, anon_sym_const, - ACTIONS(9155), 1, + ACTIONS(9166), 1, anon_sym_GT, - STATE(5485), 1, + STATE(5487), 1, sym_comment, - STATE(6838), 1, + STATE(6841), 1, sym_type_parameter, - [185929] = 5, + [186070] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8749), 1, + ACTIONS(8760), 1, anon_sym_RBRACE, - STATE(5486), 1, + STATE(5488), 1, sym_comment, - ACTIONS(5067), 3, + ACTIONS(5052), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [185947] = 5, + [186088] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9157), 1, + ACTIONS(9168), 1, sym_escape_sequence, - STATE(5487), 1, + STATE(5489), 1, sym_comment, - ACTIONS(9159), 3, + ACTIONS(9170), 3, sym__template_chars, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [185965] = 6, + [186106] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7417), 1, + anon_sym_EQ, + STATE(5490), 1, + sym_comment, + STATE(6695), 1, + sym_default_type, + ACTIONS(9173), 2, + anon_sym_COMMA, + anon_sym_GT, + [186126] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(9175), 1, + anon_sym_COLON, + STATE(5491), 1, + sym_comment, + [186148] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5488), 1, + STATE(5492), 1, sym_comment, - STATE(6564), 1, + STATE(6392), 1, sym_import_attribute, - ACTIONS(9162), 2, + ACTIONS(9177), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185985] = 6, + [186168] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5489), 1, + STATE(5493), 1, sym_comment, - STATE(6562), 1, + STATE(6567), 1, sym_import_attribute, - ACTIONS(9164), 2, + ACTIONS(9179), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186005] = 7, + [186188] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - ACTIONS(9166), 1, + ACTIONS(9181), 1, anon_sym_SEMI, - ACTIONS(9168), 1, + ACTIONS(9183), 1, sym__automatic_semicolon, - STATE(5490), 1, + STATE(5494), 1, sym_comment, - STATE(6544), 1, + STATE(6585), 1, sym_import_attribute, - [186027] = 6, + [186210] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7408), 1, - anon_sym_EQ, - STATE(5491), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(5495), 1, sym_comment, - STATE(6692), 1, - sym_default_type, - ACTIONS(9170), 2, - anon_sym_COMMA, - anon_sym_GT, - [186047] = 7, + STATE(6915), 1, + sym_type_parameters, + STATE(7063), 1, + sym_formal_parameters, + [186232] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7297), 1, anon_sym_LPAREN, - STATE(5492), 1, + STATE(4588), 1, + sym_formal_parameters, + STATE(5496), 1, sym_comment, - STATE(6911), 1, + STATE(6709), 1, sym_type_parameters, - STATE(7068), 1, - sym_formal_parameters, - [186069] = 6, + [186254] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5493), 1, + STATE(5497), 1, sym_comment, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9172), 2, + ACTIONS(9185), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186089] = 6, + [186274] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5494), 1, + STATE(5498), 1, sym_comment, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9174), 2, + ACTIONS(9187), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186109] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(9176), 1, - anon_sym_COLON, - STATE(5495), 1, - sym_comment, - [186131] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - ACTIONS(7256), 1, - anon_sym_LT, - STATE(4438), 1, - sym_formal_parameters, - STATE(5496), 1, - sym_comment, - STATE(6706), 1, - sym_type_parameters, - [186153] = 7, + [186294] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9178), 1, + ACTIONS(9189), 1, anon_sym_RPAREN, - STATE(5497), 1, + STATE(5499), 1, sym_comment, - [186175] = 7, + [186316] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(5498), 1, + STATE(5500), 1, sym_comment, - STATE(6919), 1, + STATE(6923), 1, sym_type_parameters, - STATE(6973), 1, + STATE(6971), 1, sym_formal_parameters, - [186197] = 7, + [186338] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(9180), 1, + ACTIONS(9191), 1, anon_sym_LT, - STATE(2982), 1, + STATE(2954), 1, sym_arguments, - STATE(2983), 1, + STATE(2955), 1, sym_type_arguments, - STATE(5499), 1, + STATE(5501), 1, sym_comment, - [186219] = 6, + [186360] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9184), 1, + ACTIONS(9195), 1, anon_sym_COMMA, - STATE(5464), 1, + STATE(5466), 1, aux_sym_extends_clause_repeat1, - STATE(5500), 1, + STATE(5502), 1, sym_comment, - ACTIONS(9182), 2, + ACTIONS(9193), 2, anon_sym_LBRACE, anon_sym_implements, - [186239] = 6, + [186380] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8037), 1, + ACTIONS(8067), 1, anon_sym_EQ, - STATE(5501), 1, + STATE(5503), 1, sym_comment, - STATE(6743), 1, + STATE(6745), 1, sym__initializer, - ACTIONS(9186), 2, + ACTIONS(9197), 2, anon_sym_COMMA, anon_sym_RPAREN, - [186259] = 5, + [186400] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(9199), 1, + anon_sym_RBRACK, + STATE(5504), 1, + sym_comment, + [186422] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9188), 1, + ACTIONS(9201), 1, anon_sym_COMMA, - ACTIONS(9191), 2, + ACTIONS(9204), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(5502), 2, + STATE(5505), 2, sym_comment, aux_sym_variable_declaration_repeat1, - [186277] = 7, + [186440] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(5503), 1, + STATE(5506), 1, sym_comment, - STATE(6891), 1, + STATE(6894), 1, sym_type_parameters, - STATE(7222), 1, + STATE(7228), 1, sym_formal_parameters, - [186299] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(9193), 1, - anon_sym_RBRACK, - STATE(5504), 1, - sym_comment, - [186321] = 7, + [186462] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(5505), 1, + STATE(5507), 1, sym_comment, - STATE(6883), 1, + STATE(6884), 1, sym_type_parameters, - STATE(7248), 1, + STATE(7253), 1, sym_formal_parameters, - [186343] = 6, + [186484] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - STATE(5506), 1, + STATE(5508), 1, sym_comment, - ACTIONS(9195), 2, + ACTIONS(9206), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186363] = 6, + [186504] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - STATE(5507), 1, + STATE(5509), 1, sym_comment, - ACTIONS(9197), 2, + ACTIONS(9208), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186383] = 7, + [186524] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4250), 1, - anon_sym_LPAREN, - ACTIONS(7140), 1, - anon_sym_LT, - STATE(3963), 1, - sym_arguments, - STATE(4085), 1, - sym_type_arguments, - STATE(5508), 1, - sym_comment, - [186405] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - ACTIONS(9199), 1, + ACTIONS(9210), 1, anon_sym_SEMI, - ACTIONS(9201), 1, + ACTIONS(9212), 1, sym__automatic_semicolon, - STATE(5509), 1, + STATE(5510), 1, sym_comment, - STATE(6787), 1, + STATE(6788), 1, sym_import_attribute, - [186427] = 7, + [186546] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - ACTIONS(9203), 1, + ACTIONS(9214), 1, anon_sym_SEMI, - ACTIONS(9205), 1, + ACTIONS(9216), 1, sym__automatic_semicolon, - STATE(5510), 1, + STATE(5511), 1, sym_comment, - STATE(6703), 1, + STATE(6694), 1, sym_import_attribute, - [186449] = 6, + [186568] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4283), 1, + anon_sym_LPAREN, + ACTIONS(7151), 1, + anon_sym_LT, + STATE(3979), 1, + sym_arguments, + STATE(4083), 1, + sym_type_arguments, + STATE(5512), 1, + sym_comment, + [186590] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5511), 1, + STATE(5513), 1, sym_comment, - STATE(6707), 1, + STATE(6708), 1, sym_import_attribute, - ACTIONS(9207), 2, + ACTIONS(9218), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186469] = 6, + [186610] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5512), 1, + STATE(5514), 1, sym_comment, - STATE(6708), 1, + STATE(6710), 1, sym_import_attribute, - ACTIONS(9209), 2, + ACTIONS(9220), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186489] = 6, + [186630] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4642), 1, + ACTIONS(4649), 1, anon_sym_COLON, - ACTIONS(7252), 1, + ACTIONS(7295), 1, anon_sym_EQ, - STATE(5513), 1, + STATE(5515), 1, sym_comment, - ACTIONS(9211), 2, + ACTIONS(9222), 2, anon_sym_COMMA, anon_sym_RBRACE, - [186509] = 6, + [186650] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - STATE(5514), 1, + STATE(5516), 1, sym_comment, - STATE(6739), 1, + STATE(6741), 1, sym__from_clause, - ACTIONS(5987), 2, + ACTIONS(6027), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186529] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(9213), 1, - anon_sym_RPAREN, - STATE(5515), 1, - sym_comment, - [186551] = 7, + [186670] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - ACTIONS(9215), 1, + ACTIONS(9224), 1, anon_sym_SEMI, - ACTIONS(9217), 1, + ACTIONS(9226), 1, sym__automatic_semicolon, - STATE(5516), 1, + STATE(5517), 1, sym_comment, - STATE(6927), 1, + STATE(6930), 1, sym_import_attribute, - [186573] = 5, + [186692] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9219), 1, + ACTIONS(9228), 1, anon_sym_COMMA, - ACTIONS(5668), 2, + ACTIONS(5819), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(5517), 2, + STATE(5518), 2, sym_comment, aux_sym_sequence_expression_repeat1, - [186591] = 7, + [186710] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(9231), 1, + anon_sym_RPAREN, + STATE(5519), 1, + sym_comment, + [186732] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9222), 1, + ACTIONS(9233), 1, sym_identifier, - STATE(4741), 1, + STATE(4801), 1, sym_nested_type_identifier, - STATE(5470), 1, + STATE(5476), 1, sym_generic_type, - STATE(5518), 1, + STATE(5520), 1, sym_comment, - STATE(6959), 1, + STATE(6963), 1, sym_nested_identifier, - [186613] = 4, + [186754] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5519), 1, + STATE(5521), 1, sym_comment, - ACTIONS(9224), 4, + ACTIONS(9235), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [186629] = 7, + [186770] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9088), 1, + ACTIONS(9099), 1, sym_identifier, - ACTIONS(9090), 1, + ACTIONS(9101), 1, anon_sym_const, - ACTIONS(9226), 1, + ACTIONS(9237), 1, anon_sym_GT, - STATE(5520), 1, + STATE(5522), 1, sym_comment, - STATE(6838), 1, + STATE(6841), 1, sym_type_parameter, - [186651] = 7, + [186792] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(5521), 1, + STATE(5523), 1, sym_comment, - STATE(6846), 1, + STATE(6849), 1, sym_type_parameters, - STATE(7014), 1, + STATE(7018), 1, sym_formal_parameters, - [186673] = 7, + [186814] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9228), 1, + ACTIONS(9239), 1, anon_sym_QMARK, - STATE(5522), 1, - sym_comment, - [186695] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7408), 1, - anon_sym_EQ, - STATE(5523), 1, + STATE(5524), 1, sym_comment, - STATE(6848), 1, - sym_default_type, - ACTIONS(9230), 2, - anon_sym_COMMA, - anon_sym_GT, - [186715] = 6, + [186836] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - STATE(5524), 1, + STATE(5525), 1, sym_comment, - STATE(2647), 2, + STATE(2650), 2, sym_template_string, sym_arguments, - [186735] = 7, + [186856] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(9232), 1, - anon_sym_RPAREN, - STATE(5525), 1, + ACTIONS(7417), 1, + anon_sym_EQ, + STATE(5526), 1, sym_comment, - [186757] = 7, + STATE(6851), 1, + sym_default_type, + ACTIONS(9241), 2, + anon_sym_COMMA, + anon_sym_GT, + [186876] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9234), 1, + ACTIONS(9243), 1, anon_sym_RPAREN, - STATE(5526), 1, + STATE(5527), 1, sym_comment, - [186779] = 7, + [186898] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(7082), 1, + ACTIONS(7093), 1, anon_sym_LT, - STATE(3767), 1, + STATE(3779), 1, sym_arguments, - STATE(3893), 1, + STATE(3800), 1, sym_type_arguments, - STATE(5527), 1, + STATE(5528), 1, sym_comment, - [186801] = 7, + [186920] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(9245), 1, + anon_sym_RPAREN, + STATE(5529), 1, + sym_comment, + [186942] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, + ACTIONS(2794), 1, anon_sym_AT, - ACTIONS(9236), 1, + ACTIONS(9247), 1, anon_sym_export, - STATE(4678), 1, + STATE(4674), 1, aux_sym_export_statement_repeat1, - STATE(5528), 1, + STATE(5530), 1, sym_comment, - STATE(5599), 1, + STATE(5601), 1, sym_decorator, - [186823] = 6, + [186964] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9184), 1, + ACTIONS(9195), 1, anon_sym_COMMA, - STATE(5500), 1, + STATE(5502), 1, aux_sym_extends_clause_repeat1, - STATE(5529), 1, + STATE(5531), 1, sym_comment, - ACTIONS(9238), 2, + ACTIONS(9249), 2, anon_sym_LBRACE, anon_sym_implements, - [186843] = 4, + [186984] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5530), 1, + STATE(5532), 1, sym_comment, - ACTIONS(6863), 4, + ACTIONS(6865), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [186859] = 7, + [187000] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, + ACTIONS(4936), 1, anon_sym_LPAREN, - ACTIONS(9240), 1, + ACTIONS(9251), 1, anon_sym_LT, - STATE(2347), 1, + STATE(2411), 1, sym_type_arguments, - STATE(2349), 1, + STATE(2412), 1, sym_arguments, - STATE(5531), 1, + STATE(5533), 1, sym_comment, - [186881] = 7, + [187022] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8081), 1, + ACTIONS(7989), 1, anon_sym_DOT, - ACTIONS(9242), 1, + ACTIONS(9253), 1, anon_sym_COMMA, - ACTIONS(9244), 1, + ACTIONS(9255), 1, anon_sym_GT, - STATE(5532), 1, + STATE(5534), 1, sym_comment, - STATE(5920), 1, + STATE(5922), 1, aux_sym_type_arguments_repeat1, - [186903] = 5, + [187044] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9246), 1, + ACTIONS(9257), 1, anon_sym_SQUOTE, - ACTIONS(9248), 2, + ACTIONS(9259), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - STATE(5533), 2, + STATE(5535), 2, sym_comment, aux_sym_string_repeat2, - [186921] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - STATE(5502), 1, - aux_sym_variable_declaration_repeat1, - STATE(5534), 1, - sym_comment, - ACTIONS(9251), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186941] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - STATE(5502), 1, - aux_sym_variable_declaration_repeat1, - STATE(5535), 1, - sym_comment, - ACTIONS(9253), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186961] = 5, + [187062] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9255), 1, + ACTIONS(9262), 1, anon_sym_DQUOTE, - ACTIONS(9257), 2, + ACTIONS(9264), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, STATE(5536), 2, sym_comment, aux_sym_string_repeat1, - [186979] = 7, + [187080] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, - anon_sym_with, - ACTIONS(9260), 1, - anon_sym_SEMI, - ACTIONS(9262), 1, - sym__automatic_semicolon, + ACTIONS(8067), 1, + anon_sym_EQ, STATE(5537), 1, sym_comment, - STATE(6854), 1, - sym_import_attribute, - [187001] = 6, + STATE(6939), 1, + sym__initializer, + ACTIONS(9267), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [187100] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8037), 1, - anon_sym_EQ, + ACTIONS(8976), 1, + anon_sym_COMMA, + STATE(5505), 1, + aux_sym_variable_declaration_repeat1, STATE(5538), 1, sym_comment, - STATE(6937), 1, - sym__initializer, - ACTIONS(9264), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [187021] = 6, + ACTIONS(9269), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187120] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, - anon_sym_with, + ACTIONS(8976), 1, + anon_sym_COMMA, + STATE(5505), 1, + aux_sym_variable_declaration_repeat1, STATE(5539), 1, sym_comment, - STATE(6843), 1, - sym_import_attribute, - ACTIONS(9266), 2, + ACTIONS(9271), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187041] = 6, + [187140] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, + ACTIONS(9273), 1, + anon_sym_SEMI, + ACTIONS(9275), 1, + sym__automatic_semicolon, STATE(5540), 1, sym_comment, - STATE(6842), 1, + STATE(6869), 1, sym_import_attribute, - ACTIONS(9268), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187061] = 6, + [187162] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9270), 1, - anon_sym_STAR, - ACTIONS(9272), 1, - anon_sym_LBRACE, + ACTIONS(9038), 1, + anon_sym_with, STATE(5541), 1, sym_comment, - STATE(6969), 2, - sym_namespace_import, - sym_named_imports, - [187081] = 6, + STATE(6857), 1, + sym_import_attribute, + ACTIONS(9277), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187182] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, + ACTIONS(8976), 1, + anon_sym_COMMA, + STATE(5505), 1, + aux_sym_variable_declaration_repeat1, STATE(5542), 1, sym_comment, - STATE(6810), 1, - sym__from_clause, - ACTIONS(5847), 2, + ACTIONS(9279), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187101] = 6, + [187202] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_COMMA, - STATE(5502), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(9038), 1, + anon_sym_with, STATE(5543), 1, sym_comment, - ACTIONS(9274), 2, + STATE(6856), 1, + sym_import_attribute, + ACTIONS(9281), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187121] = 6, + [187222] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5502), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, STATE(5544), 1, sym_comment, - ACTIONS(9276), 2, + ACTIONS(9283), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187141] = 7, + [187242] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, - anon_sym_with, - ACTIONS(9278), 1, - anon_sym_SEMI, - ACTIONS(9280), 1, - sym__automatic_semicolon, + ACTIONS(8980), 1, + anon_sym_from, STATE(5545), 1, sym_comment, - STATE(6894), 1, - sym_import_attribute, - [187163] = 7, + STATE(6836), 1, + sym__from_clause, + ACTIONS(5877), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187262] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8081), 1, + ACTIONS(9285), 1, + anon_sym_STAR, + ACTIONS(9287), 1, + anon_sym_LBRACE, + STATE(5546), 1, + sym_comment, + STATE(6968), 2, + sym_namespace_import, + sym_named_imports, + [187282] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7989), 1, anon_sym_DOT, - ACTIONS(9282), 1, + ACTIONS(9289), 1, anon_sym_COMMA, - ACTIONS(9284), 1, + ACTIONS(9291), 1, anon_sym_GT, - STATE(5546), 1, + STATE(5547), 1, sym_comment, - STATE(5828), 1, + STATE(5832), 1, aux_sym_type_arguments_repeat1, - [187185] = 6, + [187304] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5547), 1, + ACTIONS(9293), 1, + anon_sym_SEMI, + ACTIONS(9295), 1, + sym__automatic_semicolon, + STATE(5548), 1, sym_comment, - STATE(6857), 1, + STATE(6902), 1, + sym_import_attribute, + [187326] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9038), 1, + anon_sym_with, + STATE(5549), 1, + sym_comment, + STATE(6867), 1, sym_import_attribute, - ACTIONS(9286), 2, + ACTIONS(9297), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187205] = 6, + [187346] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5548), 1, + STATE(5550), 1, sym_comment, - STATE(6856), 1, + STATE(6861), 1, sym_import_attribute, - ACTIONS(9288), 2, + ACTIONS(9299), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187225] = 6, + [187366] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9290), 1, + ACTIONS(9301), 1, anon_sym_SQUOTE, - STATE(5533), 1, + STATE(5535), 1, aux_sym_string_repeat2, - STATE(5549), 1, + STATE(5551), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187245] = 6, + [187386] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9290), 1, + ACTIONS(9301), 1, anon_sym_DQUOTE, STATE(5536), 1, aux_sym_string_repeat1, - STATE(5550), 1, + STATE(5552), 1, sym_comment, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187265] = 7, + [187406] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9292), 1, + ACTIONS(9303), 1, anon_sym_EQ, - ACTIONS(9294), 1, + ACTIONS(9305), 1, anon_sym_COMMA, - ACTIONS(9296), 1, + ACTIONS(9307), 1, anon_sym_RBRACK, - STATE(5551), 1, + STATE(5553), 1, sym_comment, - STATE(5893), 1, + STATE(5894), 1, aux_sym_array_pattern_repeat1, - [187287] = 5, + [187428] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9309), 1, + anon_sym_SQUOTE, + STATE(5535), 1, + aux_sym_string_repeat2, + STATE(5554), 1, + sym_comment, + ACTIONS(8968), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [187448] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9298), 1, + ACTIONS(9311), 1, anon_sym_EQ_GT, - STATE(5552), 1, + STATE(5555), 1, sym_comment, - ACTIONS(4642), 3, + ACTIONS(4649), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [187305] = 5, + [187466] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9309), 1, + anon_sym_DQUOTE, + STATE(5536), 1, + aux_sym_string_repeat1, + STATE(5556), 1, + sym_comment, + ACTIONS(8970), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [187486] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9300), 1, + ACTIONS(9313), 1, anon_sym_EQ_GT, - STATE(5553), 1, + STATE(5557), 1, sym_comment, - ACTIONS(4642), 3, + ACTIONS(4649), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [187323] = 7, + [187504] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - ACTIONS(9302), 1, + ACTIONS(9315), 1, anon_sym_SEMI, - ACTIONS(9304), 1, + ACTIONS(9317), 1, sym__automatic_semicolon, - STATE(5554), 1, + STATE(5558), 1, sym_comment, - STATE(6345), 1, + STATE(6362), 1, sym_import_attribute, - [187345] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9306), 1, - anon_sym_SQUOTE, - STATE(5533), 1, - aux_sym_string_repeat2, - STATE(5555), 1, - sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [187365] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9306), 1, - anon_sym_DQUOTE, - STATE(5536), 1, - aux_sym_string_repeat1, - STATE(5556), 1, - sym_comment, - ACTIONS(8971), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [187385] = 7, + [187526] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(7274), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(5557), 1, + STATE(5559), 1, sym_comment, - STATE(6695), 1, + STATE(6700), 1, sym_type_parameters, - STATE(7113), 1, + STATE(7116), 1, sym_formal_parameters, - [187407] = 4, + [187548] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5558), 1, + STATE(5560), 1, sym_comment, - ACTIONS(9308), 4, + ACTIONS(9319), 4, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, - [187423] = 6, + [187564] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5534), 1, + STATE(5538), 1, aux_sym_variable_declaration_repeat1, - STATE(5559), 1, + STATE(5561), 1, sym_comment, - ACTIONS(9310), 2, + ACTIONS(9321), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187443] = 6, + [187584] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5535), 1, + STATE(5539), 1, aux_sym_variable_declaration_repeat1, - STATE(5560), 1, + STATE(5562), 1, sym_comment, - ACTIONS(9312), 2, + ACTIONS(9323), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187463] = 6, + [187604] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5561), 1, + ACTIONS(9038), 1, + anon_sym_with, + STATE(5563), 1, sym_comment, - STATE(6769), 1, - sym__from_clause, - ACTIONS(5708), 2, + STATE(6732), 1, + sym_import_attribute, + ACTIONS(9325), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187483] = 6, + [187624] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, - anon_sym_with, - STATE(5562), 1, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5564), 1, sym_comment, - STATE(6701), 1, - sym_import_attribute, - ACTIONS(9314), 2, + STATE(6933), 1, + sym__from_clause, + ACTIONS(5721), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187503] = 6, + [187644] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5563), 1, + STATE(5565), 1, sym_comment, - STATE(6696), 1, + STATE(6719), 1, sym_import_attribute, - ACTIONS(9316), 2, + ACTIONS(9327), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187523] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9001), 1, - sym__glimmer_template_content, - ACTIONS(9318), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3019), 1, - sym_glimmer_closing_tag, - STATE(5564), 1, - sym_comment, - STATE(5818), 1, - aux_sym_glimmer_template_repeat1, - [187545] = 6, + [187664] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5506), 1, + STATE(5508), 1, aux_sym_variable_declaration_repeat1, - STATE(5565), 1, + STATE(5566), 1, sym_comment, - ACTIONS(9320), 2, + ACTIONS(9329), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187565] = 6, + [187684] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5507), 1, + STATE(5509), 1, aux_sym_variable_declaration_repeat1, - STATE(5566), 1, + STATE(5567), 1, sym_comment, - ACTIONS(9322), 2, + ACTIONS(9331), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187585] = 6, + [187704] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5567), 1, + ACTIONS(9038), 1, + anon_sym_with, + STATE(5568), 1, sym_comment, - STATE(6639), 1, - sym__from_clause, - ACTIONS(9324), 2, + STATE(6859), 1, + sym_import_attribute, + ACTIONS(9333), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187605] = 6, + [187724] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, - anon_sym_with, - STATE(5568), 1, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5569), 1, sym_comment, - STATE(6851), 1, - sym_import_attribute, - ACTIONS(9326), 2, + STATE(6690), 1, + sym__from_clause, + ACTIONS(9335), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187625] = 6, + [187744] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5569), 1, + STATE(5570), 1, sym_comment, - STATE(6850), 1, + STATE(6855), 1, sym_import_attribute, - ACTIONS(9328), 2, + ACTIONS(9337), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187645] = 6, + [187764] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9012), 1, + sym__glimmer_template_content, + ACTIONS(9339), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3014), 1, + sym_glimmer_closing_tag, + STATE(5571), 1, + sym_comment, + STATE(5819), 1, + aux_sym_glimmer_template_repeat1, + [187786] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5421), 1, + ACTIONS(5553), 1, anon_sym_COMMA, - STATE(5517), 1, + STATE(5518), 1, aux_sym_sequence_expression_repeat1, - STATE(5570), 1, + STATE(5572), 1, sym_comment, - ACTIONS(8665), 2, + ACTIONS(8674), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187665] = 6, + [187806] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(5446), 1, anon_sym_LPAREN, - ACTIONS(5465), 1, + ACTIONS(5484), 1, anon_sym_BQUOTE, - STATE(5571), 1, + STATE(5573), 1, sym_comment, - STATE(3071), 2, + STATE(3055), 2, sym_template_string, sym_arguments, - [187685] = 4, + [187826] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5572), 1, + STATE(5574), 1, sym_comment, - ACTIONS(7731), 4, + ACTIONS(7762), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [187701] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5573), 1, - sym_comment, - ACTIONS(9157), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [187717] = 6, + [187842] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - STATE(5574), 1, + STATE(5575), 1, sym_comment, - STATE(6824), 1, + STATE(6828), 1, sym__from_clause, - ACTIONS(9330), 2, + ACTIONS(9341), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187737] = 6, + [187862] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9332), 1, + ACTIONS(9343), 1, anon_sym_SQUOTE, - STATE(5555), 1, + STATE(5554), 1, aux_sym_string_repeat2, - STATE(5575), 1, + STATE(5576), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187757] = 6, + [187882] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9332), 1, + ACTIONS(9343), 1, anon_sym_DQUOTE, STATE(5556), 1, aux_sym_string_repeat1, - STATE(5576), 1, + STATE(5577), 1, sym_comment, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187777] = 7, + [187902] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8081), 1, + STATE(5578), 1, + sym_comment, + ACTIONS(9168), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [187918] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7989), 1, anon_sym_DOT, - ACTIONS(9334), 1, + ACTIONS(9345), 1, anon_sym_COMMA, - ACTIONS(9336), 1, + ACTIONS(9347), 1, anon_sym_GT, - STATE(5577), 1, + STATE(5579), 1, sym_comment, - STATE(5800), 1, + STATE(5801), 1, aux_sym_type_arguments_repeat1, - [187799] = 6, + [187940] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9338), 1, - anon_sym_SQUOTE, - STATE(5533), 1, - aux_sym_string_repeat2, - STATE(5578), 1, + ACTIONS(9012), 1, + sym__glimmer_template_content, + ACTIONS(9014), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2528), 1, + sym_glimmer_closing_tag, + STATE(5400), 1, + aux_sym_glimmer_template_repeat1, + STATE(5580), 1, sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [187819] = 7, + [187962] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9001), 1, - sym__glimmer_template_content, - ACTIONS(9003), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2556), 1, - sym_glimmer_closing_tag, - STATE(5398), 1, - aux_sym_glimmer_template_repeat1, - STATE(5579), 1, + ACTIONS(9349), 1, + anon_sym_SQUOTE, + STATE(5535), 1, + aux_sym_string_repeat2, + STATE(5581), 1, sym_comment, - [187841] = 6, + ACTIONS(8968), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [187982] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9338), 1, + ACTIONS(9349), 1, anon_sym_DQUOTE, STATE(5536), 1, aux_sym_string_repeat1, - STATE(5580), 1, + STATE(5582), 1, sym_comment, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187861] = 6, + [188002] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9340), 1, + ACTIONS(9351), 1, anon_sym_SQUOTE, - STATE(5549), 1, + STATE(5551), 1, aux_sym_string_repeat2, - STATE(5581), 1, + STATE(5583), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187881] = 6, + [188022] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9340), 1, + ACTIONS(9351), 1, anon_sym_DQUOTE, - STATE(5550), 1, + STATE(5552), 1, aux_sym_string_repeat1, - STATE(5582), 1, + STATE(5584), 1, sym_comment, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187901] = 7, + [188042] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9292), 1, + ACTIONS(9303), 1, anon_sym_EQ, - ACTIONS(9294), 1, + ACTIONS(9305), 1, anon_sym_COMMA, - ACTIONS(9342), 1, + ACTIONS(9353), 1, anon_sym_RBRACK, - STATE(5583), 1, + STATE(5585), 1, sym_comment, - STATE(5777), 1, + STATE(5775), 1, aux_sym_array_pattern_repeat1, - [187923] = 7, + [188064] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9344), 1, + ACTIONS(9355), 1, anon_sym_QMARK, - STATE(5584), 1, + STATE(5586), 1, sym_comment, - [187945] = 6, + [188086] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5543), 1, + STATE(5542), 1, aux_sym_variable_declaration_repeat1, - STATE(5585), 1, + STATE(5587), 1, sym_comment, - ACTIONS(9346), 2, + ACTIONS(9357), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187965] = 6, + [188106] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8976), 1, anon_sym_COMMA, STATE(5544), 1, aux_sym_variable_declaration_repeat1, - STATE(5586), 1, + STATE(5588), 1, sym_comment, - ACTIONS(9348), 2, + ACTIONS(9359), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187985] = 6, + [188126] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(5587), 1, + STATE(5589), 1, sym_comment, - STATE(6408), 1, + STATE(6420), 1, sym_statement_block, - ACTIONS(2128), 2, + ACTIONS(2145), 2, anon_sym_else, anon_sym_while, - [188005] = 6, + [188146] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5588), 1, + STATE(5590), 1, sym_comment, - STATE(6587), 1, + STATE(6603), 1, sym_import_attribute, - ACTIONS(9350), 2, + ACTIONS(9361), 2, sym__automatic_semicolon, anon_sym_SEMI, - [188025] = 4, + [188166] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5589), 1, + STATE(5591), 1, sym_comment, - ACTIONS(2252), 4, + ACTIONS(2231), 4, anon_sym_LBRACE, anon_sym_else, anon_sym_while, anon_sym_DOT, - [188041] = 4, + [188182] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5590), 1, + STATE(5592), 1, sym_comment, - ACTIONS(2154), 4, + ACTIONS(2227), 4, anon_sym_LBRACE, anon_sym_else, anon_sym_while, anon_sym_DOT, - [188057] = 7, + [188198] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, - anon_sym_AMP, - ACTIONS(7162), 1, - anon_sym_PIPE, - ACTIONS(7164), 1, - anon_sym_extends, - ACTIONS(9352), 1, - anon_sym_RBRACK, - STATE(5591), 1, + STATE(5593), 1, sym_comment, - [188079] = 6, + ACTIONS(3202), 4, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + [188214] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9029), 1, + ACTIONS(9038), 1, anon_sym_with, - STATE(5592), 1, + STATE(5594), 1, sym_comment, - STATE(6583), 1, + STATE(6610), 1, sym_import_attribute, - ACTIONS(9354), 2, + ACTIONS(9363), 2, sym__automatic_semicolon, anon_sym_SEMI, - [188099] = 7, + [188234] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9356), 1, - anon_sym_QMARK, - STATE(5593), 1, + ACTIONS(9365), 1, + anon_sym_RBRACK, + STATE(5595), 1, sym_comment, - [188121] = 7, + [188256] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(9358), 1, - anon_sym_class, - STATE(4678), 1, - aux_sym_export_statement_repeat1, - STATE(5594), 1, + ACTIONS(7175), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_PIPE, + ACTIONS(7179), 1, + anon_sym_extends, + ACTIONS(9367), 1, + anon_sym_QMARK, + STATE(5596), 1, sym_comment, - STATE(5599), 1, - sym_decorator, - [188143] = 4, + [188278] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5595), 1, + STATE(5597), 1, sym_comment, - ACTIONS(3207), 4, + ACTIONS(3188), 4, sym__automatic_semicolon, anon_sym_else, anon_sym_while, anon_sym_SEMI, - [188159] = 4, + [188294] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5596), 1, + ACTIONS(2794), 1, + anon_sym_AT, + ACTIONS(9369), 1, + anon_sym_class, + STATE(4674), 1, + aux_sym_export_statement_repeat1, + STATE(5598), 1, sym_comment, - ACTIONS(3165), 4, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - [188175] = 7, + STATE(5601), 1, + sym_decorator, + [188316] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9360), 1, + ACTIONS(9371), 1, anon_sym_QMARK, - STATE(5597), 1, + STATE(5599), 1, sym_comment, - [188197] = 6, + [188338] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - STATE(5598), 1, + STATE(5600), 1, sym_comment, - STATE(6531), 1, + STATE(6539), 1, sym__from_clause, - ACTIONS(9362), 2, + ACTIONS(9373), 2, sym__automatic_semicolon, anon_sym_SEMI, - [188217] = 4, + [188358] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5599), 1, + STATE(5601), 1, sym_comment, - ACTIONS(9364), 4, + ACTIONS(9375), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [188233] = 7, + [188374] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, - ACTIONS(9366), 1, + ACTIONS(9377), 1, anon_sym_COLON, - STATE(5600), 1, + STATE(5602), 1, sym_comment, - [188255] = 7, + [188396] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9001), 1, + ACTIONS(9012), 1, sym__glimmer_template_content, - ACTIONS(9318), 1, + ACTIONS(9339), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(3176), 1, + STATE(3267), 1, sym_glimmer_closing_tag, - STATE(5564), 1, + STATE(5571), 1, aux_sym_glimmer_template_repeat1, - STATE(5601), 1, + STATE(5603), 1, sym_comment, - [188277] = 5, + [188418] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9368), 1, + ACTIONS(9379), 1, anon_sym_EQ, - STATE(5602), 1, + STATE(5604), 1, sym_comment, - ACTIONS(4370), 3, + ACTIONS(4378), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [188295] = 6, + [188436] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9371), 1, + ACTIONS(9382), 1, anon_sym_SQUOTE, - STATE(5578), 1, + STATE(5581), 1, aux_sym_string_repeat2, - STATE(5603), 1, + STATE(5605), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8968), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [188315] = 6, + [188456] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9371), 1, + ACTIONS(9382), 1, anon_sym_DQUOTE, - STATE(5580), 1, + STATE(5582), 1, aux_sym_string_repeat1, - STATE(5604), 1, + STATE(5606), 1, sym_comment, - ACTIONS(8971), 2, + ACTIONS(8970), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [188335] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9373), 1, - sym_identifier, - ACTIONS(9375), 1, - anon_sym_require, - STATE(5605), 1, - sym_comment, - STATE(5746), 1, - sym_nested_identifier, - [188354] = 4, + [188476] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5606), 1, - sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, + ACTIONS(9384), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188369] = 4, + ACTIONS(9386), 1, + anon_sym_RBRACE, + STATE(5607), 1, + sym_comment, + STATE(6179), 1, + aux_sym_enum_body_repeat1, + [188495] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5607), 1, + STATE(5608), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188384] = 6, + [188510] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9381), 1, + ACTIONS(9390), 1, anon_sym_LPAREN, - ACTIONS(9383), 1, + ACTIONS(9392), 1, anon_sym_await, - STATE(108), 1, + STATE(78), 1, sym__for_header, - STATE(5608), 1, + STATE(5609), 1, + sym_comment, + [188529] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5610), 1, sym_comment, - [188403] = 6, + ACTIONS(9394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188544] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9385), 1, + ACTIONS(9396), 1, sym_identifier, - ACTIONS(9387), 1, + ACTIONS(9398), 1, anon_sym_SEMI, - ACTIONS(9389), 1, + ACTIONS(9400), 1, sym__automatic_semicolon, - STATE(5609), 1, + STATE(5611), 1, sym_comment, - [188422] = 6, + [188563] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9391), 1, + ACTIONS(9402), 1, sym_identifier, - ACTIONS(9393), 1, + ACTIONS(9404), 1, anon_sym_SEMI, - ACTIONS(9395), 1, + ACTIONS(9406), 1, sym__automatic_semicolon, - STATE(5610), 1, + STATE(5612), 1, sym_comment, - [188441] = 5, + [188582] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4463), 1, + ACTIONS(4481), 1, anon_sym_LBRACE, - STATE(5611), 1, + STATE(5613), 1, sym_comment, - ACTIONS(5155), 2, + ACTIONS(5086), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188458] = 4, + [188599] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5612), 1, + STATE(5614), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188473] = 6, + [188614] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9399), 1, + ACTIONS(9410), 1, sym_identifier, - STATE(4238), 1, + STATE(4269), 1, sym_decorator_member_expression, - STATE(5572), 1, + STATE(5574), 1, sym_decorator_call_expression, - STATE(5613), 1, + STATE(5615), 1, sym_comment, - [188492] = 5, + [188633] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4465), 1, + ACTIONS(4483), 1, anon_sym_LBRACE, - STATE(5614), 1, + STATE(5616), 1, sym_comment, - ACTIONS(5265), 2, + ACTIONS(5088), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188509] = 4, + [188650] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5615), 1, + ACTIONS(4447), 1, + anon_sym_LBRACE, + STATE(5617), 1, + sym_comment, + ACTIONS(5247), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [188667] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5618), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188524] = 5, + [188682] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4467), 1, - anon_sym_LBRACE, - STATE(5616), 1, + STATE(5619), 1, sym_comment, - ACTIONS(5280), 2, + ACTIONS(9412), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [188541] = 5, + anon_sym_SEMI, + [188697] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4482), 1, + ACTIONS(4453), 1, anon_sym_LBRACE, - STATE(5617), 1, + STATE(5620), 1, sym_comment, - ACTIONS(5356), 2, + ACTIONS(5239), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188558] = 6, + [188714] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - ACTIONS(9401), 1, + ACTIONS(9414), 1, anon_sym_as, - STATE(5618), 1, + STATE(5621), 1, sym_comment, - STATE(6514), 1, + STATE(6522), 1, sym__from_clause, - [188577] = 6, + [188733] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9403), 1, + ACTIONS(9416), 1, sym_identifier, - ACTIONS(9405), 1, + ACTIONS(9418), 1, anon_sym_LBRACE, - STATE(5561), 1, + STATE(5564), 1, sym_export_clause, - STATE(5619), 1, + STATE(5622), 1, sym_comment, - [188596] = 6, + [188752] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(9407), 1, + ACTIONS(9420), 1, anon_sym_EQ, - STATE(5620), 1, + STATE(5623), 1, sym_comment, - STATE(7385), 1, + STATE(7389), 1, sym_type_parameters, - [188615] = 5, + [188771] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4484), 1, + ACTIONS(4451), 1, anon_sym_LBRACE, - STATE(5621), 1, + STATE(5624), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(5241), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188632] = 5, + [188788] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4484), 1, + ACTIONS(4451), 1, anon_sym_LBRACE, - STATE(5622), 1, + STATE(5625), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(5241), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188649] = 5, + [188805] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4486), 1, + ACTIONS(4449), 1, anon_sym_LBRACE, - STATE(5623), 1, + STATE(5626), 1, sym_comment, - ACTIONS(5278), 2, + ACTIONS(5014), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188666] = 5, + [188822] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4486), 1, + ACTIONS(4449), 1, anon_sym_LBRACE, - STATE(5624), 1, + STATE(5627), 1, sym_comment, - ACTIONS(5278), 2, + ACTIONS(5014), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188683] = 6, + [188839] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(9409), 1, + ACTIONS(9422), 1, anon_sym_EQ, - STATE(5625), 1, + STATE(5628), 1, sym_comment, - STATE(7176), 1, + STATE(7214), 1, sym_type_parameters, - [188702] = 4, + [188858] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5626), 1, - sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188717] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4492), 1, + ACTIONS(4457), 1, anon_sym_LBRACE, - STATE(5627), 1, + STATE(5629), 1, sym_comment, - ACTIONS(5320), 2, + ACTIONS(5409), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188734] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8654), 1, - anon_sym_COMMA, - ACTIONS(9413), 1, - anon_sym_RBRACE, - STATE(5628), 1, - sym_comment, - STATE(5743), 1, - aux_sym_object_pattern_repeat1, - [188753] = 4, + [188875] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5629), 1, + STATE(5630), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188768] = 6, + [188890] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9415), 1, + ACTIONS(8663), 1, anon_sym_COMMA, - ACTIONS(9417), 1, + ACTIONS(9424), 1, anon_sym_RBRACE, - STATE(5630), 1, - sym_comment, - STATE(6060), 1, - aux_sym_enum_body_repeat1, - [188787] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(5631), 1, sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188802] = 6, + STATE(5744), 1, + aux_sym_object_pattern_repeat1, + [188909] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9419), 1, + ACTIONS(8013), 1, anon_sym_COMMA, - ACTIONS(9421), 1, + ACTIONS(9426), 1, anon_sym_RBRACE, STATE(5632), 1, sym_comment, - STATE(6060), 1, - aux_sym_enum_body_repeat1, - [188821] = 6, + STATE(5746), 1, + aux_sym_object_repeat1, + [188928] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(9423), 1, - anon_sym_RBRACE, STATE(5633), 1, sym_comment, - STATE(5745), 1, - aux_sym_object_repeat1, - [188840] = 6, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188943] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8654), 1, + ACTIONS(9428), 1, anon_sym_COMMA, - ACTIONS(9413), 1, + ACTIONS(9430), 1, anon_sym_RBRACE, STATE(5634), 1, sym_comment, - STATE(5752), 1, - aux_sym_object_pattern_repeat1, - [188859] = 4, + STATE(6062), 1, + aux_sym_enum_body_repeat1, + [188962] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5635), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188874] = 5, + [188977] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9425), 1, - anon_sym_EQ, + ACTIONS(9432), 1, + anon_sym_COMMA, + ACTIONS(9434), 1, + anon_sym_RBRACE, STATE(5636), 1, sym_comment, - ACTIONS(9427), 2, - anon_sym_COMMA, - anon_sym_from, - [188891] = 6, + STATE(6062), 1, + aux_sym_enum_body_repeat1, + [188996] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(9429), 1, + ACTIONS(9436), 1, anon_sym_EQ, STATE(5637), 1, sym_comment, - STATE(7363), 1, - sym_type_parameters, - [188910] = 5, + ACTIONS(9438), 2, + anon_sym_COMMA, + anon_sym_from, + [189013] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4490), 1, - anon_sym_LBRACE, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(9440), 1, + anon_sym_EQ, STATE(5638), 1, sym_comment, - ACTIONS(5316), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [188927] = 5, + STATE(7367), 1, + sym_type_parameters, + [189032] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7907), 1, - anon_sym_DOT, + ACTIONS(4459), 1, + anon_sym_LBRACE, STATE(5639), 1, sym_comment, - ACTIONS(9431), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [188944] = 5, + ACTIONS(5407), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [189049] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, - anon_sym_LBRACE, + ACTIONS(8663), 1, + anon_sym_COMMA, + ACTIONS(9424), 1, + anon_sym_RBRACE, STATE(5640), 1, sym_comment, - ACTIONS(5284), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [188961] = 5, + STATE(5749), 1, + aux_sym_object_pattern_repeat1, + [189068] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5382), 1, + ACTIONS(5401), 1, anon_sym_LBRACE, STATE(5641), 1, sym_comment, - ACTIONS(5384), 2, + ACTIONS(5403), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188978] = 5, + [189085] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9433), 1, + ACTIONS(9442), 1, anon_sym_EQ, STATE(5642), 1, sym_comment, - ACTIONS(9427), 2, + ACTIONS(9438), 2, anon_sym_COMMA, anon_sym_from, - [188995] = 6, + [189102] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5643), 1, + sym_comment, + ACTIONS(9444), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189117] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9435), 1, + ACTIONS(5369), 1, + anon_sym_LBRACE, + STATE(5644), 1, + sym_comment, + ACTIONS(5371), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [189134] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9446), 1, anon_sym_LPAREN, - ACTIONS(9437), 1, + ACTIONS(9448), 1, anon_sym_await, - STATE(96), 1, + STATE(100), 1, sym__for_header, - STATE(5643), 1, + STATE(5645), 1, sym_comment, - [189014] = 5, + [189153] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9439), 1, + ACTIONS(9450), 1, anon_sym_EQ, - STATE(5644), 1, + STATE(5646), 1, sym_comment, - ACTIONS(9427), 2, + ACTIONS(9438), 2, anon_sym_COMMA, anon_sym_from, - [189031] = 6, + [189170] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(9441), 1, + ACTIONS(9452), 1, anon_sym_EQ, - STATE(5645), 1, + STATE(5647), 1, sym_comment, - STATE(7335), 1, + STATE(7339), 1, sym_type_parameters, - [189050] = 4, + [189189] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5646), 1, + STATE(5648), 1, sym_comment, - ACTIONS(8013), 3, + ACTIONS(8116), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [189065] = 6, + [189204] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9443), 1, + ACTIONS(9454), 1, anon_sym_COMMA, - ACTIONS(9445), 1, + ACTIONS(9456), 1, anon_sym_RPAREN, - STATE(5647), 1, + STATE(5649), 1, sym_comment, - STATE(5768), 1, + STATE(5766), 1, aux_sym_formal_parameters_repeat1, - [189084] = 6, + [189223] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9447), 1, + ACTIONS(9458), 1, sym_identifier, - ACTIONS(9449), 1, + ACTIONS(9460), 1, anon_sym_SEMI, - ACTIONS(9451), 1, + ACTIONS(9462), 1, sym__automatic_semicolon, - STATE(5648), 1, + STATE(5650), 1, sym_comment, - [189103] = 6, + [189242] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9453), 1, + ACTIONS(9464), 1, sym_identifier, - ACTIONS(9455), 1, + ACTIONS(9466), 1, anon_sym_SEMI, - ACTIONS(9457), 1, + ACTIONS(9468), 1, sym__automatic_semicolon, - STATE(5649), 1, + STATE(5651), 1, sym_comment, - [189122] = 6, + [189261] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, + ACTIONS(8013), 1, anon_sym_COMMA, - ACTIONS(9423), 1, + ACTIONS(9426), 1, anon_sym_RBRACE, - STATE(5650), 1, - sym_comment, - STATE(5749), 1, - aux_sym_object_repeat1, - [189141] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5651), 1, - sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189156] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(5652), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189171] = 6, + STATE(5748), 1, + aux_sym_object_repeat1, + [189280] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, + ACTIONS(9305), 1, anon_sym_COMMA, - ACTIONS(9342), 1, + ACTIONS(9353), 1, anon_sym_RBRACK, STATE(5653), 1, sym_comment, - STATE(5777), 1, + STATE(5775), 1, aux_sym_array_pattern_repeat1, - [189190] = 6, + [189299] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5892), 1, + ACTIONS(5931), 1, anon_sym_COMMA, - ACTIONS(6026), 1, + ACTIONS(5933), 1, anon_sym_RBRACK, STATE(5654), 1, sym_comment, - STATE(5776), 1, + STATE(5774), 1, aux_sym_array_repeat1, - [189209] = 6, + [189318] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5892), 1, - anon_sym_COMMA, - ACTIONS(6026), 1, - anon_sym_RBRACK, + ACTIONS(9470), 1, + anon_sym_EQ, STATE(5655), 1, sym_comment, - STATE(5778), 1, - aux_sym_array_repeat1, - [189228] = 4, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [189335] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5656), 1, sym_comment, - ACTIONS(9461), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189243] = 4, + [189350] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5657), 1, sym_comment, - ACTIONS(9463), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189258] = 5, + [189365] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9465), 1, - anon_sym_EQ, - STATE(5658), 1, - sym_comment, - ACTIONS(4370), 2, + ACTIONS(5931), 1, anon_sym_COMMA, + ACTIONS(5933), 1, anon_sym_RBRACK, - [189275] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(9468), 1, - anon_sym_RPAREN, - STATE(5659), 1, + STATE(5658), 1, sym_comment, - STATE(5803), 1, + STATE(5779), 1, aux_sym_array_repeat1, - [189294] = 6, + [189384] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, - anon_sym_COMMA, - ACTIONS(9342), 1, - anon_sym_RBRACK, - STATE(5660), 1, + ACTIONS(9477), 1, + anon_sym_EQ, + STATE(5659), 1, sym_comment, - STATE(5781), 1, - aux_sym_array_pattern_repeat1, - [189313] = 5, + ACTIONS(9438), 2, + anon_sym_COMMA, + anon_sym_from, + [189401] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9470), 1, - anon_sym_EQ, - STATE(5661), 1, + STATE(5660), 1, sym_comment, - ACTIONS(9427), 2, + ACTIONS(9479), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [189330] = 6, + anon_sym_SEMI, + [189416] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, - anon_sym_LT, - ACTIONS(9472), 1, - anon_sym_EQ, - STATE(5662), 1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(9481), 1, + anon_sym_RPAREN, + STATE(5661), 1, sym_comment, - STATE(7300), 1, - sym_type_parameters, - [189349] = 6, + STATE(5803), 1, + aux_sym_array_repeat1, + [189435] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9474), 1, + ACTIONS(9483), 1, anon_sym_COMMA, - ACTIONS(9476), 1, + ACTIONS(9485), 1, anon_sym_RBRACE, - STATE(5632), 1, + STATE(5636), 1, aux_sym_enum_body_repeat1, - STATE(5663), 1, + STATE(5662), 1, sym_comment, - [189368] = 6, + [189454] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8097), 1, - anon_sym_LBRACE, - ACTIONS(8099), 1, - anon_sym_LBRACE_PIPE, - STATE(1294), 1, - sym_object_type, - STATE(5664), 1, + ACTIONS(7273), 1, + anon_sym_LT, + ACTIONS(9487), 1, + anon_sym_EQ, + STATE(5663), 1, sym_comment, - [189387] = 4, + STATE(7304), 1, + sym_type_parameters, + [189473] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5665), 1, - sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, + ACTIONS(9305), 1, anon_sym_COMMA, - anon_sym_SEMI, - [189402] = 5, + ACTIONS(9353), 1, + anon_sym_RBRACK, + STATE(5664), 1, + sym_comment, + STATE(5780), 1, + aux_sym_array_pattern_repeat1, + [189492] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9478), 1, + ACTIONS(9489), 1, anon_sym_DQUOTE, - STATE(5666), 1, + STATE(5665), 1, sym_comment, - ACTIONS(9480), 2, + ACTIONS(9491), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [189419] = 4, + [189509] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7959), 1, + anon_sym_LBRACE, + ACTIONS(7965), 1, + anon_sym_LBRACE_PIPE, + STATE(1237), 1, + sym_object_type, + STATE(5666), 1, + sym_comment, + [189528] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5667), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189434] = 4, + [189543] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9493), 1, + anon_sym_SQUOTE, STATE(5668), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189449] = 4, + ACTIONS(9495), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [189560] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5669), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189464] = 4, + [189575] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5670), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189479] = 4, + [189590] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5671), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189494] = 4, + [189605] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5672), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189509] = 4, + [189620] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5673), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189524] = 4, + [189635] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5674), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189539] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [189650] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9486), 1, - anon_sym_SQUOTE, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(5675), 1, sym_comment, - ACTIONS(9488), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [189556] = 4, + ACTIONS(9499), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189665] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5676), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189571] = 4, + [189680] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5677), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189586] = 4, + [189695] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9099), 1, + sym_identifier, + ACTIONS(9101), 1, + anon_sym_const, STATE(5678), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189601] = 4, + STATE(5702), 1, + sym_type_parameter, + [189714] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7588), 1, + anon_sym_implements, + ACTIONS(9501), 1, + anon_sym_LBRACE, STATE(5679), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189616] = 4, + STATE(7134), 1, + sym_implements_clause, + [189733] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5680), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189631] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [189748] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9088), 1, - sym_identifier, - ACTIONS(9090), 1, - anon_sym_const, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(5681), 1, sym_comment, - STATE(5703), 1, - sym_type_parameter, - [189650] = 4, + ACTIONS(9497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189763] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5682), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189665] = 6, + [189778] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7579), 1, - anon_sym_implements, - ACTIONS(9490), 1, - anon_sym_LBRACE, STATE(5683), 1, sym_comment, - STATE(7131), 1, - sym_implements_clause, - [189684] = 4, + ACTIONS(9499), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189793] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(9503), 1, + anon_sym_DOT, + STATE(4358), 1, + sym_arguments, STATE(5684), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189699] = 4, + [189812] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5685), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189714] = 6, + [189827] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9492), 1, + ACTIONS(9505), 1, anon_sym_COMMA, - ACTIONS(9494), 1, + ACTIONS(9507), 1, anon_sym_RBRACK, STATE(5686), 1, sym_comment, - STATE(6001), 1, + STATE(6003), 1, aux_sym_tuple_type_repeat1, - [189733] = 4, + [189846] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5687), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189748] = 4, + [189861] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5688), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189763] = 4, + [189876] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5689), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189778] = 4, + [189891] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5690), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189793] = 4, + [189906] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5691), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189808] = 4, + [189921] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5692), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189823] = 4, + [189936] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5693), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189838] = 4, + [189951] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5694), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189853] = 4, + [189966] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5695), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189868] = 4, + [189981] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5696), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189883] = 4, + [189996] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5697), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189898] = 6, + [190011] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, - anon_sym_LPAREN, - ACTIONS(9498), 1, - anon_sym_DOT, - STATE(4368), 1, - sym_arguments, STATE(5698), 1, sym_comment, - [189917] = 4, + ACTIONS(9394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190026] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5699), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189932] = 6, + [190041] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9500), 1, - anon_sym_LPAREN, - ACTIONS(9502), 1, - anon_sym_await, - STATE(121), 1, - sym__for_header, STATE(5700), 1, sym_comment, - [189951] = 4, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190056] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5701), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189966] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8654), 1, - anon_sym_COMMA, - ACTIONS(9504), 1, - anon_sym_RBRACE, - STATE(5702), 1, - sym_comment, - STATE(5911), 1, - aux_sym_object_pattern_repeat1, - [189985] = 6, + [190071] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9506), 1, + ACTIONS(9511), 1, anon_sym_COMMA, - ACTIONS(9508), 1, + ACTIONS(9513), 1, anon_sym_GT, - STATE(5703), 1, + STATE(5702), 1, sym_comment, - STATE(5806), 1, + STATE(5807), 1, aux_sym_type_parameters_repeat1, - [190004] = 6, + [190090] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9510), 1, + ACTIONS(9515), 1, sym_identifier, - ACTIONS(9512), 1, - anon_sym_SEMI, - ACTIONS(9514), 1, - sym__automatic_semicolon, - STATE(5704), 1, + ACTIONS(9517), 1, + anon_sym_LBRACK, + ACTIONS(9519), 1, + sym_private_property_identifier, + STATE(5703), 1, sym_comment, - [190023] = 6, - ACTIONS(3), 1, + [190109] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9521), 1, + anon_sym_LPAREN, + ACTIONS(9523), 1, + anon_sym_await, + STATE(105), 1, + sym__for_header, + STATE(5704), 1, + sym_comment, + [190128] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9516), 1, - sym_identifier, - ACTIONS(9518), 1, - anon_sym_SEMI, - ACTIONS(9520), 1, - sym__automatic_semicolon, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(5705), 1, sym_comment, - [190042] = 6, + ACTIONS(9509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190143] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, + ACTIONS(8663), 1, anon_sym_COMMA, - ACTIONS(9522), 1, + ACTIONS(9525), 1, anon_sym_RBRACE, STATE(5706), 1, sym_comment, - STATE(5848), 1, - aux_sym_object_repeat1, - [190061] = 4, + STATE(5847), 1, + aux_sym_object_pattern_repeat1, + [190162] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8013), 1, + anon_sym_COMMA, + ACTIONS(9527), 1, + anon_sym_RBRACE, STATE(5707), 1, sym_comment, - ACTIONS(9496), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190076] = 4, + STATE(5848), 1, + aux_sym_object_repeat1, + [190181] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9529), 1, + sym_identifier, + ACTIONS(9531), 1, + anon_sym_SEMI, + ACTIONS(9533), 1, + sym__automatic_semicolon, STATE(5708), 1, sym_comment, - ACTIONS(9484), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190091] = 4, + [190200] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9535), 1, + sym_identifier, + ACTIONS(9537), 1, + anon_sym_SEMI, + ACTIONS(9539), 1, + sym__automatic_semicolon, STATE(5709), 1, sym_comment, - ACTIONS(9524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190106] = 6, + [190219] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9526), 1, + ACTIONS(8136), 1, sym_identifier, - ACTIONS(9528), 1, - anon_sym_LBRACK, - ACTIONS(9530), 1, - sym_private_property_identifier, STATE(5710), 1, sym_comment, - [190125] = 6, + ACTIONS(8140), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [190236] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(9522), 1, - anon_sym_RBRACE, STATE(5711), 1, sym_comment, - STATE(5749), 1, - aux_sym_object_repeat1, - [190144] = 4, + ACTIONS(9499), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190251] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8013), 1, + anon_sym_COMMA, + ACTIONS(9527), 1, + anon_sym_RBRACE, STATE(5712), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190159] = 6, + STATE(5748), 1, + aux_sym_object_repeat1, + [190270] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9532), 1, + ACTIONS(9541), 1, sym_identifier, - ACTIONS(9534), 1, + ACTIONS(9543), 1, anon_sym_LBRACK, - ACTIONS(9536), 1, + ACTIONS(9545), 1, sym_private_property_identifier, STATE(5713), 1, sym_comment, - [190178] = 5, + [190289] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8069), 1, + ACTIONS(9547), 1, sym_identifier, - STATE(5714), 1, - sym_comment, - ACTIONS(8073), 2, + ACTIONS(9549), 1, anon_sym_LBRACK, + ACTIONS(9551), 1, sym_private_property_identifier, - [190195] = 4, + STATE(5714), 1, + sym_comment, + [190308] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5715), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190210] = 6, + [190323] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8654), 1, - anon_sym_COMMA, - ACTIONS(9504), 1, - anon_sym_RBRACE, + ACTIONS(9553), 1, + sym_identifier, + ACTIONS(9555), 1, + anon_sym_LBRACK, + ACTIONS(9557), 1, + sym_private_property_identifier, STATE(5716), 1, sym_comment, - STATE(5752), 1, - aux_sym_object_pattern_repeat1, - [190229] = 4, + [190342] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5717), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190244] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190357] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9538), 1, - sym_identifier, - ACTIONS(9540), 1, - anon_sym_LBRACK, - ACTIONS(9542), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8663), 1, + anon_sym_COMMA, + ACTIONS(9525), 1, + anon_sym_RBRACE, STATE(5718), 1, sym_comment, - [190263] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5749), 1, + aux_sym_object_pattern_repeat1, + [190376] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9544), 1, - sym_identifier, - ACTIONS(9546), 1, - anon_sym_LBRACK, - ACTIONS(9548), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9559), 1, + anon_sym_DQUOTE, + ACTIONS(9561), 1, + anon_sym_SQUOTE, STATE(5719), 1, sym_comment, - [190282] = 4, + STATE(5825), 1, + sym_string, + [190395] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5720), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(9509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190297] = 6, + [190410] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9550), 1, - anon_sym_COMMA, - ACTIONS(9552), 1, - anon_sym_RPAREN, + ACTIONS(9563), 1, + sym_identifier, + ACTIONS(9565), 1, + anon_sym_LBRACK, + ACTIONS(9567), 1, + sym_private_property_identifier, STATE(5721), 1, sym_comment, - STATE(5875), 1, - aux_sym_formal_parameters_repeat1, - [190316] = 6, + [190429] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9554), 1, - anon_sym_DQUOTE, - ACTIONS(9556), 1, - anon_sym_SQUOTE, STATE(5722), 1, sym_comment, - STATE(5822), 1, - sym_string, - [190335] = 4, + ACTIONS(9509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190444] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9569), 1, + anon_sym_COMMA, + ACTIONS(9571), 1, + anon_sym_RPAREN, STATE(5723), 1, sym_comment, - ACTIONS(9484), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190350] = 4, + STATE(5872), 1, + aux_sym_formal_parameters_repeat1, + [190463] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5724), 1, sym_comment, - ACTIONS(9558), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [190365] = 4, + [190478] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5725), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [190380] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190493] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9560), 1, - sym_identifier, - ACTIONS(9562), 1, - anon_sym_LBRACK, - ACTIONS(9564), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9575), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_RBRACE, STATE(5726), 1, sym_comment, - [190399] = 6, + STATE(5836), 1, + aux_sym_export_clause_repeat1, + [190512] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9566), 1, - anon_sym_COMMA, - ACTIONS(9568), 1, - anon_sym_RBRACE, + ACTIONS(9579), 1, + anon_sym_as, STATE(5727), 1, sym_comment, - STATE(5837), 1, - aux_sym_export_clause_repeat1, - [190418] = 4, + ACTIONS(9581), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [190529] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5728), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190433] = 4, + [190544] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5729), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9583), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190448] = 4, + [190559] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5730), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190463] = 4, + [190574] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5731), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190478] = 5, + [190589] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9570), 1, - anon_sym_as, - STATE(5732), 1, - sym_comment, - ACTIONS(9572), 2, + ACTIONS(8013), 1, anon_sym_COMMA, + ACTIONS(9585), 1, anon_sym_RBRACE, - [190495] = 6, + STATE(5732), 1, + sym_comment, + STATE(5748), 1, + aux_sym_object_repeat1, + [190608] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, - anon_sym_COMMA, - ACTIONS(9296), 1, - anon_sym_RBRACK, STATE(5733), 1, sym_comment, - STATE(5893), 1, - aux_sym_array_pattern_repeat1, - [190514] = 4, + ACTIONS(9509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190623] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5734), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190529] = 4, + [190638] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5735), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190544] = 4, + [190653] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8663), 1, + anon_sym_COMMA, + ACTIONS(9587), 1, + anon_sym_RBRACE, STATE(5736), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190559] = 6, + STATE(5749), 1, + aux_sym_object_pattern_repeat1, + [190672] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(9574), 1, - anon_sym_RBRACE, STATE(5737), 1, sym_comment, - STATE(5749), 1, - aux_sym_object_repeat1, - [190578] = 6, + ACTIONS(9408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190687] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8654), 1, + ACTIONS(9305), 1, anon_sym_COMMA, - ACTIONS(9576), 1, - anon_sym_RBRACE, + ACTIONS(9307), 1, + anon_sym_RBRACK, STATE(5738), 1, sym_comment, - STATE(5752), 1, - aux_sym_object_pattern_repeat1, - [190597] = 4, + STATE(5894), 1, + aux_sym_array_pattern_repeat1, + [190706] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7910), 1, + anon_sym_DOT, STATE(5739), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9589), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [190612] = 6, + [190723] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5892), 1, - anon_sym_COMMA, - ACTIONS(5894), 1, - anon_sym_RBRACK, STATE(5740), 1, sym_comment, - STATE(5891), 1, - aux_sym_array_repeat1, - [190631] = 6, + ACTIONS(9499), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190738] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5892), 1, + ACTIONS(5931), 1, anon_sym_COMMA, - ACTIONS(5894), 1, + ACTIONS(6037), 1, anon_sym_RBRACK, STATE(5741), 1, sym_comment, - STATE(5778), 1, + STATE(5891), 1, aux_sym_array_repeat1, - [190650] = 6, + [190757] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, + ACTIONS(5931), 1, anon_sym_COMMA, - ACTIONS(9296), 1, + ACTIONS(6037), 1, anon_sym_RBRACK, STATE(5742), 1, sym_comment, - STATE(5781), 1, - aux_sym_array_pattern_repeat1, - [190669] = 6, + STATE(5779), 1, + aux_sym_array_repeat1, + [190776] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7908), 1, + anon_sym_DOT, + STATE(5743), 1, + sym_comment, + ACTIONS(9589), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [190793] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8654), 1, + ACTIONS(8663), 1, anon_sym_COMMA, - ACTIONS(9578), 1, + ACTIONS(9591), 1, anon_sym_RBRACE, - STATE(5743), 1, + STATE(5744), 1, sym_comment, - STATE(5752), 1, + STATE(5749), 1, aux_sym_object_pattern_repeat1, - [190688] = 4, + [190812] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5744), 1, + STATE(5745), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190703] = 6, + [190827] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, + ACTIONS(8013), 1, anon_sym_COMMA, - ACTIONS(9580), 1, + ACTIONS(9593), 1, anon_sym_RBRACE, - STATE(5745), 1, + STATE(5746), 1, sym_comment, - STATE(5749), 1, + STATE(5748), 1, aux_sym_object_repeat1, - [190722] = 5, + [190846] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7909), 1, - anon_sym_DOT, - STATE(5746), 1, - sym_comment, - ACTIONS(9431), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [190739] = 6, - ACTIONS(3), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9582), 1, - sym_identifier, - STATE(1951), 1, - sym_decorator_member_expression, - STATE(2083), 1, - sym_decorator_call_expression, + ACTIONS(9305), 1, + anon_sym_COMMA, + ACTIONS(9307), 1, + anon_sym_RBRACK, STATE(5747), 1, sym_comment, - [190758] = 4, + STATE(5780), 1, + aux_sym_array_pattern_repeat1, + [190865] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5748), 1, - sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, + ACTIONS(9595), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190773] = 5, + ACTIONS(9598), 1, + anon_sym_RBRACE, + STATE(5748), 2, + sym_comment, + aux_sym_object_repeat1, + [190882] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9584), 1, + ACTIONS(9600), 1, anon_sym_COMMA, - ACTIONS(9587), 1, + ACTIONS(9603), 1, anon_sym_RBRACE, STATE(5749), 2, sym_comment, - aux_sym_object_repeat1, - [190790] = 4, + aux_sym_object_pattern_repeat1, + [190899] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5750), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190805] = 4, + [190914] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9605), 1, + sym_identifier, + STATE(1920), 1, + sym_decorator_member_expression, + STATE(2011), 1, + sym_decorator_call_expression, STATE(5751), 1, sym_comment, - ACTIONS(9484), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190820] = 5, + [190933] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9589), 1, + STATE(5752), 1, + sym_comment, + ACTIONS(9607), 3, anon_sym_COMMA, - ACTIONS(9592), 1, anon_sym_RBRACE, - STATE(5752), 2, - sym_comment, - aux_sym_object_pattern_repeat1, - [190837] = 4, + anon_sym_from, + [190948] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5753), 1, sym_comment, - ACTIONS(9594), 3, + ACTIONS(9394), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [190852] = 5, + anon_sym_SEMI, + [190963] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9596), 1, - anon_sym_EQ, STATE(5754), 1, sym_comment, - ACTIONS(9427), 2, + ACTIONS(9499), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [190869] = 5, + anon_sym_SEMI, + [190978] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9308), 1, - anon_sym_as, STATE(5755), 1, sym_comment, - ACTIONS(9427), 2, + ACTIONS(9408), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [190886] = 4, + anon_sym_SEMI, + [190993] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9609), 1, + anon_sym_EQ, STATE(5756), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, + ACTIONS(9438), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190901] = 6, + anon_sym_from, + [191010] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9598), 1, - anon_sym_COMMA, - ACTIONS(9600), 1, - anon_sym_RBRACE, + ACTIONS(9319), 1, + anon_sym_as, STATE(5757), 1, sym_comment, - STATE(5865), 1, - aux_sym_named_imports_repeat1, - [190920] = 4, + ACTIONS(9438), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [191027] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9611), 1, + anon_sym_COMMA, + ACTIONS(9613), 1, + anon_sym_RBRACE, STATE(5758), 1, sym_comment, - ACTIONS(9397), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190935] = 4, + STATE(5865), 1, + aux_sym_named_imports_repeat1, + [191046] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5759), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190950] = 6, + [191061] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9375), 1, - anon_sym_require, - ACTIONS(9602), 1, + ACTIONS(9615), 1, sym_identifier, + ACTIONS(9617), 1, + anon_sym_require, STATE(5760), 1, sym_comment, - STATE(5868), 1, + STATE(5871), 1, sym_nested_identifier, - [190969] = 4, + [191080] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5761), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(8788), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190984] = 4, + [191095] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5762), 1, sym_comment, - ACTIONS(8779), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190999] = 4, + [191110] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5763), 1, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8788), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191014] = 5, + [191125] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9604), 1, - anon_sym_EQ, STATE(5764), 1, sym_comment, - ACTIONS(4442), 2, - anon_sym_in, - anon_sym_of, - [191031] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5765), 1, - sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191046] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5766), 1, - sym_comment, - ACTIONS(9482), 3, + ACTIONS(9509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191061] = 4, + [191140] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5767), 1, + STATE(5765), 1, sym_comment, - ACTIONS(7999), 3, + ACTIONS(8091), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [191076] = 6, + [191155] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9606), 1, + ACTIONS(9619), 1, anon_sym_COMMA, - ACTIONS(9608), 1, + ACTIONS(9621), 1, anon_sym_RPAREN, - STATE(5768), 1, + STATE(5766), 1, sym_comment, - STATE(5896), 1, + STATE(5903), 1, aux_sym_formal_parameters_repeat1, - [191095] = 6, + [191174] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4250), 1, + ACTIONS(4283), 1, anon_sym_LPAREN, - ACTIONS(9610), 1, + ACTIONS(9623), 1, anon_sym_DOT, - STATE(4356), 1, + STATE(4375), 1, sym_arguments, - STATE(5769), 1, + STATE(5767), 1, sym_comment, - [191114] = 6, + [191193] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9612), 1, - anon_sym_LBRACE, - ACTIONS(9614), 1, - anon_sym_LPAREN, - STATE(1335), 1, - sym_statement_block, - STATE(5770), 1, + STATE(5768), 1, sym_comment, - [191133] = 4, + ACTIONS(9497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191208] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5771), 1, + STATE(5769), 1, sym_comment, - ACTIONS(6205), 3, + ACTIONS(9497), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [191148] = 4, + anon_sym_SEMI, + [191223] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5772), 1, + STATE(5770), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191163] = 5, + [191238] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9292), 1, - anon_sym_EQ, - STATE(5773), 1, + ACTIONS(9625), 1, + anon_sym_LBRACE, + ACTIONS(9627), 1, + anon_sym_LPAREN, + STATE(1246), 1, + sym_statement_block, + STATE(5771), 1, sym_comment, - ACTIONS(9616), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191180] = 4, + [191257] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5774), 1, + STATE(5772), 1, sym_comment, - ACTIONS(9397), 3, - sym__automatic_semicolon, + ACTIONS(6123), 3, anon_sym_COMMA, - anon_sym_SEMI, - [191195] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + [191272] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5775), 1, + ACTIONS(9303), 1, + anon_sym_EQ, + STATE(5773), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, + ACTIONS(9629), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191210] = 6, + anon_sym_RBRACK, + [191289] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5892), 1, + ACTIONS(5931), 1, anon_sym_COMMA, - ACTIONS(9618), 1, + ACTIONS(9631), 1, anon_sym_RBRACK, - STATE(5776), 1, + STATE(5774), 1, sym_comment, - STATE(5778), 1, + STATE(5779), 1, aux_sym_array_repeat1, - [191229] = 6, + [191308] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, + ACTIONS(9305), 1, anon_sym_COMMA, - ACTIONS(9620), 1, + ACTIONS(9633), 1, anon_sym_RBRACK, - STATE(5777), 1, + STATE(5775), 1, sym_comment, - STATE(5781), 1, + STATE(5780), 1, aux_sym_array_pattern_repeat1, - [191248] = 5, + [191327] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6205), 1, - anon_sym_RBRACK, - ACTIONS(9622), 1, - anon_sym_COMMA, - STATE(5778), 2, + STATE(5776), 1, sym_comment, - aux_sym_array_repeat1, - [191265] = 4, + ACTIONS(9497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191342] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5779), 1, + STATE(5777), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191280] = 4, + [191357] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5780), 1, + STATE(5778), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191295] = 5, + [191372] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9616), 1, + ACTIONS(6123), 1, anon_sym_RBRACK, - ACTIONS(9625), 1, + ACTIONS(9635), 1, + anon_sym_COMMA, + STATE(5779), 2, + sym_comment, + aux_sym_array_repeat1, + [191389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9629), 1, + anon_sym_RBRACK, + ACTIONS(9638), 1, anon_sym_COMMA, - STATE(5781), 2, + STATE(5780), 2, sym_comment, aux_sym_array_pattern_repeat1, - [191312] = 4, + [191406] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5781), 1, + sym_comment, + ACTIONS(9394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191421] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5782), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(6865), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191327] = 4, + [191436] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5783), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191342] = 4, + [191451] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5784), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191357] = 4, + [191466] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9641), 1, + anon_sym_COMMA, + ACTIONS(9643), 1, + anon_sym_GT, STATE(5785), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191372] = 4, + STATE(5931), 1, + aux_sym_type_parameters_repeat1, + [191485] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5786), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191387] = 4, + [191500] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5787), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191402] = 6, + [191515] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(5903), 1, - anon_sym_RPAREN, STATE(5788), 1, sym_comment, - STATE(5803), 1, - aux_sym_array_repeat1, - [191421] = 4, + ACTIONS(9497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191530] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5789), 1, sym_comment, - ACTIONS(6863), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191436] = 6, + [191545] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9628), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(9630), 1, - anon_sym_GT, + ACTIONS(6023), 1, + anon_sym_RPAREN, STATE(5790), 1, sym_comment, - STATE(5930), 1, - aux_sym_type_parameters_repeat1, - [191455] = 6, + STATE(5803), 1, + aux_sym_array_repeat1, + [191564] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9632), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(9634), 1, - anon_sym_RBRACK, + ACTIONS(6023), 1, + anon_sym_RPAREN, + STATE(5661), 1, + aux_sym_array_repeat1, STATE(5791), 1, sym_comment, - STATE(5929), 1, - aux_sym_tuple_type_repeat1, - [191474] = 4, + [191583] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5792), 1, sym_comment, - ACTIONS(9636), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [191489] = 6, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191598] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(5903), 1, - anon_sym_RPAREN, - STATE(5659), 1, - aux_sym_array_repeat1, + ACTIONS(9645), 1, + anon_sym_EQ, STATE(5793), 1, sym_comment, - [191508] = 4, + ACTIONS(4474), 2, + anon_sym_in, + anon_sym_of, + [191615] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9647), 1, + anon_sym_COMMA, + ACTIONS(9649), 1, + anon_sym_RBRACK, STATE(5794), 1, sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191523] = 4, + STATE(5929), 1, + aux_sym_tuple_type_repeat1, + [191634] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5795), 1, sym_comment, - ACTIONS(9397), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191538] = 6, + ACTIONS(9651), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [191649] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7148), 1, + ACTIONS(7175), 1, anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(7177), 1, anon_sym_PIPE, - ACTIONS(7164), 1, + ACTIONS(7179), 1, anon_sym_extends, STATE(5796), 1, sym_comment, - [191557] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [191668] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9638), 1, - sym_identifier, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(9642), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(5797), 1, sym_comment, - [191576] = 6, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191683] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8097), 1, - anon_sym_LBRACE, - ACTIONS(8099), 1, - anon_sym_LBRACE_PIPE, - STATE(1347), 1, - sym_object_type, STATE(5798), 1, sym_comment, - [191595] = 6, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191698] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9644), 1, - anon_sym_COMMA, - ACTIONS(9646), 1, - anon_sym_GT, + ACTIONS(7959), 1, + anon_sym_LBRACE, + ACTIONS(7965), 1, + anon_sym_LBRACE_PIPE, + STATE(1296), 1, + sym_object_type, STATE(5799), 1, sym_comment, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - [191614] = 6, + [191717] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9648), 1, + ACTIONS(9653), 1, anon_sym_COMMA, - ACTIONS(9650), 1, + ACTIONS(9655), 1, anon_sym_GT, STATE(5800), 1, sym_comment, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, - [191633] = 4, + [191736] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9657), 1, + anon_sym_COMMA, + ACTIONS(9659), 1, + anon_sym_GT, STATE(5801), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191648] = 6, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, + [191755] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9652), 1, - anon_sym_COMMA, - ACTIONS(9654), 1, - anon_sym_GT, STATE(5802), 1, sym_comment, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - [191667] = 5, + ACTIONS(9408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191770] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6205), 1, + ACTIONS(6123), 1, anon_sym_RPAREN, - ACTIONS(9656), 1, + ACTIONS(9661), 1, anon_sym_COMMA, STATE(5803), 2, sym_comment, aux_sym_array_repeat1, - [191684] = 6, + [191787] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9659), 1, - anon_sym_LBRACE, - ACTIONS(9661), 1, - anon_sym_LPAREN, - STATE(1046), 1, - sym_statement_block, + ACTIONS(9664), 1, + anon_sym_COMMA, + ACTIONS(9666), 1, + anon_sym_GT, STATE(5804), 1, sym_comment, - [191703] = 4, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, + [191806] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9668), 1, + sym_identifier, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9672), 1, + sym_private_property_identifier, STATE(5805), 1, sym_comment, - ACTIONS(3455), 3, + [191825] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5806), 1, + sym_comment, + ACTIONS(3382), 3, anon_sym_else, anon_sym_while, anon_sym_finally, - [191718] = 6, + [191840] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9663), 1, + ACTIONS(9674), 1, anon_sym_COMMA, - ACTIONS(9665), 1, + ACTIONS(9676), 1, anon_sym_GT, - STATE(5806), 1, + STATE(5807), 1, sym_comment, - STATE(5936), 1, + STATE(5938), 1, aux_sym_type_parameters_repeat1, - [191737] = 6, + [191859] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9678), 1, + anon_sym_LBRACE, + ACTIONS(9680), 1, + anon_sym_LPAREN, + STATE(1111), 1, + sym_statement_block, + STATE(5808), 1, + sym_comment, + [191878] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8145), 1, + ACTIONS(8144), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, + ACTIONS(8146), 1, anon_sym_LBRACE_PIPE, - STATE(1505), 1, + STATE(1580), 1, sym_object_type, - STATE(5807), 1, + STATE(5809), 1, sym_comment, - [191756] = 4, + [191897] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5808), 1, + STATE(5810), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191771] = 6, + [191912] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(5918), 1, + ACTIONS(5970), 1, anon_sym_RPAREN, - STATE(5809), 1, + STATE(5811), 1, sym_comment, - STATE(5941), 1, + STATE(5942), 1, aux_sym_array_repeat1, - [191790] = 4, + [191931] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5810), 1, + STATE(5812), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191805] = 4, + [191946] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5811), 1, - sym_comment, - ACTIONS(9397), 3, - sym__automatic_semicolon, + ACTIONS(5935), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191820] = 6, + ACTIONS(5970), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, + STATE(5813), 1, + sym_comment, + [191965] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9667), 1, + ACTIONS(9682), 1, anon_sym_COMMA, - ACTIONS(9669), 1, + ACTIONS(9684), 1, anon_sym_GT, - STATE(5812), 1, + STATE(5814), 1, sym_comment, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, - [191839] = 4, + [191984] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5813), 1, + STATE(5815), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191854] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9671), 1, - anon_sym_COMMA, - ACTIONS(9673), 1, - anon_sym_GT, - STATE(5814), 1, - sym_comment, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - [191873] = 4, + [191999] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5815), 1, + STATE(5816), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191888] = 6, + [192014] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, + ACTIONS(9686), 1, anon_sym_COMMA, - ACTIONS(5918), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, - STATE(5816), 1, + ACTIONS(9688), 1, + anon_sym_GT, + STATE(5817), 1, sym_comment, - [191907] = 4, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, + [192033] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5817), 1, + STATE(5818), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191922] = 5, + [192048] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9675), 1, + ACTIONS(9690), 1, sym__glimmer_template_content, - ACTIONS(9678), 1, + ACTIONS(9693), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(5818), 2, + STATE(5819), 2, sym_comment, aux_sym_glimmer_template_repeat1, - [191939] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9680), 1, - anon_sym_COMMA, - ACTIONS(9682), 1, - anon_sym_RBRACK, - STATE(5819), 1, - sym_comment, - STATE(5877), 1, - aux_sym_tuple_type_repeat1, - [191958] = 5, + [192065] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9684), 1, - anon_sym_EQ, STATE(5820), 1, sym_comment, - ACTIONS(9427), 2, + ACTIONS(9509), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [191975] = 6, + anon_sym_SEMI, + [192080] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9686), 1, + ACTIONS(9695), 1, anon_sym_COMMA, - ACTIONS(9688), 1, + ACTIONS(9697), 1, anon_sym_GT, STATE(5821), 1, sym_comment, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, - [191994] = 4, + [192099] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9699), 1, + anon_sym_EQ, STATE(5822), 1, sym_comment, - ACTIONS(9690), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [192009] = 6, + ACTIONS(9438), 2, + anon_sym_COMMA, + anon_sym_from, + [192116] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, - anon_sym_extends, - ACTIONS(9692), 1, - anon_sym_AMP, - ACTIONS(9694), 1, - anon_sym_PIPE, + ACTIONS(9701), 1, + anon_sym_COMMA, + ACTIONS(9703), 1, + anon_sym_RBRACK, STATE(5823), 1, sym_comment, - [192028] = 6, + STATE(5881), 1, + aux_sym_tuple_type_repeat1, + [192135] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7256), 1, + ACTIONS(7273), 1, anon_sym_LT, - ACTIONS(9696), 1, + ACTIONS(9705), 1, anon_sym_EQ, STATE(5824), 1, sym_comment, - STATE(7083), 1, + STATE(7087), 1, sym_type_parameters, - [192047] = 4, + [192154] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5825), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(9707), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [192062] = 6, + [192169] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9698), 1, - anon_sym_COMMA, - ACTIONS(9700), 1, - anon_sym_GT, + ACTIONS(9709), 1, + anon_sym_as, STATE(5826), 1, sym_comment, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - [192081] = 4, + ACTIONS(9711), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192186] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5032), 1, + anon_sym_extends, + ACTIONS(9713), 1, + anon_sym_AMP, + ACTIONS(9715), 1, + anon_sym_PIPE, STATE(5827), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192096] = 6, + [192205] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9702), 1, - anon_sym_COMMA, - ACTIONS(9704), 1, - anon_sym_GT, STATE(5828), 1, sym_comment, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - [192115] = 4, + ACTIONS(9717), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [192220] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5829), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192130] = 6, + [192235] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9706), 1, + ACTIONS(9719), 1, anon_sym_COMMA, - ACTIONS(9708), 1, + ACTIONS(9721), 1, anon_sym_GT, STATE(5830), 1, sym_comment, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, - [192149] = 4, + [192254] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5831), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192164] = 5, + [192269] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9710), 1, - anon_sym_as, + ACTIONS(9723), 1, + anon_sym_COMMA, + ACTIONS(9725), 1, + anon_sym_GT, STATE(5832), 1, sym_comment, - ACTIONS(9712), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [192181] = 4, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, + [192288] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5833), 1, sym_comment, - ACTIONS(9714), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [192196] = 6, + [192303] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1379), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7943), 1, - anon_sym_LBRACE_PIPE, - STATE(4945), 1, - sym_object_type, + ACTIONS(9727), 1, + anon_sym_COMMA, + ACTIONS(9729), 1, + anon_sym_GT, STATE(5834), 1, sym_comment, - [192215] = 4, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, + [192322] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5835), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192230] = 4, + [192337] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9731), 1, + anon_sym_COMMA, + ACTIONS(9733), 1, + anon_sym_RBRACE, STATE(5836), 1, sym_comment, - ACTIONS(9459), 3, + STATE(5945), 1, + aux_sym_export_clause_repeat1, + [192356] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5837), 1, + sym_comment, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192245] = 6, + [192371] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1388), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8061), 1, + anon_sym_LBRACE_PIPE, + STATE(4948), 1, + sym_object_type, + STATE(5838), 1, + sym_comment, + [192390] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5839), 1, + sym_comment, + ACTIONS(3396), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [192405] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9716), 1, + ACTIONS(8013), 1, anon_sym_COMMA, - ACTIONS(9718), 1, + ACTIONS(9735), 1, anon_sym_RBRACE, - STATE(5837), 1, + STATE(5748), 1, + aux_sym_object_repeat1, + STATE(5840), 1, sym_comment, - STATE(5944), 1, - aux_sym_export_clause_repeat1, - [192264] = 6, + [192424] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, + STATE(5841), 1, + sym_comment, + ACTIONS(9473), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5976), 1, + anon_sym_SEMI, + [192439] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(6019), 1, anon_sym_RPAREN, - STATE(5838), 1, + STATE(5842), 1, sym_comment, - STATE(5889), 1, + STATE(5893), 1, aux_sym_array_repeat1, - [192283] = 6, + [192458] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(5976), 1, + ACTIONS(6019), 1, anon_sym_RPAREN, STATE(5803), 1, aux_sym_array_repeat1, - STATE(5839), 1, - sym_comment, - [192302] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5840), 1, + STATE(5843), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192317] = 4, + [192477] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5841), 1, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8598), 1, + anon_sym_PIPE, + STATE(5844), 1, sym_comment, - ACTIONS(3461), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [192332] = 4, + [192496] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5842), 1, + STATE(5845), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(9509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192347] = 4, + [192511] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5843), 1, + STATE(5846), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192362] = 6, + [192526] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, + ACTIONS(8663), 1, anon_sym_COMMA, - ACTIONS(9720), 1, + ACTIONS(9737), 1, anon_sym_RBRACE, STATE(5749), 1, - aux_sym_object_repeat1, - STATE(5844), 1, + aux_sym_object_pattern_repeat1, + STATE(5847), 1, sym_comment, - [192381] = 6, + [192545] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8654), 1, + ACTIONS(8013), 1, anon_sym_COMMA, - ACTIONS(9722), 1, + ACTIONS(9739), 1, anon_sym_RBRACE, - STATE(5752), 1, - aux_sym_object_pattern_repeat1, - STATE(5845), 1, + STATE(5748), 1, + aux_sym_object_repeat1, + STATE(5848), 1, sym_comment, - [192400] = 5, + [192564] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9292), 1, + ACTIONS(9303), 1, anon_sym_EQ, - STATE(5846), 1, + STATE(5849), 1, sym_comment, - ACTIONS(9724), 2, + ACTIONS(9741), 2, anon_sym_COMMA, anon_sym_RBRACE, - [192417] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_extends, - ACTIONS(8583), 1, - anon_sym_PIPE, - STATE(5847), 1, - sym_comment, - [192436] = 6, + [192581] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(9726), 1, - anon_sym_RBRACE, - STATE(5749), 1, - aux_sym_object_repeat1, - STATE(5848), 1, + ACTIONS(6615), 1, + sym__automatic_semicolon, + STATE(5850), 1, sym_comment, - [192455] = 4, + ACTIONS(2445), 2, + anon_sym_else, + anon_sym_while, + [192598] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5849), 1, + STATE(5851), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192470] = 5, + [192613] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6599), 1, + ACTIONS(6584), 1, sym__automatic_semicolon, - STATE(5850), 1, + STATE(5852), 1, sym_comment, - ACTIONS(2332), 2, + ACTIONS(2437), 2, anon_sym_else, anon_sym_while, - [192487] = 6, + [192630] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9728), 1, + ACTIONS(9743), 1, anon_sym_COMMA, - ACTIONS(9730), 1, + ACTIONS(9745), 1, anon_sym_RBRACK, STATE(5686), 1, aux_sym_tuple_type_repeat1, - STATE(5851), 1, - sym_comment, - [192506] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6573), 1, - sym__automatic_semicolon, - STATE(5852), 1, + STATE(5853), 1, sym_comment, - ACTIONS(2328), 2, - anon_sym_else, - anon_sym_while, - [192523] = 6, + [192649] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9405), 1, + ACTIONS(9418), 1, anon_sym_LBRACE, - ACTIONS(9732), 1, + ACTIONS(9747), 1, sym_identifier, - STATE(5376), 1, + STATE(5381), 1, sym_export_clause, - STATE(5853), 1, - sym_comment, - [192542] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7907), 1, - anon_sym_DOT, STATE(5854), 1, sym_comment, - ACTIONS(9734), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [192559] = 5, + [192668] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7909), 1, - anon_sym_DOT, STATE(5855), 1, sym_comment, - ACTIONS(9734), 2, + ACTIONS(9412), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [192576] = 6, + [192683] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - ACTIONS(9401), 1, + ACTIONS(9414), 1, anon_sym_as, STATE(5856), 1, sym_comment, - STATE(6327), 1, + STATE(6328), 1, sym__from_clause, - [192595] = 5, + [192702] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9736), 1, + ACTIONS(9749), 1, anon_sym_as, STATE(5857), 1, sym_comment, - ACTIONS(9594), 2, + ACTIONS(9607), 2, anon_sym_COMMA, anon_sym_RBRACE, - [192612] = 4, + [192719] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7908), 1, + anon_sym_DOT, STATE(5858), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9751), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [192627] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7248), 1, - anon_sym_type, - ACTIONS(9738), 1, - sym_identifier, - STATE(5859), 1, - sym_comment, - STATE(6778), 1, - sym__import_identifier, - [192646] = 4, + [192736] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5860), 1, + ACTIONS(7910), 1, + anon_sym_DOT, + STATE(5859), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9751), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [192661] = 6, + [192753] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7248), 1, + ACTIONS(7259), 1, anon_sym_type, - ACTIONS(9738), 1, + ACTIONS(9753), 1, sym_identifier, - STATE(5861), 1, + STATE(5860), 1, sym_comment, - STATE(6772), 1, + STATE(6781), 1, sym__import_identifier, - [192680] = 4, + [192772] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5862), 1, + STATE(5861), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192695] = 4, + [192787] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5863), 1, + STATE(5862), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192710] = 4, + [192802] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(7259), 1, + anon_sym_type, + ACTIONS(9753), 1, + sym_identifier, + STATE(5863), 1, + sym_comment, + STATE(6772), 1, + sym__import_identifier, + [192821] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5864), 1, sym_comment, - ACTIONS(9740), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192725] = 6, + [192836] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9742), 1, + ACTIONS(9755), 1, anon_sym_COMMA, - ACTIONS(9744), 1, + ACTIONS(9757), 1, anon_sym_RBRACE, STATE(5865), 1, sym_comment, STATE(5960), 1, aux_sym_named_imports_repeat1, - [192744] = 5, + [192855] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7907), 1, - anon_sym_DOT, STATE(5866), 1, sym_comment, - ACTIONS(9746), 2, + ACTIONS(9509), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [192761] = 6, + [192870] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(9748), 1, - anon_sym_RPAREN, STATE(5867), 1, sym_comment, - STATE(6993), 1, - sym_type_annotation, - [192780] = 5, + ACTIONS(9394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192885] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7909), 1, - anon_sym_DOT, STATE(5868), 1, sym_comment, - ACTIONS(9746), 2, + ACTIONS(9509), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [192797] = 4, + [192900] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7908), 1, + anon_sym_DOT, STATE(5869), 1, sym_comment, - ACTIONS(9496), 3, + ACTIONS(9759), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [192812] = 4, + [192917] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(9761), 1, + anon_sym_RPAREN, STATE(5870), 1, sym_comment, - ACTIONS(9484), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192827] = 4, + STATE(6997), 1, + sym_type_annotation, + [192936] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7910), 1, + anon_sym_DOT, STATE(5871), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9759), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [192842] = 4, + [192953] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9763), 1, + anon_sym_COMMA, + ACTIONS(9765), 1, + anon_sym_RPAREN, STATE(5872), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192857] = 4, + STATE(5903), 1, + aux_sym_formal_parameters_repeat1, + [192972] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5873), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192872] = 4, + [192987] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5874), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192887] = 6, + [193002] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9750), 1, - anon_sym_COMMA, - ACTIONS(9752), 1, - anon_sym_RPAREN, STATE(5875), 1, sym_comment, - STATE(5896), 1, - aux_sym_formal_parameters_repeat1, - [192906] = 4, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193017] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9617), 1, + anon_sym_require, + ACTIONS(9767), 1, + sym_identifier, STATE(5876), 1, sym_comment, - ACTIONS(9496), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192921] = 6, + STATE(6282), 1, + sym_nested_identifier, + [193036] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9754), 1, - anon_sym_COMMA, - ACTIONS(9756), 1, - anon_sym_RBRACK, STATE(5877), 1, sym_comment, - STATE(6001), 1, - aux_sym_tuple_type_repeat1, - [192940] = 6, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193051] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - ACTIONS(9758), 1, - anon_sym_LPAREN, STATE(5878), 1, sym_comment, - STATE(6043), 1, - sym_statement_block, - [192959] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193066] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9375), 1, - anon_sym_require, - ACTIONS(9760), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(5879), 1, sym_comment, - STATE(6278), 1, - sym_nested_identifier, - [192978] = 4, + ACTIONS(9509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193081] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5880), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192993] = 4, + [193096] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9769), 1, + anon_sym_COMMA, + ACTIONS(9771), 1, + anon_sym_RBRACK, STATE(5881), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193008] = 4, + STATE(6003), 1, + aux_sym_tuple_type_repeat1, + [193115] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + ACTIONS(9773), 1, + anon_sym_LPAREN, STATE(5882), 1, sym_comment, - ACTIONS(9484), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193023] = 4, + STATE(6046), 1, + sym_statement_block, + [193134] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5883), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9775), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193038] = 4, + [193149] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5884), 1, sym_comment, - ACTIONS(9762), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193053] = 4, + [193164] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5885), 1, sym_comment, - ACTIONS(9764), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193068] = 6, + [193179] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1379), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7943), 1, - anon_sym_LBRACE_PIPE, - STATE(4923), 1, - sym_object_type, STATE(5886), 1, sym_comment, - [193087] = 4, + ACTIONS(9777), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193194] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9779), 1, + anon_sym_LBRACE, + ACTIONS(9781), 1, + anon_sym_LPAREN, + STATE(1177), 1, + sym_statement_block, STATE(5887), 1, sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193102] = 6, + [193213] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9766), 1, - anon_sym_COMMA, - ACTIONS(9768), 1, - anon_sym_RBRACE, STATE(5888), 1, sym_comment, - STATE(5924), 1, - aux_sym_enum_body_repeat1, - [193121] = 6, + ACTIONS(9204), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193228] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(9770), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, STATE(5889), 1, sym_comment, - [193140] = 4, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193243] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1388), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8061), 1, + anon_sym_LBRACE_PIPE, + STATE(4926), 1, + sym_object_type, STATE(5890), 1, sym_comment, - ACTIONS(9191), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193155] = 6, + [193262] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5892), 1, + ACTIONS(5931), 1, anon_sym_COMMA, - ACTIONS(9772), 1, + ACTIONS(9783), 1, anon_sym_RBRACK, - STATE(5778), 1, + STATE(5779), 1, aux_sym_array_repeat1, STATE(5891), 1, sym_comment, - [193174] = 4, + [193281] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9785), 1, + anon_sym_COMMA, + ACTIONS(9787), 1, + anon_sym_RBRACE, STATE(5892), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193189] = 6, + STATE(5928), 1, + aux_sym_enum_body_repeat1, + [193300] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(9774), 1, - anon_sym_RBRACK, - STATE(5781), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(9789), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(5893), 1, sym_comment, - [193208] = 4, + [193319] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9305), 1, + anon_sym_COMMA, + ACTIONS(9791), 1, + anon_sym_RBRACK, + STATE(5780), 1, + aux_sym_array_pattern_repeat1, STATE(5894), 1, sym_comment, - ACTIONS(7993), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [193223] = 4, + [193338] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5895), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193238] = 5, + ACTIONS(9793), 3, + anon_sym_default, + anon_sym_RBRACE, + anon_sym_case, + [193353] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9776), 1, + ACTIONS(9795), 1, anon_sym_COMMA, - ACTIONS(9779), 1, + ACTIONS(9797), 1, anon_sym_RPAREN, - STATE(5896), 2, + STATE(5896), 1, sym_comment, + STATE(5903), 1, aux_sym_formal_parameters_repeat1, - [193255] = 6, + [193372] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9781), 1, - anon_sym_LBRACE, - ACTIONS(9783), 1, - anon_sym_LPAREN, - STATE(1184), 1, - sym_statement_block, STATE(5897), 1, sym_comment, - [193274] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8065), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [193387] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9405), 1, - anon_sym_LBRACE, - ACTIONS(9785), 1, - sym_identifier, - STATE(5448), 1, - sym_export_clause, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(5898), 1, sym_comment, - [193293] = 6, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193402] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - ACTIONS(9401), 1, - anon_sym_as, STATE(5899), 1, sym_comment, - STATE(6623), 1, - sym__from_clause, - [193312] = 4, + ACTIONS(9497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193417] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9418), 1, + anon_sym_LBRACE, + ACTIONS(9799), 1, + sym_identifier, + STATE(5450), 1, + sym_export_clause, STATE(5900), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193327] = 4, + [193436] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5901), 1, sym_comment, - ACTIONS(9787), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193342] = 6, + [193451] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8426), 1, - anon_sym_COMMA, - ACTIONS(9789), 1, - anon_sym_LBRACE, + ACTIONS(8980), 1, + anon_sym_from, + ACTIONS(9414), 1, + anon_sym_as, STATE(5902), 1, sym_comment, - STATE(5996), 1, - aux_sym_implements_clause_repeat1, - [193361] = 4, + STATE(6625), 1, + sym__from_clause, + [193470] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5903), 1, + ACTIONS(9801), 1, + anon_sym_COMMA, + ACTIONS(9804), 1, + anon_sym_RPAREN, + STATE(5903), 2, + sym_comment, + aux_sym_formal_parameters_repeat1, + [193487] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5904), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193376] = 4, + [193502] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5904), 1, + STATE(5905), 1, sym_comment, - ACTIONS(9791), 3, - anon_sym_default, - anon_sym_RBRACE, - anon_sym_case, - [193391] = 6, + ACTIONS(9806), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193517] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, + ACTIONS(4322), 1, anon_sym_COLON, - ACTIONS(9793), 1, + ACTIONS(9808), 1, anon_sym_RPAREN, - STATE(5905), 1, + STATE(5906), 1, sym_comment, - STATE(6951), 1, + STATE(6956), 1, sym_type_annotation, - [193410] = 4, + [193536] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5906), 1, + STATE(5907), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193425] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9795), 1, - anon_sym_COMMA, - ACTIONS(9797), 1, - anon_sym_RPAREN, - STATE(5896), 1, - aux_sym_formal_parameters_repeat1, - STATE(5907), 1, - sym_comment, - [193444] = 6, + [193551] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9799), 1, + ACTIONS(9810), 1, anon_sym_COMMA, - ACTIONS(9801), 1, + ACTIONS(9812), 1, anon_sym_RBRACK, STATE(5908), 1, sym_comment, - STATE(6044), 1, + STATE(6048), 1, aux_sym_tuple_type_repeat1, - [193463] = 6, + [193570] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9375), 1, + ACTIONS(9617), 1, anon_sym_require, - ACTIONS(9803), 1, + ACTIONS(9814), 1, sym_identifier, STATE(5909), 1, sym_comment, - STATE(6108), 1, + STATE(6112), 1, sym_nested_identifier, - [193482] = 6, + [193589] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6146), 1, - anon_sym_extends, - ACTIONS(9805), 1, - anon_sym_AMP, - ACTIONS(9807), 1, - anon_sym_PIPE, STATE(5910), 1, sym_comment, - [193501] = 6, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193604] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8654), 1, - anon_sym_COMMA, - ACTIONS(9809), 1, - anon_sym_RBRACE, - STATE(5752), 1, - aux_sym_object_pattern_repeat1, STATE(5911), 1, sym_comment, - [193520] = 6, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193619] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9811), 1, + ACTIONS(8663), 1, anon_sym_COMMA, - ACTIONS(9813), 1, - anon_sym_GT, + ACTIONS(9816), 1, + anon_sym_RBRACE, + STATE(5749), 1, + aux_sym_object_pattern_repeat1, STATE(5912), 1, sym_comment, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - [193539] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [193638] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9815), 1, - sym_identifier, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9819), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8538), 1, + anon_sym_COMMA, + ACTIONS(9818), 1, + anon_sym_LBRACE, STATE(5913), 1, sym_comment, - [193558] = 6, + STATE(5998), 1, + aux_sym_implements_clause_repeat1, + [193657] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6108), 1, + anon_sym_extends, + ACTIONS(9820), 1, + anon_sym_AMP, + ACTIONS(9822), 1, + anon_sym_PIPE, + STATE(5914), 1, + sym_comment, + [193676] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9821), 1, + ACTIONS(9824), 1, sym_identifier, - ACTIONS(9823), 1, + ACTIONS(9826), 1, anon_sym_LBRACK, - ACTIONS(9825), 1, + ACTIONS(9828), 1, sym_private_property_identifier, - STATE(5914), 1, + STATE(5915), 1, sym_comment, - [193577] = 6, + [193695] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9827), 1, + ACTIONS(9830), 1, sym_identifier, - ACTIONS(9829), 1, + ACTIONS(9832), 1, anon_sym_LBRACK, - ACTIONS(9831), 1, + ACTIONS(9834), 1, sym_private_property_identifier, - STATE(5915), 1, + STATE(5916), 1, sym_comment, - [193596] = 6, + [193714] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9405), 1, + ACTIONS(9418), 1, anon_sym_LBRACE, - ACTIONS(9833), 1, + ACTIONS(9836), 1, sym_identifier, - STATE(5542), 1, + STATE(5545), 1, sym_export_clause, - STATE(5916), 1, + STATE(5917), 1, sym_comment, - [193615] = 6, + [193733] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - ACTIONS(9401), 1, + ACTIONS(9414), 1, anon_sym_as, - STATE(5917), 1, - sym_comment, - STATE(6633), 1, - sym__from_clause, - [193634] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(5918), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193649] = 6, + STATE(6645), 1, + sym__from_clause, + [193752] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9835), 1, + ACTIONS(9838), 1, sym_identifier, - ACTIONS(9837), 1, + ACTIONS(9840), 1, anon_sym_LBRACK, - ACTIONS(9839), 1, + ACTIONS(9842), 1, sym_private_property_identifier, STATE(5919), 1, sym_comment, - [193668] = 6, + [193771] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9841), 1, - anon_sym_COMMA, - ACTIONS(9843), 1, - anon_sym_GT, + ACTIONS(9844), 1, + sym_identifier, + ACTIONS(9846), 1, + anon_sym_LBRACK, + ACTIONS(9848), 1, + sym_private_property_identifier, STATE(5920), 1, sym_comment, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - [193687] = 4, + [193790] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9850), 1, + anon_sym_COMMA, + ACTIONS(9852), 1, + anon_sym_GT, STATE(5921), 1, sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193702] = 6, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, + [193809] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9845), 1, + ACTIONS(9854), 1, anon_sym_COMMA, - ACTIONS(9847), 1, - anon_sym_RBRACE, + ACTIONS(9856), 1, + anon_sym_GT, STATE(5922), 1, sym_comment, - STATE(6060), 1, - aux_sym_enum_body_repeat1, - [193721] = 4, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, + [193828] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(6566), 1, + sym__automatic_semicolon, STATE(5923), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193736] = 6, + ACTIONS(2429), 2, + anon_sym_else, + anon_sym_while, + [193845] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9849), 1, + ACTIONS(9858), 1, anon_sym_COMMA, - ACTIONS(9851), 1, - anon_sym_RBRACE, + ACTIONS(9860), 1, + anon_sym_GT, STATE(5924), 1, sym_comment, - STATE(6060), 1, - aux_sym_enum_body_repeat1, - [193755] = 5, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, + [193864] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6552), 1, - sym__automatic_semicolon, STATE(5925), 1, sym_comment, - ACTIONS(2344), 2, - anon_sym_else, - anon_sym_while, - [193772] = 6, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193879] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9853), 1, + ACTIONS(9862), 1, anon_sym_COMMA, - ACTIONS(9855), 1, - anon_sym_GT, + ACTIONS(9864), 1, + anon_sym_RBRACE, STATE(5926), 1, sym_comment, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - [193791] = 4, + STATE(6062), 1, + aux_sym_enum_body_repeat1, + [193898] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5927), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193806] = 5, + [193913] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6548), 1, - sym__automatic_semicolon, + ACTIONS(9866), 1, + anon_sym_COMMA, + ACTIONS(9868), 1, + anon_sym_RBRACE, STATE(5928), 1, sym_comment, - ACTIONS(2348), 2, - anon_sym_else, - anon_sym_while, - [193823] = 6, + STATE(6062), 1, + aux_sym_enum_body_repeat1, + [193932] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9857), 1, + ACTIONS(9870), 1, anon_sym_COMMA, - ACTIONS(9859), 1, + ACTIONS(9872), 1, anon_sym_RBRACK, STATE(5929), 1, sym_comment, - STATE(6001), 1, + STATE(6003), 1, aux_sym_tuple_type_repeat1, - [193842] = 6, + [193951] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9861), 1, - anon_sym_COMMA, - ACTIONS(9863), 1, - anon_sym_GT, + ACTIONS(6564), 1, + sym__automatic_semicolon, STATE(5930), 1, sym_comment, - STATE(5936), 1, - aux_sym_type_parameters_repeat1, - [193861] = 5, + ACTIONS(2425), 2, + anon_sym_else, + anon_sym_while, + [193968] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6488), 1, - sym__automatic_semicolon, + ACTIONS(9874), 1, + anon_sym_COMMA, + ACTIONS(9876), 1, + anon_sym_GT, STATE(5931), 1, sym_comment, - ACTIONS(2318), 2, - anon_sym_else, - anon_sym_while, - [193878] = 5, + STATE(5938), 1, + aux_sym_type_parameters_repeat1, + [193987] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6477), 1, + ACTIONS(6523), 1, sym__automatic_semicolon, STATE(5932), 1, sym_comment, - ACTIONS(2358), 2, + ACTIONS(2409), 2, anon_sym_else, anon_sym_while, - [193895] = 5, + [194004] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8081), 1, + ACTIONS(7989), 1, anon_sym_DOT, STATE(5933), 1, sym_comment, - ACTIONS(9865), 2, + ACTIONS(9878), 2, anon_sym_COMMA, anon_sym_GT, - [193912] = 5, + [194021] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(6521), 1, + sym__automatic_semicolon, + STATE(5934), 1, + sym_comment, + ACTIONS(2405), 2, + anon_sym_else, + anon_sym_while, + [194038] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5935), 1, + sym_comment, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194053] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8763), 1, + ACTIONS(8774), 1, anon_sym_GT, - ACTIONS(9867), 1, + ACTIONS(9880), 1, anon_sym_COMMA, - STATE(5934), 2, + STATE(5936), 2, sym_comment, aux_sym_type_arguments_repeat1, - [193929] = 6, + [194070] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(207), 1, + ACTIONS(211), 1, anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8091), 1, + ACTIONS(8132), 1, anon_sym_LBRACE_PIPE, - STATE(5935), 1, + STATE(5937), 1, sym_comment, - STATE(6646), 1, + STATE(6520), 1, sym_object_type, - [193948] = 5, + [194089] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9870), 1, + ACTIONS(9883), 1, anon_sym_COMMA, - ACTIONS(9873), 1, + ACTIONS(9886), 1, anon_sym_GT, - STATE(5936), 2, + STATE(5938), 2, sym_comment, aux_sym_type_parameters_repeat1, - [193965] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(5928), 1, - anon_sym_RPAREN, - STATE(5937), 1, - sym_comment, - STATE(6055), 1, - aux_sym_array_repeat1, - [193984] = 6, + [194106] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8145), 1, + ACTIONS(8144), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, + ACTIONS(8146), 1, anon_sym_LBRACE_PIPE, - STATE(1509), 1, + STATE(1534), 1, sym_object_type, - STATE(5938), 1, + STATE(5939), 1, sym_comment, - [194003] = 6, + [194125] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(5928), 1, + ACTIONS(6041), 1, anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, - STATE(5939), 1, + STATE(5940), 1, sym_comment, - [194022] = 6, + STATE(6057), 1, + aux_sym_array_repeat1, + [194144] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9875), 1, + ACTIONS(9888), 1, anon_sym_COMMA, - ACTIONS(9877), 1, + ACTIONS(9890), 1, anon_sym_RBRACE, - STATE(5940), 1, + STATE(5941), 1, sym_comment, - STATE(6014), 1, + STATE(6015), 1, aux_sym_enum_body_repeat1, - [194041] = 6, + [194163] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(9879), 1, + ACTIONS(9892), 1, anon_sym_RPAREN, STATE(5803), 1, aux_sym_array_repeat1, - STATE(5941), 1, + STATE(5942), 1, sym_comment, - [194060] = 4, + [194182] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5942), 1, - sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, + ACTIONS(5935), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194075] = 4, + ACTIONS(6041), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, + STATE(5943), 1, + sym_comment, + [194201] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(5943), 1, + STATE(5944), 1, sym_comment, - ACTIONS(9881), 3, + ACTIONS(9894), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [194090] = 5, + [194216] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9883), 1, + ACTIONS(9896), 1, anon_sym_COMMA, - ACTIONS(9886), 1, + ACTIONS(9899), 1, anon_sym_RBRACE, - STATE(5944), 2, + STATE(5945), 2, sym_comment, aux_sym_export_clause_repeat1, - [194107] = 6, + [194233] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, + ACTIONS(4322), 1, anon_sym_COLON, - ACTIONS(9888), 1, + ACTIONS(9901), 1, anon_sym_RPAREN, - STATE(5945), 1, - sym_comment, - STATE(7037), 1, - sym_type_annotation, - [194126] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9890), 1, - anon_sym_LBRACE, STATE(5946), 1, sym_comment, - ACTIONS(8810), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [194143] = 5, + STATE(7043), 1, + sym_type_annotation, + [194252] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, - anon_sym_LBRACE, + ACTIONS(8013), 1, + anon_sym_COMMA, + ACTIONS(9903), 1, + anon_sym_RBRACE, + STATE(5748), 1, + aux_sym_object_repeat1, STATE(5947), 1, sym_comment, - ACTIONS(5290), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [194160] = 4, + [194271] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8013), 1, + anon_sym_COMMA, + ACTIONS(9905), 1, + anon_sym_RBRACE, + STATE(5748), 1, + aux_sym_object_repeat1, STATE(5948), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194175] = 6, + [194290] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(9892), 1, - anon_sym_RBRACE, - STATE(5749), 1, - aux_sym_object_repeat1, + ACTIONS(9907), 1, + anon_sym_LBRACE, STATE(5949), 1, sym_comment, - [194194] = 4, + ACTIONS(8821), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [194307] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9617), 1, + anon_sym_require, + ACTIONS(9909), 1, + sym_identifier, + STATE(5739), 1, + sym_nested_identifier, STATE(5950), 1, sym_comment, - ACTIONS(9496), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194209] = 4, + [194326] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(6419), 1, + sym__automatic_semicolon, STATE(5951), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194224] = 4, + ACTIONS(2381), 2, + anon_sym_else, + anon_sym_while, + [194343] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(7259), 1, + anon_sym_type, + ACTIONS(9753), 1, + sym_identifier, STATE(5952), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194239] = 4, + STATE(6595), 1, + sym__import_identifier, + [194362] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5953), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194254] = 6, + [194377] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(9894), 1, - anon_sym_RBRACE, - STATE(5749), 1, - aux_sym_object_repeat1, STATE(5954), 1, sym_comment, - [194273] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194392] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7248), 1, - anon_sym_type, - ACTIONS(9738), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(5955), 1, sym_comment, - STATE(6592), 1, - sym__import_identifier, - [194292] = 4, + ACTIONS(9497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194407] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5956), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194307] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9896), 1, - anon_sym_LPAREN, - ACTIONS(9898), 1, - anon_sym_await, - STATE(77), 1, - sym__for_header, - STATE(5957), 1, - sym_comment, - [194326] = 6, + [194422] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7248), 1, + ACTIONS(7259), 1, anon_sym_type, - ACTIONS(9738), 1, + ACTIONS(9753), 1, sym_identifier, - STATE(5958), 1, + STATE(5957), 1, sym_comment, - STATE(6661), 1, + STATE(6664), 1, sym__import_identifier, - [194345] = 5, + [194441] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(5958), 1, + sym_comment, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194456] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6486), 1, + ACTIONS(6525), 1, sym__automatic_semicolon, STATE(5959), 1, sym_comment, - ACTIONS(2354), 2, + ACTIONS(2413), 2, anon_sym_else, anon_sym_while, - [194362] = 5, + [194473] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9900), 1, + ACTIONS(9911), 1, anon_sym_COMMA, - ACTIONS(9903), 1, + ACTIONS(9914), 1, anon_sym_RBRACE, STATE(5960), 2, sym_comment, aux_sym_named_imports_repeat1, - [194379] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [194490] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9905), 1, - sym_identifier, - ACTIONS(9907), 1, - anon_sym_SEMI, - ACTIONS(9909), 1, - sym__automatic_semicolon, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9916), 1, + anon_sym_LPAREN, + ACTIONS(9918), 1, + anon_sym_await, + STATE(94), 1, + sym__for_header, STATE(5961), 1, sym_comment, - [194398] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [194509] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9911), 1, - sym_identifier, - ACTIONS(9913), 1, - anon_sym_SEMI, - ACTIONS(9915), 1, - sym__automatic_semicolon, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(5962), 1, sym_comment, - [194417] = 6, + ACTIONS(9473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194524] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7154), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, STATE(5963), 1, sym_comment, - STATE(7126), 1, + STATE(7133), 1, sym_string, - [194436] = 4, + [194543] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9418), 1, + anon_sym_LBRACE, + ACTIONS(9920), 1, + sym_identifier, + STATE(5483), 1, + sym_export_clause, STATE(5964), 1, sym_comment, - ACTIONS(9459), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194451] = 4, + [194562] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9922), 1, + sym_identifier, + ACTIONS(9924), 1, + anon_sym_SEMI, + ACTIONS(9926), 1, + sym__automatic_semicolon, STATE(5965), 1, sym_comment, - ACTIONS(9482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194466] = 6, + [194581] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9405), 1, - anon_sym_LBRACE, - ACTIONS(9917), 1, + ACTIONS(9928), 1, sym_identifier, - STATE(5479), 1, - sym_export_clause, + ACTIONS(9930), 1, + anon_sym_SEMI, + ACTIONS(9932), 1, + sym__automatic_semicolon, STATE(5966), 1, sym_comment, - [194485] = 6, + [194600] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - ACTIONS(9401), 1, + ACTIONS(9414), 1, anon_sym_as, STATE(5967), 1, sym_comment, - STATE(6722), 1, + STATE(6726), 1, sym__from_clause, - [194504] = 4, + [194619] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5968), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194519] = 4, + [194634] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5969), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194534] = 4, + [194649] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5970), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194549] = 4, + [194664] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5971), 1, sym_comment, - ACTIONS(8077), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [194564] = 4, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194679] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5972), 1, sym_comment, - ACTIONS(9484), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194579] = 6, + [194694] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(9919), 1, - anon_sym_RPAREN, STATE(5973), 1, sym_comment, - STATE(7128), 1, - sym_type_annotation, - [194598] = 4, + ACTIONS(9497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194709] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5974), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194613] = 4, + [194724] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5975), 1, sym_comment, - ACTIONS(9921), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194628] = 4, + ACTIONS(8021), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [194739] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5976), 1, sym_comment, - ACTIONS(9921), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194643] = 4, + [194754] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5977), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194658] = 4, + [194769] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(9934), 1, + anon_sym_RPAREN, STATE(5978), 1, sym_comment, - ACTIONS(9923), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194673] = 4, + STATE(7136), 1, + sym_type_annotation, + [194788] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5979), 1, sym_comment, - ACTIONS(9921), 3, + ACTIONS(9936), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194688] = 4, + [194803] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5980), 1, sym_comment, - ACTIONS(9459), 3, + ACTIONS(9936), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194703] = 4, + [194818] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5981), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9473), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194718] = 4, + [194833] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5982), 1, sym_comment, - ACTIONS(9482), 3, + ACTIONS(9938), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194733] = 4, + [194848] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5983), 1, sym_comment, - ACTIONS(9925), 3, + ACTIONS(9936), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194748] = 4, + [194863] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5984), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194763] = 4, + [194878] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5985), 1, sym_comment, - ACTIONS(9927), 3, + ACTIONS(9497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194778] = 4, + [194893] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5986), 1, sym_comment, - ACTIONS(9929), 3, + ACTIONS(9940), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194793] = 4, + [194908] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5987), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9942), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194808] = 4, + [194923] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5988), 1, sym_comment, - ACTIONS(9929), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194823] = 4, + [194938] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5989), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9944), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194838] = 4, + [194953] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5990), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9946), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194853] = 4, + [194968] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5991), 1, sym_comment, - ACTIONS(9931), 3, + ACTIONS(9394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194868] = 4, + [194983] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5992), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(9944), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194883] = 4, + [194998] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5993), 1, sym_comment, - ACTIONS(9935), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194898] = 4, + [195013] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5994), 1, sym_comment, - ACTIONS(9937), 3, - anon_sym_LBRACE, + ACTIONS(9948), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [194913] = 4, + anon_sym_SEMI, + [195028] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(5995), 1, sym_comment, - ACTIONS(9939), 3, + ACTIONS(9950), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194928] = 5, + [195043] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8799), 1, + STATE(5996), 1, + sym_comment, + ACTIONS(9952), 3, anon_sym_LBRACE, - ACTIONS(9941), 1, anon_sym_COMMA, - STATE(5996), 2, - sym_comment, - aux_sym_implements_clause_repeat1, - [194945] = 5, + anon_sym_implements, + [195058] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7907), 1, - anon_sym_DOT, STATE(5997), 1, sym_comment, - ACTIONS(9944), 2, + ACTIONS(9954), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194962] = 5, + [195073] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7909), 1, - anon_sym_DOT, - STATE(5998), 1, + ACTIONS(8810), 1, + anon_sym_LBRACE, + ACTIONS(9956), 1, + anon_sym_COMMA, + STATE(5998), 2, sym_comment, - ACTIONS(9944), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [194979] = 5, + aux_sym_implements_clause_repeat1, + [195090] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6396), 1, - sym__automatic_semicolon, STATE(5999), 1, sym_comment, - ACTIONS(2364), 2, - anon_sym_else, - anon_sym_while, - [194996] = 4, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195105] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7908), 1, + anon_sym_DOT, STATE(6000), 1, sym_comment, - ACTIONS(9927), 3, + ACTIONS(9959), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [195011] = 5, + [195122] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9946), 1, - anon_sym_COMMA, - ACTIONS(9949), 1, - anon_sym_RBRACK, - STATE(6001), 2, + ACTIONS(7910), 1, + anon_sym_DOT, + STATE(6001), 1, sym_comment, - aux_sym_tuple_type_repeat1, - [195028] = 4, + ACTIONS(9959), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [195139] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6002), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9942), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195043] = 4, + [195154] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(6003), 1, - sym_comment, - ACTIONS(9397), 3, - sym__automatic_semicolon, + ACTIONS(9961), 1, anon_sym_COMMA, - anon_sym_SEMI, - [195058] = 4, + ACTIONS(9964), 1, + anon_sym_RBRACK, + STATE(6003), 2, + sym_comment, + aux_sym_tuple_type_repeat1, + [195171] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6004), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195073] = 4, + [195186] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6005), 1, sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195088] = 4, + ACTIONS(9966), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [195201] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6006), 1, sym_comment, - ACTIONS(9951), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [195103] = 5, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195216] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6351), 1, - sym__automatic_semicolon, STATE(6007), 1, sym_comment, - ACTIONS(2370), 2, - anon_sym_else, - anon_sym_while, - [195120] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195231] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9088), 1, - sym_identifier, - ACTIONS(9090), 1, - anon_sym_const, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7211), 1, + anon_sym_LPAREN, + ACTIONS(9968), 1, + anon_sym_DOT, + STATE(4696), 1, + sym_arguments, STATE(6008), 1, sym_comment, - STATE(6838), 1, - sym_type_parameter, - [195139] = 4, + [195250] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6009), 1, sym_comment, - ACTIONS(9953), 3, + ACTIONS(9970), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195154] = 4, + [195265] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(6488), 1, + sym__automatic_semicolon, STATE(6010), 1, sym_comment, - ACTIONS(9397), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195169] = 5, + ACTIONS(2387), 2, + anon_sym_else, + anon_sym_while, + [195282] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6309), 1, - sym__automatic_semicolon, + ACTIONS(9099), 1, + sym_identifier, + ACTIONS(9101), 1, + anon_sym_const, STATE(6011), 1, sym_comment, - ACTIONS(2376), 2, - anon_sym_else, - anon_sym_while, - [195186] = 5, + STATE(6841), 1, + sym_type_parameter, + [195301] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6305), 1, + ACTIONS(6417), 1, sym__automatic_semicolon, STATE(6012), 1, sym_comment, - ACTIONS(2380), 2, + ACTIONS(2375), 2, anon_sym_else, anon_sym_while, - [195203] = 6, + [195318] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9955), 1, - anon_sym_COMMA, - ACTIONS(9957), 1, - anon_sym_RBRACE, + ACTIONS(6415), 1, + sym__automatic_semicolon, STATE(6013), 1, sym_comment, - STATE(6060), 1, - aux_sym_enum_body_repeat1, - [195222] = 6, + ACTIONS(2371), 2, + anon_sym_else, + anon_sym_while, + [195335] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9959), 1, + ACTIONS(9972), 1, anon_sym_COMMA, - ACTIONS(9961), 1, + ACTIONS(9974), 1, anon_sym_RBRACE, STATE(6014), 1, sym_comment, - STATE(6060), 1, + STATE(6062), 1, aux_sym_enum_body_repeat1, - [195241] = 4, + [195354] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9976), 1, + anon_sym_COMMA, + ACTIONS(9978), 1, + anon_sym_RBRACE, STATE(6015), 1, sym_comment, - ACTIONS(9963), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [195256] = 4, + STATE(6062), 1, + aux_sym_enum_body_repeat1, + [195373] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6016), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9980), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [195271] = 4, + [195388] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6017), 1, sym_comment, - ACTIONS(9967), 3, + ACTIONS(9982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195286] = 6, + [195403] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(9969), 1, - anon_sym_DOT, - STATE(4847), 1, - sym_arguments, STATE(6018), 1, sym_comment, - [195305] = 4, + ACTIONS(9984), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195418] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6019), 1, sym_comment, - ACTIONS(9967), 3, + ACTIONS(9984), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195320] = 4, + [195433] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6020), 1, sym_comment, - ACTIONS(9971), 3, + ACTIONS(9986), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195335] = 4, + [195448] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6021), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195350] = 5, + [195463] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9973), 1, - anon_sym_LBRACE, STATE(6022), 1, sym_comment, - ACTIONS(8765), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [195367] = 4, + ACTIONS(9408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195478] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6023), 1, sym_comment, - ACTIONS(9975), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195382] = 4, + [195493] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6024), 1, sym_comment, - ACTIONS(9977), 3, + ACTIONS(9988), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195397] = 4, + [195508] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6025), 1, sym_comment, - ACTIONS(9967), 3, + ACTIONS(9990), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195412] = 4, + [195523] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6026), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9984), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195427] = 4, + [195538] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6027), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195442] = 4, + [195553] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6028), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(9988), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195457] = 4, + [195568] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6029), 1, sym_comment, - ACTIONS(9975), 3, + ACTIONS(9982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195472] = 4, + [195583] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6030), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195487] = 4, + [195598] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6031), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195502] = 4, + [195613] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6032), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195517] = 4, + [195628] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6033), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195532] = 4, + [195643] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4322), 1, + anon_sym_COLON, + ACTIONS(9996), 1, + anon_sym_RPAREN, STATE(6034), 1, sym_comment, - ACTIONS(9985), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195547] = 6, + STATE(7143), 1, + sym_type_annotation, + [195662] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(9987), 1, - anon_sym_RPAREN, STATE(6035), 1, sym_comment, - STATE(7141), 1, - sym_type_annotation, - [195566] = 4, + ACTIONS(9998), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195677] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10000), 1, + anon_sym_LBRACE, STATE(6036), 1, sym_comment, - ACTIONS(9979), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195581] = 4, + ACTIONS(8776), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [195694] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6037), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195596] = 4, + [195709] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6038), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195611] = 4, + [195724] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6039), 1, sym_comment, - ACTIONS(9524), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195626] = 4, + [195739] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6040), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(9583), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195641] = 4, + [195754] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6041), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195656] = 4, + [195769] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6042), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195671] = 4, + [195784] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6043), 1, sym_comment, - ACTIONS(3433), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [195686] = 6, + ACTIONS(9408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195799] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9989), 1, - anon_sym_COMMA, - ACTIONS(9991), 1, - anon_sym_RBRACK, - STATE(6001), 1, - aux_sym_tuple_type_repeat1, STATE(6044), 1, sym_comment, - [195705] = 4, + ACTIONS(10004), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195814] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6045), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195720] = 4, + [195829] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6046), 1, sym_comment, - ACTIONS(9993), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195735] = 4, + ACTIONS(3432), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [195844] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6047), 1, sym_comment, - ACTIONS(9993), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195750] = 4, + [195859] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10006), 1, + anon_sym_COMMA, + ACTIONS(10008), 1, + anon_sym_RBRACK, + STATE(6003), 1, + aux_sym_tuple_type_repeat1, STATE(6048), 1, sym_comment, - ACTIONS(9995), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195765] = 4, + [195878] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6049), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(10010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195780] = 6, + [195893] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(207), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8091), 1, - anon_sym_LBRACE_PIPE, STATE(6050), 1, sym_comment, - STATE(6807), 1, - sym_object_type, - [195799] = 4, + ACTIONS(10010), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195908] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6051), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(10012), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195814] = 4, + [195923] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6052), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195829] = 6, + [195938] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9997), 1, - anon_sym_COMMA, - ACTIONS(9999), 1, - anon_sym_RBRACE, STATE(6053), 1, sym_comment, - STATE(6153), 1, - aux_sym_enum_body_repeat1, - [195848] = 4, + ACTIONS(10004), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195953] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6054), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195863] = 6, + [195968] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(211), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(10001), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, + ACTIONS(8132), 1, + anon_sym_LBRACE_PIPE, STATE(6055), 1, sym_comment, - [195882] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6806), 1, + sym_object_type, + [195987] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9375), 1, - anon_sym_require, - ACTIONS(10003), 1, - sym_identifier, - STATE(5998), 1, - sym_nested_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10014), 1, + anon_sym_COMMA, + ACTIONS(10016), 1, + anon_sym_RBRACE, STATE(6056), 1, sym_comment, - [195901] = 6, + STATE(6158), 1, + aux_sym_enum_body_repeat1, + [196006] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10005), 1, - anon_sym_LBRACE, - ACTIONS(10007), 1, - anon_sym_LPAREN, - STATE(998), 1, - sym_statement_block, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(10018), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6057), 1, sym_comment, - [195920] = 5, + [196025] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8862), 1, - anon_sym_LBRACE, STATE(6058), 1, sym_comment, - ACTIONS(8864), 2, + ACTIONS(10002), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [195937] = 4, + anon_sym_SEMI, + [196040] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9617), 1, + anon_sym_require, + ACTIONS(10020), 1, + sym_identifier, + STATE(6001), 1, + sym_nested_identifier, STATE(6059), 1, sym_comment, - ACTIONS(9979), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195952] = 5, + [196059] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10009), 1, - anon_sym_COMMA, - ACTIONS(10012), 1, - anon_sym_RBRACE, - STATE(6060), 2, + ACTIONS(8873), 1, + anon_sym_LBRACE, + STATE(6060), 1, sym_comment, - aux_sym_enum_body_repeat1, - [195969] = 4, + ACTIONS(8875), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [196076] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10022), 1, + anon_sym_LBRACE, + ACTIONS(10024), 1, + anon_sym_LPAREN, + STATE(972), 1, + sym_statement_block, STATE(6061), 1, sym_comment, - ACTIONS(9379), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195984] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196095] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9088), 1, - sym_identifier, - ACTIONS(9090), 1, - anon_sym_const, - STATE(5790), 1, - sym_type_parameter, - STATE(6062), 1, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10026), 1, + anon_sym_COMMA, + ACTIONS(10029), 1, + anon_sym_RBRACE, + STATE(6062), 2, sym_comment, - [196003] = 4, + aux_sym_enum_body_repeat1, + [196112] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6063), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196018] = 4, + [196127] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6064), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196033] = 4, + [196142] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6065), 1, sym_comment, - ACTIONS(10014), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [196048] = 4, + [196157] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9099), 1, + sym_identifier, + ACTIONS(9101), 1, + anon_sym_const, + STATE(5785), 1, + sym_type_parameter, STATE(6066), 1, sym_comment, - ACTIONS(10016), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196063] = 4, + [196176] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6067), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10031), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [196078] = 4, + [196191] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6068), 1, sym_comment, - ACTIONS(10016), 3, + ACTIONS(10033), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196093] = 4, + [196206] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6069), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196108] = 4, + [196221] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6070), 1, sym_comment, - ACTIONS(10020), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196123] = 4, + [196236] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6071), 1, sym_comment, - ACTIONS(10022), 3, + ACTIONS(10033), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196138] = 6, + [196251] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10024), 1, - anon_sym_COMMA, - ACTIONS(10026), 1, - anon_sym_RBRACK, STATE(6072), 1, sym_comment, - STATE(6128), 1, - aux_sym_tuple_type_repeat1, - [196157] = 4, + ACTIONS(10035), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196266] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6073), 1, sym_comment, - ACTIONS(10028), 3, + ACTIONS(10037), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196172] = 6, + [196281] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10030), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(10032), 1, + ACTIONS(10041), 1, anon_sym_RPAREN, - STATE(5907), 1, + STATE(5896), 1, aux_sym_formal_parameters_repeat1, STATE(6074), 1, sym_comment, - [196191] = 4, + [196300] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6075), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(10043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196206] = 6, + [196315] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7627), 1, - anon_sym_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE, - ACTIONS(7631), 1, - anon_sym_extends, + ACTIONS(10045), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, + anon_sym_RBRACK, STATE(6076), 1, sym_comment, - [196225] = 6, + STATE(6132), 1, + aux_sym_tuple_type_repeat1, + [196334] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(6077), 1, + sym_comment, + ACTIONS(10049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196349] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9405), 1, + ACTIONS(9418), 1, anon_sym_LBRACE, - ACTIONS(10034), 1, + ACTIONS(10051), 1, sym_identifier, - STATE(5514), 1, + STATE(5516), 1, sym_export_clause, - STATE(6077), 1, + STATE(6078), 1, sym_comment, - [196244] = 6, + [196368] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, + ACTIONS(8980), 1, anon_sym_from, - ACTIONS(9401), 1, + ACTIONS(9414), 1, anon_sym_as, - STATE(6078), 1, + STATE(6079), 1, sym_comment, - STATE(6742), 1, + STATE(6759), 1, sym__from_clause, - [196263] = 6, + [196387] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10036), 1, - anon_sym_COMMA, - ACTIONS(10038), 1, - anon_sym_GT, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - STATE(6079), 1, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7596), 1, + anon_sym_PIPE, + ACTIONS(7598), 1, + anon_sym_extends, + STATE(6080), 1, sym_comment, - [196282] = 4, + [196406] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(6080), 1, + STATE(6081), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(10049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196297] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10040), 1, - anon_sym_COMMA, - ACTIONS(10042), 1, - anon_sym_GT, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - STATE(6081), 1, - sym_comment, - [196316] = 4, + [196421] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6082), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196331] = 6, + [196436] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10044), 1, + ACTIONS(10053), 1, anon_sym_COMMA, - ACTIONS(10046), 1, + ACTIONS(10055), 1, anon_sym_GT, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, STATE(6083), 1, sym_comment, - [196350] = 4, + [196455] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6084), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196365] = 4, + [196470] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10057), 1, + anon_sym_COMMA, + ACTIONS(10059), 1, + anon_sym_GT, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, STATE(6085), 1, sym_comment, - ACTIONS(10028), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196380] = 4, + [196489] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6086), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196395] = 6, + [196504] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8116), 1, - anon_sym_LBRACE, - ACTIONS(8118), 1, - anon_sym_LBRACE_PIPE, - STATE(1420), 1, - sym_object_type, + ACTIONS(10061), 1, + anon_sym_COMMA, + ACTIONS(10063), 1, + anon_sym_GT, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, STATE(6087), 1, sym_comment, - [196414] = 4, + [196523] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6088), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10065), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196429] = 4, + [196538] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6089), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10067), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196444] = 4, + [196553] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6090), 1, sym_comment, - ACTIONS(10050), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196459] = 6, + [196568] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(6012), 1, - anon_sym_RPAREN, + ACTIONS(8073), 1, + anon_sym_LBRACE, + ACTIONS(8075), 1, + anon_sym_LBRACE_PIPE, + STATE(1444), 1, + sym_object_type, STATE(6091), 1, sym_comment, - STATE(6140), 1, - aux_sym_array_repeat1, - [196478] = 6, + [196587] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(6012), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, STATE(6092), 1, sym_comment, - [196497] = 4, + ACTIONS(9408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196602] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6093), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196512] = 4, + [196617] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6094), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196527] = 4, + [196632] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_RPAREN, STATE(6095), 1, sym_comment, - ACTIONS(10018), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196542] = 4, + STATE(6144), 1, + aux_sym_array_repeat1, + [196651] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6096), 1, sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196557] = 4, + [196670] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6097), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196572] = 4, + [196685] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6098), 1, sym_comment, - ACTIONS(10016), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196587] = 4, + [196700] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8013), 1, + anon_sym_COMMA, + ACTIONS(10069), 1, + anon_sym_RBRACE, + STATE(5748), 1, + aux_sym_object_repeat1, STATE(6099), 1, sym_comment, - ACTIONS(10052), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196602] = 4, + [196719] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6100), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196617] = 4, + [196734] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6101), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(10065), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196632] = 4, + [196749] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6102), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10033), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196647] = 6, + [196764] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(10054), 1, - anon_sym_RBRACE, - STATE(5749), 1, - aux_sym_object_repeat1, STATE(6103), 1, sym_comment, - [196666] = 4, + ACTIONS(10071), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196779] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6104), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196681] = 4, + [196794] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6105), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196696] = 4, + [196809] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8013), 1, + anon_sym_COMMA, + ACTIONS(10069), 1, + anon_sym_RBRACE, + STATE(5947), 1, + aux_sym_object_repeat1, STATE(6106), 1, sym_comment, - ACTIONS(10056), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196711] = 5, + [196828] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7907), 1, - anon_sym_DOT, STATE(6107), 1, sym_comment, - ACTIONS(10058), 2, + ACTIONS(9408), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [196728] = 5, + [196843] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7909), 1, - anon_sym_DOT, STATE(6108), 1, sym_comment, - ACTIONS(10058), 2, + ACTIONS(9408), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [196745] = 4, + [196858] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6109), 1, sym_comment, - ACTIONS(10060), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196760] = 6, + [196873] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COMMA, - ACTIONS(10054), 1, - anon_sym_RBRACE, - STATE(5949), 1, - aux_sym_object_repeat1, STATE(6110), 1, sym_comment, - [196779] = 4, + ACTIONS(10073), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196888] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7908), 1, + anon_sym_DOT, STATE(6111), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10075), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [196794] = 4, + [196905] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7910), 1, + anon_sym_DOT, STATE(6112), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10075), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [196809] = 4, + [196922] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6113), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(10077), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196824] = 4, + [196937] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6114), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196839] = 4, + [196952] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6115), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196854] = 4, + [196967] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6116), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196869] = 4, + [196982] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6117), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196884] = 4, + [196997] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6118), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196899] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [197012] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10062), 1, - sym_identifier, - ACTIONS(10064), 1, - anon_sym_LBRACK, - ACTIONS(10066), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6119), 1, sym_comment, - [196918] = 4, + ACTIONS(9994), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197027] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6120), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196933] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [197042] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10068), 1, - sym_identifier, - ACTIONS(10070), 1, - anon_sym_LBRACK, - ACTIONS(10072), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6121), 1, sym_comment, - [196952] = 4, + ACTIONS(10035), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197057] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6122), 1, sym_comment, - ACTIONS(10060), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196967] = 6, + [197072] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10074), 1, + ACTIONS(10079), 1, sym_identifier, - ACTIONS(10076), 1, + ACTIONS(10081), 1, anon_sym_LBRACK, - ACTIONS(10078), 1, + ACTIONS(10083), 1, sym_private_property_identifier, STATE(6123), 1, sym_comment, - [196986] = 4, + [197091] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6124), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197001] = 6, + [197106] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10080), 1, + ACTIONS(10085), 1, sym_identifier, - ACTIONS(10082), 1, + ACTIONS(10087), 1, anon_sym_LBRACK, - ACTIONS(10084), 1, + ACTIONS(10089), 1, sym_private_property_identifier, STATE(6125), 1, sym_comment, - [197020] = 4, + [197125] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6126), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(10077), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197035] = 4, + [197140] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10091), 1, + sym_identifier, + ACTIONS(10093), 1, + anon_sym_LBRACK, + ACTIONS(10095), 1, + sym_private_property_identifier, STATE(6127), 1, sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197050] = 6, + [197159] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10086), 1, - anon_sym_COMMA, - ACTIONS(10088), 1, - anon_sym_RBRACK, - STATE(6001), 1, - aux_sym_tuple_type_repeat1, STATE(6128), 1, sym_comment, - [197069] = 4, + ACTIONS(10071), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197174] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10097), 1, + sym_identifier, + ACTIONS(10099), 1, + anon_sym_LBRACK, + ACTIONS(10101), 1, + sym_private_property_identifier, STATE(6129), 1, sym_comment, - ACTIONS(10052), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197084] = 4, + [197193] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6130), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(9408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197099] = 4, + [197208] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6131), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197114] = 4, + [197223] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10103), 1, + anon_sym_COMMA, + ACTIONS(10105), 1, + anon_sym_RBRACK, + STATE(6003), 1, + aux_sym_tuple_type_repeat1, STATE(6132), 1, sym_comment, - ACTIONS(10090), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197129] = 4, + [197242] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6133), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197144] = 4, + [197257] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6134), 1, sym_comment, - ACTIONS(9397), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197159] = 4, + [197272] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6135), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197174] = 4, + [197287] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6136), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197189] = 6, + [197302] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8116), 1, - anon_sym_LBRACE, - ACTIONS(8118), 1, - anon_sym_LBRACE_PIPE, - STATE(1453), 1, - sym_object_type, STATE(6137), 1, sym_comment, - [197208] = 4, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197317] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6138), 1, sym_comment, - ACTIONS(9379), 3, + ACTIONS(9394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197223] = 6, + [197332] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10092), 1, - anon_sym_COMMA, - ACTIONS(10094), 1, - anon_sym_RBRACE, STATE(6139), 1, sym_comment, - STATE(6175), 1, - aux_sym_enum_body_repeat1, - [197242] = 6, + ACTIONS(10073), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197347] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(10096), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, STATE(6140), 1, sym_comment, - [197261] = 5, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197362] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6638), 1, - sym__automatic_semicolon, + ACTIONS(8073), 1, + anon_sym_LBRACE, + ACTIONS(8075), 1, + anon_sym_LBRACE_PIPE, + STATE(1297), 1, + sym_object_type, STATE(6141), 1, sym_comment, - ACTIONS(2400), 2, - anon_sym_else, - anon_sym_while, - [197278] = 4, + [197381] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6142), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197293] = 4, + [197396] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4461), 1, + anon_sym_LBRACE, STATE(6143), 1, sym_comment, - ACTIONS(9411), 3, - sym__automatic_semicolon, + ACTIONS(5405), 2, anon_sym_COMMA, - anon_sym_SEMI, - [197308] = 4, + anon_sym_LBRACE_PIPE, + [197413] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(10107), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6144), 1, sym_comment, - ACTIONS(10060), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197323] = 4, + [197432] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6145), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197338] = 4, + [197447] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(6550), 1, + sym__automatic_semicolon, STATE(6146), 1, sym_comment, - ACTIONS(10052), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197353] = 4, + ACTIONS(2477), 2, + anon_sym_else, + anon_sym_while, + [197464] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6147), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197368] = 4, + [197479] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6148), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(10077), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197383] = 4, + [197494] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6149), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197398] = 6, + [197509] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10098), 1, - anon_sym_COMMA, - ACTIONS(10100), 1, - anon_sym_RBRACE, - STATE(6060), 1, - aux_sym_enum_body_repeat1, STATE(6150), 1, sym_comment, - [197417] = 4, + ACTIONS(9412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197524] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6151), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197432] = 4, + [197539] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6152), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197447] = 6, + [197554] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10102), 1, - anon_sym_COMMA, - ACTIONS(10104), 1, - anon_sym_RBRACE, - STATE(6060), 1, - aux_sym_enum_body_repeat1, STATE(6153), 1, sym_comment, - [197466] = 4, + ACTIONS(10071), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197569] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10109), 1, + anon_sym_COMMA, + ACTIONS(10111), 1, + anon_sym_RBRACE, + STATE(6062), 1, + aux_sym_enum_body_repeat1, STATE(6154), 1, sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197481] = 4, + [197588] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6155), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197496] = 4, + [197603] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6156), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(9412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197511] = 4, + [197618] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6157), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197526] = 4, + [197633] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10113), 1, + anon_sym_COMMA, + ACTIONS(10115), 1, + anon_sym_RBRACE, + STATE(6062), 1, + aux_sym_enum_body_repeat1, STATE(6158), 1, sym_comment, - ACTIONS(10018), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197541] = 4, + [197652] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6159), 1, sym_comment, - ACTIONS(10060), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197556] = 4, + [197667] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6160), 1, sym_comment, - ACTIONS(10106), 3, + ACTIONS(10077), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197571] = 4, + [197682] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6161), 1, sym_comment, - ACTIONS(10106), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197586] = 4, + [197697] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6162), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10117), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197601] = 4, + [197712] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6163), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10117), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197616] = 4, + [197727] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6164), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197631] = 4, + [197742] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6165), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197646] = 4, + [197757] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6166), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197661] = 4, + [197772] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6167), 1, sym_comment, - ACTIONS(10060), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197676] = 4, + [197787] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6168), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197691] = 4, + [197802] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6169), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(10077), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197706] = 4, + [197817] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6170), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197721] = 4, + [197832] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6171), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(10071), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197736] = 4, + [197847] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - STATE(6172), 1, - sym_comment, - ACTIONS(10018), 3, - sym__automatic_semicolon, + ACTIONS(5819), 1, + anon_sym_RPAREN, + ACTIONS(10119), 1, anon_sym_COMMA, - anon_sym_SEMI, - [197751] = 6, + STATE(6172), 2, + sym_comment, + aux_sym_sequence_expression_repeat1, + [197864] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10108), 1, - anon_sym_COMMA, - ACTIONS(10110), 1, - anon_sym_RBRACE, - STATE(6060), 1, - aux_sym_enum_body_repeat1, STATE(6173), 1, sym_comment, - [197770] = 5, + ACTIONS(10035), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197879] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5668), 1, - anon_sym_RPAREN, - ACTIONS(10112), 1, - anon_sym_COMMA, - STATE(6174), 2, + STATE(6174), 1, sym_comment, - aux_sym_sequence_expression_repeat1, - [197787] = 6, + ACTIONS(10071), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197894] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10115), 1, - anon_sym_COMMA, - ACTIONS(10117), 1, - anon_sym_RBRACE, - STATE(6060), 1, - aux_sym_enum_body_repeat1, STATE(6175), 1, sym_comment, - [197806] = 4, + ACTIONS(10073), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197909] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6176), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10077), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197821] = 4, + [197924] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10122), 1, + anon_sym_COMMA, + ACTIONS(10124), 1, + anon_sym_RBRACE, + STATE(6062), 1, + aux_sym_enum_body_repeat1, STATE(6177), 1, sym_comment, - ACTIONS(10056), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197836] = 4, + [197943] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6178), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197851] = 4, + [197958] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10126), 1, + anon_sym_COMMA, + ACTIONS(10128), 1, + anon_sym_RBRACE, + STATE(6062), 1, + aux_sym_enum_body_repeat1, STATE(6179), 1, sym_comment, - ACTIONS(10060), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197866] = 5, + [197977] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10119), 1, + ACTIONS(10130), 1, anon_sym_LBRACE, STATE(6180), 1, sym_comment, - ACTIONS(8687), 2, + ACTIONS(8698), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [197883] = 5, + [197994] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, + ACTIONS(8089), 1, anon_sym_EQ, STATE(6181), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4474), 2, anon_sym_in, anon_sym_of, - [197900] = 6, + [198011] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3313), 1, + ACTIONS(3288), 1, anon_sym_while, - ACTIONS(10121), 1, + ACTIONS(10132), 1, anon_sym_else, STATE(6182), 1, sym_comment, STATE(6602), 1, sym_else_clause, - [197919] = 6, + [198030] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(10123), 1, + ACTIONS(10134), 1, anon_sym_RPAREN, STATE(5803), 1, aux_sym_array_repeat1, STATE(6183), 1, sym_comment, - [197938] = 4, + [198049] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6184), 1, sym_comment, - ACTIONS(10125), 3, + ACTIONS(10136), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197953] = 4, + [198064] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6185), 1, sym_comment, - ACTIONS(10127), 3, + ACTIONS(10138), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197968] = 4, + [198079] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6186), 1, sym_comment, - ACTIONS(10127), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197983] = 4, + [198094] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6187), 1, sym_comment, - ACTIONS(10129), 3, + ACTIONS(10138), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197998] = 4, + [198109] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6188), 1, sym_comment, - ACTIONS(10131), 3, + ACTIONS(10140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198013] = 6, + [198124] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(6001), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, STATE(6189), 1, sym_comment, - [198032] = 6, + ACTIONS(10142), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198139] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, + ACTIONS(5935), 1, anon_sym_COMMA, - ACTIONS(6001), 1, + ACTIONS(6029), 1, anon_sym_RPAREN, - STATE(6183), 1, + STATE(5803), 1, aux_sym_array_repeat1, STATE(6190), 1, sym_comment, - [198051] = 4, + [198158] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, + anon_sym_RPAREN, + STATE(6183), 1, + aux_sym_array_repeat1, STATE(6191), 1, sym_comment, - ACTIONS(10133), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198066] = 6, + [198177] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10135), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10137), 1, + ACTIONS(10146), 1, anon_sym_GT, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, STATE(6192), 1, sym_comment, - [198085] = 4, + [198196] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6193), 1, sym_comment, - ACTIONS(10131), 3, + ACTIONS(10148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198100] = 6, + [198211] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10139), 1, + ACTIONS(10150), 1, anon_sym_COMMA, - ACTIONS(10141), 1, + ACTIONS(10152), 1, anon_sym_GT, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, STATE(6194), 1, sym_comment, - [198119] = 4, + [198230] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6195), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198134] = 6, + [198245] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10143), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - ACTIONS(10145), 1, + ACTIONS(10156), 1, anon_sym_GT, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, STATE(6196), 1, sym_comment, - [198153] = 4, + [198264] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6197), 1, sym_comment, - ACTIONS(10147), 3, + ACTIONS(10158), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198168] = 4, + [198279] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6198), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198183] = 4, + [198294] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6199), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10073), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198198] = 4, + [198309] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6200), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10160), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198213] = 6, + [198324] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5175), 1, - anon_sym_COMMA, - ACTIONS(8665), 1, - anon_sym_RPAREN, - STATE(6174), 1, - aux_sym_sequence_expression_repeat1, STATE(6201), 1, sym_comment, - [198232] = 4, + ACTIONS(9994), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198339] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(8674), 1, + anon_sym_RPAREN, + STATE(6172), 1, + aux_sym_sequence_expression_repeat1, STATE(6202), 1, sym_comment, - ACTIONS(10018), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198247] = 4, + [198358] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6203), 1, sym_comment, - ACTIONS(10149), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198262] = 4, + [198373] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6204), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198277] = 4, + [198388] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6205), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198292] = 4, + [198403] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6206), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198307] = 4, + [198418] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6207), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198322] = 4, + [198433] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10162), 1, + sym_identifier, + STATE(3474), 1, + sym_decorator_member_expression, + STATE(3675), 1, + sym_decorator_call_expression, STATE(6208), 1, sym_comment, - ACTIONS(9985), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198337] = 4, + [198452] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6209), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198352] = 4, + [198467] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6210), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198367] = 4, + [198482] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6211), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198382] = 4, + [198497] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6212), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198397] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198512] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10151), 1, - sym_identifier, - STATE(3481), 1, - sym_decorator_member_expression, - STATE(3663), 1, - sym_decorator_call_expression, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6213), 1, sym_comment, - [198416] = 4, + ACTIONS(9394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198527] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6214), 1, sym_comment, - ACTIONS(9411), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198431] = 4, + [198542] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6215), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198446] = 4, + [198557] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6216), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198461] = 4, + [198572] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6217), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198476] = 4, + [198587] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6218), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10164), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198491] = 4, + [198602] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6219), 1, sym_comment, - ACTIONS(10153), 3, + ACTIONS(10164), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198506] = 4, + [198617] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6220), 1, sym_comment, - ACTIONS(10153), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198521] = 4, + [198632] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6221), 1, sym_comment, - ACTIONS(10155), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198536] = 4, + [198647] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6222), 1, sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198551] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6223), 1, - sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198566] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6224), 1, - sym_comment, - ACTIONS(9377), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198581] = 6, + [198662] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10157), 1, + ACTIONS(10166), 1, sym_identifier, - ACTIONS(10159), 1, + ACTIONS(10168), 1, anon_sym_SEMI, - ACTIONS(10161), 1, + ACTIONS(10170), 1, sym__automatic_semicolon, - STATE(6225), 1, + STATE(6223), 1, sym_comment, - [198600] = 6, + [198681] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10163), 1, + ACTIONS(10172), 1, sym_identifier, - ACTIONS(10165), 1, + ACTIONS(10174), 1, anon_sym_SEMI, - ACTIONS(10167), 1, + ACTIONS(10176), 1, + sym__automatic_semicolon, + STATE(6224), 1, + sym_comment, + [198700] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + STATE(6225), 1, + sym_comment, + ACTIONS(9994), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198715] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6226), 1, sym_comment, - [198619] = 4, + ACTIONS(9388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198730] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6227), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198634] = 4, + [198745] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6228), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198649] = 4, + [198760] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6229), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198664] = 4, + [198775] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6230), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198679] = 4, + [198790] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10180), 1, + anon_sym_LPAREN, + ACTIONS(10182), 1, + anon_sym_await, + STATE(121), 1, + sym__for_header, STATE(6231), 1, sym_comment, - ACTIONS(10018), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198694] = 4, + [198809] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6232), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198709] = 4, + [198824] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6233), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198724] = 4, + [198839] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6234), 1, sym_comment, - ACTIONS(10169), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198739] = 4, + [198854] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6235), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198754] = 4, + [198869] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6236), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198769] = 6, + [198884] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10171), 1, - anon_sym_LPAREN, - ACTIONS(10173), 1, - anon_sym_await, - STATE(98), 1, - sym__for_header, STATE(6237), 1, sym_comment, - [198788] = 4, + ACTIONS(10184), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198899] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6238), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198803] = 4, + [198914] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6239), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10184), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198818] = 4, + [198929] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6240), 1, sym_comment, - ACTIONS(10169), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198833] = 4, + [198944] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6241), 1, sym_comment, - ACTIONS(10169), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198848] = 4, + [198959] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6242), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198863] = 4, + [198974] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6243), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198878] = 6, + [198989] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10175), 1, - anon_sym_COMMA, - ACTIONS(10177), 1, - anon_sym_RBRACE, - STATE(6060), 1, - aux_sym_enum_body_repeat1, STATE(6244), 1, sym_comment, - [198897] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6245), 1, - sym_comment, - ACTIONS(9985), 3, + ACTIONS(10184), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198912] = 6, + [199004] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10179), 1, + ACTIONS(10186), 1, anon_sym_COMMA, - ACTIONS(10181), 1, + ACTIONS(10188), 1, anon_sym_RBRACE, - STATE(6060), 1, + STATE(6062), 1, aux_sym_enum_body_repeat1, + STATE(6245), 1, + sym_comment, + [199023] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6246), 1, sym_comment, - [198931] = 4, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199038] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6247), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198946] = 4, + [199053] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6248), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198961] = 4, + [199068] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10190), 1, + anon_sym_COMMA, + ACTIONS(10192), 1, + anon_sym_RBRACE, + STATE(6062), 1, + aux_sym_enum_body_repeat1, STATE(6249), 1, sym_comment, - ACTIONS(10018), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198976] = 4, + [199087] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6250), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198991] = 4, + [199102] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6251), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199006] = 4, + [199117] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6252), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199021] = 4, + [199132] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6253), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199036] = 4, + [199147] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6254), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199051] = 4, + [199162] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6255), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199066] = 4, + [199177] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6256), 1, sym_comment, - ACTIONS(9985), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199081] = 4, + [199192] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6257), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199096] = 4, + [199207] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6258), 1, sym_comment, - ACTIONS(10169), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199111] = 4, + [199222] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6259), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9998), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199126] = 6, + [199237] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10183), 1, - anon_sym_COMMA, - ACTIONS(10185), 1, - anon_sym_GT, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, STATE(6260), 1, sym_comment, - [199145] = 4, + ACTIONS(10002), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199252] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6261), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199160] = 6, + [199267] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10187), 1, - anon_sym_COMMA, - ACTIONS(10189), 1, - anon_sym_GT, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, STATE(6262), 1, sym_comment, - [199179] = 4, + ACTIONS(10184), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199282] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6263), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199194] = 6, + [199297] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10191), 1, + ACTIONS(10194), 1, anon_sym_COMMA, - ACTIONS(10193), 1, + ACTIONS(10196), 1, anon_sym_GT, - STATE(5934), 1, + STATE(5936), 1, aux_sym_type_arguments_repeat1, STATE(6264), 1, sym_comment, - [199213] = 4, + [199316] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6265), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199228] = 6, + [199331] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8029), 1, - anon_sym_LBRACE, - ACTIONS(8031), 1, - anon_sym_LBRACE_PIPE, - STATE(1181), 1, - sym_object_type, + ACTIONS(10198), 1, + anon_sym_COMMA, + ACTIONS(10200), 1, + anon_sym_GT, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, STATE(6266), 1, sym_comment, - [199247] = 4, + [199350] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6267), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199262] = 4, + [199365] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10202), 1, + anon_sym_COMMA, + ACTIONS(10204), 1, + anon_sym_GT, + STATE(5936), 1, + aux_sym_type_arguments_repeat1, STATE(6268), 1, sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199277] = 4, + [199384] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6269), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199292] = 6, + [199399] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(6039), 1, - anon_sym_RPAREN, + ACTIONS(7991), 1, + anon_sym_LBRACE, + ACTIONS(7993), 1, + anon_sym_LBRACE_PIPE, + STATE(1063), 1, + sym_object_type, STATE(6270), 1, sym_comment, - STATE(6291), 1, - aux_sym_array_repeat1, - [199311] = 6, + [199418] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(6039), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, STATE(6271), 1, sym_comment, - [199330] = 4, + ACTIONS(9388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199433] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6272), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199345] = 4, + [199448] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6273), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199360] = 4, + [199463] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(5937), 1, + anon_sym_RPAREN, STATE(6274), 1, sym_comment, - ACTIONS(10090), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199375] = 4, + STATE(6294), 1, + aux_sym_array_repeat1, + [199482] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(5937), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6275), 1, sym_comment, - ACTIONS(10090), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199390] = 4, + [199501] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6276), 1, sym_comment, - ACTIONS(10153), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199405] = 5, + [199516] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7907), 1, - anon_sym_DOT, STATE(6277), 1, sym_comment, - ACTIONS(10195), 2, + ACTIONS(10164), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [199422] = 5, + [199531] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7909), 1, - anon_sym_DOT, STATE(6278), 1, sym_comment, - ACTIONS(10195), 2, + ACTIONS(10164), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [199439] = 4, + [199546] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6279), 1, sym_comment, - ACTIONS(10153), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199454] = 4, + [199561] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6280), 1, sym_comment, - ACTIONS(10155), 3, + ACTIONS(10178), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199469] = 4, + [199576] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7908), 1, + anon_sym_DOT, STATE(6281), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(10206), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [199484] = 4, + [199593] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7910), 1, + anon_sym_DOT, STATE(6282), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10206), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [199499] = 4, + [199610] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6283), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199514] = 4, + [199625] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6284), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199529] = 4, + [199640] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6285), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199544] = 4, + [199655] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6286), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(10035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199559] = 4, + [199670] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6287), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199574] = 6, + [199685] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8029), 1, - anon_sym_LBRACE, - ACTIONS(8031), 1, - anon_sym_LBRACE_PIPE, - STATE(1086), 1, - sym_object_type, STATE(6288), 1, sym_comment, - [199593] = 4, + ACTIONS(10035), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199700] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6289), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(10002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199608] = 6, + [199715] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10197), 1, - anon_sym_COMMA, - ACTIONS(10199), 1, - anon_sym_RBRACE, - STATE(6244), 1, - aux_sym_enum_body_repeat1, STATE(6290), 1, sym_comment, - [199627] = 6, + ACTIONS(9388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199730] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5901), 1, - anon_sym_COMMA, - ACTIONS(10201), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_array_repeat1, + ACTIONS(7991), 1, + anon_sym_LBRACE, + ACTIONS(7993), 1, + anon_sym_LBRACE_PIPE, + STATE(1034), 1, + sym_object_type, STATE(6291), 1, sym_comment, - [199646] = 4, + [199749] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6292), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199661] = 4, + [199764] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10208), 1, + anon_sym_COMMA, + ACTIONS(10210), 1, + anon_sym_RBRACE, + STATE(6245), 1, + aux_sym_enum_body_repeat1, STATE(6293), 1, sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199676] = 4, + [199783] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(10212), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6294), 1, sym_comment, - ACTIONS(10090), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199691] = 4, + [199802] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6295), 1, sym_comment, - ACTIONS(10090), 3, + ACTIONS(9994), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199706] = 4, + [199817] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6296), 1, sym_comment, - ACTIONS(3615), 2, - anon_sym_else, - anon_sym_while, - [199720] = 5, + ACTIONS(9388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199832] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, - anon_sym_LBRACE, - STATE(5345), 1, - sym_statement_block, STATE(6297), 1, sym_comment, - [199736] = 5, + ACTIONS(9994), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199847] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7587), 1, + ACTIONS(7602), 1, anon_sym_LBRACE, - STATE(1088), 1, + STATE(392), 1, sym_class_body, STATE(6298), 1, sym_comment, - [199752] = 5, + [199863] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7585), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(305), 1, + STATE(4907), 1, sym_class_body, STATE(6299), 1, sym_comment, - [199768] = 5, + [199879] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7585), 1, - anon_sym_LBRACE, - STATE(319), 1, - sym_class_body, + ACTIONS(10214), 1, + anon_sym_SEMI, + ACTIONS(10216), 1, + sym__automatic_semicolon, STATE(6300), 1, sym_comment, - [199784] = 5, + [199895] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10203), 1, - anon_sym_SEMI, - ACTIONS(10205), 1, - sym__automatic_semicolon, + ACTIONS(8954), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_statement_block, STATE(6301), 1, sym_comment, - [199800] = 5, + [199911] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7583), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(1012), 1, - sym_class_body, + STATE(3518), 1, + sym_statement_block, STATE(6302), 1, sym_comment, - [199816] = 5, + [199927] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8943), 1, + ACTIONS(7682), 1, anon_sym_LBRACE, - STATE(317), 1, - sym_statement_block, + STATE(346), 1, + sym_class_body, STATE(6303), 1, sym_comment, - [199832] = 5, + [199943] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8931), 1, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(982), 1, - sym_statement_block, + STATE(1126), 1, + sym_class_body, STATE(6304), 1, sym_comment, - [199848] = 5, + [199959] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7583), 1, - anon_sym_LBRACE, - STATE(1002), 1, - sym_class_body, STATE(6305), 1, sym_comment, - [199864] = 4, + ACTIONS(10218), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199973] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7680), 1, + anon_sym_LBRACE, + STATE(961), 1, + sym_class_body, STATE(6306), 1, sym_comment, - ACTIONS(10207), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199878] = 5, + [199989] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7585), 1, + ACTIONS(7680), 1, anon_sym_LBRACE, - STATE(331), 1, + STATE(1018), 1, sym_class_body, STATE(6307), 1, sym_comment, - [199894] = 5, + [200005] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8943), 1, + ACTIONS(8942), 1, anon_sym_LBRACE, - STATE(307), 1, + STATE(997), 1, sym_statement_block, STATE(6308), 1, sym_comment, - [199910] = 4, + [200021] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7680), 1, + anon_sym_LBRACE, + STATE(999), 1, + sym_class_body, STATE(6309), 1, sym_comment, - ACTIONS(3633), 2, - anon_sym_else, - anon_sym_while, - [199924] = 5, + [200037] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(111), 1, - sym_parenthesized_expression, + ACTIONS(10220), 1, + anon_sym_LBRACE, + STATE(1027), 1, + sym_enum_body, STATE(6310), 1, sym_comment, - [199940] = 5, + [200053] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7587), 1, - anon_sym_LBRACE, - STATE(1025), 1, - sym_class_body, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6311), 1, sym_comment, - [199956] = 5, + ACTIONS(3618), 2, + anon_sym_else, + anon_sym_while, + [200067] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(117), 1, - sym_parenthesized_expression, + ACTIONS(8954), 1, + anon_sym_LBRACE, + STATE(349), 1, + sym_statement_block, STATE(6312), 1, sym_comment, - [199972] = 5, + [200083] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(1195), 1, - sym_class_body, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym_parenthesized_expression, STATE(6313), 1, sym_comment, - [199988] = 5, + [200099] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, + ACTIONS(10222), 1, anon_sym_LPAREN, + STATE(81), 1, + sym_parenthesized_expression, STATE(6314), 1, sym_comment, - STATE(6426), 1, - sym_parenthesized_expression, - [200004] = 5, + [200115] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10213), 1, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(1048), 1, - sym_enum_body, + STATE(1182), 1, + sym_class_body, STATE(6315), 1, sym_comment, - [200020] = 5, + [200131] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7585), 1, + ACTIONS(7682), 1, anon_sym_LBRACE, - STATE(310), 1, + STATE(334), 1, sym_class_body, STATE(6316), 1, sym_comment, - [200036] = 5, + [200147] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7587), 1, - anon_sym_LBRACE, - STATE(1030), 1, - sym_class_body, + ACTIONS(10224), 1, + anon_sym_LPAREN, STATE(6317), 1, sym_comment, - [200052] = 5, + STATE(6431), 1, + sym_parenthesized_expression, + [200163] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(95), 1, - sym_parenthesized_expression, + ACTIONS(7602), 1, + anon_sym_LBRACE, + STATE(364), 1, + sym_class_body, STATE(6318), 1, sym_comment, - [200068] = 5, + [200179] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8931), 1, + ACTIONS(7654), 1, anon_sym_LBRACE, - STATE(981), 1, - sym_statement_block, + STATE(1213), 1, + sym_class_body, STATE(6319), 1, sym_comment, - [200084] = 5, + [200195] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7583), 1, + ACTIONS(7682), 1, anon_sym_LBRACE, - STATE(1011), 1, + STATE(340), 1, sym_class_body, STATE(6320), 1, sym_comment, - [200100] = 5, + [200211] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8642), 1, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(1050), 1, - sym_statement_block, + STATE(1152), 1, + sym_class_body, STATE(6321), 1, sym_comment, - [200116] = 5, + [200227] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, + ACTIONS(10222), 1, anon_sym_LPAREN, - STATE(91), 1, + STATE(95), 1, sym_parenthesized_expression, STATE(6322), 1, sym_comment, - [200132] = 5, + [200243] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10215), 1, - anon_sym_SEMI, - ACTIONS(10217), 1, - sym__automatic_semicolon, + ACTIONS(8942), 1, + anon_sym_LBRACE, + STATE(1011), 1, + sym_statement_block, STATE(6323), 1, sym_comment, - [200148] = 5, + [200259] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10221), 1, - sym__automatic_semicolon, + ACTIONS(7680), 1, + anon_sym_LBRACE, + STATE(1016), 1, + sym_class_body, STATE(6324), 1, sym_comment, - [200164] = 5, + [200275] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7587), 1, - anon_sym_LBRACE, - STATE(1095), 1, - sym_class_body, + ACTIONS(10226), 1, + anon_sym_SEMI, + ACTIONS(10228), 1, + sym__automatic_semicolon, STATE(6325), 1, sym_comment, - [200180] = 5, + [200291] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_parenthesized_expression, + ACTIONS(10230), 1, + anon_sym_SEMI, + ACTIONS(10232), 1, + sym__automatic_semicolon, STATE(6326), 1, sym_comment, - [200196] = 5, + [200307] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10223), 1, - anon_sym_SEMI, - ACTIONS(10225), 1, - sym__automatic_semicolon, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(122), 1, + sym_parenthesized_expression, STATE(6327), 1, sym_comment, - [200212] = 4, + [200323] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10234), 1, + anon_sym_SEMI, + ACTIONS(10236), 1, + sym__automatic_semicolon, STATE(6328), 1, sym_comment, - ACTIONS(3537), 2, - anon_sym_else, - anon_sym_while, - [200226] = 4, + [200339] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7660), 1, + anon_sym_LBRACE, + STATE(1085), 1, + sym_class_body, STATE(6329), 1, sym_comment, - ACTIONS(3553), 2, - anon_sym_else, - anon_sym_while, - [200240] = 4, + [200355] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10220), 1, + anon_sym_LBRACE, + STATE(1195), 1, + sym_enum_body, STATE(6330), 1, sym_comment, - ACTIONS(2428), 2, - anon_sym_else, - anon_sym_while, - [200254] = 5, + [200371] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10213), 1, - anon_sym_LBRACE, - STATE(1166), 1, - sym_enum_body, STATE(6331), 1, sym_comment, - [200270] = 4, + ACTIONS(3680), 2, + anon_sym_else, + anon_sym_while, + [200385] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6332), 1, sym_comment, - ACTIONS(3581), 2, + ACTIONS(3678), 2, anon_sym_else, anon_sym_while, - [200284] = 4, + [200399] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6333), 1, sym_comment, - ACTIONS(2428), 2, + ACTIONS(2357), 2, anon_sym_else, anon_sym_while, - [200298] = 5, + [200413] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(10238), 1, anon_sym_LBRACE, - STATE(3462), 1, + STATE(1180), 1, sym_statement_block, STATE(6334), 1, sym_comment, - [200314] = 5, + [200429] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10227), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(960), 1, + STATE(3492), 1, sym_statement_block, STATE(6335), 1, sym_comment, - [200330] = 5, + [200445] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10229), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, STATE(6336), 1, sym_comment, - [200346] = 4, + ACTIONS(3676), 2, + anon_sym_else, + anon_sym_while, + [200459] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6337), 1, sym_comment, - ACTIONS(3675), 2, + ACTIONS(2357), 2, anon_sym_else, anon_sym_while, - [200360] = 4, + [200473] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_parenthesized_expression, STATE(6338), 1, sym_comment, - ACTIONS(3673), 2, - anon_sym_else, - anon_sym_while, - [200374] = 5, + [200489] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10231), 1, + ACTIONS(10240), 1, anon_sym_LBRACE, - STATE(1125), 1, + STATE(954), 1, sym_statement_block, STATE(6339), 1, sym_comment, - [200390] = 4, + [200505] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10242), 1, + anon_sym_LBRACE, + STATE(926), 1, + sym_statement_block, STATE(6340), 1, sym_comment, - ACTIONS(3671), 2, - anon_sym_else, - anon_sym_while, - [200404] = 4, + [200521] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6341), 1, sym_comment, - ACTIONS(10233), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200418] = 4, + ACTIONS(3672), 2, + anon_sym_else, + anon_sym_while, + [200535] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6342), 1, sym_comment, - ACTIONS(3667), 2, + ACTIONS(3668), 2, anon_sym_else, anon_sym_while, - [200432] = 5, + [200549] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3497), 1, - sym_statement_block, STATE(6343), 1, sym_comment, - [200448] = 5, + ACTIONS(3666), 2, + anon_sym_else, + anon_sym_while, + [200563] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7737), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym_class_body, STATE(6344), 1, sym_comment, - [200464] = 5, + ACTIONS(10244), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200577] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10235), 1, - anon_sym_SEMI, - ACTIONS(10237), 1, - sym__automatic_semicolon, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3491), 1, + sym_statement_block, STATE(6345), 1, sym_comment, - [200480] = 4, + [200593] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6346), 1, sym_comment, - ACTIONS(10239), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200494] = 4, + ACTIONS(3658), 2, + anon_sym_else, + anon_sym_while, + [200607] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8588), 1, + anon_sym_LBRACE, + STATE(1211), 1, + sym_statement_block, STATE(6347), 1, sym_comment, - ACTIONS(3665), 2, - anon_sym_else, - anon_sym_while, - [200508] = 4, + [200623] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7654), 1, + anon_sym_LBRACE, + STATE(1210), 1, + sym_class_body, STATE(6348), 1, sym_comment, - ACTIONS(3663), 2, - anon_sym_else, - anon_sym_while, - [200522] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200639] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6349), 1, sym_comment, - ACTIONS(10241), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [200536] = 4, + ACTIONS(10246), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200653] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(6350), 1, sym_comment, - ACTIONS(2300), 2, - anon_sym_else, - anon_sym_while, - [200550] = 4, + ACTIONS(10248), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [200667] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6351), 1, sym_comment, - ACTIONS(5595), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200564] = 5, + ACTIONS(3656), 2, + anon_sym_else, + anon_sym_while, + [200681] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3488), 1, - sym_statement_block, STATE(6352), 1, sym_comment, - [200580] = 4, + ACTIONS(3654), 2, + anon_sym_else, + anon_sym_while, + [200695] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6353), 1, sym_comment, - ACTIONS(6879), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200594] = 5, + ACTIONS(2189), 2, + anon_sym_else, + anon_sym_while, + [200709] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3492), 1, - sym_statement_block, STATE(6354), 1, sym_comment, - [200610] = 4, + ACTIONS(5723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200723] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3466), 1, + sym_statement_block, STATE(6355), 1, sym_comment, - ACTIONS(3659), 2, - anon_sym_else, - anon_sym_while, - [200624] = 5, + [200739] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, + ACTIONS(10022), 1, anon_sym_LBRACE, - STATE(340), 1, + STATE(963), 1, sym_statement_block, STATE(6356), 1, sym_comment, - [200640] = 5, + [200755] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10005), 1, + ACTIONS(7584), 1, anon_sym_LBRACE, - STATE(978), 1, - sym_statement_block, + STATE(1279), 1, + sym_class_body, STATE(6357), 1, sym_comment, - [200656] = 5, + [200771] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7655), 1, - anon_sym_LBRACE, - STATE(1484), 1, - sym_class_body, STATE(6358), 1, sym_comment, - [200672] = 4, + ACTIONS(3644), 2, + anon_sym_else, + anon_sym_while, + [200785] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3515), 1, + sym_statement_block, STATE(6359), 1, sym_comment, - ACTIONS(3657), 2, - anon_sym_else, - anon_sym_while, - [200686] = 5, + [200801] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3487), 1, - sym_statement_block, STATE(6360), 1, sym_comment, - [200702] = 4, + ACTIONS(6875), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200815] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6361), 1, sym_comment, - ACTIONS(5869), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200716] = 4, + ACTIONS(3642), 2, + anon_sym_else, + anon_sym_while, + [200829] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10250), 1, + anon_sym_SEMI, + ACTIONS(10252), 1, + sym__automatic_semicolon, STATE(6362), 1, sym_comment, - ACTIONS(5796), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200730] = 5, + [200845] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(4675), 1, - sym_formal_parameters, + ACTIONS(4970), 1, + anon_sym_LBRACE, + STATE(3260), 1, + sym_statement_block, STATE(6363), 1, sym_comment, - [200746] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200861] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10243), 1, - sym_identifier, - ACTIONS(10245), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8647), 1, + anon_sym_LBRACE, + STATE(394), 1, + sym_statement_block, STATE(6364), 1, sym_comment, - [200762] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200877] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10247), 1, - sym_identifier, - ACTIONS(10249), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6365), 1, sym_comment, - [200778] = 4, + ACTIONS(5869), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200891] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(4673), 1, + sym_formal_parameters, STATE(6366), 1, sym_comment, - ACTIONS(3655), 2, - anon_sym_else, - anon_sym_while, - [200792] = 5, + [200907] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, STATE(6367), 1, sym_comment, - STATE(6529), 1, - sym__from_clause, - [200808] = 5, + ACTIONS(3640), 2, + anon_sym_else, + anon_sym_while, + [200921] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10251), 1, + ACTIONS(10254), 1, sym_identifier, - ACTIONS(10253), 1, + ACTIONS(10256), 1, anon_sym_STAR, STATE(6368), 1, sym_comment, - [200824] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [200937] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7729), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_class_body, - STATE(6369), 1, - sym_comment, - [200840] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6370), 1, + ACTIONS(10258), 1, + sym_identifier, + ACTIONS(10260), 1, + anon_sym_STAR, + STATE(6369), 1, sym_comment, - ACTIONS(3653), 2, - anon_sym_else, - anon_sym_while, - [200854] = 5, + [200953] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10255), 1, + ACTIONS(10262), 1, sym_identifier, - ACTIONS(10257), 1, + ACTIONS(10264), 1, anon_sym_STAR, - STATE(6371), 1, + STATE(6370), 1, sym_comment, - [200870] = 5, + [200969] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym_class_body, + ACTIONS(8980), 1, + anon_sym_from, + STATE(6371), 1, + sym_comment, + STATE(6538), 1, + sym__from_clause, + [200985] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10266), 1, + sym_identifier, + ACTIONS(10268), 1, + anon_sym_STAR, STATE(6372), 1, sym_comment, - [200886] = 5, + [201001] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7729), 1, - anon_sym_LBRACE, - STATE(1241), 1, - sym_class_body, STATE(6373), 1, sym_comment, - [200902] = 4, + ACTIONS(3638), 2, + anon_sym_else, + anon_sym_while, + [201015] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(1315), 1, + sym_class_body, STATE(6374), 1, sym_comment, - ACTIONS(3651), 2, - anon_sym_else, - anon_sym_while, - [200916] = 4, + [201031] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10022), 1, + anon_sym_LBRACE, + STATE(1013), 1, + sym_statement_block, STATE(6375), 1, sym_comment, - ACTIONS(3649), 2, - anon_sym_else, - anon_sym_while, - [200930] = 4, + [201047] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6376), 1, sym_comment, - ACTIONS(3647), 2, + ACTIONS(3636), 2, anon_sym_else, anon_sym_while, - [200944] = 4, + [201061] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7704), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_class_body, STATE(6377), 1, sym_comment, - ACTIONS(3645), 2, - anon_sym_else, - anon_sym_while, - [200958] = 5, + [201077] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8642), 1, - anon_sym_LBRACE, - STATE(1217), 1, - sym_statement_block, STATE(6378), 1, sym_comment, - [200974] = 4, + ACTIONS(3634), 2, + anon_sym_else, + anon_sym_while, + [201091] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6379), 1, sym_comment, - ACTIONS(3643), 2, + ACTIONS(3632), 2, anon_sym_else, anon_sym_while, - [200988] = 5, + [201105] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - STATE(4150), 1, - sym_formal_parameters, STATE(6380), 1, sym_comment, - [201004] = 4, + ACTIONS(3630), 2, + anon_sym_else, + anon_sym_while, + [201119] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8902), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_statement_block, STATE(6381), 1, sym_comment, - ACTIONS(3641), 2, - anon_sym_else, - anon_sym_while, - [201018] = 5, + [201135] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7737), 1, - anon_sym_LBRACE, - STATE(1213), 1, - sym_class_body, STATE(6382), 1, sym_comment, - [201034] = 4, + ACTIONS(3628), 2, + anon_sym_else, + anon_sym_while, + [201149] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7666), 1, + anon_sym_LBRACE, + STATE(397), 1, + sym_class_body, STATE(6383), 1, sym_comment, - ACTIONS(3639), 2, - anon_sym_else, - anon_sym_while, - [201048] = 4, + [201165] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6384), 1, sym_comment, - ACTIONS(3637), 2, + ACTIONS(3626), 2, anon_sym_else, anon_sym_while, - [201062] = 4, + [201179] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6385), 1, sym_comment, - ACTIONS(3677), 2, + ACTIONS(3624), 2, anon_sym_else, anon_sym_while, - [201076] = 5, + [201193] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, + STATE(1357), 1, + sym_class_body, STATE(6386), 1, sym_comment, - STATE(6681), 1, - sym_statement_block, - [201092] = 5, + [201209] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9781), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(1209), 1, - sym_statement_block, STATE(6387), 1, sym_comment, - [201108] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6679), 1, + sym_statement_block, + [201225] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10259), 1, - sym_identifier, - ACTIONS(10261), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6388), 1, sym_comment, - [201124] = 5, + ACTIONS(3674), 2, + anon_sym_else, + anon_sym_while, + [201239] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5545), 1, - sym__from_clause, STATE(6389), 1, sym_comment, - [201140] = 4, + ACTIONS(3622), 2, + anon_sym_else, + anon_sym_while, + [201253] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6390), 1, sym_comment, - ACTIONS(2312), 2, + ACTIONS(3620), 2, anon_sym_else, anon_sym_while, - [201154] = 4, + [201267] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6391), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6836), 2, anon_sym_COMMA, anon_sym_RBRACE, - [201168] = 5, + [201281] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, STATE(6392), 1, sym_comment, - STATE(6676), 1, - sym_statement_block, - [201184] = 4, + ACTIONS(10270), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201295] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8588), 1, + anon_sym_LBRACE, + STATE(1155), 1, + sym_statement_block, STATE(6393), 1, sym_comment, - ACTIONS(6842), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201198] = 4, + [201311] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10272), 1, + sym_identifier, + ACTIONS(10274), 1, + anon_sym_STAR, STATE(6394), 1, sym_comment, - ACTIONS(3631), 2, - anon_sym_else, - anon_sym_while, - [201212] = 4, + [201327] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, STATE(6395), 1, sym_comment, - ACTIONS(3629), 2, - anon_sym_else, - anon_sym_while, - [201226] = 5, + STATE(6644), 1, + sym_statement_block, + [201343] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10005), 1, - anon_sym_LBRACE, - STATE(980), 1, - sym_statement_block, STATE(6396), 1, sym_comment, - [201242] = 4, + ACTIONS(6832), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201357] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6397), 1, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3592), 2, anon_sym_else, anon_sym_while, - [201256] = 5, + [201371] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3512), 1, - sym_statement_block, STATE(6398), 1, sym_comment, - [201272] = 4, + ACTIONS(3616), 2, + anon_sym_else, + anon_sym_while, + [201385] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6399), 1, sym_comment, - ACTIONS(3625), 2, + ACTIONS(3614), 2, anon_sym_else, anon_sym_while, - [201286] = 5, + [201399] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(7584), 1, anon_sym_LBRACE, - STATE(3509), 1, - sym_statement_block, + STATE(1407), 1, + sym_class_body, STATE(6400), 1, sym_comment, - [201302] = 5, + [201415] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3518), 1, - sym_statement_block, STATE(6401), 1, sym_comment, - [201318] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3606), 2, + anon_sym_else, + anon_sym_while, + [201429] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10263), 1, - sym_identifier, - ACTIONS(10265), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3496), 1, + sym_statement_block, STATE(6402), 1, sym_comment, - [201334] = 4, + [201445] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6403), 1, sym_comment, - ACTIONS(3623), 2, + ACTIONS(3604), 2, anon_sym_else, anon_sym_while, - [201348] = 5, + [201459] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3515), 1, + STATE(3488), 1, sym_statement_block, STATE(6404), 1, sym_comment, - [201364] = 5, + [201475] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3514), 1, - sym_statement_block, + ACTIONS(10079), 1, + sym_identifier, + ACTIONS(10083), 1, + sym_private_property_identifier, STATE(6405), 1, sym_comment, - [201380] = 5, + [201491] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8891), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(1194), 1, + STATE(3485), 1, sym_statement_block, STATE(6406), 1, sym_comment, - [201396] = 5, + [201507] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3508), 1, + STATE(3498), 1, sym_statement_block, STATE(6407), 1, sym_comment, - [201412] = 4, + [201523] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6408), 1, sym_comment, - ACTIONS(2296), 2, + ACTIONS(3602), 2, anon_sym_else, anon_sym_while, - [201426] = 5, + [201537] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7655), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(1477), 1, - sym_class_body, + STATE(3483), 1, + sym_statement_block, STATE(6409), 1, sym_comment, - [201442] = 5, + [201553] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7709), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_class_body, + STATE(3479), 1, + sym_statement_block, STATE(6410), 1, sym_comment, - [201458] = 5, + [201569] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(5805), 1, + STATE(3481), 1, sym_statement_block, STATE(6411), 1, sym_comment, - [201474] = 5, + [201585] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(7654), 1, anon_sym_LBRACE, - STATE(3465), 1, - sym_statement_block, + STATE(1154), 1, + sym_class_body, STATE(6412), 1, sym_comment, - [201490] = 5, + [201601] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(7584), 1, anon_sym_LBRACE, - STATE(3507), 1, - sym_statement_block, + STATE(1493), 1, + sym_class_body, STATE(6413), 1, sym_comment, - [201506] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201617] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10267), 1, - sym_identifier, - ACTIONS(10269), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6414), 1, sym_comment, - [201522] = 5, + ACTIONS(2241), 2, + anon_sym_else, + anon_sym_while, + [201631] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10271), 1, - anon_sym_COMMA, - ACTIONS(10273), 1, - anon_sym_from, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(5806), 1, + sym_statement_block, STATE(6415), 1, sym_comment, - [201538] = 5, + [201647] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(100), 1, - sym_parenthesized_expression, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3471), 1, + sym_statement_block, STATE(6416), 1, sym_comment, - [201554] = 5, + [201663] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7655), 1, + ACTIONS(9779), 1, anon_sym_LBRACE, - STATE(1467), 1, - sym_class_body, + STATE(1148), 1, + sym_statement_block, STATE(6417), 1, sym_comment, - [201570] = 5, + [201679] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3504), 1, - sym_statement_block, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5548), 1, + sym__from_clause, STATE(6418), 1, sym_comment, - [201586] = 5, + [201695] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3506), 1, - sym_statement_block, + ACTIONS(10276), 1, + sym_identifier, + ACTIONS(10278), 1, + anon_sym_STAR, STATE(6419), 1, sym_comment, - [201602] = 5, + [201711] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(88), 1, - sym_parenthesized_expression, STATE(6420), 1, sym_comment, - [201618] = 5, + ACTIONS(2237), 2, + anon_sym_else, + anon_sym_while, + [201725] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3500), 1, + STATE(3472), 1, sym_statement_block, STATE(6421), 1, sym_comment, - [201634] = 5, + [201741] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(4772), 1, + STATE(3478), 1, sym_statement_block, STATE(6422), 1, sym_comment, - [201650] = 5, + [201757] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, + ACTIONS(10280), 1, + anon_sym_COMMA, + ACTIONS(10282), 1, + anon_sym_from, STATE(6423), 1, sym_comment, - STATE(6731), 1, - sym_class_body, - [201666] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201773] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10275), 1, - sym_identifier, - ACTIONS(10277), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3516), 1, + sym_statement_block, STATE(6424), 1, sym_comment, - [201682] = 5, + [201789] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3498), 1, - sym_statement_block, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(99), 1, + sym_parenthesized_expression, STATE(6425), 1, sym_comment, - [201698] = 5, + [201805] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10279), 1, + ACTIONS(7604), 1, anon_sym_LBRACE, - STATE(1542), 1, - sym_switch_body, STATE(6426), 1, sym_comment, - [201714] = 5, + STATE(6746), 1, + sym_class_body, + [201821] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10281), 1, + ACTIONS(10222), 1, anon_sym_LPAREN, - STATE(75), 1, - sym__for_header, + STATE(101), 1, + sym_parenthesized_expression, STATE(6427), 1, sym_comment, - [201730] = 5, + [201837] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(354), 1, - sym_class_body, + STATE(3507), 1, + sym_statement_block, STATE(6428), 1, sym_comment, - [201746] = 4, + [201853] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(4683), 1, + sym_statement_block, STATE(6429), 1, sym_comment, - ACTIONS(10283), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [201760] = 4, + [201869] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10284), 1, + sym_identifier, + ACTIONS(10286), 1, + anon_sym_STAR, STATE(6430), 1, sym_comment, - ACTIONS(10285), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201774] = 4, + [201885] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10288), 1, + anon_sym_LBRACE, + STATE(1565), 1, + sym_switch_body, STATE(6431), 1, sym_comment, - ACTIONS(10287), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201788] = 4, + [201901] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10290), 1, + anon_sym_LPAREN, + STATE(89), 1, + sym__for_header, STATE(6432), 1, sym_comment, - ACTIONS(5612), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201802] = 4, + [201917] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6433), 1, sym_comment, - ACTIONS(5606), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201816] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10292), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [201931] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10291), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6434), 1, sym_comment, - [201832] = 5, + ACTIONS(10294), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201945] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7729), 1, - anon_sym_LBRACE, - STATE(1237), 1, - sym_class_body, STATE(6435), 1, sym_comment, - [201848] = 5, + ACTIONS(10296), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201959] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7737), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_class_body, STATE(6436), 1, sym_comment, - [201864] = 5, + ACTIONS(5555), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201973] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10293), 1, + ACTIONS(10298), 1, sym_identifier, - ACTIONS(10295), 1, - sym_private_property_identifier, + ACTIONS(10300), 1, + anon_sym_STAR, STATE(6437), 1, sym_comment, - [201880] = 4, + [201989] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6438), 1, sym_comment, - ACTIONS(6875), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201894] = 5, + ACTIONS(5832), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202003] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7666), 1, anon_sym_LBRACE, - STATE(6353), 1, - sym_statement_block, + STATE(389), 1, + sym_class_body, STATE(6439), 1, sym_comment, - [201910] = 4, + [202019] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10302), 1, + sym_identifier, + ACTIONS(10304), 1, + sym_private_property_identifier, STATE(6440), 1, sym_comment, - ACTIONS(6887), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201924] = 4, + [202035] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(1428), 1, + sym_class_body, STATE(6441), 1, sym_comment, - ACTIONS(3621), 2, - anon_sym_else, - anon_sym_while, - [201938] = 5, + [202051] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(9779), 1, anon_sym_LBRACE, - STATE(3489), 1, + STATE(1130), 1, sym_statement_block, STATE(6442), 1, sym_comment, - [201954] = 5, + [202067] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(5841), 1, + STATE(3475), 1, sym_statement_block, STATE(6443), 1, sym_comment, - [201970] = 5, + [202083] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(2609), 1, - sym_class_body, STATE(6444), 1, sym_comment, - [201986] = 5, + ACTIONS(6869), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202097] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - STATE(2608), 1, - sym_statement_block, STATE(6445), 1, sym_comment, - [202002] = 5, + ACTIONS(3600), 2, + anon_sym_else, + anon_sym_while, + [202111] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7729), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(1299), 1, - sym_class_body, + STATE(5839), 1, + sym_statement_block, STATE(6446), 1, sym_comment, - [202018] = 4, + [202127] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(6360), 1, + sym_statement_block, STATE(6447), 1, sym_comment, - ACTIONS(2202), 2, - anon_sym_else, - anon_sym_while, - [202032] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202143] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10297), 1, - sym_identifier, - ACTIONS(10299), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(2519), 1, + sym_class_body, STATE(6448), 1, sym_comment, - [202048] = 5, + [202159] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - STATE(3477), 1, + STATE(2518), 1, sym_statement_block, STATE(6449), 1, sym_comment, - [202064] = 5, + [202175] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3478), 1, + STATE(3476), 1, sym_statement_block, STATE(6450), 1, sym_comment, - [202080] = 5, + [202191] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3496), 1, - sym_statement_block, STATE(6451), 1, sym_comment, - [202096] = 5, + ACTIONS(2185), 2, + anon_sym_else, + anon_sym_while, + [202205] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3495), 1, - sym_statement_block, + ACTIONS(10306), 1, + sym_identifier, + ACTIONS(10308), 1, + anon_sym_STAR, STATE(6452), 1, sym_comment, - [202112] = 5, + [202221] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - STATE(3173), 1, - sym_class_body, STATE(6453), 1, sym_comment, - [202128] = 5, + ACTIONS(6858), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202235] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(120), 1, - sym_parenthesized_expression, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(1240), 1, + sym_class_body, STATE(6454), 1, sym_comment, - [202144] = 5, + [202251] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(5850), 1, - sym_class_body, + STATE(3467), 1, + sym_statement_block, STATE(6455), 1, sym_comment, - [202160] = 5, + [202267] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(5852), 1, + STATE(3468), 1, sym_statement_block, STATE(6456), 1, sym_comment, - [202176] = 4, + [202283] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6457), 1, sym_comment, - ACTIONS(3635), 2, - anon_sym_else, - anon_sym_while, - [202190] = 4, + ACTIONS(5810), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202297] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(5850), 1, + sym_class_body, STATE(6458), 1, sym_comment, - ACTIONS(5650), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202204] = 5, + [202313] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(7906), 1, anon_sym_LBRACE, - STATE(3171), 1, + STATE(5852), 1, sym_statement_block, STATE(6459), 1, sym_comment, - [202220] = 4, + [202329] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7604), 1, + anon_sym_LBRACE, STATE(6460), 1, sym_comment, - ACTIONS(10301), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202234] = 5, + STATE(6886), 1, + sym_class_body, + [202345] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(8890), 1, anon_sym_LBRACE, + STATE(363), 1, + sym_statement_block, STATE(6461), 1, sym_comment, - STATE(6881), 1, - sym_class_body, - [202250] = 5, + [202361] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - STATE(3210), 1, - sym_class_body, + STATE(2564), 1, + sym_statement_block, STATE(6462), 1, sym_comment, - [202266] = 4, + [202377] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3470), 1, + sym_statement_block, STATE(6463), 1, sym_comment, - ACTIONS(3615), 2, - anon_sym_else, - anon_sym_while, - [202280] = 5, + [202393] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8879), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(373), 1, - sym_statement_block, + STATE(3213), 1, + sym_class_body, STATE(6464), 1, sym_comment, - [202296] = 5, + [202409] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7264), 1, - anon_sym_LPAREN, - STATE(4317), 1, - sym_formal_parameters, STATE(6465), 1, sym_comment, - [202312] = 4, + ACTIONS(3592), 2, + anon_sym_else, + anon_sym_while, + [202423] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_class_body, STATE(6466), 1, sym_comment, - ACTIONS(3619), 2, - anon_sym_else, - anon_sym_while, - [202326] = 5, + [202439] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10303), 1, - anon_sym_SEMI, - ACTIONS(10305), 1, - sym__automatic_semicolon, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4138), 1, + sym_formal_parameters, STATE(6467), 1, sym_comment, - [202342] = 5, + [202455] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(1186), 1, - sym_class_body, STATE(6468), 1, sym_comment, - [202358] = 4, + ACTIONS(3598), 2, + anon_sym_else, + anon_sym_while, + [202469] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10310), 1, + anon_sym_SEMI, + ACTIONS(10312), 1, + sym__automatic_semicolon, STATE(6469), 1, sym_comment, - ACTIONS(3617), 2, - anon_sym_else, - anon_sym_while, - [202372] = 5, + [202485] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8891), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym_statement_block, STATE(6470), 1, sym_comment, - [202388] = 5, + ACTIONS(3596), 2, + anon_sym_else, + anon_sym_while, + [202499] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(7704), 1, anon_sym_LBRACE, + STATE(1137), 1, + sym_class_body, STATE(6471), 1, sym_comment, - STATE(6657), 1, - sym_class_body, - [202404] = 5, + [202515] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7697), 1, + ACTIONS(7604), 1, anon_sym_LBRACE, - STATE(1183), 1, - sym_class_body, STATE(6472), 1, sym_comment, - [202420] = 5, + STATE(6668), 1, + sym_class_body, + [202531] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8902), 1, anon_sym_LBRACE, - STATE(3467), 1, + STATE(1189), 1, sym_statement_block, STATE(6473), 1, sym_comment, - [202436] = 5, + [202547] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym_parenthesized_expression, + ACTIONS(4970), 1, + anon_sym_LBRACE, + STATE(3161), 1, + sym_statement_block, STATE(6474), 1, sym_comment, - [202452] = 5, + [202563] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7709), 1, + ACTIONS(7704), 1, anon_sym_LBRACE, - STATE(379), 1, + STATE(1141), 1, sym_class_body, STATE(6475), 1, sym_comment, - [202468] = 5, + [202579] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10307), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(936), 1, + STATE(3484), 1, sym_statement_block, STATE(6476), 1, sym_comment, - [202484] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202595] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10309), 1, - sym_identifier, - ACTIONS(10311), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7602), 1, + anon_sym_LBRACE, + STATE(360), 1, + sym_class_body, STATE(6477), 1, sym_comment, - [202500] = 4, + [202611] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6478), 1, sym_comment, - ACTIONS(3615), 2, - anon_sym_else, - anon_sym_while, - [202514] = 5, + ACTIONS(10314), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202625] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7655), 1, - anon_sym_LBRACE, - STATE(1451), 1, - sym_class_body, STATE(6479), 1, sym_comment, - [202530] = 5, + ACTIONS(3592), 2, + anon_sym_else, + anon_sym_while, + [202639] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(10316), 1, + sym_identifier, + ACTIONS(10318), 1, + sym_private_property_identifier, STATE(6480), 1, sym_comment, - STATE(7093), 1, - sym_formal_parameters, - [202546] = 4, + [202655] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6481), 1, sym_comment, - ACTIONS(10313), 2, + ACTIONS(5686), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202560] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202669] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10315), 1, - sym_identifier, - ACTIONS(10317), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7584), 1, + anon_sym_LBRACE, + STATE(1223), 1, + sym_class_body, STATE(6482), 1, sym_comment, - [202576] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202685] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10319), 1, - sym_identifier, - ACTIONS(10321), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(106), 1, + sym_parenthesized_expression, STATE(6483), 1, sym_comment, - [202592] = 5, + [202701] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10323), 1, - anon_sym_LBRACE, - STATE(1629), 1, - sym_statement_block, + ACTIONS(7269), 1, + anon_sym_LPAREN, + STATE(4264), 1, + sym_formal_parameters, STATE(6484), 1, sym_comment, - [202608] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202717] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10325), 1, - sym_identifier, - ACTIONS(10327), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6485), 1, sym_comment, - [202624] = 5, + STATE(7096), 1, + sym_formal_parameters, + [202733] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3472), 1, - sym_statement_block, + ACTIONS(10320), 1, + sym_identifier, + ACTIONS(10322), 1, + sym_private_property_identifier, STATE(6486), 1, sym_comment, - [202640] = 5, + [202749] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10329), 1, - anon_sym_LBRACE, - STATE(1588), 1, - sym_enum_body, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(104), 1, + sym_parenthesized_expression, STATE(6487), 1, sym_comment, - [202656] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6488), 1, - sym_comment, - ACTIONS(10331), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202670] = 5, + [202765] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10333), 1, + ACTIONS(10324), 1, sym_identifier, - ACTIONS(10335), 1, + ACTIONS(10326), 1, sym_private_property_identifier, - STATE(6489), 1, + STATE(6488), 1, sym_comment, - [202686] = 5, - ACTIONS(3), 1, + [202781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3494), 1, + sym_statement_block, + STATE(6489), 1, + sym_comment, + [202797] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10062), 1, - sym_identifier, - ACTIONS(10066), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10328), 1, + anon_sym_LBRACE, + STATE(937), 1, + sym_statement_block, STATE(6490), 1, sym_comment, - [202702] = 5, + [202813] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10337), 1, + ACTIONS(10330), 1, sym_identifier, - ACTIONS(10339), 1, + ACTIONS(10332), 1, sym_private_property_identifier, STATE(6491), 1, sym_comment, - [202718] = 5, + [202829] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8879), 1, - anon_sym_LBRACE, - STATE(382), 1, - sym_statement_block, STATE(6492), 1, sym_comment, - [202734] = 5, + ACTIONS(10334), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202843] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3476), 1, - sym_statement_block, STATE(6493), 1, sym_comment, - [202750] = 5, + ACTIONS(10336), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202857] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7709), 1, + ACTIONS(10338), 1, anon_sym_LBRACE, - STATE(389), 1, - sym_class_body, + STATE(1569), 1, + sym_statement_block, STATE(6494), 1, sym_comment, - [202766] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202873] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9544), 1, - sym_identifier, - ACTIONS(9548), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8890), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_statement_block, STATE(6495), 1, sym_comment, - [202782] = 5, + [202889] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10341), 1, - anon_sym_SEMI, - ACTIONS(10343), 1, - sym__automatic_semicolon, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3465), 1, + sym_statement_block, STATE(6496), 1, sym_comment, - [202798] = 5, + [202905] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(7602), 1, anon_sym_LBRACE, - STATE(3503), 1, - sym_statement_block, + STATE(355), 1, + sym_class_body, STATE(6497), 1, sym_comment, - [202814] = 5, + [202921] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10345), 1, + ACTIONS(10340), 1, anon_sym_LBRACE, - STATE(6379), 1, - sym_switch_body, + STATE(1578), 1, + sym_enum_body, STATE(6498), 1, sym_comment, - [202830] = 4, + [202937] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10342), 1, + anon_sym_SEMI, + ACTIONS(10344), 1, + sym__automatic_semicolon, STATE(6499), 1, sym_comment, - ACTIONS(10347), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202844] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202953] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3502), 1, + sym_statement_block, STATE(6500), 1, sym_comment, - ACTIONS(10349), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [202858] = 4, + [202969] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10346), 1, + sym_identifier, + ACTIONS(10348), 1, + sym_private_property_identifier, STATE(6501), 1, sym_comment, - ACTIONS(10351), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202872] = 5, + [202985] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3501), 1, - sym_statement_block, STATE(6502), 1, sym_comment, - [202888] = 5, + ACTIONS(10350), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202999] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(115), 1, - sym_parenthesized_expression, + ACTIONS(10352), 1, + sym_identifier, + ACTIONS(10354), 1, + sym_private_property_identifier, STATE(6503), 1, sym_comment, - [202904] = 5, + [203015] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_LPAREN, - STATE(6498), 1, - sym_parenthesized_expression, STATE(6504), 1, sym_comment, - [202920] = 5, + ACTIONS(10356), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203029] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_class_body, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_statement_block, STATE(6505), 1, sym_comment, - [202936] = 4, + [203045] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7704), 1, + anon_sym_LBRACE, + STATE(1132), 1, + sym_class_body, STATE(6506), 1, sym_comment, - ACTIONS(10353), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202950] = 5, + [203061] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10355), 1, - anon_sym_SEMI, - ACTIONS(10357), 1, - sym__automatic_semicolon, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym_parenthesized_expression, STATE(6507), 1, sym_comment, - [202966] = 5, + [203077] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10281), 1, + ACTIONS(10224), 1, anon_sym_LPAREN, - STATE(80), 1, - sym__for_header, STATE(6508), 1, sym_comment, - [202982] = 4, + STATE(6515), 1, + sym_parenthesized_expression, + [203093] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6509), 1, sym_comment, - ACTIONS(8308), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [202996] = 4, + ACTIONS(10358), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203107] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10360), 1, + anon_sym_SEMI, + ACTIONS(10362), 1, + sym__automatic_semicolon, STATE(6510), 1, sym_comment, - ACTIONS(5521), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203010] = 5, + [203123] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10359), 1, + ACTIONS(9547), 1, sym_identifier, - ACTIONS(10361), 1, + ACTIONS(9551), 1, sym_private_property_identifier, STATE(6511), 1, sym_comment, - [203026] = 5, + [203139] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10363), 1, - anon_sym_LBRACE, - STATE(1432), 1, - sym_switch_body, + ACTIONS(10364), 1, + sym_identifier, + ACTIONS(10366), 1, + sym_private_property_identifier, STATE(6512), 1, sym_comment, - [203042] = 5, + [203155] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10281), 1, - anon_sym_LPAREN, - STATE(104), 1, - sym__for_header, + ACTIONS(10368), 1, + sym_identifier, + ACTIONS(10370), 1, + sym_private_property_identifier, STATE(6513), 1, sym_comment, - [203058] = 5, + [203171] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10365), 1, - anon_sym_SEMI, - ACTIONS(10367), 1, - sym__automatic_semicolon, STATE(6514), 1, sym_comment, - [203074] = 5, + ACTIONS(10372), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [203185] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(10374), 1, anon_sym_LBRACE, - STATE(3469), 1, - sym_statement_block, + STATE(6382), 1, + sym_switch_body, STATE(6515), 1, sym_comment, - [203090] = 4, + [203201] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10376), 1, + anon_sym_LBRACE, + STATE(1391), 1, + sym_switch_body, STATE(6516), 1, sym_comment, - ACTIONS(3615), 2, - anon_sym_else, - anon_sym_while, - [203104] = 4, + [203217] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6517), 1, sym_comment, - ACTIONS(3577), 2, + ACTIONS(3592), 2, anon_sym_else, anon_sym_while, - [203118] = 4, + [203231] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6518), 1, sym_comment, - ACTIONS(10369), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203132] = 4, + ACTIONS(8237), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [203245] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10290), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__for_header, STATE(6519), 1, sym_comment, - ACTIONS(10371), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203146] = 5, + [203261] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, STATE(6520), 1, sym_comment, - STATE(6811), 1, - sym__from_clause, - [203162] = 5, + ACTIONS(3542), 2, + anon_sym_else, + anon_sym_while, + [203275] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - STATE(3185), 1, + STATE(3188), 1, sym_statement_block, STATE(6521), 1, sym_comment, - [203178] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203291] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9560), 1, - sym_identifier, - ACTIONS(9564), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10378), 1, + anon_sym_SEMI, + ACTIONS(10380), 1, + sym__automatic_semicolon, STATE(6522), 1, sym_comment, - [203194] = 4, + [203307] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6523), 1, sym_comment, - ACTIONS(5427), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203208] = 5, + ACTIONS(3592), 2, + anon_sym_else, + anon_sym_while, + [203321] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, - anon_sym_LBRACE, - STATE(338), 1, - sym_statement_block, + ACTIONS(8980), 1, + anon_sym_from, STATE(6524), 1, sym_comment, - [203224] = 5, + STATE(6827), 1, + sym__from_clause, + [203337] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, - anon_sym_LBRACE, - STATE(358), 1, - sym_class_body, + ACTIONS(10290), 1, + anon_sym_LPAREN, + STATE(117), 1, + sym__for_header, STATE(6525), 1, sym_comment, - [203240] = 4, + [203353] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6526), 1, sym_comment, - ACTIONS(3615), 2, - anon_sym_else, - anon_sym_while, - [203254] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10382), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203367] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10373), 1, - sym_identifier, - ACTIONS(10375), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6527), 1, sym_comment, - [203270] = 4, + ACTIONS(5593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203381] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3508), 1, + sym_statement_block, STATE(6528), 1, sym_comment, - ACTIONS(5690), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203284] = 5, + [203397] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10377), 1, - anon_sym_SEMI, - ACTIONS(10379), 1, - sym__automatic_semicolon, STATE(6529), 1, sym_comment, - [203300] = 5, + ACTIONS(10384), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203411] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(1487), 1, - sym_statement_block, + ACTIONS(9563), 1, + sym_identifier, + ACTIONS(9567), 1, + sym_private_property_identifier, STATE(6530), 1, sym_comment, - [203316] = 5, + [203427] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10381), 1, - anon_sym_SEMI, - ACTIONS(10383), 1, - sym__automatic_semicolon, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(6453), 1, + sym_statement_block, STATE(6531), 1, sym_comment, - [203332] = 5, + [203443] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5510), 1, - sym__from_clause, + ACTIONS(9625), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym_statement_block, STATE(6532), 1, sym_comment, - [203348] = 5, + [203459] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9781), 1, - anon_sym_LBRACE, - STATE(1202), 1, - sym_statement_block, STATE(6533), 1, sym_comment, - [203364] = 5, + ACTIONS(3592), 2, + anon_sym_else, + anon_sym_while, + [203473] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10281), 1, - anon_sym_LPAREN, - STATE(122), 1, - sym__for_header, + ACTIONS(8647), 1, + anon_sym_LBRACE, + STATE(382), 1, + sym_statement_block, STATE(6534), 1, sym_comment, - [203380] = 4, + [203489] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10386), 1, + sym_identifier, + ACTIONS(10388), 1, + anon_sym_STAR, STATE(6535), 1, sym_comment, - ACTIONS(9592), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203394] = 5, + [203505] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3475), 1, - sym_statement_block, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5511), 1, + sym__from_clause, STATE(6536), 1, sym_comment, - [203410] = 4, + [203521] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6537), 1, sym_comment, - ACTIONS(9587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203424] = 4, + ACTIONS(5565), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203535] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10390), 1, + anon_sym_SEMI, + ACTIONS(10392), 1, + sym__automatic_semicolon, STATE(6538), 1, sym_comment, - ACTIONS(10385), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203438] = 5, + [203551] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(6391), 1, - sym_statement_block, + ACTIONS(10394), 1, + anon_sym_SEMI, + ACTIONS(10396), 1, + sym__automatic_semicolon, STATE(6539), 1, sym_comment, - [203454] = 5, + [203567] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3468), 1, + STATE(3490), 1, sym_statement_block, STATE(6540), 1, sym_comment, - [203470] = 4, + [203583] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6541), 1, sym_comment, - ACTIONS(3615), 2, - anon_sym_else, - anon_sym_while, - [203484] = 5, + ACTIONS(5563), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203597] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10387), 1, - anon_sym_SEMI, - ACTIONS(10389), 1, - sym__automatic_semicolon, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(6391), 1, + sym_statement_block, STATE(6542), 1, sym_comment, - [203500] = 4, + [203613] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10398), 1, + anon_sym_SEMI, + ACTIONS(10400), 1, + sym__automatic_semicolon, STATE(6543), 1, sym_comment, - ACTIONS(3611), 2, - anon_sym_else, - anon_sym_while, - [203514] = 5, + [203629] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10391), 1, - anon_sym_SEMI, - ACTIONS(10393), 1, - sym__automatic_semicolon, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3512), 1, + sym_statement_block, STATE(6544), 1, sym_comment, - [203530] = 5, + [203645] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(6545), 1, sym_comment, - STATE(6997), 1, - sym_formal_parameters, - [203546] = 4, + ACTIONS(3588), 2, + anon_sym_else, + anon_sym_while, + [203659] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6546), 1, sym_comment, - ACTIONS(6815), 2, + ACTIONS(6820), 2, anon_sym_COMMA, anon_sym_RBRACE, - [203560] = 5, + [203673] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7642), 1, anon_sym_LBRACE, - STATE(6393), 1, - sym_statement_block, + STATE(2494), 1, + sym_class_body, STATE(6547), 1, sym_comment, - [203576] = 4, + [203689] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7666), 1, + anon_sym_LBRACE, + STATE(380), 1, + sym_class_body, STATE(6548), 1, sym_comment, - ACTIONS(6805), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203590] = 5, + [203705] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(1589), 1, - sym_class_body, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6549), 1, sym_comment, - [203606] = 4, + STATE(7009), 1, + sym_formal_parameters, + [203721] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(6396), 1, + sym_statement_block, STATE(6550), 1, sym_comment, - ACTIONS(10395), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203620] = 4, + [203737] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6551), 1, sym_comment, - ACTIONS(5744), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203634] = 4, + ACTIONS(6824), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203751] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7770), 1, + anon_sym_LBRACE, + STATE(1612), 1, + sym_class_body, STATE(6552), 1, sym_comment, - ACTIONS(10397), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203648] = 5, + [203767] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(2577), 1, - sym_class_body, STATE(6553), 1, sym_comment, - [203664] = 5, + ACTIONS(10402), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203781] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - STATE(2576), 1, - sym_statement_block, STATE(6554), 1, sym_comment, - [203680] = 5, + ACTIONS(9603), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203795] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7709), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_class_body, STATE(6555), 1, sym_comment, - [203696] = 5, + ACTIONS(10404), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203809] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - STATE(2573), 1, + STATE(2483), 1, sym_statement_block, STATE(6556), 1, sym_comment, - [203712] = 5, + [203825] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - STATE(2569), 1, - sym_class_body, + STATE(2481), 1, + sym_statement_block, STATE(6557), 1, sym_comment, - [203728] = 5, + [203841] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(10238), 1, anon_sym_LBRACE, - STATE(3490), 1, + STATE(1081), 1, sym_statement_block, STATE(6558), 1, sym_comment, - [203744] = 4, + [203857] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(2470), 1, + sym_class_body, STATE(6559), 1, sym_comment, - ACTIONS(10399), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203758] = 4, + [203873] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3513), 1, + sym_statement_block, STATE(6560), 1, sym_comment, - ACTIONS(5626), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203772] = 4, + [203889] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3520), 1, + sym_statement_block, STATE(6561), 1, sym_comment, - ACTIONS(5621), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203786] = 4, + [203905] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6562), 1, sym_comment, - ACTIONS(10401), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203800] = 5, + ACTIONS(9598), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203919] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(10406), 1, anon_sym_LBRACE, + STATE(1401), 1, + sym_switch_body, STATE(6563), 1, sym_comment, - STATE(6844), 1, - sym_statement_block, - [203816] = 4, + [203935] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10290), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__for_header, STATE(6564), 1, sym_comment, - ACTIONS(10403), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203830] = 5, + [203951] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5509), 1, - sym__from_clause, STATE(6565), 1, sym_comment, - [203846] = 5, + ACTIONS(10408), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203965] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3482), 1, - sym_statement_block, STATE(6566), 1, sym_comment, - [203862] = 5, + ACTIONS(10410), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203979] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7737), 1, - anon_sym_LBRACE, - STATE(1136), 1, - sym_class_body, STATE(6567), 1, sym_comment, - [203878] = 5, + ACTIONS(10412), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203993] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(3511), 1, - sym_statement_block, STATE(6568), 1, sym_comment, - [203894] = 4, + STATE(6846), 1, + sym_statement_block, + [204009] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6569), 1, sym_comment, - ACTIONS(10405), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203908] = 4, + ACTIONS(5603), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204023] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6570), 1, sym_comment, - ACTIONS(3609), 2, - anon_sym_else, - anon_sym_while, - [203922] = 5, + ACTIONS(5605), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204037] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10407), 1, + ACTIONS(10414), 1, anon_sym_LBRACE, - STATE(1255), 1, - sym_switch_body, + STATE(1321), 1, + sym_statement_block, STATE(6571), 1, sym_comment, - [203938] = 5, + [204053] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - STATE(2616), 1, - sym_statement_block, STATE(6572), 1, sym_comment, - [203954] = 5, + ACTIONS(3584), 2, + anon_sym_else, + anon_sym_while, + [204067] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(5928), 1, - sym_class_body, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5510), 1, + sym__from_clause, STATE(6573), 1, sym_comment, - [203970] = 5, + [204083] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(5931), 1, - sym_statement_block, + STATE(5930), 1, + sym_class_body, STATE(6574), 1, sym_comment, - [203986] = 5, + [204099] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(5932), 1, - sym_class_body, + STATE(3480), 1, + sym_statement_block, STATE(6575), 1, sym_comment, - [204002] = 4, + [204115] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7906), 1, + anon_sym_LBRACE, + STATE(5959), 1, + sym_statement_block, STATE(6576), 1, sym_comment, - ACTIONS(3609), 2, - anon_sym_else, - anon_sym_while, - [204016] = 5, + [204131] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(2565), 1, + STATE(5934), 1, sym_class_body, STATE(6577), 1, sym_comment, - [204032] = 5, + [204147] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5463), 1, - sym__from_clause, STATE(6578), 1, sym_comment, - [204048] = 5, + ACTIONS(3584), 2, + anon_sym_else, + anon_sym_while, + [204161] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10231), 1, + ACTIONS(7642), 1, anon_sym_LBRACE, - STATE(1116), 1, - sym_statement_block, + STATE(2469), 1, + sym_class_body, STATE(6579), 1, sym_comment, - [204064] = 4, + [204177] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6580), 1, sym_comment, - ACTIONS(3607), 2, + ACTIONS(3582), 2, anon_sym_else, anon_sym_while, - [204078] = 5, + [204191] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(3154), 1, + STATE(3157), 1, sym_class_body, STATE(6581), 1, sym_comment, - [204094] = 5, + [204207] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10409), 1, - anon_sym_LBRACE, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5465), 1, + sym__from_clause, STATE(6582), 1, sym_comment, - STATE(6898), 1, - sym_object, - [204110] = 4, + [204223] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10416), 1, + anon_sym_LPAREN, + STATE(982), 1, + sym_parenthesized_expression, STATE(6583), 1, sym_comment, - ACTIONS(10411), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204124] = 4, + [204239] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6584), 1, sym_comment, - ACTIONS(3605), 2, - anon_sym_else, - anon_sym_while, - [204138] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10418), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204253] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10413), 1, - sym_identifier, - ACTIONS(10415), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10420), 1, + anon_sym_SEMI, + ACTIONS(10422), 1, + sym__automatic_semicolon, STATE(6585), 1, sym_comment, - [204154] = 5, + [204269] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10417), 1, - anon_sym_LPAREN, - STATE(999), 1, - sym_parenthesized_expression, STATE(6586), 1, sym_comment, - [204170] = 4, + ACTIONS(3580), 2, + anon_sym_else, + anon_sym_while, + [204283] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10424), 1, + sym_identifier, + ACTIONS(10426), 1, + sym_private_property_identifier, STATE(6587), 1, sym_comment, - ACTIONS(9286), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204184] = 5, + [204299] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10419), 1, + ACTIONS(10428), 1, anon_sym_LBRACE, - STATE(1413), 1, - sym_enum_body, STATE(6588), 1, sym_comment, - [204200] = 5, + STATE(6904), 1, + sym_object, + [204315] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(10430), 1, anon_sym_LBRACE, - STATE(3517), 1, - sym_statement_block, + STATE(1425), 1, + sym_enum_body, STATE(6589), 1, sym_comment, - [204216] = 4, + [204331] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6590), 1, sym_comment, - ACTIONS(5742), 2, + ACTIONS(5750), 2, sym__automatic_semicolon, anon_sym_SEMI, - [204230] = 4, + [204345] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6591), 1, sym_comment, - ACTIONS(9071), 2, + ACTIONS(5748), 2, sym__automatic_semicolon, anon_sym_SEMI, - [204244] = 4, + [204359] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3514), 1, + sym_statement_block, STATE(6592), 1, sym_comment, - ACTIONS(10421), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204258] = 4, + [204375] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6593), 1, sym_comment, - ACTIONS(10423), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204272] = 5, + ACTIONS(3578), 2, + anon_sym_else, + anon_sym_while, + [204389] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(5189), 1, - sym_formal_parameters, STATE(6594), 1, sym_comment, - [204288] = 5, + ACTIONS(9082), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204403] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(6595), 1, sym_comment, - STATE(7155), 1, - sym_formal_parameters, - [204304] = 4, + ACTIONS(10432), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204417] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6596), 1, sym_comment, - ACTIONS(3603), 2, - anon_sym_else, - anon_sym_while, - [204318] = 5, + ACTIONS(10434), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204431] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(7604), 1, anon_sym_LBRACE, STATE(6597), 1, sym_comment, - STATE(6800), 1, + STATE(6802), 1, sym_class_body, - [204334] = 5, + [204447] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(5884), 1, - sym_type_annotation, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(5192), 1, + sym_formal_parameters, STATE(6598), 1, sym_comment, - [204350] = 4, + [204463] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6599), 1, sym_comment, - ACTIONS(3601), 2, - anon_sym_else, - anon_sym_while, - [204364] = 5, + STATE(7165), 1, + sym_formal_parameters, + [204479] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3463), 1, - sym_statement_block, STATE(6600), 1, sym_comment, - [204380] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3576), 2, + anon_sym_else, + anon_sym_while, + [204493] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10425), 1, - sym_identifier, - STATE(5998), 1, - sym_nested_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5192), 1, + anon_sym_LBRACE, + STATE(2578), 1, + sym_statement_block, STATE(6601), 1, sym_comment, - [204396] = 4, + [204509] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6602), 1, sym_comment, - ACTIONS(3597), 2, + ACTIONS(3570), 2, anon_sym_else, anon_sym_while, - [204410] = 4, + [204523] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6603), 1, sym_comment, - ACTIONS(3595), 2, - anon_sym_else, - anon_sym_while, - [204424] = 5, + ACTIONS(9297), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204537] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10329), 1, - anon_sym_LBRACE, - STATE(1594), 1, - sym_enum_body, + ACTIONS(7271), 1, + anon_sym_COLON, + STATE(5883), 1, + sym_type_annotation, STATE(6604), 1, sym_comment, - [204440] = 4, + [204553] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10436), 1, + sym_identifier, + STATE(6001), 1, + sym_nested_identifier, STATE(6605), 1, sym_comment, - ACTIONS(10427), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204454] = 5, + [204569] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_class_body, STATE(6606), 1, sym_comment, - [204470] = 4, + ACTIONS(3568), 2, + anon_sym_else, + anon_sym_while, + [204583] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6607), 1, sym_comment, - ACTIONS(10429), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [204484] = 5, + ACTIONS(10438), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204597] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10431), 1, - anon_sym_LPAREN, - STATE(1340), 1, - sym_parenthesized_expression, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3511), 1, + sym_statement_block, STATE(6608), 1, sym_comment, - [204500] = 4, + [204613] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10340), 1, + anon_sym_LBRACE, + STATE(1570), 1, + sym_enum_body, STATE(6609), 1, sym_comment, - ACTIONS(3593), 2, - anon_sym_else, - anon_sym_while, - [204514] = 5, + [204629] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10323), 1, - anon_sym_LBRACE, - STATE(1566), 1, - sym_statement_block, STATE(6610), 1, sym_comment, - [204530] = 5, + ACTIONS(10440), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204643] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10433), 1, - anon_sym_SEMI, - ACTIONS(10435), 1, - sym__automatic_semicolon, STATE(6611), 1, sym_comment, - [204546] = 4, + ACTIONS(3566), 2, + anon_sym_else, + anon_sym_while, + [204657] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10442), 1, + anon_sym_SEMI, + ACTIONS(10444), 1, + sym__automatic_semicolon, STATE(6612), 1, sym_comment, - ACTIONS(3591), 2, - anon_sym_else, - anon_sym_while, - [204560] = 4, + [204673] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6613), 1, sym_comment, - ACTIONS(3589), 2, + ACTIONS(3560), 2, anon_sym_else, anon_sym_while, - [204574] = 5, + [204687] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(5246), 1, - sym_formal_parameters, + ACTIONS(10446), 1, + anon_sym_SEMI, + ACTIONS(10448), 1, + sym__automatic_semicolon, STATE(6614), 1, sym_comment, - [204590] = 5, + [204703] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10437), 1, - anon_sym_SEMI, - ACTIONS(10439), 1, - sym__automatic_semicolon, STATE(6615), 1, sym_comment, - [204606] = 5, + ACTIONS(3558), 2, + anon_sym_else, + anon_sym_while, + [204717] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(2567), 1, + sym_class_body, STATE(6616), 1, sym_comment, - STATE(7253), 1, - sym_formal_parameters, - [204622] = 5, + [204733] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3486), 1, - sym_statement_block, STATE(6617), 1, sym_comment, - [204638] = 4, + ACTIONS(3552), 2, + anon_sym_else, + anon_sym_while, + [204747] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(5249), 1, + sym_formal_parameters, STATE(6618), 1, sym_comment, - ACTIONS(3587), 2, - anon_sym_else, - anon_sym_while, - [204652] = 4, + [204763] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3504), 1, + sym_statement_block, STATE(6619), 1, sym_comment, - ACTIONS(3583), 2, - anon_sym_else, - anon_sym_while, - [204666] = 4, + [204779] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6620), 1, sym_comment, - ACTIONS(3583), 2, - anon_sym_else, - anon_sym_while, - [204680] = 4, + STATE(7271), 1, + sym_formal_parameters, + [204795] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6621), 1, sym_comment, - ACTIONS(3583), 2, + ACTIONS(3548), 2, anon_sym_else, anon_sym_while, - [204694] = 5, + [204809] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3466), 1, - sym_statement_block, STATE(6622), 1, sym_comment, - [204710] = 5, + ACTIONS(3548), 2, + anon_sym_else, + anon_sym_while, + [204823] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10441), 1, - anon_sym_SEMI, - ACTIONS(10443), 1, - sym__automatic_semicolon, STATE(6623), 1, sym_comment, - [204726] = 5, + ACTIONS(3548), 2, + anon_sym_else, + anon_sym_while, + [204837] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3479), 1, + STATE(3519), 1, sym_statement_block, STATE(6624), 1, sym_comment, - [204742] = 5, + [204853] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10419), 1, - anon_sym_LBRACE, - STATE(1379), 1, - sym_enum_body, + ACTIONS(10450), 1, + anon_sym_SEMI, + ACTIONS(10452), 1, + sym__automatic_semicolon, STATE(6625), 1, sym_comment, - [204758] = 5, + [204869] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10445), 1, + ACTIONS(10430), 1, anon_sym_LBRACE, - STATE(1377), 1, - sym_statement_block, + STATE(1289), 1, + sym_enum_body, STATE(6626), 1, sym_comment, - [204774] = 4, + [204885] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3510), 1, + sym_statement_block, STATE(6627), 1, sym_comment, - ACTIONS(9616), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [204788] = 5, + [204901] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10447), 1, - anon_sym_SEMI, - ACTIONS(10449), 1, - sym__automatic_semicolon, + ACTIONS(10454), 1, + anon_sym_LBRACE, + STATE(1285), 1, + sym_statement_block, STATE(6628), 1, sym_comment, - [204804] = 5, + [204917] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, - anon_sym_LBRACE, - STATE(4932), 1, - sym_statement_block, STATE(6629), 1, sym_comment, - [204820] = 5, + ACTIONS(10456), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [204931] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3485), 1, - sym_statement_block, + ACTIONS(10458), 1, + anon_sym_LPAREN, + STATE(1250), 1, + sym_parenthesized_expression, STATE(6630), 1, sym_comment, - [204836] = 5, + [204947] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10451), 1, - anon_sym_LBRACE, - STATE(4986), 1, - sym_enum_body, + ACTIONS(10460), 1, + anon_sym_SEMI, + ACTIONS(10462), 1, + sym__automatic_semicolon, STATE(6631), 1, sym_comment, - [204852] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204963] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10453), 1, - sym_identifier, - ACTIONS(10455), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10338), 1, + anon_sym_LBRACE, + STATE(1628), 1, + sym_statement_block, STATE(6632), 1, sym_comment, - [204868] = 5, + [204979] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10457), 1, - anon_sym_SEMI, - ACTIONS(10459), 1, - sym__automatic_semicolon, STATE(6633), 1, sym_comment, - [204884] = 5, + ACTIONS(9629), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [204993] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10461), 1, - anon_sym_SEMI, - ACTIONS(10463), 1, - sym__automatic_semicolon, + ACTIONS(10464), 1, + sym_identifier, + ACTIONS(10466), 1, + sym_private_property_identifier, STATE(6634), 1, sym_comment, - [204900] = 4, + [205009] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3487), 1, + sym_statement_block, STATE(6635), 1, sym_comment, - ACTIONS(5757), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204914] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6636), 1, - sym_comment, - ACTIONS(5740), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204928] = 5, + [205025] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10465), 1, + ACTIONS(10468), 1, sym_identifier, - ACTIONS(10467), 1, + ACTIONS(10470), 1, sym_private_property_identifier, - STATE(6637), 1, + STATE(6636), 1, sym_comment, - [204944] = 5, - ACTIONS(3), 1, + [205041] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7906), 1, + anon_sym_LBRACE, + STATE(4937), 1, + sym_statement_block, + STATE(6637), 1, + sym_comment, + [205057] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10469), 1, - sym_identifier, - ACTIONS(10471), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10472), 1, + anon_sym_LBRACE, + STATE(4989), 1, + sym_enum_body, STATE(6638), 1, sym_comment, - [204960] = 5, + [205073] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10473), 1, - anon_sym_SEMI, - ACTIONS(10475), 1, - sym__automatic_semicolon, STATE(6639), 1, sym_comment, - [204976] = 5, + ACTIONS(5730), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205087] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10477), 1, + ACTIONS(10474), 1, sym_identifier, - ACTIONS(10479), 1, + ACTIONS(10476), 1, sym_private_property_identifier, STATE(6640), 1, sym_comment, - [204992] = 5, + [205103] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7651), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_class_body, STATE(6641), 1, sym_comment, - [205008] = 4, + ACTIONS(5698), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205117] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10478), 1, + sym_identifier, + ACTIONS(10480), 1, + sym_private_property_identifier, STATE(6642), 1, sym_comment, - ACTIONS(5842), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205022] = 4, + [205133] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6643), 1, sym_comment, - ACTIONS(3541), 2, + ACTIONS(3544), 2, anon_sym_else, anon_sym_while, - [205036] = 5, + [205147] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10481), 1, - anon_sym_in, - ACTIONS(10483), 1, - anon_sym_COLON, STATE(6644), 1, sym_comment, - [205052] = 5, + ACTIONS(6844), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205161] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - STATE(3158), 1, - sym_class_body, + ACTIONS(10482), 1, + anon_sym_SEMI, + ACTIONS(10484), 1, + sym__automatic_semicolon, STATE(6645), 1, sym_comment, - [205068] = 4, + [205177] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10486), 1, + anon_sym_in, + ACTIONS(10488), 1, + anon_sym_COLON, STATE(6646), 1, sym_comment, - ACTIONS(3575), 2, - anon_sym_else, - anon_sym_while, - [205082] = 4, + [205193] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4936), 1, + anon_sym_LPAREN, + STATE(2583), 1, + sym_arguments, STATE(6647), 1, sym_comment, - ACTIONS(3573), 2, - anon_sym_else, - anon_sym_while, - [205096] = 4, + [205209] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10490), 1, + anon_sym_SEMI, + ACTIONS(10492), 1, + sym__automatic_semicolon, STATE(6648), 1, sym_comment, - ACTIONS(3571), 2, - anon_sym_else, - anon_sym_while, - [205110] = 4, + [205225] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6649), 1, sym_comment, - ACTIONS(3567), 2, + ACTIONS(3540), 2, anon_sym_else, anon_sym_while, - [205124] = 5, + [205239] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - STATE(3108), 1, - sym_statement_block, STATE(6650), 1, sym_comment, - [205140] = 4, + ACTIONS(3538), 2, + anon_sym_else, + anon_sym_while, + [205253] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6651), 1, sym_comment, - ACTIONS(3561), 2, + ACTIONS(3532), 2, anon_sym_else, anon_sym_while, - [205154] = 5, + [205267] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - STATE(3179), 1, + STATE(3111), 1, sym_statement_block, STATE(6652), 1, sym_comment, - [205170] = 5, + [205283] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(1254), 1, - sym_statement_block, STATE(6653), 1, sym_comment, - [205186] = 4, + ACTIONS(3528), 2, + anon_sym_else, + anon_sym_while, + [205297] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6654), 1, sym_comment, - ACTIONS(3561), 2, + ACTIONS(3528), 2, anon_sym_else, anon_sym_while, - [205200] = 5, + [205311] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, + ACTIONS(7610), 1, anon_sym_LBRACE, - STATE(3393), 1, + STATE(451), 1, sym_class_body, STATE(6655), 1, sym_comment, - [205216] = 5, + [205327] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8781), 1, - anon_sym_in, - ACTIONS(8783), 1, - anon_sym_of, + ACTIONS(9625), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_statement_block, STATE(6656), 1, sym_comment, - [205232] = 4, + [205343] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5192), 1, + anon_sym_LBRACE, + STATE(2649), 1, + sym_statement_block, STATE(6657), 1, sym_comment, - ACTIONS(3495), 2, - anon_sym_else, - anon_sym_while, - [205246] = 4, + [205359] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(3382), 1, + sym_class_body, STATE(6658), 1, sym_comment, - ACTIONS(5750), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205260] = 5, + [205375] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - STATE(3240), 1, - sym_statement_block, + ACTIONS(8790), 1, + anon_sym_in, + ACTIONS(8792), 1, + anon_sym_of, STATE(6659), 1, sym_comment, - [205276] = 5, + [205391] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(6397), 1, - sym_statement_block, STATE(6660), 1, sym_comment, - [205292] = 4, + ACTIONS(5643), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205405] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6661), 1, sym_comment, - ACTIONS(10485), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205306] = 5, + ACTIONS(5651), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205419] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(3248), 1, - sym_statement_block, + STATE(3092), 1, + sym_class_body, STATE(6662), 1, sym_comment, - [205322] = 5, + [205435] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - STATE(3247), 1, - sym_class_body, + STATE(3105), 1, + sym_statement_block, STATE(6663), 1, sym_comment, - [205338] = 4, + [205451] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6664), 1, sym_comment, - ACTIONS(6819), 2, + ACTIONS(10494), 2, anon_sym_COMMA, anon_sym_RBRACE, - [205352] = 5, + [205465] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, STATE(6546), 1, sym_statement_block, STATE(6665), 1, sym_comment, - [205368] = 5, + [205481] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(2539), 1, - sym_statement_block, + STATE(3236), 1, + sym_class_body, STATE(6666), 1, sym_comment, - [205384] = 4, + [205497] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4970), 1, + anon_sym_LBRACE, + STATE(3240), 1, + sym_statement_block, STATE(6667), 1, sym_comment, - ACTIONS(6838), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205398] = 5, + [205513] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(6548), 1, - sym_statement_block, STATE(6668), 1, sym_comment, - [205414] = 4, + ACTIONS(3554), 2, + anon_sym_else, + anon_sym_while, + [205527] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6669), 1, sym_comment, - ACTIONS(6830), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205428] = 5, + ACTIONS(3526), 2, + anon_sym_else, + anon_sym_while, + [205541] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7667), 1, - anon_sym_LBRACE, - STATE(1288), 1, - sym_class_body, STATE(6670), 1, sym_comment, - [205444] = 5, + ACTIONS(6816), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205555] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8698), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(1287), 1, + STATE(6551), 1, sym_statement_block, STATE(6671), 1, sym_comment, - [205460] = 5, + [205571] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10281), 1, - anon_sym_LPAREN, - STATE(82), 1, - sym__for_header, STATE(6672), 1, sym_comment, - [205476] = 4, + ACTIONS(6848), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205585] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7600), 1, + anon_sym_LBRACE, + STATE(1480), 1, + sym_class_body, STATE(6673), 1, sym_comment, - ACTIONS(10487), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205490] = 5, + [205601] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(8709), 1, anon_sym_LBRACE, - STATE(1522), 1, - sym_class_body, + STATE(1483), 1, + sym_statement_block, STATE(6674), 1, sym_comment, - [205506] = 5, + [205617] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7651), 1, + ACTIONS(10414), 1, anon_sym_LBRACE, - STATE(408), 1, - sym_class_body, + STATE(1356), 1, + sym_statement_block, STATE(6675), 1, sym_comment, - [205522] = 4, + [205633] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6676), 1, sym_comment, - ACTIONS(6819), 2, + ACTIONS(10496), 2, anon_sym_COMMA, anon_sym_RBRACE, - [205536] = 5, + [205647] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7770), 1, anon_sym_LBRACE, - STATE(6440), 1, - sym_statement_block, + STATE(1536), 1, + sym_class_body, STATE(6677), 1, sym_comment, - [205552] = 4, + [205663] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(462), 1, + sym_class_body, STATE(6678), 1, sym_comment, - ACTIONS(10489), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205566] = 4, + [205679] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6679), 1, sym_comment, - ACTIONS(3559), 2, - anon_sym_else, - anon_sym_while, - [205580] = 5, + ACTIONS(6854), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205693] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - STATE(3101), 1, - sym_class_body, + STATE(3131), 1, + sym_statement_block, STATE(6680), 1, sym_comment, - [205596] = 4, + [205709] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6681), 1, sym_comment, - ACTIONS(6883), 2, + ACTIONS(10498), 2, anon_sym_COMMA, anon_sym_RBRACE, - [205610] = 5, + [205723] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10491), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(6403), 1, - sym_enum_body, + STATE(3104), 1, + sym_class_body, STATE(6682), 1, sym_comment, - [205626] = 5, + [205739] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(1538), 1, - sym_class_body, + STATE(6444), 1, + sym_statement_block, STATE(6683), 1, sym_comment, - [205642] = 5, + [205755] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(6438), 1, + STATE(6401), 1, sym_statement_block, STATE(6684), 1, sym_comment, - [205658] = 4, + [205771] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6685), 1, sym_comment, - ACTIONS(6809), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205672] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3590), 2, + anon_sym_else, + anon_sym_while, + [205785] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10493), 1, - sym_identifier, - ACTIONS(10495), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7770), 1, + anon_sym_LBRACE, + STATE(1533), 1, + sym_class_body, STATE(6686), 1, sym_comment, - [205688] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205801] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9638), 1, - sym_identifier, - ACTIONS(9642), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6687), 1, sym_comment, - [205704] = 5, + ACTIONS(6844), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205815] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(5099), 1, - sym_formal_parameters, + ACTIONS(10500), 1, + anon_sym_LBRACE, + STATE(6408), 1, + sym_enum_body, STATE(6688), 1, sym_comment, - [205720] = 4, + [205831] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6689), 1, sym_comment, - ACTIONS(9949), 2, + ACTIONS(6836), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [205734] = 4, + anon_sym_RBRACE, + [205845] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10502), 1, + anon_sym_SEMI, + ACTIONS(10504), 1, + sym__automatic_semicolon, STATE(6690), 1, sym_comment, - ACTIONS(10497), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [205748] = 4, + [205861] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6691), 1, sym_comment, - ACTIONS(5861), 2, + ACTIONS(5711), 2, sym__automatic_semicolon, anon_sym_SEMI, - [205762] = 4, + [205875] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6692), 1, sym_comment, - ACTIONS(10499), 2, + ACTIONS(9964), 2, anon_sym_COMMA, - anon_sym_GT, - [205776] = 5, + anon_sym_RBRACK, + [205889] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, STATE(6693), 1, sym_comment, - STATE(6861), 1, - sym_type_annotation, - [205792] = 4, + ACTIONS(10506), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [205903] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10508), 1, + anon_sym_SEMI, + ACTIONS(10510), 1, + sym__automatic_semicolon, STATE(6694), 1, sym_comment, - ACTIONS(8549), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [205806] = 5, + [205919] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(6695), 1, sym_comment, - STATE(6996), 1, - sym_formal_parameters, - [205822] = 4, + ACTIONS(10512), 2, + anon_sym_COMMA, + anon_sym_GT, + [205933] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10514), 1, + sym_identifier, + ACTIONS(10516), 1, + sym_private_property_identifier, STATE(6696), 1, sym_comment, - ACTIONS(10501), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205836] = 4, + [205949] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, + STATE(5101), 1, + sym_formal_parameters, STATE(6697), 1, sym_comment, - ACTIONS(6842), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205850] = 4, + [205965] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4322), 1, + anon_sym_COLON, STATE(6698), 1, sym_comment, - ACTIONS(10503), 2, - anon_sym_COMMA, - anon_sym_GT, - [205864] = 4, + STATE(6864), 1, + sym_type_annotation, + [205981] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6699), 1, sym_comment, - ACTIONS(6815), 2, + ACTIONS(8492), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [205878] = 5, + anon_sym_RBRACK, + [205995] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(3404), 1, - sym_class_body, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6700), 1, sym_comment, - [205894] = 4, + STATE(7001), 1, + sym_formal_parameters, + [206011] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9668), 1, + sym_identifier, + ACTIONS(9672), 1, + sym_private_property_identifier, STATE(6701), 1, sym_comment, - ACTIONS(9266), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205908] = 4, + [206027] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6702), 1, sym_comment, - ACTIONS(6805), 2, + ACTIONS(10518), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [205922] = 5, + anon_sym_GT, + [206041] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10505), 1, - anon_sym_SEMI, - ACTIONS(10507), 1, - sym__automatic_semicolon, STATE(6703), 1, sym_comment, - [205938] = 4, + ACTIONS(6832), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206055] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(3391), 1, + sym_class_body, STATE(6704), 1, sym_comment, - ACTIONS(5859), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205952] = 5, + [206071] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10509), 1, - anon_sym_LBRACE, - STATE(1405), 1, - sym_enum_body, STATE(6705), 1, sym_comment, - [205968] = 5, + ACTIONS(6820), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206085] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - STATE(4408), 1, - sym_formal_parameters, STATE(6706), 1, sym_comment, - [205984] = 4, + ACTIONS(5709), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206099] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6707), 1, sym_comment, - ACTIONS(10511), 2, + ACTIONS(10520), 2, sym__automatic_semicolon, anon_sym_SEMI, - [205998] = 4, + [206113] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6708), 1, sym_comment, - ACTIONS(10513), 2, + ACTIONS(10522), 2, sym__automatic_semicolon, anon_sym_SEMI, - [206012] = 4, + [206127] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4586), 1, + sym_formal_parameters, STATE(6709), 1, sym_comment, - ACTIONS(3555), 2, - anon_sym_else, - anon_sym_while, - [206026] = 5, + [206143] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - STATE(2458), 1, - sym_statement_block, STATE(6710), 1, sym_comment, - [206042] = 4, + ACTIONS(10524), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206157] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6711), 1, sym_comment, - ACTIONS(3613), 2, + ACTIONS(3522), 2, anon_sym_else, anon_sym_while, - [206056] = 5, + [206171] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8673), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - STATE(427), 1, + STATE(2615), 1, sym_statement_block, STATE(6712), 1, sym_comment, - [206072] = 4, + [206187] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6713), 1, sym_comment, - ACTIONS(10515), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206086] = 5, + ACTIONS(3520), 2, + anon_sym_else, + anon_sym_while, + [206201] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, + ACTIONS(7642), 1, anon_sym_LBRACE, - STATE(2460), 1, + STATE(2592), 1, sym_class_body, STATE(6714), 1, sym_comment, - [206102] = 5, + [206217] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8682), 1, anon_sym_LBRACE, - STATE(3519), 1, + STATE(446), 1, sym_statement_block, STATE(6715), 1, sym_comment, - [206118] = 4, + [206233] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6716), 1, sym_comment, - ACTIONS(10517), 2, + ACTIONS(10526), 2, sym__automatic_semicolon, anon_sym_SEMI, - [206132] = 5, + [206247] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(8330), 1, anon_sym_LBRACE, - STATE(3516), 1, + STATE(3500), 1, sym_statement_block, STATE(6717), 1, sym_comment, - [206148] = 5, + [206263] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10519), 1, - anon_sym_LPAREN, - STATE(3669), 1, - sym_arguments, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3469), 1, + sym_statement_block, STATE(6718), 1, sym_comment, - [206164] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206279] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10523), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6719), 1, sym_comment, - [206180] = 5, + ACTIONS(10528), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206293] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10525), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym_switch_body, STATE(6720), 1, sym_comment, - [206196] = 4, + ACTIONS(3520), 2, + anon_sym_else, + anon_sym_while, + [206307] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10290), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym__for_header, STATE(6721), 1, sym_comment, - ACTIONS(3551), 2, - anon_sym_else, - anon_sym_while, - [206210] = 5, + [206323] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10527), 1, - anon_sym_SEMI, - ACTIONS(10529), 1, - sym__automatic_semicolon, + ACTIONS(10530), 1, + anon_sym_LBRACE, + STATE(1032), 1, + sym_switch_body, STATE(6722), 1, sym_comment, - [206226] = 5, + [206339] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(9678), 1, anon_sym_LBRACE, - STATE(3470), 1, + STATE(1131), 1, sym_statement_block, STATE(6723), 1, sym_comment, - [206242] = 4, + [206355] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6724), 1, sym_comment, - ACTIONS(5849), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206256] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3518), 2, + anon_sym_else, + anon_sym_while, + [206369] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10531), 1, - sym_identifier, - ACTIONS(10533), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10532), 1, + anon_sym_LBRACE, + STATE(1354), 1, + sym_enum_body, STATE(6725), 1, sym_comment, - [206272] = 5, + [206385] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10451), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_enum_body, + ACTIONS(10534), 1, + anon_sym_SEMI, + ACTIONS(10536), 1, + sym__automatic_semicolon, STATE(6726), 1, sym_comment, - [206288] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206401] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10535), 1, - sym_identifier, - ACTIONS(10537), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6727), 1, sym_comment, - [206304] = 5, + ACTIONS(5688), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206415] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10539), 1, - anon_sym_LPAREN, - STATE(1047), 1, - sym_parenthesized_expression, STATE(6728), 1, sym_comment, - [206320] = 4, + ACTIONS(6824), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206429] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10538), 1, + sym_identifier, + ACTIONS(10540), 1, + sym_private_property_identifier, STATE(6729), 1, sym_comment, - ACTIONS(3549), 2, - anon_sym_else, - anon_sym_while, - [206334] = 5, + [206445] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10445), 1, - anon_sym_LBRACE, - STATE(1281), 1, - sym_statement_block, STATE(6730), 1, sym_comment, - [206350] = 4, + ACTIONS(3516), 2, + anon_sym_else, + anon_sym_while, + [206459] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10542), 1, + sym_identifier, + ACTIONS(10544), 1, + sym_private_property_identifier, STATE(6731), 1, sym_comment, - ACTIONS(3473), 2, - anon_sym_else, - anon_sym_while, - [206364] = 5, + [206475] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - STATE(3112), 1, - sym_class_body, STATE(6732), 1, sym_comment, - [206380] = 4, + ACTIONS(9277), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206489] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10546), 1, + sym_identifier, + ACTIONS(10548), 1, + sym_private_property_identifier, STATE(6733), 1, sym_comment, - ACTIONS(3475), 2, - anon_sym_else, - anon_sym_while, - [206394] = 5, + [206505] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4284), 1, + ACTIONS(10550), 1, anon_sym_LPAREN, - STATE(5476), 1, + STATE(3652), 1, sym_arguments, STATE(6734), 1, sym_comment, - [206410] = 4, + [206521] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(6013), 1, + sym_class_body, STATE(6735), 1, sym_comment, - ACTIONS(3547), 2, - anon_sym_else, - anon_sym_while, - [206424] = 5, + [206537] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, + ACTIONS(10472), 1, anon_sym_LBRACE, - STATE(3505), 1, - sym_statement_block, + STATE(4959), 1, + sym_enum_body, STATE(6736), 1, sym_comment, - [206440] = 5, + [206553] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(6012), 1, - sym_class_body, + ACTIONS(10552), 1, + anon_sym_LPAREN, + STATE(1108), 1, + sym_parenthesized_expression, STATE(6737), 1, sym_comment, - [206456] = 4, + [206569] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10454), 1, + anon_sym_LBRACE, + STATE(1462), 1, + sym_statement_block, STATE(6738), 1, sym_comment, - ACTIONS(10541), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206470] = 5, + [206585] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10543), 1, - anon_sym_SEMI, - ACTIONS(10545), 1, - sym__automatic_semicolon, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3477), 1, + sym_statement_block, STATE(6739), 1, sym_comment, - [206486] = 5, + [206601] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - STATE(3236), 1, - sym_statement_block, STATE(6740), 1, sym_comment, - [206502] = 5, + ACTIONS(10554), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206615] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(3398), 1, - sym_class_body, + ACTIONS(10556), 1, + anon_sym_SEMI, + ACTIONS(10558), 1, + sym__automatic_semicolon, STATE(6741), 1, sym_comment, - [206518] = 5, + [206631] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10547), 1, - anon_sym_SEMI, - ACTIONS(10549), 1, - sym__automatic_semicolon, STATE(6742), 1, sym_comment, - [206534] = 4, + ACTIONS(3514), 2, + anon_sym_else, + anon_sym_while, + [206645] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(2585), 1, + sym_class_body, STATE(6743), 1, sym_comment, - ACTIONS(10551), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [206548] = 4, + [206661] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(3375), 1, + sym_class_body, STATE(6744), 1, sym_comment, - ACTIONS(3545), 2, - anon_sym_else, - anon_sym_while, - [206562] = 5, + [206677] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10553), 1, - anon_sym_SEMI, - ACTIONS(10555), 1, - sym__automatic_semicolon, STATE(6745), 1, sym_comment, - [206578] = 4, + ACTIONS(10560), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [206691] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6746), 1, sym_comment, - ACTIONS(7549), 2, - anon_sym_in, - anon_sym_of, - [206592] = 5, + ACTIONS(3662), 2, + anon_sym_else, + anon_sym_while, + [206705] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, - anon_sym_LBRACE, - STATE(2466), 1, - sym_class_body, STATE(6747), 1, sym_comment, - [206608] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3512), 2, + anon_sym_else, + anon_sym_while, + [206719] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10557), 1, - sym_identifier, - ACTIONS(10559), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3509), 1, + sym_statement_block, STATE(6748), 1, sym_comment, - [206624] = 4, + [206735] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6749), 1, sym_comment, - ACTIONS(3483), 2, - anon_sym_else, - anon_sym_while, - [206638] = 5, + ACTIONS(7566), 2, + anon_sym_in, + anon_sym_of, + [206749] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(97), 1, - sym_parenthesized_expression, STATE(6750), 1, sym_comment, - [206654] = 5, + ACTIONS(3512), 2, + anon_sym_else, + anon_sym_while, + [206763] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, + ACTIONS(4305), 1, anon_sym_LPAREN, - STATE(6512), 1, - sym_parenthesized_expression, + STATE(5479), 1, + sym_arguments, STATE(6751), 1, sym_comment, - [206670] = 4, + [206779] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10562), 1, + sym_identifier, + ACTIONS(10564), 1, + anon_sym_STAR, STATE(6752), 1, sym_comment, - ACTIONS(3543), 2, - anon_sym_else, - anon_sym_while, - [206684] = 4, + [206795] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6753), 1, sym_comment, - ACTIONS(3543), 2, + ACTIONS(3510), 2, anon_sym_else, anon_sym_while, - [206698] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206809] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10561), 1, - sym_identifier, - ACTIONS(10563), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(92), 1, + sym_parenthesized_expression, STATE(6754), 1, sym_comment, - [206714] = 4, + [206825] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(6516), 1, + sym_parenthesized_expression, STATE(6755), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [206728] = 5, + [206841] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - STATE(3243), 1, - sym_arguments, STATE(6756), 1, sym_comment, - [206744] = 4, + ACTIONS(3508), 2, + anon_sym_else, + anon_sym_while, + [206855] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6757), 1, sym_comment, - ACTIONS(3467), 2, + ACTIONS(3660), 2, anon_sym_else, anon_sym_while, - [206758] = 4, + [206869] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3087), 1, + sym_class_body, STATE(6758), 1, sym_comment, - ACTIONS(8515), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206772] = 4, + [206885] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10566), 1, + anon_sym_SEMI, + ACTIONS(10568), 1, + sym__automatic_semicolon, STATE(6759), 1, sym_comment, - ACTIONS(8507), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206786] = 5, + [206901] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10565), 1, - anon_sym_SEMI, - ACTIONS(10567), 1, - sym__automatic_semicolon, + ACTIONS(10570), 1, + sym_identifier, + ACTIONS(10572), 1, + sym_private_property_identifier, STATE(6760), 1, sym_comment, - [206802] = 4, + [206917] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6761), 1, sym_comment, - ACTIONS(2146), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206816] = 5, + ACTIONS(3652), 2, + anon_sym_else, + anon_sym_while, + [206931] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - STATE(3249), 1, - sym_class_body, STATE(6762), 1, sym_comment, - [206832] = 4, + ACTIONS(2155), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206945] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(5446), 1, + anon_sym_LPAREN, + STATE(3181), 1, + sym_arguments, STATE(6763), 1, sym_comment, - ACTIONS(3469), 2, - anon_sym_else, - anon_sym_while, - [206846] = 5, + [206961] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(6745), 1, - sym__from_clause, STATE(6764), 1, sym_comment, - [206862] = 4, + ACTIONS(10574), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206975] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10576), 1, + anon_sym_LBRACE, + STATE(921), 1, + sym_statement_block, STATE(6765), 1, sym_comment, - ACTIONS(10569), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206876] = 4, + [206991] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(93), 1, + sym_parenthesized_expression, STATE(6766), 1, sym_comment, - ACTIONS(9903), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206890] = 5, + [207007] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5490), 1, - sym__from_clause, STATE(6767), 1, sym_comment, - [206906] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3650), 2, + anon_sym_else, + anon_sym_while, + [207021] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10571), 1, - sym_identifier, - ACTIONS(10573), 1, - anon_sym_STAR, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8980), 1, + anon_sym_from, STATE(6768), 1, sym_comment, - [206922] = 5, + STATE(6775), 1, + sym__from_clause, + [207037] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10575), 1, - anon_sym_SEMI, - ACTIONS(10577), 1, - sym__automatic_semicolon, STATE(6769), 1, sym_comment, - [206938] = 4, + ACTIONS(9914), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207051] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6770), 1, sym_comment, - ACTIONS(8539), 2, + ACTIONS(8324), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [206952] = 5, + [207065] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10579), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_statement_block, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5494), 1, + sym__from_clause, STATE(6771), 1, sym_comment, - [206968] = 4, + [207081] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6772), 1, sym_comment, - ACTIONS(10581), 2, + ACTIONS(10578), 2, anon_sym_COMMA, anon_sym_RBRACE, - [206982] = 4, + [207095] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6773), 1, sym_comment, - ACTIONS(3539), 2, - anon_sym_else, - anon_sym_while, - [206996] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8326), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [207109] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10583), 1, - sym_identifier, - ACTIONS(10585), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3183), 1, + sym_class_body, STATE(6774), 1, sym_comment, - [207012] = 5, + [207125] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(10580), 1, + anon_sym_SEMI, + ACTIONS(10582), 1, + sym__automatic_semicolon, STATE(6775), 1, sym_comment, - STATE(7079), 1, - sym_formal_parameters, - [207028] = 4, + [207141] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(96), 1, + sym_parenthesized_expression, STATE(6776), 1, sym_comment, - ACTIONS(6830), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207042] = 5, + [207157] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(81), 1, - sym_parenthesized_expression, STATE(6777), 1, sym_comment, - [207058] = 4, + ACTIONS(3506), 2, + anon_sym_else, + anon_sym_while, + [207171] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10584), 1, + sym_identifier, + ACTIONS(10586), 1, + sym_private_property_identifier, STATE(6778), 1, sym_comment, - ACTIONS(10587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207072] = 4, + [207187] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6779), 1, sym_comment, - ACTIONS(9427), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207086] = 5, + STATE(7076), 1, + sym_formal_parameters, + [207203] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4927), 1, - anon_sym_LPAREN, - STATE(2467), 1, - sym_arguments, STATE(6780), 1, sym_comment, - [207102] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3648), 2, + anon_sym_else, + anon_sym_while, + [207217] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10589), 1, - sym_identifier, - STATE(5868), 1, - sym_nested_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6781), 1, sym_comment, - [207118] = 4, + ACTIONS(10588), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207231] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6782), 1, sym_comment, - ACTIONS(3535), 2, - anon_sym_else, - anon_sym_while, - [207132] = 5, + ACTIONS(9438), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207245] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7667), 1, - anon_sym_LBRACE, - STATE(1220), 1, - sym_class_body, + ACTIONS(10590), 1, + anon_sym_SEMI, + ACTIONS(10592), 1, + sym__automatic_semicolon, STATE(6783), 1, sym_comment, - [207148] = 5, + [207261] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(87), 1, - sym_parenthesized_expression, STATE(6784), 1, sym_comment, - [207164] = 5, + ACTIONS(3504), 2, + anon_sym_else, + anon_sym_while, + [207275] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5554), 1, - sym__from_clause, + ACTIONS(10594), 1, + sym_identifier, + ACTIONS(10596), 1, + anon_sym_STAR, STATE(6785), 1, sym_comment, - [207180] = 5, + [207291] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(74), 1, - sym_parenthesized_expression, STATE(6786), 1, sym_comment, - [207196] = 5, + ACTIONS(8314), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [207305] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10591), 1, - anon_sym_SEMI, - ACTIONS(10593), 1, - sym__automatic_semicolon, STATE(6787), 1, sym_comment, - [207212] = 4, + ACTIONS(10598), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207319] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10600), 1, + anon_sym_SEMI, + ACTIONS(10602), 1, + sym__automatic_semicolon, STATE(6788), 1, sym_comment, - ACTIONS(3533), 2, - anon_sym_else, - anon_sym_while, - [207226] = 4, + [207335] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5558), 1, + sym__from_clause, STATE(6789), 1, sym_comment, - ACTIONS(3531), 2, - anon_sym_else, - anon_sym_while, - [207240] = 5, + [207351] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(7654), 1, anon_sym_LBRACE, - STATE(3238), 1, + STATE(1196), 1, sym_class_body, STATE(6790), 1, sym_comment, - [207256] = 5, + [207367] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(3237), 1, - sym_statement_block, + STATE(3166), 1, + sym_class_body, STATE(6791), 1, sym_comment, - [207272] = 4, + [207383] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6792), 1, sym_comment, - ACTIONS(3551), 2, + ACTIONS(3500), 2, anon_sym_else, anon_sym_while, - [207286] = 5, + [207397] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(6793), 1, sym_comment, - STATE(7277), 1, - sym_formal_parameters, - [207302] = 4, + ACTIONS(3500), 2, + anon_sym_else, + anon_sym_while, + [207411] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4970), 1, + anon_sym_LBRACE, + STATE(3167), 1, + sym_statement_block, STATE(6794), 1, sym_comment, - ACTIONS(3529), 2, - anon_sym_else, - anon_sym_while, - [207316] = 4, + [207427] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(4970), 1, + anon_sym_LBRACE, + STATE(3178), 1, + sym_statement_block, STATE(6795), 1, sym_comment, - ACTIONS(6838), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207330] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [207443] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10595), 1, - sym_identifier, - STATE(5746), 1, - sym_nested_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6796), 1, sym_comment, - [207346] = 4, + ACTIONS(3500), 2, + anon_sym_else, + anon_sym_while, + [207457] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6797), 1, sym_comment, - ACTIONS(3529), 2, - anon_sym_else, - anon_sym_while, - [207360] = 4, + STATE(7278), 1, + sym_formal_parameters, + [207473] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6798), 1, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3494), 2, anon_sym_else, anon_sym_while, - [207374] = 5, + [207487] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9659), 1, - anon_sym_LBRACE, - STATE(1162), 1, - sym_statement_block, STATE(6799), 1, sym_comment, - [207390] = 4, + ACTIONS(3646), 2, + anon_sym_else, + anon_sym_while, + [207501] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10604), 1, + sym_identifier, + STATE(5739), 1, + sym_nested_identifier, STATE(6800), 1, sym_comment, - ACTIONS(3525), 2, - anon_sym_else, - anon_sym_while, - [207404] = 5, + [207517] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4884), 1, + sym_class_body, STATE(6801), 1, sym_comment, - STATE(7366), 1, - sym_formal_parameters, - [207420] = 4, + [207533] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6802), 1, sym_comment, - ACTIONS(3523), 2, + ACTIONS(3490), 2, anon_sym_else, anon_sym_while, - [207434] = 5, + [207547] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(4882), 1, + STATE(3179), 1, sym_class_body, STATE(6803), 1, sym_comment, - [207450] = 5, + [207563] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - STATE(3235), 1, - sym_class_body, STATE(6804), 1, sym_comment, - [207466] = 4, + ACTIONS(3488), 2, + anon_sym_else, + anon_sym_while, + [207577] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6805), 1, sym_comment, - ACTIONS(6891), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207480] = 5, + STATE(7363), 1, + sym_formal_parameters, + [207593] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(6667), 1, - sym_statement_block, STATE(6806), 1, sym_comment, - [207496] = 4, + ACTIONS(3486), 2, + anon_sym_else, + anon_sym_while, + [207607] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10606), 1, + sym_identifier, + STATE(5871), 1, + sym_nested_identifier, STATE(6807), 1, sym_comment, - ACTIONS(3519), 2, - anon_sym_else, - anon_sym_while, - [207510] = 4, + [207623] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6808), 1, sym_comment, - ACTIONS(6834), 2, + ACTIONS(6883), 2, anon_sym_COMMA, anon_sym_RBRACE, - [207524] = 5, + [207637] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(6669), 1, + STATE(6670), 1, sym_statement_block, STATE(6809), 1, sym_comment, - [207540] = 5, + [207653] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10597), 1, - anon_sym_SEMI, - ACTIONS(10599), 1, - sym__automatic_semicolon, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(79), 1, + sym_parenthesized_expression, STATE(6810), 1, sym_comment, - [207556] = 5, + [207669] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10601), 1, - anon_sym_SEMI, - ACTIONS(10603), 1, - sym__automatic_semicolon, STATE(6811), 1, sym_comment, - [207572] = 5, + ACTIONS(6828), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207683] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7667), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(1490), 1, - sym_class_body, + STATE(6672), 1, + sym_statement_block, STATE(6812), 1, sym_comment, - [207588] = 5, + [207699] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8698), 1, - anon_sym_LBRACE, - STATE(1489), 1, - sym_statement_block, STATE(6813), 1, sym_comment, - [207604] = 4, + ACTIONS(3484), 2, + anon_sym_else, + anon_sym_while, + [207713] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7600), 1, + anon_sym_LBRACE, + STATE(1287), 1, + sym_class_body, STATE(6814), 1, sym_comment, - ACTIONS(3517), 2, - anon_sym_else, - anon_sym_while, - [207618] = 4, + [207729] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7600), 1, + anon_sym_LBRACE, + STATE(1495), 1, + sym_class_body, STATE(6815), 1, sym_comment, - ACTIONS(3515), 2, - anon_sym_else, - anon_sym_while, - [207632] = 5, + [207745] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7667), 1, + ACTIONS(8709), 1, anon_sym_LBRACE, - STATE(1486), 1, - sym_class_body, + STATE(1496), 1, + sym_statement_block, STATE(6816), 1, sym_comment, - [207648] = 4, + [207761] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6817), 1, sym_comment, - ACTIONS(10605), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207662] = 5, + ACTIONS(3482), 2, + anon_sym_else, + anon_sym_while, + [207775] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10607), 1, - anon_sym_LBRACE, - STATE(1407), 1, - sym_statement_block, STATE(6818), 1, sym_comment, - [207678] = 4, + ACTIONS(3480), 2, + anon_sym_else, + anon_sym_while, + [207789] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7600), 1, + anon_sym_LBRACE, + STATE(1500), 1, + sym_class_body, STATE(6819), 1, sym_comment, - ACTIONS(9886), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207692] = 4, + [207805] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6820), 1, sym_comment, - ACTIONS(9164), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207706] = 4, + ACTIONS(10608), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207819] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6821), 1, sym_comment, - ACTIONS(3513), 2, - anon_sym_else, - anon_sym_while, - [207720] = 5, + ACTIONS(6848), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207833] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - STATE(3219), 1, - sym_class_body, STATE(6822), 1, sym_comment, - [207736] = 5, + ACTIONS(9899), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207847] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7651), 1, - anon_sym_LBRACE, - STATE(424), 1, - sym_class_body, STATE(6823), 1, sym_comment, - [207752] = 5, + ACTIONS(6816), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207861] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10609), 1, - anon_sym_SEMI, - ACTIONS(10611), 1, - sym__automatic_semicolon, + ACTIONS(10610), 1, + sym_identifier, + ACTIONS(10612), 1, + sym_private_property_identifier, STATE(6824), 1, sym_comment, - [207768] = 4, + [207877] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3206), 1, + sym_class_body, STATE(6825), 1, sym_comment, - ACTIONS(3471), 2, - anon_sym_else, - anon_sym_while, - [207782] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [207893] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10613), 1, - sym_identifier, - ACTIONS(10615), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(434), 1, + sym_class_body, STATE(6826), 1, sym_comment, - [207798] = 5, + [207909] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10509), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_enum_body, + ACTIONS(10614), 1, + anon_sym_SEMI, + ACTIONS(10616), 1, + sym__automatic_semicolon, STATE(6827), 1, sym_comment, - [207814] = 5, + [207925] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(6808), 1, - sym_statement_block, + ACTIONS(10618), 1, + anon_sym_SEMI, + ACTIONS(10620), 1, + sym__automatic_semicolon, STATE(6828), 1, sym_comment, - [207830] = 4, + [207941] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10622), 1, + sym_identifier, + ACTIONS(10624), 1, + sym_private_property_identifier, STATE(6829), 1, sym_comment, - ACTIONS(10617), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207844] = 4, + [207957] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(6811), 1, + sym_statement_block, STATE(6830), 1, sym_comment, - ACTIONS(9724), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207858] = 5, + [207973] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LPAREN, - STATE(4452), 1, - sym_formal_parameters, STATE(6831), 1, sym_comment, - [207874] = 5, + ACTIONS(3524), 2, + anon_sym_else, + anon_sym_while, + [207987] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(1515), 1, - sym_class_body, + ACTIONS(10626), 1, + sym_identifier, + STATE(6282), 1, + sym_nested_identifier, STATE(6832), 1, sym_comment, - [207890] = 5, + [208003] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4934), 1, - sym_class_body, STATE(6833), 1, sym_comment, - [207906] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208017] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10619), 1, - sym_identifier, - STATE(6278), 1, - sym_nested_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(4546), 1, + sym_formal_parameters, STATE(6834), 1, sym_comment, - [207922] = 4, + [208033] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7770), 1, + anon_sym_LBRACE, + STATE(1543), 1, + sym_class_body, STATE(6835), 1, sym_comment, - ACTIONS(3513), 2, - anon_sym_else, - anon_sym_while, - [207936] = 5, + [208049] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_LBRACE, - STATE(3480), 1, - sym_statement_block, + ACTIONS(10628), 1, + anon_sym_SEMI, + ACTIONS(10630), 1, + sym__automatic_semicolon, STATE(6836), 1, sym_comment, - [207952] = 4, + [208065] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6837), 1, sym_comment, - ACTIONS(3511), 2, + ACTIONS(3480), 2, anon_sym_else, anon_sym_while, - [207966] = 4, + [208079] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6838), 1, sym_comment, - ACTIONS(9873), 2, - anon_sym_COMMA, - anon_sym_GT, - [207980] = 5, + ACTIONS(3478), 2, + anon_sym_else, + anon_sym_while, + [208093] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(6805), 1, - sym_statement_block, STATE(6839), 1, sym_comment, - [207996] = 4, + ACTIONS(10632), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208107] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4883), 1, + sym_class_body, STATE(6840), 1, sym_comment, - ACTIONS(3509), 2, - anon_sym_else, - anon_sym_while, - [208010] = 5, + [208123] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10621), 1, - anon_sym_LPAREN, - STATE(2078), 1, - sym_arguments, STATE(6841), 1, sym_comment, - [208026] = 4, + ACTIONS(9886), 2, + anon_sym_COMMA, + anon_sym_GT, + [208137] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6842), 1, sym_comment, - ACTIONS(10623), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208040] = 4, + ACTIONS(3476), 2, + anon_sym_else, + anon_sym_while, + [208151] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10634), 1, + anon_sym_LPAREN, + STATE(2002), 1, + sym_arguments, STATE(6843), 1, sym_comment, - ACTIONS(10625), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208054] = 4, + [208167] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8330), 1, + anon_sym_LBRACE, + STATE(3517), 1, + sym_statement_block, STATE(6844), 1, sym_comment, - ACTIONS(6846), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [208068] = 5, + [208183] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(7955), 1, anon_sym_LBRACE, - STATE(3262), 1, - sym_class_body, + STATE(6808), 1, + sym_statement_block, STATE(6845), 1, sym_comment, - [208084] = 5, + [208199] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(6846), 1, sym_comment, - STATE(7120), 1, - sym_formal_parameters, - [208100] = 4, + ACTIONS(6895), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208213] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(9678), 1, + anon_sym_LBRACE, + STATE(1217), 1, + sym_statement_block, STATE(6847), 1, sym_comment, - ACTIONS(3477), 2, - anon_sym_else, - anon_sym_while, - [208114] = 4, + [208229] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4896), 1, + sym_class_body, STATE(6848), 1, sym_comment, - ACTIONS(10627), 2, - anon_sym_COMMA, - anon_sym_GT, - [208128] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208245] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10629), 1, - sym_identifier, - ACTIONS(10631), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6849), 1, sym_comment, - [208144] = 4, + STATE(7124), 1, + sym_formal_parameters, + [208261] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3196), 1, + sym_class_body, STATE(6850), 1, sym_comment, - ACTIONS(10633), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208158] = 4, + [208277] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6851), 1, sym_comment, - ACTIONS(9207), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208172] = 5, + ACTIONS(10636), 2, + anon_sym_COMMA, + anon_sym_GT, + [208291] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(6324), 1, - sym__from_clause, STATE(6852), 1, sym_comment, - [208188] = 5, + ACTIONS(3610), 2, + anon_sym_else, + anon_sym_while, + [208305] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(7906), 1, anon_sym_LBRACE, - STATE(3234), 1, + STATE(5349), 1, sym_statement_block, STATE(6853), 1, sym_comment, - [208204] = 5, + [208321] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10635), 1, - anon_sym_SEMI, - ACTIONS(10637), 1, - sym__automatic_semicolon, + ACTIONS(8980), 1, + anon_sym_from, + STATE(6326), 1, + sym__from_clause, STATE(6854), 1, sym_comment, - [208220] = 5, + [208337] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10491), 1, - anon_sym_LBRACE, - STATE(6599), 1, - sym_enum_body, STATE(6855), 1, sym_comment, - [208236] = 4, + ACTIONS(10638), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208351] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6856), 1, sym_comment, - ACTIONS(10639), 2, + ACTIONS(10640), 2, sym__automatic_semicolon, anon_sym_SEMI, - [208250] = 4, + [208365] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6857), 1, sym_comment, - ACTIONS(10641), 2, + ACTIONS(10642), 2, sym__automatic_semicolon, anon_sym_SEMI, - [208264] = 5, + [208379] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - STATE(3124), 1, - sym_class_body, + STATE(3198), 1, + sym_statement_block, STATE(6858), 1, sym_comment, - [208280] = 5, + [208395] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9659), 1, - anon_sym_LBRACE, - STATE(1175), 1, - sym_statement_block, STATE(6859), 1, sym_comment, - [208296] = 4, + ACTIONS(9218), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208409] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6860), 1, sym_comment, - ACTIONS(10643), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208310] = 4, + ACTIONS(9179), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208423] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6861), 1, sym_comment, - ACTIONS(10645), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208324] = 5, + ACTIONS(10644), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208437] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_COLON, - STATE(6690), 1, - sym_type_annotation, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4900), 1, + sym_class_body, STATE(6862), 1, sym_comment, - [208340] = 5, + [208453] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - STATE(3211), 1, - sym_statement_block, STATE(6863), 1, sym_comment, - [208356] = 5, + ACTIONS(10646), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [208467] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4894), 1, - sym_class_body, STATE(6864), 1, sym_comment, - [208372] = 5, + ACTIONS(10648), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [208481] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7583), 1, - anon_sym_LBRACE, - STATE(985), 1, - sym_class_body, + ACTIONS(4322), 1, + anon_sym_COLON, + STATE(6693), 1, + sym_type_annotation, STATE(6865), 1, sym_comment, - [208388] = 5, + [208497] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(4898), 1, + STATE(3026), 1, sym_class_body, STATE(6866), 1, sym_comment, - [208404] = 5, + [208513] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, - STATE(5158), 1, - sym_formal_parameters, STATE(6867), 1, sym_comment, - [208420] = 5, + ACTIONS(10650), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208527] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(7682), 1, anon_sym_LBRACE, - STATE(3190), 1, + STATE(343), 1, sym_class_body, STATE(6868), 1, sym_comment, - [208436] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208543] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10647), 1, - sym_identifier, - ACTIONS(10649), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10652), 1, + anon_sym_SEMI, + ACTIONS(10654), 1, + sym__automatic_semicolon, STATE(6869), 1, sym_comment, - [208452] = 5, + [208559] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(103), 1, - sym_parenthesized_expression, + STATE(5160), 1, + sym_formal_parameters, STATE(6870), 1, sym_comment, - [208468] = 5, + [208575] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_LPAREN, - STATE(6571), 1, - sym_parenthesized_expression, + ACTIONS(10656), 1, + sym_identifier, + ACTIONS(10658), 1, + sym_private_property_identifier, STATE(6871), 1, sym_comment, - [208484] = 4, + [208591] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6872), 1, sym_comment, - ACTIONS(3507), 2, + ACTIONS(3474), 2, anon_sym_else, anon_sym_while, - [208498] = 4, + [208605] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10532), 1, + anon_sym_LBRACE, + STATE(1331), 1, + sym_enum_body, STATE(6873), 1, sym_comment, - ACTIONS(10651), 2, - anon_sym_COMMA, - anon_sym_GT, - [208512] = 5, + [208621] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4905), 1, - sym_class_body, + ACTIONS(10222), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym_parenthesized_expression, STATE(6874), 1, sym_comment, - [208528] = 4, + [208637] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(6563), 1, + sym_parenthesized_expression, STATE(6875), 1, sym_comment, - ACTIONS(10653), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [208542] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208653] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10655), 1, - sym_identifier, - ACTIONS(10657), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6876), 1, sym_comment, - [208558] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10660), 2, + anon_sym_COMMA, + anon_sym_GT, + [208667] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10659), 1, - sym_identifier, - ACTIONS(10661), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7646), 1, + anon_sym_LBRACE, + STATE(3075), 1, + sym_class_body, STATE(6877), 1, sym_comment, - [208574] = 5, + [208683] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10663), 1, + ACTIONS(10662), 1, sym_identifier, - ACTIONS(10665), 1, + ACTIONS(10664), 1, sym_private_property_identifier, STATE(6878), 1, sym_comment, - [208590] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208699] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10667), 1, - sym_identifier, - ACTIONS(10669), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6879), 1, sym_comment, - [208606] = 5, + ACTIONS(10666), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208713] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10671), 1, + ACTIONS(10668), 1, sym_identifier, - ACTIONS(10673), 1, + ACTIONS(10670), 1, sym_private_property_identifier, STATE(6880), 1, sym_comment, - [208622] = 4, + [208729] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10672), 1, + sym_identifier, + ACTIONS(10674), 1, + sym_private_property_identifier, STATE(6881), 1, sym_comment, - ACTIONS(3479), 2, - anon_sym_else, - anon_sym_while, - [208636] = 5, + [208745] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10675), 1, + ACTIONS(10676), 1, sym_identifier, - ACTIONS(10677), 1, + ACTIONS(10678), 1, sym_private_property_identifier, STATE(6882), 1, sym_comment, - [208652] = 5, + [208761] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(10500), 1, + anon_sym_LBRACE, + STATE(6600), 1, + sym_enum_body, STATE(6883), 1, sym_comment, - STATE(7325), 1, - sym_formal_parameters, - [208668] = 5, + [208777] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(6634), 1, - sym__from_clause, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6884), 1, sym_comment, - [208684] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6885), 1, - sym_comment, - ACTIONS(3481), 2, - anon_sym_else, - anon_sym_while, - [208698] = 5, + STATE(7348), 1, + sym_formal_parameters, + [208793] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10679), 1, + ACTIONS(10680), 1, sym_identifier, - ACTIONS(10681), 1, + ACTIONS(10682), 1, sym_private_property_identifier, + STATE(6885), 1, + sym_comment, + [208809] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6886), 1, sym_comment, - [208714] = 5, + ACTIONS(3608), 2, + anon_sym_else, + anon_sym_while, + [208823] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5537), 1, - sym__from_clause, STATE(6887), 1, sym_comment, - [208730] = 4, + ACTIONS(3594), 2, + anon_sym_else, + anon_sym_while, + [208837] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(8980), 1, + anon_sym_from, + STATE(6648), 1, + sym__from_clause, STATE(6888), 1, sym_comment, - ACTIONS(10683), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208744] = 4, + [208853] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, + sym_private_property_identifier, STATE(6889), 1, sym_comment, - ACTIONS(3485), 2, - anon_sym_else, - anon_sym_while, - [208758] = 5, + [208869] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10685), 1, + ACTIONS(10688), 1, sym_identifier, - STATE(6108), 1, + STATE(6112), 1, sym_nested_identifier, STATE(6890), 1, sym_comment, - [208774] = 5, + [208885] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5540), 1, + sym__from_clause, STATE(6891), 1, sym_comment, - STATE(7247), 1, - sym_formal_parameters, - [208790] = 5, + [208901] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9815), 1, + ACTIONS(9824), 1, sym_identifier, - ACTIONS(9819), 1, + ACTIONS(9828), 1, sym_private_property_identifier, STATE(6892), 1, sym_comment, - [208806] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208917] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10687), 1, - sym_identifier, - ACTIONS(10689), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6893), 1, sym_comment, - [208822] = 5, + ACTIONS(3586), 2, + anon_sym_else, + anon_sym_while, + [208931] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10691), 1, - anon_sym_SEMI, - ACTIONS(10693), 1, - sym__automatic_semicolon, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6894), 1, sym_comment, - [208838] = 5, + STATE(7252), 1, + sym_formal_parameters, + [208947] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(10690), 1, + sym_identifier, + ACTIONS(10692), 1, + sym_private_property_identifier, STATE(6895), 1, sym_comment, - STATE(7056), 1, - sym_formal_parameters, - [208854] = 5, + [208963] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10695), 1, - anon_sym_LPAREN, - STATE(5456), 1, - sym_parenthesized_expression, STATE(6896), 1, sym_comment, - [208870] = 4, + ACTIONS(3472), 2, + anon_sym_else, + anon_sym_while, + [208977] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10694), 1, + sym_identifier, + ACTIONS(10696), 1, + sym_private_property_identifier, STATE(6897), 1, sym_comment, - ACTIONS(3505), 2, - anon_sym_else, - anon_sym_while, - [208884] = 4, + [208993] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7666), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_class_body, STATE(6898), 1, sym_comment, - ACTIONS(10697), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208898] = 5, + [209009] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4925), 1, - sym_class_body, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6899), 1, sym_comment, - [208914] = 5, + STATE(7048), 1, + sym_formal_parameters, + [209025] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5417), 1, - sym__from_clause, + ACTIONS(10698), 1, + anon_sym_LPAREN, + STATE(5458), 1, + sym_parenthesized_expression, STATE(6900), 1, sym_comment, - [208930] = 5, + [209041] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7935), 1, - anon_sym_LBRACE, - STATE(6612), 1, - sym_statement_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10702), 1, + sym_private_property_identifier, STATE(6901), 1, sym_comment, - [208946] = 4, + [209057] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10704), 1, + anon_sym_SEMI, + ACTIONS(10706), 1, + sym__automatic_semicolon, STATE(6902), 1, sym_comment, - ACTIONS(3487), 2, - anon_sym_else, - anon_sym_while, - [208960] = 5, + [209073] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, - anon_sym_LBRACE, - STATE(368), 1, - sym_class_body, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5416), 1, + sym__from_clause, STATE(6903), 1, sym_comment, - [208976] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209089] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10699), 1, - sym_identifier, - ACTIONS(10701), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6904), 1, sym_comment, - [208992] = 5, + ACTIONS(10708), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209103] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5516), 1, - sym__from_clause, + ACTIONS(7955), 1, + anon_sym_LBRACE, + STATE(6613), 1, + sym_statement_block, STATE(6905), 1, sym_comment, - [209008] = 5, + [209119] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(6906), 1, sym_comment, - STATE(7229), 1, - sym_formal_parameters, - [209024] = 5, + ACTIONS(10710), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209133] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8673), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(444), 1, - sym_statement_block, + STATE(4928), 1, + sym_class_body, STATE(6907), 1, sym_comment, - [209040] = 5, + [209149] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, + ACTIONS(8682), 1, anon_sym_LBRACE, - STATE(3216), 1, - sym_class_body, + STATE(465), 1, + sym_statement_block, STATE(6908), 1, sym_comment, - [209056] = 5, + [209165] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10607), 1, - anon_sym_LBRACE, - STATE(1365), 1, - sym_statement_block, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5517), 1, + sym__from_clause, STATE(6909), 1, sym_comment, - [209072] = 4, + [209181] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6910), 1, sym_comment, - ACTIONS(3505), 2, - anon_sym_else, - anon_sym_while, - [209086] = 5, + STATE(7241), 1, + sym_formal_parameters, + [209197] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, + ACTIONS(4970), 1, + anon_sym_LBRACE, + STATE(3042), 1, + sym_statement_block, STATE(6911), 1, sym_comment, - STATE(6977), 1, - sym_formal_parameters, - [209102] = 4, + [209213] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6912), 1, sym_comment, - ACTIONS(3503), 2, + ACTIONS(3574), 2, anon_sym_else, anon_sym_while, - [209116] = 4, + [209227] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6913), 1, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3472), 2, anon_sym_else, anon_sym_while, - [209130] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209241] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10703), 1, - sym_identifier, - STATE(5855), 1, - sym_nested_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(4970), 1, + anon_sym_LBRACE, + STATE(3252), 1, + sym_statement_block, STATE(6914), 1, sym_comment, - [209146] = 4, + [209257] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6915), 1, sym_comment, - ACTIONS(6834), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [209160] = 4, + STATE(6975), 1, + sym_formal_parameters, + [209273] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6916), 1, sym_comment, - ACTIONS(3501), 2, + ACTIONS(3530), 2, anon_sym_else, anon_sym_while, - [209174] = 5, + [209287] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym_statement_block, + ACTIONS(10712), 1, + anon_sym_LPAREN, + STATE(1176), 1, + sym_parenthesized_expression, STATE(6917), 1, sym_comment, - [209190] = 4, + [209303] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10714), 1, + sym_identifier, + STATE(5859), 1, + sym_nested_identifier, STATE(6918), 1, sym_comment, - ACTIONS(3499), 2, - anon_sym_else, - anon_sym_while, - [209204] = 5, + [209319] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7274), 1, - anon_sym_LPAREN, STATE(6919), 1, sym_comment, - STATE(6988), 1, - sym_formal_parameters, - [209220] = 4, + ACTIONS(6828), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [209333] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6920), 1, sym_comment, - ACTIONS(3497), 2, + ACTIONS(3534), 2, anon_sym_else, anon_sym_while, - [209234] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209347] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10705), 1, - sym_identifier, - ACTIONS(10707), 1, - sym_private_property_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6921), 1, sym_comment, - [209250] = 5, + ACTIONS(3536), 2, + anon_sym_else, + anon_sym_while, + [209361] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_LBRACE, - STATE(3202), 1, - sym_statement_block, STATE(6922), 1, sym_comment, - [209266] = 5, + ACTIONS(3550), 2, + anon_sym_else, + anon_sym_while, + [209375] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(5443), 1, - sym__from_clause, + ACTIONS(7283), 1, + anon_sym_LPAREN, STATE(6923), 1, sym_comment, - [209282] = 4, + STATE(6999), 1, + sym_formal_parameters, + [209391] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6924), 1, sym_comment, - ACTIONS(3529), 2, + ACTIONS(3502), 2, anon_sym_else, anon_sym_while, - [209296] = 5, + [209405] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7651), 1, + ACTIONS(4970), 1, anon_sym_LBRACE, - STATE(449), 1, - sym_class_body, + STATE(3073), 1, + sym_statement_block, STATE(6925), 1, sym_comment, - [209312] = 4, + [209421] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10716), 1, + sym_identifier, + ACTIONS(10718), 1, + sym_private_property_identifier, STATE(6926), 1, sym_comment, - ACTIONS(3493), 2, - anon_sym_else, - anon_sym_while, - [209326] = 5, + [209437] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10709), 1, - anon_sym_SEMI, - ACTIONS(10711), 1, - sym__automatic_semicolon, STATE(6927), 1, sym_comment, - [209342] = 4, + ACTIONS(3556), 2, + anon_sym_else, + anon_sym_while, + [209451] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7610), 1, + anon_sym_LBRACE, + STATE(461), 1, + sym_class_body, STATE(6928), 1, sym_comment, - ACTIONS(10713), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209356] = 5, + [209467] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10715), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - STATE(3528), 1, + STATE(2480), 1, sym_statement_block, STATE(6929), 1, sym_comment, - [209372] = 5, + [209483] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4913), 1, - sym_class_body, + ACTIONS(10720), 1, + anon_sym_SEMI, + ACTIONS(10722), 1, + sym__automatic_semicolon, STATE(6930), 1, sym_comment, - [209388] = 5, + [209499] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(8959), 1, - anon_sym_from, - STATE(6615), 1, - sym__from_clause, + ACTIONS(10724), 1, + anon_sym_LBRACE, + STATE(3539), 1, + sym_statement_block, STATE(6931), 1, sym_comment, - [209404] = 5, + [209515] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - STATE(2516), 1, - sym_statement_block, + ACTIONS(8980), 1, + anon_sym_from, + STATE(5443), 1, + sym__from_clause, STATE(6932), 1, sym_comment, - [209420] = 5, + [209531] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5314), 1, - anon_sym_LBRACE, - STATE(2521), 1, - sym_statement_block, + ACTIONS(10726), 1, + anon_sym_SEMI, + ACTIONS(10728), 1, + sym__automatic_semicolon, STATE(6933), 1, sym_comment, - [209436] = 5, + [209547] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(2525), 1, + STATE(3052), 1, sym_class_body, STATE(6934), 1, sym_comment, - [209452] = 5, + [209563] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7781), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - STATE(3392), 1, - sym_class_body, + STATE(2496), 1, + sym_statement_block, STATE(6935), 1, sym_comment, - [209468] = 5, + [209579] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_LPAREN, - STATE(6720), 1, - sym_parenthesized_expression, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(2502), 1, + sym_class_body, STATE(6936), 1, sym_comment, - [209484] = 4, + [209595] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6937), 1, sym_comment, - ACTIONS(10717), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209498] = 4, + ACTIONS(3562), 2, + anon_sym_else, + anon_sym_while, + [209609] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(7642), 1, + anon_sym_LBRACE, + STATE(3394), 1, + sym_class_body, STATE(6938), 1, sym_comment, - ACTIONS(3491), 2, - anon_sym_else, - anon_sym_while, - [209512] = 4, + [209625] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, STATE(6939), 1, sym_comment, - ACTIONS(10719), 2, + ACTIONS(10730), 2, anon_sym_COMMA, anon_sym_RPAREN, - [209526] = 4, + [209639] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(6722), 1, + sym_parenthesized_expression, STATE(6940), 1, sym_comment, - ACTIONS(9779), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209540] = 5, + [209655] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7905), 1, + ACTIONS(7646), 1, anon_sym_LBRACE, - STATE(5343), 1, - sym_statement_block, + STATE(3023), 1, + sym_class_body, STATE(6941), 1, sym_comment, - [209556] = 5, + [209671] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7779), 1, - anon_sym_LBRACE, - STATE(4910), 1, - sym_class_body, STATE(6942), 1, sym_comment, - [209572] = 5, + ACTIONS(10732), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209685] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_LBRACE, - STATE(2998), 1, - sym_class_body, STATE(6943), 1, sym_comment, - [209588] = 5, + ACTIONS(3572), 2, + anon_sym_else, + anon_sym_while, + [209699] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10721), 1, - anon_sym_LPAREN, - STATE(1073), 1, - sym_parenthesized_expression, + ACTIONS(8980), 1, + anon_sym_from, + STATE(6614), 1, + sym__from_clause, STATE(6944), 1, sym_comment, - [209604] = 4, + [209715] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10723), 1, - anon_sym_EQ_GT, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4916), 1, + sym_class_body, STATE(6945), 1, sym_comment, - [209617] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209731] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10725), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, STATE(6946), 1, sym_comment, - [209630] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9804), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209745] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10727), 1, - sym_regex_pattern, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7906), 1, + anon_sym_LBRACE, + STATE(5347), 1, + sym_statement_block, STATE(6947), 1, sym_comment, - [209643] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209761] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10729), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7644), 1, + anon_sym_LBRACE, + STATE(4913), 1, + sym_class_body, STATE(6948), 1, sym_comment, - [209656] = 4, + [209777] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10731), 1, - anon_sym_RBRACK, + ACTIONS(10734), 1, + sym_identifier, STATE(6949), 1, sym_comment, - [209669] = 4, + [209790] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10733), 1, - anon_sym_LBRACK, + ACTIONS(10736), 1, + sym_identifier, STATE(6950), 1, sym_comment, - [209682] = 4, + [209803] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10735), 1, - anon_sym_RPAREN, + ACTIONS(10738), 1, + sym_identifier, STATE(6951), 1, sym_comment, - [209695] = 4, + [209816] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5983), 1, - anon_sym_RPAREN, + ACTIONS(10740), 1, + sym_identifier, STATE(6952), 1, sym_comment, - [209708] = 4, + [209829] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10737), 1, - anon_sym_COLON, + ACTIONS(10742), 1, + sym_regex_pattern, STATE(6953), 1, sym_comment, - [209721] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209842] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10739), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10744), 1, + anon_sym_RBRACK, STATE(6954), 1, sym_comment, - [209734] = 4, + [209855] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10741), 1, - anon_sym_while, + ACTIONS(10746), 1, + anon_sym_LBRACK, STATE(6955), 1, sym_comment, - [209747] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209868] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10743), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10748), 1, + anon_sym_RPAREN, STATE(6956), 1, sym_comment, - [209760] = 4, + [209881] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9801), 1, - anon_sym_RBRACK, + ACTIONS(6039), 1, + anon_sym_is, STATE(6957), 1, sym_comment, - [209773] = 4, + [209894] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10745), 1, - anon_sym_RBRACK, + ACTIONS(10750), 1, + sym_identifier, STATE(6958), 1, sym_comment, - [209786] = 4, + [209907] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10747), 1, - anon_sym_DOT, + ACTIONS(10752), 1, + anon_sym_while, STATE(6959), 1, sym_comment, - [209799] = 4, + [209920] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10749), 1, - anon_sym_RBRACK, + ACTIONS(10754), 1, + anon_sym_COLON, STATE(6960), 1, sym_comment, - [209812] = 4, + [209933] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10751), 1, + ACTIONS(10756), 1, sym_identifier, STATE(6961), 1, sym_comment, - [209825] = 4, + [209946] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5896), 1, - anon_sym_is, + ACTIONS(9812), 1, + anon_sym_RBRACK, STATE(6962), 1, sym_comment, - [209838] = 4, + [209959] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10753), 1, - anon_sym_EQ_GT, + ACTIONS(10758), 1, + anon_sym_DOT, STATE(6963), 1, sym_comment, - [209851] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209972] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10755), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10760), 1, + anon_sym_RBRACK, STATE(6964), 1, sym_comment, - [209864] = 4, + [209985] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10757), 1, + ACTIONS(10762), 1, sym_identifier, STATE(6965), 1, sym_comment, - [209877] = 4, + [209998] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10759), 1, - anon_sym_EQ_GT, + ACTIONS(10764), 1, + sym_identifier, STATE(6966), 1, sym_comment, - [209890] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210011] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10761), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10766), 1, + anon_sym_EQ_GT, STATE(6967), 1, sym_comment, - [209903] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210024] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10763), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10768), 1, + anon_sym_from, STATE(6968), 1, sym_comment, - [209916] = 4, + [210037] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10765), 1, - anon_sym_from, + ACTIONS(10770), 1, + sym_identifier, STATE(6969), 1, sym_comment, - [209929] = 4, + [210050] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10767), 1, - anon_sym_RBRACK, + ACTIONS(10772), 1, + anon_sym_EQ_GT, STATE(6970), 1, sym_comment, - [209942] = 4, + [210063] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10769), 1, - anon_sym_RBRACK, + ACTIONS(10774), 1, + anon_sym_EQ_GT, STATE(6971), 1, sym_comment, - [209955] = 4, + [210076] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10771), 1, + ACTIONS(10776), 1, sym_identifier, STATE(6972), 1, sym_comment, - [209968] = 4, + [210089] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10773), 1, - anon_sym_EQ_GT, + ACTIONS(10778), 1, + anon_sym_RBRACK, STATE(6973), 1, sym_comment, - [209981] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210102] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10775), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10780), 1, + anon_sym_RBRACK, STATE(6974), 1, sym_comment, - [209994] = 4, + [210115] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10777), 1, - anon_sym_DOT, + ACTIONS(10782), 1, + anon_sym_EQ_GT, STATE(6975), 1, sym_comment, - [210007] = 4, + [210128] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10779), 1, + ACTIONS(10784), 1, anon_sym_RBRACK, STATE(6976), 1, sym_comment, - [210020] = 4, + [210141] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10781), 1, - anon_sym_EQ_GT, + ACTIONS(10786), 1, + sym_identifier, STATE(6977), 1, sym_comment, - [210033] = 4, + [210154] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10788), 1, + anon_sym_DOT, + STATE(6978), 1, + sym_comment, + [210167] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10783), 1, + ACTIONS(10790), 1, sym_identifier, - STATE(6978), 1, + STATE(6979), 1, sym_comment, - [210046] = 4, + [210180] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10785), 1, + ACTIONS(10792), 1, anon_sym_while, - STATE(6979), 1, + STATE(6980), 1, sym_comment, - [210059] = 4, + [210193] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10787), 1, + ACTIONS(10794), 1, sym_identifier, - STATE(6980), 1, - sym_comment, - [210072] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10789), 1, - anon_sym_RPAREN, STATE(6981), 1, sym_comment, - [210085] = 4, + [210206] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9600), 1, - anon_sym_RBRACE, + ACTIONS(10796), 1, + sym_identifier, STATE(6982), 1, sym_comment, - [210098] = 4, + [210219] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10791), 1, + ACTIONS(10798), 1, anon_sym_RBRACK, STATE(6983), 1, sym_comment, - [210111] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210232] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10793), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10800), 1, + anon_sym_RPAREN, STATE(6984), 1, sym_comment, - [210124] = 4, + [210245] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10795), 1, - anon_sym_RBRACK, + ACTIONS(10802), 1, + sym_identifier, STATE(6985), 1, sym_comment, - [210137] = 4, + [210258] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10797), 1, - anon_sym_RBRACK, + ACTIONS(10804), 1, + anon_sym_EQ_GT, STATE(6986), 1, sym_comment, - [210150] = 4, + [210271] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10799), 1, - anon_sym_LPAREN, + ACTIONS(10806), 1, + anon_sym_RBRACK, STATE(6987), 1, sym_comment, - [210163] = 4, + [210284] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10801), 1, - anon_sym_EQ_GT, + ACTIONS(10808), 1, + anon_sym_RBRACK, STATE(6988), 1, sym_comment, - [210176] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210297] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10803), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10810), 1, + anon_sym_RBRACK, STATE(6989), 1, sym_comment, - [210189] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210310] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10805), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10812), 1, + anon_sym_RBRACK, STATE(6990), 1, sym_comment, - [210202] = 4, + [210323] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10807), 1, - anon_sym_from, + ACTIONS(10814), 1, + sym_identifier, STATE(6991), 1, sym_comment, - [210215] = 4, + [210336] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10809), 1, - sym_regex_pattern, + ACTIONS(10816), 1, + sym_identifier, STATE(6992), 1, sym_comment, - [210228] = 4, + [210349] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10811), 1, - anon_sym_RPAREN, + ACTIONS(10818), 1, + sym_identifier, STATE(6993), 1, sym_comment, - [210241] = 4, + [210362] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10813), 1, - anon_sym_as, + ACTIONS(10820), 1, + anon_sym_from, STATE(6994), 1, sym_comment, - [210254] = 4, + [210375] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10815), 1, - anon_sym_EQ, + ACTIONS(10822), 1, + sym_regex_pattern, STATE(6995), 1, sym_comment, - [210267] = 4, + [210388] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10817), 1, - anon_sym_EQ_GT, + ACTIONS(10824), 1, + anon_sym_as, STATE(6996), 1, sym_comment, - [210280] = 4, + [210401] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10819), 1, - anon_sym_EQ_GT, + ACTIONS(10826), 1, + anon_sym_RPAREN, STATE(6997), 1, sym_comment, - [210293] = 4, + [210414] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10821), 1, - anon_sym_RPAREN, + ACTIONS(10828), 1, + anon_sym_RBRACK, STATE(6998), 1, sym_comment, - [210306] = 4, + [210427] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10823), 1, + ACTIONS(10830), 1, anon_sym_EQ_GT, STATE(6999), 1, sym_comment, - [210319] = 4, + [210440] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10825), 1, - anon_sym_require, + ACTIONS(10832), 1, + anon_sym_EQ, STATE(7000), 1, sym_comment, - [210332] = 4, + [210453] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10827), 1, - anon_sym_from, + ACTIONS(10834), 1, + anon_sym_EQ_GT, STATE(7001), 1, sym_comment, - [210345] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210466] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10829), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10836), 1, + anon_sym_EQ_GT, STATE(7002), 1, sym_comment, - [210358] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210479] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10831), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10838), 1, + anon_sym_require, STATE(7003), 1, sym_comment, - [210371] = 4, + [210492] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9730), 1, - anon_sym_RBRACK, + ACTIONS(10840), 1, + anon_sym_from, STATE(7004), 1, sym_comment, - [210384] = 4, + [210505] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10833), 1, + ACTIONS(10842), 1, anon_sym_EQ_GT, STATE(7005), 1, sym_comment, - [210397] = 4, + [210518] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10835), 1, - anon_sym_EQ_GT, + ACTIONS(10844), 1, + sym_identifier, STATE(7006), 1, sym_comment, - [210410] = 4, + [210531] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10837), 1, + ACTIONS(10846), 1, sym_identifier, STATE(7007), 1, sym_comment, - [210423] = 4, + [210544] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10839), 1, - anon_sym_RBRACK, + ACTIONS(10848), 1, + anon_sym_EQ_GT, STATE(7008), 1, sym_comment, - [210436] = 4, + [210557] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10841), 1, + ACTIONS(10850), 1, anon_sym_EQ_GT, STATE(7009), 1, sym_comment, - [210449] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210570] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10843), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10852), 1, + anon_sym_EQ_GT, STATE(7010), 1, sym_comment, - [210462] = 4, + [210583] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6339), 1, - anon_sym_in, + ACTIONS(10854), 1, + sym_identifier, STATE(7011), 1, sym_comment, - [210475] = 4, + [210596] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10845), 1, - anon_sym_DOT, + ACTIONS(6468), 1, + anon_sym_in, STATE(7012), 1, sym_comment, - [210488] = 4, + [210609] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10847), 1, + ACTIONS(10856), 1, sym_identifier, STATE(7013), 1, sym_comment, - [210501] = 4, + [210622] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10849), 1, - anon_sym_EQ_GT, + ACTIONS(10858), 1, + sym_identifier, STATE(7014), 1, sym_comment, - [210514] = 4, + [210635] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10851), 1, + ACTIONS(9745), 1, anon_sym_RBRACK, STATE(7015), 1, sym_comment, - [210527] = 4, + [210648] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10853), 1, - anon_sym_RBRACK, + ACTIONS(10860), 1, + anon_sym_DOT, STATE(7016), 1, sym_comment, - [210540] = 4, + [210661] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10855), 1, + ACTIONS(10862), 1, sym_identifier, STATE(7017), 1, sym_comment, - [210553] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210674] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10857), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10864), 1, + anon_sym_EQ_GT, STATE(7018), 1, sym_comment, - [210566] = 4, + [210687] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10859), 1, + ACTIONS(10866), 1, anon_sym_RBRACK, STATE(7019), 1, sym_comment, - [210579] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210700] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10861), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10868), 1, + anon_sym_RBRACK, STATE(7020), 1, sym_comment, - [210592] = 4, + [210713] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10863), 1, - anon_sym_RBRACK, + ACTIONS(10870), 1, + anon_sym_EQ_GT, STATE(7021), 1, sym_comment, - [210605] = 4, + [210726] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10865), 1, - anon_sym_RBRACK, + ACTIONS(10872), 1, + sym_identifier, STATE(7022), 1, sym_comment, - [210618] = 4, + [210739] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10867), 1, - anon_sym_EQ_GT, + ACTIONS(10874), 1, + sym_identifier, STATE(7023), 1, sym_comment, - [210631] = 4, + [210752] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10869), 1, + ACTIONS(10876), 1, sym_identifier, STATE(7024), 1, sym_comment, - [210644] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210765] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10871), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10878), 1, + anon_sym_RBRACK, STATE(7025), 1, sym_comment, - [210657] = 4, + [210778] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10873), 1, + ACTIONS(10880), 1, anon_sym_RBRACK, STATE(7026), 1, sym_comment, - [210670] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210791] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10875), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10882), 1, + anon_sym_COLON, STATE(7027), 1, sym_comment, - [210683] = 4, + [210804] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10877), 1, - anon_sym_COLON, + ACTIONS(10884), 1, + anon_sym_RBRACK, STATE(7028), 1, sym_comment, - [210696] = 4, + [210817] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10879), 1, - anon_sym_RBRACK, + ACTIONS(10886), 1, + sym_identifier, STATE(7029), 1, sym_comment, - [210709] = 4, + [210830] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10881), 1, + ACTIONS(10888), 1, anon_sym_RBRACK, STATE(7030), 1, sym_comment, - [210722] = 4, + [210843] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10883), 1, + ACTIONS(10890), 1, sym_identifier, STATE(7031), 1, sym_comment, - [210735] = 4, + [210856] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10885), 1, + ACTIONS(10892), 1, sym_identifier, STATE(7032), 1, sym_comment, - [210748] = 4, + [210869] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10887), 1, - anon_sym_RBRACK, + ACTIONS(10894), 1, + sym_identifier, STATE(7033), 1, sym_comment, - [210761] = 4, + [210882] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5985), 1, - anon_sym_RBRACK, + ACTIONS(10896), 1, + sym_identifier, STATE(7034), 1, sym_comment, - [210774] = 4, + [210895] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_is, + ACTIONS(10898), 1, + anon_sym_RBRACK, STATE(7035), 1, sym_comment, - [210787] = 4, + [210908] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5922), 1, + ACTIONS(10900), 1, anon_sym_RBRACK, STATE(7036), 1, sym_comment, - [210800] = 4, + [210921] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10889), 1, - anon_sym_RPAREN, + ACTIONS(5997), 1, + anon_sym_RBRACK, STATE(7037), 1, sym_comment, - [210813] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210934] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10891), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7157), 1, + anon_sym_is, STATE(7038), 1, sym_comment, - [210826] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210947] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10893), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10902), 1, + anon_sym_RBRACK, STATE(7039), 1, sym_comment, - [210839] = 4, + [210960] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10895), 1, + ACTIONS(10904), 1, anon_sym_RBRACK, STATE(7040), 1, sym_comment, - [210852] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210973] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10897), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10906), 1, + anon_sym_EQ_GT, STATE(7041), 1, sym_comment, - [210865] = 4, + [210986] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10899), 1, + ACTIONS(10908), 1, sym_identifier, STATE(7042), 1, sym_comment, - [210878] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210999] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10901), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10910), 1, + anon_sym_RPAREN, STATE(7043), 1, sym_comment, - [210891] = 4, + [211012] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10903), 1, - anon_sym_EQ, + ACTIONS(6001), 1, + anon_sym_RBRACK, STATE(7044), 1, sym_comment, - [210904] = 4, + [211025] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10905), 1, + ACTIONS(10912), 1, sym_identifier, STATE(7045), 1, sym_comment, - [210917] = 4, + [211038] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6063), 1, - anon_sym_in, + ACTIONS(10914), 1, + sym_identifier, STATE(7046), 1, sym_comment, - [210930] = 4, + [211051] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10907), 1, - anon_sym_DOT, + ACTIONS(6011), 1, + anon_sym_RPAREN, STATE(7047), 1, sym_comment, - [210943] = 4, + [211064] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10909), 1, - anon_sym_class, + ACTIONS(10916), 1, + anon_sym_EQ_GT, STATE(7048), 1, sym_comment, - [210956] = 4, + [211077] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10911), 1, - anon_sym_while, + ACTIONS(10918), 1, + sym_identifier, STATE(7049), 1, sym_comment, - [210969] = 4, + [211090] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10913), 1, - anon_sym_EQ_GT, + ACTIONS(6086), 1, + anon_sym_in, STATE(7050), 1, sym_comment, - [210982] = 4, + [211103] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10915), 1, + ACTIONS(10920), 1, sym_identifier, STATE(7051), 1, sym_comment, - [210995] = 4, + [211116] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10917), 1, - anon_sym_EQ, + ACTIONS(10922), 1, + anon_sym_class, STATE(7052), 1, sym_comment, - [211008] = 4, + [211129] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10919), 1, - anon_sym_namespace, + ACTIONS(10924), 1, + sym_identifier, STATE(7053), 1, sym_comment, - [211021] = 4, + [211142] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10921), 1, - anon_sym_from, + ACTIONS(10926), 1, + anon_sym_EQ_GT, STATE(7054), 1, sym_comment, - [211034] = 4, + [211155] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10923), 1, + ACTIONS(10928), 1, sym_identifier, STATE(7055), 1, sym_comment, - [211047] = 4, + [211168] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10925), 1, - anon_sym_EQ_GT, + ACTIONS(10930), 1, + anon_sym_EQ, STATE(7056), 1, sym_comment, - [211060] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211181] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10927), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10932), 1, + anon_sym_namespace, STATE(7057), 1, sym_comment, - [211073] = 4, + [211194] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10929), 1, - anon_sym_from, + ACTIONS(10934), 1, + sym_identifier, STATE(7058), 1, sym_comment, - [211086] = 4, + [211207] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10931), 1, + ACTIONS(10936), 1, sym_identifier, STATE(7059), 1, sym_comment, - [211099] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211220] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10933), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10938), 1, + anon_sym_DOT, STATE(7060), 1, sym_comment, - [211112] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211233] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10935), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10940), 1, + anon_sym_from, STATE(7061), 1, sym_comment, - [211125] = 4, + [211246] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10937), 1, - anon_sym_EQ_GT, + ACTIONS(10942), 1, + sym_identifier, STATE(7062), 1, sym_comment, - [211138] = 4, + [211259] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6299), 1, - anon_sym_in, + ACTIONS(10944), 1, + anon_sym_EQ_GT, STATE(7063), 1, sym_comment, - [211151] = 4, + [211272] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10939), 1, - anon_sym_EQ_GT, + ACTIONS(10946), 1, + anon_sym_while, STATE(7064), 1, sym_comment, - [211164] = 4, + [211285] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10941), 1, - anon_sym_EQ_GT, + ACTIONS(10948), 1, + sym_identifier, STATE(7065), 1, sym_comment, - [211177] = 4, + [211298] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5991), 1, - anon_sym_COLON, + ACTIONS(10950), 1, + anon_sym_EQ_GT, STATE(7066), 1, sym_comment, - [211190] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211311] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10943), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10952), 1, + anon_sym_from, STATE(7067), 1, sym_comment, - [211203] = 4, + [211324] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10945), 1, + ACTIONS(10954), 1, anon_sym_EQ_GT, STATE(7068), 1, sym_comment, - [211216] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211337] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10947), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10956), 1, + anon_sym_EQ_GT, STATE(7069), 1, sym_comment, - [211229] = 4, + [211350] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10949), 1, - sym_regex_pattern, + ACTIONS(10958), 1, + sym_identifier, STATE(7070), 1, sym_comment, - [211242] = 4, + [211363] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5916), 1, + ACTIONS(9703), 1, anon_sym_RBRACK, STATE(7071), 1, sym_comment, - [211255] = 4, + [211376] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9682), 1, - anon_sym_RBRACK, + ACTIONS(6356), 1, + anon_sym_in, STATE(7072), 1, sym_comment, - [211268] = 4, + [211389] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5993), 1, - anon_sym_RPAREN, + ACTIONS(10960), 1, + sym_identifier, STATE(7073), 1, sym_comment, - [211281] = 4, + [211402] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10951), 1, - anon_sym_EQ, + ACTIONS(5985), 1, + anon_sym_RBRACK, STATE(7074), 1, sym_comment, - [211294] = 4, + [211415] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10953), 1, - anon_sym_new, + ACTIONS(10962), 1, + sym_identifier, STATE(7075), 1, sym_comment, - [211307] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211428] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10034), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10964), 1, + anon_sym_EQ_GT, STATE(7076), 1, sym_comment, - [211320] = 4, + [211441] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10955), 1, - anon_sym_class, + ACTIONS(10966), 1, + sym_regex_pattern, STATE(7077), 1, sym_comment, - [211333] = 4, + [211454] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5995), 1, - anon_sym_RPAREN, + ACTIONS(10968), 1, + anon_sym_EQ, STATE(7078), 1, sym_comment, - [211346] = 4, + [211467] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10957), 1, - anon_sym_EQ_GT, + ACTIONS(10970), 1, + anon_sym_new, STATE(7079), 1, sym_comment, - [211359] = 4, + [211480] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10959), 1, - anon_sym_EQ, + ACTIONS(10051), 1, + sym_identifier, STATE(7080), 1, sym_comment, - [211372] = 4, + [211493] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5997), 1, - anon_sym_RPAREN, + ACTIONS(10972), 1, + anon_sym_class, STATE(7081), 1, sym_comment, - [211385] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211506] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10961), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5980), 1, + anon_sym_COLON, STATE(7082), 1, sym_comment, - [211398] = 4, + [211519] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10963), 1, - anon_sym_EQ, + ACTIONS(5978), 1, + anon_sym_RPAREN, STATE(7083), 1, sym_comment, - [211411] = 4, + [211532] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10965), 1, + ACTIONS(10974), 1, anon_sym_EQ, STATE(7084), 1, sym_comment, - [211424] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211545] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10967), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5976), 1, + anon_sym_RPAREN, STATE(7085), 1, sym_comment, - [211437] = 4, + [211558] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10969), 1, - anon_sym_EQ_GT, + ACTIONS(10976), 1, + sym_identifier, STATE(7086), 1, sym_comment, - [211450] = 4, + [211571] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10971), 1, - anon_sym_EQ_GT, + ACTIONS(10978), 1, + anon_sym_EQ, STATE(7087), 1, sym_comment, - [211463] = 4, + [211584] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10973), 1, + ACTIONS(10980), 1, sym_identifier, STATE(7088), 1, sym_comment, - [211476] = 4, + [211597] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5920), 1, - anon_sym_RBRACE, + ACTIONS(5974), 1, + anon_sym_RPAREN, STATE(7089), 1, sym_comment, - [211489] = 4, + [211610] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10975), 1, - anon_sym_EQ_GT, + ACTIONS(10982), 1, + anon_sym_EQ, STATE(7090), 1, sym_comment, - [211502] = 4, + [211623] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10977), 1, - anon_sym_EQ_GT, + ACTIONS(10984), 1, + sym_identifier, STATE(7091), 1, sym_comment, - [211515] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211636] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10979), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5960), 1, + anon_sym_RBRACE, STATE(7092), 1, sym_comment, - [211528] = 4, + [211649] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10981), 1, + ACTIONS(10986), 1, anon_sym_EQ_GT, STATE(7093), 1, sym_comment, - [211541] = 4, + [211662] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10983), 1, - anon_sym_EQ, + ACTIONS(10988), 1, + anon_sym_EQ_GT, STATE(7094), 1, sym_comment, - [211554] = 4, + [211675] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10985), 1, - anon_sym_EQ_GT, + ACTIONS(10990), 1, + anon_sym_RPAREN, STATE(7095), 1, sym_comment, - [211567] = 4, + [211688] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10987), 1, - anon_sym_RPAREN, + ACTIONS(10992), 1, + anon_sym_EQ_GT, STATE(7096), 1, sym_comment, - [211580] = 4, + [211701] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6689), 1, - anon_sym_in, + ACTIONS(10994), 1, + sym_identifier, STATE(7097), 1, sym_comment, - [211593] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211714] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10989), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10996), 1, + anon_sym_EQ_GT, STATE(7098), 1, sym_comment, - [211606] = 4, + [211727] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10991), 1, - anon_sym_RBRACK, + ACTIONS(10998), 1, + anon_sym_EQ, STATE(7099), 1, sym_comment, - [211619] = 4, + [211740] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10993), 1, - anon_sym_EQ, + ACTIONS(11000), 1, + anon_sym_EQ_GT, STATE(7100), 1, sym_comment, - [211632] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211753] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10995), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11002), 1, + anon_sym_EQ_GT, STATE(7101), 1, sym_comment, - [211645] = 4, + [211766] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10997), 1, + ACTIONS(11004), 1, sym_identifier, STATE(7102), 1, sym_comment, - [211658] = 4, + [211779] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5221), 1, - anon_sym_RPAREN, + ACTIONS(6692), 1, + anon_sym_in, STATE(7103), 1, sym_comment, - [211671] = 4, + [211792] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10999), 1, - anon_sym_RBRACK, + ACTIONS(11006), 1, + sym_identifier, STATE(7104), 1, sym_comment, - [211684] = 4, + [211805] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11001), 1, - anon_sym_COLON, + ACTIONS(11008), 1, + anon_sym_RBRACK, STATE(7105), 1, sym_comment, - [211697] = 4, + [211818] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11003), 1, - anon_sym_RBRACK, + ACTIONS(11010), 1, + anon_sym_EQ, STATE(7106), 1, sym_comment, - [211710] = 4, + [211831] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11005), 1, - anon_sym_RBRACK, + ACTIONS(5150), 1, + anon_sym_RPAREN, STATE(7107), 1, sym_comment, - [211723] = 4, + [211844] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11007), 1, + ACTIONS(11012), 1, anon_sym_RBRACK, STATE(7108), 1, sym_comment, - [211736] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211857] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11009), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11014), 1, + anon_sym_COLON, STATE(7109), 1, sym_comment, - [211749] = 4, + [211870] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11011), 1, + ACTIONS(11016), 1, anon_sym_RBRACK, STATE(7110), 1, sym_comment, - [211762] = 4, + [211883] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11013), 1, + ACTIONS(11018), 1, anon_sym_RBRACK, STATE(7111), 1, sym_comment, - [211775] = 4, + [211896] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11015), 1, - anon_sym_RBRACK, + ACTIONS(11020), 1, + sym_identifier, STATE(7112), 1, sym_comment, - [211788] = 4, + [211909] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11017), 1, - anon_sym_EQ_GT, + ACTIONS(11022), 1, + anon_sym_RBRACK, STATE(7113), 1, sym_comment, - [211801] = 4, + [211922] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11019), 1, + ACTIONS(11024), 1, sym_identifier, STATE(7114), 1, sym_comment, - [211814] = 4, + [211935] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11021), 1, + ACTIONS(11026), 1, anon_sym_RBRACK, STATE(7115), 1, sym_comment, - [211827] = 4, + [211948] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11023), 1, - anon_sym_RBRACK, + ACTIONS(11028), 1, + anon_sym_EQ_GT, STATE(7116), 1, sym_comment, - [211840] = 4, + [211961] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9634), 1, - anon_sym_RBRACK, + ACTIONS(11030), 1, + sym_identifier, STATE(7117), 1, sym_comment, - [211853] = 4, + [211974] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11025), 1, - anon_sym_EQ_GT, + ACTIONS(11032), 1, + anon_sym_RBRACK, STATE(7118), 1, sym_comment, - [211866] = 4, + [211987] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11027), 1, - anon_sym_EQ_GT, + ACTIONS(11034), 1, + anon_sym_RBRACK, STATE(7119), 1, sym_comment, - [211879] = 4, + [212000] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11029), 1, - anon_sym_EQ_GT, + ACTIONS(9649), 1, + anon_sym_RBRACK, STATE(7120), 1, sym_comment, - [211892] = 4, + [212013] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11031), 1, - anon_sym_EQ_GT, + ACTIONS(11036), 1, + anon_sym_RBRACK, STATE(7121), 1, sym_comment, - [211905] = 4, + [212026] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11033), 1, - anon_sym_EQ_GT, + ACTIONS(11038), 1, + anon_sym_RBRACK, STATE(7122), 1, sym_comment, - [211918] = 4, + [212039] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11035), 1, - anon_sym_RBRACK, + ACTIONS(11040), 1, + anon_sym_EQ_GT, STATE(7123), 1, sym_comment, - [211931] = 4, + [212052] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11037), 1, - anon_sym_new, + ACTIONS(11042), 1, + anon_sym_EQ_GT, STATE(7124), 1, sym_comment, - [211944] = 4, + [212065] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11039), 1, - anon_sym_from, + ACTIONS(11044), 1, + anon_sym_EQ_GT, STATE(7125), 1, sym_comment, - [211957] = 4, + [212078] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11041), 1, - anon_sym_RPAREN, + ACTIONS(11046), 1, + anon_sym_EQ_GT, STATE(7126), 1, sym_comment, - [211970] = 4, + [212091] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5999), 1, - anon_sym_RPAREN, + ACTIONS(11048), 1, + anon_sym_new, STATE(7127), 1, sym_comment, - [211983] = 4, + [212104] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11043), 1, - anon_sym_RPAREN, + ACTIONS(11050), 1, + anon_sym_symbol, STATE(7128), 1, sym_comment, - [211996] = 4, + [212117] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3165), 1, - anon_sym_LBRACE, + ACTIONS(11052), 1, + sym_identifier, STATE(7129), 1, sym_comment, - [212009] = 4, + [212130] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11045), 1, - anon_sym_COLON, + ACTIONS(11054), 1, + anon_sym_RBRACK, STATE(7130), 1, sym_comment, - [212022] = 4, + [212143] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11047), 1, - anon_sym_LBRACE, + ACTIONS(11056), 1, + anon_sym_from, STATE(7131), 1, sym_comment, - [212035] = 4, + [212156] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11049), 1, - anon_sym_RBRACK, + ACTIONS(3202), 1, + anon_sym_LBRACE, STATE(7132), 1, sym_comment, - [212048] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212169] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11051), 1, - anon_sym_SLASH2, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11058), 1, + anon_sym_RPAREN, STATE(7133), 1, sym_comment, - [212061] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212182] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11053), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11060), 1, + anon_sym_LBRACE, STATE(7134), 1, sym_comment, - [212074] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212195] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11055), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5890), 1, + anon_sym_RPAREN, STATE(7135), 1, sym_comment, - [212087] = 4, + [212208] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11057), 1, - anon_sym_symbol, + ACTIONS(11062), 1, + anon_sym_RPAREN, STATE(7136), 1, sym_comment, - [212100] = 4, + [212221] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11059), 1, - anon_sym_readonly, + ACTIONS(11064), 1, + sym_identifier, STATE(7137), 1, sym_comment, - [212113] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212234] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11061), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11066), 1, + anon_sym_COLON, STATE(7138), 1, sym_comment, - [212126] = 4, + [212247] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11063), 1, - sym_number, + ACTIONS(11068), 1, + anon_sym_RBRACK, STATE(7139), 1, sym_comment, - [212139] = 4, + [212260] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11065), 1, - anon_sym_EQ_GT, + ACTIONS(11070), 1, + anon_sym_readonly, STATE(7140), 1, sym_comment, - [212152] = 4, + [212273] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11067), 1, - anon_sym_RPAREN, + ACTIONS(11072), 1, + sym_number, STATE(7141), 1, sym_comment, - [212165] = 4, + [212286] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11069), 1, - sym_number, + ACTIONS(11074), 1, + anon_sym_EQ, STATE(7142), 1, sym_comment, - [212178] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212299] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11071), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11076), 1, + anon_sym_RPAREN, STATE(7143), 1, sym_comment, - [212191] = 4, + [212312] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11073), 1, - anon_sym_symbol, + ACTIONS(11078), 1, + anon_sym_EQ_GT, STATE(7144), 1, sym_comment, - [212204] = 4, + [212325] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11075), 1, - anon_sym_EQ_GT, + ACTIONS(11080), 1, + anon_sym_SLASH2, STATE(7145), 1, sym_comment, - [212217] = 4, + [212338] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11077), 1, + ACTIONS(11082), 1, anon_sym_SLASH2, STATE(7146), 1, sym_comment, - [212230] = 4, + [212351] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11079), 1, - anon_sym_EQ, + ACTIONS(11084), 1, + anon_sym_EQ_GT, STATE(7147), 1, sym_comment, - [212243] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212364] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11081), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11086), 1, + anon_sym_symbol, STATE(7148), 1, sym_comment, - [212256] = 4, + [212377] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11083), 1, - anon_sym_EQ_GT, + ACTIONS(11088), 1, + sym_identifier, STATE(7149), 1, sym_comment, - [212269] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212390] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11085), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11090), 1, + sym_number, STATE(7150), 1, sym_comment, - [212282] = 4, + [212403] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11087), 1, - anon_sym_symbol, + ACTIONS(11092), 1, + anon_sym_EQ, STATE(7151), 1, sym_comment, - [212295] = 4, + [212416] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11089), 1, - anon_sym_symbol, + ACTIONS(11094), 1, + sym_identifier, STATE(7152), 1, sym_comment, - [212308] = 4, + [212429] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11091), 1, - anon_sym_EQ_GT, + ACTIONS(11096), 1, + anon_sym_symbol, STATE(7153), 1, sym_comment, - [212321] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212442] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11093), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11098), 1, + sym_number, STATE(7154), 1, sym_comment, - [212334] = 4, + [212455] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11095), 1, - anon_sym_EQ_GT, + ACTIONS(11100), 1, + anon_sym_symbol, STATE(7155), 1, sym_comment, - [212347] = 4, + [212468] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11097), 1, + ACTIONS(11102), 1, anon_sym_EQ_GT, STATE(7156), 1, sym_comment, - [212360] = 4, + [212481] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11099), 1, - anon_sym_RPAREN, + ACTIONS(11104), 1, + anon_sym_SLASH2, STATE(7157), 1, sym_comment, - [212373] = 4, + [212494] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11101), 1, - sym_number, + ACTIONS(11106), 1, + anon_sym_EQ, STATE(7158), 1, sym_comment, - [212386] = 4, + [212507] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11103), 1, - sym_number, + ACTIONS(11108), 1, + anon_sym_EQ_GT, STATE(7159), 1, sym_comment, - [212399] = 4, + [212520] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11105), 1, - anon_sym_EQ_GT, + ACTIONS(11110), 1, + anon_sym_RPAREN, STATE(7160), 1, sym_comment, - [212412] = 4, + [212533] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(3207), 1, - anon_sym_LBRACE, + ACTIONS(11112), 1, + sym_number, STATE(7161), 1, sym_comment, - [212425] = 4, + [212546] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11107), 1, + ACTIONS(11114), 1, sym_identifier, STATE(7162), 1, sym_comment, - [212438] = 4, + [212559] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11109), 1, - anon_sym_SLASH2, + ACTIONS(11116), 1, + sym_identifier, STATE(7163), 1, sym_comment, - [212451] = 4, + [212572] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11111), 1, - anon_sym_EQ, + ACTIONS(3188), 1, + anon_sym_LBRACE, STATE(7164), 1, sym_comment, - [212464] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212585] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11113), 1, - anon_sym_SLASH2, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11118), 1, + anon_sym_EQ_GT, STATE(7165), 1, sym_comment, - [212477] = 4, + [212598] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11115), 1, - anon_sym_EQ_GT, + ACTIONS(11120), 1, + anon_sym_SLASH2, STATE(7166), 1, sym_comment, - [212490] = 4, + [212611] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5499), 1, - anon_sym_in, + ACTIONS(11122), 1, + anon_sym_EQ, STATE(7167), 1, sym_comment, - [212503] = 4, + [212624] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11117), 1, + ACTIONS(11124), 1, anon_sym_EQ_GT, STATE(7168), 1, sym_comment, - [212516] = 4, + [212637] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11119), 1, - anon_sym_COLON, + ACTIONS(11126), 1, + sym_identifier, STATE(7169), 1, sym_comment, - [212529] = 4, + [212650] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11121), 1, - anon_sym_EQ, + ACTIONS(11128), 1, + anon_sym_COLON, STATE(7170), 1, sym_comment, - [212542] = 4, + [212663] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11123), 1, - anon_sym_EQ_GT, + ACTIONS(5438), 1, + anon_sym_in, STATE(7171), 1, sym_comment, - [212555] = 4, + [212676] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11125), 1, + ACTIONS(11130), 1, anon_sym_EQ_GT, STATE(7172), 1, sym_comment, - [212568] = 4, + [212689] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11127), 1, - anon_sym_EQ_GT, + ACTIONS(11132), 1, + anon_sym_target, STATE(7173), 1, sym_comment, - [212581] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212702] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11129), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11134), 1, + anon_sym_EQ, STATE(7174), 1, sym_comment, - [212594] = 4, + [212715] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11131), 1, - anon_sym_RPAREN, + ACTIONS(11136), 1, + anon_sym_EQ_GT, STATE(7175), 1, sym_comment, - [212607] = 4, + [212728] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11133), 1, - anon_sym_EQ, + ACTIONS(11138), 1, + anon_sym_EQ_GT, STATE(7176), 1, sym_comment, - [212620] = 4, + [212741] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5888), 1, - anon_sym_RBRACK, + ACTIONS(11140), 1, + anon_sym_EQ_GT, STATE(7177), 1, sym_comment, - [212633] = 4, + [212754] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7507), 1, - anon_sym_is, + ACTIONS(11142), 1, + anon_sym_RPAREN, STATE(7178), 1, sym_comment, - [212646] = 4, + [212767] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11135), 1, - anon_sym_RBRACK, + ACTIONS(11144), 1, + anon_sym_EQ_GT, STATE(7179), 1, sym_comment, - [212659] = 4, + [212780] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11137), 1, + ACTIONS(11146), 1, sym_identifier, STATE(7180), 1, sym_comment, - [212672] = 4, + [212793] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11139), 1, - anon_sym_EQ, + ACTIONS(11148), 1, + anon_sym_RPAREN, STATE(7181), 1, sym_comment, - [212685] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212806] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11141), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11150), 1, + anon_sym_EQ_GT, STATE(7182), 1, sym_comment, - [212698] = 4, + [212819] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11143), 1, + ACTIONS(6013), 1, anon_sym_RBRACK, STATE(7183), 1, sym_comment, - [212711] = 4, + [212832] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11145), 1, - anon_sym_as, + ACTIONS(7538), 1, + anon_sym_is, STATE(7184), 1, sym_comment, - [212724] = 4, + [212845] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11147), 1, - anon_sym_RBRACK, + ACTIONS(11152), 1, + anon_sym_EQ, STATE(7185), 1, sym_comment, - [212737] = 4, + [212858] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11149), 1, - anon_sym_from, + ACTIONS(11154), 1, + sym_identifier, STATE(7186), 1, sym_comment, - [212750] = 4, + [212871] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11151), 1, - anon_sym_RBRACK, + ACTIONS(11156), 1, + anon_sym_as, STATE(7187), 1, sym_comment, - [212763] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212884] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11153), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11158), 1, + anon_sym_EQ_GT, STATE(7188), 1, sym_comment, - [212776] = 4, + [212897] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11155), 1, - anon_sym_target, + ACTIONS(11160), 1, + anon_sym_from, STATE(7189), 1, sym_comment, - [212789] = 4, + [212910] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11157), 1, - anon_sym_RBRACK, + ACTIONS(9613), 1, + anon_sym_RBRACE, STATE(7190), 1, sym_comment, - [212802] = 4, + [212923] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11159), 1, - anon_sym_RBRACK, + ACTIONS(11162), 1, + anon_sym_LPAREN, STATE(7191), 1, sym_comment, - [212815] = 4, + [212936] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11161), 1, - anon_sym_EQ_GT, + ACTIONS(11164), 1, + sym_identifier, STATE(7192), 1, sym_comment, - [212828] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212949] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11163), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11166), 1, + anon_sym_EQ_GT, STATE(7193), 1, sym_comment, - [212841] = 4, + [212962] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11165), 1, + ACTIONS(11168), 1, anon_sym_EQ_GT, STATE(7194), 1, sym_comment, - [212854] = 4, + [212975] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11167), 1, + ACTIONS(11170), 1, anon_sym_EQ_GT, STATE(7195), 1, sym_comment, - [212867] = 4, + [212988] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11169), 1, - anon_sym_EQ_GT, + ACTIONS(11172), 1, + sym_identifier, STATE(7196), 1, sym_comment, - [212880] = 4, + [213001] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11171), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, STATE(7197), 1, sym_comment, - [212893] = 4, + [213014] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11173), 1, + ACTIONS(11176), 1, anon_sym_RBRACK, STATE(7198), 1, sym_comment, - [212906] = 4, + [213027] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11175), 1, + ACTIONS(11178), 1, anon_sym_RBRACK, STATE(7199), 1, sym_comment, - [212919] = 4, + [213040] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11177), 1, + ACTIONS(11180), 1, anon_sym_RBRACK, STATE(7200), 1, sym_comment, - [212932] = 4, + [213053] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11179), 1, + ACTIONS(11182), 1, anon_sym_RBRACK, STATE(7201), 1, sym_comment, - [212945] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213066] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11181), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11184), 1, + anon_sym_RBRACK, STATE(7202), 1, sym_comment, - [212958] = 4, + [213079] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11183), 1, - anon_sym_DOT, + ACTIONS(11186), 1, + anon_sym_RBRACK, STATE(7203), 1, sym_comment, - [212971] = 4, + [213092] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11185), 1, - anon_sym_while, + ACTIONS(5292), 1, + anon_sym_RPAREN, STATE(7204), 1, sym_comment, - [212984] = 4, + [213105] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11187), 1, - anon_sym_EQ, + ACTIONS(11188), 1, + anon_sym_RBRACK, STATE(7205), 1, sym_comment, - [212997] = 4, + [213118] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11189), 1, - anon_sym_RPAREN, + ACTIONS(11190), 1, + anon_sym_RBRACK, STATE(7206), 1, sym_comment, - [213010] = 4, + [213131] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, - anon_sym_RPAREN, + ACTIONS(11192), 1, + anon_sym_RBRACK, STATE(7207), 1, sym_comment, - [213023] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213144] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11191), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11194), 1, + anon_sym_EQ, STATE(7208), 1, sym_comment, - [213036] = 4, + [213157] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11193), 1, + ACTIONS(11196), 1, sym_identifier, STATE(7209), 1, sym_comment, - [213049] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213170] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11195), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(7461), 1, + anon_sym_is, STATE(7210), 1, sym_comment, - [213062] = 4, + [213183] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11197), 1, - anon_sym_RPAREN, + ACTIONS(11198), 1, + anon_sym_DOT, STATE(7211), 1, sym_comment, - [213075] = 4, + [213196] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11199), 1, + ACTIONS(11200), 1, sym_identifier, STATE(7212), 1, sym_comment, - [213088] = 4, + [213209] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11201), 1, - anon_sym_RPAREN, + ACTIONS(11202), 1, + sym_identifier, STATE(7213), 1, sym_comment, - [213101] = 4, + [213222] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5884), 1, - anon_sym_RPAREN, + ACTIONS(11204), 1, + anon_sym_EQ, STATE(7214), 1, sym_comment, - [213114] = 4, + [213235] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11203), 1, - anon_sym_RPAREN, + ACTIONS(11206), 1, + anon_sym_while, STATE(7215), 1, sym_comment, - [213127] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213248] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11205), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11208), 1, + anon_sym_RPAREN, STATE(7216), 1, sym_comment, - [213140] = 4, + [213261] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11207), 1, - anon_sym_EQ, + ACTIONS(11210), 1, + sym_identifier, STATE(7217), 1, sym_comment, - [213153] = 4, + [213274] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11209), 1, - anon_sym_EQ, + ACTIONS(11212), 1, + anon_sym_RPAREN, STATE(7218), 1, sym_comment, - [213166] = 4, + [213287] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8650), 1, - anon_sym_EQ, + ACTIONS(11214), 1, + sym_identifier, STATE(7219), 1, sym_comment, - [213179] = 4, + [213300] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5179), 1, + ACTIONS(11216), 1, anon_sym_RPAREN, STATE(7220), 1, sym_comment, - [213192] = 4, + [213313] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(10026), 1, - anon_sym_RBRACK, + ACTIONS(11218), 1, + anon_sym_EQ, STATE(7221), 1, sym_comment, - [213205] = 4, + [213326] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11211), 1, - anon_sym_EQ_GT, + ACTIONS(11220), 1, + anon_sym_RPAREN, STATE(7222), 1, sym_comment, - [213218] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213339] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11213), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(8659), 1, + anon_sym_EQ, STATE(7223), 1, sym_comment, - [213231] = 4, + [213352] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9568), 1, - anon_sym_RBRACE, + ACTIONS(5200), 1, + anon_sym_RPAREN, STATE(7224), 1, sym_comment, - [213244] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213365] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11215), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5999), 1, + anon_sym_RPAREN, STATE(7225), 1, sym_comment, - [213257] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213378] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11217), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(10047), 1, + anon_sym_RBRACK, STATE(7226), 1, sym_comment, - [213270] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213391] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11219), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(9577), 1, + anon_sym_RBRACE, STATE(7227), 1, sym_comment, - [213283] = 4, + [213404] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5223), 1, - anon_sym_RPAREN, + ACTIONS(11222), 1, + anon_sym_EQ_GT, STATE(7228), 1, sym_comment, - [213296] = 4, + [213417] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11221), 1, - anon_sym_EQ_GT, + ACTIONS(11224), 1, + sym_identifier, STATE(7229), 1, sym_comment, - [213309] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213430] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11223), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5373), 1, + anon_sym_RPAREN, STATE(7230), 1, sym_comment, - [213322] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213443] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11225), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11226), 1, + anon_sym_EQ, STATE(7231), 1, sym_comment, - [213335] = 4, + [213456] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11227), 1, - anon_sym_class, + ACTIONS(11228), 1, + sym_identifier, STATE(7232), 1, sym_comment, - [213348] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213469] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11229), 1, - sym_regex_pattern, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11230), 1, + anon_sym_EQ_GT, STATE(7233), 1, sym_comment, - [213361] = 4, + [213482] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11231), 1, - anon_sym_RBRACK, + ACTIONS(11232), 1, + sym_identifier, STATE(7234), 1, sym_comment, - [213374] = 4, + [213495] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11233), 1, - anon_sym_RBRACK, + ACTIONS(11234), 1, + anon_sym_class, STATE(7235), 1, sym_comment, - [213387] = 4, + [213508] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11235), 1, - anon_sym_RBRACK, + ACTIONS(11236), 1, + sym_identifier, STATE(7236), 1, sym_comment, - [213400] = 4, + [213521] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11237), 1, - anon_sym_EQ, + ACTIONS(11238), 1, + sym_identifier, STATE(7237), 1, sym_comment, - [213413] = 4, + [213534] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11239), 1, - anon_sym_EQ_GT, + ACTIONS(11240), 1, + sym_identifier, STATE(7238), 1, sym_comment, - [213426] = 4, + [213547] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11241), 1, - anon_sym_RBRACK, + ACTIONS(11242), 1, + sym_regex_pattern, STATE(7239), 1, sym_comment, - [213439] = 4, + [213560] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11243), 1, - anon_sym_RBRACK, + ACTIONS(5476), 1, + anon_sym_in, STATE(7240), 1, sym_comment, - [213452] = 4, + [213573] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11245), 1, - anon_sym_RBRACK, + ACTIONS(11244), 1, + anon_sym_EQ_GT, STATE(7241), 1, sym_comment, - [213465] = 4, + [213586] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11247), 1, + ACTIONS(11246), 1, anon_sym_RBRACK, STATE(7242), 1, sym_comment, - [213478] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213599] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11249), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11248), 1, + anon_sym_RBRACK, STATE(7243), 1, sym_comment, - [213491] = 4, + [213612] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11251), 1, + ACTIONS(11250), 1, anon_sym_RBRACK, STATE(7244), 1, sym_comment, - [213504] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213625] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9403), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11252), 1, + anon_sym_RBRACK, STATE(7245), 1, sym_comment, - [213517] = 4, + [213638] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5580), 1, - anon_sym_in, + ACTIONS(11254), 1, + sym_identifier, STATE(7246), 1, sym_comment, - [213530] = 4, + [213651] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11253), 1, - anon_sym_EQ_GT, + ACTIONS(11256), 1, + anon_sym_RBRACK, STATE(7247), 1, sym_comment, - [213543] = 4, + [213664] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11255), 1, - anon_sym_EQ_GT, + ACTIONS(9416), 1, + sym_identifier, STATE(7248), 1, sym_comment, - [213556] = 4, + [213677] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11257), 1, + ACTIONS(11258), 1, anon_sym_RBRACK, STATE(7249), 1, sym_comment, - [213569] = 4, + [213690] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(4981), 1, - anon_sym_is, + ACTIONS(11260), 1, + anon_sym_RBRACK, STATE(7250), 1, sym_comment, - [213582] = 4, + [213703] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11259), 1, - anon_sym_EQ_GT, + ACTIONS(11262), 1, + anon_sym_RBRACK, STATE(7251), 1, sym_comment, - [213595] = 4, + [213716] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11261), 1, - anon_sym_DOT, + ACTIONS(11264), 1, + anon_sym_EQ_GT, STATE(7252), 1, sym_comment, - [213608] = 4, + [213729] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11263), 1, + ACTIONS(11266), 1, anon_sym_EQ_GT, STATE(7253), 1, sym_comment, - [213621] = 4, + [213742] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11265), 1, - anon_sym_symbol, + ACTIONS(11268), 1, + anon_sym_EQ_GT, STATE(7254), 1, sym_comment, - [213634] = 4, + [213755] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6434), 1, - anon_sym_in, + ACTIONS(11270), 1, + anon_sym_DOT, STATE(7255), 1, sym_comment, - [213647] = 4, + [213768] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11267), 1, - anon_sym_EQ_GT, + ACTIONS(11272), 1, + anon_sym_RBRACK, STATE(7256), 1, sym_comment, - [213660] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213781] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11269), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11274), 1, + anon_sym_symbol, STATE(7257), 1, sym_comment, - [213673] = 4, + [213794] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11271), 1, - anon_sym_EQ_GT, + ACTIONS(11276), 1, + sym_identifier, STATE(7258), 1, sym_comment, - [213686] = 4, + [213807] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11273), 1, - anon_sym_EQ_GT, + ACTIONS(6309), 1, + anon_sym_in, STATE(7259), 1, sym_comment, - [213699] = 4, + [213820] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11275), 1, + ACTIONS(11278), 1, anon_sym_EQ_GT, STATE(7260), 1, sym_comment, - [213712] = 4, + [213833] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11277), 1, + ACTIONS(11280), 1, anon_sym_new, STATE(7261), 1, sym_comment, - [213725] = 4, + [213846] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(6024), 1, - anon_sym_RPAREN, + ACTIONS(11282), 1, + anon_sym_EQ_GT, STATE(7262), 1, sym_comment, - [213738] = 4, + [213859] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11279), 1, - sym_number, + ACTIONS(11284), 1, + anon_sym_EQ_GT, STATE(7263), 1, sym_comment, - [213751] = 4, + [213872] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11281), 1, - anon_sym_RBRACK, + ACTIONS(11286), 1, + anon_sym_EQ_GT, STATE(7264), 1, sym_comment, - [213764] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213885] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11283), 1, - anon_sym_SLASH2, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11288), 1, + anon_sym_RBRACK, STATE(7265), 1, sym_comment, - [213777] = 4, + [213898] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11285), 1, - anon_sym_EQ, + ACTIONS(11290), 1, + sym_number, STATE(7266), 1, sym_comment, - [213790] = 4, + [213911] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11287), 1, - anon_sym_target, + ACTIONS(4978), 1, + anon_sym_is, STATE(7267), 1, sym_comment, - [213803] = 4, + [213924] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11289), 1, - anon_sym_EQ, + ACTIONS(11292), 1, + anon_sym_SLASH2, STATE(7268), 1, sym_comment, - [213816] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213937] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11291), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11294), 1, + anon_sym_EQ, STATE(7269), 1, sym_comment, - [213829] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213950] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11293), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11296), 1, + anon_sym_target, STATE(7270), 1, sym_comment, - [213842] = 4, + [213963] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11295), 1, + ACTIONS(11298), 1, anon_sym_EQ_GT, STATE(7271), 1, sym_comment, - [213855] = 4, + [213976] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9298), 1, - anon_sym_EQ_GT, + ACTIONS(11300), 1, + anon_sym_EQ, STATE(7272), 1, sym_comment, - [213868] = 4, + [213989] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9300), 1, - anon_sym_EQ_GT, + ACTIONS(8089), 1, + anon_sym_EQ, STATE(7273), 1, sym_comment, - [213881] = 4, + [214002] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(9490), 1, - anon_sym_LBRACE, + ACTIONS(11302), 1, + anon_sym_EQ_GT, STATE(7274), 1, sym_comment, - [213894] = 4, + [214015] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11297), 1, - anon_sym_RBRACK, + ACTIONS(9311), 1, + anon_sym_EQ_GT, STATE(7275), 1, sym_comment, - [213907] = 4, + [214028] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11299), 1, - anon_sym_RBRACK, + ACTIONS(9313), 1, + anon_sym_EQ_GT, STATE(7276), 1, sym_comment, - [213920] = 4, + [214041] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11301), 1, - anon_sym_EQ_GT, + ACTIONS(9501), 1, + anon_sym_LBRACE, STATE(7277), 1, sym_comment, - [213933] = 4, + [214054] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, - anon_sym_EQ, + ACTIONS(11304), 1, + anon_sym_EQ_GT, STATE(7278), 1, sym_comment, - [213946] = 4, + [214067] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11303), 1, - anon_sym_EQ_GT, + ACTIONS(5945), 1, + anon_sym_RPAREN, STATE(7279), 1, sym_comment, - [213959] = 4, + [214080] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11305), 1, + ACTIONS(11306), 1, anon_sym_EQ_GT, STATE(7280), 1, sym_comment, - [213972] = 4, + [214093] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11307), 1, - anon_sym_RBRACK, + ACTIONS(11308), 1, + anon_sym_EQ_GT, STATE(7281), 1, sym_comment, - [213985] = 4, + [214106] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11309), 1, - anon_sym_class, + ACTIONS(11310), 1, + sym_identifier, STATE(7282), 1, sym_comment, - [213998] = 4, + [214119] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11311), 1, - anon_sym_namespace, + ACTIONS(11312), 1, + sym_identifier, STATE(7283), 1, sym_comment, - [214011] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214132] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11313), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11314), 1, + anon_sym_RBRACK, STATE(7284), 1, sym_comment, - [214024] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214145] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11315), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11316), 1, + anon_sym_RBRACK, STATE(7285), 1, sym_comment, - [214037] = 4, + [214158] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11317), 1, - anon_sym_RBRACK, + ACTIONS(11318), 1, + anon_sym_class, STATE(7286), 1, sym_comment, - [214050] = 4, + [214171] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11319), 1, - anon_sym_RBRACK, + ACTIONS(11320), 1, + anon_sym_namespace, STATE(7287), 1, sym_comment, - [214063] = 4, + [214184] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11321), 1, - anon_sym_RBRACK, + ACTIONS(11322), 1, + sym_identifier, STATE(7288), 1, sym_comment, - [214076] = 4, + [214197] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11323), 1, - anon_sym_RBRACK, + ACTIONS(11324), 1, + sym_identifier, STATE(7289), 1, sym_comment, - [214089] = 4, + [214210] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11325), 1, + ACTIONS(11326), 1, anon_sym_RBRACK, STATE(7290), 1, sym_comment, - [214102] = 4, + [214223] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5207), 1, - anon_sym_in, + ACTIONS(11328), 1, + anon_sym_RBRACK, STATE(7291), 1, sym_comment, - [214115] = 4, + [214236] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11327), 1, - anon_sym_new, + ACTIONS(11330), 1, + anon_sym_RBRACK, STATE(7292), 1, sym_comment, - [214128] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214249] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9917), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11332), 1, + anon_sym_RBRACK, STATE(7293), 1, sym_comment, - [214141] = 4, + [214262] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11329), 1, - anon_sym_class, + ACTIONS(5178), 1, + anon_sym_in, STATE(7294), 1, sym_comment, - [214154] = 4, + [214275] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11331), 1, + ACTIONS(11334), 1, sym_identifier, STATE(7295), 1, sym_comment, - [214167] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214288] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11333), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11336), 1, + anon_sym_new, STATE(7296), 1, sym_comment, - [214180] = 4, + [214301] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11335), 1, - anon_sym_EQ, + ACTIONS(9920), 1, + sym_identifier, STATE(7297), 1, sym_comment, - [214193] = 4, + [214314] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11337), 1, - anon_sym_RBRACK, + ACTIONS(11338), 1, + anon_sym_class, STATE(7298), 1, sym_comment, - [214206] = 4, + [214327] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11339), 1, + ACTIONS(11340), 1, sym_identifier, STATE(7299), 1, sym_comment, - [214219] = 4, + [214340] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11341), 1, - anon_sym_EQ, + ACTIONS(11342), 1, + anon_sym_RBRACK, STATE(7300), 1, sym_comment, - [214232] = 4, + [214353] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11343), 1, - anon_sym_RBRACK, + ACTIONS(11344), 1, + anon_sym_EQ, STATE(7301), 1, sym_comment, - [214245] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214366] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11345), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11346), 1, + anon_sym_RBRACK, STATE(7302), 1, sym_comment, - [214258] = 4, + [214379] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11347), 1, - anon_sym_RBRACK, + ACTIONS(11348), 1, + sym_identifier, STATE(7303), 1, sym_comment, - [214271] = 4, + [214392] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(7450), 1, - anon_sym_is, + ACTIONS(11350), 1, + anon_sym_EQ, STATE(7304), 1, sym_comment, - [214284] = 4, + [214405] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11349), 1, + ACTIONS(11352), 1, anon_sym_RBRACK, STATE(7305), 1, sym_comment, - [214297] = 4, + [214418] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11351), 1, - anon_sym_COLON, + ACTIONS(11354), 1, + sym_identifier, STATE(7306), 1, sym_comment, - [214310] = 4, + [214431] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11353), 1, + ACTIONS(11356), 1, anon_sym_RBRACK, STATE(7307), 1, sym_comment, - [214323] = 4, + [214444] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11355), 1, - anon_sym_while, + ACTIONS(11358), 1, + anon_sym_RBRACK, STATE(7308), 1, sym_comment, - [214336] = 4, + [214457] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11357), 1, + ACTIONS(11360), 1, anon_sym_RBRACK, STATE(7309), 1, sym_comment, - [214349] = 4, + [214470] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11359), 1, - anon_sym_RBRACK, + ACTIONS(11362), 1, + anon_sym_COLON, STATE(7310), 1, sym_comment, - [214362] = 4, + [214483] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5288), 1, - anon_sym_RPAREN, + ACTIONS(11364), 1, + anon_sym_while, STATE(7311), 1, sym_comment, - [214375] = 4, + [214496] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11361), 1, + ACTIONS(11366), 1, anon_sym_RBRACK, STATE(7312), 1, sym_comment, - [214388] = 4, + [214509] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11363), 1, + ACTIONS(11368), 1, anon_sym_RBRACK, STATE(7313), 1, sym_comment, - [214401] = 4, + [214522] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11365), 1, - anon_sym_RBRACK, + ACTIONS(5411), 1, + anon_sym_RPAREN, STATE(7314), 1, sym_comment, - [214414] = 4, + [214535] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11367), 1, - anon_sym_EQ, + ACTIONS(11370), 1, + anon_sym_RBRACK, STATE(7315), 1, sym_comment, - [214427] = 4, + [214548] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11369), 1, + ACTIONS(11372), 1, anon_sym_RBRACK, STATE(7316), 1, sym_comment, - [214440] = 4, + [214561] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11371), 1, + ACTIONS(11374), 1, anon_sym_RBRACK, STATE(7317), 1, sym_comment, - [214453] = 4, + [214574] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11373), 1, - anon_sym_class, + ACTIONS(11376), 1, + anon_sym_RBRACK, STATE(7318), 1, sym_comment, - [214466] = 4, + [214587] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11375), 1, - anon_sym_namespace, + ACTIONS(11378), 1, + anon_sym_EQ, STATE(7319), 1, sym_comment, - [214479] = 4, + [214600] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11377), 1, + ACTIONS(11380), 1, anon_sym_RBRACK, STATE(7320), 1, sym_comment, - [214492] = 4, + [214613] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11379), 1, - anon_sym_RBRACK, + ACTIONS(11382), 1, + sym_identifier, STATE(7321), 1, sym_comment, - [214505] = 4, + [214626] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11381), 1, - anon_sym_RBRACK, + ACTIONS(11384), 1, + anon_sym_class, STATE(7322), 1, sym_comment, - [214518] = 4, + [214639] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11383), 1, - anon_sym_RBRACK, + ACTIONS(11386), 1, + anon_sym_namespace, STATE(7323), 1, sym_comment, - [214531] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214652] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11385), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11388), 1, + anon_sym_RBRACK, STATE(7324), 1, sym_comment, - [214544] = 4, + [214665] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11387), 1, - anon_sym_EQ_GT, + ACTIONS(11390), 1, + anon_sym_RBRACK, STATE(7325), 1, sym_comment, - [214557] = 4, + [214678] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11389), 1, + ACTIONS(11392), 1, anon_sym_RBRACK, STATE(7326), 1, sym_comment, - [214570] = 4, + [214691] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11391), 1, - anon_sym_new, + ACTIONS(11394), 1, + anon_sym_RBRACK, STATE(7327), 1, sym_comment, - [214583] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214704] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9833), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11396), 1, + anon_sym_RBRACK, STATE(7328), 1, sym_comment, - [214596] = 4, + [214717] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11393), 1, - anon_sym_class, + ACTIONS(11398), 1, + anon_sym_RBRACK, STATE(7329), 1, sym_comment, - [214609] = 4, + [214730] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11395), 1, - anon_sym_RPAREN, + ACTIONS(11400), 1, + anon_sym_RBRACK, STATE(7330), 1, sym_comment, - [214622] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214743] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11397), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11402), 1, + anon_sym_new, STATE(7331), 1, sym_comment, - [214635] = 4, + [214756] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11399), 1, - anon_sym_EQ, + ACTIONS(9836), 1, + sym_identifier, STATE(7332), 1, sym_comment, - [214648] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214769] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11401), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11404), 1, + anon_sym_class, STATE(7333), 1, sym_comment, - [214661] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214782] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11403), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11406), 1, + anon_sym_RBRACK, STATE(7334), 1, sym_comment, - [214674] = 4, + [214795] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11405), 1, - anon_sym_EQ, + ACTIONS(11408), 1, + anon_sym_RPAREN, STATE(7335), 1, sym_comment, - [214687] = 4, + [214808] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5351), 1, - anon_sym_RPAREN, + ACTIONS(11410), 1, + anon_sym_EQ, STATE(7336), 1, sym_comment, - [214700] = 4, + [214821] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11407), 1, + ACTIONS(11412), 1, sym_identifier, STATE(7337), 1, sym_comment, - [214713] = 4, + [214834] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10273), 1, - anon_sym_from, + ACTIONS(11414), 1, + sym_identifier, STATE(7338), 1, sym_comment, - [214726] = 4, + [214847] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11409), 1, - anon_sym_RPAREN, + ACTIONS(11416), 1, + anon_sym_EQ, STATE(7339), 1, sym_comment, - [214739] = 4, + [214860] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11411), 1, - anon_sym_COLON, + ACTIONS(10282), 1, + anon_sym_from, STATE(7340), 1, sym_comment, - [214752] = 4, + [214873] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11413), 1, + ACTIONS(11418), 1, sym_identifier, STATE(7341), 1, sym_comment, - [214765] = 4, + [214886] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11415), 1, - anon_sym_RBRACK, + ACTIONS(11420), 1, + sym_identifier, STATE(7342), 1, sym_comment, - [214778] = 4, + [214899] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11417), 1, - anon_sym_as, + ACTIONS(11422), 1, + anon_sym_RBRACK, STATE(7343), 1, sym_comment, - [214791] = 4, + [214912] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11419), 1, - anon_sym_RBRACK, + ACTIONS(11424), 1, + anon_sym_COLON, STATE(7344), 1, sym_comment, - [214804] = 4, + [214925] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11421), 1, + ACTIONS(11426), 1, anon_sym_RBRACK, STATE(7345), 1, sym_comment, - [214817] = 4, + [214938] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11423), 1, - anon_sym_class, + ACTIONS(11428), 1, + anon_sym_as, STATE(7346), 1, sym_comment, - [214830] = 4, + [214951] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11425), 1, - anon_sym_namespace, + ACTIONS(11430), 1, + anon_sym_RBRACK, STATE(7347), 1, sym_comment, - [214843] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214964] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11427), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11432), 1, + anon_sym_EQ_GT, STATE(7348), 1, sym_comment, - [214856] = 4, + [214977] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11429), 1, - anon_sym_RBRACK, + ACTIONS(5198), 1, + anon_sym_RPAREN, STATE(7349), 1, sym_comment, - [214869] = 4, + [214990] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11431), 1, - anon_sym_RBRACK, + ACTIONS(11434), 1, + anon_sym_class, STATE(7350), 1, sym_comment, - [214882] = 4, + [215003] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5255), 1, - anon_sym_RPAREN, + ACTIONS(11436), 1, + anon_sym_namespace, STATE(7351), 1, sym_comment, - [214895] = 4, + [215016] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11433), 1, - anon_sym_RBRACK, + ACTIONS(11438), 1, + anon_sym_RPAREN, STATE(7352), 1, sym_comment, - [214908] = 4, + [215029] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11435), 1, + ACTIONS(11440), 1, sym_identifier, STATE(7353), 1, sym_comment, - [214921] = 4, + [215042] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11437), 1, - anon_sym_RBRACK, + ACTIONS(11442), 1, + sym_identifier, STATE(7354), 1, sym_comment, - [214934] = 4, + [215055] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11439), 1, - anon_sym_new, + ACTIONS(5363), 1, + anon_sym_RPAREN, STATE(7355), 1, sym_comment, - [214947] = 4, + [215068] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9785), 1, + ACTIONS(11444), 1, sym_identifier, STATE(7356), 1, sym_comment, - [214960] = 4, + [215081] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11441), 1, - anon_sym_class, + ACTIONS(11446), 1, + anon_sym_EQ, STATE(7357), 1, sym_comment, - [214973] = 4, + [215094] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11443), 1, + ACTIONS(11448), 1, anon_sym_EQ, STATE(7358), 1, sym_comment, - [214986] = 4, + [215107] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11445), 1, - anon_sym_RBRACK, + ACTIONS(11450), 1, + anon_sym_new, STATE(7359), 1, sym_comment, - [214999] = 4, + [215120] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11447), 1, - anon_sym_EQ, + ACTIONS(9799), 1, + sym_identifier, STATE(7360), 1, sym_comment, - [215012] = 4, + [215133] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11449), 1, - anon_sym_RBRACK, + ACTIONS(11452), 1, + anon_sym_class, STATE(7361), 1, sym_comment, - [215025] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215146] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11451), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11454), 1, + anon_sym_RBRACK, STATE(7362), 1, sym_comment, - [215038] = 4, + [215159] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11453), 1, - anon_sym_EQ, + ACTIONS(11456), 1, + anon_sym_EQ_GT, STATE(7363), 1, sym_comment, - [215051] = 4, + [215172] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11455), 1, - anon_sym_RBRACK, + ACTIONS(11458), 1, + anon_sym_EQ, STATE(7364), 1, sym_comment, - [215064] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215185] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11457), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11460), 1, + anon_sym_RBRACK, STATE(7365), 1, sym_comment, - [215077] = 4, + [215198] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11459), 1, - anon_sym_EQ_GT, + ACTIONS(11462), 1, + sym_identifier, STATE(7366), 1, sym_comment, - [215090] = 4, + [215211] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11461), 1, - anon_sym_RBRACK, + ACTIONS(11464), 1, + anon_sym_EQ, STATE(7367), 1, sym_comment, - [215103] = 4, + [215224] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11463), 1, - anon_sym_COLON, + ACTIONS(11466), 1, + anon_sym_RBRACK, STATE(7368), 1, sym_comment, - [215116] = 4, + [215237] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11465), 1, - anon_sym_RBRACK, + ACTIONS(11468), 1, + sym_identifier, STATE(7369), 1, sym_comment, - [215129] = 4, + [215250] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11467), 1, + ACTIONS(11470), 1, anon_sym_RBRACK, STATE(7370), 1, sym_comment, - [215142] = 4, + [215263] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11469), 1, - anon_sym_class, + ACTIONS(11472), 1, + anon_sym_RBRACK, STATE(7371), 1, sym_comment, - [215155] = 4, + [215276] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11471), 1, - anon_sym_namespace, + ACTIONS(11474), 1, + anon_sym_COLON, STATE(7372), 1, sym_comment, - [215168] = 4, + [215289] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11473), 1, + ACTIONS(11476), 1, anon_sym_RBRACK, STATE(7373), 1, sym_comment, - [215181] = 4, + [215302] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11475), 1, + ACTIONS(11478), 1, anon_sym_RBRACK, STATE(7374), 1, sym_comment, - [215194] = 4, + [215315] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11477), 1, - anon_sym_RBRACK, + ACTIONS(11480), 1, + anon_sym_class, STATE(7375), 1, sym_comment, - [215207] = 4, + [215328] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11479), 1, - anon_sym_RBRACK, + ACTIONS(11482), 1, + anon_sym_namespace, STATE(7376), 1, sym_comment, - [215220] = 4, + [215341] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11481), 1, + ACTIONS(11484), 1, anon_sym_RBRACK, STATE(7377), 1, sym_comment, - [215233] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215354] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9732), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11486), 1, + anon_sym_RBRACK, STATE(7378), 1, sym_comment, - [215246] = 4, + [215367] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11483), 1, - anon_sym_class, + ACTIONS(11488), 1, + anon_sym_RBRACK, STATE(7379), 1, sym_comment, - [215259] = 4, + [215380] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11485), 1, - anon_sym_function, + ACTIONS(11490), 1, + anon_sym_RBRACK, STATE(7380), 1, sym_comment, - [215272] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215393] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11487), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11492), 1, + anon_sym_function, STATE(7381), 1, sym_comment, - [215285] = 4, + [215406] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11489), 1, - anon_sym_EQ, + ACTIONS(9747), 1, + sym_identifier, STATE(7382), 1, sym_comment, - [215298] = 4, + [215419] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11491), 1, - anon_sym_RBRACK, + ACTIONS(11494), 1, + anon_sym_class, STATE(7383), 1, sym_comment, - [215311] = 4, + [215432] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11493), 1, + ACTIONS(11496), 1, sym_identifier, STATE(7384), 1, sym_comment, - [215324] = 4, + [215445] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11495), 1, - anon_sym_EQ, + ACTIONS(8221), 1, + sym_identifier, STATE(7385), 1, sym_comment, - [215337] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215458] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8236), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11498), 1, + anon_sym_EQ, STATE(7386), 1, sym_comment, - [215350] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215471] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11497), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11500), 1, + anon_sym_RBRACK, STATE(7387), 1, sym_comment, - [215363] = 4, + [215484] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11499), 1, - anon_sym_COLON, + ACTIONS(11502), 1, + sym_identifier, STATE(7388), 1, sym_comment, - [215376] = 4, + [215497] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11501), 1, - anon_sym_namespace, + ACTIONS(11504), 1, + anon_sym_EQ, STATE(7389), 1, sym_comment, - [215389] = 4, + [215510] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11503), 1, - anon_sym_RBRACK, + ACTIONS(11506), 1, + anon_sym_namespace, STATE(7390), 1, sym_comment, - [215402] = 4, + [215523] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11505), 1, - anon_sym_RBRACK, + ACTIONS(11508), 1, + sym_identifier, STATE(7391), 1, sym_comment, - [215415] = 4, + [215536] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11507), 1, - anon_sym_RBRACK, + ACTIONS(11510), 1, + anon_sym_COLON, STATE(7392), 1, sym_comment, - [215428] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215549] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8529), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11512), 1, + anon_sym_RBRACK, STATE(7393), 1, sym_comment, - [215441] = 4, + [215562] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11509), 1, - anon_sym_function, + ACTIONS(11514), 1, + anon_sym_RBRACK, STATE(7394), 1, sym_comment, - [215454] = 4, + [215575] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11511), 1, + ACTIONS(11516), 1, anon_sym_RBRACK, STATE(7395), 1, sym_comment, - [215467] = 4, + [215588] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11513), 1, - anon_sym_EQ, + ACTIONS(11518), 1, + anon_sym_RBRACK, STATE(7396), 1, sym_comment, - [215480] = 4, + [215601] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9604), 1, - anon_sym_EQ, + ACTIONS(8548), 1, + sym_identifier, STATE(7397), 1, sym_comment, - [215493] = 4, + [215614] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11515), 1, - anon_sym_EQ_GT, + ACTIONS(11520), 1, + anon_sym_function, STATE(7398), 1, sym_comment, - [215506] = 4, + [215627] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11517), 1, + ACTIONS(11522), 1, anon_sym_RBRACK, STATE(7399), 1, sym_comment, - [215519] = 4, + [215640] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11519), 1, - ts_builtin_sym_end, + ACTIONS(9645), 1, + anon_sym_EQ, STATE(7400), 1, sym_comment, - [215532] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215653] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11521), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11524), 1, + anon_sym_EQ_GT, STATE(7401), 1, sym_comment, - [215545] = 4, + [215666] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11523), 1, + ACTIONS(11526), 1, anon_sym_RBRACK, STATE(7402), 1, sym_comment, - [215558] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215679] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11525), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11528), 1, + ts_builtin_sym_end, STATE(7403), 1, sym_comment, - [215571] = 4, + [215692] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11527), 1, - anon_sym_class, + ACTIONS(11530), 1, + sym_identifier, STATE(7404), 1, sym_comment, - [215584] = 4, + [215705] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11529), 1, - anon_sym_EQ_GT, + ACTIONS(11532), 1, + sym_identifier, STATE(7405), 1, sym_comment, - [215597] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215718] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11531), 1, - sym_identifier, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11534), 1, + anon_sym_RBRACK, STATE(7406), 1, sym_comment, - [215610] = 4, + [215731] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5455), 1, - anon_sym_in, + ACTIONS(11536), 1, + anon_sym_RBRACK, STATE(7407), 1, sym_comment, - [215623] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215744] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11533), 1, - sym_regex_pattern, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11538), 1, + anon_sym_class, STATE(7408), 1, sym_comment, - [215636] = 4, + [215757] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5905), 1, + ACTIONS(6035), 1, anon_sym_RPAREN, STATE(7409), 1, sym_comment, - [215649] = 4, + [215770] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(11540), 1, + sym_identifier, + STATE(7410), 1, + sym_comment, + [215783] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, + ACTIONS(5523), 1, anon_sym_in, - STATE(7410), 1, + STATE(7411), 1, sym_comment, - [215662] = 4, + [215796] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(11542), 1, + sym_regex_pattern, + STATE(7412), 1, + sym_comment, + [215809] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(11544), 1, + anon_sym_EQ_GT, + STATE(7413), 1, + sym_comment, + [215822] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11535), 1, + ACTIONS(11546), 1, anon_sym_RPAREN, - STATE(7411), 1, + STATE(7414), 1, sym_comment, - [215675] = 4, + [215835] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11537), 1, + ACTIONS(11548), 1, sym_identifier, - STATE(7412), 1, + STATE(7415), 1, sym_comment, - [215688] = 4, + [215848] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11539), 1, + ACTIONS(11550), 1, sym_identifier, - STATE(7413), 1, + STATE(7416), 1, sym_comment, - [215701] = 4, + [215861] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2792), 1, + aux_sym_comment_token1, + ACTIONS(5921), 1, + anon_sym_in, + STATE(7417), 1, + sym_comment, + [215874] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8553), 1, + ACTIONS(8570), 1, sym_identifier, - STATE(7414), 1, + STATE(7418), 1, sym_comment, - [215714] = 4, + [215887] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11541), 1, + ACTIONS(11552), 1, anon_sym_function, - STATE(7415), 1, + STATE(7419), 1, sym_comment, - [215727] = 4, + [215900] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5343), 1, + ACTIONS(5297), 1, anon_sym_RPAREN, - STATE(7416), 1, + STATE(7420), 1, sym_comment, - [215740] = 4, + [215913] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(5225), 1, + ACTIONS(5413), 1, anon_sym_RPAREN, - STATE(7417), 1, + STATE(7421), 1, sym_comment, - [215753] = 4, + [215926] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11543), 1, + ACTIONS(11554), 1, sym_identifier, - STATE(7418), 1, + STATE(7422), 1, sym_comment, - [215766] = 4, + [215939] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8555), 1, + ACTIONS(8572), 1, sym_identifier, - STATE(7419), 1, + STATE(7423), 1, sym_comment, - [215779] = 4, + [215952] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11545), 1, + ACTIONS(11556), 1, anon_sym_function, - STATE(7420), 1, + STATE(7424), 1, sym_comment, - [215792] = 4, + [215965] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11547), 1, + ACTIONS(11558), 1, sym_identifier, - STATE(7421), 1, + STATE(7425), 1, sym_comment, - [215805] = 4, + [215978] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11549), 1, + ACTIONS(11560), 1, sym_identifier, - STATE(7422), 1, + STATE(7426), 1, sym_comment, - [215818] = 4, + [215991] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11551), 1, + ACTIONS(11562), 1, sym_identifier, - STATE(7423), 1, + STATE(7427), 1, sym_comment, - [215831] = 4, + [216004] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8563), 1, + ACTIONS(8574), 1, sym_identifier, - STATE(7424), 1, + STATE(7428), 1, sym_comment, - [215844] = 4, + [216017] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11553), 1, + ACTIONS(11564), 1, anon_sym_function, - STATE(7425), 1, + STATE(7429), 1, sym_comment, - [215857] = 4, + [216030] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11555), 1, + ACTIONS(11566), 1, anon_sym_RPAREN, - STATE(7426), 1, + STATE(7430), 1, sym_comment, - [215870] = 4, + [216043] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11557), 1, + ACTIONS(11568), 1, sym_identifier, - STATE(7427), 1, + STATE(7431), 1, sym_comment, - [215883] = 4, + [216056] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11559), 1, + ACTIONS(11570), 1, sym_identifier, - STATE(7428), 1, + STATE(7432), 1, sym_comment, - [215896] = 4, + [216069] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8434), 1, + ACTIONS(8450), 1, sym_identifier, - STATE(7429), 1, + STATE(7433), 1, sym_comment, - [215909] = 4, + [216082] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(2792), 1, aux_sym_comment_token1, - ACTIONS(11561), 1, + ACTIONS(11572), 1, anon_sym_function, - STATE(7430), 1, + STATE(7434), 1, sym_comment, - [215922] = 4, + [216095] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11563), 1, + ACTIONS(11574), 1, sym_identifier, - STATE(7431), 1, + STATE(7435), 1, sym_comment, - [215935] = 1, - ACTIONS(11565), 1, + [216108] = 1, + ACTIONS(11576), 1, ts_builtin_sym_end, }; @@ -383968,464 +386452,464 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1914)] = 93, [SMALL_STATE(1915)] = 188, [SMALL_STATE(1916)] = 281, - [SMALL_STATE(1917)] = 374, - [SMALL_STATE(1918)] = 467, - [SMALL_STATE(1919)] = 560, - [SMALL_STATE(1920)] = 653, - [SMALL_STATE(1921)] = 728, - [SMALL_STATE(1922)] = 823, - [SMALL_STATE(1923)] = 918, - [SMALL_STATE(1924)] = 993, - [SMALL_STATE(1925)] = 1086, - [SMALL_STATE(1926)] = 1179, - [SMALL_STATE(1927)] = 1254, - [SMALL_STATE(1928)] = 1349, - [SMALL_STATE(1929)] = 1446, - [SMALL_STATE(1930)] = 1539, - [SMALL_STATE(1931)] = 1632, - [SMALL_STATE(1932)] = 1707, - [SMALL_STATE(1933)] = 1782, - [SMALL_STATE(1934)] = 1875, - [SMALL_STATE(1935)] = 1968, - [SMALL_STATE(1936)] = 2061, - [SMALL_STATE(1937)] = 2154, - [SMALL_STATE(1938)] = 2229, - [SMALL_STATE(1939)] = 2322, - [SMALL_STATE(1940)] = 2417, - [SMALL_STATE(1941)] = 2510, - [SMALL_STATE(1942)] = 2607, - [SMALL_STATE(1943)] = 2702, - [SMALL_STATE(1944)] = 2795, - [SMALL_STATE(1945)] = 2890, - [SMALL_STATE(1946)] = 2965, - [SMALL_STATE(1947)] = 3060, - [SMALL_STATE(1948)] = 3153, - [SMALL_STATE(1949)] = 3231, - [SMALL_STATE(1950)] = 3305, - [SMALL_STATE(1951)] = 3401, - [SMALL_STATE(1952)] = 3483, - [SMALL_STATE(1953)] = 3575, - [SMALL_STATE(1954)] = 3667, - [SMALL_STATE(1955)] = 3759, - [SMALL_STATE(1956)] = 3851, - [SMALL_STATE(1957)] = 3943, - [SMALL_STATE(1958)] = 4039, - [SMALL_STATE(1959)] = 4133, - [SMALL_STATE(1960)] = 4207, - [SMALL_STATE(1961)] = 4301, - [SMALL_STATE(1962)] = 4397, - [SMALL_STATE(1963)] = 4493, - [SMALL_STATE(1964)] = 4585, - [SMALL_STATE(1965)] = 4685, - [SMALL_STATE(1966)] = 4776, - [SMALL_STATE(1967)] = 4859, - [SMALL_STATE(1968)] = 4956, - [SMALL_STATE(1969)] = 5047, - [SMALL_STATE(1970)] = 5130, - [SMALL_STATE(1971)] = 5225, - [SMALL_STATE(1972)] = 5316, - [SMALL_STATE(1973)] = 5407, - [SMALL_STATE(1974)] = 5498, - [SMALL_STATE(1975)] = 5589, - [SMALL_STATE(1976)] = 5682, - [SMALL_STATE(1977)] = 5765, - [SMALL_STATE(1978)] = 5860, - [SMALL_STATE(1979)] = 5933, - [SMALL_STATE(1980)] = 6006, - [SMALL_STATE(1981)] = 6101, - [SMALL_STATE(1982)] = 6192, - [SMALL_STATE(1983)] = 6275, - [SMALL_STATE(1984)] = 6360, - [SMALL_STATE(1985)] = 6451, - [SMALL_STATE(1986)] = 6546, - [SMALL_STATE(1987)] = 6637, - [SMALL_STATE(1988)] = 6712, - [SMALL_STATE(1989)] = 6809, - [SMALL_STATE(1990)] = 6900, - [SMALL_STATE(1991)] = 6991, - [SMALL_STATE(1992)] = 7086, - [SMALL_STATE(1993)] = 7177, - [SMALL_STATE(1994)] = 7268, - [SMALL_STATE(1995)] = 7347, - [SMALL_STATE(1996)] = 7438, - [SMALL_STATE(1997)] = 7520, - [SMALL_STATE(1998)] = 7610, - [SMALL_STATE(1999)] = 7704, - [SMALL_STATE(2000)] = 7786, - [SMALL_STATE(2001)] = 7876, - [SMALL_STATE(2002)] = 7970, - [SMALL_STATE(2003)] = 8050, - [SMALL_STATE(2004)] = 8132, - [SMALL_STATE(2005)] = 8224, - [SMALL_STATE(2006)] = 8318, - [SMALL_STATE(2007)] = 8406, - [SMALL_STATE(2008)] = 8490, - [SMALL_STATE(2009)] = 8560, - [SMALL_STATE(2010)] = 8642, - [SMALL_STATE(2011)] = 8722, - [SMALL_STATE(2012)] = 8816, - [SMALL_STATE(2013)] = 8898, - [SMALL_STATE(2014)] = 8968, - [SMALL_STATE(2015)] = 9058, - [SMALL_STATE(2016)] = 9142, - [SMALL_STATE(2017)] = 9212, - [SMALL_STATE(2018)] = 9306, - [SMALL_STATE(2019)] = 9390, - [SMALL_STATE(2020)] = 9484, - [SMALL_STATE(2021)] = 9572, - [SMALL_STATE(2022)] = 9643, - [SMALL_STATE(2023)] = 9712, - [SMALL_STATE(2024)] = 9783, - [SMALL_STATE(2025)] = 9876, - [SMALL_STATE(2026)] = 9947, - [SMALL_STATE(2027)] = 10018, - [SMALL_STATE(2028)] = 10087, - [SMALL_STATE(2029)] = 10168, - [SMALL_STATE(2030)] = 10245, - [SMALL_STATE(2031)] = 10324, - [SMALL_STATE(2032)] = 10403, - [SMALL_STATE(2033)] = 10486, - [SMALL_STATE(2034)] = 10563, - [SMALL_STATE(2035)] = 10632, - [SMALL_STATE(2036)] = 10703, - [SMALL_STATE(2037)] = 10780, - [SMALL_STATE(2038)] = 10851, - [SMALL_STATE(2039)] = 10930, - [SMALL_STATE(2040)] = 11009, - [SMALL_STATE(2041)] = 11088, - [SMALL_STATE(2042)] = 11175, - [SMALL_STATE(2043)] = 11254, - [SMALL_STATE(2044)] = 11331, - [SMALL_STATE(2045)] = 11408, - [SMALL_STATE(2046)] = 11497, - [SMALL_STATE(2047)] = 11578, - [SMALL_STATE(2048)] = 11649, - [SMALL_STATE(2049)] = 11726, - [SMALL_STATE(2050)] = 11795, - [SMALL_STATE(2051)] = 11866, - [SMALL_STATE(2052)] = 11947, - [SMALL_STATE(2053)] = 12026, - [SMALL_STATE(2054)] = 12109, - [SMALL_STATE(2055)] = 12190, - [SMALL_STATE(2056)] = 12263, - [SMALL_STATE(2057)] = 12340, - [SMALL_STATE(2058)] = 12409, - [SMALL_STATE(2059)] = 12494, - [SMALL_STATE(2060)] = 12583, - [SMALL_STATE(2061)] = 12662, - [SMALL_STATE(2062)] = 12741, - [SMALL_STATE(2063)] = 12822, - [SMALL_STATE(2064)] = 12897, - [SMALL_STATE(2065)] = 12966, - [SMALL_STATE(2066)] = 13043, - [SMALL_STATE(2067)] = 13136, - [SMALL_STATE(2068)] = 13225, - [SMALL_STATE(2069)] = 13296, - [SMALL_STATE(2070)] = 13367, - [SMALL_STATE(2071)] = 13444, - [SMALL_STATE(2072)] = 13517, - [SMALL_STATE(2073)] = 13588, - [SMALL_STATE(2074)] = 13665, - [SMALL_STATE(2075)] = 13754, - [SMALL_STATE(2076)] = 13837, - [SMALL_STATE(2077)] = 13906, - [SMALL_STATE(2078)] = 13975, - [SMALL_STATE(2079)] = 14044, - [SMALL_STATE(2080)] = 14129, - [SMALL_STATE(2081)] = 14208, - [SMALL_STATE(2082)] = 14285, - [SMALL_STATE(2083)] = 14362, - [SMALL_STATE(2084)] = 14431, - [SMALL_STATE(2085)] = 14500, - [SMALL_STATE(2086)] = 14572, - [SMALL_STATE(2087)] = 14650, - [SMALL_STATE(2088)] = 14722, - [SMALL_STATE(2089)] = 14796, - [SMALL_STATE(2090)] = 14884, - [SMALL_STATE(2091)] = 14962, - [SMALL_STATE(2092)] = 15038, - [SMALL_STATE(2093)] = 15114, - [SMALL_STATE(2094)] = 15192, - [SMALL_STATE(2095)] = 15270, - [SMALL_STATE(2096)] = 15338, - [SMALL_STATE(2097)] = 15412, - [SMALL_STATE(2098)] = 15480, - [SMALL_STATE(2099)] = 15548, - [SMALL_STATE(2100)] = 15626, - [SMALL_STATE(2101)] = 15702, - [SMALL_STATE(2102)] = 15780, - [SMALL_STATE(2103)] = 15864, - [SMALL_STATE(2104)] = 15946, - [SMALL_STATE(2105)] = 16022, - [SMALL_STATE(2106)] = 16104, - [SMALL_STATE(2107)] = 16186, - [SMALL_STATE(2108)] = 16264, - [SMALL_STATE(2109)] = 16342, - [SMALL_STATE(2110)] = 16410, - [SMALL_STATE(2111)] = 16484, - [SMALL_STATE(2112)] = 16552, - [SMALL_STATE(2113)] = 16628, - [SMALL_STATE(2114)] = 16696, - [SMALL_STATE(2115)] = 16774, - [SMALL_STATE(2116)] = 16842, - [SMALL_STATE(2117)] = 16910, - [SMALL_STATE(2118)] = 16986, - [SMALL_STATE(2119)] = 17054, - [SMALL_STATE(2120)] = 17122, - [SMALL_STATE(2121)] = 17190, - [SMALL_STATE(2122)] = 17272, - [SMALL_STATE(2123)] = 17354, - [SMALL_STATE(2124)] = 17430, - [SMALL_STATE(2125)] = 17508, - [SMALL_STATE(2126)] = 17586, - [SMALL_STATE(2127)] = 17664, - [SMALL_STATE(2128)] = 17740, - [SMALL_STATE(2129)] = 17821, - [SMALL_STATE(2130)] = 17948, - [SMALL_STATE(2131)] = 18075, - [SMALL_STATE(2132)] = 18148, - [SMALL_STATE(2133)] = 18227, - [SMALL_STATE(2134)] = 18302, - [SMALL_STATE(2135)] = 18429, - [SMALL_STATE(2136)] = 18506, - [SMALL_STATE(2137)] = 18585, - [SMALL_STATE(2138)] = 18660, - [SMALL_STATE(2139)] = 18787, - [SMALL_STATE(2140)] = 18862, - [SMALL_STATE(2141)] = 18989, - [SMALL_STATE(2142)] = 19064, - [SMALL_STATE(2143)] = 19191, - [SMALL_STATE(2144)] = 19262, - [SMALL_STATE(2145)] = 19341, - [SMALL_STATE(2146)] = 19420, - [SMALL_STATE(2147)] = 19497, - [SMALL_STATE(2148)] = 19624, - [SMALL_STATE(2149)] = 19699, - [SMALL_STATE(2150)] = 19826, - [SMALL_STATE(2151)] = 19897, - [SMALL_STATE(2152)] = 20024, - [SMALL_STATE(2153)] = 20097, - [SMALL_STATE(2154)] = 20171, - [SMALL_STATE(2155)] = 20245, - [SMALL_STATE(2156)] = 20319, - [SMALL_STATE(2157)] = 20397, - [SMALL_STATE(2158)] = 20475, - [SMALL_STATE(2159)] = 20549, - [SMALL_STATE(2160)] = 20623, - [SMALL_STATE(2161)] = 20697, - [SMALL_STATE(2162)] = 20771, - [SMALL_STATE(2163)] = 20843, - [SMALL_STATE(2164)] = 20917, - [SMALL_STATE(2165)] = 20991, - [SMALL_STATE(2166)] = 21065, - [SMALL_STATE(2167)] = 21141, - [SMALL_STATE(2168)] = 21215, - [SMALL_STATE(2169)] = 21289, - [SMALL_STATE(2170)] = 21365, - [SMALL_STATE(2171)] = 21438, - [SMALL_STATE(2172)] = 21561, - [SMALL_STATE(2173)] = 21684, - [SMALL_STATE(2174)] = 21757, - [SMALL_STATE(2175)] = 21880, - [SMALL_STATE(2176)] = 22003, - [SMALL_STATE(2177)] = 22076, - [SMALL_STATE(2178)] = 22149, - [SMALL_STATE(2179)] = 22222, - [SMALL_STATE(2180)] = 22295, - [SMALL_STATE(2181)] = 22366, - [SMALL_STATE(2182)] = 22439, - [SMALL_STATE(2183)] = 22562, - [SMALL_STATE(2184)] = 22635, - [SMALL_STATE(2185)] = 22708, - [SMALL_STATE(2186)] = 22831, - [SMALL_STATE(2187)] = 22954, - [SMALL_STATE(2188)] = 23027, - [SMALL_STATE(2189)] = 23100, - [SMALL_STATE(2190)] = 23171, - [SMALL_STATE(2191)] = 23244, - [SMALL_STATE(2192)] = 23317, - [SMALL_STATE(2193)] = 23440, - [SMALL_STATE(2194)] = 23563, - [SMALL_STATE(2195)] = 23636, - [SMALL_STATE(2196)] = 23709, - [SMALL_STATE(2197)] = 23832, - [SMALL_STATE(2198)] = 23955, - [SMALL_STATE(2199)] = 24078, - [SMALL_STATE(2200)] = 24201, - [SMALL_STATE(2201)] = 24274, - [SMALL_STATE(2202)] = 24347, - [SMALL_STATE(2203)] = 24422, - [SMALL_STATE(2204)] = 24495, - [SMALL_STATE(2205)] = 24618, - [SMALL_STATE(2206)] = 24741, - [SMALL_STATE(2207)] = 24864, - [SMALL_STATE(2208)] = 24987, - [SMALL_STATE(2209)] = 25060, - [SMALL_STATE(2210)] = 25183, - [SMALL_STATE(2211)] = 25306, - [SMALL_STATE(2212)] = 25379, - [SMALL_STATE(2213)] = 25452, - [SMALL_STATE(2214)] = 25525, - [SMALL_STATE(2215)] = 25648, - [SMALL_STATE(2216)] = 25771, - [SMALL_STATE(2217)] = 25844, - [SMALL_STATE(2218)] = 25967, - [SMALL_STATE(2219)] = 26090, - [SMALL_STATE(2220)] = 26213, - [SMALL_STATE(2221)] = 26336, - [SMALL_STATE(2222)] = 26459, - [SMALL_STATE(2223)] = 26530, - [SMALL_STATE(2224)] = 26653, - [SMALL_STATE(2225)] = 26723, - [SMALL_STATE(2226)] = 26793, - [SMALL_STATE(2227)] = 26863, - [SMALL_STATE(2228)] = 26933, - [SMALL_STATE(2229)] = 27003, - [SMALL_STATE(2230)] = 27073, - [SMALL_STATE(2231)] = 27143, - [SMALL_STATE(2232)] = 27213, - [SMALL_STATE(2233)] = 27283, - [SMALL_STATE(2234)] = 27353, - [SMALL_STATE(2235)] = 27472, - [SMALL_STATE(2236)] = 27591, - [SMALL_STATE(2237)] = 27710, - [SMALL_STATE(2238)] = 27829, - [SMALL_STATE(2239)] = 27948, - [SMALL_STATE(2240)] = 28067, - [SMALL_STATE(2241)] = 28186, - [SMALL_STATE(2242)] = 28305, - [SMALL_STATE(2243)] = 28424, - [SMALL_STATE(2244)] = 28543, - [SMALL_STATE(2245)] = 28667, - [SMALL_STATE(2246)] = 28791, - [SMALL_STATE(2247)] = 28915, - [SMALL_STATE(2248)] = 29039, - [SMALL_STATE(2249)] = 29163, - [SMALL_STATE(2250)] = 29280, - [SMALL_STATE(2251)] = 29397, - [SMALL_STATE(2252)] = 29514, - [SMALL_STATE(2253)] = 29629, - [SMALL_STATE(2254)] = 29746, - [SMALL_STATE(2255)] = 29863, - [SMALL_STATE(2256)] = 29980, - [SMALL_STATE(2257)] = 30091, - [SMALL_STATE(2258)] = 30208, - [SMALL_STATE(2259)] = 30319, - [SMALL_STATE(2260)] = 30430, - [SMALL_STATE(2261)] = 30547, - [SMALL_STATE(2262)] = 30664, - [SMALL_STATE(2263)] = 30781, - [SMALL_STATE(2264)] = 30898, - [SMALL_STATE(2265)] = 31009, - [SMALL_STATE(2266)] = 31126, - [SMALL_STATE(2267)] = 31243, - [SMALL_STATE(2268)] = 31360, - [SMALL_STATE(2269)] = 31477, - [SMALL_STATE(2270)] = 31594, - [SMALL_STATE(2271)] = 31711, - [SMALL_STATE(2272)] = 31828, - [SMALL_STATE(2273)] = 31945, - [SMALL_STATE(2274)] = 32056, - [SMALL_STATE(2275)] = 32167, - [SMALL_STATE(2276)] = 32284, - [SMALL_STATE(2277)] = 32401, - [SMALL_STATE(2278)] = 32518, - [SMALL_STATE(2279)] = 32635, - [SMALL_STATE(2280)] = 32746, - [SMALL_STATE(2281)] = 32863, - [SMALL_STATE(2282)] = 32980, - [SMALL_STATE(2283)] = 33097, - [SMALL_STATE(2284)] = 33214, - [SMALL_STATE(2285)] = 33331, - [SMALL_STATE(2286)] = 33448, - [SMALL_STATE(2287)] = 33565, - [SMALL_STATE(2288)] = 33682, - [SMALL_STATE(2289)] = 33799, - [SMALL_STATE(2290)] = 33915, - [SMALL_STATE(2291)] = 33977, - [SMALL_STATE(2292)] = 34091, - [SMALL_STATE(2293)] = 34153, - [SMALL_STATE(2294)] = 34222, - [SMALL_STATE(2295)] = 34293, - [SMALL_STATE(2296)] = 34370, - [SMALL_STATE(2297)] = 34473, - [SMALL_STATE(2298)] = 34544, - [SMALL_STATE(2299)] = 34615, - [SMALL_STATE(2300)] = 34681, - [SMALL_STATE(2301)] = 34743, - [SMALL_STATE(2302)] = 34803, - [SMALL_STATE(2303)] = 34865, - [SMALL_STATE(2304)] = 34925, - [SMALL_STATE(2305)] = 34987, - [SMALL_STATE(2306)] = 35047, - [SMALL_STATE(2307)] = 35107, - [SMALL_STATE(2308)] = 35171, - [SMALL_STATE(2309)] = 35231, - [SMALL_STATE(2310)] = 35295, - [SMALL_STATE(2311)] = 35355, - [SMALL_STATE(2312)] = 35415, - [SMALL_STATE(2313)] = 35481, - [SMALL_STATE(2314)] = 35547, - [SMALL_STATE(2315)] = 35613, - [SMALL_STATE(2316)] = 35677, - [SMALL_STATE(2317)] = 35736, - [SMALL_STATE(2318)] = 35795, - [SMALL_STATE(2319)] = 35854, - [SMALL_STATE(2320)] = 35913, - [SMALL_STATE(2321)] = 35972, - [SMALL_STATE(2322)] = 36031, - [SMALL_STATE(2323)] = 36090, - [SMALL_STATE(2324)] = 36155, - [SMALL_STATE(2325)] = 36214, - [SMALL_STATE(2326)] = 36273, - [SMALL_STATE(2327)] = 36336, - [SMALL_STATE(2328)] = 36395, - [SMALL_STATE(2329)] = 36460, - [SMALL_STATE(2330)] = 36527, - [SMALL_STATE(2331)] = 36586, - [SMALL_STATE(2332)] = 36647, - [SMALL_STATE(2333)] = 36706, - [SMALL_STATE(2334)] = 36765, - [SMALL_STATE(2335)] = 36832, - [SMALL_STATE(2336)] = 36891, - [SMALL_STATE(2337)] = 36950, - [SMALL_STATE(2338)] = 37009, - [SMALL_STATE(2339)] = 37104, - [SMALL_STATE(2340)] = 37163, - [SMALL_STATE(2341)] = 37222, - [SMALL_STATE(2342)] = 37283, - [SMALL_STATE(2343)] = 37342, - [SMALL_STATE(2344)] = 37401, - [SMALL_STATE(2345)] = 37460, - [SMALL_STATE(2346)] = 37519, - [SMALL_STATE(2347)] = 37578, - [SMALL_STATE(2348)] = 37637, - [SMALL_STATE(2349)] = 37696, - [SMALL_STATE(2350)] = 37755, - [SMALL_STATE(2351)] = 37818, - [SMALL_STATE(2352)] = 37877, - [SMALL_STATE(2353)] = 37936, - [SMALL_STATE(2354)] = 38001, - [SMALL_STATE(2355)] = 38060, - [SMALL_STATE(2356)] = 38121, - [SMALL_STATE(2357)] = 38180, - [SMALL_STATE(2358)] = 38239, - [SMALL_STATE(2359)] = 38304, - [SMALL_STATE(2360)] = 38363, - [SMALL_STATE(2361)] = 38422, - [SMALL_STATE(2362)] = 38547, - [SMALL_STATE(2363)] = 38606, - [SMALL_STATE(2364)] = 38731, - [SMALL_STATE(2365)] = 38856, - [SMALL_STATE(2366)] = 38915, - [SMALL_STATE(2367)] = 39040, - [SMALL_STATE(2368)] = 39099, - [SMALL_STATE(2369)] = 39158, - [SMALL_STATE(2370)] = 39217, - [SMALL_STATE(2371)] = 39284, - [SMALL_STATE(2372)] = 39343, - [SMALL_STATE(2373)] = 39402, - [SMALL_STATE(2374)] = 39461, + [SMALL_STATE(1917)] = 356, + [SMALL_STATE(1918)] = 451, + [SMALL_STATE(1919)] = 544, + [SMALL_STATE(1920)] = 637, + [SMALL_STATE(1921)] = 720, + [SMALL_STATE(1922)] = 813, + [SMALL_STATE(1923)] = 888, + [SMALL_STATE(1924)] = 981, + [SMALL_STATE(1925)] = 1056, + [SMALL_STATE(1926)] = 1131, + [SMALL_STATE(1927)] = 1206, + [SMALL_STATE(1928)] = 1281, + [SMALL_STATE(1929)] = 1376, + [SMALL_STATE(1930)] = 1469, + [SMALL_STATE(1931)] = 1562, + [SMALL_STATE(1932)] = 1657, + [SMALL_STATE(1933)] = 1750, + [SMALL_STATE(1934)] = 1825, + [SMALL_STATE(1935)] = 1918, + [SMALL_STATE(1936)] = 2011, + [SMALL_STATE(1937)] = 2106, + [SMALL_STATE(1938)] = 2199, + [SMALL_STATE(1939)] = 2294, + [SMALL_STATE(1940)] = 2389, + [SMALL_STATE(1941)] = 2482, + [SMALL_STATE(1942)] = 2575, + [SMALL_STATE(1943)] = 2672, + [SMALL_STATE(1944)] = 2765, + [SMALL_STATE(1945)] = 2858, + [SMALL_STATE(1946)] = 2951, + [SMALL_STATE(1947)] = 3044, + [SMALL_STATE(1948)] = 3141, + [SMALL_STATE(1949)] = 3236, + [SMALL_STATE(1950)] = 3316, + [SMALL_STATE(1951)] = 3392, + [SMALL_STATE(1952)] = 3488, + [SMALL_STATE(1953)] = 3584, + [SMALL_STATE(1954)] = 3658, + [SMALL_STATE(1955)] = 3750, + [SMALL_STATE(1956)] = 3842, + [SMALL_STATE(1957)] = 3938, + [SMALL_STATE(1958)] = 4032, + [SMALL_STATE(1959)] = 4124, + [SMALL_STATE(1960)] = 4198, + [SMALL_STATE(1961)] = 4298, + [SMALL_STATE(1962)] = 4376, + [SMALL_STATE(1963)] = 4468, + [SMALL_STATE(1964)] = 4564, + [SMALL_STATE(1965)] = 4658, + [SMALL_STATE(1966)] = 4750, + [SMALL_STATE(1967)] = 4842, + [SMALL_STATE(1968)] = 4933, + [SMALL_STATE(1969)] = 5004, + [SMALL_STATE(1970)] = 5087, + [SMALL_STATE(1971)] = 5178, + [SMALL_STATE(1972)] = 5261, + [SMALL_STATE(1973)] = 5356, + [SMALL_STATE(1974)] = 5451, + [SMALL_STATE(1975)] = 5542, + [SMALL_STATE(1976)] = 5633, + [SMALL_STATE(1977)] = 5724, + [SMALL_STATE(1978)] = 5815, + [SMALL_STATE(1979)] = 5906, + [SMALL_STATE(1980)] = 5979, + [SMALL_STATE(1981)] = 6070, + [SMALL_STATE(1982)] = 6141, + [SMALL_STATE(1983)] = 6236, + [SMALL_STATE(1984)] = 6333, + [SMALL_STATE(1985)] = 6406, + [SMALL_STATE(1986)] = 6501, + [SMALL_STATE(1987)] = 6592, + [SMALL_STATE(1988)] = 6683, + [SMALL_STATE(1989)] = 6774, + [SMALL_STATE(1990)] = 6865, + [SMALL_STATE(1991)] = 6962, + [SMALL_STATE(1992)] = 7053, + [SMALL_STATE(1993)] = 7144, + [SMALL_STATE(1994)] = 7215, + [SMALL_STATE(1995)] = 7310, + [SMALL_STATE(1996)] = 7395, + [SMALL_STATE(1997)] = 7478, + [SMALL_STATE(1998)] = 7561, + [SMALL_STATE(1999)] = 7654, + [SMALL_STATE(2000)] = 7736, + [SMALL_STATE(2001)] = 7830, + [SMALL_STATE(2002)] = 7910, + [SMALL_STATE(2003)] = 7980, + [SMALL_STATE(2004)] = 8074, + [SMALL_STATE(2005)] = 8164, + [SMALL_STATE(2006)] = 8234, + [SMALL_STATE(2007)] = 8322, + [SMALL_STATE(2008)] = 8404, + [SMALL_STATE(2009)] = 8474, + [SMALL_STATE(2010)] = 8544, + [SMALL_STATE(2011)] = 8614, + [SMALL_STATE(2012)] = 8684, + [SMALL_STATE(2013)] = 8774, + [SMALL_STATE(2014)] = 8858, + [SMALL_STATE(2015)] = 8952, + [SMALL_STATE(2016)] = 9022, + [SMALL_STATE(2017)] = 9092, + [SMALL_STATE(2018)] = 9162, + [SMALL_STATE(2019)] = 9232, + [SMALL_STATE(2020)] = 9320, + [SMALL_STATE(2021)] = 9390, + [SMALL_STATE(2022)] = 9474, + [SMALL_STATE(2023)] = 9564, + [SMALL_STATE(2024)] = 9658, + [SMALL_STATE(2025)] = 9740, + [SMALL_STATE(2026)] = 9834, + [SMALL_STATE(2027)] = 9928, + [SMALL_STATE(2028)] = 10010, + [SMALL_STATE(2029)] = 10090, + [SMALL_STATE(2030)] = 10182, + [SMALL_STATE(2031)] = 10264, + [SMALL_STATE(2032)] = 10348, + [SMALL_STATE(2033)] = 10427, + [SMALL_STATE(2034)] = 10496, + [SMALL_STATE(2035)] = 10573, + [SMALL_STATE(2036)] = 10644, + [SMALL_STATE(2037)] = 10723, + [SMALL_STATE(2038)] = 10802, + [SMALL_STATE(2039)] = 10881, + [SMALL_STATE(2040)] = 10956, + [SMALL_STATE(2041)] = 11035, + [SMALL_STATE(2042)] = 11114, + [SMALL_STATE(2043)] = 11199, + [SMALL_STATE(2044)] = 11268, + [SMALL_STATE(2045)] = 11337, + [SMALL_STATE(2046)] = 11406, + [SMALL_STATE(2047)] = 11475, + [SMALL_STATE(2048)] = 11544, + [SMALL_STATE(2049)] = 11615, + [SMALL_STATE(2050)] = 11692, + [SMALL_STATE(2051)] = 11771, + [SMALL_STATE(2052)] = 11854, + [SMALL_STATE(2053)] = 11947, + [SMALL_STATE(2054)] = 12018, + [SMALL_STATE(2055)] = 12089, + [SMALL_STATE(2056)] = 12160, + [SMALL_STATE(2057)] = 12237, + [SMALL_STATE(2058)] = 12308, + [SMALL_STATE(2059)] = 12387, + [SMALL_STATE(2060)] = 12466, + [SMALL_STATE(2061)] = 12535, + [SMALL_STATE(2062)] = 12604, + [SMALL_STATE(2063)] = 12673, + [SMALL_STATE(2064)] = 12750, + [SMALL_STATE(2065)] = 12827, + [SMALL_STATE(2066)] = 12914, + [SMALL_STATE(2067)] = 13007, + [SMALL_STATE(2068)] = 13080, + [SMALL_STATE(2069)] = 13153, + [SMALL_STATE(2070)] = 13238, + [SMALL_STATE(2071)] = 13315, + [SMALL_STATE(2072)] = 13396, + [SMALL_STATE(2073)] = 13485, + [SMALL_STATE(2074)] = 13562, + [SMALL_STATE(2075)] = 13643, + [SMALL_STATE(2076)] = 13720, + [SMALL_STATE(2077)] = 13801, + [SMALL_STATE(2078)] = 13878, + [SMALL_STATE(2079)] = 13959, + [SMALL_STATE(2080)] = 14030, + [SMALL_STATE(2081)] = 14107, + [SMALL_STATE(2082)] = 14196, + [SMALL_STATE(2083)] = 14267, + [SMALL_STATE(2084)] = 14348, + [SMALL_STATE(2085)] = 14431, + [SMALL_STATE(2086)] = 14520, + [SMALL_STATE(2087)] = 14603, + [SMALL_STATE(2088)] = 14674, + [SMALL_STATE(2089)] = 14763, + [SMALL_STATE(2090)] = 14834, + [SMALL_STATE(2091)] = 14913, + [SMALL_STATE(2092)] = 14984, + [SMALL_STATE(2093)] = 15061, + [SMALL_STATE(2094)] = 15138, + [SMALL_STATE(2095)] = 15207, + [SMALL_STATE(2096)] = 15276, + [SMALL_STATE(2097)] = 15348, + [SMALL_STATE(2098)] = 15426, + [SMALL_STATE(2099)] = 15504, + [SMALL_STATE(2100)] = 15582, + [SMALL_STATE(2101)] = 15656, + [SMALL_STATE(2102)] = 15732, + [SMALL_STATE(2103)] = 15814, + [SMALL_STATE(2104)] = 15890, + [SMALL_STATE(2105)] = 15968, + [SMALL_STATE(2106)] = 16046, + [SMALL_STATE(2107)] = 16122, + [SMALL_STATE(2108)] = 16200, + [SMALL_STATE(2109)] = 16272, + [SMALL_STATE(2110)] = 16350, + [SMALL_STATE(2111)] = 16424, + [SMALL_STATE(2112)] = 16502, + [SMALL_STATE(2113)] = 16580, + [SMALL_STATE(2114)] = 16656, + [SMALL_STATE(2115)] = 16744, + [SMALL_STATE(2116)] = 16820, + [SMALL_STATE(2117)] = 16902, + [SMALL_STATE(2118)] = 16984, + [SMALL_STATE(2119)] = 17066, + [SMALL_STATE(2120)] = 17144, + [SMALL_STATE(2121)] = 17220, + [SMALL_STATE(2122)] = 17294, + [SMALL_STATE(2123)] = 17372, + [SMALL_STATE(2124)] = 17454, + [SMALL_STATE(2125)] = 17530, + [SMALL_STATE(2126)] = 17606, + [SMALL_STATE(2127)] = 17684, + [SMALL_STATE(2128)] = 17768, + [SMALL_STATE(2129)] = 17895, + [SMALL_STATE(2130)] = 18022, + [SMALL_STATE(2131)] = 18149, + [SMALL_STATE(2132)] = 18224, + [SMALL_STATE(2133)] = 18295, + [SMALL_STATE(2134)] = 18366, + [SMALL_STATE(2135)] = 18439, + [SMALL_STATE(2136)] = 18516, + [SMALL_STATE(2137)] = 18643, + [SMALL_STATE(2138)] = 18720, + [SMALL_STATE(2139)] = 18847, + [SMALL_STATE(2140)] = 18926, + [SMALL_STATE(2141)] = 19001, + [SMALL_STATE(2142)] = 19128, + [SMALL_STATE(2143)] = 19255, + [SMALL_STATE(2144)] = 19382, + [SMALL_STATE(2145)] = 19461, + [SMALL_STATE(2146)] = 19542, + [SMALL_STATE(2147)] = 19615, + [SMALL_STATE(2148)] = 19742, + [SMALL_STATE(2149)] = 19817, + [SMALL_STATE(2150)] = 19896, + [SMALL_STATE(2151)] = 19971, + [SMALL_STATE(2152)] = 20046, + [SMALL_STATE(2153)] = 20125, + [SMALL_STATE(2154)] = 20197, + [SMALL_STATE(2155)] = 20271, + [SMALL_STATE(2156)] = 20345, + [SMALL_STATE(2157)] = 20419, + [SMALL_STATE(2158)] = 20493, + [SMALL_STATE(2159)] = 20567, + [SMALL_STATE(2160)] = 20641, + [SMALL_STATE(2161)] = 20715, + [SMALL_STATE(2162)] = 20791, + [SMALL_STATE(2163)] = 20869, + [SMALL_STATE(2164)] = 20943, + [SMALL_STATE(2165)] = 21017, + [SMALL_STATE(2166)] = 21091, + [SMALL_STATE(2167)] = 21167, + [SMALL_STATE(2168)] = 21245, + [SMALL_STATE(2169)] = 21319, + [SMALL_STATE(2170)] = 21393, + [SMALL_STATE(2171)] = 21516, + [SMALL_STATE(2172)] = 21639, + [SMALL_STATE(2173)] = 21762, + [SMALL_STATE(2174)] = 21835, + [SMALL_STATE(2175)] = 21908, + [SMALL_STATE(2176)] = 22031, + [SMALL_STATE(2177)] = 22154, + [SMALL_STATE(2178)] = 22277, + [SMALL_STATE(2179)] = 22400, + [SMALL_STATE(2180)] = 22523, + [SMALL_STATE(2181)] = 22646, + [SMALL_STATE(2182)] = 22769, + [SMALL_STATE(2183)] = 22892, + [SMALL_STATE(2184)] = 23015, + [SMALL_STATE(2185)] = 23138, + [SMALL_STATE(2186)] = 23261, + [SMALL_STATE(2187)] = 23334, + [SMALL_STATE(2188)] = 23407, + [SMALL_STATE(2189)] = 23530, + [SMALL_STATE(2190)] = 23653, + [SMALL_STATE(2191)] = 23776, + [SMALL_STATE(2192)] = 23899, + [SMALL_STATE(2193)] = 23972, + [SMALL_STATE(2194)] = 24095, + [SMALL_STATE(2195)] = 24168, + [SMALL_STATE(2196)] = 24241, + [SMALL_STATE(2197)] = 24314, + [SMALL_STATE(2198)] = 24387, + [SMALL_STATE(2199)] = 24510, + [SMALL_STATE(2200)] = 24583, + [SMALL_STATE(2201)] = 24654, + [SMALL_STATE(2202)] = 24777, + [SMALL_STATE(2203)] = 24848, + [SMALL_STATE(2204)] = 24971, + [SMALL_STATE(2205)] = 25044, + [SMALL_STATE(2206)] = 25117, + [SMALL_STATE(2207)] = 25190, + [SMALL_STATE(2208)] = 25263, + [SMALL_STATE(2209)] = 25336, + [SMALL_STATE(2210)] = 25409, + [SMALL_STATE(2211)] = 25484, + [SMALL_STATE(2212)] = 25557, + [SMALL_STATE(2213)] = 25630, + [SMALL_STATE(2214)] = 25701, + [SMALL_STATE(2215)] = 25774, + [SMALL_STATE(2216)] = 25897, + [SMALL_STATE(2217)] = 25970, + [SMALL_STATE(2218)] = 26043, + [SMALL_STATE(2219)] = 26116, + [SMALL_STATE(2220)] = 26239, + [SMALL_STATE(2221)] = 26362, + [SMALL_STATE(2222)] = 26435, + [SMALL_STATE(2223)] = 26558, + [SMALL_STATE(2224)] = 26681, + [SMALL_STATE(2225)] = 26751, + [SMALL_STATE(2226)] = 26821, + [SMALL_STATE(2227)] = 26891, + [SMALL_STATE(2228)] = 26961, + [SMALL_STATE(2229)] = 27031, + [SMALL_STATE(2230)] = 27101, + [SMALL_STATE(2231)] = 27171, + [SMALL_STATE(2232)] = 27241, + [SMALL_STATE(2233)] = 27311, + [SMALL_STATE(2234)] = 27381, + [SMALL_STATE(2235)] = 27500, + [SMALL_STATE(2236)] = 27619, + [SMALL_STATE(2237)] = 27738, + [SMALL_STATE(2238)] = 27857, + [SMALL_STATE(2239)] = 27976, + [SMALL_STATE(2240)] = 28095, + [SMALL_STATE(2241)] = 28214, + [SMALL_STATE(2242)] = 28333, + [SMALL_STATE(2243)] = 28452, + [SMALL_STATE(2244)] = 28571, + [SMALL_STATE(2245)] = 28695, + [SMALL_STATE(2246)] = 28819, + [SMALL_STATE(2247)] = 28943, + [SMALL_STATE(2248)] = 29067, + [SMALL_STATE(2249)] = 29191, + [SMALL_STATE(2250)] = 29308, + [SMALL_STATE(2251)] = 29425, + [SMALL_STATE(2252)] = 29536, + [SMALL_STATE(2253)] = 29653, + [SMALL_STATE(2254)] = 29770, + [SMALL_STATE(2255)] = 29887, + [SMALL_STATE(2256)] = 29998, + [SMALL_STATE(2257)] = 30115, + [SMALL_STATE(2258)] = 30232, + [SMALL_STATE(2259)] = 30349, + [SMALL_STATE(2260)] = 30466, + [SMALL_STATE(2261)] = 30583, + [SMALL_STATE(2262)] = 30700, + [SMALL_STATE(2263)] = 30817, + [SMALL_STATE(2264)] = 30934, + [SMALL_STATE(2265)] = 31051, + [SMALL_STATE(2266)] = 31168, + [SMALL_STATE(2267)] = 31285, + [SMALL_STATE(2268)] = 31402, + [SMALL_STATE(2269)] = 31513, + [SMALL_STATE(2270)] = 31630, + [SMALL_STATE(2271)] = 31745, + [SMALL_STATE(2272)] = 31856, + [SMALL_STATE(2273)] = 31973, + [SMALL_STATE(2274)] = 32084, + [SMALL_STATE(2275)] = 32201, + [SMALL_STATE(2276)] = 32318, + [SMALL_STATE(2277)] = 32435, + [SMALL_STATE(2278)] = 32552, + [SMALL_STATE(2279)] = 32669, + [SMALL_STATE(2280)] = 32780, + [SMALL_STATE(2281)] = 32897, + [SMALL_STATE(2282)] = 33008, + [SMALL_STATE(2283)] = 33125, + [SMALL_STATE(2284)] = 33242, + [SMALL_STATE(2285)] = 33359, + [SMALL_STATE(2286)] = 33476, + [SMALL_STATE(2287)] = 33593, + [SMALL_STATE(2288)] = 33710, + [SMALL_STATE(2289)] = 33827, + [SMALL_STATE(2290)] = 33941, + [SMALL_STATE(2291)] = 34003, + [SMALL_STATE(2292)] = 34119, + [SMALL_STATE(2293)] = 34181, + [SMALL_STATE(2294)] = 34284, + [SMALL_STATE(2295)] = 34355, + [SMALL_STATE(2296)] = 34426, + [SMALL_STATE(2297)] = 34503, + [SMALL_STATE(2298)] = 34572, + [SMALL_STATE(2299)] = 34643, + [SMALL_STATE(2300)] = 34709, + [SMALL_STATE(2301)] = 34771, + [SMALL_STATE(2302)] = 34831, + [SMALL_STATE(2303)] = 34891, + [SMALL_STATE(2304)] = 34951, + [SMALL_STATE(2305)] = 35011, + [SMALL_STATE(2306)] = 35077, + [SMALL_STATE(2307)] = 35143, + [SMALL_STATE(2308)] = 35207, + [SMALL_STATE(2309)] = 35273, + [SMALL_STATE(2310)] = 35333, + [SMALL_STATE(2311)] = 35397, + [SMALL_STATE(2312)] = 35459, + [SMALL_STATE(2313)] = 35521, + [SMALL_STATE(2314)] = 35581, + [SMALL_STATE(2315)] = 35645, + [SMALL_STATE(2316)] = 35705, + [SMALL_STATE(2317)] = 35772, + [SMALL_STATE(2318)] = 35831, + [SMALL_STATE(2319)] = 35890, + [SMALL_STATE(2320)] = 35949, + [SMALL_STATE(2321)] = 36014, + [SMALL_STATE(2322)] = 36073, + [SMALL_STATE(2323)] = 36132, + [SMALL_STATE(2324)] = 36191, + [SMALL_STATE(2325)] = 36250, + [SMALL_STATE(2326)] = 36309, + [SMALL_STATE(2327)] = 36368, + [SMALL_STATE(2328)] = 36427, + [SMALL_STATE(2329)] = 36486, + [SMALL_STATE(2330)] = 36545, + [SMALL_STATE(2331)] = 36604, + [SMALL_STATE(2332)] = 36663, + [SMALL_STATE(2333)] = 36758, + [SMALL_STATE(2334)] = 36817, + [SMALL_STATE(2335)] = 36878, + [SMALL_STATE(2336)] = 36937, + [SMALL_STATE(2337)] = 36996, + [SMALL_STATE(2338)] = 37061, + [SMALL_STATE(2339)] = 37120, + [SMALL_STATE(2340)] = 37179, + [SMALL_STATE(2341)] = 37238, + [SMALL_STATE(2342)] = 37297, + [SMALL_STATE(2343)] = 37356, + [SMALL_STATE(2344)] = 37421, + [SMALL_STATE(2345)] = 37480, + [SMALL_STATE(2346)] = 37539, + [SMALL_STATE(2347)] = 37598, + [SMALL_STATE(2348)] = 37657, + [SMALL_STATE(2349)] = 37716, + [SMALL_STATE(2350)] = 37775, + [SMALL_STATE(2351)] = 37834, + [SMALL_STATE(2352)] = 37893, + [SMALL_STATE(2353)] = 37952, + [SMALL_STATE(2354)] = 38011, + [SMALL_STATE(2355)] = 38070, + [SMALL_STATE(2356)] = 38129, + [SMALL_STATE(2357)] = 38188, + [SMALL_STATE(2358)] = 38247, + [SMALL_STATE(2359)] = 38306, + [SMALL_STATE(2360)] = 38371, + [SMALL_STATE(2361)] = 38430, + [SMALL_STATE(2362)] = 38489, + [SMALL_STATE(2363)] = 38614, + [SMALL_STATE(2364)] = 38677, + [SMALL_STATE(2365)] = 38742, + [SMALL_STATE(2366)] = 38807, + [SMALL_STATE(2367)] = 38932, + [SMALL_STATE(2368)] = 38991, + [SMALL_STATE(2369)] = 39116, + [SMALL_STATE(2370)] = 39211, + [SMALL_STATE(2371)] = 39274, + [SMALL_STATE(2372)] = 39341, + [SMALL_STATE(2373)] = 39400, + [SMALL_STATE(2374)] = 39459, [SMALL_STATE(2375)] = 39520, [SMALL_STATE(2376)] = 39579, [SMALL_STATE(2377)] = 39638, @@ -384433,10682 +386917,10691 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2379)] = 39756, [SMALL_STATE(2380)] = 39815, [SMALL_STATE(2381)] = 39874, - [SMALL_STATE(2382)] = 39999, - [SMALL_STATE(2383)] = 40064, - [SMALL_STATE(2384)] = 40129, - [SMALL_STATE(2385)] = 40188, - [SMALL_STATE(2386)] = 40249, - [SMALL_STATE(2387)] = 40308, - [SMALL_STATE(2388)] = 40367, - [SMALL_STATE(2389)] = 40426, - [SMALL_STATE(2390)] = 40485, - [SMALL_STATE(2391)] = 40544, - [SMALL_STATE(2392)] = 40639, - [SMALL_STATE(2393)] = 40698, - [SMALL_STATE(2394)] = 40757, - [SMALL_STATE(2395)] = 40816, - [SMALL_STATE(2396)] = 40875, - [SMALL_STATE(2397)] = 40934, - [SMALL_STATE(2398)] = 40993, - [SMALL_STATE(2399)] = 41052, - [SMALL_STATE(2400)] = 41111, - [SMALL_STATE(2401)] = 41236, - [SMALL_STATE(2402)] = 41361, - [SMALL_STATE(2403)] = 41420, - [SMALL_STATE(2404)] = 41481, - [SMALL_STATE(2405)] = 41546, - [SMALL_STATE(2406)] = 41605, - [SMALL_STATE(2407)] = 41664, - [SMALL_STATE(2408)] = 41723, - [SMALL_STATE(2409)] = 41782, - [SMALL_STATE(2410)] = 41841, - [SMALL_STATE(2411)] = 41904, - [SMALL_STATE(2412)] = 41963, - [SMALL_STATE(2413)] = 42022, - [SMALL_STATE(2414)] = 42081, - [SMALL_STATE(2415)] = 42140, - [SMALL_STATE(2416)] = 42205, - [SMALL_STATE(2417)] = 42266, - [SMALL_STATE(2418)] = 42361, - [SMALL_STATE(2419)] = 42456, - [SMALL_STATE(2420)] = 42521, - [SMALL_STATE(2421)] = 42580, - [SMALL_STATE(2422)] = 42705, - [SMALL_STATE(2423)] = 42764, - [SMALL_STATE(2424)] = 42827, - [SMALL_STATE(2425)] = 42952, - [SMALL_STATE(2426)] = 43013, - [SMALL_STATE(2427)] = 43072, - [SMALL_STATE(2428)] = 43131, - [SMALL_STATE(2429)] = 43190, - [SMALL_STATE(2430)] = 43249, - [SMALL_STATE(2431)] = 43310, - [SMALL_STATE(2432)] = 43375, - [SMALL_STATE(2433)] = 43434, - [SMALL_STATE(2434)] = 43495, - [SMALL_STATE(2435)] = 43554, - [SMALL_STATE(2436)] = 43613, - [SMALL_STATE(2437)] = 43672, - [SMALL_STATE(2438)] = 43737, - [SMALL_STATE(2439)] = 43802, - [SMALL_STATE(2440)] = 43863, - [SMALL_STATE(2441)] = 43924, - [SMALL_STATE(2442)] = 43983, - [SMALL_STATE(2443)] = 44044, - [SMALL_STATE(2444)] = 44103, - [SMALL_STATE(2445)] = 44162, - [SMALL_STATE(2446)] = 44221, - [SMALL_STATE(2447)] = 44316, - [SMALL_STATE(2448)] = 44384, - [SMALL_STATE(2449)] = 44504, - [SMALL_STATE(2450)] = 44620, - [SMALL_STATE(2451)] = 44736, - [SMALL_STATE(2452)] = 44824, - [SMALL_STATE(2453)] = 44940, - [SMALL_STATE(2454)] = 45030, - [SMALL_STATE(2455)] = 45146, - [SMALL_STATE(2456)] = 45266, - [SMALL_STATE(2457)] = 45382, - [SMALL_STATE(2458)] = 45440, - [SMALL_STATE(2459)] = 45498, - [SMALL_STATE(2460)] = 45556, - [SMALL_STATE(2461)] = 45614, - [SMALL_STATE(2462)] = 45730, - [SMALL_STATE(2463)] = 45846, - [SMALL_STATE(2464)] = 45904, - [SMALL_STATE(2465)] = 45984, - [SMALL_STATE(2466)] = 46042, - [SMALL_STATE(2467)] = 46100, - [SMALL_STATE(2468)] = 46158, - [SMALL_STATE(2469)] = 46222, - [SMALL_STATE(2470)] = 46308, - [SMALL_STATE(2471)] = 46424, - [SMALL_STATE(2472)] = 46540, - [SMALL_STATE(2473)] = 46630, - [SMALL_STATE(2474)] = 46748, - [SMALL_STATE(2475)] = 46868, - [SMALL_STATE(2476)] = 46948, - [SMALL_STATE(2477)] = 47052, - [SMALL_STATE(2478)] = 47158, - [SMALL_STATE(2479)] = 47244, - [SMALL_STATE(2480)] = 47342, - [SMALL_STATE(2481)] = 47442, - [SMALL_STATE(2482)] = 47544, - [SMALL_STATE(2483)] = 47628, - [SMALL_STATE(2484)] = 47732, - [SMALL_STATE(2485)] = 47848, - [SMALL_STATE(2486)] = 47934, - [SMALL_STATE(2487)] = 48040, - [SMALL_STATE(2488)] = 48128, - [SMALL_STATE(2489)] = 48244, - [SMALL_STATE(2490)] = 48330, - [SMALL_STATE(2491)] = 48428, - [SMALL_STATE(2492)] = 48528, - [SMALL_STATE(2493)] = 48630, - [SMALL_STATE(2494)] = 48714, - [SMALL_STATE(2495)] = 48800, - [SMALL_STATE(2496)] = 48894, - [SMALL_STATE(2497)] = 48980, - [SMALL_STATE(2498)] = 49074, - [SMALL_STATE(2499)] = 49182, - [SMALL_STATE(2500)] = 49298, - [SMALL_STATE(2501)] = 49418, - [SMALL_STATE(2502)] = 49526, - [SMALL_STATE(2503)] = 49584, - [SMALL_STATE(2504)] = 49704, - [SMALL_STATE(2505)] = 49788, - [SMALL_STATE(2506)] = 49904, - [SMALL_STATE(2507)] = 50020, - [SMALL_STATE(2508)] = 50108, - [SMALL_STATE(2509)] = 50194, - [SMALL_STATE(2510)] = 50314, - [SMALL_STATE(2511)] = 50400, - [SMALL_STATE(2512)] = 50520, - [SMALL_STATE(2513)] = 50578, - [SMALL_STATE(2514)] = 50686, - [SMALL_STATE(2515)] = 50780, - [SMALL_STATE(2516)] = 50866, - [SMALL_STATE(2517)] = 50924, - [SMALL_STATE(2518)] = 50982, - [SMALL_STATE(2519)] = 51040, - [SMALL_STATE(2520)] = 51098, - [SMALL_STATE(2521)] = 51156, - [SMALL_STATE(2522)] = 51214, - [SMALL_STATE(2523)] = 51334, - [SMALL_STATE(2524)] = 51392, - [SMALL_STATE(2525)] = 51466, - [SMALL_STATE(2526)] = 51524, - [SMALL_STATE(2527)] = 51640, - [SMALL_STATE(2528)] = 51698, - [SMALL_STATE(2529)] = 51756, - [SMALL_STATE(2530)] = 51872, - [SMALL_STATE(2531)] = 51938, - [SMALL_STATE(2532)] = 51996, - [SMALL_STATE(2533)] = 52100, - [SMALL_STATE(2534)] = 52188, - [SMALL_STATE(2535)] = 52304, - [SMALL_STATE(2536)] = 52406, - [SMALL_STATE(2537)] = 52522, - [SMALL_STATE(2538)] = 52606, - [SMALL_STATE(2539)] = 52722, - [SMALL_STATE(2540)] = 52780, - [SMALL_STATE(2541)] = 52896, - [SMALL_STATE(2542)] = 53012, - [SMALL_STATE(2543)] = 53128, - [SMALL_STATE(2544)] = 53206, - [SMALL_STATE(2545)] = 53290, - [SMALL_STATE(2546)] = 53406, - [SMALL_STATE(2547)] = 53522, - [SMALL_STATE(2548)] = 53642, - [SMALL_STATE(2549)] = 53700, - [SMALL_STATE(2550)] = 53758, - [SMALL_STATE(2551)] = 53820, - [SMALL_STATE(2552)] = 53936, - [SMALL_STATE(2553)] = 54056, - [SMALL_STATE(2554)] = 54140, - [SMALL_STATE(2555)] = 54200, - [SMALL_STATE(2556)] = 54320, - [SMALL_STATE(2557)] = 54378, - [SMALL_STATE(2558)] = 54498, - [SMALL_STATE(2559)] = 54584, - [SMALL_STATE(2560)] = 54684, - [SMALL_STATE(2561)] = 54804, - [SMALL_STATE(2562)] = 54882, - [SMALL_STATE(2563)] = 54940, - [SMALL_STATE(2564)] = 54998, - [SMALL_STATE(2565)] = 55056, - [SMALL_STATE(2566)] = 55114, - [SMALL_STATE(2567)] = 55172, - [SMALL_STATE(2568)] = 55230, - [SMALL_STATE(2569)] = 55288, - [SMALL_STATE(2570)] = 55346, - [SMALL_STATE(2571)] = 55466, - [SMALL_STATE(2572)] = 55586, - [SMALL_STATE(2573)] = 55648, - [SMALL_STATE(2574)] = 55706, - [SMALL_STATE(2575)] = 55764, - [SMALL_STATE(2576)] = 55840, - [SMALL_STATE(2577)] = 55898, - [SMALL_STATE(2578)] = 55956, - [SMALL_STATE(2579)] = 56014, - [SMALL_STATE(2580)] = 56082, - [SMALL_STATE(2581)] = 56198, - [SMALL_STATE(2582)] = 56258, - [SMALL_STATE(2583)] = 56326, - [SMALL_STATE(2584)] = 56442, - [SMALL_STATE(2585)] = 56558, - [SMALL_STATE(2586)] = 56674, - [SMALL_STATE(2587)] = 56752, - [SMALL_STATE(2588)] = 56810, - [SMALL_STATE(2589)] = 56868, - [SMALL_STATE(2590)] = 56984, - [SMALL_STATE(2591)] = 57100, - [SMALL_STATE(2592)] = 57188, - [SMALL_STATE(2593)] = 57246, - [SMALL_STATE(2594)] = 57362, - [SMALL_STATE(2595)] = 57420, - [SMALL_STATE(2596)] = 57536, - [SMALL_STATE(2597)] = 57652, - [SMALL_STATE(2598)] = 57722, - [SMALL_STATE(2599)] = 57802, - [SMALL_STATE(2600)] = 57918, - [SMALL_STATE(2601)] = 58038, - [SMALL_STATE(2602)] = 58128, - [SMALL_STATE(2603)] = 58244, - [SMALL_STATE(2604)] = 58320, - [SMALL_STATE(2605)] = 58406, - [SMALL_STATE(2606)] = 58494, - [SMALL_STATE(2607)] = 58552, - [SMALL_STATE(2608)] = 58628, - [SMALL_STATE(2609)] = 58686, - [SMALL_STATE(2610)] = 58744, - [SMALL_STATE(2611)] = 58802, - [SMALL_STATE(2612)] = 58860, - [SMALL_STATE(2613)] = 58918, - [SMALL_STATE(2614)] = 58976, - [SMALL_STATE(2615)] = 59092, - [SMALL_STATE(2616)] = 59150, - [SMALL_STATE(2617)] = 59208, - [SMALL_STATE(2618)] = 59266, - [SMALL_STATE(2619)] = 59326, - [SMALL_STATE(2620)] = 59390, - [SMALL_STATE(2621)] = 59448, - [SMALL_STATE(2622)] = 59510, - [SMALL_STATE(2623)] = 59570, - [SMALL_STATE(2624)] = 59688, - [SMALL_STATE(2625)] = 59804, - [SMALL_STATE(2626)] = 59910, - [SMALL_STATE(2627)] = 59980, - [SMALL_STATE(2628)] = 60038, - [SMALL_STATE(2629)] = 60158, - [SMALL_STATE(2630)] = 60216, - [SMALL_STATE(2631)] = 60274, - [SMALL_STATE(2632)] = 60332, - [SMALL_STATE(2633)] = 60390, - [SMALL_STATE(2634)] = 60510, - [SMALL_STATE(2635)] = 60630, - [SMALL_STATE(2636)] = 60694, - [SMALL_STATE(2637)] = 60752, - [SMALL_STATE(2638)] = 60810, - [SMALL_STATE(2639)] = 60908, - [SMALL_STATE(2640)] = 61028, - [SMALL_STATE(2641)] = 61088, - [SMALL_STATE(2642)] = 61204, - [SMALL_STATE(2643)] = 61262, - [SMALL_STATE(2644)] = 61332, - [SMALL_STATE(2645)] = 61448, + [SMALL_STATE(2382)] = 39933, + [SMALL_STATE(2383)] = 39992, + [SMALL_STATE(2384)] = 40053, + [SMALL_STATE(2385)] = 40112, + [SMALL_STATE(2386)] = 40173, + [SMALL_STATE(2387)] = 40232, + [SMALL_STATE(2388)] = 40291, + [SMALL_STATE(2389)] = 40350, + [SMALL_STATE(2390)] = 40409, + [SMALL_STATE(2391)] = 40470, + [SMALL_STATE(2392)] = 40529, + [SMALL_STATE(2393)] = 40588, + [SMALL_STATE(2394)] = 40647, + [SMALL_STATE(2395)] = 40708, + [SMALL_STATE(2396)] = 40803, + [SMALL_STATE(2397)] = 40862, + [SMALL_STATE(2398)] = 40921, + [SMALL_STATE(2399)] = 40986, + [SMALL_STATE(2400)] = 41045, + [SMALL_STATE(2401)] = 41110, + [SMALL_STATE(2402)] = 41235, + [SMALL_STATE(2403)] = 41302, + [SMALL_STATE(2404)] = 41397, + [SMALL_STATE(2405)] = 41456, + [SMALL_STATE(2406)] = 41515, + [SMALL_STATE(2407)] = 41640, + [SMALL_STATE(2408)] = 41699, + [SMALL_STATE(2409)] = 41758, + [SMALL_STATE(2410)] = 41817, + [SMALL_STATE(2411)] = 41876, + [SMALL_STATE(2412)] = 41935, + [SMALL_STATE(2413)] = 41994, + [SMALL_STATE(2414)] = 42053, + [SMALL_STATE(2415)] = 42112, + [SMALL_STATE(2416)] = 42175, + [SMALL_STATE(2417)] = 42234, + [SMALL_STATE(2418)] = 42295, + [SMALL_STATE(2419)] = 42356, + [SMALL_STATE(2420)] = 42415, + [SMALL_STATE(2421)] = 42478, + [SMALL_STATE(2422)] = 42537, + [SMALL_STATE(2423)] = 42596, + [SMALL_STATE(2424)] = 42655, + [SMALL_STATE(2425)] = 42714, + [SMALL_STATE(2426)] = 42775, + [SMALL_STATE(2427)] = 42840, + [SMALL_STATE(2428)] = 42901, + [SMALL_STATE(2429)] = 43026, + [SMALL_STATE(2430)] = 43085, + [SMALL_STATE(2431)] = 43144, + [SMALL_STATE(2432)] = 43203, + [SMALL_STATE(2433)] = 43328, + [SMALL_STATE(2434)] = 43393, + [SMALL_STATE(2435)] = 43458, + [SMALL_STATE(2436)] = 43523, + [SMALL_STATE(2437)] = 43584, + [SMALL_STATE(2438)] = 43645, + [SMALL_STATE(2439)] = 43704, + [SMALL_STATE(2440)] = 43763, + [SMALL_STATE(2441)] = 43822, + [SMALL_STATE(2442)] = 43881, + [SMALL_STATE(2443)] = 43940, + [SMALL_STATE(2444)] = 43999, + [SMALL_STATE(2445)] = 44124, + [SMALL_STATE(2446)] = 44249, + [SMALL_STATE(2447)] = 44344, + [SMALL_STATE(2448)] = 44402, + [SMALL_STATE(2449)] = 44500, + [SMALL_STATE(2450)] = 44608, + [SMALL_STATE(2451)] = 44702, + [SMALL_STATE(2452)] = 44788, + [SMALL_STATE(2453)] = 44872, + [SMALL_STATE(2454)] = 44974, + [SMALL_STATE(2455)] = 45074, + [SMALL_STATE(2456)] = 45172, + [SMALL_STATE(2457)] = 45258, + [SMALL_STATE(2458)] = 45364, + [SMALL_STATE(2459)] = 45468, + [SMALL_STATE(2460)] = 45548, + [SMALL_STATE(2461)] = 45664, + [SMALL_STATE(2462)] = 45754, + [SMALL_STATE(2463)] = 45870, + [SMALL_STATE(2464)] = 45986, + [SMALL_STATE(2465)] = 46102, + [SMALL_STATE(2466)] = 46162, + [SMALL_STATE(2467)] = 46278, + [SMALL_STATE(2468)] = 46344, + [SMALL_STATE(2469)] = 46464, + [SMALL_STATE(2470)] = 46522, + [SMALL_STATE(2471)] = 46580, + [SMALL_STATE(2472)] = 46696, + [SMALL_STATE(2473)] = 46816, + [SMALL_STATE(2474)] = 46936, + [SMALL_STATE(2475)] = 47052, + [SMALL_STATE(2476)] = 47136, + [SMALL_STATE(2477)] = 47194, + [SMALL_STATE(2478)] = 47252, + [SMALL_STATE(2479)] = 47310, + [SMALL_STATE(2480)] = 47368, + [SMALL_STATE(2481)] = 47426, + [SMALL_STATE(2482)] = 47484, + [SMALL_STATE(2483)] = 47542, + [SMALL_STATE(2484)] = 47600, + [SMALL_STATE(2485)] = 47716, + [SMALL_STATE(2486)] = 47832, + [SMALL_STATE(2487)] = 47948, + [SMALL_STATE(2488)] = 48006, + [SMALL_STATE(2489)] = 48064, + [SMALL_STATE(2490)] = 48142, + [SMALL_STATE(2491)] = 48258, + [SMALL_STATE(2492)] = 48378, + [SMALL_STATE(2493)] = 48494, + [SMALL_STATE(2494)] = 48610, + [SMALL_STATE(2495)] = 48668, + [SMALL_STATE(2496)] = 48784, + [SMALL_STATE(2497)] = 48842, + [SMALL_STATE(2498)] = 48958, + [SMALL_STATE(2499)] = 49016, + [SMALL_STATE(2500)] = 49136, + [SMALL_STATE(2501)] = 49256, + [SMALL_STATE(2502)] = 49314, + [SMALL_STATE(2503)] = 49372, + [SMALL_STATE(2504)] = 49448, + [SMALL_STATE(2505)] = 49508, + [SMALL_STATE(2506)] = 49570, + [SMALL_STATE(2507)] = 49658, + [SMALL_STATE(2508)] = 49716, + [SMALL_STATE(2509)] = 49774, + [SMALL_STATE(2510)] = 49860, + [SMALL_STATE(2511)] = 49918, + [SMALL_STATE(2512)] = 49988, + [SMALL_STATE(2513)] = 50074, + [SMALL_STATE(2514)] = 50190, + [SMALL_STATE(2515)] = 50248, + [SMALL_STATE(2516)] = 50364, + [SMALL_STATE(2517)] = 50452, + [SMALL_STATE(2518)] = 50522, + [SMALL_STATE(2519)] = 50580, + [SMALL_STATE(2520)] = 50638, + [SMALL_STATE(2521)] = 50724, + [SMALL_STATE(2522)] = 50786, + [SMALL_STATE(2523)] = 50874, + [SMALL_STATE(2524)] = 50932, + [SMALL_STATE(2525)] = 51048, + [SMALL_STATE(2526)] = 51118, + [SMALL_STATE(2527)] = 51234, + [SMALL_STATE(2528)] = 51322, + [SMALL_STATE(2529)] = 51380, + [SMALL_STATE(2530)] = 51438, + [SMALL_STATE(2531)] = 51554, + [SMALL_STATE(2532)] = 51640, + [SMALL_STATE(2533)] = 51728, + [SMALL_STATE(2534)] = 51844, + [SMALL_STATE(2535)] = 51930, + [SMALL_STATE(2536)] = 52046, + [SMALL_STATE(2537)] = 52104, + [SMALL_STATE(2538)] = 52224, + [SMALL_STATE(2539)] = 52340, + [SMALL_STATE(2540)] = 52456, + [SMALL_STATE(2541)] = 52514, + [SMALL_STATE(2542)] = 52634, + [SMALL_STATE(2543)] = 52692, + [SMALL_STATE(2544)] = 52808, + [SMALL_STATE(2545)] = 52866, + [SMALL_STATE(2546)] = 52924, + [SMALL_STATE(2547)] = 52982, + [SMALL_STATE(2548)] = 53040, + [SMALL_STATE(2549)] = 53160, + [SMALL_STATE(2550)] = 53218, + [SMALL_STATE(2551)] = 53338, + [SMALL_STATE(2552)] = 53458, + [SMALL_STATE(2553)] = 53578, + [SMALL_STATE(2554)] = 53698, + [SMALL_STATE(2555)] = 53818, + [SMALL_STATE(2556)] = 53938, + [SMALL_STATE(2557)] = 54054, + [SMALL_STATE(2558)] = 54138, + [SMALL_STATE(2559)] = 54196, + [SMALL_STATE(2560)] = 54304, + [SMALL_STATE(2561)] = 54398, + [SMALL_STATE(2562)] = 54456, + [SMALL_STATE(2563)] = 54514, + [SMALL_STATE(2564)] = 54600, + [SMALL_STATE(2565)] = 54658, + [SMALL_STATE(2566)] = 54774, + [SMALL_STATE(2567)] = 54876, + [SMALL_STATE(2568)] = 54934, + [SMALL_STATE(2569)] = 55034, + [SMALL_STATE(2570)] = 55092, + [SMALL_STATE(2571)] = 55190, + [SMALL_STATE(2572)] = 55310, + [SMALL_STATE(2573)] = 55430, + [SMALL_STATE(2574)] = 55508, + [SMALL_STATE(2575)] = 55594, + [SMALL_STATE(2576)] = 55678, + [SMALL_STATE(2577)] = 55784, + [SMALL_STATE(2578)] = 55842, + [SMALL_STATE(2579)] = 55900, + [SMALL_STATE(2580)] = 55958, + [SMALL_STATE(2581)] = 56062, + [SMALL_STATE(2582)] = 56122, + [SMALL_STATE(2583)] = 56180, + [SMALL_STATE(2584)] = 56238, + [SMALL_STATE(2585)] = 56354, + [SMALL_STATE(2586)] = 56412, + [SMALL_STATE(2587)] = 56470, + [SMALL_STATE(2588)] = 56528, + [SMALL_STATE(2589)] = 56602, + [SMALL_STATE(2590)] = 56670, + [SMALL_STATE(2591)] = 56786, + [SMALL_STATE(2592)] = 56902, + [SMALL_STATE(2593)] = 56960, + [SMALL_STATE(2594)] = 57050, + [SMALL_STATE(2595)] = 57130, + [SMALL_STATE(2596)] = 57188, + [SMALL_STATE(2597)] = 57256, + [SMALL_STATE(2598)] = 57324, + [SMALL_STATE(2599)] = 57382, + [SMALL_STATE(2600)] = 57440, + [SMALL_STATE(2601)] = 57504, + [SMALL_STATE(2602)] = 57624, + [SMALL_STATE(2603)] = 57704, + [SMALL_STATE(2604)] = 57762, + [SMALL_STATE(2605)] = 57878, + [SMALL_STATE(2606)] = 57968, + [SMALL_STATE(2607)] = 58084, + [SMALL_STATE(2608)] = 58142, + [SMALL_STATE(2609)] = 58258, + [SMALL_STATE(2610)] = 58316, + [SMALL_STATE(2611)] = 58420, + [SMALL_STATE(2612)] = 58482, + [SMALL_STATE(2613)] = 58588, + [SMALL_STATE(2614)] = 58674, + [SMALL_STATE(2615)] = 58732, + [SMALL_STATE(2616)] = 58790, + [SMALL_STATE(2617)] = 58910, + [SMALL_STATE(2618)] = 59010, + [SMALL_STATE(2619)] = 59112, + [SMALL_STATE(2620)] = 59196, + [SMALL_STATE(2621)] = 59254, + [SMALL_STATE(2622)] = 59314, + [SMALL_STATE(2623)] = 59432, + [SMALL_STATE(2624)] = 59548, + [SMALL_STATE(2625)] = 59634, + [SMALL_STATE(2626)] = 59750, + [SMALL_STATE(2627)] = 59808, + [SMALL_STATE(2628)] = 59868, + [SMALL_STATE(2629)] = 59962, + [SMALL_STATE(2630)] = 60026, + [SMALL_STATE(2631)] = 60134, + [SMALL_STATE(2632)] = 60222, + [SMALL_STATE(2633)] = 60298, + [SMALL_STATE(2634)] = 60414, + [SMALL_STATE(2635)] = 60490, + [SMALL_STATE(2636)] = 60548, + [SMALL_STATE(2637)] = 60626, + [SMALL_STATE(2638)] = 60742, + [SMALL_STATE(2639)] = 60800, + [SMALL_STATE(2640)] = 60916, + [SMALL_STATE(2641)] = 61032, + [SMALL_STATE(2642)] = 61148, + [SMALL_STATE(2643)] = 61264, + [SMALL_STATE(2644)] = 61380, + [SMALL_STATE(2645)] = 61500, [SMALL_STATE(2646)] = 61564, - [SMALL_STATE(2647)] = 61622, - [SMALL_STATE(2648)] = 61680, - [SMALL_STATE(2649)] = 61796, - [SMALL_STATE(2650)] = 61912, - [SMALL_STATE(2651)] = 61970, - [SMALL_STATE(2652)] = 62028, - [SMALL_STATE(2653)] = 62085, - [SMALL_STATE(2654)] = 62200, - [SMALL_STATE(2655)] = 62279, - [SMALL_STATE(2656)] = 62382, - [SMALL_STATE(2657)] = 62487, - [SMALL_STATE(2658)] = 62572, - [SMALL_STATE(2659)] = 62669, - [SMALL_STATE(2660)] = 62768, - [SMALL_STATE(2661)] = 62869, - [SMALL_STATE(2662)] = 62952, - [SMALL_STATE(2663)] = 63037, - [SMALL_STATE(2664)] = 63130, - [SMALL_STATE(2665)] = 63245, - [SMALL_STATE(2666)] = 63352, - [SMALL_STATE(2667)] = 63467, - [SMALL_STATE(2668)] = 63532, - [SMALL_STATE(2669)] = 63647, - [SMALL_STATE(2670)] = 63766, - [SMALL_STATE(2671)] = 63885, - [SMALL_STATE(2672)] = 64002, - [SMALL_STATE(2673)] = 64121, - [SMALL_STATE(2674)] = 64180, - [SMALL_STATE(2675)] = 64239, - [SMALL_STATE(2676)] = 64316, - [SMALL_STATE(2677)] = 64397, - [SMALL_STATE(2678)] = 64486, - [SMALL_STATE(2679)] = 64601, - [SMALL_STATE(2680)] = 64720, - [SMALL_STATE(2681)] = 64835, - [SMALL_STATE(2682)] = 64950, - [SMALL_STATE(2683)] = 65065, - [SMALL_STATE(2684)] = 65180, - [SMALL_STATE(2685)] = 65295, - [SMALL_STATE(2686)] = 65358, - [SMALL_STATE(2687)] = 65439, - [SMALL_STATE(2688)] = 65554, - [SMALL_STATE(2689)] = 65619, - [SMALL_STATE(2690)] = 65738, - [SMALL_STATE(2691)] = 65821, - [SMALL_STATE(2692)] = 65902, - [SMALL_STATE(2693)] = 65987, - [SMALL_STATE(2694)] = 66106, - [SMALL_STATE(2695)] = 66163, - [SMALL_STATE(2696)] = 66278, - [SMALL_STATE(2697)] = 66335, - [SMALL_STATE(2698)] = 66454, - [SMALL_STATE(2699)] = 66569, - [SMALL_STATE(2700)] = 66634, - [SMALL_STATE(2701)] = 66753, - [SMALL_STATE(2702)] = 66872, - [SMALL_STATE(2703)] = 66991, - [SMALL_STATE(2704)] = 67106, - [SMALL_STATE(2705)] = 67223, - [SMALL_STATE(2706)] = 67342, - [SMALL_STATE(2707)] = 67461, - [SMALL_STATE(2708)] = 67518, - [SMALL_STATE(2709)] = 67633, - [SMALL_STATE(2710)] = 67694, - [SMALL_STATE(2711)] = 67813, - [SMALL_STATE(2712)] = 67932, - [SMALL_STATE(2713)] = 68051, - [SMALL_STATE(2714)] = 68112, - [SMALL_STATE(2715)] = 68171, - [SMALL_STATE(2716)] = 68286, - [SMALL_STATE(2717)] = 68347, - [SMALL_STATE(2718)] = 68428, - [SMALL_STATE(2719)] = 68503, - [SMALL_STATE(2720)] = 68584, - [SMALL_STATE(2721)] = 68703, - [SMALL_STATE(2722)] = 68822, - [SMALL_STATE(2723)] = 68939, - [SMALL_STATE(2724)] = 69000, - [SMALL_STATE(2725)] = 69057, - [SMALL_STATE(2726)] = 69176, - [SMALL_STATE(2727)] = 69295, - [SMALL_STATE(2728)] = 69414, - [SMALL_STATE(2729)] = 69477, - [SMALL_STATE(2730)] = 69596, - [SMALL_STATE(2731)] = 69715, - [SMALL_STATE(2732)] = 69834, - [SMALL_STATE(2733)] = 69949, - [SMALL_STATE(2734)] = 70068, - [SMALL_STATE(2735)] = 70183, - [SMALL_STATE(2736)] = 70240, - [SMALL_STATE(2737)] = 70357, - [SMALL_STATE(2738)] = 70472, - [SMALL_STATE(2739)] = 70589, - [SMALL_STATE(2740)] = 70658, - [SMALL_STATE(2741)] = 70773, - [SMALL_STATE(2742)] = 70858, - [SMALL_STATE(2743)] = 70921, - [SMALL_STATE(2744)] = 71040, - [SMALL_STATE(2745)] = 71127, - [SMALL_STATE(2746)] = 71242, - [SMALL_STATE(2747)] = 71357, - [SMALL_STATE(2748)] = 71472, - [SMALL_STATE(2749)] = 71549, - [SMALL_STATE(2750)] = 71664, - [SMALL_STATE(2751)] = 71779, - [SMALL_STATE(2752)] = 71894, - [SMALL_STATE(2753)] = 71977, - [SMALL_STATE(2754)] = 72046, - [SMALL_STATE(2755)] = 72165, - [SMALL_STATE(2756)] = 72284, - [SMALL_STATE(2757)] = 72399, - [SMALL_STATE(2758)] = 72514, - [SMALL_STATE(2759)] = 72589, - [SMALL_STATE(2760)] = 72704, - [SMALL_STATE(2761)] = 72819, - [SMALL_STATE(2762)] = 72926, - [SMALL_STATE(2763)] = 73041, - [SMALL_STATE(2764)] = 73134, - [SMALL_STATE(2765)] = 73249, - [SMALL_STATE(2766)] = 73364, - [SMALL_STATE(2767)] = 73431, - [SMALL_STATE(2768)] = 73498, - [SMALL_STATE(2769)] = 73617, - [SMALL_STATE(2770)] = 73706, - [SMALL_STATE(2771)] = 73785, - [SMALL_STATE(2772)] = 73888, - [SMALL_STATE(2773)] = 73993, - [SMALL_STATE(2774)] = 74078, - [SMALL_STATE(2775)] = 74163, - [SMALL_STATE(2776)] = 74226, - [SMALL_STATE(2777)] = 74323, - [SMALL_STATE(2778)] = 74422, - [SMALL_STATE(2779)] = 74523, - [SMALL_STATE(2780)] = 74606, - [SMALL_STATE(2781)] = 74702, - [SMALL_STATE(2782)] = 74760, - [SMALL_STATE(2783)] = 74824, - [SMALL_STATE(2784)] = 74940, - [SMALL_STATE(2785)] = 74996, - [SMALL_STATE(2786)] = 75052, - [SMALL_STATE(2787)] = 75108, - [SMALL_STATE(2788)] = 75190, - [SMALL_STATE(2789)] = 75268, - [SMALL_STATE(2790)] = 75382, - [SMALL_STATE(2791)] = 75440, - [SMALL_STATE(2792)] = 75530, - [SMALL_STATE(2793)] = 75592, - [SMALL_STATE(2794)] = 75706, - [SMALL_STATE(2795)] = 75820, - [SMALL_STATE(2796)] = 75876, - [SMALL_STATE(2797)] = 75992, - [SMALL_STATE(2798)] = 76054, - [SMALL_STATE(2799)] = 76134, - [SMALL_STATE(2800)] = 76198, - [SMALL_STATE(2801)] = 76260, - [SMALL_STATE(2802)] = 76338, - [SMALL_STATE(2803)] = 76420, - [SMALL_STATE(2804)] = 76476, - [SMALL_STATE(2805)] = 76566, - [SMALL_STATE(2806)] = 76644, - [SMALL_STATE(2807)] = 76724, - [SMALL_STATE(2808)] = 76814, - [SMALL_STATE(2809)] = 76870, - [SMALL_STATE(2810)] = 76984, - [SMALL_STATE(2811)] = 77098, - [SMALL_STATE(2812)] = 77154, - [SMALL_STATE(2813)] = 77210, - [SMALL_STATE(2814)] = 77266, - [SMALL_STATE(2815)] = 77322, - [SMALL_STATE(2816)] = 77404, - [SMALL_STATE(2817)] = 77518, - [SMALL_STATE(2818)] = 77576, - [SMALL_STATE(2819)] = 77632, - [SMALL_STATE(2820)] = 77688, - [SMALL_STATE(2821)] = 77744, - [SMALL_STATE(2822)] = 77800, - [SMALL_STATE(2823)] = 77860, - [SMALL_STATE(2824)] = 77918, - [SMALL_STATE(2825)] = 78008, - [SMALL_STATE(2826)] = 78078, - [SMALL_STATE(2827)] = 78152, - [SMALL_STATE(2828)] = 78208, - [SMALL_STATE(2829)] = 78264, - [SMALL_STATE(2830)] = 78334, - [SMALL_STATE(2831)] = 78448, - [SMALL_STATE(2832)] = 78562, - [SMALL_STATE(2833)] = 78624, - [SMALL_STATE(2834)] = 78740, - [SMALL_STATE(2835)] = 78796, - [SMALL_STATE(2836)] = 78864, - [SMALL_STATE(2837)] = 78920, - [SMALL_STATE(2838)] = 78976, - [SMALL_STATE(2839)] = 79032, - [SMALL_STATE(2840)] = 79090, - [SMALL_STATE(2841)] = 79146, - [SMALL_STATE(2842)] = 79204, - [SMALL_STATE(2843)] = 79260, - [SMALL_STATE(2844)] = 79316, - [SMALL_STATE(2845)] = 79398, - [SMALL_STATE(2846)] = 79454, - [SMALL_STATE(2847)] = 79512, - [SMALL_STATE(2848)] = 79568, - [SMALL_STATE(2849)] = 79624, - [SMALL_STATE(2850)] = 79680, - [SMALL_STATE(2851)] = 79736, - [SMALL_STATE(2852)] = 79792, - [SMALL_STATE(2853)] = 79848, - [SMALL_STATE(2854)] = 79910, - [SMALL_STATE(2855)] = 79990, - [SMALL_STATE(2856)] = 80058, - [SMALL_STATE(2857)] = 80126, - [SMALL_STATE(2858)] = 80182, - [SMALL_STATE(2859)] = 80238, - [SMALL_STATE(2860)] = 80294, - [SMALL_STATE(2861)] = 80350, - [SMALL_STATE(2862)] = 80408, - [SMALL_STATE(2863)] = 80464, - [SMALL_STATE(2864)] = 80520, - [SMALL_STATE(2865)] = 80576, - [SMALL_STATE(2866)] = 80638, - [SMALL_STATE(2867)] = 80700, - [SMALL_STATE(2868)] = 80758, - [SMALL_STATE(2869)] = 80816, - [SMALL_STATE(2870)] = 80872, - [SMALL_STATE(2871)] = 80928, - [SMALL_STATE(2872)] = 80984, - [SMALL_STATE(2873)] = 81040, - [SMALL_STATE(2874)] = 81154, - [SMALL_STATE(2875)] = 81232, - [SMALL_STATE(2876)] = 81308, - [SMALL_STATE(2877)] = 81390, - [SMALL_STATE(2878)] = 81504, - [SMALL_STATE(2879)] = 81620, - [SMALL_STATE(2880)] = 81684, - [SMALL_STATE(2881)] = 81746, - [SMALL_STATE(2882)] = 81808, - [SMALL_STATE(2883)] = 81922, - [SMALL_STATE(2884)] = 82012, - [SMALL_STATE(2885)] = 82126, - [SMALL_STATE(2886)] = 82182, - [SMALL_STATE(2887)] = 82238, - [SMALL_STATE(2888)] = 82300, - [SMALL_STATE(2889)] = 82356, - [SMALL_STATE(2890)] = 82412, - [SMALL_STATE(2891)] = 82468, - [SMALL_STATE(2892)] = 82524, - [SMALL_STATE(2893)] = 82580, - [SMALL_STATE(2894)] = 82638, - [SMALL_STATE(2895)] = 82694, - [SMALL_STATE(2896)] = 82750, - [SMALL_STATE(2897)] = 82806, - [SMALL_STATE(2898)] = 82862, - [SMALL_STATE(2899)] = 82976, - [SMALL_STATE(2900)] = 83032, - [SMALL_STATE(2901)] = 83088, - [SMALL_STATE(2902)] = 83202, - [SMALL_STATE(2903)] = 83292, - [SMALL_STATE(2904)] = 83352, - [SMALL_STATE(2905)] = 83466, - [SMALL_STATE(2906)] = 83580, - [SMALL_STATE(2907)] = 83668, - [SMALL_STATE(2908)] = 83750, - [SMALL_STATE(2909)] = 83864, - [SMALL_STATE(2910)] = 83932, - [SMALL_STATE(2911)] = 84010, - [SMALL_STATE(2912)] = 84078, - [SMALL_STATE(2913)] = 84138, - [SMALL_STATE(2914)] = 84240, - [SMALL_STATE(2915)] = 84344, - [SMALL_STATE(2916)] = 84428, - [SMALL_STATE(2917)] = 84492, - [SMALL_STATE(2918)] = 84554, - [SMALL_STATE(2919)] = 84610, - [SMALL_STATE(2920)] = 84666, - [SMALL_STATE(2921)] = 84728, - [SMALL_STATE(2922)] = 84796, - [SMALL_STATE(2923)] = 84860, - [SMALL_STATE(2924)] = 84916, - [SMALL_STATE(2925)] = 84972, - [SMALL_STATE(2926)] = 85030, - [SMALL_STATE(2927)] = 85086, - [SMALL_STATE(2928)] = 85142, - [SMALL_STATE(2929)] = 85256, - [SMALL_STATE(2930)] = 85312, - [SMALL_STATE(2931)] = 85368, - [SMALL_STATE(2932)] = 85424, - [SMALL_STATE(2933)] = 85480, - [SMALL_STATE(2934)] = 85536, - [SMALL_STATE(2935)] = 85650, - [SMALL_STATE(2936)] = 85706, - [SMALL_STATE(2937)] = 85788, - [SMALL_STATE(2938)] = 85844, - [SMALL_STATE(2939)] = 85900, - [SMALL_STATE(2940)] = 85956, - [SMALL_STATE(2941)] = 86012, - [SMALL_STATE(2942)] = 86068, - [SMALL_STATE(2943)] = 86124, - [SMALL_STATE(2944)] = 86222, - [SMALL_STATE(2945)] = 86322, - [SMALL_STATE(2946)] = 86404, - [SMALL_STATE(2947)] = 86462, - [SMALL_STATE(2948)] = 86546, - [SMALL_STATE(2949)] = 86614, - [SMALL_STATE(2950)] = 86696, - [SMALL_STATE(2951)] = 86786, - [SMALL_STATE(2952)] = 86868, - [SMALL_STATE(2953)] = 86982, - [SMALL_STATE(2954)] = 87074, - [SMALL_STATE(2955)] = 87188, - [SMALL_STATE(2956)] = 87294, - [SMALL_STATE(2957)] = 87408, - [SMALL_STATE(2958)] = 87522, - [SMALL_STATE(2959)] = 87638, - [SMALL_STATE(2960)] = 87706, - [SMALL_STATE(2961)] = 87820, - [SMALL_STATE(2962)] = 87888, - [SMALL_STATE(2963)] = 87966, - [SMALL_STATE(2964)] = 88080, - [SMALL_STATE(2965)] = 88194, - [SMALL_STATE(2966)] = 88308, - [SMALL_STATE(2967)] = 88366, - [SMALL_STATE(2968)] = 88480, - [SMALL_STATE(2969)] = 88594, - [SMALL_STATE(2970)] = 88708, - [SMALL_STATE(2971)] = 88764, - [SMALL_STATE(2972)] = 88822, - [SMALL_STATE(2973)] = 88878, - [SMALL_STATE(2974)] = 88946, - [SMALL_STATE(2975)] = 89008, - [SMALL_STATE(2976)] = 89066, - [SMALL_STATE(2977)] = 89122, - [SMALL_STATE(2978)] = 89184, - [SMALL_STATE(2979)] = 89240, - [SMALL_STATE(2980)] = 89300, - [SMALL_STATE(2981)] = 89362, - [SMALL_STATE(2982)] = 89478, - [SMALL_STATE(2983)] = 89534, - [SMALL_STATE(2984)] = 89590, - [SMALL_STATE(2985)] = 89646, - [SMALL_STATE(2986)] = 89702, - [SMALL_STATE(2987)] = 89758, - [SMALL_STATE(2988)] = 89814, - [SMALL_STATE(2989)] = 89870, - [SMALL_STATE(2990)] = 89926, - [SMALL_STATE(2991)] = 89988, - [SMALL_STATE(2992)] = 90052, - [SMALL_STATE(2993)] = 90114, - [SMALL_STATE(2994)] = 90195, - [SMALL_STATE(2995)] = 90254, - [SMALL_STATE(2996)] = 90315, - [SMALL_STATE(2997)] = 90392, - [SMALL_STATE(2998)] = 90493, - [SMALL_STATE(2999)] = 90552, - [SMALL_STATE(3000)] = 90655, - [SMALL_STATE(3001)] = 90714, - [SMALL_STATE(3002)] = 90797, - [SMALL_STATE(3003)] = 90892, - [SMALL_STATE(3004)] = 91005, - [SMALL_STATE(3005)] = 91102, - [SMALL_STATE(3006)] = 91201, - [SMALL_STATE(3007)] = 91282, - [SMALL_STATE(3008)] = 91365, - [SMALL_STATE(3009)] = 91420, - [SMALL_STATE(3010)] = 91483, - [SMALL_STATE(3011)] = 91540, - [SMALL_STATE(3012)] = 91599, - [SMALL_STATE(3013)] = 91690, - [SMALL_STATE(3014)] = 91749, - [SMALL_STATE(3015)] = 91854, - [SMALL_STATE(3016)] = 91967, - [SMALL_STATE(3017)] = 92080, - [SMALL_STATE(3018)] = 92135, - [SMALL_STATE(3019)] = 92210, - [SMALL_STATE(3020)] = 92265, - [SMALL_STATE(3021)] = 92320, - [SMALL_STATE(3022)] = 92375, - [SMALL_STATE(3023)] = 92450, - [SMALL_STATE(3024)] = 92513, - [SMALL_STATE(3025)] = 92594, - [SMALL_STATE(3026)] = 92661, - [SMALL_STATE(3027)] = 92774, - [SMALL_STATE(3028)] = 92841, - [SMALL_STATE(3029)] = 92908, - [SMALL_STATE(3030)] = 93021, - [SMALL_STATE(3031)] = 93094, - [SMALL_STATE(3032)] = 93161, - [SMALL_STATE(3033)] = 93274, - [SMALL_STATE(3034)] = 93387, - [SMALL_STATE(3035)] = 93500, - [SMALL_STATE(3036)] = 93613, - [SMALL_STATE(3037)] = 93726, - [SMALL_STATE(3038)] = 93813, - [SMALL_STATE(3039)] = 93890, - [SMALL_STATE(3040)] = 93957, - [SMALL_STATE(3041)] = 94070, - [SMALL_STATE(3042)] = 94137, - [SMALL_STATE(3043)] = 94224, - [SMALL_STATE(3044)] = 94337, - [SMALL_STATE(3045)] = 94450, - [SMALL_STATE(3046)] = 94551, - [SMALL_STATE(3047)] = 94654, - [SMALL_STATE(3048)] = 94737, - [SMALL_STATE(3049)] = 94832, - [SMALL_STATE(3050)] = 94929, - [SMALL_STATE(3051)] = 95028, - [SMALL_STATE(3052)] = 95089, - [SMALL_STATE(3053)] = 95152, - [SMALL_STATE(3054)] = 95233, - [SMALL_STATE(3055)] = 95316, - [SMALL_STATE(3056)] = 95391, - [SMALL_STATE(3057)] = 95482, - [SMALL_STATE(3058)] = 95587, - [SMALL_STATE(3059)] = 95700, - [SMALL_STATE(3060)] = 95813, - [SMALL_STATE(3061)] = 95880, - [SMALL_STATE(3062)] = 95993, - [SMALL_STATE(3063)] = 96060, - [SMALL_STATE(3064)] = 96119, - [SMALL_STATE(3065)] = 96232, - [SMALL_STATE(3066)] = 96345, - [SMALL_STATE(3067)] = 96408, - [SMALL_STATE(3068)] = 96463, - [SMALL_STATE(3069)] = 96536, - [SMALL_STATE(3070)] = 96649, - [SMALL_STATE(3071)] = 96762, - [SMALL_STATE(3072)] = 96817, - [SMALL_STATE(3073)] = 96930, - [SMALL_STATE(3074)] = 97043, - [SMALL_STATE(3075)] = 97156, - [SMALL_STATE(3076)] = 97269, - [SMALL_STATE(3077)] = 97328, - [SMALL_STATE(3078)] = 97401, - [SMALL_STATE(3079)] = 97514, - [SMALL_STATE(3080)] = 97627, - [SMALL_STATE(3081)] = 97708, - [SMALL_STATE(3082)] = 97821, - [SMALL_STATE(3083)] = 97882, - [SMALL_STATE(3084)] = 97995, - [SMALL_STATE(3085)] = 98056, - [SMALL_STATE(3086)] = 98111, - [SMALL_STATE(3087)] = 98168, - [SMALL_STATE(3088)] = 98229, - [SMALL_STATE(3089)] = 98292, - [SMALL_STATE(3090)] = 98355, - [SMALL_STATE(3091)] = 98430, - [SMALL_STATE(3092)] = 98505, - [SMALL_STATE(3093)] = 98560, - [SMALL_STATE(3094)] = 98633, - [SMALL_STATE(3095)] = 98696, - [SMALL_STATE(3096)] = 98779, - [SMALL_STATE(3097)] = 98862, - [SMALL_STATE(3098)] = 98975, - [SMALL_STATE(3099)] = 99040, - [SMALL_STATE(3100)] = 99097, - [SMALL_STATE(3101)] = 99212, - [SMALL_STATE(3102)] = 99271, - [SMALL_STATE(3103)] = 99344, - [SMALL_STATE(3104)] = 99407, - [SMALL_STATE(3105)] = 99482, - [SMALL_STATE(3106)] = 99543, - [SMALL_STATE(3107)] = 99616, - [SMALL_STATE(3108)] = 99675, - [SMALL_STATE(3109)] = 99734, - [SMALL_STATE(3110)] = 99789, - [SMALL_STATE(3111)] = 99902, - [SMALL_STATE(3112)] = 99957, - [SMALL_STATE(3113)] = 100014, - [SMALL_STATE(3114)] = 100127, - [SMALL_STATE(3115)] = 100184, - [SMALL_STATE(3116)] = 100245, - [SMALL_STATE(3117)] = 100320, - [SMALL_STATE(3118)] = 100393, - [SMALL_STATE(3119)] = 100458, - [SMALL_STATE(3120)] = 100523, - [SMALL_STATE(3121)] = 100636, - [SMALL_STATE(3122)] = 100695, - [SMALL_STATE(3123)] = 100762, - [SMALL_STATE(3124)] = 100817, - [SMALL_STATE(3125)] = 100874, - [SMALL_STATE(3126)] = 100929, - [SMALL_STATE(3127)] = 101022, - [SMALL_STATE(3128)] = 101079, - [SMALL_STATE(3129)] = 101140, - [SMALL_STATE(3130)] = 101253, - [SMALL_STATE(3131)] = 101326, - [SMALL_STATE(3132)] = 101399, - [SMALL_STATE(3133)] = 101456, - [SMALL_STATE(3134)] = 101515, - [SMALL_STATE(3135)] = 101628, - [SMALL_STATE(3136)] = 101691, - [SMALL_STATE(3137)] = 101758, - [SMALL_STATE(3138)] = 101817, - [SMALL_STATE(3139)] = 101898, - [SMALL_STATE(3140)] = 101957, - [SMALL_STATE(3141)] = 102012, - [SMALL_STATE(3142)] = 102079, - [SMALL_STATE(3143)] = 102162, - [SMALL_STATE(3144)] = 102223, - [SMALL_STATE(3145)] = 102336, - [SMALL_STATE(3146)] = 102391, - [SMALL_STATE(3147)] = 102472, - [SMALL_STATE(3148)] = 102545, - [SMALL_STATE(3149)] = 102608, - [SMALL_STATE(3150)] = 102683, - [SMALL_STATE(3151)] = 102758, - [SMALL_STATE(3152)] = 102823, - [SMALL_STATE(3153)] = 102878, - [SMALL_STATE(3154)] = 102991, - [SMALL_STATE(3155)] = 103050, - [SMALL_STATE(3156)] = 103123, - [SMALL_STATE(3157)] = 103182, - [SMALL_STATE(3158)] = 103239, - [SMALL_STATE(3159)] = 103294, - [SMALL_STATE(3160)] = 103367, - [SMALL_STATE(3161)] = 103440, - [SMALL_STATE(3162)] = 103523, - [SMALL_STATE(3163)] = 103604, - [SMALL_STATE(3164)] = 103659, - [SMALL_STATE(3165)] = 103714, - [SMALL_STATE(3166)] = 103797, - [SMALL_STATE(3167)] = 103852, - [SMALL_STATE(3168)] = 103927, - [SMALL_STATE(3169)] = 104000, - [SMALL_STATE(3170)] = 104055, - [SMALL_STATE(3171)] = 104110, - [SMALL_STATE(3172)] = 104165, - [SMALL_STATE(3173)] = 104224, - [SMALL_STATE(3174)] = 104279, - [SMALL_STATE(3175)] = 104360, - [SMALL_STATE(3176)] = 104417, - [SMALL_STATE(3177)] = 104472, - [SMALL_STATE(3178)] = 104585, - [SMALL_STATE(3179)] = 104658, - [SMALL_STATE(3180)] = 104713, - [SMALL_STATE(3181)] = 104768, - [SMALL_STATE(3182)] = 104841, - [SMALL_STATE(3183)] = 104954, - [SMALL_STATE(3184)] = 105035, - [SMALL_STATE(3185)] = 105110, - [SMALL_STATE(3186)] = 105169, - [SMALL_STATE(3187)] = 105224, - [SMALL_STATE(3188)] = 105299, - [SMALL_STATE(3189)] = 105372, - [SMALL_STATE(3190)] = 105447, - [SMALL_STATE(3191)] = 105504, - [SMALL_STATE(3192)] = 105579, - [SMALL_STATE(3193)] = 105634, - [SMALL_STATE(3194)] = 105747, - [SMALL_STATE(3195)] = 105860, - [SMALL_STATE(3196)] = 105973, - [SMALL_STATE(3197)] = 106046, - [SMALL_STATE(3198)] = 106121, - [SMALL_STATE(3199)] = 106178, - [SMALL_STATE(3200)] = 106233, - [SMALL_STATE(3201)] = 106346, - [SMALL_STATE(3202)] = 106459, - [SMALL_STATE(3203)] = 106518, - [SMALL_STATE(3204)] = 106631, - [SMALL_STATE(3205)] = 106690, - [SMALL_STATE(3206)] = 106745, - [SMALL_STATE(3207)] = 106826, - [SMALL_STATE(3208)] = 106901, - [SMALL_STATE(3209)] = 106974, - [SMALL_STATE(3210)] = 107057, - [SMALL_STATE(3211)] = 107116, - [SMALL_STATE(3212)] = 107175, - [SMALL_STATE(3213)] = 107242, - [SMALL_STATE(3214)] = 107309, - [SMALL_STATE(3215)] = 107384, - [SMALL_STATE(3216)] = 107441, - [SMALL_STATE(3217)] = 107498, - [SMALL_STATE(3218)] = 107589, - [SMALL_STATE(3219)] = 107650, - [SMALL_STATE(3220)] = 107705, - [SMALL_STATE(3221)] = 107764, - [SMALL_STATE(3222)] = 107819, - [SMALL_STATE(3223)] = 107874, - [SMALL_STATE(3224)] = 107987, - [SMALL_STATE(3225)] = 108092, - [SMALL_STATE(3226)] = 108205, - [SMALL_STATE(3227)] = 108262, - [SMALL_STATE(3228)] = 108321, - [SMALL_STATE(3229)] = 108434, - [SMALL_STATE(3230)] = 108501, - [SMALL_STATE(3231)] = 108574, - [SMALL_STATE(3232)] = 108633, - [SMALL_STATE(3233)] = 108692, - [SMALL_STATE(3234)] = 108775, - [SMALL_STATE(3235)] = 108830, - [SMALL_STATE(3236)] = 108885, - [SMALL_STATE(3237)] = 108940, - [SMALL_STATE(3238)] = 108995, - [SMALL_STATE(3239)] = 109050, - [SMALL_STATE(3240)] = 109105, - [SMALL_STATE(3241)] = 109160, - [SMALL_STATE(3242)] = 109235, - [SMALL_STATE(3243)] = 109312, - [SMALL_STATE(3244)] = 109367, - [SMALL_STATE(3245)] = 109480, - [SMALL_STATE(3246)] = 109593, - [SMALL_STATE(3247)] = 109706, - [SMALL_STATE(3248)] = 109761, - [SMALL_STATE(3249)] = 109816, - [SMALL_STATE(3250)] = 109871, - [SMALL_STATE(3251)] = 109926, - [SMALL_STATE(3252)] = 109999, - [SMALL_STATE(3253)] = 110112, - [SMALL_STATE(3254)] = 110193, - [SMALL_STATE(3255)] = 110268, - [SMALL_STATE(3256)] = 110381, - [SMALL_STATE(3257)] = 110494, - [SMALL_STATE(3258)] = 110581, - [SMALL_STATE(3259)] = 110658, - [SMALL_STATE(3260)] = 110759, - [SMALL_STATE(3261)] = 110816, - [SMALL_STATE(3262)] = 110873, - [SMALL_STATE(3263)] = 110928, - [SMALL_STATE(3264)] = 110983, - [SMALL_STATE(3265)] = 111042, - [SMALL_STATE(3266)] = 111097, - [SMALL_STATE(3267)] = 111170, - [SMALL_STATE(3268)] = 111253, - [SMALL_STATE(3269)] = 111312, - [SMALL_STATE(3270)] = 111385, - [SMALL_STATE(3271)] = 111498, - [SMALL_STATE(3272)] = 111579, - [SMALL_STATE(3273)] = 111638, - [SMALL_STATE(3274)] = 111693, - [SMALL_STATE(3275)] = 111796, - [SMALL_STATE(3276)] = 111879, - [SMALL_STATE(3277)] = 111974, - [SMALL_STATE(3278)] = 112071, - [SMALL_STATE(3279)] = 112170, - [SMALL_STATE(3280)] = 112229, - [SMALL_STATE(3281)] = 112284, - [SMALL_STATE(3282)] = 112339, - [SMALL_STATE(3283)] = 112399, - [SMALL_STATE(3284)] = 112455, - [SMALL_STATE(3285)] = 112513, - [SMALL_STATE(3286)] = 112589, - [SMALL_STATE(3287)] = 112657, - [SMALL_STATE(3288)] = 112741, - [SMALL_STATE(3289)] = 112809, - [SMALL_STATE(3290)] = 112877, - [SMALL_STATE(3291)] = 112935, - [SMALL_STATE(3292)] = 112991, - [SMALL_STATE(3293)] = 113073, - [SMALL_STATE(3294)] = 113135, - [SMALL_STATE(3295)] = 113211, - [SMALL_STATE(3296)] = 113285, - [SMALL_STATE(3297)] = 113365, - [SMALL_STATE(3298)] = 113433, - [SMALL_STATE(3299)] = 113493, - [SMALL_STATE(3300)] = 113603, - [SMALL_STATE(3301)] = 113691, - [SMALL_STATE(3302)] = 113767, - [SMALL_STATE(3303)] = 113865, - [SMALL_STATE(3304)] = 113945, - [SMALL_STATE(3305)] = 114013, - [SMALL_STATE(3306)] = 114069, - [SMALL_STATE(3307)] = 114155, - [SMALL_STATE(3308)] = 114217, - [SMALL_STATE(3309)] = 114273, - [SMALL_STATE(3310)] = 114363, - [SMALL_STATE(3311)] = 114423, - [SMALL_STATE(3312)] = 114527, - [SMALL_STATE(3313)] = 114637, - [SMALL_STATE(3314)] = 114695, - [SMALL_STATE(3315)] = 114805, - [SMALL_STATE(3316)] = 114915, - [SMALL_STATE(3317)] = 115025, - [SMALL_STATE(3318)] = 115093, - [SMALL_STATE(3319)] = 115161, - [SMALL_STATE(3320)] = 115271, - [SMALL_STATE(3321)] = 115333, - [SMALL_STATE(3322)] = 115393, - [SMALL_STATE(3323)] = 115455, - [SMALL_STATE(3324)] = 115565, - [SMALL_STATE(3325)] = 115661, - [SMALL_STATE(3326)] = 115755, - [SMALL_STATE(3327)] = 115811, - [SMALL_STATE(3328)] = 115893, - [SMALL_STATE(3329)] = 115969, - [SMALL_STATE(3330)] = 116037, - [SMALL_STATE(3331)] = 116105, - [SMALL_STATE(3332)] = 116173, - [SMALL_STATE(3333)] = 116283, - [SMALL_STATE(3334)] = 116393, - [SMALL_STATE(3335)] = 116461, - [SMALL_STATE(3336)] = 116571, - [SMALL_STATE(3337)] = 116653, - [SMALL_STATE(3338)] = 116721, - [SMALL_STATE(3339)] = 116789, - [SMALL_STATE(3340)] = 116855, - [SMALL_STATE(3341)] = 116931, - [SMALL_STATE(3342)] = 117033, - [SMALL_STATE(3343)] = 117101, - [SMALL_STATE(3344)] = 117211, - [SMALL_STATE(3345)] = 117311, - [SMALL_STATE(3346)] = 117373, - [SMALL_STATE(3347)] = 117483, - [SMALL_STATE(3348)] = 117551, - [SMALL_STATE(3349)] = 117619, - [SMALL_STATE(3350)] = 117675, - [SMALL_STATE(3351)] = 117747, - [SMALL_STATE(3352)] = 117823, - [SMALL_STATE(3353)] = 117933, - [SMALL_STATE(3354)] = 118001, - [SMALL_STATE(3355)] = 118069, - [SMALL_STATE(3356)] = 118137, - [SMALL_STATE(3357)] = 118247, - [SMALL_STATE(3358)] = 118315, - [SMALL_STATE(3359)] = 118425, - [SMALL_STATE(3360)] = 118501, - [SMALL_STATE(3361)] = 118557, - [SMALL_STATE(3362)] = 118625, - [SMALL_STATE(3363)] = 118693, - [SMALL_STATE(3364)] = 118755, - [SMALL_STATE(3365)] = 118823, - [SMALL_STATE(3366)] = 118933, - [SMALL_STATE(3367)] = 119009, - [SMALL_STATE(3368)] = 119071, - [SMALL_STATE(3369)] = 119130, - [SMALL_STATE(3370)] = 119189, - [SMALL_STATE(3371)] = 119248, - [SMALL_STATE(3372)] = 119307, - [SMALL_STATE(3373)] = 119366, - [SMALL_STATE(3374)] = 119425, - [SMALL_STATE(3375)] = 119494, - [SMALL_STATE(3376)] = 119567, - [SMALL_STATE(3377)] = 119640, - [SMALL_STATE(3378)] = 119709, - [SMALL_STATE(3379)] = 119778, - [SMALL_STATE(3380)] = 119851, - [SMALL_STATE(3381)] = 119924, - [SMALL_STATE(3382)] = 119997, - [SMALL_STATE(3383)] = 120072, - [SMALL_STATE(3384)] = 120127, - [SMALL_STATE(3385)] = 120200, - [SMALL_STATE(3386)] = 120255, - [SMALL_STATE(3387)] = 120310, - [SMALL_STATE(3388)] = 120403, - [SMALL_STATE(3389)] = 120458, - [SMALL_STATE(3390)] = 120527, - [SMALL_STATE(3391)] = 120606, - [SMALL_STATE(3392)] = 120661, - [SMALL_STATE(3393)] = 120716, - [SMALL_STATE(3394)] = 120771, - [SMALL_STATE(3395)] = 120826, - [SMALL_STATE(3396)] = 120885, - [SMALL_STATE(3397)] = 120944, - [SMALL_STATE(3398)] = 120999, - [SMALL_STATE(3399)] = 121054, - [SMALL_STATE(3400)] = 121115, - [SMALL_STATE(3401)] = 121174, - [SMALL_STATE(3402)] = 121251, - [SMALL_STATE(3403)] = 121306, - [SMALL_STATE(3404)] = 121365, - [SMALL_STATE(3405)] = 121420, - [SMALL_STATE(3406)] = 121495, - [SMALL_STATE(3407)] = 121564, - [SMALL_STATE(3408)] = 121622, - [SMALL_STATE(3409)] = 121692, - [SMALL_STATE(3410)] = 121758, - [SMALL_STATE(3411)] = 121820, - [SMALL_STATE(3412)] = 121882, - [SMALL_STATE(3413)] = 121948, - [SMALL_STATE(3414)] = 122010, - [SMALL_STATE(3415)] = 122082, - [SMALL_STATE(3416)] = 122148, - [SMALL_STATE(3417)] = 122214, - [SMALL_STATE(3418)] = 122276, - [SMALL_STATE(3419)] = 122334, - [SMALL_STATE(3420)] = 122396, - [SMALL_STATE(3421)] = 122462, - [SMALL_STATE(3422)] = 122516, - [SMALL_STATE(3423)] = 122578, - [SMALL_STATE(3424)] = 122640, - [SMALL_STATE(3425)] = 122702, - [SMALL_STATE(3426)] = 122764, - [SMALL_STATE(3427)] = 122822, - [SMALL_STATE(3428)] = 122884, - [SMALL_STATE(3429)] = 122946, - [SMALL_STATE(3430)] = 123008, - [SMALL_STATE(3431)] = 123066, - [SMALL_STATE(3432)] = 123128, - [SMALL_STATE(3433)] = 123190, - [SMALL_STATE(3434)] = 123248, - [SMALL_STATE(3435)] = 123314, - [SMALL_STATE(3436)] = 123368, - [SMALL_STATE(3437)] = 123434, - [SMALL_STATE(3438)] = 123500, - [SMALL_STATE(3439)] = 123566, - [SMALL_STATE(3440)] = 123620, - [SMALL_STATE(3441)] = 123686, - [SMALL_STATE(3442)] = 123752, - [SMALL_STATE(3443)] = 123820, - [SMALL_STATE(3444)] = 123886, - [SMALL_STATE(3445)] = 123952, - [SMALL_STATE(3446)] = 124006, - [SMALL_STATE(3447)] = 124072, - [SMALL_STATE(3448)] = 124126, - [SMALL_STATE(3449)] = 124192, - [SMALL_STATE(3450)] = 124258, - [SMALL_STATE(3451)] = 124328, - [SMALL_STATE(3452)] = 124393, - [SMALL_STATE(3453)] = 124446, - [SMALL_STATE(3454)] = 124499, - [SMALL_STATE(3455)] = 124552, - [SMALL_STATE(3456)] = 124605, - [SMALL_STATE(3457)] = 124658, - [SMALL_STATE(3458)] = 124711, - [SMALL_STATE(3459)] = 124764, - [SMALL_STATE(3460)] = 124817, - [SMALL_STATE(3461)] = 124870, - [SMALL_STATE(3462)] = 124923, - [SMALL_STATE(3463)] = 124973, - [SMALL_STATE(3464)] = 125023, - [SMALL_STATE(3465)] = 125073, - [SMALL_STATE(3466)] = 125123, - [SMALL_STATE(3467)] = 125173, - [SMALL_STATE(3468)] = 125223, - [SMALL_STATE(3469)] = 125273, - [SMALL_STATE(3470)] = 125323, - [SMALL_STATE(3471)] = 125373, - [SMALL_STATE(3472)] = 125425, - [SMALL_STATE(3473)] = 125475, - [SMALL_STATE(3474)] = 125525, - [SMALL_STATE(3475)] = 125575, - [SMALL_STATE(3476)] = 125625, - [SMALL_STATE(3477)] = 125675, - [SMALL_STATE(3478)] = 125725, - [SMALL_STATE(3479)] = 125775, - [SMALL_STATE(3480)] = 125825, - [SMALL_STATE(3481)] = 125875, - [SMALL_STATE(3482)] = 125933, - [SMALL_STATE(3483)] = 125983, - [SMALL_STATE(3484)] = 126033, - [SMALL_STATE(3485)] = 126083, - [SMALL_STATE(3486)] = 126133, - [SMALL_STATE(3487)] = 126183, - [SMALL_STATE(3488)] = 126233, - [SMALL_STATE(3489)] = 126283, - [SMALL_STATE(3490)] = 126333, - [SMALL_STATE(3491)] = 126383, - [SMALL_STATE(3492)] = 126439, - [SMALL_STATE(3493)] = 126489, - [SMALL_STATE(3494)] = 126545, - [SMALL_STATE(3495)] = 126595, - [SMALL_STATE(3496)] = 126645, - [SMALL_STATE(3497)] = 126695, - [SMALL_STATE(3498)] = 126745, - [SMALL_STATE(3499)] = 126795, - [SMALL_STATE(3500)] = 126847, - [SMALL_STATE(3501)] = 126897, - [SMALL_STATE(3502)] = 126947, - [SMALL_STATE(3503)] = 127021, - [SMALL_STATE(3504)] = 127071, - [SMALL_STATE(3505)] = 127121, - [SMALL_STATE(3506)] = 127171, - [SMALL_STATE(3507)] = 127221, - [SMALL_STATE(3508)] = 127271, - [SMALL_STATE(3509)] = 127321, - [SMALL_STATE(3510)] = 127371, - [SMALL_STATE(3511)] = 127425, - [SMALL_STATE(3512)] = 127475, - [SMALL_STATE(3513)] = 127525, - [SMALL_STATE(3514)] = 127579, - [SMALL_STATE(3515)] = 127629, - [SMALL_STATE(3516)] = 127679, - [SMALL_STATE(3517)] = 127729, - [SMALL_STATE(3518)] = 127779, - [SMALL_STATE(3519)] = 127829, - [SMALL_STATE(3520)] = 127879, - [SMALL_STATE(3521)] = 127942, - [SMALL_STATE(3522)] = 128007, - [SMALL_STATE(3523)] = 128074, - [SMALL_STATE(3524)] = 128121, - [SMALL_STATE(3525)] = 128168, - [SMALL_STATE(3526)] = 128215, - [SMALL_STATE(3527)] = 128262, - [SMALL_STATE(3528)] = 128327, - [SMALL_STATE(3529)] = 128374, - [SMALL_STATE(3530)] = 128425, - [SMALL_STATE(3531)] = 128476, - [SMALL_STATE(3532)] = 128523, - [SMALL_STATE(3533)] = 128590, - [SMALL_STATE(3534)] = 128657, - [SMALL_STATE(3535)] = 128722, - [SMALL_STATE(3536)] = 128787, - [SMALL_STATE(3537)] = 128834, - [SMALL_STATE(3538)] = 128881, - [SMALL_STATE(3539)] = 128941, - [SMALL_STATE(3540)] = 129001, - [SMALL_STATE(3541)] = 129077, - [SMALL_STATE(3542)] = 129137, - [SMALL_STATE(3543)] = 129197, - [SMALL_STATE(3544)] = 129257, - [SMALL_STATE(3545)] = 129317, - [SMALL_STATE(3546)] = 129377, - [SMALL_STATE(3547)] = 129437, - [SMALL_STATE(3548)] = 129497, - [SMALL_STATE(3549)] = 129557, - [SMALL_STATE(3550)] = 129617, - [SMALL_STATE(3551)] = 129693, - [SMALL_STATE(3552)] = 129753, - [SMALL_STATE(3553)] = 129813, - [SMALL_STATE(3554)] = 129873, - [SMALL_STATE(3555)] = 129933, - [SMALL_STATE(3556)] = 129993, - [SMALL_STATE(3557)] = 130053, - [SMALL_STATE(3558)] = 130113, - [SMALL_STATE(3559)] = 130159, - [SMALL_STATE(3560)] = 130219, - [SMALL_STATE(3561)] = 130279, - [SMALL_STATE(3562)] = 130339, - [SMALL_STATE(3563)] = 130399, - [SMALL_STATE(3564)] = 130459, - [SMALL_STATE(3565)] = 130519, - [SMALL_STATE(3566)] = 130579, - [SMALL_STATE(3567)] = 130639, - [SMALL_STATE(3568)] = 130699, - [SMALL_STATE(3569)] = 130766, - [SMALL_STATE(3570)] = 130827, - [SMALL_STATE(3571)] = 130912, - [SMALL_STATE(3572)] = 130997, - [SMALL_STATE(3573)] = 131058, - [SMALL_STATE(3574)] = 131143, - [SMALL_STATE(3575)] = 131228, - [SMALL_STATE(3576)] = 131295, - [SMALL_STATE(3577)] = 131356, - [SMALL_STATE(3578)] = 131441, - [SMALL_STATE(3579)] = 131502, - [SMALL_STATE(3580)] = 131551, - [SMALL_STATE(3581)] = 131612, - [SMALL_STATE(3582)] = 131673, - [SMALL_STATE(3583)] = 131744, - [SMALL_STATE(3584)] = 131805, - [SMALL_STATE(3585)] = 131866, - [SMALL_STATE(3586)] = 131927, - [SMALL_STATE(3587)] = 132012, - [SMALL_STATE(3588)] = 132073, - [SMALL_STATE(3589)] = 132140, - [SMALL_STATE(3590)] = 132201, - [SMALL_STATE(3591)] = 132286, - [SMALL_STATE(3592)] = 132347, - [SMALL_STATE(3593)] = 132408, - [SMALL_STATE(3594)] = 132469, - [SMALL_STATE(3595)] = 132530, - [SMALL_STATE(3596)] = 132591, - [SMALL_STATE(3597)] = 132676, - [SMALL_STATE(3598)] = 132737, - [SMALL_STATE(3599)] = 132822, - [SMALL_STATE(3600)] = 132893, - [SMALL_STATE(3601)] = 132954, - [SMALL_STATE(3602)] = 133015, - [SMALL_STATE(3603)] = 133076, - [SMALL_STATE(3604)] = 133161, - [SMALL_STATE(3605)] = 133222, - [SMALL_STATE(3606)] = 133283, - [SMALL_STATE(3607)] = 133344, - [SMALL_STATE(3608)] = 133405, - [SMALL_STATE(3609)] = 133466, - [SMALL_STATE(3610)] = 133527, - [SMALL_STATE(3611)] = 133598, - [SMALL_STATE(3612)] = 133683, - [SMALL_STATE(3613)] = 133744, - [SMALL_STATE(3614)] = 133805, - [SMALL_STATE(3615)] = 133866, - [SMALL_STATE(3616)] = 133951, - [SMALL_STATE(3617)] = 134018, - [SMALL_STATE(3618)] = 134079, - [SMALL_STATE(3619)] = 134139, - [SMALL_STATE(3620)] = 134203, - [SMALL_STATE(3621)] = 134267, - [SMALL_STATE(3622)] = 134331, - [SMALL_STATE(3623)] = 134395, - [SMALL_STATE(3624)] = 134459, - [SMALL_STATE(3625)] = 134517, - [SMALL_STATE(3626)] = 134581, - [SMALL_STATE(3627)] = 134645, - [SMALL_STATE(3628)] = 134709, - [SMALL_STATE(3629)] = 134755, - [SMALL_STATE(3630)] = 134819, - [SMALL_STATE(3631)] = 134883, - [SMALL_STATE(3632)] = 134947, - [SMALL_STATE(3633)] = 135011, - [SMALL_STATE(3634)] = 135075, - [SMALL_STATE(3635)] = 135135, - [SMALL_STATE(3636)] = 135199, - [SMALL_STATE(3637)] = 135263, - [SMALL_STATE(3638)] = 135327, - [SMALL_STATE(3639)] = 135382, - [SMALL_STATE(3640)] = 135439, - [SMALL_STATE(3641)] = 135482, - [SMALL_STATE(3642)] = 135537, - [SMALL_STATE(3643)] = 135592, - [SMALL_STATE(3644)] = 135647, - [SMALL_STATE(3645)] = 135702, - [SMALL_STATE(3646)] = 135757, - [SMALL_STATE(3647)] = 135812, - [SMALL_STATE(3648)] = 135867, - [SMALL_STATE(3649)] = 135922, - [SMALL_STATE(3650)] = 135979, - [SMALL_STATE(3651)] = 136036, - [SMALL_STATE(3652)] = 136093, - [SMALL_STATE(3653)] = 136148, - [SMALL_STATE(3654)] = 136205, - [SMALL_STATE(3655)] = 136260, - [SMALL_STATE(3656)] = 136315, - [SMALL_STATE(3657)] = 136370, - [SMALL_STATE(3658)] = 136425, - [SMALL_STATE(3659)] = 136480, - [SMALL_STATE(3660)] = 136535, - [SMALL_STATE(3661)] = 136590, - [SMALL_STATE(3662)] = 136647, - [SMALL_STATE(3663)] = 136702, - [SMALL_STATE(3664)] = 136745, - [SMALL_STATE(3665)] = 136800, - [SMALL_STATE(3666)] = 136855, - [SMALL_STATE(3667)] = 136910, - [SMALL_STATE(3668)] = 136953, - [SMALL_STATE(3669)] = 137008, - [SMALL_STATE(3670)] = 137051, - [SMALL_STATE(3671)] = 137108, - [SMALL_STATE(3672)] = 137163, - [SMALL_STATE(3673)] = 137218, - [SMALL_STATE(3674)] = 137273, - [SMALL_STATE(3675)] = 137316, - [SMALL_STATE(3676)] = 137371, - [SMALL_STATE(3677)] = 137426, - [SMALL_STATE(3678)] = 137483, - [SMALL_STATE(3679)] = 137526, - [SMALL_STATE(3680)] = 137569, - [SMALL_STATE(3681)] = 137624, - [SMALL_STATE(3682)] = 137679, - [SMALL_STATE(3683)] = 137734, - [SMALL_STATE(3684)] = 137791, - [SMALL_STATE(3685)] = 137848, - [SMALL_STATE(3686)] = 137903, - [SMALL_STATE(3687)] = 137960, - [SMALL_STATE(3688)] = 138015, - [SMALL_STATE(3689)] = 138070, - [SMALL_STATE(3690)] = 138127, - [SMALL_STATE(3691)] = 138182, - [SMALL_STATE(3692)] = 138237, - [SMALL_STATE(3693)] = 138292, - [SMALL_STATE(3694)] = 138347, - [SMALL_STATE(3695)] = 138404, - [SMALL_STATE(3696)] = 138459, - [SMALL_STATE(3697)] = 138514, - [SMALL_STATE(3698)] = 138571, - [SMALL_STATE(3699)] = 138626, - [SMALL_STATE(3700)] = 138681, - [SMALL_STATE(3701)] = 138721, - [SMALL_STATE(3702)] = 138756, - [SMALL_STATE(3703)] = 138803, - [SMALL_STATE(3704)] = 138850, - [SMALL_STATE(3705)] = 138897, - [SMALL_STATE(3706)] = 138932, - [SMALL_STATE(3707)] = 138967, - [SMALL_STATE(3708)] = 139001, - [SMALL_STATE(3709)] = 139035, - [SMALL_STATE(3710)] = 139068, - [SMALL_STATE(3711)] = 139109, - [SMALL_STATE(3712)] = 139142, - [SMALL_STATE(3713)] = 139175, - [SMALL_STATE(3714)] = 139208, - [SMALL_STATE(3715)] = 139241, - [SMALL_STATE(3716)] = 139274, - [SMALL_STATE(3717)] = 139307, - [SMALL_STATE(3718)] = 139340, - [SMALL_STATE(3719)] = 139373, - [SMALL_STATE(3720)] = 139406, - [SMALL_STATE(3721)] = 139439, - [SMALL_STATE(3722)] = 139472, - [SMALL_STATE(3723)] = 139505, - [SMALL_STATE(3724)] = 139538, - [SMALL_STATE(3725)] = 139571, - [SMALL_STATE(3726)] = 139604, - [SMALL_STATE(3727)] = 139637, - [SMALL_STATE(3728)] = 139670, - [SMALL_STATE(3729)] = 139703, - [SMALL_STATE(3730)] = 139736, - [SMALL_STATE(3731)] = 139769, - [SMALL_STATE(3732)] = 139802, - [SMALL_STATE(3733)] = 139835, - [SMALL_STATE(3734)] = 139868, - [SMALL_STATE(3735)] = 139901, - [SMALL_STATE(3736)] = 139934, - [SMALL_STATE(3737)] = 139967, - [SMALL_STATE(3738)] = 140000, - [SMALL_STATE(3739)] = 140033, - [SMALL_STATE(3740)] = 140066, - [SMALL_STATE(3741)] = 140099, - [SMALL_STATE(3742)] = 140132, - [SMALL_STATE(3743)] = 140165, - [SMALL_STATE(3744)] = 140198, - [SMALL_STATE(3745)] = 140252, - [SMALL_STATE(3746)] = 140290, - [SMALL_STATE(3747)] = 140344, - [SMALL_STATE(3748)] = 140398, - [SMALL_STATE(3749)] = 140452, - [SMALL_STATE(3750)] = 140506, - [SMALL_STATE(3751)] = 140537, - [SMALL_STATE(3752)] = 140568, - [SMALL_STATE(3753)] = 140599, - [SMALL_STATE(3754)] = 140630, - [SMALL_STATE(3755)] = 140661, - [SMALL_STATE(3756)] = 140692, - [SMALL_STATE(3757)] = 140723, - [SMALL_STATE(3758)] = 140754, - [SMALL_STATE(3759)] = 140785, - [SMALL_STATE(3760)] = 140820, - [SMALL_STATE(3761)] = 140863, - [SMALL_STATE(3762)] = 140894, - [SMALL_STATE(3763)] = 140927, - [SMALL_STATE(3764)] = 140958, - [SMALL_STATE(3765)] = 140989, - [SMALL_STATE(3766)] = 141032, - [SMALL_STATE(3767)] = 141063, - [SMALL_STATE(3768)] = 141094, - [SMALL_STATE(3769)] = 141125, - [SMALL_STATE(3770)] = 141160, - [SMALL_STATE(3771)] = 141191, - [SMALL_STATE(3772)] = 141222, - [SMALL_STATE(3773)] = 141253, - [SMALL_STATE(3774)] = 141286, - [SMALL_STATE(3775)] = 141317, - [SMALL_STATE(3776)] = 141348, - [SMALL_STATE(3777)] = 141379, - [SMALL_STATE(3778)] = 141422, - [SMALL_STATE(3779)] = 141452, - [SMALL_STATE(3780)] = 141484, - [SMALL_STATE(3781)] = 141516, - [SMALL_STATE(3782)] = 141548, - [SMALL_STATE(3783)] = 141578, - [SMALL_STATE(3784)] = 141609, - [SMALL_STATE(3785)] = 141638, - [SMALL_STATE(3786)] = 141667, - [SMALL_STATE(3787)] = 141696, - [SMALL_STATE(3788)] = 141725, - [SMALL_STATE(3789)] = 141752, - [SMALL_STATE(3790)] = 141791, - [SMALL_STATE(3791)] = 141820, - [SMALL_STATE(3792)] = 141849, - [SMALL_STATE(3793)] = 141884, - [SMALL_STATE(3794)] = 141923, - [SMALL_STATE(3795)] = 141962, - [SMALL_STATE(3796)] = 141999, - [SMALL_STATE(3797)] = 142028, - [SMALL_STATE(3798)] = 142055, - [SMALL_STATE(3799)] = 142084, - [SMALL_STATE(3800)] = 142111, - [SMALL_STATE(3801)] = 142146, - [SMALL_STATE(3802)] = 142183, - [SMALL_STATE(3803)] = 142220, - [SMALL_STATE(3804)] = 142249, - [SMALL_STATE(3805)] = 142278, - [SMALL_STATE(3806)] = 142307, - [SMALL_STATE(3807)] = 142346, - [SMALL_STATE(3808)] = 142375, - [SMALL_STATE(3809)] = 142404, - [SMALL_STATE(3810)] = 142431, - [SMALL_STATE(3811)] = 142460, - [SMALL_STATE(3812)] = 142495, - [SMALL_STATE(3813)] = 142530, - [SMALL_STATE(3814)] = 142569, - [SMALL_STATE(3815)] = 142608, - [SMALL_STATE(3816)] = 142635, - [SMALL_STATE(3817)] = 142674, - [SMALL_STATE(3818)] = 142703, - [SMALL_STATE(3819)] = 142742, - [SMALL_STATE(3820)] = 142769, - [SMALL_STATE(3821)] = 142806, - [SMALL_STATE(3822)] = 142833, - [SMALL_STATE(3823)] = 142862, - [SMALL_STATE(3824)] = 142901, - [SMALL_STATE(3825)] = 142928, - [SMALL_STATE(3826)] = 142957, - [SMALL_STATE(3827)] = 142986, - [SMALL_STATE(3828)] = 143025, - [SMALL_STATE(3829)] = 143062, - [SMALL_STATE(3830)] = 143101, - [SMALL_STATE(3831)] = 143130, - [SMALL_STATE(3832)] = 143159, - [SMALL_STATE(3833)] = 143196, - [SMALL_STATE(3834)] = 143225, - [SMALL_STATE(3835)] = 143254, - [SMALL_STATE(3836)] = 143283, - [SMALL_STATE(3837)] = 143312, - [SMALL_STATE(3838)] = 143341, - [SMALL_STATE(3839)] = 143372, - [SMALL_STATE(3840)] = 143401, - [SMALL_STATE(3841)] = 143430, - [SMALL_STATE(3842)] = 143469, - [SMALL_STATE(3843)] = 143498, - [SMALL_STATE(3844)] = 143537, - [SMALL_STATE(3845)] = 143566, - [SMALL_STATE(3846)] = 143595, - [SMALL_STATE(3847)] = 143624, - [SMALL_STATE(3848)] = 143653, - [SMALL_STATE(3849)] = 143682, - [SMALL_STATE(3850)] = 143711, - [SMALL_STATE(3851)] = 143740, - [SMALL_STATE(3852)] = 143769, - [SMALL_STATE(3853)] = 143798, - [SMALL_STATE(3854)] = 143827, - [SMALL_STATE(3855)] = 143856, - [SMALL_STATE(3856)] = 143895, - [SMALL_STATE(3857)] = 143924, - [SMALL_STATE(3858)] = 143953, - [SMALL_STATE(3859)] = 143984, - [SMALL_STATE(3860)] = 144023, - [SMALL_STATE(3861)] = 144050, - [SMALL_STATE(3862)] = 144081, - [SMALL_STATE(3863)] = 144112, - [SMALL_STATE(3864)] = 144145, - [SMALL_STATE(3865)] = 144180, - [SMALL_STATE(3866)] = 144215, - [SMALL_STATE(3867)] = 144244, - [SMALL_STATE(3868)] = 144273, - [SMALL_STATE(3869)] = 144302, - [SMALL_STATE(3870)] = 144331, - [SMALL_STATE(3871)] = 144360, - [SMALL_STATE(3872)] = 144389, - [SMALL_STATE(3873)] = 144418, - [SMALL_STATE(3874)] = 144447, - [SMALL_STATE(3875)] = 144476, - [SMALL_STATE(3876)] = 144505, - [SMALL_STATE(3877)] = 144540, - [SMALL_STATE(3878)] = 144569, - [SMALL_STATE(3879)] = 144598, - [SMALL_STATE(3880)] = 144627, - [SMALL_STATE(3881)] = 144656, - [SMALL_STATE(3882)] = 144685, - [SMALL_STATE(3883)] = 144714, - [SMALL_STATE(3884)] = 144753, - [SMALL_STATE(3885)] = 144782, - [SMALL_STATE(3886)] = 144811, - [SMALL_STATE(3887)] = 144840, - [SMALL_STATE(3888)] = 144867, - [SMALL_STATE(3889)] = 144906, - [SMALL_STATE(3890)] = 144935, - [SMALL_STATE(3891)] = 144964, - [SMALL_STATE(3892)] = 145003, - [SMALL_STATE(3893)] = 145032, - [SMALL_STATE(3894)] = 145061, - [SMALL_STATE(3895)] = 145090, - [SMALL_STATE(3896)] = 145138, - [SMALL_STATE(3897)] = 145182, - [SMALL_STATE(3898)] = 145230, - [SMALL_STATE(3899)] = 145278, - [SMALL_STATE(3900)] = 145326, - [SMALL_STATE(3901)] = 145360, - [SMALL_STATE(3902)] = 145394, - [SMALL_STATE(3903)] = 145428, - [SMALL_STATE(3904)] = 145472, - [SMALL_STATE(3905)] = 145520, - [SMALL_STATE(3906)] = 145568, - [SMALL_STATE(3907)] = 145616, - [SMALL_STATE(3908)] = 145664, - [SMALL_STATE(3909)] = 145696, - [SMALL_STATE(3910)] = 145744, - [SMALL_STATE(3911)] = 145792, - [SMALL_STATE(3912)] = 145840, - [SMALL_STATE(3913)] = 145888, - [SMALL_STATE(3914)] = 145936, - [SMALL_STATE(3915)] = 145970, - [SMALL_STATE(3916)] = 146018, - [SMALL_STATE(3917)] = 146066, - [SMALL_STATE(3918)] = 146110, - [SMALL_STATE(3919)] = 146158, - [SMALL_STATE(3920)] = 146192, - [SMALL_STATE(3921)] = 146240, - [SMALL_STATE(3922)] = 146288, - [SMALL_STATE(3923)] = 146336, - [SMALL_STATE(3924)] = 146370, - [SMALL_STATE(3925)] = 146418, - [SMALL_STATE(3926)] = 146466, - [SMALL_STATE(3927)] = 146514, - [SMALL_STATE(3928)] = 146558, - [SMALL_STATE(3929)] = 146606, - [SMALL_STATE(3930)] = 146654, - [SMALL_STATE(3931)] = 146702, - [SMALL_STATE(3932)] = 146750, - [SMALL_STATE(3933)] = 146798, - [SMALL_STATE(3934)] = 146842, - [SMALL_STATE(3935)] = 146890, - [SMALL_STATE(3936)] = 146919, - [SMALL_STATE(3937)] = 146944, - [SMALL_STATE(3938)] = 146969, - [SMALL_STATE(3939)] = 146994, - [SMALL_STATE(3940)] = 147019, - [SMALL_STATE(3941)] = 147044, - [SMALL_STATE(3942)] = 147069, - [SMALL_STATE(3943)] = 147094, - [SMALL_STATE(3944)] = 147127, - [SMALL_STATE(3945)] = 147152, - [SMALL_STATE(3946)] = 147193, - [SMALL_STATE(3947)] = 147220, - [SMALL_STATE(3948)] = 147261, - [SMALL_STATE(3949)] = 147286, - [SMALL_STATE(3950)] = 147317, - [SMALL_STATE(3951)] = 147342, - [SMALL_STATE(3952)] = 147371, - [SMALL_STATE(3953)] = 147396, - [SMALL_STATE(3954)] = 147427, - [SMALL_STATE(3955)] = 147452, - [SMALL_STATE(3956)] = 147477, - [SMALL_STATE(3957)] = 147504, - [SMALL_STATE(3958)] = 147529, - [SMALL_STATE(3959)] = 147554, - [SMALL_STATE(3960)] = 147595, - [SMALL_STATE(3961)] = 147620, - [SMALL_STATE(3962)] = 147645, - [SMALL_STATE(3963)] = 147670, - [SMALL_STATE(3964)] = 147697, - [SMALL_STATE(3965)] = 147722, - [SMALL_STATE(3966)] = 147747, - [SMALL_STATE(3967)] = 147772, - [SMALL_STATE(3968)] = 147797, - [SMALL_STATE(3969)] = 147824, - [SMALL_STATE(3970)] = 147865, - [SMALL_STATE(3971)] = 147890, - [SMALL_STATE(3972)] = 147915, - [SMALL_STATE(3973)] = 147958, - [SMALL_STATE(3974)] = 147983, - [SMALL_STATE(3975)] = 148008, - [SMALL_STATE(3976)] = 148033, - [SMALL_STATE(3977)] = 148058, - [SMALL_STATE(3978)] = 148099, - [SMALL_STATE(3979)] = 148124, - [SMALL_STATE(3980)] = 148151, - [SMALL_STATE(3981)] = 148178, - [SMALL_STATE(3982)] = 148219, - [SMALL_STATE(3983)] = 148246, - [SMALL_STATE(3984)] = 148287, - [SMALL_STATE(3985)] = 148314, - [SMALL_STATE(3986)] = 148339, - [SMALL_STATE(3987)] = 148366, - [SMALL_STATE(3988)] = 148393, - [SMALL_STATE(3989)] = 148418, - [SMALL_STATE(3990)] = 148445, - [SMALL_STATE(3991)] = 148470, - [SMALL_STATE(3992)] = 148497, - [SMALL_STATE(3993)] = 148524, - [SMALL_STATE(3994)] = 148565, - [SMALL_STATE(3995)] = 148590, - [SMALL_STATE(3996)] = 148617, - [SMALL_STATE(3997)] = 148658, - [SMALL_STATE(3998)] = 148685, - [SMALL_STATE(3999)] = 148712, - [SMALL_STATE(4000)] = 148739, - [SMALL_STATE(4001)] = 148780, - [SMALL_STATE(4002)] = 148805, - [SMALL_STATE(4003)] = 148838, - [SMALL_STATE(4004)] = 148880, - [SMALL_STATE(4005)] = 148922, - [SMALL_STATE(4006)] = 148960, - [SMALL_STATE(4007)] = 148994, - [SMALL_STATE(4008)] = 149030, - [SMALL_STATE(4009)] = 149056, - [SMALL_STATE(4010)] = 149098, - [SMALL_STATE(4011)] = 149136, - [SMALL_STATE(4012)] = 149164, - [SMALL_STATE(4013)] = 149206, - [SMALL_STATE(4014)] = 149244, - [SMALL_STATE(4015)] = 149286, - [SMALL_STATE(4016)] = 149328, - [SMALL_STATE(4017)] = 149356, - [SMALL_STATE(4018)] = 149400, - [SMALL_STATE(4019)] = 149442, - [SMALL_STATE(4020)] = 149470, - [SMALL_STATE(4021)] = 149504, - [SMALL_STATE(4022)] = 149542, - [SMALL_STATE(4023)] = 149580, - [SMALL_STATE(4024)] = 149614, - [SMALL_STATE(4025)] = 149658, - [SMALL_STATE(4026)] = 149700, - [SMALL_STATE(4027)] = 149742, - [SMALL_STATE(4028)] = 149780, - [SMALL_STATE(4029)] = 149818, - [SMALL_STATE(4030)] = 149860, - [SMALL_STATE(4031)] = 149902, - [SMALL_STATE(4032)] = 149940, - [SMALL_STATE(4033)] = 149982, - [SMALL_STATE(4034)] = 150012, - [SMALL_STATE(4035)] = 150054, - [SMALL_STATE(4036)] = 150096, - [SMALL_STATE(4037)] = 150134, - [SMALL_STATE(4038)] = 150176, - [SMALL_STATE(4039)] = 150218, - [SMALL_STATE(4040)] = 150262, - [SMALL_STATE(4041)] = 150304, - [SMALL_STATE(4042)] = 150348, - [SMALL_STATE(4043)] = 150382, - [SMALL_STATE(4044)] = 150424, - [SMALL_STATE(4045)] = 150466, - [SMALL_STATE(4046)] = 150508, - [SMALL_STATE(4047)] = 150544, - [SMALL_STATE(4048)] = 150586, - [SMALL_STATE(4049)] = 150620, - [SMALL_STATE(4050)] = 150664, - [SMALL_STATE(4051)] = 150702, - [SMALL_STATE(4052)] = 150744, - [SMALL_STATE(4053)] = 150770, - [SMALL_STATE(4054)] = 150812, - [SMALL_STATE(4055)] = 150839, - [SMALL_STATE(4056)] = 150864, - [SMALL_STATE(4057)] = 150887, - [SMALL_STATE(4058)] = 150912, - [SMALL_STATE(4059)] = 150937, - [SMALL_STATE(4060)] = 150966, - [SMALL_STATE(4061)] = 150995, - [SMALL_STATE(4062)] = 151020, - [SMALL_STATE(4063)] = 151043, - [SMALL_STATE(4064)] = 151068, - [SMALL_STATE(4065)] = 151093, - [SMALL_STATE(4066)] = 151122, - [SMALL_STATE(4067)] = 151147, - [SMALL_STATE(4068)] = 151172, - [SMALL_STATE(4069)] = 151197, - [SMALL_STATE(4070)] = 151222, - [SMALL_STATE(4071)] = 151245, - [SMALL_STATE(4072)] = 151272, - [SMALL_STATE(4073)] = 151297, - [SMALL_STATE(4074)] = 151322, - [SMALL_STATE(4075)] = 151347, - [SMALL_STATE(4076)] = 151372, - [SMALL_STATE(4077)] = 151397, - [SMALL_STATE(4078)] = 151422, - [SMALL_STATE(4079)] = 151465, - [SMALL_STATE(4080)] = 151490, - [SMALL_STATE(4081)] = 151519, - [SMALL_STATE(4082)] = 151544, - [SMALL_STATE(4083)] = 151569, - [SMALL_STATE(4084)] = 151594, - [SMALL_STATE(4085)] = 151619, - [SMALL_STATE(4086)] = 151644, - [SMALL_STATE(4087)] = 151675, - [SMALL_STATE(4088)] = 151702, - [SMALL_STATE(4089)] = 151727, - [SMALL_STATE(4090)] = 151752, - [SMALL_STATE(4091)] = 151775, - [SMALL_STATE(4092)] = 151800, - [SMALL_STATE(4093)] = 151825, - [SMALL_STATE(4094)] = 151850, - [SMALL_STATE(4095)] = 151875, - [SMALL_STATE(4096)] = 151904, - [SMALL_STATE(4097)] = 151933, - [SMALL_STATE(4098)] = 151958, - [SMALL_STATE(4099)] = 151981, - [SMALL_STATE(4100)] = 152010, - [SMALL_STATE(4101)] = 152037, - [SMALL_STATE(4102)] = 152062, - [SMALL_STATE(4103)] = 152085, - [SMALL_STATE(4104)] = 152110, - [SMALL_STATE(4105)] = 152139, - [SMALL_STATE(4106)] = 152166, - [SMALL_STATE(4107)] = 152191, - [SMALL_STATE(4108)] = 152214, - [SMALL_STATE(4109)] = 152241, - [SMALL_STATE(4110)] = 152266, - [SMALL_STATE(4111)] = 152291, - [SMALL_STATE(4112)] = 152314, - [SMALL_STATE(4113)] = 152339, - [SMALL_STATE(4114)] = 152366, - [SMALL_STATE(4115)] = 152391, - [SMALL_STATE(4116)] = 152416, - [SMALL_STATE(4117)] = 152441, - [SMALL_STATE(4118)] = 152464, - [SMALL_STATE(4119)] = 152504, - [SMALL_STATE(4120)] = 152530, - [SMALL_STATE(4121)] = 152570, - [SMALL_STATE(4122)] = 152598, - [SMALL_STATE(4123)] = 152622, - [SMALL_STATE(4124)] = 152662, - [SMALL_STATE(4125)] = 152684, - [SMALL_STATE(4126)] = 152712, - [SMALL_STATE(4127)] = 152740, - [SMALL_STATE(4128)] = 152764, - [SMALL_STATE(4129)] = 152804, - [SMALL_STATE(4130)] = 152844, - [SMALL_STATE(4131)] = 152884, - [SMALL_STATE(4132)] = 152908, - [SMALL_STATE(4133)] = 152948, - [SMALL_STATE(4134)] = 152974, - [SMALL_STATE(4135)] = 153014, - [SMALL_STATE(4136)] = 153054, - [SMALL_STATE(4137)] = 153094, - [SMALL_STATE(4138)] = 153132, - [SMALL_STATE(4139)] = 153172, - [SMALL_STATE(4140)] = 153212, - [SMALL_STATE(4141)] = 153252, - [SMALL_STATE(4142)] = 153286, - [SMALL_STATE(4143)] = 153326, - [SMALL_STATE(4144)] = 153366, - [SMALL_STATE(4145)] = 153388, - [SMALL_STATE(4146)] = 153422, - [SMALL_STATE(4147)] = 153460, - [SMALL_STATE(4148)] = 153500, - [SMALL_STATE(4149)] = 153540, - [SMALL_STATE(4150)] = 153580, - [SMALL_STATE(4151)] = 153606, - [SMALL_STATE(4152)] = 153646, - [SMALL_STATE(4153)] = 153667, - [SMALL_STATE(4154)] = 153704, - [SMALL_STATE(4155)] = 153741, - [SMALL_STATE(4156)] = 153762, - [SMALL_STATE(4157)] = 153799, - [SMALL_STATE(4158)] = 153836, - [SMALL_STATE(4159)] = 153873, - [SMALL_STATE(4160)] = 153910, - [SMALL_STATE(4161)] = 153947, - [SMALL_STATE(4162)] = 153980, - [SMALL_STATE(4163)] = 154013, - [SMALL_STATE(4164)] = 154046, - [SMALL_STATE(4165)] = 154079, - [SMALL_STATE(4166)] = 154112, - [SMALL_STATE(4167)] = 154145, - [SMALL_STATE(4168)] = 154178, - [SMALL_STATE(4169)] = 154211, - [SMALL_STATE(4170)] = 154244, - [SMALL_STATE(4171)] = 154271, - [SMALL_STATE(4172)] = 154308, - [SMALL_STATE(4173)] = 154339, - [SMALL_STATE(4174)] = 154372, - [SMALL_STATE(4175)] = 154393, - [SMALL_STATE(4176)] = 154424, - [SMALL_STATE(4177)] = 154457, - [SMALL_STATE(4178)] = 154494, - [SMALL_STATE(4179)] = 154525, - [SMALL_STATE(4180)] = 154546, - [SMALL_STATE(4181)] = 154567, - [SMALL_STATE(4182)] = 154598, - [SMALL_STATE(4183)] = 154635, - [SMALL_STATE(4184)] = 154666, - [SMALL_STATE(4185)] = 154703, - [SMALL_STATE(4186)] = 154734, - [SMALL_STATE(4187)] = 154771, - [SMALL_STATE(4188)] = 154804, - [SMALL_STATE(4189)] = 154835, - [SMALL_STATE(4190)] = 154856, - [SMALL_STATE(4191)] = 154889, - [SMALL_STATE(4192)] = 154910, - [SMALL_STATE(4193)] = 154947, - [SMALL_STATE(4194)] = 154968, - [SMALL_STATE(4195)] = 154989, - [SMALL_STATE(4196)] = 155022, - [SMALL_STATE(4197)] = 155055, - [SMALL_STATE(4198)] = 155076, - [SMALL_STATE(4199)] = 155097, - [SMALL_STATE(4200)] = 155130, - [SMALL_STATE(4201)] = 155165, - [SMALL_STATE(4202)] = 155198, - [SMALL_STATE(4203)] = 155219, - [SMALL_STATE(4204)] = 155246, - [SMALL_STATE(4205)] = 155283, - [SMALL_STATE(4206)] = 155316, - [SMALL_STATE(4207)] = 155349, - [SMALL_STATE(4208)] = 155370, - [SMALL_STATE(4209)] = 155391, - [SMALL_STATE(4210)] = 155428, - [SMALL_STATE(4211)] = 155449, - [SMALL_STATE(4212)] = 155486, - [SMALL_STATE(4213)] = 155507, - [SMALL_STATE(4214)] = 155528, - [SMALL_STATE(4215)] = 155551, - [SMALL_STATE(4216)] = 155572, - [SMALL_STATE(4217)] = 155593, - [SMALL_STATE(4218)] = 155614, - [SMALL_STATE(4219)] = 155641, - [SMALL_STATE(4220)] = 155666, - [SMALL_STATE(4221)] = 155689, - [SMALL_STATE(4222)] = 155712, - [SMALL_STATE(4223)] = 155733, - [SMALL_STATE(4224)] = 155754, - [SMALL_STATE(4225)] = 155775, - [SMALL_STATE(4226)] = 155796, - [SMALL_STATE(4227)] = 155821, - [SMALL_STATE(4228)] = 155854, - [SMALL_STATE(4229)] = 155891, - [SMALL_STATE(4230)] = 155924, - [SMALL_STATE(4231)] = 155961, - [SMALL_STATE(4232)] = 155994, - [SMALL_STATE(4233)] = 156031, - [SMALL_STATE(4234)] = 156062, - [SMALL_STATE(4235)] = 156095, - [SMALL_STATE(4236)] = 156128, - [SMALL_STATE(4237)] = 156165, - [SMALL_STATE(4238)] = 156202, - [SMALL_STATE(4239)] = 156233, - [SMALL_STATE(4240)] = 156270, - [SMALL_STATE(4241)] = 156307, - [SMALL_STATE(4242)] = 156344, - [SMALL_STATE(4243)] = 156381, - [SMALL_STATE(4244)] = 156418, - [SMALL_STATE(4245)] = 156455, - [SMALL_STATE(4246)] = 156492, - [SMALL_STATE(4247)] = 156521, - [SMALL_STATE(4248)] = 156558, - [SMALL_STATE(4249)] = 156591, - [SMALL_STATE(4250)] = 156628, - [SMALL_STATE(4251)] = 156661, - [SMALL_STATE(4252)] = 156694, - [SMALL_STATE(4253)] = 156715, - [SMALL_STATE(4254)] = 156736, - [SMALL_STATE(4255)] = 156757, - [SMALL_STATE(4256)] = 156792, - [SMALL_STATE(4257)] = 156821, - [SMALL_STATE(4258)] = 156858, - [SMALL_STATE(4259)] = 156879, - [SMALL_STATE(4260)] = 156900, - [SMALL_STATE(4261)] = 156937, - [SMALL_STATE(4262)] = 156970, - [SMALL_STATE(4263)] = 157007, - [SMALL_STATE(4264)] = 157040, - [SMALL_STATE(4265)] = 157071, - [SMALL_STATE(4266)] = 157092, - [SMALL_STATE(4267)] = 157129, - [SMALL_STATE(4268)] = 157150, - [SMALL_STATE(4269)] = 157171, - [SMALL_STATE(4270)] = 157204, - [SMALL_STATE(4271)] = 157225, - [SMALL_STATE(4272)] = 157256, - [SMALL_STATE(4273)] = 157277, - [SMALL_STATE(4274)] = 157310, - [SMALL_STATE(4275)] = 157347, - [SMALL_STATE(4276)] = 157384, - [SMALL_STATE(4277)] = 157421, - [SMALL_STATE(4278)] = 157456, - [SMALL_STATE(4279)] = 157489, - [SMALL_STATE(4280)] = 157522, - [SMALL_STATE(4281)] = 157559, - [SMALL_STATE(4282)] = 157582, - [SMALL_STATE(4283)] = 157605, - [SMALL_STATE(4284)] = 157626, - [SMALL_STATE(4285)] = 157663, - [SMALL_STATE(4286)] = 157684, - [SMALL_STATE(4287)] = 157705, - [SMALL_STATE(4288)] = 157726, - [SMALL_STATE(4289)] = 157749, - [SMALL_STATE(4290)] = 157784, - [SMALL_STATE(4291)] = 157821, - [SMALL_STATE(4292)] = 157844, - [SMALL_STATE(4293)] = 157865, - [SMALL_STATE(4294)] = 157898, - [SMALL_STATE(4295)] = 157919, - [SMALL_STATE(4296)] = 157940, - [SMALL_STATE(4297)] = 157977, - [SMALL_STATE(4298)] = 158010, - [SMALL_STATE(4299)] = 158031, - [SMALL_STATE(4300)] = 158052, - [SMALL_STATE(4301)] = 158073, - [SMALL_STATE(4302)] = 158094, - [SMALL_STATE(4303)] = 158115, - [SMALL_STATE(4304)] = 158148, - [SMALL_STATE(4305)] = 158171, - [SMALL_STATE(4306)] = 158202, - [SMALL_STATE(4307)] = 158239, - [SMALL_STATE(4308)] = 158276, - [SMALL_STATE(4309)] = 158297, - [SMALL_STATE(4310)] = 158318, - [SMALL_STATE(4311)] = 158355, - [SMALL_STATE(4312)] = 158376, - [SMALL_STATE(4313)] = 158407, - [SMALL_STATE(4314)] = 158428, - [SMALL_STATE(4315)] = 158451, - [SMALL_STATE(4316)] = 158472, - [SMALL_STATE(4317)] = 158499, - [SMALL_STATE(4318)] = 158524, - [SMALL_STATE(4319)] = 158545, - [SMALL_STATE(4320)] = 158572, - [SMALL_STATE(4321)] = 158593, - [SMALL_STATE(4322)] = 158630, - [SMALL_STATE(4323)] = 158651, - [SMALL_STATE(4324)] = 158674, - [SMALL_STATE(4325)] = 158695, - [SMALL_STATE(4326)] = 158732, - [SMALL_STATE(4327)] = 158759, - [SMALL_STATE(4328)] = 158796, - [SMALL_STATE(4329)] = 158817, - [SMALL_STATE(4330)] = 158850, - [SMALL_STATE(4331)] = 158881, - [SMALL_STATE(4332)] = 158914, - [SMALL_STATE(4333)] = 158951, - [SMALL_STATE(4334)] = 158988, - [SMALL_STATE(4335)] = 159025, - [SMALL_STATE(4336)] = 159046, - [SMALL_STATE(4337)] = 159083, - [SMALL_STATE(4338)] = 159110, - [SMALL_STATE(4339)] = 159147, - [SMALL_STATE(4340)] = 159184, - [SMALL_STATE(4341)] = 159205, - [SMALL_STATE(4342)] = 159228, - [SMALL_STATE(4343)] = 159259, - [SMALL_STATE(4344)] = 159280, - [SMALL_STATE(4345)] = 159313, - [SMALL_STATE(4346)] = 159334, - [SMALL_STATE(4347)] = 159355, - [SMALL_STATE(4348)] = 159392, - [SMALL_STATE(4349)] = 159420, - [SMALL_STATE(4350)] = 159452, - [SMALL_STATE(4351)] = 159486, - [SMALL_STATE(4352)] = 159520, - [SMALL_STATE(4353)] = 159548, - [SMALL_STATE(4354)] = 159576, - [SMALL_STATE(4355)] = 159604, - [SMALL_STATE(4356)] = 159632, - [SMALL_STATE(4357)] = 159652, - [SMALL_STATE(4358)] = 159672, - [SMALL_STATE(4359)] = 159698, - [SMALL_STATE(4360)] = 159724, - [SMALL_STATE(4361)] = 159750, - [SMALL_STATE(4362)] = 159778, - [SMALL_STATE(4363)] = 159810, - [SMALL_STATE(4364)] = 159836, - [SMALL_STATE(4365)] = 159868, - [SMALL_STATE(4366)] = 159900, - [SMALL_STATE(4367)] = 159934, - [SMALL_STATE(4368)] = 159956, - [SMALL_STATE(4369)] = 159978, - [SMALL_STATE(4370)] = 160000, - [SMALL_STATE(4371)] = 160028, - [SMALL_STATE(4372)] = 160056, - [SMALL_STATE(4373)] = 160090, - [SMALL_STATE(4374)] = 160124, - [SMALL_STATE(4375)] = 160158, - [SMALL_STATE(4376)] = 160184, - [SMALL_STATE(4377)] = 160218, - [SMALL_STATE(4378)] = 160250, - [SMALL_STATE(4379)] = 160282, - [SMALL_STATE(4380)] = 160314, - [SMALL_STATE(4381)] = 160342, - [SMALL_STATE(4382)] = 160368, - [SMALL_STATE(4383)] = 160394, - [SMALL_STATE(4384)] = 160424, - [SMALL_STATE(4385)] = 160458, - [SMALL_STATE(4386)] = 160485, - [SMALL_STATE(4387)] = 160504, - [SMALL_STATE(4388)] = 160523, - [SMALL_STATE(4389)] = 160552, - [SMALL_STATE(4390)] = 160575, - [SMALL_STATE(4391)] = 160594, - [SMALL_STATE(4392)] = 160625, - [SMALL_STATE(4393)] = 160654, - [SMALL_STATE(4394)] = 160685, - [SMALL_STATE(4395)] = 160704, - [SMALL_STATE(4396)] = 160735, - [SMALL_STATE(4397)] = 160766, - [SMALL_STATE(4398)] = 160785, - [SMALL_STATE(4399)] = 160816, - [SMALL_STATE(4400)] = 160843, - [SMALL_STATE(4401)] = 160870, - [SMALL_STATE(4402)] = 160897, - [SMALL_STATE(4403)] = 160924, - [SMALL_STATE(4404)] = 160943, - [SMALL_STATE(4405)] = 160974, - [SMALL_STATE(4406)] = 161005, - [SMALL_STATE(4407)] = 161026, - [SMALL_STATE(4408)] = 161053, - [SMALL_STATE(4409)] = 161076, - [SMALL_STATE(4410)] = 161103, - [SMALL_STATE(4411)] = 161134, - [SMALL_STATE(4412)] = 161165, - [SMALL_STATE(4413)] = 161192, - [SMALL_STATE(4414)] = 161211, - [SMALL_STATE(4415)] = 161242, - [SMALL_STATE(4416)] = 161265, - [SMALL_STATE(4417)] = 161296, - [SMALL_STATE(4418)] = 161325, - [SMALL_STATE(4419)] = 161356, - [SMALL_STATE(4420)] = 161383, - [SMALL_STATE(4421)] = 161412, - [SMALL_STATE(4422)] = 161443, - [SMALL_STATE(4423)] = 161470, - [SMALL_STATE(4424)] = 161501, - [SMALL_STATE(4425)] = 161530, - [SMALL_STATE(4426)] = 161557, - [SMALL_STATE(4427)] = 161584, - [SMALL_STATE(4428)] = 161611, - [SMALL_STATE(4429)] = 161638, - [SMALL_STATE(4430)] = 161665, - [SMALL_STATE(4431)] = 161692, - [SMALL_STATE(4432)] = 161719, - [SMALL_STATE(4433)] = 161750, - [SMALL_STATE(4434)] = 161781, - [SMALL_STATE(4435)] = 161808, - [SMALL_STATE(4436)] = 161837, - [SMALL_STATE(4437)] = 161868, - [SMALL_STATE(4438)] = 161889, - [SMALL_STATE(4439)] = 161912, - [SMALL_STATE(4440)] = 161939, - [SMALL_STATE(4441)] = 161970, - [SMALL_STATE(4442)] = 162001, - [SMALL_STATE(4443)] = 162030, - [SMALL_STATE(4444)] = 162049, - [SMALL_STATE(4445)] = 162080, - [SMALL_STATE(4446)] = 162107, - [SMALL_STATE(4447)] = 162134, - [SMALL_STATE(4448)] = 162161, - [SMALL_STATE(4449)] = 162192, - [SMALL_STATE(4450)] = 162223, - [SMALL_STATE(4451)] = 162250, - [SMALL_STATE(4452)] = 162277, - [SMALL_STATE(4453)] = 162300, - [SMALL_STATE(4454)] = 162331, - [SMALL_STATE(4455)] = 162362, - [SMALL_STATE(4456)] = 162385, - [SMALL_STATE(4457)] = 162408, - [SMALL_STATE(4458)] = 162431, - [SMALL_STATE(4459)] = 162462, - [SMALL_STATE(4460)] = 162481, - [SMALL_STATE(4461)] = 162502, - [SMALL_STATE(4462)] = 162531, - [SMALL_STATE(4463)] = 162562, - [SMALL_STATE(4464)] = 162593, - [SMALL_STATE(4465)] = 162620, - [SMALL_STATE(4466)] = 162643, - [SMALL_STATE(4467)] = 162674, - [SMALL_STATE(4468)] = 162701, - [SMALL_STATE(4469)] = 162722, - [SMALL_STATE(4470)] = 162753, - [SMALL_STATE(4471)] = 162772, - [SMALL_STATE(4472)] = 162799, - [SMALL_STATE(4473)] = 162826, - [SMALL_STATE(4474)] = 162853, - [SMALL_STATE(4475)] = 162872, - [SMALL_STATE(4476)] = 162899, - [SMALL_STATE(4477)] = 162926, - [SMALL_STATE(4478)] = 162949, - [SMALL_STATE(4479)] = 162972, - [SMALL_STATE(4480)] = 162993, - [SMALL_STATE(4481)] = 163016, - [SMALL_STATE(4482)] = 163043, - [SMALL_STATE(4483)] = 163070, - [SMALL_STATE(4484)] = 163097, - [SMALL_STATE(4485)] = 163120, - [SMALL_STATE(4486)] = 163147, - [SMALL_STATE(4487)] = 163174, - [SMALL_STATE(4488)] = 163205, - [SMALL_STATE(4489)] = 163224, - [SMALL_STATE(4490)] = 163251, - [SMALL_STATE(4491)] = 163278, - [SMALL_STATE(4492)] = 163305, - [SMALL_STATE(4493)] = 163332, - [SMALL_STATE(4494)] = 163359, - [SMALL_STATE(4495)] = 163386, - [SMALL_STATE(4496)] = 163413, - [SMALL_STATE(4497)] = 163444, - [SMALL_STATE(4498)] = 163471, - [SMALL_STATE(4499)] = 163498, - [SMALL_STATE(4500)] = 163525, - [SMALL_STATE(4501)] = 163552, - [SMALL_STATE(4502)] = 163579, - [SMALL_STATE(4503)] = 163610, - [SMALL_STATE(4504)] = 163637, - [SMALL_STATE(4505)] = 163664, - [SMALL_STATE(4506)] = 163691, - [SMALL_STATE(4507)] = 163718, - [SMALL_STATE(4508)] = 163749, - [SMALL_STATE(4509)] = 163780, - [SMALL_STATE(4510)] = 163807, - [SMALL_STATE(4511)] = 163836, - [SMALL_STATE(4512)] = 163865, - [SMALL_STATE(4513)] = 163896, - [SMALL_STATE(4514)] = 163923, - [SMALL_STATE(4515)] = 163954, - [SMALL_STATE(4516)] = 163981, - [SMALL_STATE(4517)] = 164008, - [SMALL_STATE(4518)] = 164035, - [SMALL_STATE(4519)] = 164062, - [SMALL_STATE(4520)] = 164091, - [SMALL_STATE(4521)] = 164110, - [SMALL_STATE(4522)] = 164129, - [SMALL_STATE(4523)] = 164148, - [SMALL_STATE(4524)] = 164179, - [SMALL_STATE(4525)] = 164206, - [SMALL_STATE(4526)] = 164233, - [SMALL_STATE(4527)] = 164260, - [SMALL_STATE(4528)] = 164279, - [SMALL_STATE(4529)] = 164310, - [SMALL_STATE(4530)] = 164337, - [SMALL_STATE(4531)] = 164368, - [SMALL_STATE(4532)] = 164399, - [SMALL_STATE(4533)] = 164430, - [SMALL_STATE(4534)] = 164457, - [SMALL_STATE(4535)] = 164484, - [SMALL_STATE(4536)] = 164511, - [SMALL_STATE(4537)] = 164530, - [SMALL_STATE(4538)] = 164549, - [SMALL_STATE(4539)] = 164568, - [SMALL_STATE(4540)] = 164599, - [SMALL_STATE(4541)] = 164630, - [SMALL_STATE(4542)] = 164657, - [SMALL_STATE(4543)] = 164684, - [SMALL_STATE(4544)] = 164703, - [SMALL_STATE(4545)] = 164730, - [SMALL_STATE(4546)] = 164759, - [SMALL_STATE(4547)] = 164786, - [SMALL_STATE(4548)] = 164817, - [SMALL_STATE(4549)] = 164844, - [SMALL_STATE(4550)] = 164863, - [SMALL_STATE(4551)] = 164882, - [SMALL_STATE(4552)] = 164913, - [SMALL_STATE(4553)] = 164944, - [SMALL_STATE(4554)] = 164963, - [SMALL_STATE(4555)] = 164994, - [SMALL_STATE(4556)] = 165017, - [SMALL_STATE(4557)] = 165040, - [SMALL_STATE(4558)] = 165059, - [SMALL_STATE(4559)] = 165082, - [SMALL_STATE(4560)] = 165113, - [SMALL_STATE(4561)] = 165140, - [SMALL_STATE(4562)] = 165171, - [SMALL_STATE(4563)] = 165202, - [SMALL_STATE(4564)] = 165233, - [SMALL_STATE(4565)] = 165264, - [SMALL_STATE(4566)] = 165291, - [SMALL_STATE(4567)] = 165322, - [SMALL_STATE(4568)] = 165345, - [SMALL_STATE(4569)] = 165368, - [SMALL_STATE(4570)] = 165395, - [SMALL_STATE(4571)] = 165422, - [SMALL_STATE(4572)] = 165453, - [SMALL_STATE(4573)] = 165480, - [SMALL_STATE(4574)] = 165511, - [SMALL_STATE(4575)] = 165542, - [SMALL_STATE(4576)] = 165569, - [SMALL_STATE(4577)] = 165600, - [SMALL_STATE(4578)] = 165629, - [SMALL_STATE(4579)] = 165660, - [SMALL_STATE(4580)] = 165691, - [SMALL_STATE(4581)] = 165714, - [SMALL_STATE(4582)] = 165733, - [SMALL_STATE(4583)] = 165756, - [SMALL_STATE(4584)] = 165787, - [SMALL_STATE(4585)] = 165810, - [SMALL_STATE(4586)] = 165837, - [SMALL_STATE(4587)] = 165860, - [SMALL_STATE(4588)] = 165891, - [SMALL_STATE(4589)] = 165910, - [SMALL_STATE(4590)] = 165937, - [SMALL_STATE(4591)] = 165964, - [SMALL_STATE(4592)] = 165991, - [SMALL_STATE(4593)] = 166014, - [SMALL_STATE(4594)] = 166037, - [SMALL_STATE(4595)] = 166060, - [SMALL_STATE(4596)] = 166083, - [SMALL_STATE(4597)] = 166114, - [SMALL_STATE(4598)] = 166145, - [SMALL_STATE(4599)] = 166176, - [SMALL_STATE(4600)] = 166207, - [SMALL_STATE(4601)] = 166230, - [SMALL_STATE(4602)] = 166253, - [SMALL_STATE(4603)] = 166280, - [SMALL_STATE(4604)] = 166311, - [SMALL_STATE(4605)] = 166338, - [SMALL_STATE(4606)] = 166369, - [SMALL_STATE(4607)] = 166392, - [SMALL_STATE(4608)] = 166419, - [SMALL_STATE(4609)] = 166450, - [SMALL_STATE(4610)] = 166481, - [SMALL_STATE(4611)] = 166512, - [SMALL_STATE(4612)] = 166539, - [SMALL_STATE(4613)] = 166570, - [SMALL_STATE(4614)] = 166597, - [SMALL_STATE(4615)] = 166624, - [SMALL_STATE(4616)] = 166653, - [SMALL_STATE(4617)] = 166680, - [SMALL_STATE(4618)] = 166707, - [SMALL_STATE(4619)] = 166734, - [SMALL_STATE(4620)] = 166761, - [SMALL_STATE(4621)] = 166786, - [SMALL_STATE(4622)] = 166817, - [SMALL_STATE(4623)] = 166844, - [SMALL_STATE(4624)] = 166875, - [SMALL_STATE(4625)] = 166906, - [SMALL_STATE(4626)] = 166933, - [SMALL_STATE(4627)] = 166964, - [SMALL_STATE(4628)] = 166991, - [SMALL_STATE(4629)] = 167018, - [SMALL_STATE(4630)] = 167037, - [SMALL_STATE(4631)] = 167058, - [SMALL_STATE(4632)] = 167079, - [SMALL_STATE(4633)] = 167110, - [SMALL_STATE(4634)] = 167137, - [SMALL_STATE(4635)] = 167166, - [SMALL_STATE(4636)] = 167193, - [SMALL_STATE(4637)] = 167224, - [SMALL_STATE(4638)] = 167251, - [SMALL_STATE(4639)] = 167282, - [SMALL_STATE(4640)] = 167311, - [SMALL_STATE(4641)] = 167342, - [SMALL_STATE(4642)] = 167371, - [SMALL_STATE(4643)] = 167402, - [SMALL_STATE(4644)] = 167429, - [SMALL_STATE(4645)] = 167456, - [SMALL_STATE(4646)] = 167483, - [SMALL_STATE(4647)] = 167510, - [SMALL_STATE(4648)] = 167541, - [SMALL_STATE(4649)] = 167568, - [SMALL_STATE(4650)] = 167595, - [SMALL_STATE(4651)] = 167626, - [SMALL_STATE(4652)] = 167657, - [SMALL_STATE(4653)] = 167686, - [SMALL_STATE(4654)] = 167705, - [SMALL_STATE(4655)] = 167724, - [SMALL_STATE(4656)] = 167746, - [SMALL_STATE(4657)] = 167768, - [SMALL_STATE(4658)] = 167792, - [SMALL_STATE(4659)] = 167814, - [SMALL_STATE(4660)] = 167840, - [SMALL_STATE(4661)] = 167868, - [SMALL_STATE(4662)] = 167890, - [SMALL_STATE(4663)] = 167918, - [SMALL_STATE(4664)] = 167946, - [SMALL_STATE(4665)] = 167972, - [SMALL_STATE(4666)] = 167998, - [SMALL_STATE(4667)] = 168024, - [SMALL_STATE(4668)] = 168046, - [SMALL_STATE(4669)] = 168068, - [SMALL_STATE(4670)] = 168096, - [SMALL_STATE(4671)] = 168124, - [SMALL_STATE(4672)] = 168152, - [SMALL_STATE(4673)] = 168174, - [SMALL_STATE(4674)] = 168202, - [SMALL_STATE(4675)] = 168230, - [SMALL_STATE(4676)] = 168252, - [SMALL_STATE(4677)] = 168280, - [SMALL_STATE(4678)] = 168302, - [SMALL_STATE(4679)] = 168324, - [SMALL_STATE(4680)] = 168352, - [SMALL_STATE(4681)] = 168372, - [SMALL_STATE(4682)] = 168394, - [SMALL_STATE(4683)] = 168416, - [SMALL_STATE(4684)] = 168442, - [SMALL_STATE(4685)] = 168468, - [SMALL_STATE(4686)] = 168490, - [SMALL_STATE(4687)] = 168518, - [SMALL_STATE(4688)] = 168546, - [SMALL_STATE(4689)] = 168568, - [SMALL_STATE(4690)] = 168596, - [SMALL_STATE(4691)] = 168614, - [SMALL_STATE(4692)] = 168642, - [SMALL_STATE(4693)] = 168664, - [SMALL_STATE(4694)] = 168692, - [SMALL_STATE(4695)] = 168720, - [SMALL_STATE(4696)] = 168748, - [SMALL_STATE(4697)] = 168776, - [SMALL_STATE(4698)] = 168804, - [SMALL_STATE(4699)] = 168832, - [SMALL_STATE(4700)] = 168854, - [SMALL_STATE(4701)] = 168876, - [SMALL_STATE(4702)] = 168904, - [SMALL_STATE(4703)] = 168932, - [SMALL_STATE(4704)] = 168960, - [SMALL_STATE(4705)] = 168982, - [SMALL_STATE(4706)] = 169004, - [SMALL_STATE(4707)] = 169026, - [SMALL_STATE(4708)] = 169050, - [SMALL_STATE(4709)] = 169072, - [SMALL_STATE(4710)] = 169094, - [SMALL_STATE(4711)] = 169116, - [SMALL_STATE(4712)] = 169144, - [SMALL_STATE(4713)] = 169166, - [SMALL_STATE(4714)] = 169194, - [SMALL_STATE(4715)] = 169216, - [SMALL_STATE(4716)] = 169238, - [SMALL_STATE(4717)] = 169260, - [SMALL_STATE(4718)] = 169278, - [SMALL_STATE(4719)] = 169300, - [SMALL_STATE(4720)] = 169322, - [SMALL_STATE(4721)] = 169340, - [SMALL_STATE(4722)] = 169368, - [SMALL_STATE(4723)] = 169396, - [SMALL_STATE(4724)] = 169424, - [SMALL_STATE(4725)] = 169452, - [SMALL_STATE(4726)] = 169474, - [SMALL_STATE(4727)] = 169500, - [SMALL_STATE(4728)] = 169522, - [SMALL_STATE(4729)] = 169544, - [SMALL_STATE(4730)] = 169566, - [SMALL_STATE(4731)] = 169594, - [SMALL_STATE(4732)] = 169622, - [SMALL_STATE(4733)] = 169650, - [SMALL_STATE(4734)] = 169678, - [SMALL_STATE(4735)] = 169704, - [SMALL_STATE(4736)] = 169730, - [SMALL_STATE(4737)] = 169758, - [SMALL_STATE(4738)] = 169786, - [SMALL_STATE(4739)] = 169814, - [SMALL_STATE(4740)] = 169836, - [SMALL_STATE(4741)] = 169864, - [SMALL_STATE(4742)] = 169892, - [SMALL_STATE(4743)] = 169918, - [SMALL_STATE(4744)] = 169940, - [SMALL_STATE(4745)] = 169962, - [SMALL_STATE(4746)] = 169984, - [SMALL_STATE(4747)] = 170012, - [SMALL_STATE(4748)] = 170040, - [SMALL_STATE(4749)] = 170066, - [SMALL_STATE(4750)] = 170084, - [SMALL_STATE(4751)] = 170106, - [SMALL_STATE(4752)] = 170128, - [SMALL_STATE(4753)] = 170150, - [SMALL_STATE(4754)] = 170168, - [SMALL_STATE(4755)] = 170194, - [SMALL_STATE(4756)] = 170216, - [SMALL_STATE(4757)] = 170238, - [SMALL_STATE(4758)] = 170264, - [SMALL_STATE(4759)] = 170284, - [SMALL_STATE(4760)] = 170312, - [SMALL_STATE(4761)] = 170334, - [SMALL_STATE(4762)] = 170356, - [SMALL_STATE(4763)] = 170384, - [SMALL_STATE(4764)] = 170406, - [SMALL_STATE(4765)] = 170434, - [SMALL_STATE(4766)] = 170460, - [SMALL_STATE(4767)] = 170482, - [SMALL_STATE(4768)] = 170504, - [SMALL_STATE(4769)] = 170532, - [SMALL_STATE(4770)] = 170558, - [SMALL_STATE(4771)] = 170586, - [SMALL_STATE(4772)] = 170608, - [SMALL_STATE(4773)] = 170634, - [SMALL_STATE(4774)] = 170662, - [SMALL_STATE(4775)] = 170688, - [SMALL_STATE(4776)] = 170706, - [SMALL_STATE(4777)] = 170730, - [SMALL_STATE(4778)] = 170758, - [SMALL_STATE(4779)] = 170784, - [SMALL_STATE(4780)] = 170810, - [SMALL_STATE(4781)] = 170838, - [SMALL_STATE(4782)] = 170860, - [SMALL_STATE(4783)] = 170888, - [SMALL_STATE(4784)] = 170908, - [SMALL_STATE(4785)] = 170936, - [SMALL_STATE(4786)] = 170964, - [SMALL_STATE(4787)] = 170992, - [SMALL_STATE(4788)] = 171020, - [SMALL_STATE(4789)] = 171038, - [SMALL_STATE(4790)] = 171066, - [SMALL_STATE(4791)] = 171094, - [SMALL_STATE(4792)] = 171122, - [SMALL_STATE(4793)] = 171144, - [SMALL_STATE(4794)] = 171172, - [SMALL_STATE(4795)] = 171200, - [SMALL_STATE(4796)] = 171222, - [SMALL_STATE(4797)] = 171248, - [SMALL_STATE(4798)] = 171276, - [SMALL_STATE(4799)] = 171302, - [SMALL_STATE(4800)] = 171330, - [SMALL_STATE(4801)] = 171356, - [SMALL_STATE(4802)] = 171384, - [SMALL_STATE(4803)] = 171406, - [SMALL_STATE(4804)] = 171434, - [SMALL_STATE(4805)] = 171462, - [SMALL_STATE(4806)] = 171484, - [SMALL_STATE(4807)] = 171502, - [SMALL_STATE(4808)] = 171530, - [SMALL_STATE(4809)] = 171558, - [SMALL_STATE(4810)] = 171586, - [SMALL_STATE(4811)] = 171608, - [SMALL_STATE(4812)] = 171636, - [SMALL_STATE(4813)] = 171656, - [SMALL_STATE(4814)] = 171684, - [SMALL_STATE(4815)] = 171706, - [SMALL_STATE(4816)] = 171734, - [SMALL_STATE(4817)] = 171756, - [SMALL_STATE(4818)] = 171778, - [SMALL_STATE(4819)] = 171804, - [SMALL_STATE(4820)] = 171822, - [SMALL_STATE(4821)] = 171850, - [SMALL_STATE(4822)] = 171878, - [SMALL_STATE(4823)] = 171906, - [SMALL_STATE(4824)] = 171924, - [SMALL_STATE(4825)] = 171952, - [SMALL_STATE(4826)] = 171974, - [SMALL_STATE(4827)] = 172002, - [SMALL_STATE(4828)] = 172024, - [SMALL_STATE(4829)] = 172052, - [SMALL_STATE(4830)] = 172080, - [SMALL_STATE(4831)] = 172108, - [SMALL_STATE(4832)] = 172128, - [SMALL_STATE(4833)] = 172156, - [SMALL_STATE(4834)] = 172178, - [SMALL_STATE(4835)] = 172196, - [SMALL_STATE(4836)] = 172222, - [SMALL_STATE(4837)] = 172250, - [SMALL_STATE(4838)] = 172268, - [SMALL_STATE(4839)] = 172288, - [SMALL_STATE(4840)] = 172314, - [SMALL_STATE(4841)] = 172334, - [SMALL_STATE(4842)] = 172354, - [SMALL_STATE(4843)] = 172382, - [SMALL_STATE(4844)] = 172402, - [SMALL_STATE(4845)] = 172430, - [SMALL_STATE(4846)] = 172458, - [SMALL_STATE(4847)] = 172480, - [SMALL_STATE(4848)] = 172498, - [SMALL_STATE(4849)] = 172519, - [SMALL_STATE(4850)] = 172544, - [SMALL_STATE(4851)] = 172561, - [SMALL_STATE(4852)] = 172578, - [SMALL_STATE(4853)] = 172603, - [SMALL_STATE(4854)] = 172628, - [SMALL_STATE(4855)] = 172647, - [SMALL_STATE(4856)] = 172668, - [SMALL_STATE(4857)] = 172689, - [SMALL_STATE(4858)] = 172712, - [SMALL_STATE(4859)] = 172737, - [SMALL_STATE(4860)] = 172760, - [SMALL_STATE(4861)] = 172781, - [SMALL_STATE(4862)] = 172798, - [SMALL_STATE(4863)] = 172823, - [SMALL_STATE(4864)] = 172840, - [SMALL_STATE(4865)] = 172857, - [SMALL_STATE(4866)] = 172878, - [SMALL_STATE(4867)] = 172899, - [SMALL_STATE(4868)] = 172924, - [SMALL_STATE(4869)] = 172941, - [SMALL_STATE(4870)] = 172958, - [SMALL_STATE(4871)] = 172975, - [SMALL_STATE(4872)] = 172992, - [SMALL_STATE(4873)] = 173017, - [SMALL_STATE(4874)] = 173034, - [SMALL_STATE(4875)] = 173051, - [SMALL_STATE(4876)] = 173074, - [SMALL_STATE(4877)] = 173091, - [SMALL_STATE(4878)] = 173108, - [SMALL_STATE(4879)] = 173129, - [SMALL_STATE(4880)] = 173150, - [SMALL_STATE(4881)] = 173173, - [SMALL_STATE(4882)] = 173190, - [SMALL_STATE(4883)] = 173207, - [SMALL_STATE(4884)] = 173224, - [SMALL_STATE(4885)] = 173241, - [SMALL_STATE(4886)] = 173262, - [SMALL_STATE(4887)] = 173279, - [SMALL_STATE(4888)] = 173300, - [SMALL_STATE(4889)] = 173317, - [SMALL_STATE(4890)] = 173342, - [SMALL_STATE(4891)] = 173361, - [SMALL_STATE(4892)] = 173378, - [SMALL_STATE(4893)] = 173399, - [SMALL_STATE(4894)] = 173420, - [SMALL_STATE(4895)] = 173437, - [SMALL_STATE(4896)] = 173454, - [SMALL_STATE(4897)] = 173475, - [SMALL_STATE(4898)] = 173496, - [SMALL_STATE(4899)] = 173513, - [SMALL_STATE(4900)] = 173530, - [SMALL_STATE(4901)] = 173547, - [SMALL_STATE(4902)] = 173564, - [SMALL_STATE(4903)] = 173589, - [SMALL_STATE(4904)] = 173606, - [SMALL_STATE(4905)] = 173627, - [SMALL_STATE(4906)] = 173644, - [SMALL_STATE(4907)] = 173661, - [SMALL_STATE(4908)] = 173678, - [SMALL_STATE(4909)] = 173695, - [SMALL_STATE(4910)] = 173712, - [SMALL_STATE(4911)] = 173729, - [SMALL_STATE(4912)] = 173750, - [SMALL_STATE(4913)] = 173771, - [SMALL_STATE(4914)] = 173788, - [SMALL_STATE(4915)] = 173813, - [SMALL_STATE(4916)] = 173838, - [SMALL_STATE(4917)] = 173859, - [SMALL_STATE(4918)] = 173876, - [SMALL_STATE(4919)] = 173893, - [SMALL_STATE(4920)] = 173910, - [SMALL_STATE(4921)] = 173927, - [SMALL_STATE(4922)] = 173948, - [SMALL_STATE(4923)] = 173965, - [SMALL_STATE(4924)] = 173982, - [SMALL_STATE(4925)] = 173999, - [SMALL_STATE(4926)] = 174016, - [SMALL_STATE(4927)] = 174033, - [SMALL_STATE(4928)] = 174050, - [SMALL_STATE(4929)] = 174067, - [SMALL_STATE(4930)] = 174084, - [SMALL_STATE(4931)] = 174101, - [SMALL_STATE(4932)] = 174118, - [SMALL_STATE(4933)] = 174135, - [SMALL_STATE(4934)] = 174152, - [SMALL_STATE(4935)] = 174169, - [SMALL_STATE(4936)] = 174186, - [SMALL_STATE(4937)] = 174203, - [SMALL_STATE(4938)] = 174224, - [SMALL_STATE(4939)] = 174245, - [SMALL_STATE(4940)] = 174262, - [SMALL_STATE(4941)] = 174283, - [SMALL_STATE(4942)] = 174304, - [SMALL_STATE(4943)] = 174321, - [SMALL_STATE(4944)] = 174338, - [SMALL_STATE(4945)] = 174355, - [SMALL_STATE(4946)] = 174372, - [SMALL_STATE(4947)] = 174389, - [SMALL_STATE(4948)] = 174410, - [SMALL_STATE(4949)] = 174431, - [SMALL_STATE(4950)] = 174448, - [SMALL_STATE(4951)] = 174465, - [SMALL_STATE(4952)] = 174486, - [SMALL_STATE(4953)] = 174507, - [SMALL_STATE(4954)] = 174524, - [SMALL_STATE(4955)] = 174549, - [SMALL_STATE(4956)] = 174574, - [SMALL_STATE(4957)] = 174591, - [SMALL_STATE(4958)] = 174616, - [SMALL_STATE(4959)] = 174637, - [SMALL_STATE(4960)] = 174654, - [SMALL_STATE(4961)] = 174671, - [SMALL_STATE(4962)] = 174696, - [SMALL_STATE(4963)] = 174717, - [SMALL_STATE(4964)] = 174734, - [SMALL_STATE(4965)] = 174759, - [SMALL_STATE(4966)] = 174776, - [SMALL_STATE(4967)] = 174797, - [SMALL_STATE(4968)] = 174814, - [SMALL_STATE(4969)] = 174831, - [SMALL_STATE(4970)] = 174854, - [SMALL_STATE(4971)] = 174875, - [SMALL_STATE(4972)] = 174900, - [SMALL_STATE(4973)] = 174919, - [SMALL_STATE(4974)] = 174944, - [SMALL_STATE(4975)] = 174965, - [SMALL_STATE(4976)] = 174986, - [SMALL_STATE(4977)] = 175003, - [SMALL_STATE(4978)] = 175020, - [SMALL_STATE(4979)] = 175045, - [SMALL_STATE(4980)] = 175062, - [SMALL_STATE(4981)] = 175083, - [SMALL_STATE(4982)] = 175108, - [SMALL_STATE(4983)] = 175129, - [SMALL_STATE(4984)] = 175154, - [SMALL_STATE(4985)] = 175175, - [SMALL_STATE(4986)] = 175192, - [SMALL_STATE(4987)] = 175209, - [SMALL_STATE(4988)] = 175226, - [SMALL_STATE(4989)] = 175243, - [SMALL_STATE(4990)] = 175260, - [SMALL_STATE(4991)] = 175277, - [SMALL_STATE(4992)] = 175294, - [SMALL_STATE(4993)] = 175311, - [SMALL_STATE(4994)] = 175332, - [SMALL_STATE(4995)] = 175353, - [SMALL_STATE(4996)] = 175370, - [SMALL_STATE(4997)] = 175387, - [SMALL_STATE(4998)] = 175408, - [SMALL_STATE(4999)] = 175427, - [SMALL_STATE(5000)] = 175452, - [SMALL_STATE(5001)] = 175477, - [SMALL_STATE(5002)] = 175494, - [SMALL_STATE(5003)] = 175515, - [SMALL_STATE(5004)] = 175536, - [SMALL_STATE(5005)] = 175557, - [SMALL_STATE(5006)] = 175582, - [SMALL_STATE(5007)] = 175603, - [SMALL_STATE(5008)] = 175624, - [SMALL_STATE(5009)] = 175649, - [SMALL_STATE(5010)] = 175674, - [SMALL_STATE(5011)] = 175699, - [SMALL_STATE(5012)] = 175716, - [SMALL_STATE(5013)] = 175737, - [SMALL_STATE(5014)] = 175758, - [SMALL_STATE(5015)] = 175775, - [SMALL_STATE(5016)] = 175800, - [SMALL_STATE(5017)] = 175825, - [SMALL_STATE(5018)] = 175846, - [SMALL_STATE(5019)] = 175871, - [SMALL_STATE(5020)] = 175892, - [SMALL_STATE(5021)] = 175913, - [SMALL_STATE(5022)] = 175934, - [SMALL_STATE(5023)] = 175951, - [SMALL_STATE(5024)] = 175976, - [SMALL_STATE(5025)] = 176001, - [SMALL_STATE(5026)] = 176026, - [SMALL_STATE(5027)] = 176049, - [SMALL_STATE(5028)] = 176070, - [SMALL_STATE(5029)] = 176095, - [SMALL_STATE(5030)] = 176120, - [SMALL_STATE(5031)] = 176141, - [SMALL_STATE(5032)] = 176166, - [SMALL_STATE(5033)] = 176191, - [SMALL_STATE(5034)] = 176216, - [SMALL_STATE(5035)] = 176239, - [SMALL_STATE(5036)] = 176264, - [SMALL_STATE(5037)] = 176289, - [SMALL_STATE(5038)] = 176314, - [SMALL_STATE(5039)] = 176339, - [SMALL_STATE(5040)] = 176364, - [SMALL_STATE(5041)] = 176389, - [SMALL_STATE(5042)] = 176414, - [SMALL_STATE(5043)] = 176439, - [SMALL_STATE(5044)] = 176464, - [SMALL_STATE(5045)] = 176489, - [SMALL_STATE(5046)] = 176514, - [SMALL_STATE(5047)] = 176539, - [SMALL_STATE(5048)] = 176560, - [SMALL_STATE(5049)] = 176581, - [SMALL_STATE(5050)] = 176602, - [SMALL_STATE(5051)] = 176627, - [SMALL_STATE(5052)] = 176648, - [SMALL_STATE(5053)] = 176673, - [SMALL_STATE(5054)] = 176694, - [SMALL_STATE(5055)] = 176719, - [SMALL_STATE(5056)] = 176744, - [SMALL_STATE(5057)] = 176769, - [SMALL_STATE(5058)] = 176794, - [SMALL_STATE(5059)] = 176819, - [SMALL_STATE(5060)] = 176840, - [SMALL_STATE(5061)] = 176865, - [SMALL_STATE(5062)] = 176890, - [SMALL_STATE(5063)] = 176915, - [SMALL_STATE(5064)] = 176940, - [SMALL_STATE(5065)] = 176961, - [SMALL_STATE(5066)] = 176986, - [SMALL_STATE(5067)] = 177011, - [SMALL_STATE(5068)] = 177028, - [SMALL_STATE(5069)] = 177049, - [SMALL_STATE(5070)] = 177066, - [SMALL_STATE(5071)] = 177083, - [SMALL_STATE(5072)] = 177100, - [SMALL_STATE(5073)] = 177121, - [SMALL_STATE(5074)] = 177146, - [SMALL_STATE(5075)] = 177171, - [SMALL_STATE(5076)] = 177194, - [SMALL_STATE(5077)] = 177219, - [SMALL_STATE(5078)] = 177244, - [SMALL_STATE(5079)] = 177269, - [SMALL_STATE(5080)] = 177294, - [SMALL_STATE(5081)] = 177315, - [SMALL_STATE(5082)] = 177340, - [SMALL_STATE(5083)] = 177365, - [SMALL_STATE(5084)] = 177386, - [SMALL_STATE(5085)] = 177407, - [SMALL_STATE(5086)] = 177432, - [SMALL_STATE(5087)] = 177457, - [SMALL_STATE(5088)] = 177482, - [SMALL_STATE(5089)] = 177507, - [SMALL_STATE(5090)] = 177532, - [SMALL_STATE(5091)] = 177553, - [SMALL_STATE(5092)] = 177570, - [SMALL_STATE(5093)] = 177587, - [SMALL_STATE(5094)] = 177610, - [SMALL_STATE(5095)] = 177635, - [SMALL_STATE(5096)] = 177652, - [SMALL_STATE(5097)] = 177673, - [SMALL_STATE(5098)] = 177694, - [SMALL_STATE(5099)] = 177715, - [SMALL_STATE(5100)] = 177736, - [SMALL_STATE(5101)] = 177759, - [SMALL_STATE(5102)] = 177780, - [SMALL_STATE(5103)] = 177801, - [SMALL_STATE(5104)] = 177822, - [SMALL_STATE(5105)] = 177845, - [SMALL_STATE(5106)] = 177868, - [SMALL_STATE(5107)] = 177891, - [SMALL_STATE(5108)] = 177914, - [SMALL_STATE(5109)] = 177935, - [SMALL_STATE(5110)] = 177956, - [SMALL_STATE(5111)] = 177973, - [SMALL_STATE(5112)] = 177994, - [SMALL_STATE(5113)] = 178019, - [SMALL_STATE(5114)] = 178040, - [SMALL_STATE(5115)] = 178061, - [SMALL_STATE(5116)] = 178086, - [SMALL_STATE(5117)] = 178111, - [SMALL_STATE(5118)] = 178136, - [SMALL_STATE(5119)] = 178161, - [SMALL_STATE(5120)] = 178184, - [SMALL_STATE(5121)] = 178209, - [SMALL_STATE(5122)] = 178234, - [SMALL_STATE(5123)] = 178259, - [SMALL_STATE(5124)] = 178284, - [SMALL_STATE(5125)] = 178309, - [SMALL_STATE(5126)] = 178334, - [SMALL_STATE(5127)] = 178355, - [SMALL_STATE(5128)] = 178376, - [SMALL_STATE(5129)] = 178401, - [SMALL_STATE(5130)] = 178426, - [SMALL_STATE(5131)] = 178451, - [SMALL_STATE(5132)] = 178476, - [SMALL_STATE(5133)] = 178493, - [SMALL_STATE(5134)] = 178518, - [SMALL_STATE(5135)] = 178539, - [SMALL_STATE(5136)] = 178560, - [SMALL_STATE(5137)] = 178577, - [SMALL_STATE(5138)] = 178594, - [SMALL_STATE(5139)] = 178611, - [SMALL_STATE(5140)] = 178628, - [SMALL_STATE(5141)] = 178645, - [SMALL_STATE(5142)] = 178670, - [SMALL_STATE(5143)] = 178691, - [SMALL_STATE(5144)] = 178716, - [SMALL_STATE(5145)] = 178737, - [SMALL_STATE(5146)] = 178760, - [SMALL_STATE(5147)] = 178781, - [SMALL_STATE(5148)] = 178806, - [SMALL_STATE(5149)] = 178829, - [SMALL_STATE(5150)] = 178854, - [SMALL_STATE(5151)] = 178871, - [SMALL_STATE(5152)] = 178888, - [SMALL_STATE(5153)] = 178905, - [SMALL_STATE(5154)] = 178930, - [SMALL_STATE(5155)] = 178947, - [SMALL_STATE(5156)] = 178964, - [SMALL_STATE(5157)] = 178981, - [SMALL_STATE(5158)] = 178998, - [SMALL_STATE(5159)] = 179019, - [SMALL_STATE(5160)] = 179036, - [SMALL_STATE(5161)] = 179053, - [SMALL_STATE(5162)] = 179070, - [SMALL_STATE(5163)] = 179095, - [SMALL_STATE(5164)] = 179112, - [SMALL_STATE(5165)] = 179137, - [SMALL_STATE(5166)] = 179154, - [SMALL_STATE(5167)] = 179179, - [SMALL_STATE(5168)] = 179200, - [SMALL_STATE(5169)] = 179225, - [SMALL_STATE(5170)] = 179250, - [SMALL_STATE(5171)] = 179267, - [SMALL_STATE(5172)] = 179292, - [SMALL_STATE(5173)] = 179317, - [SMALL_STATE(5174)] = 179342, - [SMALL_STATE(5175)] = 179363, - [SMALL_STATE(5176)] = 179388, - [SMALL_STATE(5177)] = 179409, - [SMALL_STATE(5178)] = 179434, - [SMALL_STATE(5179)] = 179459, - [SMALL_STATE(5180)] = 179484, - [SMALL_STATE(5181)] = 179505, - [SMALL_STATE(5182)] = 179530, - [SMALL_STATE(5183)] = 179555, - [SMALL_STATE(5184)] = 179580, - [SMALL_STATE(5185)] = 179601, - [SMALL_STATE(5186)] = 179622, - [SMALL_STATE(5187)] = 179647, - [SMALL_STATE(5188)] = 179668, - [SMALL_STATE(5189)] = 179689, - [SMALL_STATE(5190)] = 179710, - [SMALL_STATE(5191)] = 179735, - [SMALL_STATE(5192)] = 179756, - [SMALL_STATE(5193)] = 179781, - [SMALL_STATE(5194)] = 179806, - [SMALL_STATE(5195)] = 179831, - [SMALL_STATE(5196)] = 179852, - [SMALL_STATE(5197)] = 179873, - [SMALL_STATE(5198)] = 179890, - [SMALL_STATE(5199)] = 179915, - [SMALL_STATE(5200)] = 179932, - [SMALL_STATE(5201)] = 179953, - [SMALL_STATE(5202)] = 179974, - [SMALL_STATE(5203)] = 179999, - [SMALL_STATE(5204)] = 180024, - [SMALL_STATE(5205)] = 180041, - [SMALL_STATE(5206)] = 180066, - [SMALL_STATE(5207)] = 180091, - [SMALL_STATE(5208)] = 180108, - [SMALL_STATE(5209)] = 180125, - [SMALL_STATE(5210)] = 180142, - [SMALL_STATE(5211)] = 180159, - [SMALL_STATE(5212)] = 180184, - [SMALL_STATE(5213)] = 180201, - [SMALL_STATE(5214)] = 180218, - [SMALL_STATE(5215)] = 180235, - [SMALL_STATE(5216)] = 180260, - [SMALL_STATE(5217)] = 180277, - [SMALL_STATE(5218)] = 180302, - [SMALL_STATE(5219)] = 180327, - [SMALL_STATE(5220)] = 180350, - [SMALL_STATE(5221)] = 180371, - [SMALL_STATE(5222)] = 180394, - [SMALL_STATE(5223)] = 180417, - [SMALL_STATE(5224)] = 180438, - [SMALL_STATE(5225)] = 180459, - [SMALL_STATE(5226)] = 180480, - [SMALL_STATE(5227)] = 180505, - [SMALL_STATE(5228)] = 180530, - [SMALL_STATE(5229)] = 180551, - [SMALL_STATE(5230)] = 180572, - [SMALL_STATE(5231)] = 180597, - [SMALL_STATE(5232)] = 180618, - [SMALL_STATE(5233)] = 180639, - [SMALL_STATE(5234)] = 180660, - [SMALL_STATE(5235)] = 180677, - [SMALL_STATE(5236)] = 180702, - [SMALL_STATE(5237)] = 180723, - [SMALL_STATE(5238)] = 180744, - [SMALL_STATE(5239)] = 180765, - [SMALL_STATE(5240)] = 180786, - [SMALL_STATE(5241)] = 180807, - [SMALL_STATE(5242)] = 180828, - [SMALL_STATE(5243)] = 180849, - [SMALL_STATE(5244)] = 180870, - [SMALL_STATE(5245)] = 180891, - [SMALL_STATE(5246)] = 180912, - [SMALL_STATE(5247)] = 180933, - [SMALL_STATE(5248)] = 180954, - [SMALL_STATE(5249)] = 180975, - [SMALL_STATE(5250)] = 180996, - [SMALL_STATE(5251)] = 181017, - [SMALL_STATE(5252)] = 181042, - [SMALL_STATE(5253)] = 181063, - [SMALL_STATE(5254)] = 181084, - [SMALL_STATE(5255)] = 181105, - [SMALL_STATE(5256)] = 181126, - [SMALL_STATE(5257)] = 181147, - [SMALL_STATE(5258)] = 181172, - [SMALL_STATE(5259)] = 181193, - [SMALL_STATE(5260)] = 181218, - [SMALL_STATE(5261)] = 181239, - [SMALL_STATE(5262)] = 181260, - [SMALL_STATE(5263)] = 181281, - [SMALL_STATE(5264)] = 181302, - [SMALL_STATE(5265)] = 181323, - [SMALL_STATE(5266)] = 181348, - [SMALL_STATE(5267)] = 181373, - [SMALL_STATE(5268)] = 181390, - [SMALL_STATE(5269)] = 181411, - [SMALL_STATE(5270)] = 181436, - [SMALL_STATE(5271)] = 181457, - [SMALL_STATE(5272)] = 181480, - [SMALL_STATE(5273)] = 181501, - [SMALL_STATE(5274)] = 181522, - [SMALL_STATE(5275)] = 181543, - [SMALL_STATE(5276)] = 181564, - [SMALL_STATE(5277)] = 181585, - [SMALL_STATE(5278)] = 181606, - [SMALL_STATE(5279)] = 181631, - [SMALL_STATE(5280)] = 181654, - [SMALL_STATE(5281)] = 181671, - [SMALL_STATE(5282)] = 181688, - [SMALL_STATE(5283)] = 181709, - [SMALL_STATE(5284)] = 181730, - [SMALL_STATE(5285)] = 181751, - [SMALL_STATE(5286)] = 181772, - [SMALL_STATE(5287)] = 181797, - [SMALL_STATE(5288)] = 181818, - [SMALL_STATE(5289)] = 181839, - [SMALL_STATE(5290)] = 181860, - [SMALL_STATE(5291)] = 181885, - [SMALL_STATE(5292)] = 181902, - [SMALL_STATE(5293)] = 181927, - [SMALL_STATE(5294)] = 181944, - [SMALL_STATE(5295)] = 181969, - [SMALL_STATE(5296)] = 181986, - [SMALL_STATE(5297)] = 182003, - [SMALL_STATE(5298)] = 182028, - [SMALL_STATE(5299)] = 182045, - [SMALL_STATE(5300)] = 182062, - [SMALL_STATE(5301)] = 182079, - [SMALL_STATE(5302)] = 182104, - [SMALL_STATE(5303)] = 182125, - [SMALL_STATE(5304)] = 182146, - [SMALL_STATE(5305)] = 182163, - [SMALL_STATE(5306)] = 182188, - [SMALL_STATE(5307)] = 182209, - [SMALL_STATE(5308)] = 182226, - [SMALL_STATE(5309)] = 182251, - [SMALL_STATE(5310)] = 182272, - [SMALL_STATE(5311)] = 182295, - [SMALL_STATE(5312)] = 182316, - [SMALL_STATE(5313)] = 182333, - [SMALL_STATE(5314)] = 182350, - [SMALL_STATE(5315)] = 182367, - [SMALL_STATE(5316)] = 182392, - [SMALL_STATE(5317)] = 182413, - [SMALL_STATE(5318)] = 182434, - [SMALL_STATE(5319)] = 182459, - [SMALL_STATE(5320)] = 182480, - [SMALL_STATE(5321)] = 182501, - [SMALL_STATE(5322)] = 182518, - [SMALL_STATE(5323)] = 182535, - [SMALL_STATE(5324)] = 182560, - [SMALL_STATE(5325)] = 182581, - [SMALL_STATE(5326)] = 182602, - [SMALL_STATE(5327)] = 182623, - [SMALL_STATE(5328)] = 182640, - [SMALL_STATE(5329)] = 182663, - [SMALL_STATE(5330)] = 182684, - [SMALL_STATE(5331)] = 182705, - [SMALL_STATE(5332)] = 182726, - [SMALL_STATE(5333)] = 182747, - [SMALL_STATE(5334)] = 182768, - [SMALL_STATE(5335)] = 182789, - [SMALL_STATE(5336)] = 182810, - [SMALL_STATE(5337)] = 182833, - [SMALL_STATE(5338)] = 182854, - [SMALL_STATE(5339)] = 182875, - [SMALL_STATE(5340)] = 182894, - [SMALL_STATE(5341)] = 182917, - [SMALL_STATE(5342)] = 182934, - [SMALL_STATE(5343)] = 182953, - [SMALL_STATE(5344)] = 182972, - [SMALL_STATE(5345)] = 182997, - [SMALL_STATE(5346)] = 183016, - [SMALL_STATE(5347)] = 183037, - [SMALL_STATE(5348)] = 183058, - [SMALL_STATE(5349)] = 183083, - [SMALL_STATE(5350)] = 183104, - [SMALL_STATE(5351)] = 183125, - [SMALL_STATE(5352)] = 183146, - [SMALL_STATE(5353)] = 183167, - [SMALL_STATE(5354)] = 183192, - [SMALL_STATE(5355)] = 183213, - [SMALL_STATE(5356)] = 183236, - [SMALL_STATE(5357)] = 183257, - [SMALL_STATE(5358)] = 183278, - [SMALL_STATE(5359)] = 183303, - [SMALL_STATE(5360)] = 183324, - [SMALL_STATE(5361)] = 183349, - [SMALL_STATE(5362)] = 183370, - [SMALL_STATE(5363)] = 183391, - [SMALL_STATE(5364)] = 183412, - [SMALL_STATE(5365)] = 183433, - [SMALL_STATE(5366)] = 183458, - [SMALL_STATE(5367)] = 183479, - [SMALL_STATE(5368)] = 183500, - [SMALL_STATE(5369)] = 183521, - [SMALL_STATE(5370)] = 183542, - [SMALL_STATE(5371)] = 183563, - [SMALL_STATE(5372)] = 183584, - [SMALL_STATE(5373)] = 183605, - [SMALL_STATE(5374)] = 183626, - [SMALL_STATE(5375)] = 183647, - [SMALL_STATE(5376)] = 183669, - [SMALL_STATE(5377)] = 183689, - [SMALL_STATE(5378)] = 183709, - [SMALL_STATE(5379)] = 183729, - [SMALL_STATE(5380)] = 183749, - [SMALL_STATE(5381)] = 183769, - [SMALL_STATE(5382)] = 183789, - [SMALL_STATE(5383)] = 183809, - [SMALL_STATE(5384)] = 183829, - [SMALL_STATE(5385)] = 183849, - [SMALL_STATE(5386)] = 183869, - [SMALL_STATE(5387)] = 183889, - [SMALL_STATE(5388)] = 183909, - [SMALL_STATE(5389)] = 183929, - [SMALL_STATE(5390)] = 183949, - [SMALL_STATE(5391)] = 183969, - [SMALL_STATE(5392)] = 183989, - [SMALL_STATE(5393)] = 184009, - [SMALL_STATE(5394)] = 184029, - [SMALL_STATE(5395)] = 184051, - [SMALL_STATE(5396)] = 184073, - [SMALL_STATE(5397)] = 184093, - [SMALL_STATE(5398)] = 184113, - [SMALL_STATE(5399)] = 184135, - [SMALL_STATE(5400)] = 184157, - [SMALL_STATE(5401)] = 184179, - [SMALL_STATE(5402)] = 184199, - [SMALL_STATE(5403)] = 184219, - [SMALL_STATE(5404)] = 184239, - [SMALL_STATE(5405)] = 184261, - [SMALL_STATE(5406)] = 184281, - [SMALL_STATE(5407)] = 184303, - [SMALL_STATE(5408)] = 184323, - [SMALL_STATE(5409)] = 184343, - [SMALL_STATE(5410)] = 184363, - [SMALL_STATE(5411)] = 184383, - [SMALL_STATE(5412)] = 184403, - [SMALL_STATE(5413)] = 184423, - [SMALL_STATE(5414)] = 184445, - [SMALL_STATE(5415)] = 184465, - [SMALL_STATE(5416)] = 184485, - [SMALL_STATE(5417)] = 184505, - [SMALL_STATE(5418)] = 184527, - [SMALL_STATE(5419)] = 184547, - [SMALL_STATE(5420)] = 184567, - [SMALL_STATE(5421)] = 184587, - [SMALL_STATE(5422)] = 184607, - [SMALL_STATE(5423)] = 184627, - [SMALL_STATE(5424)] = 184647, - [SMALL_STATE(5425)] = 184667, - [SMALL_STATE(5426)] = 184687, - [SMALL_STATE(5427)] = 184707, - [SMALL_STATE(5428)] = 184727, - [SMALL_STATE(5429)] = 184747, - [SMALL_STATE(5430)] = 184767, - [SMALL_STATE(5431)] = 184787, - [SMALL_STATE(5432)] = 184809, - [SMALL_STATE(5433)] = 184829, - [SMALL_STATE(5434)] = 184849, - [SMALL_STATE(5435)] = 184869, - [SMALL_STATE(5436)] = 184891, - [SMALL_STATE(5437)] = 184911, - [SMALL_STATE(5438)] = 184933, - [SMALL_STATE(5439)] = 184953, - [SMALL_STATE(5440)] = 184973, - [SMALL_STATE(5441)] = 184993, - [SMALL_STATE(5442)] = 185013, - [SMALL_STATE(5443)] = 185035, - [SMALL_STATE(5444)] = 185057, - [SMALL_STATE(5445)] = 185077, - [SMALL_STATE(5446)] = 185097, - [SMALL_STATE(5447)] = 185119, - [SMALL_STATE(5448)] = 185141, - [SMALL_STATE(5449)] = 185161, - [SMALL_STATE(5450)] = 185181, - [SMALL_STATE(5451)] = 185201, - [SMALL_STATE(5452)] = 185223, - [SMALL_STATE(5453)] = 185245, - [SMALL_STATE(5454)] = 185267, - [SMALL_STATE(5455)] = 185289, - [SMALL_STATE(5456)] = 185311, - [SMALL_STATE(5457)] = 185329, - [SMALL_STATE(5458)] = 185351, - [SMALL_STATE(5459)] = 185373, - [SMALL_STATE(5460)] = 185395, - [SMALL_STATE(5461)] = 185417, - [SMALL_STATE(5462)] = 185439, - [SMALL_STATE(5463)] = 185461, - [SMALL_STATE(5464)] = 185483, - [SMALL_STATE(5465)] = 185501, - [SMALL_STATE(5466)] = 185521, - [SMALL_STATE(5467)] = 185543, - [SMALL_STATE(5468)] = 185565, - [SMALL_STATE(5469)] = 185585, - [SMALL_STATE(5470)] = 185605, - [SMALL_STATE(5471)] = 185627, - [SMALL_STATE(5472)] = 185647, - [SMALL_STATE(5473)] = 185667, - [SMALL_STATE(5474)] = 185687, - [SMALL_STATE(5475)] = 185707, - [SMALL_STATE(5476)] = 185729, - [SMALL_STATE(5477)] = 185745, - [SMALL_STATE(5478)] = 185765, - [SMALL_STATE(5479)] = 185781, - [SMALL_STATE(5480)] = 185801, - [SMALL_STATE(5481)] = 185823, - [SMALL_STATE(5482)] = 185845, - [SMALL_STATE(5483)] = 185865, - [SMALL_STATE(5484)] = 185885, - [SMALL_STATE(5485)] = 185907, - [SMALL_STATE(5486)] = 185929, - [SMALL_STATE(5487)] = 185947, - [SMALL_STATE(5488)] = 185965, - [SMALL_STATE(5489)] = 185985, - [SMALL_STATE(5490)] = 186005, - [SMALL_STATE(5491)] = 186027, - [SMALL_STATE(5492)] = 186047, - [SMALL_STATE(5493)] = 186069, - [SMALL_STATE(5494)] = 186089, - [SMALL_STATE(5495)] = 186109, - [SMALL_STATE(5496)] = 186131, - [SMALL_STATE(5497)] = 186153, - [SMALL_STATE(5498)] = 186175, - [SMALL_STATE(5499)] = 186197, - [SMALL_STATE(5500)] = 186219, - [SMALL_STATE(5501)] = 186239, - [SMALL_STATE(5502)] = 186259, - [SMALL_STATE(5503)] = 186277, - [SMALL_STATE(5504)] = 186299, - [SMALL_STATE(5505)] = 186321, - [SMALL_STATE(5506)] = 186343, - [SMALL_STATE(5507)] = 186363, - [SMALL_STATE(5508)] = 186383, - [SMALL_STATE(5509)] = 186405, - [SMALL_STATE(5510)] = 186427, - [SMALL_STATE(5511)] = 186449, - [SMALL_STATE(5512)] = 186469, - [SMALL_STATE(5513)] = 186489, - [SMALL_STATE(5514)] = 186509, - [SMALL_STATE(5515)] = 186529, - [SMALL_STATE(5516)] = 186551, - [SMALL_STATE(5517)] = 186573, - [SMALL_STATE(5518)] = 186591, - [SMALL_STATE(5519)] = 186613, - [SMALL_STATE(5520)] = 186629, - [SMALL_STATE(5521)] = 186651, - [SMALL_STATE(5522)] = 186673, - [SMALL_STATE(5523)] = 186695, - [SMALL_STATE(5524)] = 186715, - [SMALL_STATE(5525)] = 186735, - [SMALL_STATE(5526)] = 186757, - [SMALL_STATE(5527)] = 186779, - [SMALL_STATE(5528)] = 186801, - [SMALL_STATE(5529)] = 186823, - [SMALL_STATE(5530)] = 186843, - [SMALL_STATE(5531)] = 186859, - [SMALL_STATE(5532)] = 186881, - [SMALL_STATE(5533)] = 186903, - [SMALL_STATE(5534)] = 186921, - [SMALL_STATE(5535)] = 186941, - [SMALL_STATE(5536)] = 186961, - [SMALL_STATE(5537)] = 186979, - [SMALL_STATE(5538)] = 187001, - [SMALL_STATE(5539)] = 187021, - [SMALL_STATE(5540)] = 187041, - [SMALL_STATE(5541)] = 187061, - [SMALL_STATE(5542)] = 187081, - [SMALL_STATE(5543)] = 187101, - [SMALL_STATE(5544)] = 187121, - [SMALL_STATE(5545)] = 187141, - [SMALL_STATE(5546)] = 187163, - [SMALL_STATE(5547)] = 187185, - [SMALL_STATE(5548)] = 187205, - [SMALL_STATE(5549)] = 187225, - [SMALL_STATE(5550)] = 187245, - [SMALL_STATE(5551)] = 187265, - [SMALL_STATE(5552)] = 187287, - [SMALL_STATE(5553)] = 187305, - [SMALL_STATE(5554)] = 187323, - [SMALL_STATE(5555)] = 187345, - [SMALL_STATE(5556)] = 187365, - [SMALL_STATE(5557)] = 187385, - [SMALL_STATE(5558)] = 187407, - [SMALL_STATE(5559)] = 187423, - [SMALL_STATE(5560)] = 187443, - [SMALL_STATE(5561)] = 187463, - [SMALL_STATE(5562)] = 187483, - [SMALL_STATE(5563)] = 187503, - [SMALL_STATE(5564)] = 187523, - [SMALL_STATE(5565)] = 187545, - [SMALL_STATE(5566)] = 187565, - [SMALL_STATE(5567)] = 187585, - [SMALL_STATE(5568)] = 187605, - [SMALL_STATE(5569)] = 187625, - [SMALL_STATE(5570)] = 187645, - [SMALL_STATE(5571)] = 187665, - [SMALL_STATE(5572)] = 187685, - [SMALL_STATE(5573)] = 187701, - [SMALL_STATE(5574)] = 187717, - [SMALL_STATE(5575)] = 187737, - [SMALL_STATE(5576)] = 187757, - [SMALL_STATE(5577)] = 187777, - [SMALL_STATE(5578)] = 187799, - [SMALL_STATE(5579)] = 187819, - [SMALL_STATE(5580)] = 187841, - [SMALL_STATE(5581)] = 187861, - [SMALL_STATE(5582)] = 187881, - [SMALL_STATE(5583)] = 187901, - [SMALL_STATE(5584)] = 187923, - [SMALL_STATE(5585)] = 187945, - [SMALL_STATE(5586)] = 187965, - [SMALL_STATE(5587)] = 187985, - [SMALL_STATE(5588)] = 188005, - [SMALL_STATE(5589)] = 188025, - [SMALL_STATE(5590)] = 188041, - [SMALL_STATE(5591)] = 188057, - [SMALL_STATE(5592)] = 188079, - [SMALL_STATE(5593)] = 188099, - [SMALL_STATE(5594)] = 188121, - [SMALL_STATE(5595)] = 188143, - [SMALL_STATE(5596)] = 188159, - [SMALL_STATE(5597)] = 188175, - [SMALL_STATE(5598)] = 188197, - [SMALL_STATE(5599)] = 188217, - [SMALL_STATE(5600)] = 188233, - [SMALL_STATE(5601)] = 188255, - [SMALL_STATE(5602)] = 188277, - [SMALL_STATE(5603)] = 188295, - [SMALL_STATE(5604)] = 188315, - [SMALL_STATE(5605)] = 188335, - [SMALL_STATE(5606)] = 188354, - [SMALL_STATE(5607)] = 188369, - [SMALL_STATE(5608)] = 188384, - [SMALL_STATE(5609)] = 188403, - [SMALL_STATE(5610)] = 188422, - [SMALL_STATE(5611)] = 188441, - [SMALL_STATE(5612)] = 188458, - [SMALL_STATE(5613)] = 188473, - [SMALL_STATE(5614)] = 188492, - [SMALL_STATE(5615)] = 188509, - [SMALL_STATE(5616)] = 188524, - [SMALL_STATE(5617)] = 188541, - [SMALL_STATE(5618)] = 188558, - [SMALL_STATE(5619)] = 188577, - [SMALL_STATE(5620)] = 188596, - [SMALL_STATE(5621)] = 188615, - [SMALL_STATE(5622)] = 188632, - [SMALL_STATE(5623)] = 188649, - [SMALL_STATE(5624)] = 188666, - [SMALL_STATE(5625)] = 188683, - [SMALL_STATE(5626)] = 188702, - [SMALL_STATE(5627)] = 188717, - [SMALL_STATE(5628)] = 188734, - [SMALL_STATE(5629)] = 188753, - [SMALL_STATE(5630)] = 188768, - [SMALL_STATE(5631)] = 188787, - [SMALL_STATE(5632)] = 188802, - [SMALL_STATE(5633)] = 188821, - [SMALL_STATE(5634)] = 188840, - [SMALL_STATE(5635)] = 188859, - [SMALL_STATE(5636)] = 188874, - [SMALL_STATE(5637)] = 188891, - [SMALL_STATE(5638)] = 188910, - [SMALL_STATE(5639)] = 188927, - [SMALL_STATE(5640)] = 188944, - [SMALL_STATE(5641)] = 188961, - [SMALL_STATE(5642)] = 188978, - [SMALL_STATE(5643)] = 188995, - [SMALL_STATE(5644)] = 189014, - [SMALL_STATE(5645)] = 189031, - [SMALL_STATE(5646)] = 189050, - [SMALL_STATE(5647)] = 189065, - [SMALL_STATE(5648)] = 189084, - [SMALL_STATE(5649)] = 189103, - [SMALL_STATE(5650)] = 189122, - [SMALL_STATE(5651)] = 189141, - [SMALL_STATE(5652)] = 189156, - [SMALL_STATE(5653)] = 189171, - [SMALL_STATE(5654)] = 189190, - [SMALL_STATE(5655)] = 189209, - [SMALL_STATE(5656)] = 189228, - [SMALL_STATE(5657)] = 189243, - [SMALL_STATE(5658)] = 189258, - [SMALL_STATE(5659)] = 189275, - [SMALL_STATE(5660)] = 189294, - [SMALL_STATE(5661)] = 189313, - [SMALL_STATE(5662)] = 189330, - [SMALL_STATE(5663)] = 189349, - [SMALL_STATE(5664)] = 189368, - [SMALL_STATE(5665)] = 189387, - [SMALL_STATE(5666)] = 189402, - [SMALL_STATE(5667)] = 189419, - [SMALL_STATE(5668)] = 189434, - [SMALL_STATE(5669)] = 189449, - [SMALL_STATE(5670)] = 189464, - [SMALL_STATE(5671)] = 189479, - [SMALL_STATE(5672)] = 189494, - [SMALL_STATE(5673)] = 189509, - [SMALL_STATE(5674)] = 189524, - [SMALL_STATE(5675)] = 189539, - [SMALL_STATE(5676)] = 189556, - [SMALL_STATE(5677)] = 189571, - [SMALL_STATE(5678)] = 189586, - [SMALL_STATE(5679)] = 189601, - [SMALL_STATE(5680)] = 189616, - [SMALL_STATE(5681)] = 189631, - [SMALL_STATE(5682)] = 189650, - [SMALL_STATE(5683)] = 189665, - [SMALL_STATE(5684)] = 189684, - [SMALL_STATE(5685)] = 189699, - [SMALL_STATE(5686)] = 189714, - [SMALL_STATE(5687)] = 189733, - [SMALL_STATE(5688)] = 189748, - [SMALL_STATE(5689)] = 189763, - [SMALL_STATE(5690)] = 189778, - [SMALL_STATE(5691)] = 189793, - [SMALL_STATE(5692)] = 189808, - [SMALL_STATE(5693)] = 189823, - [SMALL_STATE(5694)] = 189838, - [SMALL_STATE(5695)] = 189853, - [SMALL_STATE(5696)] = 189868, - [SMALL_STATE(5697)] = 189883, - [SMALL_STATE(5698)] = 189898, - [SMALL_STATE(5699)] = 189917, - [SMALL_STATE(5700)] = 189932, - [SMALL_STATE(5701)] = 189951, - [SMALL_STATE(5702)] = 189966, - [SMALL_STATE(5703)] = 189985, - [SMALL_STATE(5704)] = 190004, - [SMALL_STATE(5705)] = 190023, - [SMALL_STATE(5706)] = 190042, - [SMALL_STATE(5707)] = 190061, - [SMALL_STATE(5708)] = 190076, - [SMALL_STATE(5709)] = 190091, - [SMALL_STATE(5710)] = 190106, - [SMALL_STATE(5711)] = 190125, - [SMALL_STATE(5712)] = 190144, - [SMALL_STATE(5713)] = 190159, - [SMALL_STATE(5714)] = 190178, - [SMALL_STATE(5715)] = 190195, - [SMALL_STATE(5716)] = 190210, - [SMALL_STATE(5717)] = 190229, - [SMALL_STATE(5718)] = 190244, - [SMALL_STATE(5719)] = 190263, - [SMALL_STATE(5720)] = 190282, - [SMALL_STATE(5721)] = 190297, - [SMALL_STATE(5722)] = 190316, - [SMALL_STATE(5723)] = 190335, - [SMALL_STATE(5724)] = 190350, - [SMALL_STATE(5725)] = 190365, - [SMALL_STATE(5726)] = 190380, - [SMALL_STATE(5727)] = 190399, - [SMALL_STATE(5728)] = 190418, - [SMALL_STATE(5729)] = 190433, - [SMALL_STATE(5730)] = 190448, - [SMALL_STATE(5731)] = 190463, - [SMALL_STATE(5732)] = 190478, - [SMALL_STATE(5733)] = 190495, - [SMALL_STATE(5734)] = 190514, - [SMALL_STATE(5735)] = 190529, - [SMALL_STATE(5736)] = 190544, - [SMALL_STATE(5737)] = 190559, - [SMALL_STATE(5738)] = 190578, - [SMALL_STATE(5739)] = 190597, - [SMALL_STATE(5740)] = 190612, - [SMALL_STATE(5741)] = 190631, - [SMALL_STATE(5742)] = 190650, - [SMALL_STATE(5743)] = 190669, - [SMALL_STATE(5744)] = 190688, - [SMALL_STATE(5745)] = 190703, - [SMALL_STATE(5746)] = 190722, - [SMALL_STATE(5747)] = 190739, - [SMALL_STATE(5748)] = 190758, - [SMALL_STATE(5749)] = 190773, - [SMALL_STATE(5750)] = 190790, - [SMALL_STATE(5751)] = 190805, - [SMALL_STATE(5752)] = 190820, - [SMALL_STATE(5753)] = 190837, - [SMALL_STATE(5754)] = 190852, - [SMALL_STATE(5755)] = 190869, - [SMALL_STATE(5756)] = 190886, - [SMALL_STATE(5757)] = 190901, - [SMALL_STATE(5758)] = 190920, - [SMALL_STATE(5759)] = 190935, - [SMALL_STATE(5760)] = 190950, - [SMALL_STATE(5761)] = 190969, - [SMALL_STATE(5762)] = 190984, - [SMALL_STATE(5763)] = 190999, - [SMALL_STATE(5764)] = 191014, - [SMALL_STATE(5765)] = 191031, - [SMALL_STATE(5766)] = 191046, - [SMALL_STATE(5767)] = 191061, - [SMALL_STATE(5768)] = 191076, - [SMALL_STATE(5769)] = 191095, - [SMALL_STATE(5770)] = 191114, - [SMALL_STATE(5771)] = 191133, - [SMALL_STATE(5772)] = 191148, - [SMALL_STATE(5773)] = 191163, - [SMALL_STATE(5774)] = 191180, - [SMALL_STATE(5775)] = 191195, - [SMALL_STATE(5776)] = 191210, - [SMALL_STATE(5777)] = 191229, - [SMALL_STATE(5778)] = 191248, - [SMALL_STATE(5779)] = 191265, - [SMALL_STATE(5780)] = 191280, - [SMALL_STATE(5781)] = 191295, - [SMALL_STATE(5782)] = 191312, - [SMALL_STATE(5783)] = 191327, - [SMALL_STATE(5784)] = 191342, - [SMALL_STATE(5785)] = 191357, - [SMALL_STATE(5786)] = 191372, - [SMALL_STATE(5787)] = 191387, - [SMALL_STATE(5788)] = 191402, - [SMALL_STATE(5789)] = 191421, - [SMALL_STATE(5790)] = 191436, - [SMALL_STATE(5791)] = 191455, - [SMALL_STATE(5792)] = 191474, - [SMALL_STATE(5793)] = 191489, - [SMALL_STATE(5794)] = 191508, - [SMALL_STATE(5795)] = 191523, - [SMALL_STATE(5796)] = 191538, - [SMALL_STATE(5797)] = 191557, - [SMALL_STATE(5798)] = 191576, - [SMALL_STATE(5799)] = 191595, - [SMALL_STATE(5800)] = 191614, - [SMALL_STATE(5801)] = 191633, - [SMALL_STATE(5802)] = 191648, - [SMALL_STATE(5803)] = 191667, - [SMALL_STATE(5804)] = 191684, - [SMALL_STATE(5805)] = 191703, - [SMALL_STATE(5806)] = 191718, - [SMALL_STATE(5807)] = 191737, - [SMALL_STATE(5808)] = 191756, - [SMALL_STATE(5809)] = 191771, - [SMALL_STATE(5810)] = 191790, - [SMALL_STATE(5811)] = 191805, - [SMALL_STATE(5812)] = 191820, - [SMALL_STATE(5813)] = 191839, - [SMALL_STATE(5814)] = 191854, - [SMALL_STATE(5815)] = 191873, - [SMALL_STATE(5816)] = 191888, - [SMALL_STATE(5817)] = 191907, - [SMALL_STATE(5818)] = 191922, - [SMALL_STATE(5819)] = 191939, - [SMALL_STATE(5820)] = 191958, - [SMALL_STATE(5821)] = 191975, - [SMALL_STATE(5822)] = 191994, - [SMALL_STATE(5823)] = 192009, - [SMALL_STATE(5824)] = 192028, - [SMALL_STATE(5825)] = 192047, - [SMALL_STATE(5826)] = 192062, - [SMALL_STATE(5827)] = 192081, - [SMALL_STATE(5828)] = 192096, - [SMALL_STATE(5829)] = 192115, - [SMALL_STATE(5830)] = 192130, - [SMALL_STATE(5831)] = 192149, - [SMALL_STATE(5832)] = 192164, - [SMALL_STATE(5833)] = 192181, - [SMALL_STATE(5834)] = 192196, - [SMALL_STATE(5835)] = 192215, - [SMALL_STATE(5836)] = 192230, - [SMALL_STATE(5837)] = 192245, - [SMALL_STATE(5838)] = 192264, - [SMALL_STATE(5839)] = 192283, - [SMALL_STATE(5840)] = 192302, - [SMALL_STATE(5841)] = 192317, - [SMALL_STATE(5842)] = 192332, - [SMALL_STATE(5843)] = 192347, - [SMALL_STATE(5844)] = 192362, - [SMALL_STATE(5845)] = 192381, - [SMALL_STATE(5846)] = 192400, - [SMALL_STATE(5847)] = 192417, - [SMALL_STATE(5848)] = 192436, - [SMALL_STATE(5849)] = 192455, - [SMALL_STATE(5850)] = 192470, - [SMALL_STATE(5851)] = 192487, - [SMALL_STATE(5852)] = 192506, - [SMALL_STATE(5853)] = 192523, - [SMALL_STATE(5854)] = 192542, - [SMALL_STATE(5855)] = 192559, - [SMALL_STATE(5856)] = 192576, - [SMALL_STATE(5857)] = 192595, - [SMALL_STATE(5858)] = 192612, - [SMALL_STATE(5859)] = 192627, - [SMALL_STATE(5860)] = 192646, - [SMALL_STATE(5861)] = 192661, - [SMALL_STATE(5862)] = 192680, - [SMALL_STATE(5863)] = 192695, - [SMALL_STATE(5864)] = 192710, - [SMALL_STATE(5865)] = 192725, - [SMALL_STATE(5866)] = 192744, - [SMALL_STATE(5867)] = 192761, - [SMALL_STATE(5868)] = 192780, - [SMALL_STATE(5869)] = 192797, - [SMALL_STATE(5870)] = 192812, - [SMALL_STATE(5871)] = 192827, - [SMALL_STATE(5872)] = 192842, - [SMALL_STATE(5873)] = 192857, - [SMALL_STATE(5874)] = 192872, - [SMALL_STATE(5875)] = 192887, - [SMALL_STATE(5876)] = 192906, - [SMALL_STATE(5877)] = 192921, - [SMALL_STATE(5878)] = 192940, - [SMALL_STATE(5879)] = 192959, - [SMALL_STATE(5880)] = 192978, - [SMALL_STATE(5881)] = 192993, - [SMALL_STATE(5882)] = 193008, - [SMALL_STATE(5883)] = 193023, - [SMALL_STATE(5884)] = 193038, - [SMALL_STATE(5885)] = 193053, - [SMALL_STATE(5886)] = 193068, - [SMALL_STATE(5887)] = 193087, - [SMALL_STATE(5888)] = 193102, - [SMALL_STATE(5889)] = 193121, - [SMALL_STATE(5890)] = 193140, - [SMALL_STATE(5891)] = 193155, - [SMALL_STATE(5892)] = 193174, - [SMALL_STATE(5893)] = 193189, - [SMALL_STATE(5894)] = 193208, - [SMALL_STATE(5895)] = 193223, - [SMALL_STATE(5896)] = 193238, - [SMALL_STATE(5897)] = 193255, - [SMALL_STATE(5898)] = 193274, - [SMALL_STATE(5899)] = 193293, - [SMALL_STATE(5900)] = 193312, - [SMALL_STATE(5901)] = 193327, - [SMALL_STATE(5902)] = 193342, - [SMALL_STATE(5903)] = 193361, - [SMALL_STATE(5904)] = 193376, - [SMALL_STATE(5905)] = 193391, - [SMALL_STATE(5906)] = 193410, - [SMALL_STATE(5907)] = 193425, - [SMALL_STATE(5908)] = 193444, - [SMALL_STATE(5909)] = 193463, - [SMALL_STATE(5910)] = 193482, - [SMALL_STATE(5911)] = 193501, - [SMALL_STATE(5912)] = 193520, - [SMALL_STATE(5913)] = 193539, - [SMALL_STATE(5914)] = 193558, - [SMALL_STATE(5915)] = 193577, - [SMALL_STATE(5916)] = 193596, - [SMALL_STATE(5917)] = 193615, - [SMALL_STATE(5918)] = 193634, - [SMALL_STATE(5919)] = 193649, - [SMALL_STATE(5920)] = 193668, - [SMALL_STATE(5921)] = 193687, - [SMALL_STATE(5922)] = 193702, - [SMALL_STATE(5923)] = 193721, - [SMALL_STATE(5924)] = 193736, - [SMALL_STATE(5925)] = 193755, - [SMALL_STATE(5926)] = 193772, - [SMALL_STATE(5927)] = 193791, - [SMALL_STATE(5928)] = 193806, - [SMALL_STATE(5929)] = 193823, - [SMALL_STATE(5930)] = 193842, - [SMALL_STATE(5931)] = 193861, - [SMALL_STATE(5932)] = 193878, - [SMALL_STATE(5933)] = 193895, - [SMALL_STATE(5934)] = 193912, - [SMALL_STATE(5935)] = 193929, - [SMALL_STATE(5936)] = 193948, - [SMALL_STATE(5937)] = 193965, - [SMALL_STATE(5938)] = 193984, - [SMALL_STATE(5939)] = 194003, - [SMALL_STATE(5940)] = 194022, - [SMALL_STATE(5941)] = 194041, - [SMALL_STATE(5942)] = 194060, - [SMALL_STATE(5943)] = 194075, - [SMALL_STATE(5944)] = 194090, - [SMALL_STATE(5945)] = 194107, - [SMALL_STATE(5946)] = 194126, - [SMALL_STATE(5947)] = 194143, - [SMALL_STATE(5948)] = 194160, - [SMALL_STATE(5949)] = 194175, - [SMALL_STATE(5950)] = 194194, - [SMALL_STATE(5951)] = 194209, - [SMALL_STATE(5952)] = 194224, - [SMALL_STATE(5953)] = 194239, - [SMALL_STATE(5954)] = 194254, - [SMALL_STATE(5955)] = 194273, - [SMALL_STATE(5956)] = 194292, - [SMALL_STATE(5957)] = 194307, - [SMALL_STATE(5958)] = 194326, - [SMALL_STATE(5959)] = 194345, - [SMALL_STATE(5960)] = 194362, - [SMALL_STATE(5961)] = 194379, - [SMALL_STATE(5962)] = 194398, - [SMALL_STATE(5963)] = 194417, - [SMALL_STATE(5964)] = 194436, - [SMALL_STATE(5965)] = 194451, - [SMALL_STATE(5966)] = 194466, - [SMALL_STATE(5967)] = 194485, - [SMALL_STATE(5968)] = 194504, - [SMALL_STATE(5969)] = 194519, - [SMALL_STATE(5970)] = 194534, - [SMALL_STATE(5971)] = 194549, - [SMALL_STATE(5972)] = 194564, - [SMALL_STATE(5973)] = 194579, - [SMALL_STATE(5974)] = 194598, - [SMALL_STATE(5975)] = 194613, - [SMALL_STATE(5976)] = 194628, - [SMALL_STATE(5977)] = 194643, - [SMALL_STATE(5978)] = 194658, - [SMALL_STATE(5979)] = 194673, - [SMALL_STATE(5980)] = 194688, - [SMALL_STATE(5981)] = 194703, - [SMALL_STATE(5982)] = 194718, - [SMALL_STATE(5983)] = 194733, - [SMALL_STATE(5984)] = 194748, - [SMALL_STATE(5985)] = 194763, - [SMALL_STATE(5986)] = 194778, - [SMALL_STATE(5987)] = 194793, - [SMALL_STATE(5988)] = 194808, - [SMALL_STATE(5989)] = 194823, - [SMALL_STATE(5990)] = 194838, - [SMALL_STATE(5991)] = 194853, - [SMALL_STATE(5992)] = 194868, - [SMALL_STATE(5993)] = 194883, - [SMALL_STATE(5994)] = 194898, - [SMALL_STATE(5995)] = 194913, - [SMALL_STATE(5996)] = 194928, - [SMALL_STATE(5997)] = 194945, - [SMALL_STATE(5998)] = 194962, - [SMALL_STATE(5999)] = 194979, - [SMALL_STATE(6000)] = 194996, - [SMALL_STATE(6001)] = 195011, - [SMALL_STATE(6002)] = 195028, - [SMALL_STATE(6003)] = 195043, - [SMALL_STATE(6004)] = 195058, - [SMALL_STATE(6005)] = 195073, - [SMALL_STATE(6006)] = 195088, - [SMALL_STATE(6007)] = 195103, - [SMALL_STATE(6008)] = 195120, - [SMALL_STATE(6009)] = 195139, - [SMALL_STATE(6010)] = 195154, - [SMALL_STATE(6011)] = 195169, - [SMALL_STATE(6012)] = 195186, - [SMALL_STATE(6013)] = 195203, - [SMALL_STATE(6014)] = 195222, - [SMALL_STATE(6015)] = 195241, - [SMALL_STATE(6016)] = 195256, - [SMALL_STATE(6017)] = 195271, - [SMALL_STATE(6018)] = 195286, - [SMALL_STATE(6019)] = 195305, - [SMALL_STATE(6020)] = 195320, - [SMALL_STATE(6021)] = 195335, - [SMALL_STATE(6022)] = 195350, - [SMALL_STATE(6023)] = 195367, - [SMALL_STATE(6024)] = 195382, - [SMALL_STATE(6025)] = 195397, - [SMALL_STATE(6026)] = 195412, - [SMALL_STATE(6027)] = 195427, - [SMALL_STATE(6028)] = 195442, - [SMALL_STATE(6029)] = 195457, - [SMALL_STATE(6030)] = 195472, - [SMALL_STATE(6031)] = 195487, - [SMALL_STATE(6032)] = 195502, - [SMALL_STATE(6033)] = 195517, - [SMALL_STATE(6034)] = 195532, - [SMALL_STATE(6035)] = 195547, - [SMALL_STATE(6036)] = 195566, - [SMALL_STATE(6037)] = 195581, - [SMALL_STATE(6038)] = 195596, - [SMALL_STATE(6039)] = 195611, - [SMALL_STATE(6040)] = 195626, - [SMALL_STATE(6041)] = 195641, - [SMALL_STATE(6042)] = 195656, - [SMALL_STATE(6043)] = 195671, - [SMALL_STATE(6044)] = 195686, - [SMALL_STATE(6045)] = 195705, - [SMALL_STATE(6046)] = 195720, - [SMALL_STATE(6047)] = 195735, - [SMALL_STATE(6048)] = 195750, - [SMALL_STATE(6049)] = 195765, - [SMALL_STATE(6050)] = 195780, - [SMALL_STATE(6051)] = 195799, - [SMALL_STATE(6052)] = 195814, - [SMALL_STATE(6053)] = 195829, - [SMALL_STATE(6054)] = 195848, - [SMALL_STATE(6055)] = 195863, - [SMALL_STATE(6056)] = 195882, - [SMALL_STATE(6057)] = 195901, - [SMALL_STATE(6058)] = 195920, - [SMALL_STATE(6059)] = 195937, - [SMALL_STATE(6060)] = 195952, - [SMALL_STATE(6061)] = 195969, - [SMALL_STATE(6062)] = 195984, - [SMALL_STATE(6063)] = 196003, - [SMALL_STATE(6064)] = 196018, - [SMALL_STATE(6065)] = 196033, - [SMALL_STATE(6066)] = 196048, - [SMALL_STATE(6067)] = 196063, - [SMALL_STATE(6068)] = 196078, - [SMALL_STATE(6069)] = 196093, - [SMALL_STATE(6070)] = 196108, - [SMALL_STATE(6071)] = 196123, - [SMALL_STATE(6072)] = 196138, - [SMALL_STATE(6073)] = 196157, - [SMALL_STATE(6074)] = 196172, - [SMALL_STATE(6075)] = 196191, - [SMALL_STATE(6076)] = 196206, - [SMALL_STATE(6077)] = 196225, - [SMALL_STATE(6078)] = 196244, - [SMALL_STATE(6079)] = 196263, - [SMALL_STATE(6080)] = 196282, - [SMALL_STATE(6081)] = 196297, - [SMALL_STATE(6082)] = 196316, - [SMALL_STATE(6083)] = 196331, - [SMALL_STATE(6084)] = 196350, - [SMALL_STATE(6085)] = 196365, - [SMALL_STATE(6086)] = 196380, - [SMALL_STATE(6087)] = 196395, - [SMALL_STATE(6088)] = 196414, - [SMALL_STATE(6089)] = 196429, - [SMALL_STATE(6090)] = 196444, - [SMALL_STATE(6091)] = 196459, - [SMALL_STATE(6092)] = 196478, - [SMALL_STATE(6093)] = 196497, - [SMALL_STATE(6094)] = 196512, - [SMALL_STATE(6095)] = 196527, - [SMALL_STATE(6096)] = 196542, - [SMALL_STATE(6097)] = 196557, - [SMALL_STATE(6098)] = 196572, - [SMALL_STATE(6099)] = 196587, - [SMALL_STATE(6100)] = 196602, - [SMALL_STATE(6101)] = 196617, - [SMALL_STATE(6102)] = 196632, - [SMALL_STATE(6103)] = 196647, - [SMALL_STATE(6104)] = 196666, - [SMALL_STATE(6105)] = 196681, - [SMALL_STATE(6106)] = 196696, - [SMALL_STATE(6107)] = 196711, - [SMALL_STATE(6108)] = 196728, - [SMALL_STATE(6109)] = 196745, - [SMALL_STATE(6110)] = 196760, - [SMALL_STATE(6111)] = 196779, - [SMALL_STATE(6112)] = 196794, - [SMALL_STATE(6113)] = 196809, - [SMALL_STATE(6114)] = 196824, - [SMALL_STATE(6115)] = 196839, - [SMALL_STATE(6116)] = 196854, - [SMALL_STATE(6117)] = 196869, - [SMALL_STATE(6118)] = 196884, - [SMALL_STATE(6119)] = 196899, - [SMALL_STATE(6120)] = 196918, - [SMALL_STATE(6121)] = 196933, - [SMALL_STATE(6122)] = 196952, - [SMALL_STATE(6123)] = 196967, - [SMALL_STATE(6124)] = 196986, - [SMALL_STATE(6125)] = 197001, - [SMALL_STATE(6126)] = 197020, - [SMALL_STATE(6127)] = 197035, - [SMALL_STATE(6128)] = 197050, - [SMALL_STATE(6129)] = 197069, - [SMALL_STATE(6130)] = 197084, - [SMALL_STATE(6131)] = 197099, - [SMALL_STATE(6132)] = 197114, - [SMALL_STATE(6133)] = 197129, - [SMALL_STATE(6134)] = 197144, - [SMALL_STATE(6135)] = 197159, - [SMALL_STATE(6136)] = 197174, - [SMALL_STATE(6137)] = 197189, - [SMALL_STATE(6138)] = 197208, - [SMALL_STATE(6139)] = 197223, - [SMALL_STATE(6140)] = 197242, - [SMALL_STATE(6141)] = 197261, - [SMALL_STATE(6142)] = 197278, - [SMALL_STATE(6143)] = 197293, - [SMALL_STATE(6144)] = 197308, - [SMALL_STATE(6145)] = 197323, - [SMALL_STATE(6146)] = 197338, - [SMALL_STATE(6147)] = 197353, - [SMALL_STATE(6148)] = 197368, - [SMALL_STATE(6149)] = 197383, - [SMALL_STATE(6150)] = 197398, - [SMALL_STATE(6151)] = 197417, - [SMALL_STATE(6152)] = 197432, - [SMALL_STATE(6153)] = 197447, - [SMALL_STATE(6154)] = 197466, - [SMALL_STATE(6155)] = 197481, - [SMALL_STATE(6156)] = 197496, - [SMALL_STATE(6157)] = 197511, - [SMALL_STATE(6158)] = 197526, - [SMALL_STATE(6159)] = 197541, - [SMALL_STATE(6160)] = 197556, - [SMALL_STATE(6161)] = 197571, - [SMALL_STATE(6162)] = 197586, - [SMALL_STATE(6163)] = 197601, - [SMALL_STATE(6164)] = 197616, - [SMALL_STATE(6165)] = 197631, - [SMALL_STATE(6166)] = 197646, - [SMALL_STATE(6167)] = 197661, - [SMALL_STATE(6168)] = 197676, - [SMALL_STATE(6169)] = 197691, - [SMALL_STATE(6170)] = 197706, - [SMALL_STATE(6171)] = 197721, - [SMALL_STATE(6172)] = 197736, - [SMALL_STATE(6173)] = 197751, - [SMALL_STATE(6174)] = 197770, - [SMALL_STATE(6175)] = 197787, - [SMALL_STATE(6176)] = 197806, - [SMALL_STATE(6177)] = 197821, - [SMALL_STATE(6178)] = 197836, - [SMALL_STATE(6179)] = 197851, - [SMALL_STATE(6180)] = 197866, - [SMALL_STATE(6181)] = 197883, - [SMALL_STATE(6182)] = 197900, - [SMALL_STATE(6183)] = 197919, - [SMALL_STATE(6184)] = 197938, - [SMALL_STATE(6185)] = 197953, - [SMALL_STATE(6186)] = 197968, - [SMALL_STATE(6187)] = 197983, - [SMALL_STATE(6188)] = 197998, - [SMALL_STATE(6189)] = 198013, - [SMALL_STATE(6190)] = 198032, - [SMALL_STATE(6191)] = 198051, - [SMALL_STATE(6192)] = 198066, - [SMALL_STATE(6193)] = 198085, - [SMALL_STATE(6194)] = 198100, - [SMALL_STATE(6195)] = 198119, - [SMALL_STATE(6196)] = 198134, - [SMALL_STATE(6197)] = 198153, - [SMALL_STATE(6198)] = 198168, - [SMALL_STATE(6199)] = 198183, - [SMALL_STATE(6200)] = 198198, - [SMALL_STATE(6201)] = 198213, - [SMALL_STATE(6202)] = 198232, - [SMALL_STATE(6203)] = 198247, - [SMALL_STATE(6204)] = 198262, - [SMALL_STATE(6205)] = 198277, - [SMALL_STATE(6206)] = 198292, - [SMALL_STATE(6207)] = 198307, - [SMALL_STATE(6208)] = 198322, - [SMALL_STATE(6209)] = 198337, - [SMALL_STATE(6210)] = 198352, - [SMALL_STATE(6211)] = 198367, - [SMALL_STATE(6212)] = 198382, - [SMALL_STATE(6213)] = 198397, - [SMALL_STATE(6214)] = 198416, - [SMALL_STATE(6215)] = 198431, - [SMALL_STATE(6216)] = 198446, - [SMALL_STATE(6217)] = 198461, - [SMALL_STATE(6218)] = 198476, - [SMALL_STATE(6219)] = 198491, - [SMALL_STATE(6220)] = 198506, - [SMALL_STATE(6221)] = 198521, - [SMALL_STATE(6222)] = 198536, - [SMALL_STATE(6223)] = 198551, - [SMALL_STATE(6224)] = 198566, - [SMALL_STATE(6225)] = 198581, - [SMALL_STATE(6226)] = 198600, - [SMALL_STATE(6227)] = 198619, - [SMALL_STATE(6228)] = 198634, - [SMALL_STATE(6229)] = 198649, - [SMALL_STATE(6230)] = 198664, - [SMALL_STATE(6231)] = 198679, - [SMALL_STATE(6232)] = 198694, - [SMALL_STATE(6233)] = 198709, - [SMALL_STATE(6234)] = 198724, - [SMALL_STATE(6235)] = 198739, - [SMALL_STATE(6236)] = 198754, - [SMALL_STATE(6237)] = 198769, - [SMALL_STATE(6238)] = 198788, - [SMALL_STATE(6239)] = 198803, - [SMALL_STATE(6240)] = 198818, - [SMALL_STATE(6241)] = 198833, - [SMALL_STATE(6242)] = 198848, - [SMALL_STATE(6243)] = 198863, - [SMALL_STATE(6244)] = 198878, - [SMALL_STATE(6245)] = 198897, - [SMALL_STATE(6246)] = 198912, - [SMALL_STATE(6247)] = 198931, - [SMALL_STATE(6248)] = 198946, - [SMALL_STATE(6249)] = 198961, - [SMALL_STATE(6250)] = 198976, - [SMALL_STATE(6251)] = 198991, - [SMALL_STATE(6252)] = 199006, - [SMALL_STATE(6253)] = 199021, - [SMALL_STATE(6254)] = 199036, - [SMALL_STATE(6255)] = 199051, - [SMALL_STATE(6256)] = 199066, - [SMALL_STATE(6257)] = 199081, - [SMALL_STATE(6258)] = 199096, - [SMALL_STATE(6259)] = 199111, - [SMALL_STATE(6260)] = 199126, - [SMALL_STATE(6261)] = 199145, - [SMALL_STATE(6262)] = 199160, - [SMALL_STATE(6263)] = 199179, - [SMALL_STATE(6264)] = 199194, - [SMALL_STATE(6265)] = 199213, - [SMALL_STATE(6266)] = 199228, - [SMALL_STATE(6267)] = 199247, - [SMALL_STATE(6268)] = 199262, - [SMALL_STATE(6269)] = 199277, - [SMALL_STATE(6270)] = 199292, - [SMALL_STATE(6271)] = 199311, - [SMALL_STATE(6272)] = 199330, - [SMALL_STATE(6273)] = 199345, - [SMALL_STATE(6274)] = 199360, - [SMALL_STATE(6275)] = 199375, - [SMALL_STATE(6276)] = 199390, - [SMALL_STATE(6277)] = 199405, - [SMALL_STATE(6278)] = 199422, - [SMALL_STATE(6279)] = 199439, - [SMALL_STATE(6280)] = 199454, - [SMALL_STATE(6281)] = 199469, - [SMALL_STATE(6282)] = 199484, - [SMALL_STATE(6283)] = 199499, - [SMALL_STATE(6284)] = 199514, - [SMALL_STATE(6285)] = 199529, - [SMALL_STATE(6286)] = 199544, - [SMALL_STATE(6287)] = 199559, - [SMALL_STATE(6288)] = 199574, - [SMALL_STATE(6289)] = 199593, - [SMALL_STATE(6290)] = 199608, - [SMALL_STATE(6291)] = 199627, - [SMALL_STATE(6292)] = 199646, - [SMALL_STATE(6293)] = 199661, - [SMALL_STATE(6294)] = 199676, - [SMALL_STATE(6295)] = 199691, - [SMALL_STATE(6296)] = 199706, - [SMALL_STATE(6297)] = 199720, - [SMALL_STATE(6298)] = 199736, - [SMALL_STATE(6299)] = 199752, - [SMALL_STATE(6300)] = 199768, - [SMALL_STATE(6301)] = 199784, - [SMALL_STATE(6302)] = 199800, - [SMALL_STATE(6303)] = 199816, - [SMALL_STATE(6304)] = 199832, - [SMALL_STATE(6305)] = 199848, - [SMALL_STATE(6306)] = 199864, - [SMALL_STATE(6307)] = 199878, - [SMALL_STATE(6308)] = 199894, - [SMALL_STATE(6309)] = 199910, - [SMALL_STATE(6310)] = 199924, - [SMALL_STATE(6311)] = 199940, - [SMALL_STATE(6312)] = 199956, - [SMALL_STATE(6313)] = 199972, - [SMALL_STATE(6314)] = 199988, - [SMALL_STATE(6315)] = 200004, - [SMALL_STATE(6316)] = 200020, - [SMALL_STATE(6317)] = 200036, - [SMALL_STATE(6318)] = 200052, - [SMALL_STATE(6319)] = 200068, - [SMALL_STATE(6320)] = 200084, - [SMALL_STATE(6321)] = 200100, - [SMALL_STATE(6322)] = 200116, - [SMALL_STATE(6323)] = 200132, - [SMALL_STATE(6324)] = 200148, - [SMALL_STATE(6325)] = 200164, - [SMALL_STATE(6326)] = 200180, - [SMALL_STATE(6327)] = 200196, - [SMALL_STATE(6328)] = 200212, - [SMALL_STATE(6329)] = 200226, - [SMALL_STATE(6330)] = 200240, - [SMALL_STATE(6331)] = 200254, - [SMALL_STATE(6332)] = 200270, - [SMALL_STATE(6333)] = 200284, - [SMALL_STATE(6334)] = 200298, - [SMALL_STATE(6335)] = 200314, - [SMALL_STATE(6336)] = 200330, - [SMALL_STATE(6337)] = 200346, - [SMALL_STATE(6338)] = 200360, - [SMALL_STATE(6339)] = 200374, - [SMALL_STATE(6340)] = 200390, - [SMALL_STATE(6341)] = 200404, - [SMALL_STATE(6342)] = 200418, - [SMALL_STATE(6343)] = 200432, - [SMALL_STATE(6344)] = 200448, - [SMALL_STATE(6345)] = 200464, - [SMALL_STATE(6346)] = 200480, - [SMALL_STATE(6347)] = 200494, - [SMALL_STATE(6348)] = 200508, - [SMALL_STATE(6349)] = 200522, - [SMALL_STATE(6350)] = 200536, - [SMALL_STATE(6351)] = 200550, - [SMALL_STATE(6352)] = 200564, - [SMALL_STATE(6353)] = 200580, - [SMALL_STATE(6354)] = 200594, - [SMALL_STATE(6355)] = 200610, - [SMALL_STATE(6356)] = 200624, - [SMALL_STATE(6357)] = 200640, - [SMALL_STATE(6358)] = 200656, - [SMALL_STATE(6359)] = 200672, - [SMALL_STATE(6360)] = 200686, - [SMALL_STATE(6361)] = 200702, - [SMALL_STATE(6362)] = 200716, - [SMALL_STATE(6363)] = 200730, - [SMALL_STATE(6364)] = 200746, - [SMALL_STATE(6365)] = 200762, - [SMALL_STATE(6366)] = 200778, - [SMALL_STATE(6367)] = 200792, - [SMALL_STATE(6368)] = 200808, - [SMALL_STATE(6369)] = 200824, - [SMALL_STATE(6370)] = 200840, - [SMALL_STATE(6371)] = 200854, - [SMALL_STATE(6372)] = 200870, - [SMALL_STATE(6373)] = 200886, - [SMALL_STATE(6374)] = 200902, - [SMALL_STATE(6375)] = 200916, - [SMALL_STATE(6376)] = 200930, - [SMALL_STATE(6377)] = 200944, - [SMALL_STATE(6378)] = 200958, - [SMALL_STATE(6379)] = 200974, - [SMALL_STATE(6380)] = 200988, - [SMALL_STATE(6381)] = 201004, - [SMALL_STATE(6382)] = 201018, - [SMALL_STATE(6383)] = 201034, - [SMALL_STATE(6384)] = 201048, - [SMALL_STATE(6385)] = 201062, - [SMALL_STATE(6386)] = 201076, - [SMALL_STATE(6387)] = 201092, - [SMALL_STATE(6388)] = 201108, - [SMALL_STATE(6389)] = 201124, - [SMALL_STATE(6390)] = 201140, - [SMALL_STATE(6391)] = 201154, - [SMALL_STATE(6392)] = 201168, - [SMALL_STATE(6393)] = 201184, - [SMALL_STATE(6394)] = 201198, - [SMALL_STATE(6395)] = 201212, - [SMALL_STATE(6396)] = 201226, - [SMALL_STATE(6397)] = 201242, - [SMALL_STATE(6398)] = 201256, - [SMALL_STATE(6399)] = 201272, - [SMALL_STATE(6400)] = 201286, - [SMALL_STATE(6401)] = 201302, - [SMALL_STATE(6402)] = 201318, - [SMALL_STATE(6403)] = 201334, - [SMALL_STATE(6404)] = 201348, - [SMALL_STATE(6405)] = 201364, - [SMALL_STATE(6406)] = 201380, - [SMALL_STATE(6407)] = 201396, - [SMALL_STATE(6408)] = 201412, - [SMALL_STATE(6409)] = 201426, - [SMALL_STATE(6410)] = 201442, - [SMALL_STATE(6411)] = 201458, - [SMALL_STATE(6412)] = 201474, - [SMALL_STATE(6413)] = 201490, - [SMALL_STATE(6414)] = 201506, - [SMALL_STATE(6415)] = 201522, - [SMALL_STATE(6416)] = 201538, - [SMALL_STATE(6417)] = 201554, - [SMALL_STATE(6418)] = 201570, - [SMALL_STATE(6419)] = 201586, - [SMALL_STATE(6420)] = 201602, - [SMALL_STATE(6421)] = 201618, - [SMALL_STATE(6422)] = 201634, - [SMALL_STATE(6423)] = 201650, - [SMALL_STATE(6424)] = 201666, - [SMALL_STATE(6425)] = 201682, - [SMALL_STATE(6426)] = 201698, - [SMALL_STATE(6427)] = 201714, - [SMALL_STATE(6428)] = 201730, - [SMALL_STATE(6429)] = 201746, - [SMALL_STATE(6430)] = 201760, - [SMALL_STATE(6431)] = 201774, - [SMALL_STATE(6432)] = 201788, - [SMALL_STATE(6433)] = 201802, - [SMALL_STATE(6434)] = 201816, - [SMALL_STATE(6435)] = 201832, - [SMALL_STATE(6436)] = 201848, - [SMALL_STATE(6437)] = 201864, - [SMALL_STATE(6438)] = 201880, - [SMALL_STATE(6439)] = 201894, - [SMALL_STATE(6440)] = 201910, - [SMALL_STATE(6441)] = 201924, - [SMALL_STATE(6442)] = 201938, - [SMALL_STATE(6443)] = 201954, - [SMALL_STATE(6444)] = 201970, - [SMALL_STATE(6445)] = 201986, - [SMALL_STATE(6446)] = 202002, - [SMALL_STATE(6447)] = 202018, - [SMALL_STATE(6448)] = 202032, - [SMALL_STATE(6449)] = 202048, - [SMALL_STATE(6450)] = 202064, - [SMALL_STATE(6451)] = 202080, - [SMALL_STATE(6452)] = 202096, - [SMALL_STATE(6453)] = 202112, - [SMALL_STATE(6454)] = 202128, - [SMALL_STATE(6455)] = 202144, - [SMALL_STATE(6456)] = 202160, - [SMALL_STATE(6457)] = 202176, - [SMALL_STATE(6458)] = 202190, - [SMALL_STATE(6459)] = 202204, - [SMALL_STATE(6460)] = 202220, - [SMALL_STATE(6461)] = 202234, - [SMALL_STATE(6462)] = 202250, - [SMALL_STATE(6463)] = 202266, - [SMALL_STATE(6464)] = 202280, - [SMALL_STATE(6465)] = 202296, - [SMALL_STATE(6466)] = 202312, - [SMALL_STATE(6467)] = 202326, - [SMALL_STATE(6468)] = 202342, - [SMALL_STATE(6469)] = 202358, - [SMALL_STATE(6470)] = 202372, - [SMALL_STATE(6471)] = 202388, - [SMALL_STATE(6472)] = 202404, - [SMALL_STATE(6473)] = 202420, - [SMALL_STATE(6474)] = 202436, - [SMALL_STATE(6475)] = 202452, - [SMALL_STATE(6476)] = 202468, - [SMALL_STATE(6477)] = 202484, - [SMALL_STATE(6478)] = 202500, - [SMALL_STATE(6479)] = 202514, - [SMALL_STATE(6480)] = 202530, - [SMALL_STATE(6481)] = 202546, - [SMALL_STATE(6482)] = 202560, - [SMALL_STATE(6483)] = 202576, - [SMALL_STATE(6484)] = 202592, - [SMALL_STATE(6485)] = 202608, - [SMALL_STATE(6486)] = 202624, - [SMALL_STATE(6487)] = 202640, - [SMALL_STATE(6488)] = 202656, - [SMALL_STATE(6489)] = 202670, - [SMALL_STATE(6490)] = 202686, - [SMALL_STATE(6491)] = 202702, - [SMALL_STATE(6492)] = 202718, - [SMALL_STATE(6493)] = 202734, - [SMALL_STATE(6494)] = 202750, - [SMALL_STATE(6495)] = 202766, - [SMALL_STATE(6496)] = 202782, - [SMALL_STATE(6497)] = 202798, - [SMALL_STATE(6498)] = 202814, - [SMALL_STATE(6499)] = 202830, - [SMALL_STATE(6500)] = 202844, - [SMALL_STATE(6501)] = 202858, - [SMALL_STATE(6502)] = 202872, - [SMALL_STATE(6503)] = 202888, - [SMALL_STATE(6504)] = 202904, - [SMALL_STATE(6505)] = 202920, - [SMALL_STATE(6506)] = 202936, - [SMALL_STATE(6507)] = 202950, - [SMALL_STATE(6508)] = 202966, - [SMALL_STATE(6509)] = 202982, - [SMALL_STATE(6510)] = 202996, - [SMALL_STATE(6511)] = 203010, - [SMALL_STATE(6512)] = 203026, - [SMALL_STATE(6513)] = 203042, - [SMALL_STATE(6514)] = 203058, - [SMALL_STATE(6515)] = 203074, - [SMALL_STATE(6516)] = 203090, - [SMALL_STATE(6517)] = 203104, - [SMALL_STATE(6518)] = 203118, - [SMALL_STATE(6519)] = 203132, - [SMALL_STATE(6520)] = 203146, - [SMALL_STATE(6521)] = 203162, - [SMALL_STATE(6522)] = 203178, - [SMALL_STATE(6523)] = 203194, - [SMALL_STATE(6524)] = 203208, - [SMALL_STATE(6525)] = 203224, - [SMALL_STATE(6526)] = 203240, - [SMALL_STATE(6527)] = 203254, - [SMALL_STATE(6528)] = 203270, - [SMALL_STATE(6529)] = 203284, - [SMALL_STATE(6530)] = 203300, - [SMALL_STATE(6531)] = 203316, - [SMALL_STATE(6532)] = 203332, - [SMALL_STATE(6533)] = 203348, - [SMALL_STATE(6534)] = 203364, - [SMALL_STATE(6535)] = 203380, - [SMALL_STATE(6536)] = 203394, - [SMALL_STATE(6537)] = 203410, - [SMALL_STATE(6538)] = 203424, - [SMALL_STATE(6539)] = 203438, - [SMALL_STATE(6540)] = 203454, - [SMALL_STATE(6541)] = 203470, - [SMALL_STATE(6542)] = 203484, - [SMALL_STATE(6543)] = 203500, - [SMALL_STATE(6544)] = 203514, - [SMALL_STATE(6545)] = 203530, - [SMALL_STATE(6546)] = 203546, - [SMALL_STATE(6547)] = 203560, - [SMALL_STATE(6548)] = 203576, - [SMALL_STATE(6549)] = 203590, - [SMALL_STATE(6550)] = 203606, - [SMALL_STATE(6551)] = 203620, - [SMALL_STATE(6552)] = 203634, - [SMALL_STATE(6553)] = 203648, - [SMALL_STATE(6554)] = 203664, - [SMALL_STATE(6555)] = 203680, - [SMALL_STATE(6556)] = 203696, - [SMALL_STATE(6557)] = 203712, - [SMALL_STATE(6558)] = 203728, - [SMALL_STATE(6559)] = 203744, - [SMALL_STATE(6560)] = 203758, - [SMALL_STATE(6561)] = 203772, - [SMALL_STATE(6562)] = 203786, - [SMALL_STATE(6563)] = 203800, - [SMALL_STATE(6564)] = 203816, - [SMALL_STATE(6565)] = 203830, - [SMALL_STATE(6566)] = 203846, - [SMALL_STATE(6567)] = 203862, - [SMALL_STATE(6568)] = 203878, - [SMALL_STATE(6569)] = 203894, - [SMALL_STATE(6570)] = 203908, - [SMALL_STATE(6571)] = 203922, - [SMALL_STATE(6572)] = 203938, - [SMALL_STATE(6573)] = 203954, - [SMALL_STATE(6574)] = 203970, - [SMALL_STATE(6575)] = 203986, - [SMALL_STATE(6576)] = 204002, - [SMALL_STATE(6577)] = 204016, - [SMALL_STATE(6578)] = 204032, - [SMALL_STATE(6579)] = 204048, - [SMALL_STATE(6580)] = 204064, - [SMALL_STATE(6581)] = 204078, - [SMALL_STATE(6582)] = 204094, - [SMALL_STATE(6583)] = 204110, - [SMALL_STATE(6584)] = 204124, - [SMALL_STATE(6585)] = 204138, - [SMALL_STATE(6586)] = 204154, - [SMALL_STATE(6587)] = 204170, - [SMALL_STATE(6588)] = 204184, - [SMALL_STATE(6589)] = 204200, - [SMALL_STATE(6590)] = 204216, - [SMALL_STATE(6591)] = 204230, - [SMALL_STATE(6592)] = 204244, - [SMALL_STATE(6593)] = 204258, - [SMALL_STATE(6594)] = 204272, - [SMALL_STATE(6595)] = 204288, - [SMALL_STATE(6596)] = 204304, - [SMALL_STATE(6597)] = 204318, - [SMALL_STATE(6598)] = 204334, - [SMALL_STATE(6599)] = 204350, - [SMALL_STATE(6600)] = 204364, - [SMALL_STATE(6601)] = 204380, - [SMALL_STATE(6602)] = 204396, - [SMALL_STATE(6603)] = 204410, - [SMALL_STATE(6604)] = 204424, - [SMALL_STATE(6605)] = 204440, - [SMALL_STATE(6606)] = 204454, - [SMALL_STATE(6607)] = 204470, - [SMALL_STATE(6608)] = 204484, - [SMALL_STATE(6609)] = 204500, - [SMALL_STATE(6610)] = 204514, - [SMALL_STATE(6611)] = 204530, - [SMALL_STATE(6612)] = 204546, - [SMALL_STATE(6613)] = 204560, - [SMALL_STATE(6614)] = 204574, - [SMALL_STATE(6615)] = 204590, - [SMALL_STATE(6616)] = 204606, - [SMALL_STATE(6617)] = 204622, - [SMALL_STATE(6618)] = 204638, - [SMALL_STATE(6619)] = 204652, - [SMALL_STATE(6620)] = 204666, - [SMALL_STATE(6621)] = 204680, - [SMALL_STATE(6622)] = 204694, - [SMALL_STATE(6623)] = 204710, - [SMALL_STATE(6624)] = 204726, - [SMALL_STATE(6625)] = 204742, - [SMALL_STATE(6626)] = 204758, - [SMALL_STATE(6627)] = 204774, - [SMALL_STATE(6628)] = 204788, - [SMALL_STATE(6629)] = 204804, - [SMALL_STATE(6630)] = 204820, - [SMALL_STATE(6631)] = 204836, - [SMALL_STATE(6632)] = 204852, - [SMALL_STATE(6633)] = 204868, - [SMALL_STATE(6634)] = 204884, - [SMALL_STATE(6635)] = 204900, - [SMALL_STATE(6636)] = 204914, - [SMALL_STATE(6637)] = 204928, - [SMALL_STATE(6638)] = 204944, - [SMALL_STATE(6639)] = 204960, - [SMALL_STATE(6640)] = 204976, - [SMALL_STATE(6641)] = 204992, - [SMALL_STATE(6642)] = 205008, - [SMALL_STATE(6643)] = 205022, - [SMALL_STATE(6644)] = 205036, - [SMALL_STATE(6645)] = 205052, - [SMALL_STATE(6646)] = 205068, - [SMALL_STATE(6647)] = 205082, - [SMALL_STATE(6648)] = 205096, - [SMALL_STATE(6649)] = 205110, - [SMALL_STATE(6650)] = 205124, - [SMALL_STATE(6651)] = 205140, - [SMALL_STATE(6652)] = 205154, - [SMALL_STATE(6653)] = 205170, - [SMALL_STATE(6654)] = 205186, - [SMALL_STATE(6655)] = 205200, - [SMALL_STATE(6656)] = 205216, - [SMALL_STATE(6657)] = 205232, - [SMALL_STATE(6658)] = 205246, - [SMALL_STATE(6659)] = 205260, - [SMALL_STATE(6660)] = 205276, - [SMALL_STATE(6661)] = 205292, - [SMALL_STATE(6662)] = 205306, - [SMALL_STATE(6663)] = 205322, - [SMALL_STATE(6664)] = 205338, - [SMALL_STATE(6665)] = 205352, - [SMALL_STATE(6666)] = 205368, - [SMALL_STATE(6667)] = 205384, - [SMALL_STATE(6668)] = 205398, - [SMALL_STATE(6669)] = 205414, - [SMALL_STATE(6670)] = 205428, - [SMALL_STATE(6671)] = 205444, - [SMALL_STATE(6672)] = 205460, - [SMALL_STATE(6673)] = 205476, - [SMALL_STATE(6674)] = 205490, - [SMALL_STATE(6675)] = 205506, - [SMALL_STATE(6676)] = 205522, - [SMALL_STATE(6677)] = 205536, - [SMALL_STATE(6678)] = 205552, - [SMALL_STATE(6679)] = 205566, - [SMALL_STATE(6680)] = 205580, - [SMALL_STATE(6681)] = 205596, - [SMALL_STATE(6682)] = 205610, - [SMALL_STATE(6683)] = 205626, - [SMALL_STATE(6684)] = 205642, - [SMALL_STATE(6685)] = 205658, - [SMALL_STATE(6686)] = 205672, - [SMALL_STATE(6687)] = 205688, - [SMALL_STATE(6688)] = 205704, - [SMALL_STATE(6689)] = 205720, - [SMALL_STATE(6690)] = 205734, - [SMALL_STATE(6691)] = 205748, - [SMALL_STATE(6692)] = 205762, - [SMALL_STATE(6693)] = 205776, - [SMALL_STATE(6694)] = 205792, - [SMALL_STATE(6695)] = 205806, - [SMALL_STATE(6696)] = 205822, - [SMALL_STATE(6697)] = 205836, - [SMALL_STATE(6698)] = 205850, - [SMALL_STATE(6699)] = 205864, - [SMALL_STATE(6700)] = 205878, - [SMALL_STATE(6701)] = 205894, - [SMALL_STATE(6702)] = 205908, - [SMALL_STATE(6703)] = 205922, - [SMALL_STATE(6704)] = 205938, - [SMALL_STATE(6705)] = 205952, - [SMALL_STATE(6706)] = 205968, - [SMALL_STATE(6707)] = 205984, - [SMALL_STATE(6708)] = 205998, - [SMALL_STATE(6709)] = 206012, - [SMALL_STATE(6710)] = 206026, - [SMALL_STATE(6711)] = 206042, - [SMALL_STATE(6712)] = 206056, - [SMALL_STATE(6713)] = 206072, - [SMALL_STATE(6714)] = 206086, - [SMALL_STATE(6715)] = 206102, - [SMALL_STATE(6716)] = 206118, - [SMALL_STATE(6717)] = 206132, - [SMALL_STATE(6718)] = 206148, - [SMALL_STATE(6719)] = 206164, - [SMALL_STATE(6720)] = 206180, - [SMALL_STATE(6721)] = 206196, - [SMALL_STATE(6722)] = 206210, - [SMALL_STATE(6723)] = 206226, - [SMALL_STATE(6724)] = 206242, - [SMALL_STATE(6725)] = 206256, - [SMALL_STATE(6726)] = 206272, - [SMALL_STATE(6727)] = 206288, - [SMALL_STATE(6728)] = 206304, - [SMALL_STATE(6729)] = 206320, - [SMALL_STATE(6730)] = 206334, - [SMALL_STATE(6731)] = 206350, - [SMALL_STATE(6732)] = 206364, - [SMALL_STATE(6733)] = 206380, - [SMALL_STATE(6734)] = 206394, - [SMALL_STATE(6735)] = 206410, - [SMALL_STATE(6736)] = 206424, - [SMALL_STATE(6737)] = 206440, - [SMALL_STATE(6738)] = 206456, - [SMALL_STATE(6739)] = 206470, - [SMALL_STATE(6740)] = 206486, - [SMALL_STATE(6741)] = 206502, - [SMALL_STATE(6742)] = 206518, - [SMALL_STATE(6743)] = 206534, - [SMALL_STATE(6744)] = 206548, - [SMALL_STATE(6745)] = 206562, - [SMALL_STATE(6746)] = 206578, - [SMALL_STATE(6747)] = 206592, - [SMALL_STATE(6748)] = 206608, - [SMALL_STATE(6749)] = 206624, - [SMALL_STATE(6750)] = 206638, - [SMALL_STATE(6751)] = 206654, - [SMALL_STATE(6752)] = 206670, - [SMALL_STATE(6753)] = 206684, - [SMALL_STATE(6754)] = 206698, - [SMALL_STATE(6755)] = 206714, - [SMALL_STATE(6756)] = 206728, - [SMALL_STATE(6757)] = 206744, - [SMALL_STATE(6758)] = 206758, - [SMALL_STATE(6759)] = 206772, - [SMALL_STATE(6760)] = 206786, - [SMALL_STATE(6761)] = 206802, - [SMALL_STATE(6762)] = 206816, - [SMALL_STATE(6763)] = 206832, - [SMALL_STATE(6764)] = 206846, - [SMALL_STATE(6765)] = 206862, - [SMALL_STATE(6766)] = 206876, - [SMALL_STATE(6767)] = 206890, - [SMALL_STATE(6768)] = 206906, - [SMALL_STATE(6769)] = 206922, - [SMALL_STATE(6770)] = 206938, - [SMALL_STATE(6771)] = 206952, - [SMALL_STATE(6772)] = 206968, - [SMALL_STATE(6773)] = 206982, - [SMALL_STATE(6774)] = 206996, - [SMALL_STATE(6775)] = 207012, - [SMALL_STATE(6776)] = 207028, - [SMALL_STATE(6777)] = 207042, - [SMALL_STATE(6778)] = 207058, - [SMALL_STATE(6779)] = 207072, - [SMALL_STATE(6780)] = 207086, - [SMALL_STATE(6781)] = 207102, - [SMALL_STATE(6782)] = 207118, - [SMALL_STATE(6783)] = 207132, - [SMALL_STATE(6784)] = 207148, - [SMALL_STATE(6785)] = 207164, - [SMALL_STATE(6786)] = 207180, - [SMALL_STATE(6787)] = 207196, - [SMALL_STATE(6788)] = 207212, - [SMALL_STATE(6789)] = 207226, - [SMALL_STATE(6790)] = 207240, - [SMALL_STATE(6791)] = 207256, - [SMALL_STATE(6792)] = 207272, - [SMALL_STATE(6793)] = 207286, - [SMALL_STATE(6794)] = 207302, - [SMALL_STATE(6795)] = 207316, - [SMALL_STATE(6796)] = 207330, - [SMALL_STATE(6797)] = 207346, - [SMALL_STATE(6798)] = 207360, - [SMALL_STATE(6799)] = 207374, - [SMALL_STATE(6800)] = 207390, - [SMALL_STATE(6801)] = 207404, - [SMALL_STATE(6802)] = 207420, - [SMALL_STATE(6803)] = 207434, - [SMALL_STATE(6804)] = 207450, - [SMALL_STATE(6805)] = 207466, - [SMALL_STATE(6806)] = 207480, - [SMALL_STATE(6807)] = 207496, - [SMALL_STATE(6808)] = 207510, - [SMALL_STATE(6809)] = 207524, - [SMALL_STATE(6810)] = 207540, - [SMALL_STATE(6811)] = 207556, - [SMALL_STATE(6812)] = 207572, - [SMALL_STATE(6813)] = 207588, - [SMALL_STATE(6814)] = 207604, - [SMALL_STATE(6815)] = 207618, - [SMALL_STATE(6816)] = 207632, - [SMALL_STATE(6817)] = 207648, - [SMALL_STATE(6818)] = 207662, - [SMALL_STATE(6819)] = 207678, - [SMALL_STATE(6820)] = 207692, - [SMALL_STATE(6821)] = 207706, - [SMALL_STATE(6822)] = 207720, - [SMALL_STATE(6823)] = 207736, - [SMALL_STATE(6824)] = 207752, - [SMALL_STATE(6825)] = 207768, - [SMALL_STATE(6826)] = 207782, - [SMALL_STATE(6827)] = 207798, - [SMALL_STATE(6828)] = 207814, - [SMALL_STATE(6829)] = 207830, - [SMALL_STATE(6830)] = 207844, - [SMALL_STATE(6831)] = 207858, - [SMALL_STATE(6832)] = 207874, - [SMALL_STATE(6833)] = 207890, - [SMALL_STATE(6834)] = 207906, - [SMALL_STATE(6835)] = 207922, - [SMALL_STATE(6836)] = 207936, - [SMALL_STATE(6837)] = 207952, - [SMALL_STATE(6838)] = 207966, - [SMALL_STATE(6839)] = 207980, - [SMALL_STATE(6840)] = 207996, - [SMALL_STATE(6841)] = 208010, - [SMALL_STATE(6842)] = 208026, - [SMALL_STATE(6843)] = 208040, - [SMALL_STATE(6844)] = 208054, - [SMALL_STATE(6845)] = 208068, - [SMALL_STATE(6846)] = 208084, - [SMALL_STATE(6847)] = 208100, - [SMALL_STATE(6848)] = 208114, - [SMALL_STATE(6849)] = 208128, - [SMALL_STATE(6850)] = 208144, - [SMALL_STATE(6851)] = 208158, - [SMALL_STATE(6852)] = 208172, - [SMALL_STATE(6853)] = 208188, - [SMALL_STATE(6854)] = 208204, - [SMALL_STATE(6855)] = 208220, - [SMALL_STATE(6856)] = 208236, - [SMALL_STATE(6857)] = 208250, - [SMALL_STATE(6858)] = 208264, - [SMALL_STATE(6859)] = 208280, - [SMALL_STATE(6860)] = 208296, - [SMALL_STATE(6861)] = 208310, - [SMALL_STATE(6862)] = 208324, - [SMALL_STATE(6863)] = 208340, - [SMALL_STATE(6864)] = 208356, - [SMALL_STATE(6865)] = 208372, - [SMALL_STATE(6866)] = 208388, - [SMALL_STATE(6867)] = 208404, - [SMALL_STATE(6868)] = 208420, - [SMALL_STATE(6869)] = 208436, - [SMALL_STATE(6870)] = 208452, - [SMALL_STATE(6871)] = 208468, - [SMALL_STATE(6872)] = 208484, - [SMALL_STATE(6873)] = 208498, - [SMALL_STATE(6874)] = 208512, - [SMALL_STATE(6875)] = 208528, - [SMALL_STATE(6876)] = 208542, - [SMALL_STATE(6877)] = 208558, - [SMALL_STATE(6878)] = 208574, - [SMALL_STATE(6879)] = 208590, - [SMALL_STATE(6880)] = 208606, - [SMALL_STATE(6881)] = 208622, - [SMALL_STATE(6882)] = 208636, - [SMALL_STATE(6883)] = 208652, - [SMALL_STATE(6884)] = 208668, - [SMALL_STATE(6885)] = 208684, - [SMALL_STATE(6886)] = 208698, - [SMALL_STATE(6887)] = 208714, - [SMALL_STATE(6888)] = 208730, - [SMALL_STATE(6889)] = 208744, - [SMALL_STATE(6890)] = 208758, - [SMALL_STATE(6891)] = 208774, - [SMALL_STATE(6892)] = 208790, - [SMALL_STATE(6893)] = 208806, - [SMALL_STATE(6894)] = 208822, - [SMALL_STATE(6895)] = 208838, - [SMALL_STATE(6896)] = 208854, - [SMALL_STATE(6897)] = 208870, - [SMALL_STATE(6898)] = 208884, - [SMALL_STATE(6899)] = 208898, - [SMALL_STATE(6900)] = 208914, - [SMALL_STATE(6901)] = 208930, - [SMALL_STATE(6902)] = 208946, - [SMALL_STATE(6903)] = 208960, - [SMALL_STATE(6904)] = 208976, - [SMALL_STATE(6905)] = 208992, - [SMALL_STATE(6906)] = 209008, - [SMALL_STATE(6907)] = 209024, - [SMALL_STATE(6908)] = 209040, - [SMALL_STATE(6909)] = 209056, - [SMALL_STATE(6910)] = 209072, - [SMALL_STATE(6911)] = 209086, - [SMALL_STATE(6912)] = 209102, - [SMALL_STATE(6913)] = 209116, - [SMALL_STATE(6914)] = 209130, - [SMALL_STATE(6915)] = 209146, - [SMALL_STATE(6916)] = 209160, - [SMALL_STATE(6917)] = 209174, - [SMALL_STATE(6918)] = 209190, - [SMALL_STATE(6919)] = 209204, - [SMALL_STATE(6920)] = 209220, - [SMALL_STATE(6921)] = 209234, - [SMALL_STATE(6922)] = 209250, - [SMALL_STATE(6923)] = 209266, - [SMALL_STATE(6924)] = 209282, - [SMALL_STATE(6925)] = 209296, - [SMALL_STATE(6926)] = 209312, - [SMALL_STATE(6927)] = 209326, - [SMALL_STATE(6928)] = 209342, - [SMALL_STATE(6929)] = 209356, - [SMALL_STATE(6930)] = 209372, - [SMALL_STATE(6931)] = 209388, - [SMALL_STATE(6932)] = 209404, - [SMALL_STATE(6933)] = 209420, - [SMALL_STATE(6934)] = 209436, - [SMALL_STATE(6935)] = 209452, - [SMALL_STATE(6936)] = 209468, - [SMALL_STATE(6937)] = 209484, - [SMALL_STATE(6938)] = 209498, - [SMALL_STATE(6939)] = 209512, - [SMALL_STATE(6940)] = 209526, - [SMALL_STATE(6941)] = 209540, - [SMALL_STATE(6942)] = 209556, - [SMALL_STATE(6943)] = 209572, - [SMALL_STATE(6944)] = 209588, - [SMALL_STATE(6945)] = 209604, - [SMALL_STATE(6946)] = 209617, - [SMALL_STATE(6947)] = 209630, - [SMALL_STATE(6948)] = 209643, - [SMALL_STATE(6949)] = 209656, - [SMALL_STATE(6950)] = 209669, - [SMALL_STATE(6951)] = 209682, - [SMALL_STATE(6952)] = 209695, - [SMALL_STATE(6953)] = 209708, - [SMALL_STATE(6954)] = 209721, - [SMALL_STATE(6955)] = 209734, - [SMALL_STATE(6956)] = 209747, - [SMALL_STATE(6957)] = 209760, - [SMALL_STATE(6958)] = 209773, - [SMALL_STATE(6959)] = 209786, - [SMALL_STATE(6960)] = 209799, - [SMALL_STATE(6961)] = 209812, - [SMALL_STATE(6962)] = 209825, - [SMALL_STATE(6963)] = 209838, - [SMALL_STATE(6964)] = 209851, - [SMALL_STATE(6965)] = 209864, - [SMALL_STATE(6966)] = 209877, - [SMALL_STATE(6967)] = 209890, - [SMALL_STATE(6968)] = 209903, - [SMALL_STATE(6969)] = 209916, - [SMALL_STATE(6970)] = 209929, - [SMALL_STATE(6971)] = 209942, - [SMALL_STATE(6972)] = 209955, - [SMALL_STATE(6973)] = 209968, - [SMALL_STATE(6974)] = 209981, - [SMALL_STATE(6975)] = 209994, - [SMALL_STATE(6976)] = 210007, - [SMALL_STATE(6977)] = 210020, - [SMALL_STATE(6978)] = 210033, - [SMALL_STATE(6979)] = 210046, - [SMALL_STATE(6980)] = 210059, - [SMALL_STATE(6981)] = 210072, - [SMALL_STATE(6982)] = 210085, - [SMALL_STATE(6983)] = 210098, - [SMALL_STATE(6984)] = 210111, - [SMALL_STATE(6985)] = 210124, - [SMALL_STATE(6986)] = 210137, - [SMALL_STATE(6987)] = 210150, - [SMALL_STATE(6988)] = 210163, - [SMALL_STATE(6989)] = 210176, - [SMALL_STATE(6990)] = 210189, - [SMALL_STATE(6991)] = 210202, - [SMALL_STATE(6992)] = 210215, - [SMALL_STATE(6993)] = 210228, - [SMALL_STATE(6994)] = 210241, - [SMALL_STATE(6995)] = 210254, - [SMALL_STATE(6996)] = 210267, - [SMALL_STATE(6997)] = 210280, - [SMALL_STATE(6998)] = 210293, - [SMALL_STATE(6999)] = 210306, - [SMALL_STATE(7000)] = 210319, - [SMALL_STATE(7001)] = 210332, - [SMALL_STATE(7002)] = 210345, - [SMALL_STATE(7003)] = 210358, - [SMALL_STATE(7004)] = 210371, - [SMALL_STATE(7005)] = 210384, - [SMALL_STATE(7006)] = 210397, - [SMALL_STATE(7007)] = 210410, - [SMALL_STATE(7008)] = 210423, - [SMALL_STATE(7009)] = 210436, - [SMALL_STATE(7010)] = 210449, - [SMALL_STATE(7011)] = 210462, - [SMALL_STATE(7012)] = 210475, - [SMALL_STATE(7013)] = 210488, - [SMALL_STATE(7014)] = 210501, - [SMALL_STATE(7015)] = 210514, - [SMALL_STATE(7016)] = 210527, - [SMALL_STATE(7017)] = 210540, - [SMALL_STATE(7018)] = 210553, - [SMALL_STATE(7019)] = 210566, - [SMALL_STATE(7020)] = 210579, - [SMALL_STATE(7021)] = 210592, - [SMALL_STATE(7022)] = 210605, - [SMALL_STATE(7023)] = 210618, - [SMALL_STATE(7024)] = 210631, - [SMALL_STATE(7025)] = 210644, - [SMALL_STATE(7026)] = 210657, - [SMALL_STATE(7027)] = 210670, - [SMALL_STATE(7028)] = 210683, - [SMALL_STATE(7029)] = 210696, - [SMALL_STATE(7030)] = 210709, - [SMALL_STATE(7031)] = 210722, - [SMALL_STATE(7032)] = 210735, - [SMALL_STATE(7033)] = 210748, - [SMALL_STATE(7034)] = 210761, - [SMALL_STATE(7035)] = 210774, - [SMALL_STATE(7036)] = 210787, - [SMALL_STATE(7037)] = 210800, - [SMALL_STATE(7038)] = 210813, - [SMALL_STATE(7039)] = 210826, - [SMALL_STATE(7040)] = 210839, - [SMALL_STATE(7041)] = 210852, - [SMALL_STATE(7042)] = 210865, - [SMALL_STATE(7043)] = 210878, - [SMALL_STATE(7044)] = 210891, - [SMALL_STATE(7045)] = 210904, - [SMALL_STATE(7046)] = 210917, - [SMALL_STATE(7047)] = 210930, - [SMALL_STATE(7048)] = 210943, - [SMALL_STATE(7049)] = 210956, - [SMALL_STATE(7050)] = 210969, - [SMALL_STATE(7051)] = 210982, - [SMALL_STATE(7052)] = 210995, - [SMALL_STATE(7053)] = 211008, - [SMALL_STATE(7054)] = 211021, - [SMALL_STATE(7055)] = 211034, - [SMALL_STATE(7056)] = 211047, - [SMALL_STATE(7057)] = 211060, - [SMALL_STATE(7058)] = 211073, - [SMALL_STATE(7059)] = 211086, - [SMALL_STATE(7060)] = 211099, - [SMALL_STATE(7061)] = 211112, - [SMALL_STATE(7062)] = 211125, - [SMALL_STATE(7063)] = 211138, - [SMALL_STATE(7064)] = 211151, - [SMALL_STATE(7065)] = 211164, - [SMALL_STATE(7066)] = 211177, - [SMALL_STATE(7067)] = 211190, - [SMALL_STATE(7068)] = 211203, - [SMALL_STATE(7069)] = 211216, - [SMALL_STATE(7070)] = 211229, - [SMALL_STATE(7071)] = 211242, - [SMALL_STATE(7072)] = 211255, - [SMALL_STATE(7073)] = 211268, - [SMALL_STATE(7074)] = 211281, - [SMALL_STATE(7075)] = 211294, - [SMALL_STATE(7076)] = 211307, - [SMALL_STATE(7077)] = 211320, - [SMALL_STATE(7078)] = 211333, - [SMALL_STATE(7079)] = 211346, - [SMALL_STATE(7080)] = 211359, - [SMALL_STATE(7081)] = 211372, - [SMALL_STATE(7082)] = 211385, - [SMALL_STATE(7083)] = 211398, - [SMALL_STATE(7084)] = 211411, - [SMALL_STATE(7085)] = 211424, - [SMALL_STATE(7086)] = 211437, - [SMALL_STATE(7087)] = 211450, - [SMALL_STATE(7088)] = 211463, - [SMALL_STATE(7089)] = 211476, - [SMALL_STATE(7090)] = 211489, - [SMALL_STATE(7091)] = 211502, - [SMALL_STATE(7092)] = 211515, - [SMALL_STATE(7093)] = 211528, - [SMALL_STATE(7094)] = 211541, - [SMALL_STATE(7095)] = 211554, - [SMALL_STATE(7096)] = 211567, - [SMALL_STATE(7097)] = 211580, - [SMALL_STATE(7098)] = 211593, - [SMALL_STATE(7099)] = 211606, - [SMALL_STATE(7100)] = 211619, - [SMALL_STATE(7101)] = 211632, - [SMALL_STATE(7102)] = 211645, - [SMALL_STATE(7103)] = 211658, - [SMALL_STATE(7104)] = 211671, - [SMALL_STATE(7105)] = 211684, - [SMALL_STATE(7106)] = 211697, - [SMALL_STATE(7107)] = 211710, - [SMALL_STATE(7108)] = 211723, - [SMALL_STATE(7109)] = 211736, - [SMALL_STATE(7110)] = 211749, - [SMALL_STATE(7111)] = 211762, - [SMALL_STATE(7112)] = 211775, - [SMALL_STATE(7113)] = 211788, - [SMALL_STATE(7114)] = 211801, - [SMALL_STATE(7115)] = 211814, - [SMALL_STATE(7116)] = 211827, - [SMALL_STATE(7117)] = 211840, - [SMALL_STATE(7118)] = 211853, - [SMALL_STATE(7119)] = 211866, - [SMALL_STATE(7120)] = 211879, - [SMALL_STATE(7121)] = 211892, - [SMALL_STATE(7122)] = 211905, - [SMALL_STATE(7123)] = 211918, - [SMALL_STATE(7124)] = 211931, - [SMALL_STATE(7125)] = 211944, - [SMALL_STATE(7126)] = 211957, - [SMALL_STATE(7127)] = 211970, - [SMALL_STATE(7128)] = 211983, - [SMALL_STATE(7129)] = 211996, - [SMALL_STATE(7130)] = 212009, - [SMALL_STATE(7131)] = 212022, - [SMALL_STATE(7132)] = 212035, - [SMALL_STATE(7133)] = 212048, - [SMALL_STATE(7134)] = 212061, - [SMALL_STATE(7135)] = 212074, - [SMALL_STATE(7136)] = 212087, - [SMALL_STATE(7137)] = 212100, - [SMALL_STATE(7138)] = 212113, - [SMALL_STATE(7139)] = 212126, - [SMALL_STATE(7140)] = 212139, - [SMALL_STATE(7141)] = 212152, - [SMALL_STATE(7142)] = 212165, - [SMALL_STATE(7143)] = 212178, - [SMALL_STATE(7144)] = 212191, - [SMALL_STATE(7145)] = 212204, - [SMALL_STATE(7146)] = 212217, - [SMALL_STATE(7147)] = 212230, - [SMALL_STATE(7148)] = 212243, - [SMALL_STATE(7149)] = 212256, - [SMALL_STATE(7150)] = 212269, - [SMALL_STATE(7151)] = 212282, - [SMALL_STATE(7152)] = 212295, - [SMALL_STATE(7153)] = 212308, - [SMALL_STATE(7154)] = 212321, - [SMALL_STATE(7155)] = 212334, - [SMALL_STATE(7156)] = 212347, - [SMALL_STATE(7157)] = 212360, - [SMALL_STATE(7158)] = 212373, - [SMALL_STATE(7159)] = 212386, - [SMALL_STATE(7160)] = 212399, - [SMALL_STATE(7161)] = 212412, - [SMALL_STATE(7162)] = 212425, - [SMALL_STATE(7163)] = 212438, - [SMALL_STATE(7164)] = 212451, - [SMALL_STATE(7165)] = 212464, - [SMALL_STATE(7166)] = 212477, - [SMALL_STATE(7167)] = 212490, - [SMALL_STATE(7168)] = 212503, - [SMALL_STATE(7169)] = 212516, - [SMALL_STATE(7170)] = 212529, - [SMALL_STATE(7171)] = 212542, - [SMALL_STATE(7172)] = 212555, - [SMALL_STATE(7173)] = 212568, - [SMALL_STATE(7174)] = 212581, - [SMALL_STATE(7175)] = 212594, - [SMALL_STATE(7176)] = 212607, - [SMALL_STATE(7177)] = 212620, - [SMALL_STATE(7178)] = 212633, - [SMALL_STATE(7179)] = 212646, - [SMALL_STATE(7180)] = 212659, - [SMALL_STATE(7181)] = 212672, - [SMALL_STATE(7182)] = 212685, - [SMALL_STATE(7183)] = 212698, - [SMALL_STATE(7184)] = 212711, - [SMALL_STATE(7185)] = 212724, - [SMALL_STATE(7186)] = 212737, - [SMALL_STATE(7187)] = 212750, - [SMALL_STATE(7188)] = 212763, - [SMALL_STATE(7189)] = 212776, - [SMALL_STATE(7190)] = 212789, - [SMALL_STATE(7191)] = 212802, - [SMALL_STATE(7192)] = 212815, - [SMALL_STATE(7193)] = 212828, - [SMALL_STATE(7194)] = 212841, - [SMALL_STATE(7195)] = 212854, - [SMALL_STATE(7196)] = 212867, - [SMALL_STATE(7197)] = 212880, - [SMALL_STATE(7198)] = 212893, - [SMALL_STATE(7199)] = 212906, - [SMALL_STATE(7200)] = 212919, - [SMALL_STATE(7201)] = 212932, - [SMALL_STATE(7202)] = 212945, - [SMALL_STATE(7203)] = 212958, - [SMALL_STATE(7204)] = 212971, - [SMALL_STATE(7205)] = 212984, - [SMALL_STATE(7206)] = 212997, - [SMALL_STATE(7207)] = 213010, - [SMALL_STATE(7208)] = 213023, - [SMALL_STATE(7209)] = 213036, - [SMALL_STATE(7210)] = 213049, - [SMALL_STATE(7211)] = 213062, - [SMALL_STATE(7212)] = 213075, - [SMALL_STATE(7213)] = 213088, - [SMALL_STATE(7214)] = 213101, - [SMALL_STATE(7215)] = 213114, - [SMALL_STATE(7216)] = 213127, - [SMALL_STATE(7217)] = 213140, - [SMALL_STATE(7218)] = 213153, - [SMALL_STATE(7219)] = 213166, - [SMALL_STATE(7220)] = 213179, - [SMALL_STATE(7221)] = 213192, - [SMALL_STATE(7222)] = 213205, - [SMALL_STATE(7223)] = 213218, - [SMALL_STATE(7224)] = 213231, - [SMALL_STATE(7225)] = 213244, - [SMALL_STATE(7226)] = 213257, - [SMALL_STATE(7227)] = 213270, - [SMALL_STATE(7228)] = 213283, - [SMALL_STATE(7229)] = 213296, - [SMALL_STATE(7230)] = 213309, - [SMALL_STATE(7231)] = 213322, - [SMALL_STATE(7232)] = 213335, - [SMALL_STATE(7233)] = 213348, - [SMALL_STATE(7234)] = 213361, - [SMALL_STATE(7235)] = 213374, - [SMALL_STATE(7236)] = 213387, - [SMALL_STATE(7237)] = 213400, - [SMALL_STATE(7238)] = 213413, - [SMALL_STATE(7239)] = 213426, - [SMALL_STATE(7240)] = 213439, - [SMALL_STATE(7241)] = 213452, - [SMALL_STATE(7242)] = 213465, - [SMALL_STATE(7243)] = 213478, - [SMALL_STATE(7244)] = 213491, - [SMALL_STATE(7245)] = 213504, - [SMALL_STATE(7246)] = 213517, - [SMALL_STATE(7247)] = 213530, - [SMALL_STATE(7248)] = 213543, - [SMALL_STATE(7249)] = 213556, - [SMALL_STATE(7250)] = 213569, - [SMALL_STATE(7251)] = 213582, - [SMALL_STATE(7252)] = 213595, - [SMALL_STATE(7253)] = 213608, - [SMALL_STATE(7254)] = 213621, - [SMALL_STATE(7255)] = 213634, - [SMALL_STATE(7256)] = 213647, - [SMALL_STATE(7257)] = 213660, - [SMALL_STATE(7258)] = 213673, - [SMALL_STATE(7259)] = 213686, - [SMALL_STATE(7260)] = 213699, - [SMALL_STATE(7261)] = 213712, - [SMALL_STATE(7262)] = 213725, - [SMALL_STATE(7263)] = 213738, - [SMALL_STATE(7264)] = 213751, - [SMALL_STATE(7265)] = 213764, - [SMALL_STATE(7266)] = 213777, - [SMALL_STATE(7267)] = 213790, - [SMALL_STATE(7268)] = 213803, - [SMALL_STATE(7269)] = 213816, - [SMALL_STATE(7270)] = 213829, - [SMALL_STATE(7271)] = 213842, - [SMALL_STATE(7272)] = 213855, - [SMALL_STATE(7273)] = 213868, - [SMALL_STATE(7274)] = 213881, - [SMALL_STATE(7275)] = 213894, - [SMALL_STATE(7276)] = 213907, - [SMALL_STATE(7277)] = 213920, - [SMALL_STATE(7278)] = 213933, - [SMALL_STATE(7279)] = 213946, - [SMALL_STATE(7280)] = 213959, - [SMALL_STATE(7281)] = 213972, - [SMALL_STATE(7282)] = 213985, - [SMALL_STATE(7283)] = 213998, - [SMALL_STATE(7284)] = 214011, - [SMALL_STATE(7285)] = 214024, - [SMALL_STATE(7286)] = 214037, - [SMALL_STATE(7287)] = 214050, - [SMALL_STATE(7288)] = 214063, - [SMALL_STATE(7289)] = 214076, - [SMALL_STATE(7290)] = 214089, - [SMALL_STATE(7291)] = 214102, - [SMALL_STATE(7292)] = 214115, - [SMALL_STATE(7293)] = 214128, - [SMALL_STATE(7294)] = 214141, - [SMALL_STATE(7295)] = 214154, - [SMALL_STATE(7296)] = 214167, - [SMALL_STATE(7297)] = 214180, - [SMALL_STATE(7298)] = 214193, - [SMALL_STATE(7299)] = 214206, - [SMALL_STATE(7300)] = 214219, - [SMALL_STATE(7301)] = 214232, - [SMALL_STATE(7302)] = 214245, - [SMALL_STATE(7303)] = 214258, - [SMALL_STATE(7304)] = 214271, - [SMALL_STATE(7305)] = 214284, - [SMALL_STATE(7306)] = 214297, - [SMALL_STATE(7307)] = 214310, - [SMALL_STATE(7308)] = 214323, - [SMALL_STATE(7309)] = 214336, - [SMALL_STATE(7310)] = 214349, - [SMALL_STATE(7311)] = 214362, - [SMALL_STATE(7312)] = 214375, - [SMALL_STATE(7313)] = 214388, - [SMALL_STATE(7314)] = 214401, - [SMALL_STATE(7315)] = 214414, - [SMALL_STATE(7316)] = 214427, - [SMALL_STATE(7317)] = 214440, - [SMALL_STATE(7318)] = 214453, - [SMALL_STATE(7319)] = 214466, - [SMALL_STATE(7320)] = 214479, - [SMALL_STATE(7321)] = 214492, - [SMALL_STATE(7322)] = 214505, - [SMALL_STATE(7323)] = 214518, - [SMALL_STATE(7324)] = 214531, - [SMALL_STATE(7325)] = 214544, - [SMALL_STATE(7326)] = 214557, - [SMALL_STATE(7327)] = 214570, - [SMALL_STATE(7328)] = 214583, - [SMALL_STATE(7329)] = 214596, - [SMALL_STATE(7330)] = 214609, - [SMALL_STATE(7331)] = 214622, - [SMALL_STATE(7332)] = 214635, - [SMALL_STATE(7333)] = 214648, - [SMALL_STATE(7334)] = 214661, - [SMALL_STATE(7335)] = 214674, - [SMALL_STATE(7336)] = 214687, - [SMALL_STATE(7337)] = 214700, - [SMALL_STATE(7338)] = 214713, - [SMALL_STATE(7339)] = 214726, - [SMALL_STATE(7340)] = 214739, - [SMALL_STATE(7341)] = 214752, - [SMALL_STATE(7342)] = 214765, - [SMALL_STATE(7343)] = 214778, - [SMALL_STATE(7344)] = 214791, - [SMALL_STATE(7345)] = 214804, - [SMALL_STATE(7346)] = 214817, - [SMALL_STATE(7347)] = 214830, - [SMALL_STATE(7348)] = 214843, - [SMALL_STATE(7349)] = 214856, - [SMALL_STATE(7350)] = 214869, - [SMALL_STATE(7351)] = 214882, - [SMALL_STATE(7352)] = 214895, - [SMALL_STATE(7353)] = 214908, - [SMALL_STATE(7354)] = 214921, - [SMALL_STATE(7355)] = 214934, - [SMALL_STATE(7356)] = 214947, - [SMALL_STATE(7357)] = 214960, - [SMALL_STATE(7358)] = 214973, - [SMALL_STATE(7359)] = 214986, - [SMALL_STATE(7360)] = 214999, - [SMALL_STATE(7361)] = 215012, - [SMALL_STATE(7362)] = 215025, - [SMALL_STATE(7363)] = 215038, - [SMALL_STATE(7364)] = 215051, - [SMALL_STATE(7365)] = 215064, - [SMALL_STATE(7366)] = 215077, - [SMALL_STATE(7367)] = 215090, - [SMALL_STATE(7368)] = 215103, - [SMALL_STATE(7369)] = 215116, - [SMALL_STATE(7370)] = 215129, - [SMALL_STATE(7371)] = 215142, - [SMALL_STATE(7372)] = 215155, - [SMALL_STATE(7373)] = 215168, - [SMALL_STATE(7374)] = 215181, - [SMALL_STATE(7375)] = 215194, - [SMALL_STATE(7376)] = 215207, - [SMALL_STATE(7377)] = 215220, - [SMALL_STATE(7378)] = 215233, - [SMALL_STATE(7379)] = 215246, - [SMALL_STATE(7380)] = 215259, - [SMALL_STATE(7381)] = 215272, - [SMALL_STATE(7382)] = 215285, - [SMALL_STATE(7383)] = 215298, - [SMALL_STATE(7384)] = 215311, - [SMALL_STATE(7385)] = 215324, - [SMALL_STATE(7386)] = 215337, - [SMALL_STATE(7387)] = 215350, - [SMALL_STATE(7388)] = 215363, - [SMALL_STATE(7389)] = 215376, - [SMALL_STATE(7390)] = 215389, - [SMALL_STATE(7391)] = 215402, - [SMALL_STATE(7392)] = 215415, - [SMALL_STATE(7393)] = 215428, - [SMALL_STATE(7394)] = 215441, - [SMALL_STATE(7395)] = 215454, - [SMALL_STATE(7396)] = 215467, - [SMALL_STATE(7397)] = 215480, - [SMALL_STATE(7398)] = 215493, - [SMALL_STATE(7399)] = 215506, - [SMALL_STATE(7400)] = 215519, - [SMALL_STATE(7401)] = 215532, - [SMALL_STATE(7402)] = 215545, - [SMALL_STATE(7403)] = 215558, - [SMALL_STATE(7404)] = 215571, - [SMALL_STATE(7405)] = 215584, - [SMALL_STATE(7406)] = 215597, - [SMALL_STATE(7407)] = 215610, - [SMALL_STATE(7408)] = 215623, - [SMALL_STATE(7409)] = 215636, - [SMALL_STATE(7410)] = 215649, - [SMALL_STATE(7411)] = 215662, - [SMALL_STATE(7412)] = 215675, - [SMALL_STATE(7413)] = 215688, - [SMALL_STATE(7414)] = 215701, - [SMALL_STATE(7415)] = 215714, - [SMALL_STATE(7416)] = 215727, - [SMALL_STATE(7417)] = 215740, - [SMALL_STATE(7418)] = 215753, - [SMALL_STATE(7419)] = 215766, - [SMALL_STATE(7420)] = 215779, - [SMALL_STATE(7421)] = 215792, - [SMALL_STATE(7422)] = 215805, - [SMALL_STATE(7423)] = 215818, - [SMALL_STATE(7424)] = 215831, - [SMALL_STATE(7425)] = 215844, - [SMALL_STATE(7426)] = 215857, - [SMALL_STATE(7427)] = 215870, - [SMALL_STATE(7428)] = 215883, - [SMALL_STATE(7429)] = 215896, - [SMALL_STATE(7430)] = 215909, - [SMALL_STATE(7431)] = 215922, - [SMALL_STATE(7432)] = 215935, + [SMALL_STATE(2647)] = 61682, + [SMALL_STATE(2648)] = 61766, + [SMALL_STATE(2649)] = 61824, + [SMALL_STATE(2650)] = 61882, + [SMALL_STATE(2651)] = 61940, + [SMALL_STATE(2652)] = 61998, + [SMALL_STATE(2653)] = 62114, + [SMALL_STATE(2654)] = 62233, + [SMALL_STATE(2655)] = 62318, + [SMALL_STATE(2656)] = 62433, + [SMALL_STATE(2657)] = 62538, + [SMALL_STATE(2658)] = 62641, + [SMALL_STATE(2659)] = 62760, + [SMALL_STATE(2660)] = 62839, + [SMALL_STATE(2661)] = 62954, + [SMALL_STATE(2662)] = 63073, + [SMALL_STATE(2663)] = 63162, + [SMALL_STATE(2664)] = 63241, + [SMALL_STATE(2665)] = 63344, + [SMALL_STATE(2666)] = 63449, + [SMALL_STATE(2667)] = 63534, + [SMALL_STATE(2668)] = 63631, + [SMALL_STATE(2669)] = 63730, + [SMALL_STATE(2670)] = 63831, + [SMALL_STATE(2671)] = 63920, + [SMALL_STATE(2672)] = 64035, + [SMALL_STATE(2673)] = 64118, + [SMALL_STATE(2674)] = 64233, + [SMALL_STATE(2675)] = 64318, + [SMALL_STATE(2676)] = 64417, + [SMALL_STATE(2677)] = 64510, + [SMALL_STATE(2678)] = 64587, + [SMALL_STATE(2679)] = 64688, + [SMALL_STATE(2680)] = 64807, + [SMALL_STATE(2681)] = 64890, + [SMALL_STATE(2682)] = 64975, + [SMALL_STATE(2683)] = 65082, + [SMALL_STATE(2684)] = 65197, + [SMALL_STATE(2685)] = 65312, + [SMALL_STATE(2686)] = 65427, + [SMALL_STATE(2687)] = 65546, + [SMALL_STATE(2688)] = 65609, + [SMALL_STATE(2689)] = 65728, + [SMALL_STATE(2690)] = 65821, + [SMALL_STATE(2691)] = 65936, + [SMALL_STATE(2692)] = 66055, + [SMALL_STATE(2693)] = 66138, + [SMALL_STATE(2694)] = 66199, + [SMALL_STATE(2695)] = 66306, + [SMALL_STATE(2696)] = 66375, + [SMALL_STATE(2697)] = 66494, + [SMALL_STATE(2698)] = 66613, + [SMALL_STATE(2699)] = 66728, + [SMALL_STATE(2700)] = 66843, + [SMALL_STATE(2701)] = 66958, + [SMALL_STATE(2702)] = 67073, + [SMALL_STATE(2703)] = 67188, + [SMALL_STATE(2704)] = 67303, + [SMALL_STATE(2705)] = 67422, + [SMALL_STATE(2706)] = 67507, + [SMALL_STATE(2707)] = 67564, + [SMALL_STATE(2708)] = 67683, + [SMALL_STATE(2709)] = 67740, + [SMALL_STATE(2710)] = 67797, + [SMALL_STATE(2711)] = 67912, + [SMALL_STATE(2712)] = 68027, + [SMALL_STATE(2713)] = 68142, + [SMALL_STATE(2714)] = 68257, + [SMALL_STATE(2715)] = 68376, + [SMALL_STATE(2716)] = 68473, + [SMALL_STATE(2717)] = 68592, + [SMALL_STATE(2718)] = 68707, + [SMALL_STATE(2719)] = 68826, + [SMALL_STATE(2720)] = 68945, + [SMALL_STATE(2721)] = 69020, + [SMALL_STATE(2722)] = 69139, + [SMALL_STATE(2723)] = 69254, + [SMALL_STATE(2724)] = 69371, + [SMALL_STATE(2725)] = 69458, + [SMALL_STATE(2726)] = 69515, + [SMALL_STATE(2727)] = 69582, + [SMALL_STATE(2728)] = 69701, + [SMALL_STATE(2729)] = 69758, + [SMALL_STATE(2730)] = 69877, + [SMALL_STATE(2731)] = 69992, + [SMALL_STATE(2732)] = 70055, + [SMALL_STATE(2733)] = 70170, + [SMALL_STATE(2734)] = 70285, + [SMALL_STATE(2735)] = 70404, + [SMALL_STATE(2736)] = 70521, + [SMALL_STATE(2737)] = 70636, + [SMALL_STATE(2738)] = 70697, + [SMALL_STATE(2739)] = 70812, + [SMALL_STATE(2740)] = 70931, + [SMALL_STATE(2741)] = 71050, + [SMALL_STATE(2742)] = 71169, + [SMALL_STATE(2743)] = 71236, + [SMALL_STATE(2744)] = 71301, + [SMALL_STATE(2745)] = 71382, + [SMALL_STATE(2746)] = 71501, + [SMALL_STATE(2747)] = 71616, + [SMALL_STATE(2748)] = 71697, + [SMALL_STATE(2749)] = 71816, + [SMALL_STATE(2750)] = 71873, + [SMALL_STATE(2751)] = 71942, + [SMALL_STATE(2752)] = 72001, + [SMALL_STATE(2753)] = 72082, + [SMALL_STATE(2754)] = 72197, + [SMALL_STATE(2755)] = 72312, + [SMALL_STATE(2756)] = 72429, + [SMALL_STATE(2757)] = 72546, + [SMALL_STATE(2758)] = 72663, + [SMALL_STATE(2759)] = 72726, + [SMALL_STATE(2760)] = 72791, + [SMALL_STATE(2761)] = 72872, + [SMALL_STATE(2762)] = 72991, + [SMALL_STATE(2763)] = 73052, + [SMALL_STATE(2764)] = 73133, + [SMALL_STATE(2765)] = 73196, + [SMALL_STATE(2766)] = 73257, + [SMALL_STATE(2767)] = 73372, + [SMALL_STATE(2768)] = 73491, + [SMALL_STATE(2769)] = 73606, + [SMALL_STATE(2770)] = 73671, + [SMALL_STATE(2771)] = 73786, + [SMALL_STATE(2772)] = 73905, + [SMALL_STATE(2773)] = 73964, + [SMALL_STATE(2774)] = 74083, + [SMALL_STATE(2775)] = 74198, + [SMALL_STATE(2776)] = 74257, + [SMALL_STATE(2777)] = 74342, + [SMALL_STATE(2778)] = 74417, + [SMALL_STATE(2779)] = 74532, + [SMALL_STATE(2780)] = 74615, + [SMALL_STATE(2781)] = 74692, + [SMALL_STATE(2782)] = 74748, + [SMALL_STATE(2783)] = 74862, + [SMALL_STATE(2784)] = 74976, + [SMALL_STATE(2785)] = 75032, + [SMALL_STATE(2786)] = 75090, + [SMALL_STATE(2787)] = 75146, + [SMALL_STATE(2788)] = 75216, + [SMALL_STATE(2789)] = 75272, + [SMALL_STATE(2790)] = 75362, + [SMALL_STATE(2791)] = 75418, + [SMALL_STATE(2792)] = 75474, + [SMALL_STATE(2793)] = 75530, + [SMALL_STATE(2794)] = 75586, + [SMALL_STATE(2795)] = 75642, + [SMALL_STATE(2796)] = 75698, + [SMALL_STATE(2797)] = 75754, + [SMALL_STATE(2798)] = 75810, + [SMALL_STATE(2799)] = 75866, + [SMALL_STATE(2800)] = 75922, + [SMALL_STATE(2801)] = 75978, + [SMALL_STATE(2802)] = 76034, + [SMALL_STATE(2803)] = 76102, + [SMALL_STATE(2804)] = 76158, + [SMALL_STATE(2805)] = 76216, + [SMALL_STATE(2806)] = 76272, + [SMALL_STATE(2807)] = 76328, + [SMALL_STATE(2808)] = 76384, + [SMALL_STATE(2809)] = 76440, + [SMALL_STATE(2810)] = 76530, + [SMALL_STATE(2811)] = 76644, + [SMALL_STATE(2812)] = 76706, + [SMALL_STATE(2813)] = 76820, + [SMALL_STATE(2814)] = 76908, + [SMALL_STATE(2815)] = 76964, + [SMALL_STATE(2816)] = 77078, + [SMALL_STATE(2817)] = 77148, + [SMALL_STATE(2818)] = 77262, + [SMALL_STATE(2819)] = 77324, + [SMALL_STATE(2820)] = 77438, + [SMALL_STATE(2821)] = 77494, + [SMALL_STATE(2822)] = 77550, + [SMALL_STATE(2823)] = 77606, + [SMALL_STATE(2824)] = 77670, + [SMALL_STATE(2825)] = 77784, + [SMALL_STATE(2826)] = 77844, + [SMALL_STATE(2827)] = 77900, + [SMALL_STATE(2828)] = 77978, + [SMALL_STATE(2829)] = 78068, + [SMALL_STATE(2830)] = 78150, + [SMALL_STATE(2831)] = 78252, + [SMALL_STATE(2832)] = 78356, + [SMALL_STATE(2833)] = 78446, + [SMALL_STATE(2834)] = 78510, + [SMALL_STATE(2835)] = 78624, + [SMALL_STATE(2836)] = 78708, + [SMALL_STATE(2837)] = 78770, + [SMALL_STATE(2838)] = 78826, + [SMALL_STATE(2839)] = 78906, + [SMALL_STATE(2840)] = 78968, + [SMALL_STATE(2841)] = 79046, + [SMALL_STATE(2842)] = 79102, + [SMALL_STATE(2843)] = 79158, + [SMALL_STATE(2844)] = 79220, + [SMALL_STATE(2845)] = 79278, + [SMALL_STATE(2846)] = 79334, + [SMALL_STATE(2847)] = 79392, + [SMALL_STATE(2848)] = 79448, + [SMALL_STATE(2849)] = 79504, + [SMALL_STATE(2850)] = 79562, + [SMALL_STATE(2851)] = 79618, + [SMALL_STATE(2852)] = 79674, + [SMALL_STATE(2853)] = 79730, + [SMALL_STATE(2854)] = 79788, + [SMALL_STATE(2855)] = 79844, + [SMALL_STATE(2856)] = 79900, + [SMALL_STATE(2857)] = 79962, + [SMALL_STATE(2858)] = 80018, + [SMALL_STATE(2859)] = 80086, + [SMALL_STATE(2860)] = 80154, + [SMALL_STATE(2861)] = 80210, + [SMALL_STATE(2862)] = 80266, + [SMALL_STATE(2863)] = 80322, + [SMALL_STATE(2864)] = 80378, + [SMALL_STATE(2865)] = 80436, + [SMALL_STATE(2866)] = 80492, + [SMALL_STATE(2867)] = 80548, + [SMALL_STATE(2868)] = 80604, + [SMALL_STATE(2869)] = 80666, + [SMALL_STATE(2870)] = 80728, + [SMALL_STATE(2871)] = 80786, + [SMALL_STATE(2872)] = 80844, + [SMALL_STATE(2873)] = 80958, + [SMALL_STATE(2874)] = 81014, + [SMALL_STATE(2875)] = 81070, + [SMALL_STATE(2876)] = 81126, + [SMALL_STATE(2877)] = 81182, + [SMALL_STATE(2878)] = 81238, + [SMALL_STATE(2879)] = 81294, + [SMALL_STATE(2880)] = 81350, + [SMALL_STATE(2881)] = 81406, + [SMALL_STATE(2882)] = 81462, + [SMALL_STATE(2883)] = 81518, + [SMALL_STATE(2884)] = 81596, + [SMALL_STATE(2885)] = 81652, + [SMALL_STATE(2886)] = 81742, + [SMALL_STATE(2887)] = 81856, + [SMALL_STATE(2888)] = 81970, + [SMALL_STATE(2889)] = 82066, + [SMALL_STATE(2890)] = 82164, + [SMALL_STATE(2891)] = 82264, + [SMALL_STATE(2892)] = 82346, + [SMALL_STATE(2893)] = 82408, + [SMALL_STATE(2894)] = 82464, + [SMALL_STATE(2895)] = 82548, + [SMALL_STATE(2896)] = 82640, + [SMALL_STATE(2897)] = 82720, + [SMALL_STATE(2898)] = 82780, + [SMALL_STATE(2899)] = 82858, + [SMALL_STATE(2900)] = 82914, + [SMALL_STATE(2901)] = 82972, + [SMALL_STATE(2902)] = 83086, + [SMALL_STATE(2903)] = 83142, + [SMALL_STATE(2904)] = 83198, + [SMALL_STATE(2905)] = 83280, + [SMALL_STATE(2906)] = 83396, + [SMALL_STATE(2907)] = 83478, + [SMALL_STATE(2908)] = 83536, + [SMALL_STATE(2909)] = 83610, + [SMALL_STATE(2910)] = 83724, + [SMALL_STATE(2911)] = 83830, + [SMALL_STATE(2912)] = 83944, + [SMALL_STATE(2913)] = 84026, + [SMALL_STATE(2914)] = 84140, + [SMALL_STATE(2915)] = 84208, + [SMALL_STATE(2916)] = 84276, + [SMALL_STATE(2917)] = 84344, + [SMALL_STATE(2918)] = 84412, + [SMALL_STATE(2919)] = 84526, + [SMALL_STATE(2920)] = 84602, + [SMALL_STATE(2921)] = 84660, + [SMALL_STATE(2922)] = 84716, + [SMALL_STATE(2923)] = 84772, + [SMALL_STATE(2924)] = 84828, + [SMALL_STATE(2925)] = 84884, + [SMALL_STATE(2926)] = 84940, + [SMALL_STATE(2927)] = 84996, + [SMALL_STATE(2928)] = 85110, + [SMALL_STATE(2929)] = 85224, + [SMALL_STATE(2930)] = 85286, + [SMALL_STATE(2931)] = 85342, + [SMALL_STATE(2932)] = 85404, + [SMALL_STATE(2933)] = 85518, + [SMALL_STATE(2934)] = 85574, + [SMALL_STATE(2935)] = 85630, + [SMALL_STATE(2936)] = 85746, + [SMALL_STATE(2937)] = 85860, + [SMALL_STATE(2938)] = 85974, + [SMALL_STATE(2939)] = 86088, + [SMALL_STATE(2940)] = 86202, + [SMALL_STATE(2941)] = 86316, + [SMALL_STATE(2942)] = 86398, + [SMALL_STATE(2943)] = 86512, + [SMALL_STATE(2944)] = 86568, + [SMALL_STATE(2945)] = 86630, + [SMALL_STATE(2946)] = 86746, + [SMALL_STATE(2947)] = 86802, + [SMALL_STATE(2948)] = 86864, + [SMALL_STATE(2949)] = 86928, + [SMALL_STATE(2950)] = 86990, + [SMALL_STATE(2951)] = 87080, + [SMALL_STATE(2952)] = 87136, + [SMALL_STATE(2953)] = 87194, + [SMALL_STATE(2954)] = 87308, + [SMALL_STATE(2955)] = 87364, + [SMALL_STATE(2956)] = 87420, + [SMALL_STATE(2957)] = 87534, + [SMALL_STATE(2958)] = 87590, + [SMALL_STATE(2959)] = 87646, + [SMALL_STATE(2960)] = 87702, + [SMALL_STATE(2961)] = 87758, + [SMALL_STATE(2962)] = 87874, + [SMALL_STATE(2963)] = 87932, + [SMALL_STATE(2964)] = 88046, + [SMALL_STATE(2965)] = 88162, + [SMALL_STATE(2966)] = 88224, + [SMALL_STATE(2967)] = 88286, + [SMALL_STATE(2968)] = 88342, + [SMALL_STATE(2969)] = 88406, + [SMALL_STATE(2970)] = 88474, + [SMALL_STATE(2971)] = 88542, + [SMALL_STATE(2972)] = 88600, + [SMALL_STATE(2973)] = 88656, + [SMALL_STATE(2974)] = 88712, + [SMALL_STATE(2975)] = 88780, + [SMALL_STATE(2976)] = 88894, + [SMALL_STATE(2977)] = 88976, + [SMALL_STATE(2978)] = 89036, + [SMALL_STATE(2979)] = 89096, + [SMALL_STATE(2980)] = 89158, + [SMALL_STATE(2981)] = 89214, + [SMALL_STATE(2982)] = 89278, + [SMALL_STATE(2983)] = 89334, + [SMALL_STATE(2984)] = 89392, + [SMALL_STATE(2985)] = 89448, + [SMALL_STATE(2986)] = 89526, + [SMALL_STATE(2987)] = 89616, + [SMALL_STATE(2988)] = 89698, + [SMALL_STATE(2989)] = 89814, + [SMALL_STATE(2990)] = 89878, + [SMALL_STATE(2991)] = 89960, + [SMALL_STATE(2992)] = 90040, + [SMALL_STATE(2993)] = 90122, + [SMALL_STATE(2994)] = 90200, + [SMALL_STATE(2995)] = 90313, + [SMALL_STATE(2996)] = 90396, + [SMALL_STATE(2997)] = 90509, + [SMALL_STATE(2998)] = 90566, + [SMALL_STATE(2999)] = 90639, + [SMALL_STATE(3000)] = 90752, + [SMALL_STATE(3001)] = 90819, + [SMALL_STATE(3002)] = 90874, + [SMALL_STATE(3003)] = 90947, + [SMALL_STATE(3004)] = 91002, + [SMALL_STATE(3005)] = 91063, + [SMALL_STATE(3006)] = 91126, + [SMALL_STATE(3007)] = 91183, + [SMALL_STATE(3008)] = 91244, + [SMALL_STATE(3009)] = 91325, + [SMALL_STATE(3010)] = 91408, + [SMALL_STATE(3011)] = 91469, + [SMALL_STATE(3012)] = 91524, + [SMALL_STATE(3013)] = 91579, + [SMALL_STATE(3014)] = 91634, + [SMALL_STATE(3015)] = 91689, + [SMALL_STATE(3016)] = 91762, + [SMALL_STATE(3017)] = 91829, + [SMALL_STATE(3018)] = 91896, + [SMALL_STATE(3019)] = 91951, + [SMALL_STATE(3020)] = 92006, + [SMALL_STATE(3021)] = 92119, + [SMALL_STATE(3022)] = 92212, + [SMALL_STATE(3023)] = 92273, + [SMALL_STATE(3024)] = 92332, + [SMALL_STATE(3025)] = 92445, + [SMALL_STATE(3026)] = 92504, + [SMALL_STATE(3027)] = 92561, + [SMALL_STATE(3028)] = 92620, + [SMALL_STATE(3029)] = 92733, + [SMALL_STATE(3030)] = 92820, + [SMALL_STATE(3031)] = 92897, + [SMALL_STATE(3032)] = 92998, + [SMALL_STATE(3033)] = 93101, + [SMALL_STATE(3034)] = 93184, + [SMALL_STATE(3035)] = 93251, + [SMALL_STATE(3036)] = 93346, + [SMALL_STATE(3037)] = 93443, + [SMALL_STATE(3038)] = 93510, + [SMALL_STATE(3039)] = 93577, + [SMALL_STATE(3040)] = 93676, + [SMALL_STATE(3041)] = 93757, + [SMALL_STATE(3042)] = 93840, + [SMALL_STATE(3043)] = 93899, + [SMALL_STATE(3044)] = 93958, + [SMALL_STATE(3045)] = 94021, + [SMALL_STATE(3046)] = 94084, + [SMALL_STATE(3047)] = 94175, + [SMALL_STATE(3048)] = 94280, + [SMALL_STATE(3049)] = 94353, + [SMALL_STATE(3050)] = 94466, + [SMALL_STATE(3051)] = 94579, + [SMALL_STATE(3052)] = 94636, + [SMALL_STATE(3053)] = 94693, + [SMALL_STATE(3054)] = 94760, + [SMALL_STATE(3055)] = 94873, + [SMALL_STATE(3056)] = 94928, + [SMALL_STATE(3057)] = 94987, + [SMALL_STATE(3058)] = 95046, + [SMALL_STATE(3059)] = 95105, + [SMALL_STATE(3060)] = 95172, + [SMALL_STATE(3061)] = 95285, + [SMALL_STATE(3062)] = 95340, + [SMALL_STATE(3063)] = 95395, + [SMALL_STATE(3064)] = 95450, + [SMALL_STATE(3065)] = 95509, + [SMALL_STATE(3066)] = 95622, + [SMALL_STATE(3067)] = 95681, + [SMALL_STATE(3068)] = 95794, + [SMALL_STATE(3069)] = 95907, + [SMALL_STATE(3070)] = 96020, + [SMALL_STATE(3071)] = 96133, + [SMALL_STATE(3072)] = 96246, + [SMALL_STATE(3073)] = 96359, + [SMALL_STATE(3074)] = 96418, + [SMALL_STATE(3075)] = 96477, + [SMALL_STATE(3076)] = 96534, + [SMALL_STATE(3077)] = 96595, + [SMALL_STATE(3078)] = 96668, + [SMALL_STATE(3079)] = 96743, + [SMALL_STATE(3080)] = 96800, + [SMALL_STATE(3081)] = 96873, + [SMALL_STATE(3082)] = 96948, + [SMALL_STATE(3083)] = 97005, + [SMALL_STATE(3084)] = 97066, + [SMALL_STATE(3085)] = 97125, + [SMALL_STATE(3086)] = 97182, + [SMALL_STATE(3087)] = 97295, + [SMALL_STATE(3088)] = 97352, + [SMALL_STATE(3089)] = 97425, + [SMALL_STATE(3090)] = 97488, + [SMALL_STATE(3091)] = 97603, + [SMALL_STATE(3092)] = 97666, + [SMALL_STATE(3093)] = 97721, + [SMALL_STATE(3094)] = 97784, + [SMALL_STATE(3095)] = 97839, + [SMALL_STATE(3096)] = 97952, + [SMALL_STATE(3097)] = 98065, + [SMALL_STATE(3098)] = 98178, + [SMALL_STATE(3099)] = 98291, + [SMALL_STATE(3100)] = 98404, + [SMALL_STATE(3101)] = 98517, + [SMALL_STATE(3102)] = 98630, + [SMALL_STATE(3103)] = 98743, + [SMALL_STATE(3104)] = 98806, + [SMALL_STATE(3105)] = 98865, + [SMALL_STATE(3106)] = 98920, + [SMALL_STATE(3107)] = 98975, + [SMALL_STATE(3108)] = 99080, + [SMALL_STATE(3109)] = 99171, + [SMALL_STATE(3110)] = 99254, + [SMALL_STATE(3111)] = 99313, + [SMALL_STATE(3112)] = 99372, + [SMALL_STATE(3113)] = 99431, + [SMALL_STATE(3114)] = 99512, + [SMALL_STATE(3115)] = 99611, + [SMALL_STATE(3116)] = 99708, + [SMALL_STATE(3117)] = 99803, + [SMALL_STATE(3118)] = 99864, + [SMALL_STATE(3119)] = 99937, + [SMALL_STATE(3120)] = 99992, + [SMALL_STATE(3121)] = 100095, + [SMALL_STATE(3122)] = 100196, + [SMALL_STATE(3123)] = 100273, + [SMALL_STATE(3124)] = 100348, + [SMALL_STATE(3125)] = 100411, + [SMALL_STATE(3126)] = 100466, + [SMALL_STATE(3127)] = 100553, + [SMALL_STATE(3128)] = 100666, + [SMALL_STATE(3129)] = 100779, + [SMALL_STATE(3130)] = 100892, + [SMALL_STATE(3131)] = 101005, + [SMALL_STATE(3132)] = 101060, + [SMALL_STATE(3133)] = 101173, + [SMALL_STATE(3134)] = 101240, + [SMALL_STATE(3135)] = 101313, + [SMALL_STATE(3136)] = 101376, + [SMALL_STATE(3137)] = 101489, + [SMALL_STATE(3138)] = 101570, + [SMALL_STATE(3139)] = 101645, + [SMALL_STATE(3140)] = 101720, + [SMALL_STATE(3141)] = 101775, + [SMALL_STATE(3142)] = 101836, + [SMALL_STATE(3143)] = 101893, + [SMALL_STATE(3144)] = 101950, + [SMALL_STATE(3145)] = 102009, + [SMALL_STATE(3146)] = 102082, + [SMALL_STATE(3147)] = 102155, + [SMALL_STATE(3148)] = 102268, + [SMALL_STATE(3149)] = 102343, + [SMALL_STATE(3150)] = 102418, + [SMALL_STATE(3151)] = 102501, + [SMALL_STATE(3152)] = 102574, + [SMALL_STATE(3153)] = 102655, + [SMALL_STATE(3154)] = 102768, + [SMALL_STATE(3155)] = 102841, + [SMALL_STATE(3156)] = 102898, + [SMALL_STATE(3157)] = 102953, + [SMALL_STATE(3158)] = 103012, + [SMALL_STATE(3159)] = 103067, + [SMALL_STATE(3160)] = 103126, + [SMALL_STATE(3161)] = 103181, + [SMALL_STATE(3162)] = 103236, + [SMALL_STATE(3163)] = 103291, + [SMALL_STATE(3164)] = 103346, + [SMALL_STATE(3165)] = 103401, + [SMALL_STATE(3166)] = 103514, + [SMALL_STATE(3167)] = 103569, + [SMALL_STATE(3168)] = 103624, + [SMALL_STATE(3169)] = 103737, + [SMALL_STATE(3170)] = 103796, + [SMALL_STATE(3171)] = 103859, + [SMALL_STATE(3172)] = 103932, + [SMALL_STATE(3173)] = 103997, + [SMALL_STATE(3174)] = 104070, + [SMALL_STATE(3175)] = 104127, + [SMALL_STATE(3176)] = 104182, + [SMALL_STATE(3177)] = 104237, + [SMALL_STATE(3178)] = 104350, + [SMALL_STATE(3179)] = 104405, + [SMALL_STATE(3180)] = 104460, + [SMALL_STATE(3181)] = 104515, + [SMALL_STATE(3182)] = 104570, + [SMALL_STATE(3183)] = 104629, + [SMALL_STATE(3184)] = 104684, + [SMALL_STATE(3185)] = 104749, + [SMALL_STATE(3186)] = 104814, + [SMALL_STATE(3187)] = 104869, + [SMALL_STATE(3188)] = 104928, + [SMALL_STATE(3189)] = 104987, + [SMALL_STATE(3190)] = 105060, + [SMALL_STATE(3191)] = 105173, + [SMALL_STATE(3192)] = 105254, + [SMALL_STATE(3193)] = 105329, + [SMALL_STATE(3194)] = 105390, + [SMALL_STATE(3195)] = 105465, + [SMALL_STATE(3196)] = 105538, + [SMALL_STATE(3197)] = 105593, + [SMALL_STATE(3198)] = 105648, + [SMALL_STATE(3199)] = 105703, + [SMALL_STATE(3200)] = 105758, + [SMALL_STATE(3201)] = 105839, + [SMALL_STATE(3202)] = 105922, + [SMALL_STATE(3203)] = 105989, + [SMALL_STATE(3204)] = 106102, + [SMALL_STATE(3205)] = 106185, + [SMALL_STATE(3206)] = 106266, + [SMALL_STATE(3207)] = 106321, + [SMALL_STATE(3208)] = 106380, + [SMALL_STATE(3209)] = 106447, + [SMALL_STATE(3210)] = 106506, + [SMALL_STATE(3211)] = 106565, + [SMALL_STATE(3212)] = 106624, + [SMALL_STATE(3213)] = 106737, + [SMALL_STATE(3214)] = 106796, + [SMALL_STATE(3215)] = 106863, + [SMALL_STATE(3216)] = 106976, + [SMALL_STATE(3217)] = 107089, + [SMALL_STATE(3218)] = 107202, + [SMALL_STATE(3219)] = 107315, + [SMALL_STATE(3220)] = 107428, + [SMALL_STATE(3221)] = 107515, + [SMALL_STATE(3222)] = 107588, + [SMALL_STATE(3223)] = 107661, + [SMALL_STATE(3224)] = 107718, + [SMALL_STATE(3225)] = 107785, + [SMALL_STATE(3226)] = 107852, + [SMALL_STATE(3227)] = 107929, + [SMALL_STATE(3228)] = 108012, + [SMALL_STATE(3229)] = 108093, + [SMALL_STATE(3230)] = 108176, + [SMALL_STATE(3231)] = 108257, + [SMALL_STATE(3232)] = 108358, + [SMALL_STATE(3233)] = 108433, + [SMALL_STATE(3234)] = 108536, + [SMALL_STATE(3235)] = 108619, + [SMALL_STATE(3236)] = 108714, + [SMALL_STATE(3237)] = 108769, + [SMALL_STATE(3238)] = 108844, + [SMALL_STATE(3239)] = 108941, + [SMALL_STATE(3240)] = 108996, + [SMALL_STATE(3241)] = 109051, + [SMALL_STATE(3242)] = 109150, + [SMALL_STATE(3243)] = 109227, + [SMALL_STATE(3244)] = 109288, + [SMALL_STATE(3245)] = 109369, + [SMALL_STATE(3246)] = 109426, + [SMALL_STATE(3247)] = 109509, + [SMALL_STATE(3248)] = 109600, + [SMALL_STATE(3249)] = 109665, + [SMALL_STATE(3250)] = 109740, + [SMALL_STATE(3251)] = 109845, + [SMALL_STATE(3252)] = 109920, + [SMALL_STATE(3253)] = 109975, + [SMALL_STATE(3254)] = 110050, + [SMALL_STATE(3255)] = 110163, + [SMALL_STATE(3256)] = 110276, + [SMALL_STATE(3257)] = 110349, + [SMALL_STATE(3258)] = 110424, + [SMALL_STATE(3259)] = 110507, + [SMALL_STATE(3260)] = 110562, + [SMALL_STATE(3261)] = 110617, + [SMALL_STATE(3262)] = 110672, + [SMALL_STATE(3263)] = 110753, + [SMALL_STATE(3264)] = 110812, + [SMALL_STATE(3265)] = 110867, + [SMALL_STATE(3266)] = 110922, + [SMALL_STATE(3267)] = 110995, + [SMALL_STATE(3268)] = 111050, + [SMALL_STATE(3269)] = 111107, + [SMALL_STATE(3270)] = 111220, + [SMALL_STATE(3271)] = 111333, + [SMALL_STATE(3272)] = 111446, + [SMALL_STATE(3273)] = 111519, + [SMALL_STATE(3274)] = 111632, + [SMALL_STATE(3275)] = 111745, + [SMALL_STATE(3276)] = 111858, + [SMALL_STATE(3277)] = 111971, + [SMALL_STATE(3278)] = 112046, + [SMALL_STATE(3279)] = 112119, + [SMALL_STATE(3280)] = 112174, + [SMALL_STATE(3281)] = 112255, + [SMALL_STATE(3282)] = 112330, + [SMALL_STATE(3283)] = 112405, + [SMALL_STATE(3284)] = 112480, + [SMALL_STATE(3285)] = 112562, + [SMALL_STATE(3286)] = 112672, + [SMALL_STATE(3287)] = 112728, + [SMALL_STATE(3288)] = 112796, + [SMALL_STATE(3289)] = 112864, + [SMALL_STATE(3290)] = 112974, + [SMALL_STATE(3291)] = 113036, + [SMALL_STATE(3292)] = 113146, + [SMALL_STATE(3293)] = 113214, + [SMALL_STATE(3294)] = 113324, + [SMALL_STATE(3295)] = 113386, + [SMALL_STATE(3296)] = 113496, + [SMALL_STATE(3297)] = 113564, + [SMALL_STATE(3298)] = 113622, + [SMALL_STATE(3299)] = 113732, + [SMALL_STATE(3300)] = 113800, + [SMALL_STATE(3301)] = 113876, + [SMALL_STATE(3302)] = 113932, + [SMALL_STATE(3303)] = 113998, + [SMALL_STATE(3304)] = 114066, + [SMALL_STATE(3305)] = 114128, + [SMALL_STATE(3306)] = 114230, + [SMALL_STATE(3307)] = 114288, + [SMALL_STATE(3308)] = 114356, + [SMALL_STATE(3309)] = 114454, + [SMALL_STATE(3310)] = 114534, + [SMALL_STATE(3311)] = 114592, + [SMALL_STATE(3312)] = 114676, + [SMALL_STATE(3313)] = 114744, + [SMALL_STATE(3314)] = 114854, + [SMALL_STATE(3315)] = 114930, + [SMALL_STATE(3316)] = 114986, + [SMALL_STATE(3317)] = 115062, + [SMALL_STATE(3318)] = 115130, + [SMALL_STATE(3319)] = 115240, + [SMALL_STATE(3320)] = 115350, + [SMALL_STATE(3321)] = 115460, + [SMALL_STATE(3322)] = 115516, + [SMALL_STATE(3323)] = 115584, + [SMALL_STATE(3324)] = 115656, + [SMALL_STATE(3325)] = 115766, + [SMALL_STATE(3326)] = 115826, + [SMALL_STATE(3327)] = 115886, + [SMALL_STATE(3328)] = 115954, + [SMALL_STATE(3329)] = 116034, + [SMALL_STATE(3330)] = 116090, + [SMALL_STATE(3331)] = 116166, + [SMALL_STATE(3332)] = 116234, + [SMALL_STATE(3333)] = 116294, + [SMALL_STATE(3334)] = 116356, + [SMALL_STATE(3335)] = 116456, + [SMALL_STATE(3336)] = 116524, + [SMALL_STATE(3337)] = 116586, + [SMALL_STATE(3338)] = 116660, + [SMALL_STATE(3339)] = 116736, + [SMALL_STATE(3340)] = 116812, + [SMALL_STATE(3341)] = 116880, + [SMALL_STATE(3342)] = 116948, + [SMALL_STATE(3343)] = 117042, + [SMALL_STATE(3344)] = 117152, + [SMALL_STATE(3345)] = 117228, + [SMALL_STATE(3346)] = 117338, + [SMALL_STATE(3347)] = 117394, + [SMALL_STATE(3348)] = 117462, + [SMALL_STATE(3349)] = 117530, + [SMALL_STATE(3350)] = 117598, + [SMALL_STATE(3351)] = 117680, + [SMALL_STATE(3352)] = 117748, + [SMALL_STATE(3353)] = 117858, + [SMALL_STATE(3354)] = 117926, + [SMALL_STATE(3355)] = 118016, + [SMALL_STATE(3356)] = 118126, + [SMALL_STATE(3357)] = 118230, + [SMALL_STATE(3358)] = 118286, + [SMALL_STATE(3359)] = 118354, + [SMALL_STATE(3360)] = 118414, + [SMALL_STATE(3361)] = 118524, + [SMALL_STATE(3362)] = 118600, + [SMALL_STATE(3363)] = 118696, + [SMALL_STATE(3364)] = 118758, + [SMALL_STATE(3365)] = 118820, + [SMALL_STATE(3366)] = 118888, + [SMALL_STATE(3367)] = 118974, + [SMALL_STATE(3368)] = 119042, + [SMALL_STATE(3369)] = 119124, + [SMALL_STATE(3370)] = 119212, + [SMALL_STATE(3371)] = 119285, + [SMALL_STATE(3372)] = 119344, + [SMALL_STATE(3373)] = 119417, + [SMALL_STATE(3374)] = 119476, + [SMALL_STATE(3375)] = 119535, + [SMALL_STATE(3376)] = 119590, + [SMALL_STATE(3377)] = 119649, + [SMALL_STATE(3378)] = 119718, + [SMALL_STATE(3379)] = 119787, + [SMALL_STATE(3380)] = 119848, + [SMALL_STATE(3381)] = 119907, + [SMALL_STATE(3382)] = 119962, + [SMALL_STATE(3383)] = 120017, + [SMALL_STATE(3384)] = 120072, + [SMALL_STATE(3385)] = 120131, + [SMALL_STATE(3386)] = 120206, + [SMALL_STATE(3387)] = 120261, + [SMALL_STATE(3388)] = 120334, + [SMALL_STATE(3389)] = 120403, + [SMALL_STATE(3390)] = 120458, + [SMALL_STATE(3391)] = 120531, + [SMALL_STATE(3392)] = 120586, + [SMALL_STATE(3393)] = 120679, + [SMALL_STATE(3394)] = 120734, + [SMALL_STATE(3395)] = 120789, + [SMALL_STATE(3396)] = 120866, + [SMALL_STATE(3397)] = 120945, + [SMALL_STATE(3398)] = 121004, + [SMALL_STATE(3399)] = 121079, + [SMALL_STATE(3400)] = 121138, + [SMALL_STATE(3401)] = 121193, + [SMALL_STATE(3402)] = 121252, + [SMALL_STATE(3403)] = 121321, + [SMALL_STATE(3404)] = 121376, + [SMALL_STATE(3405)] = 121449, + [SMALL_STATE(3406)] = 121522, + [SMALL_STATE(3407)] = 121581, + [SMALL_STATE(3408)] = 121636, + [SMALL_STATE(3409)] = 121705, + [SMALL_STATE(3410)] = 121771, + [SMALL_STATE(3411)] = 121825, + [SMALL_STATE(3412)] = 121891, + [SMALL_STATE(3413)] = 121957, + [SMALL_STATE(3414)] = 122023, + [SMALL_STATE(3415)] = 122085, + [SMALL_STATE(3416)] = 122147, + [SMALL_STATE(3417)] = 122205, + [SMALL_STATE(3418)] = 122275, + [SMALL_STATE(3419)] = 122347, + [SMALL_STATE(3420)] = 122417, + [SMALL_STATE(3421)] = 122479, + [SMALL_STATE(3422)] = 122541, + [SMALL_STATE(3423)] = 122607, + [SMALL_STATE(3424)] = 122673, + [SMALL_STATE(3425)] = 122727, + [SMALL_STATE(3426)] = 122793, + [SMALL_STATE(3427)] = 122851, + [SMALL_STATE(3428)] = 122913, + [SMALL_STATE(3429)] = 122975, + [SMALL_STATE(3430)] = 123037, + [SMALL_STATE(3431)] = 123099, + [SMALL_STATE(3432)] = 123153, + [SMALL_STATE(3433)] = 123219, + [SMALL_STATE(3434)] = 123285, + [SMALL_STATE(3435)] = 123347, + [SMALL_STATE(3436)] = 123401, + [SMALL_STATE(3437)] = 123467, + [SMALL_STATE(3438)] = 123521, + [SMALL_STATE(3439)] = 123583, + [SMALL_STATE(3440)] = 123641, + [SMALL_STATE(3441)] = 123699, + [SMALL_STATE(3442)] = 123765, + [SMALL_STATE(3443)] = 123823, + [SMALL_STATE(3444)] = 123885, + [SMALL_STATE(3445)] = 123947, + [SMALL_STATE(3446)] = 124013, + [SMALL_STATE(3447)] = 124079, + [SMALL_STATE(3448)] = 124141, + [SMALL_STATE(3449)] = 124203, + [SMALL_STATE(3450)] = 124269, + [SMALL_STATE(3451)] = 124335, + [SMALL_STATE(3452)] = 124401, + [SMALL_STATE(3453)] = 124469, + [SMALL_STATE(3454)] = 124522, + [SMALL_STATE(3455)] = 124575, + [SMALL_STATE(3456)] = 124628, + [SMALL_STATE(3457)] = 124681, + [SMALL_STATE(3458)] = 124734, + [SMALL_STATE(3459)] = 124787, + [SMALL_STATE(3460)] = 124852, + [SMALL_STATE(3461)] = 124905, + [SMALL_STATE(3462)] = 124958, + [SMALL_STATE(3463)] = 125011, + [SMALL_STATE(3464)] = 125064, + [SMALL_STATE(3465)] = 125120, + [SMALL_STATE(3466)] = 125170, + [SMALL_STATE(3467)] = 125220, + [SMALL_STATE(3468)] = 125270, + [SMALL_STATE(3469)] = 125320, + [SMALL_STATE(3470)] = 125370, + [SMALL_STATE(3471)] = 125420, + [SMALL_STATE(3472)] = 125470, + [SMALL_STATE(3473)] = 125520, + [SMALL_STATE(3474)] = 125570, + [SMALL_STATE(3475)] = 125628, + [SMALL_STATE(3476)] = 125678, + [SMALL_STATE(3477)] = 125728, + [SMALL_STATE(3478)] = 125778, + [SMALL_STATE(3479)] = 125828, + [SMALL_STATE(3480)] = 125878, + [SMALL_STATE(3481)] = 125928, + [SMALL_STATE(3482)] = 125978, + [SMALL_STATE(3483)] = 126028, + [SMALL_STATE(3484)] = 126078, + [SMALL_STATE(3485)] = 126128, + [SMALL_STATE(3486)] = 126178, + [SMALL_STATE(3487)] = 126230, + [SMALL_STATE(3488)] = 126280, + [SMALL_STATE(3489)] = 126330, + [SMALL_STATE(3490)] = 126384, + [SMALL_STATE(3491)] = 126434, + [SMALL_STATE(3492)] = 126484, + [SMALL_STATE(3493)] = 126534, + [SMALL_STATE(3494)] = 126590, + [SMALL_STATE(3495)] = 126640, + [SMALL_STATE(3496)] = 126690, + [SMALL_STATE(3497)] = 126740, + [SMALL_STATE(3498)] = 126790, + [SMALL_STATE(3499)] = 126840, + [SMALL_STATE(3500)] = 126890, + [SMALL_STATE(3501)] = 126940, + [SMALL_STATE(3502)] = 126990, + [SMALL_STATE(3503)] = 127040, + [SMALL_STATE(3504)] = 127090, + [SMALL_STATE(3505)] = 127140, + [SMALL_STATE(3506)] = 127194, + [SMALL_STATE(3507)] = 127268, + [SMALL_STATE(3508)] = 127318, + [SMALL_STATE(3509)] = 127368, + [SMALL_STATE(3510)] = 127418, + [SMALL_STATE(3511)] = 127468, + [SMALL_STATE(3512)] = 127518, + [SMALL_STATE(3513)] = 127568, + [SMALL_STATE(3514)] = 127618, + [SMALL_STATE(3515)] = 127668, + [SMALL_STATE(3516)] = 127718, + [SMALL_STATE(3517)] = 127768, + [SMALL_STATE(3518)] = 127818, + [SMALL_STATE(3519)] = 127868, + [SMALL_STATE(3520)] = 127918, + [SMALL_STATE(3521)] = 127968, + [SMALL_STATE(3522)] = 128020, + [SMALL_STATE(3523)] = 128083, + [SMALL_STATE(3524)] = 128130, + [SMALL_STATE(3525)] = 128177, + [SMALL_STATE(3526)] = 128228, + [SMALL_STATE(3527)] = 128279, + [SMALL_STATE(3528)] = 128326, + [SMALL_STATE(3529)] = 128373, + [SMALL_STATE(3530)] = 128420, + [SMALL_STATE(3531)] = 128485, + [SMALL_STATE(3532)] = 128532, + [SMALL_STATE(3533)] = 128599, + [SMALL_STATE(3534)] = 128664, + [SMALL_STATE(3535)] = 128731, + [SMALL_STATE(3536)] = 128798, + [SMALL_STATE(3537)] = 128845, + [SMALL_STATE(3538)] = 128910, + [SMALL_STATE(3539)] = 128975, + [SMALL_STATE(3540)] = 129022, + [SMALL_STATE(3541)] = 129082, + [SMALL_STATE(3542)] = 129142, + [SMALL_STATE(3543)] = 129202, + [SMALL_STATE(3544)] = 129262, + [SMALL_STATE(3545)] = 129322, + [SMALL_STATE(3546)] = 129382, + [SMALL_STATE(3547)] = 129442, + [SMALL_STATE(3548)] = 129502, + [SMALL_STATE(3549)] = 129562, + [SMALL_STATE(3550)] = 129622, + [SMALL_STATE(3551)] = 129698, + [SMALL_STATE(3552)] = 129758, + [SMALL_STATE(3553)] = 129818, + [SMALL_STATE(3554)] = 129878, + [SMALL_STATE(3555)] = 129938, + [SMALL_STATE(3556)] = 129998, + [SMALL_STATE(3557)] = 130058, + [SMALL_STATE(3558)] = 130134, + [SMALL_STATE(3559)] = 130194, + [SMALL_STATE(3560)] = 130254, + [SMALL_STATE(3561)] = 130314, + [SMALL_STATE(3562)] = 130360, + [SMALL_STATE(3563)] = 130420, + [SMALL_STATE(3564)] = 130480, + [SMALL_STATE(3565)] = 130540, + [SMALL_STATE(3566)] = 130600, + [SMALL_STATE(3567)] = 130660, + [SMALL_STATE(3568)] = 130720, + [SMALL_STATE(3569)] = 130780, + [SMALL_STATE(3570)] = 130840, + [SMALL_STATE(3571)] = 130901, + [SMALL_STATE(3572)] = 130968, + [SMALL_STATE(3573)] = 131029, + [SMALL_STATE(3574)] = 131090, + [SMALL_STATE(3575)] = 131161, + [SMALL_STATE(3576)] = 131228, + [SMALL_STATE(3577)] = 131289, + [SMALL_STATE(3578)] = 131350, + [SMALL_STATE(3579)] = 131435, + [SMALL_STATE(3580)] = 131502, + [SMALL_STATE(3581)] = 131563, + [SMALL_STATE(3582)] = 131634, + [SMALL_STATE(3583)] = 131719, + [SMALL_STATE(3584)] = 131780, + [SMALL_STATE(3585)] = 131865, + [SMALL_STATE(3586)] = 131926, + [SMALL_STATE(3587)] = 131987, + [SMALL_STATE(3588)] = 132072, + [SMALL_STATE(3589)] = 132133, + [SMALL_STATE(3590)] = 132194, + [SMALL_STATE(3591)] = 132255, + [SMALL_STATE(3592)] = 132304, + [SMALL_STATE(3593)] = 132389, + [SMALL_STATE(3594)] = 132474, + [SMALL_STATE(3595)] = 132559, + [SMALL_STATE(3596)] = 132620, + [SMALL_STATE(3597)] = 132681, + [SMALL_STATE(3598)] = 132742, + [SMALL_STATE(3599)] = 132803, + [SMALL_STATE(3600)] = 132888, + [SMALL_STATE(3601)] = 132949, + [SMALL_STATE(3602)] = 133034, + [SMALL_STATE(3603)] = 133095, + [SMALL_STATE(3604)] = 133156, + [SMALL_STATE(3605)] = 133217, + [SMALL_STATE(3606)] = 133288, + [SMALL_STATE(3607)] = 133349, + [SMALL_STATE(3608)] = 133410, + [SMALL_STATE(3609)] = 133495, + [SMALL_STATE(3610)] = 133580, + [SMALL_STATE(3611)] = 133665, + [SMALL_STATE(3612)] = 133732, + [SMALL_STATE(3613)] = 133793, + [SMALL_STATE(3614)] = 133854, + [SMALL_STATE(3615)] = 133915, + [SMALL_STATE(3616)] = 133976, + [SMALL_STATE(3617)] = 134037, + [SMALL_STATE(3618)] = 134098, + [SMALL_STATE(3619)] = 134159, + [SMALL_STATE(3620)] = 134220, + [SMALL_STATE(3621)] = 134284, + [SMALL_STATE(3622)] = 134348, + [SMALL_STATE(3623)] = 134394, + [SMALL_STATE(3624)] = 134458, + [SMALL_STATE(3625)] = 134518, + [SMALL_STATE(3626)] = 134582, + [SMALL_STATE(3627)] = 134646, + [SMALL_STATE(3628)] = 134710, + [SMALL_STATE(3629)] = 134770, + [SMALL_STATE(3630)] = 134834, + [SMALL_STATE(3631)] = 134898, + [SMALL_STATE(3632)] = 134962, + [SMALL_STATE(3633)] = 135026, + [SMALL_STATE(3634)] = 135090, + [SMALL_STATE(3635)] = 135154, + [SMALL_STATE(3636)] = 135218, + [SMALL_STATE(3637)] = 135282, + [SMALL_STATE(3638)] = 135346, + [SMALL_STATE(3639)] = 135404, + [SMALL_STATE(3640)] = 135468, + [SMALL_STATE(3641)] = 135523, + [SMALL_STATE(3642)] = 135578, + [SMALL_STATE(3643)] = 135633, + [SMALL_STATE(3644)] = 135688, + [SMALL_STATE(3645)] = 135743, + [SMALL_STATE(3646)] = 135798, + [SMALL_STATE(3647)] = 135855, + [SMALL_STATE(3648)] = 135910, + [SMALL_STATE(3649)] = 135967, + [SMALL_STATE(3650)] = 136010, + [SMALL_STATE(3651)] = 136053, + [SMALL_STATE(3652)] = 136108, + [SMALL_STATE(3653)] = 136151, + [SMALL_STATE(3654)] = 136206, + [SMALL_STATE(3655)] = 136261, + [SMALL_STATE(3656)] = 136316, + [SMALL_STATE(3657)] = 136371, + [SMALL_STATE(3658)] = 136426, + [SMALL_STATE(3659)] = 136483, + [SMALL_STATE(3660)] = 136538, + [SMALL_STATE(3661)] = 136593, + [SMALL_STATE(3662)] = 136650, + [SMALL_STATE(3663)] = 136705, + [SMALL_STATE(3664)] = 136760, + [SMALL_STATE(3665)] = 136815, + [SMALL_STATE(3666)] = 136872, + [SMALL_STATE(3667)] = 136929, + [SMALL_STATE(3668)] = 136984, + [SMALL_STATE(3669)] = 137039, + [SMALL_STATE(3670)] = 137096, + [SMALL_STATE(3671)] = 137153, + [SMALL_STATE(3672)] = 137210, + [SMALL_STATE(3673)] = 137265, + [SMALL_STATE(3674)] = 137320, + [SMALL_STATE(3675)] = 137375, + [SMALL_STATE(3676)] = 137418, + [SMALL_STATE(3677)] = 137473, + [SMALL_STATE(3678)] = 137516, + [SMALL_STATE(3679)] = 137559, + [SMALL_STATE(3680)] = 137616, + [SMALL_STATE(3681)] = 137673, + [SMALL_STATE(3682)] = 137728, + [SMALL_STATE(3683)] = 137783, + [SMALL_STATE(3684)] = 137838, + [SMALL_STATE(3685)] = 137893, + [SMALL_STATE(3686)] = 137948, + [SMALL_STATE(3687)] = 138003, + [SMALL_STATE(3688)] = 138060, + [SMALL_STATE(3689)] = 138117, + [SMALL_STATE(3690)] = 138172, + [SMALL_STATE(3691)] = 138227, + [SMALL_STATE(3692)] = 138282, + [SMALL_STATE(3693)] = 138337, + [SMALL_STATE(3694)] = 138394, + [SMALL_STATE(3695)] = 138449, + [SMALL_STATE(3696)] = 138504, + [SMALL_STATE(3697)] = 138559, + [SMALL_STATE(3698)] = 138614, + [SMALL_STATE(3699)] = 138669, + [SMALL_STATE(3700)] = 138712, + [SMALL_STATE(3701)] = 138767, + [SMALL_STATE(3702)] = 138822, + [SMALL_STATE(3703)] = 138862, + [SMALL_STATE(3704)] = 138897, + [SMALL_STATE(3705)] = 138932, + [SMALL_STATE(3706)] = 138967, + [SMALL_STATE(3707)] = 139014, + [SMALL_STATE(3708)] = 139061, + [SMALL_STATE(3709)] = 139108, + [SMALL_STATE(3710)] = 139142, + [SMALL_STATE(3711)] = 139176, + [SMALL_STATE(3712)] = 139217, + [SMALL_STATE(3713)] = 139250, + [SMALL_STATE(3714)] = 139283, + [SMALL_STATE(3715)] = 139316, + [SMALL_STATE(3716)] = 139349, + [SMALL_STATE(3717)] = 139382, + [SMALL_STATE(3718)] = 139415, + [SMALL_STATE(3719)] = 139448, + [SMALL_STATE(3720)] = 139481, + [SMALL_STATE(3721)] = 139514, + [SMALL_STATE(3722)] = 139547, + [SMALL_STATE(3723)] = 139580, + [SMALL_STATE(3724)] = 139613, + [SMALL_STATE(3725)] = 139646, + [SMALL_STATE(3726)] = 139679, + [SMALL_STATE(3727)] = 139712, + [SMALL_STATE(3728)] = 139745, + [SMALL_STATE(3729)] = 139778, + [SMALL_STATE(3730)] = 139811, + [SMALL_STATE(3731)] = 139844, + [SMALL_STATE(3732)] = 139877, + [SMALL_STATE(3733)] = 139910, + [SMALL_STATE(3734)] = 139943, + [SMALL_STATE(3735)] = 139976, + [SMALL_STATE(3736)] = 140009, + [SMALL_STATE(3737)] = 140042, + [SMALL_STATE(3738)] = 140075, + [SMALL_STATE(3739)] = 140108, + [SMALL_STATE(3740)] = 140141, + [SMALL_STATE(3741)] = 140174, + [SMALL_STATE(3742)] = 140207, + [SMALL_STATE(3743)] = 140240, + [SMALL_STATE(3744)] = 140273, + [SMALL_STATE(3745)] = 140306, + [SMALL_STATE(3746)] = 140339, + [SMALL_STATE(3747)] = 140393, + [SMALL_STATE(3748)] = 140447, + [SMALL_STATE(3749)] = 140501, + [SMALL_STATE(3750)] = 140539, + [SMALL_STATE(3751)] = 140593, + [SMALL_STATE(3752)] = 140647, + [SMALL_STATE(3753)] = 140680, + [SMALL_STATE(3754)] = 140711, + [SMALL_STATE(3755)] = 140742, + [SMALL_STATE(3756)] = 140773, + [SMALL_STATE(3757)] = 140808, + [SMALL_STATE(3758)] = 140839, + [SMALL_STATE(3759)] = 140870, + [SMALL_STATE(3760)] = 140901, + [SMALL_STATE(3761)] = 140944, + [SMALL_STATE(3762)] = 140975, + [SMALL_STATE(3763)] = 141010, + [SMALL_STATE(3764)] = 141043, + [SMALL_STATE(3765)] = 141074, + [SMALL_STATE(3766)] = 141105, + [SMALL_STATE(3767)] = 141136, + [SMALL_STATE(3768)] = 141167, + [SMALL_STATE(3769)] = 141198, + [SMALL_STATE(3770)] = 141241, + [SMALL_STATE(3771)] = 141272, + [SMALL_STATE(3772)] = 141303, + [SMALL_STATE(3773)] = 141334, + [SMALL_STATE(3774)] = 141365, + [SMALL_STATE(3775)] = 141408, + [SMALL_STATE(3776)] = 141439, + [SMALL_STATE(3777)] = 141470, + [SMALL_STATE(3778)] = 141501, + [SMALL_STATE(3779)] = 141532, + [SMALL_STATE(3780)] = 141563, + [SMALL_STATE(3781)] = 141593, + [SMALL_STATE(3782)] = 141625, + [SMALL_STATE(3783)] = 141657, + [SMALL_STATE(3784)] = 141687, + [SMALL_STATE(3785)] = 141719, + [SMALL_STATE(3786)] = 141756, + [SMALL_STATE(3787)] = 141785, + [SMALL_STATE(3788)] = 141812, + [SMALL_STATE(3789)] = 141841, + [SMALL_STATE(3790)] = 141868, + [SMALL_STATE(3791)] = 141897, + [SMALL_STATE(3792)] = 141926, + [SMALL_STATE(3793)] = 141955, + [SMALL_STATE(3794)] = 141986, + [SMALL_STATE(3795)] = 142021, + [SMALL_STATE(3796)] = 142048, + [SMALL_STATE(3797)] = 142079, + [SMALL_STATE(3798)] = 142108, + [SMALL_STATE(3799)] = 142137, + [SMALL_STATE(3800)] = 142166, + [SMALL_STATE(3801)] = 142195, + [SMALL_STATE(3802)] = 142234, + [SMALL_STATE(3803)] = 142267, + [SMALL_STATE(3804)] = 142304, + [SMALL_STATE(3805)] = 142333, + [SMALL_STATE(3806)] = 142372, + [SMALL_STATE(3807)] = 142401, + [SMALL_STATE(3808)] = 142430, + [SMALL_STATE(3809)] = 142469, + [SMALL_STATE(3810)] = 142508, + [SMALL_STATE(3811)] = 142543, + [SMALL_STATE(3812)] = 142580, + [SMALL_STATE(3813)] = 142609, + [SMALL_STATE(3814)] = 142638, + [SMALL_STATE(3815)] = 142667, + [SMALL_STATE(3816)] = 142696, + [SMALL_STATE(3817)] = 142723, + [SMALL_STATE(3818)] = 142752, + [SMALL_STATE(3819)] = 142781, + [SMALL_STATE(3820)] = 142820, + [SMALL_STATE(3821)] = 142847, + [SMALL_STATE(3822)] = 142876, + [SMALL_STATE(3823)] = 142905, + [SMALL_STATE(3824)] = 142934, + [SMALL_STATE(3825)] = 142973, + [SMALL_STATE(3826)] = 143002, + [SMALL_STATE(3827)] = 143041, + [SMALL_STATE(3828)] = 143080, + [SMALL_STATE(3829)] = 143117, + [SMALL_STATE(3830)] = 143146, + [SMALL_STATE(3831)] = 143185, + [SMALL_STATE(3832)] = 143212, + [SMALL_STATE(3833)] = 143251, + [SMALL_STATE(3834)] = 143290, + [SMALL_STATE(3835)] = 143329, + [SMALL_STATE(3836)] = 143356, + [SMALL_STATE(3837)] = 143385, + [SMALL_STATE(3838)] = 143414, + [SMALL_STATE(3839)] = 143449, + [SMALL_STATE(3840)] = 143480, + [SMALL_STATE(3841)] = 143509, + [SMALL_STATE(3842)] = 143538, + [SMALL_STATE(3843)] = 143567, + [SMALL_STATE(3844)] = 143596, + [SMALL_STATE(3845)] = 143635, + [SMALL_STATE(3846)] = 143664, + [SMALL_STATE(3847)] = 143693, + [SMALL_STATE(3848)] = 143722, + [SMALL_STATE(3849)] = 143751, + [SMALL_STATE(3850)] = 143778, + [SMALL_STATE(3851)] = 143807, + [SMALL_STATE(3852)] = 143842, + [SMALL_STATE(3853)] = 143871, + [SMALL_STATE(3854)] = 143900, + [SMALL_STATE(3855)] = 143929, + [SMALL_STATE(3856)] = 143958, + [SMALL_STATE(3857)] = 143987, + [SMALL_STATE(3858)] = 144016, + [SMALL_STATE(3859)] = 144055, + [SMALL_STATE(3860)] = 144084, + [SMALL_STATE(3861)] = 144113, + [SMALL_STATE(3862)] = 144148, + [SMALL_STATE(3863)] = 144175, + [SMALL_STATE(3864)] = 144204, + [SMALL_STATE(3865)] = 144241, + [SMALL_STATE(3866)] = 144270, + [SMALL_STATE(3867)] = 144299, + [SMALL_STATE(3868)] = 144328, + [SMALL_STATE(3869)] = 144357, + [SMALL_STATE(3870)] = 144396, + [SMALL_STATE(3871)] = 144435, + [SMALL_STATE(3872)] = 144474, + [SMALL_STATE(3873)] = 144503, + [SMALL_STATE(3874)] = 144532, + [SMALL_STATE(3875)] = 144559, + [SMALL_STATE(3876)] = 144594, + [SMALL_STATE(3877)] = 144629, + [SMALL_STATE(3878)] = 144658, + [SMALL_STATE(3879)] = 144687, + [SMALL_STATE(3880)] = 144716, + [SMALL_STATE(3881)] = 144745, + [SMALL_STATE(3882)] = 144774, + [SMALL_STATE(3883)] = 144803, + [SMALL_STATE(3884)] = 144832, + [SMALL_STATE(3885)] = 144861, + [SMALL_STATE(3886)] = 144892, + [SMALL_STATE(3887)] = 144921, + [SMALL_STATE(3888)] = 144950, + [SMALL_STATE(3889)] = 144979, + [SMALL_STATE(3890)] = 145010, + [SMALL_STATE(3891)] = 145039, + [SMALL_STATE(3892)] = 145076, + [SMALL_STATE(3893)] = 145105, + [SMALL_STATE(3894)] = 145134, + [SMALL_STATE(3895)] = 145173, + [SMALL_STATE(3896)] = 145202, + [SMALL_STATE(3897)] = 145231, + [SMALL_STATE(3898)] = 145279, + [SMALL_STATE(3899)] = 145327, + [SMALL_STATE(3900)] = 145361, + [SMALL_STATE(3901)] = 145395, + [SMALL_STATE(3902)] = 145443, + [SMALL_STATE(3903)] = 145477, + [SMALL_STATE(3904)] = 145511, + [SMALL_STATE(3905)] = 145559, + [SMALL_STATE(3906)] = 145603, + [SMALL_STATE(3907)] = 145651, + [SMALL_STATE(3908)] = 145699, + [SMALL_STATE(3909)] = 145747, + [SMALL_STATE(3910)] = 145795, + [SMALL_STATE(3911)] = 145843, + [SMALL_STATE(3912)] = 145891, + [SMALL_STATE(3913)] = 145939, + [SMALL_STATE(3914)] = 145987, + [SMALL_STATE(3915)] = 146035, + [SMALL_STATE(3916)] = 146083, + [SMALL_STATE(3917)] = 146127, + [SMALL_STATE(3918)] = 146171, + [SMALL_STATE(3919)] = 146219, + [SMALL_STATE(3920)] = 146267, + [SMALL_STATE(3921)] = 146315, + [SMALL_STATE(3922)] = 146349, + [SMALL_STATE(3923)] = 146397, + [SMALL_STATE(3924)] = 146445, + [SMALL_STATE(3925)] = 146479, + [SMALL_STATE(3926)] = 146527, + [SMALL_STATE(3927)] = 146575, + [SMALL_STATE(3928)] = 146623, + [SMALL_STATE(3929)] = 146667, + [SMALL_STATE(3930)] = 146715, + [SMALL_STATE(3931)] = 146747, + [SMALL_STATE(3932)] = 146791, + [SMALL_STATE(3933)] = 146839, + [SMALL_STATE(3934)] = 146887, + [SMALL_STATE(3935)] = 146935, + [SMALL_STATE(3936)] = 146983, + [SMALL_STATE(3937)] = 147031, + [SMALL_STATE(3938)] = 147056, + [SMALL_STATE(3939)] = 147081, + [SMALL_STATE(3940)] = 147108, + [SMALL_STATE(3941)] = 147149, + [SMALL_STATE(3942)] = 147190, + [SMALL_STATE(3943)] = 147219, + [SMALL_STATE(3944)] = 147246, + [SMALL_STATE(3945)] = 147273, + [SMALL_STATE(3946)] = 147300, + [SMALL_STATE(3947)] = 147327, + [SMALL_STATE(3948)] = 147368, + [SMALL_STATE(3949)] = 147409, + [SMALL_STATE(3950)] = 147434, + [SMALL_STATE(3951)] = 147459, + [SMALL_STATE(3952)] = 147486, + [SMALL_STATE(3953)] = 147511, + [SMALL_STATE(3954)] = 147552, + [SMALL_STATE(3955)] = 147585, + [SMALL_STATE(3956)] = 147610, + [SMALL_STATE(3957)] = 147637, + [SMALL_STATE(3958)] = 147680, + [SMALL_STATE(3959)] = 147707, + [SMALL_STATE(3960)] = 147734, + [SMALL_STATE(3961)] = 147759, + [SMALL_STATE(3962)] = 147786, + [SMALL_STATE(3963)] = 147811, + [SMALL_STATE(3964)] = 147838, + [SMALL_STATE(3965)] = 147865, + [SMALL_STATE(3966)] = 147890, + [SMALL_STATE(3967)] = 147917, + [SMALL_STATE(3968)] = 147946, + [SMALL_STATE(3969)] = 147973, + [SMALL_STATE(3970)] = 148004, + [SMALL_STATE(3971)] = 148029, + [SMALL_STATE(3972)] = 148056, + [SMALL_STATE(3973)] = 148087, + [SMALL_STATE(3974)] = 148128, + [SMALL_STATE(3975)] = 148153, + [SMALL_STATE(3976)] = 148178, + [SMALL_STATE(3977)] = 148203, + [SMALL_STATE(3978)] = 148228, + [SMALL_STATE(3979)] = 148255, + [SMALL_STATE(3980)] = 148282, + [SMALL_STATE(3981)] = 148307, + [SMALL_STATE(3982)] = 148332, + [SMALL_STATE(3983)] = 148365, + [SMALL_STATE(3984)] = 148406, + [SMALL_STATE(3985)] = 148431, + [SMALL_STATE(3986)] = 148456, + [SMALL_STATE(3987)] = 148497, + [SMALL_STATE(3988)] = 148522, + [SMALL_STATE(3989)] = 148547, + [SMALL_STATE(3990)] = 148572, + [SMALL_STATE(3991)] = 148597, + [SMALL_STATE(3992)] = 148622, + [SMALL_STATE(3993)] = 148647, + [SMALL_STATE(3994)] = 148672, + [SMALL_STATE(3995)] = 148713, + [SMALL_STATE(3996)] = 148738, + [SMALL_STATE(3997)] = 148763, + [SMALL_STATE(3998)] = 148788, + [SMALL_STATE(3999)] = 148813, + [SMALL_STATE(4000)] = 148838, + [SMALL_STATE(4001)] = 148863, + [SMALL_STATE(4002)] = 148888, + [SMALL_STATE(4003)] = 148913, + [SMALL_STATE(4004)] = 148954, + [SMALL_STATE(4005)] = 148979, + [SMALL_STATE(4006)] = 149013, + [SMALL_STATE(4007)] = 149057, + [SMALL_STATE(4008)] = 149099, + [SMALL_STATE(4009)] = 149141, + [SMALL_STATE(4010)] = 149183, + [SMALL_STATE(4011)] = 149225, + [SMALL_STATE(4012)] = 149267, + [SMALL_STATE(4013)] = 149305, + [SMALL_STATE(4014)] = 149343, + [SMALL_STATE(4015)] = 149385, + [SMALL_STATE(4016)] = 149429, + [SMALL_STATE(4017)] = 149467, + [SMALL_STATE(4018)] = 149505, + [SMALL_STATE(4019)] = 149547, + [SMALL_STATE(4020)] = 149589, + [SMALL_STATE(4021)] = 149617, + [SMALL_STATE(4022)] = 149653, + [SMALL_STATE(4023)] = 149695, + [SMALL_STATE(4024)] = 149733, + [SMALL_STATE(4025)] = 149759, + [SMALL_STATE(4026)] = 149801, + [SMALL_STATE(4027)] = 149835, + [SMALL_STATE(4028)] = 149863, + [SMALL_STATE(4029)] = 149897, + [SMALL_STATE(4030)] = 149935, + [SMALL_STATE(4031)] = 149973, + [SMALL_STATE(4032)] = 150015, + [SMALL_STATE(4033)] = 150053, + [SMALL_STATE(4034)] = 150083, + [SMALL_STATE(4035)] = 150125, + [SMALL_STATE(4036)] = 150167, + [SMALL_STATE(4037)] = 150193, + [SMALL_STATE(4038)] = 150235, + [SMALL_STATE(4039)] = 150277, + [SMALL_STATE(4040)] = 150315, + [SMALL_STATE(4041)] = 150359, + [SMALL_STATE(4042)] = 150401, + [SMALL_STATE(4043)] = 150437, + [SMALL_STATE(4044)] = 150479, + [SMALL_STATE(4045)] = 150513, + [SMALL_STATE(4046)] = 150541, + [SMALL_STATE(4047)] = 150583, + [SMALL_STATE(4048)] = 150625, + [SMALL_STATE(4049)] = 150667, + [SMALL_STATE(4050)] = 150709, + [SMALL_STATE(4051)] = 150751, + [SMALL_STATE(4052)] = 150793, + [SMALL_STATE(4053)] = 150827, + [SMALL_STATE(4054)] = 150865, + [SMALL_STATE(4055)] = 150909, + [SMALL_STATE(4056)] = 150953, + [SMALL_STATE(4057)] = 150978, + [SMALL_STATE(4058)] = 151005, + [SMALL_STATE(4059)] = 151032, + [SMALL_STATE(4060)] = 151057, + [SMALL_STATE(4061)] = 151082, + [SMALL_STATE(4062)] = 151107, + [SMALL_STATE(4063)] = 151132, + [SMALL_STATE(4064)] = 151157, + [SMALL_STATE(4065)] = 151182, + [SMALL_STATE(4066)] = 151207, + [SMALL_STATE(4067)] = 151232, + [SMALL_STATE(4068)] = 151257, + [SMALL_STATE(4069)] = 151280, + [SMALL_STATE(4070)] = 151305, + [SMALL_STATE(4071)] = 151330, + [SMALL_STATE(4072)] = 151357, + [SMALL_STATE(4073)] = 151382, + [SMALL_STATE(4074)] = 151405, + [SMALL_STATE(4075)] = 151430, + [SMALL_STATE(4076)] = 151459, + [SMALL_STATE(4077)] = 151502, + [SMALL_STATE(4078)] = 151527, + [SMALL_STATE(4079)] = 151552, + [SMALL_STATE(4080)] = 151581, + [SMALL_STATE(4081)] = 151606, + [SMALL_STATE(4082)] = 151629, + [SMALL_STATE(4083)] = 151654, + [SMALL_STATE(4084)] = 151679, + [SMALL_STATE(4085)] = 151702, + [SMALL_STATE(4086)] = 151729, + [SMALL_STATE(4087)] = 151754, + [SMALL_STATE(4088)] = 151783, + [SMALL_STATE(4089)] = 151808, + [SMALL_STATE(4090)] = 151833, + [SMALL_STATE(4091)] = 151858, + [SMALL_STATE(4092)] = 151883, + [SMALL_STATE(4093)] = 151906, + [SMALL_STATE(4094)] = 151931, + [SMALL_STATE(4095)] = 151958, + [SMALL_STATE(4096)] = 151983, + [SMALL_STATE(4097)] = 152008, + [SMALL_STATE(4098)] = 152037, + [SMALL_STATE(4099)] = 152064, + [SMALL_STATE(4100)] = 152089, + [SMALL_STATE(4101)] = 152114, + [SMALL_STATE(4102)] = 152137, + [SMALL_STATE(4103)] = 152162, + [SMALL_STATE(4104)] = 152191, + [SMALL_STATE(4105)] = 152216, + [SMALL_STATE(4106)] = 152239, + [SMALL_STATE(4107)] = 152270, + [SMALL_STATE(4108)] = 152295, + [SMALL_STATE(4109)] = 152318, + [SMALL_STATE(4110)] = 152347, + [SMALL_STATE(4111)] = 152372, + [SMALL_STATE(4112)] = 152397, + [SMALL_STATE(4113)] = 152422, + [SMALL_STATE(4114)] = 152445, + [SMALL_STATE(4115)] = 152470, + [SMALL_STATE(4116)] = 152497, + [SMALL_STATE(4117)] = 152526, + [SMALL_STATE(4118)] = 152555, + [SMALL_STATE(4119)] = 152580, + [SMALL_STATE(4120)] = 152605, + [SMALL_STATE(4121)] = 152633, + [SMALL_STATE(4122)] = 152673, + [SMALL_STATE(4123)] = 152711, + [SMALL_STATE(4124)] = 152751, + [SMALL_STATE(4125)] = 152775, + [SMALL_STATE(4126)] = 152815, + [SMALL_STATE(4127)] = 152843, + [SMALL_STATE(4128)] = 152865, + [SMALL_STATE(4129)] = 152905, + [SMALL_STATE(4130)] = 152945, + [SMALL_STATE(4131)] = 152985, + [SMALL_STATE(4132)] = 153025, + [SMALL_STATE(4133)] = 153065, + [SMALL_STATE(4134)] = 153091, + [SMALL_STATE(4135)] = 153131, + [SMALL_STATE(4136)] = 153171, + [SMALL_STATE(4137)] = 153195, + [SMALL_STATE(4138)] = 153235, + [SMALL_STATE(4139)] = 153261, + [SMALL_STATE(4140)] = 153299, + [SMALL_STATE(4141)] = 153339, + [SMALL_STATE(4142)] = 153361, + [SMALL_STATE(4143)] = 153387, + [SMALL_STATE(4144)] = 153411, + [SMALL_STATE(4145)] = 153451, + [SMALL_STATE(4146)] = 153485, + [SMALL_STATE(4147)] = 153519, + [SMALL_STATE(4148)] = 153559, + [SMALL_STATE(4149)] = 153599, + [SMALL_STATE(4150)] = 153639, + [SMALL_STATE(4151)] = 153679, + [SMALL_STATE(4152)] = 153707, + [SMALL_STATE(4153)] = 153747, + [SMALL_STATE(4154)] = 153787, + [SMALL_STATE(4155)] = 153808, + [SMALL_STATE(4156)] = 153845, + [SMALL_STATE(4157)] = 153876, + [SMALL_STATE(4158)] = 153903, + [SMALL_STATE(4159)] = 153940, + [SMALL_STATE(4160)] = 153977, + [SMALL_STATE(4161)] = 154014, + [SMALL_STATE(4162)] = 154035, + [SMALL_STATE(4163)] = 154056, + [SMALL_STATE(4164)] = 154077, + [SMALL_STATE(4165)] = 154112, + [SMALL_STATE(4166)] = 154147, + [SMALL_STATE(4167)] = 154168, + [SMALL_STATE(4168)] = 154205, + [SMALL_STATE(4169)] = 154236, + [SMALL_STATE(4170)] = 154267, + [SMALL_STATE(4171)] = 154288, + [SMALL_STATE(4172)] = 154309, + [SMALL_STATE(4173)] = 154330, + [SMALL_STATE(4174)] = 154353, + [SMALL_STATE(4175)] = 154374, + [SMALL_STATE(4176)] = 154411, + [SMALL_STATE(4177)] = 154432, + [SMALL_STATE(4178)] = 154465, + [SMALL_STATE(4179)] = 154494, + [SMALL_STATE(4180)] = 154515, + [SMALL_STATE(4181)] = 154536, + [SMALL_STATE(4182)] = 154565, + [SMALL_STATE(4183)] = 154586, + [SMALL_STATE(4184)] = 154607, + [SMALL_STATE(4185)] = 154628, + [SMALL_STATE(4186)] = 154649, + [SMALL_STATE(4187)] = 154670, + [SMALL_STATE(4188)] = 154691, + [SMALL_STATE(4189)] = 154712, + [SMALL_STATE(4190)] = 154733, + [SMALL_STATE(4191)] = 154770, + [SMALL_STATE(4192)] = 154807, + [SMALL_STATE(4193)] = 154844, + [SMALL_STATE(4194)] = 154881, + [SMALL_STATE(4195)] = 154918, + [SMALL_STATE(4196)] = 154951, + [SMALL_STATE(4197)] = 154982, + [SMALL_STATE(4198)] = 155003, + [SMALL_STATE(4199)] = 155040, + [SMALL_STATE(4200)] = 155077, + [SMALL_STATE(4201)] = 155108, + [SMALL_STATE(4202)] = 155145, + [SMALL_STATE(4203)] = 155166, + [SMALL_STATE(4204)] = 155203, + [SMALL_STATE(4205)] = 155240, + [SMALL_STATE(4206)] = 155273, + [SMALL_STATE(4207)] = 155310, + [SMALL_STATE(4208)] = 155343, + [SMALL_STATE(4209)] = 155364, + [SMALL_STATE(4210)] = 155397, + [SMALL_STATE(4211)] = 155418, + [SMALL_STATE(4212)] = 155439, + [SMALL_STATE(4213)] = 155462, + [SMALL_STATE(4214)] = 155483, + [SMALL_STATE(4215)] = 155504, + [SMALL_STATE(4216)] = 155525, + [SMALL_STATE(4217)] = 155552, + [SMALL_STATE(4218)] = 155577, + [SMALL_STATE(4219)] = 155600, + [SMALL_STATE(4220)] = 155623, + [SMALL_STATE(4221)] = 155660, + [SMALL_STATE(4222)] = 155697, + [SMALL_STATE(4223)] = 155718, + [SMALL_STATE(4224)] = 155755, + [SMALL_STATE(4225)] = 155782, + [SMALL_STATE(4226)] = 155809, + [SMALL_STATE(4227)] = 155840, + [SMALL_STATE(4228)] = 155877, + [SMALL_STATE(4229)] = 155908, + [SMALL_STATE(4230)] = 155939, + [SMALL_STATE(4231)] = 155976, + [SMALL_STATE(4232)] = 156013, + [SMALL_STATE(4233)] = 156050, + [SMALL_STATE(4234)] = 156087, + [SMALL_STATE(4235)] = 156120, + [SMALL_STATE(4236)] = 156141, + [SMALL_STATE(4237)] = 156162, + [SMALL_STATE(4238)] = 156199, + [SMALL_STATE(4239)] = 156232, + [SMALL_STATE(4240)] = 156265, + [SMALL_STATE(4241)] = 156298, + [SMALL_STATE(4242)] = 156335, + [SMALL_STATE(4243)] = 156356, + [SMALL_STATE(4244)] = 156393, + [SMALL_STATE(4245)] = 156430, + [SMALL_STATE(4246)] = 156467, + [SMALL_STATE(4247)] = 156488, + [SMALL_STATE(4248)] = 156521, + [SMALL_STATE(4249)] = 156554, + [SMALL_STATE(4250)] = 156591, + [SMALL_STATE(4251)] = 156624, + [SMALL_STATE(4252)] = 156661, + [SMALL_STATE(4253)] = 156696, + [SMALL_STATE(4254)] = 156729, + [SMALL_STATE(4255)] = 156762, + [SMALL_STATE(4256)] = 156793, + [SMALL_STATE(4257)] = 156814, + [SMALL_STATE(4258)] = 156851, + [SMALL_STATE(4259)] = 156888, + [SMALL_STATE(4260)] = 156925, + [SMALL_STATE(4261)] = 156958, + [SMALL_STATE(4262)] = 156991, + [SMALL_STATE(4263)] = 157024, + [SMALL_STATE(4264)] = 157057, + [SMALL_STATE(4265)] = 157082, + [SMALL_STATE(4266)] = 157115, + [SMALL_STATE(4267)] = 157148, + [SMALL_STATE(4268)] = 157181, + [SMALL_STATE(4269)] = 157214, + [SMALL_STATE(4270)] = 157245, + [SMALL_STATE(4271)] = 157282, + [SMALL_STATE(4272)] = 157309, + [SMALL_STATE(4273)] = 157342, + [SMALL_STATE(4274)] = 157379, + [SMALL_STATE(4275)] = 157416, + [SMALL_STATE(4276)] = 157449, + [SMALL_STATE(4277)] = 157482, + [SMALL_STATE(4278)] = 157519, + [SMALL_STATE(4279)] = 157540, + [SMALL_STATE(4280)] = 157577, + [SMALL_STATE(4281)] = 157598, + [SMALL_STATE(4282)] = 157619, + [SMALL_STATE(4283)] = 157650, + [SMALL_STATE(4284)] = 157683, + [SMALL_STATE(4285)] = 157716, + [SMALL_STATE(4286)] = 157741, + [SMALL_STATE(4287)] = 157762, + [SMALL_STATE(4288)] = 157795, + [SMALL_STATE(4289)] = 157832, + [SMALL_STATE(4290)] = 157865, + [SMALL_STATE(4291)] = 157902, + [SMALL_STATE(4292)] = 157935, + [SMALL_STATE(4293)] = 157972, + [SMALL_STATE(4294)] = 157993, + [SMALL_STATE(4295)] = 158026, + [SMALL_STATE(4296)] = 158063, + [SMALL_STATE(4297)] = 158100, + [SMALL_STATE(4298)] = 158121, + [SMALL_STATE(4299)] = 158142, + [SMALL_STATE(4300)] = 158163, + [SMALL_STATE(4301)] = 158200, + [SMALL_STATE(4302)] = 158221, + [SMALL_STATE(4303)] = 158254, + [SMALL_STATE(4304)] = 158275, + [SMALL_STATE(4305)] = 158296, + [SMALL_STATE(4306)] = 158317, + [SMALL_STATE(4307)] = 158338, + [SMALL_STATE(4308)] = 158359, + [SMALL_STATE(4309)] = 158380, + [SMALL_STATE(4310)] = 158413, + [SMALL_STATE(4311)] = 158446, + [SMALL_STATE(4312)] = 158467, + [SMALL_STATE(4313)] = 158488, + [SMALL_STATE(4314)] = 158521, + [SMALL_STATE(4315)] = 158542, + [SMALL_STATE(4316)] = 158573, + [SMALL_STATE(4317)] = 158594, + [SMALL_STATE(4318)] = 158625, + [SMALL_STATE(4319)] = 158646, + [SMALL_STATE(4320)] = 158673, + [SMALL_STATE(4321)] = 158710, + [SMALL_STATE(4322)] = 158747, + [SMALL_STATE(4323)] = 158784, + [SMALL_STATE(4324)] = 158821, + [SMALL_STATE(4325)] = 158854, + [SMALL_STATE(4326)] = 158875, + [SMALL_STATE(4327)] = 158898, + [SMALL_STATE(4328)] = 158919, + [SMALL_STATE(4329)] = 158956, + [SMALL_STATE(4330)] = 158993, + [SMALL_STATE(4331)] = 159014, + [SMALL_STATE(4332)] = 159035, + [SMALL_STATE(4333)] = 159056, + [SMALL_STATE(4334)] = 159079, + [SMALL_STATE(4335)] = 159102, + [SMALL_STATE(4336)] = 159133, + [SMALL_STATE(4337)] = 159164, + [SMALL_STATE(4338)] = 159199, + [SMALL_STATE(4339)] = 159222, + [SMALL_STATE(4340)] = 159255, + [SMALL_STATE(4341)] = 159288, + [SMALL_STATE(4342)] = 159325, + [SMALL_STATE(4343)] = 159362, + [SMALL_STATE(4344)] = 159389, + [SMALL_STATE(4345)] = 159410, + [SMALL_STATE(4346)] = 159431, + [SMALL_STATE(4347)] = 159464, + [SMALL_STATE(4348)] = 159487, + [SMALL_STATE(4349)] = 159510, + [SMALL_STATE(4350)] = 159533, + [SMALL_STATE(4351)] = 159561, + [SMALL_STATE(4352)] = 159593, + [SMALL_STATE(4353)] = 159627, + [SMALL_STATE(4354)] = 159659, + [SMALL_STATE(4355)] = 159687, + [SMALL_STATE(4356)] = 159713, + [SMALL_STATE(4357)] = 159739, + [SMALL_STATE(4358)] = 159765, + [SMALL_STATE(4359)] = 159787, + [SMALL_STATE(4360)] = 159815, + [SMALL_STATE(4361)] = 159843, + [SMALL_STATE(4362)] = 159869, + [SMALL_STATE(4363)] = 159903, + [SMALL_STATE(4364)] = 159925, + [SMALL_STATE(4365)] = 159959, + [SMALL_STATE(4366)] = 159985, + [SMALL_STATE(4367)] = 160019, + [SMALL_STATE(4368)] = 160053, + [SMALL_STATE(4369)] = 160087, + [SMALL_STATE(4370)] = 160119, + [SMALL_STATE(4371)] = 160151, + [SMALL_STATE(4372)] = 160185, + [SMALL_STATE(4373)] = 160213, + [SMALL_STATE(4374)] = 160239, + [SMALL_STATE(4375)] = 160265, + [SMALL_STATE(4376)] = 160285, + [SMALL_STATE(4377)] = 160305, + [SMALL_STATE(4378)] = 160335, + [SMALL_STATE(4379)] = 160367, + [SMALL_STATE(4380)] = 160399, + [SMALL_STATE(4381)] = 160421, + [SMALL_STATE(4382)] = 160455, + [SMALL_STATE(4383)] = 160483, + [SMALL_STATE(4384)] = 160511, + [SMALL_STATE(4385)] = 160539, + [SMALL_STATE(4386)] = 160567, + [SMALL_STATE(4387)] = 160599, + [SMALL_STATE(4388)] = 160620, + [SMALL_STATE(4389)] = 160651, + [SMALL_STATE(4390)] = 160682, + [SMALL_STATE(4391)] = 160701, + [SMALL_STATE(4392)] = 160730, + [SMALL_STATE(4393)] = 160757, + [SMALL_STATE(4394)] = 160788, + [SMALL_STATE(4395)] = 160819, + [SMALL_STATE(4396)] = 160842, + [SMALL_STATE(4397)] = 160869, + [SMALL_STATE(4398)] = 160890, + [SMALL_STATE(4399)] = 160909, + [SMALL_STATE(4400)] = 160928, + [SMALL_STATE(4401)] = 160947, + [SMALL_STATE(4402)] = 160974, + [SMALL_STATE(4403)] = 161003, + [SMALL_STATE(4404)] = 161030, + [SMALL_STATE(4405)] = 161057, + [SMALL_STATE(4406)] = 161088, + [SMALL_STATE(4407)] = 161115, + [SMALL_STATE(4408)] = 161142, + [SMALL_STATE(4409)] = 161173, + [SMALL_STATE(4410)] = 161204, + [SMALL_STATE(4411)] = 161231, + [SMALL_STATE(4412)] = 161262, + [SMALL_STATE(4413)] = 161293, + [SMALL_STATE(4414)] = 161320, + [SMALL_STATE(4415)] = 161349, + [SMALL_STATE(4416)] = 161380, + [SMALL_STATE(4417)] = 161411, + [SMALL_STATE(4418)] = 161442, + [SMALL_STATE(4419)] = 161463, + [SMALL_STATE(4420)] = 161494, + [SMALL_STATE(4421)] = 161525, + [SMALL_STATE(4422)] = 161556, + [SMALL_STATE(4423)] = 161587, + [SMALL_STATE(4424)] = 161618, + [SMALL_STATE(4425)] = 161645, + [SMALL_STATE(4426)] = 161664, + [SMALL_STATE(4427)] = 161691, + [SMALL_STATE(4428)] = 161718, + [SMALL_STATE(4429)] = 161745, + [SMALL_STATE(4430)] = 161776, + [SMALL_STATE(4431)] = 161803, + [SMALL_STATE(4432)] = 161830, + [SMALL_STATE(4433)] = 161857, + [SMALL_STATE(4434)] = 161884, + [SMALL_STATE(4435)] = 161911, + [SMALL_STATE(4436)] = 161938, + [SMALL_STATE(4437)] = 161965, + [SMALL_STATE(4438)] = 161992, + [SMALL_STATE(4439)] = 162023, + [SMALL_STATE(4440)] = 162050, + [SMALL_STATE(4441)] = 162077, + [SMALL_STATE(4442)] = 162108, + [SMALL_STATE(4443)] = 162135, + [SMALL_STATE(4444)] = 162162, + [SMALL_STATE(4445)] = 162189, + [SMALL_STATE(4446)] = 162216, + [SMALL_STATE(4447)] = 162237, + [SMALL_STATE(4448)] = 162264, + [SMALL_STATE(4449)] = 162283, + [SMALL_STATE(4450)] = 162306, + [SMALL_STATE(4451)] = 162333, + [SMALL_STATE(4452)] = 162360, + [SMALL_STATE(4453)] = 162391, + [SMALL_STATE(4454)] = 162422, + [SMALL_STATE(4455)] = 162449, + [SMALL_STATE(4456)] = 162480, + [SMALL_STATE(4457)] = 162507, + [SMALL_STATE(4458)] = 162538, + [SMALL_STATE(4459)] = 162565, + [SMALL_STATE(4460)] = 162592, + [SMALL_STATE(4461)] = 162623, + [SMALL_STATE(4462)] = 162652, + [SMALL_STATE(4463)] = 162679, + [SMALL_STATE(4464)] = 162706, + [SMALL_STATE(4465)] = 162733, + [SMALL_STATE(4466)] = 162760, + [SMALL_STATE(4467)] = 162791, + [SMALL_STATE(4468)] = 162822, + [SMALL_STATE(4469)] = 162853, + [SMALL_STATE(4470)] = 162880, + [SMALL_STATE(4471)] = 162907, + [SMALL_STATE(4472)] = 162930, + [SMALL_STATE(4473)] = 162961, + [SMALL_STATE(4474)] = 162988, + [SMALL_STATE(4475)] = 163019, + [SMALL_STATE(4476)] = 163048, + [SMALL_STATE(4477)] = 163075, + [SMALL_STATE(4478)] = 163106, + [SMALL_STATE(4479)] = 163137, + [SMALL_STATE(4480)] = 163164, + [SMALL_STATE(4481)] = 163195, + [SMALL_STATE(4482)] = 163222, + [SMALL_STATE(4483)] = 163249, + [SMALL_STATE(4484)] = 163280, + [SMALL_STATE(4485)] = 163299, + [SMALL_STATE(4486)] = 163328, + [SMALL_STATE(4487)] = 163357, + [SMALL_STATE(4488)] = 163388, + [SMALL_STATE(4489)] = 163415, + [SMALL_STATE(4490)] = 163446, + [SMALL_STATE(4491)] = 163473, + [SMALL_STATE(4492)] = 163500, + [SMALL_STATE(4493)] = 163529, + [SMALL_STATE(4494)] = 163560, + [SMALL_STATE(4495)] = 163579, + [SMALL_STATE(4496)] = 163598, + [SMALL_STATE(4497)] = 163627, + [SMALL_STATE(4498)] = 163658, + [SMALL_STATE(4499)] = 163685, + [SMALL_STATE(4500)] = 163714, + [SMALL_STATE(4501)] = 163745, + [SMALL_STATE(4502)] = 163770, + [SMALL_STATE(4503)] = 163801, + [SMALL_STATE(4504)] = 163820, + [SMALL_STATE(4505)] = 163851, + [SMALL_STATE(4506)] = 163878, + [SMALL_STATE(4507)] = 163907, + [SMALL_STATE(4508)] = 163936, + [SMALL_STATE(4509)] = 163967, + [SMALL_STATE(4510)] = 163998, + [SMALL_STATE(4511)] = 164029, + [SMALL_STATE(4512)] = 164060, + [SMALL_STATE(4513)] = 164091, + [SMALL_STATE(4514)] = 164118, + [SMALL_STATE(4515)] = 164147, + [SMALL_STATE(4516)] = 164178, + [SMALL_STATE(4517)] = 164209, + [SMALL_STATE(4518)] = 164240, + [SMALL_STATE(4519)] = 164267, + [SMALL_STATE(4520)] = 164298, + [SMALL_STATE(4521)] = 164325, + [SMALL_STATE(4522)] = 164344, + [SMALL_STATE(4523)] = 164363, + [SMALL_STATE(4524)] = 164386, + [SMALL_STATE(4525)] = 164405, + [SMALL_STATE(4526)] = 164424, + [SMALL_STATE(4527)] = 164443, + [SMALL_STATE(4528)] = 164462, + [SMALL_STATE(4529)] = 164493, + [SMALL_STATE(4530)] = 164516, + [SMALL_STATE(4531)] = 164539, + [SMALL_STATE(4532)] = 164570, + [SMALL_STATE(4533)] = 164601, + [SMALL_STATE(4534)] = 164628, + [SMALL_STATE(4535)] = 164659, + [SMALL_STATE(4536)] = 164690, + [SMALL_STATE(4537)] = 164717, + [SMALL_STATE(4538)] = 164744, + [SMALL_STATE(4539)] = 164771, + [SMALL_STATE(4540)] = 164790, + [SMALL_STATE(4541)] = 164809, + [SMALL_STATE(4542)] = 164828, + [SMALL_STATE(4543)] = 164855, + [SMALL_STATE(4544)] = 164882, + [SMALL_STATE(4545)] = 164913, + [SMALL_STATE(4546)] = 164944, + [SMALL_STATE(4547)] = 164967, + [SMALL_STATE(4548)] = 164986, + [SMALL_STATE(4549)] = 165013, + [SMALL_STATE(4550)] = 165032, + [SMALL_STATE(4551)] = 165061, + [SMALL_STATE(4552)] = 165092, + [SMALL_STATE(4553)] = 165111, + [SMALL_STATE(4554)] = 165138, + [SMALL_STATE(4555)] = 165157, + [SMALL_STATE(4556)] = 165184, + [SMALL_STATE(4557)] = 165211, + [SMALL_STATE(4558)] = 165238, + [SMALL_STATE(4559)] = 165265, + [SMALL_STATE(4560)] = 165292, + [SMALL_STATE(4561)] = 165321, + [SMALL_STATE(4562)] = 165348, + [SMALL_STATE(4563)] = 165375, + [SMALL_STATE(4564)] = 165406, + [SMALL_STATE(4565)] = 165433, + [SMALL_STATE(4566)] = 165460, + [SMALL_STATE(4567)] = 165491, + [SMALL_STATE(4568)] = 165522, + [SMALL_STATE(4569)] = 165553, + [SMALL_STATE(4570)] = 165584, + [SMALL_STATE(4571)] = 165615, + [SMALL_STATE(4572)] = 165646, + [SMALL_STATE(4573)] = 165673, + [SMALL_STATE(4574)] = 165700, + [SMALL_STATE(4575)] = 165727, + [SMALL_STATE(4576)] = 165746, + [SMALL_STATE(4577)] = 165769, + [SMALL_STATE(4578)] = 165796, + [SMALL_STATE(4579)] = 165823, + [SMALL_STATE(4580)] = 165844, + [SMALL_STATE(4581)] = 165875, + [SMALL_STATE(4582)] = 165902, + [SMALL_STATE(4583)] = 165933, + [SMALL_STATE(4584)] = 165964, + [SMALL_STATE(4585)] = 165983, + [SMALL_STATE(4586)] = 166014, + [SMALL_STATE(4587)] = 166037, + [SMALL_STATE(4588)] = 166068, + [SMALL_STATE(4589)] = 166091, + [SMALL_STATE(4590)] = 166114, + [SMALL_STATE(4591)] = 166145, + [SMALL_STATE(4592)] = 166172, + [SMALL_STATE(4593)] = 166199, + [SMALL_STATE(4594)] = 166226, + [SMALL_STATE(4595)] = 166249, + [SMALL_STATE(4596)] = 166272, + [SMALL_STATE(4597)] = 166299, + [SMALL_STATE(4598)] = 166322, + [SMALL_STATE(4599)] = 166349, + [SMALL_STATE(4600)] = 166380, + [SMALL_STATE(4601)] = 166403, + [SMALL_STATE(4602)] = 166426, + [SMALL_STATE(4603)] = 166453, + [SMALL_STATE(4604)] = 166472, + [SMALL_STATE(4605)] = 166493, + [SMALL_STATE(4606)] = 166520, + [SMALL_STATE(4607)] = 166547, + [SMALL_STATE(4608)] = 166566, + [SMALL_STATE(4609)] = 166593, + [SMALL_STATE(4610)] = 166620, + [SMALL_STATE(4611)] = 166647, + [SMALL_STATE(4612)] = 166674, + [SMALL_STATE(4613)] = 166697, + [SMALL_STATE(4614)] = 166726, + [SMALL_STATE(4615)] = 166757, + [SMALL_STATE(4616)] = 166784, + [SMALL_STATE(4617)] = 166815, + [SMALL_STATE(4618)] = 166846, + [SMALL_STATE(4619)] = 166869, + [SMALL_STATE(4620)] = 166892, + [SMALL_STATE(4621)] = 166923, + [SMALL_STATE(4622)] = 166950, + [SMALL_STATE(4623)] = 166981, + [SMALL_STATE(4624)] = 167004, + [SMALL_STATE(4625)] = 167033, + [SMALL_STATE(4626)] = 167060, + [SMALL_STATE(4627)] = 167083, + [SMALL_STATE(4628)] = 167114, + [SMALL_STATE(4629)] = 167137, + [SMALL_STATE(4630)] = 167168, + [SMALL_STATE(4631)] = 167195, + [SMALL_STATE(4632)] = 167226, + [SMALL_STATE(4633)] = 167253, + [SMALL_STATE(4634)] = 167280, + [SMALL_STATE(4635)] = 167303, + [SMALL_STATE(4636)] = 167330, + [SMALL_STATE(4637)] = 167357, + [SMALL_STATE(4638)] = 167380, + [SMALL_STATE(4639)] = 167407, + [SMALL_STATE(4640)] = 167438, + [SMALL_STATE(4641)] = 167461, + [SMALL_STATE(4642)] = 167488, + [SMALL_STATE(4643)] = 167515, + [SMALL_STATE(4644)] = 167546, + [SMALL_STATE(4645)] = 167575, + [SMALL_STATE(4646)] = 167596, + [SMALL_STATE(4647)] = 167623, + [SMALL_STATE(4648)] = 167650, + [SMALL_STATE(4649)] = 167669, + [SMALL_STATE(4650)] = 167692, + [SMALL_STATE(4651)] = 167723, + [SMALL_STATE(4652)] = 167750, + [SMALL_STATE(4653)] = 167769, + [SMALL_STATE(4654)] = 167792, + [SMALL_STATE(4655)] = 167815, + [SMALL_STATE(4656)] = 167838, + [SMALL_STATE(4657)] = 167865, + [SMALL_STATE(4658)] = 167893, + [SMALL_STATE(4659)] = 167921, + [SMALL_STATE(4660)] = 167949, + [SMALL_STATE(4661)] = 167975, + [SMALL_STATE(4662)] = 167993, + [SMALL_STATE(4663)] = 168015, + [SMALL_STATE(4664)] = 168037, + [SMALL_STATE(4665)] = 168065, + [SMALL_STATE(4666)] = 168093, + [SMALL_STATE(4667)] = 168121, + [SMALL_STATE(4668)] = 168147, + [SMALL_STATE(4669)] = 168169, + [SMALL_STATE(4670)] = 168191, + [SMALL_STATE(4671)] = 168219, + [SMALL_STATE(4672)] = 168241, + [SMALL_STATE(4673)] = 168267, + [SMALL_STATE(4674)] = 168289, + [SMALL_STATE(4675)] = 168311, + [SMALL_STATE(4676)] = 168331, + [SMALL_STATE(4677)] = 168353, + [SMALL_STATE(4678)] = 168379, + [SMALL_STATE(4679)] = 168407, + [SMALL_STATE(4680)] = 168435, + [SMALL_STATE(4681)] = 168463, + [SMALL_STATE(4682)] = 168491, + [SMALL_STATE(4683)] = 168509, + [SMALL_STATE(4684)] = 168535, + [SMALL_STATE(4685)] = 168563, + [SMALL_STATE(4686)] = 168583, + [SMALL_STATE(4687)] = 168611, + [SMALL_STATE(4688)] = 168635, + [SMALL_STATE(4689)] = 168661, + [SMALL_STATE(4690)] = 168683, + [SMALL_STATE(4691)] = 168711, + [SMALL_STATE(4692)] = 168737, + [SMALL_STATE(4693)] = 168755, + [SMALL_STATE(4694)] = 168783, + [SMALL_STATE(4695)] = 168805, + [SMALL_STATE(4696)] = 168827, + [SMALL_STATE(4697)] = 168845, + [SMALL_STATE(4698)] = 168873, + [SMALL_STATE(4699)] = 168891, + [SMALL_STATE(4700)] = 168917, + [SMALL_STATE(4701)] = 168945, + [SMALL_STATE(4702)] = 168971, + [SMALL_STATE(4703)] = 168993, + [SMALL_STATE(4704)] = 169019, + [SMALL_STATE(4705)] = 169045, + [SMALL_STATE(4706)] = 169067, + [SMALL_STATE(4707)] = 169095, + [SMALL_STATE(4708)] = 169123, + [SMALL_STATE(4709)] = 169141, + [SMALL_STATE(4710)] = 169169, + [SMALL_STATE(4711)] = 169191, + [SMALL_STATE(4712)] = 169217, + [SMALL_STATE(4713)] = 169243, + [SMALL_STATE(4714)] = 169263, + [SMALL_STATE(4715)] = 169281, + [SMALL_STATE(4716)] = 169303, + [SMALL_STATE(4717)] = 169325, + [SMALL_STATE(4718)] = 169347, + [SMALL_STATE(4719)] = 169365, + [SMALL_STATE(4720)] = 169383, + [SMALL_STATE(4721)] = 169411, + [SMALL_STATE(4722)] = 169433, + [SMALL_STATE(4723)] = 169459, + [SMALL_STATE(4724)] = 169487, + [SMALL_STATE(4725)] = 169509, + [SMALL_STATE(4726)] = 169537, + [SMALL_STATE(4727)] = 169563, + [SMALL_STATE(4728)] = 169591, + [SMALL_STATE(4729)] = 169619, + [SMALL_STATE(4730)] = 169641, + [SMALL_STATE(4731)] = 169663, + [SMALL_STATE(4732)] = 169691, + [SMALL_STATE(4733)] = 169719, + [SMALL_STATE(4734)] = 169741, + [SMALL_STATE(4735)] = 169763, + [SMALL_STATE(4736)] = 169791, + [SMALL_STATE(4737)] = 169817, + [SMALL_STATE(4738)] = 169845, + [SMALL_STATE(4739)] = 169867, + [SMALL_STATE(4740)] = 169895, + [SMALL_STATE(4741)] = 169917, + [SMALL_STATE(4742)] = 169945, + [SMALL_STATE(4743)] = 169967, + [SMALL_STATE(4744)] = 169995, + [SMALL_STATE(4745)] = 170023, + [SMALL_STATE(4746)] = 170051, + [SMALL_STATE(4747)] = 170073, + [SMALL_STATE(4748)] = 170101, + [SMALL_STATE(4749)] = 170123, + [SMALL_STATE(4750)] = 170151, + [SMALL_STATE(4751)] = 170173, + [SMALL_STATE(4752)] = 170195, + [SMALL_STATE(4753)] = 170223, + [SMALL_STATE(4754)] = 170251, + [SMALL_STATE(4755)] = 170279, + [SMALL_STATE(4756)] = 170301, + [SMALL_STATE(4757)] = 170329, + [SMALL_STATE(4758)] = 170357, + [SMALL_STATE(4759)] = 170375, + [SMALL_STATE(4760)] = 170403, + [SMALL_STATE(4761)] = 170429, + [SMALL_STATE(4762)] = 170457, + [SMALL_STATE(4763)] = 170479, + [SMALL_STATE(4764)] = 170507, + [SMALL_STATE(4765)] = 170535, + [SMALL_STATE(4766)] = 170557, + [SMALL_STATE(4767)] = 170581, + [SMALL_STATE(4768)] = 170609, + [SMALL_STATE(4769)] = 170635, + [SMALL_STATE(4770)] = 170657, + [SMALL_STATE(4771)] = 170685, + [SMALL_STATE(4772)] = 170713, + [SMALL_STATE(4773)] = 170735, + [SMALL_STATE(4774)] = 170757, + [SMALL_STATE(4775)] = 170785, + [SMALL_STATE(4776)] = 170813, + [SMALL_STATE(4777)] = 170835, + [SMALL_STATE(4778)] = 170863, + [SMALL_STATE(4779)] = 170885, + [SMALL_STATE(4780)] = 170911, + [SMALL_STATE(4781)] = 170933, + [SMALL_STATE(4782)] = 170961, + [SMALL_STATE(4783)] = 170981, + [SMALL_STATE(4784)] = 171009, + [SMALL_STATE(4785)] = 171027, + [SMALL_STATE(4786)] = 171049, + [SMALL_STATE(4787)] = 171077, + [SMALL_STATE(4788)] = 171103, + [SMALL_STATE(4789)] = 171131, + [SMALL_STATE(4790)] = 171159, + [SMALL_STATE(4791)] = 171181, + [SMALL_STATE(4792)] = 171209, + [SMALL_STATE(4793)] = 171237, + [SMALL_STATE(4794)] = 171265, + [SMALL_STATE(4795)] = 171291, + [SMALL_STATE(4796)] = 171313, + [SMALL_STATE(4797)] = 171341, + [SMALL_STATE(4798)] = 171369, + [SMALL_STATE(4799)] = 171389, + [SMALL_STATE(4800)] = 171417, + [SMALL_STATE(4801)] = 171445, + [SMALL_STATE(4802)] = 171473, + [SMALL_STATE(4803)] = 171501, + [SMALL_STATE(4804)] = 171529, + [SMALL_STATE(4805)] = 171555, + [SMALL_STATE(4806)] = 171583, + [SMALL_STATE(4807)] = 171611, + [SMALL_STATE(4808)] = 171639, + [SMALL_STATE(4809)] = 171667, + [SMALL_STATE(4810)] = 171695, + [SMALL_STATE(4811)] = 171723, + [SMALL_STATE(4812)] = 171745, + [SMALL_STATE(4813)] = 171767, + [SMALL_STATE(4814)] = 171789, + [SMALL_STATE(4815)] = 171811, + [SMALL_STATE(4816)] = 171835, + [SMALL_STATE(4817)] = 171853, + [SMALL_STATE(4818)] = 171875, + [SMALL_STATE(4819)] = 171903, + [SMALL_STATE(4820)] = 171929, + [SMALL_STATE(4821)] = 171951, + [SMALL_STATE(4822)] = 171979, + [SMALL_STATE(4823)] = 172007, + [SMALL_STATE(4824)] = 172029, + [SMALL_STATE(4825)] = 172057, + [SMALL_STATE(4826)] = 172085, + [SMALL_STATE(4827)] = 172113, + [SMALL_STATE(4828)] = 172135, + [SMALL_STATE(4829)] = 172163, + [SMALL_STATE(4830)] = 172185, + [SMALL_STATE(4831)] = 172207, + [SMALL_STATE(4832)] = 172233, + [SMALL_STATE(4833)] = 172253, + [SMALL_STATE(4834)] = 172281, + [SMALL_STATE(4835)] = 172303, + [SMALL_STATE(4836)] = 172321, + [SMALL_STATE(4837)] = 172347, + [SMALL_STATE(4838)] = 172369, + [SMALL_STATE(4839)] = 172391, + [SMALL_STATE(4840)] = 172413, + [SMALL_STATE(4841)] = 172435, + [SMALL_STATE(4842)] = 172457, + [SMALL_STATE(4843)] = 172477, + [SMALL_STATE(4844)] = 172497, + [SMALL_STATE(4845)] = 172517, + [SMALL_STATE(4846)] = 172539, + [SMALL_STATE(4847)] = 172561, + [SMALL_STATE(4848)] = 172583, + [SMALL_STATE(4849)] = 172611, + [SMALL_STATE(4850)] = 172639, + [SMALL_STATE(4851)] = 172660, + [SMALL_STATE(4852)] = 172685, + [SMALL_STATE(4853)] = 172706, + [SMALL_STATE(4854)] = 172731, + [SMALL_STATE(4855)] = 172748, + [SMALL_STATE(4856)] = 172765, + [SMALL_STATE(4857)] = 172788, + [SMALL_STATE(4858)] = 172813, + [SMALL_STATE(4859)] = 172836, + [SMALL_STATE(4860)] = 172861, + [SMALL_STATE(4861)] = 172878, + [SMALL_STATE(4862)] = 172903, + [SMALL_STATE(4863)] = 172928, + [SMALL_STATE(4864)] = 172947, + [SMALL_STATE(4865)] = 172972, + [SMALL_STATE(4866)] = 172989, + [SMALL_STATE(4867)] = 173006, + [SMALL_STATE(4868)] = 173027, + [SMALL_STATE(4869)] = 173048, + [SMALL_STATE(4870)] = 173065, + [SMALL_STATE(4871)] = 173082, + [SMALL_STATE(4872)] = 173099, + [SMALL_STATE(4873)] = 173124, + [SMALL_STATE(4874)] = 173141, + [SMALL_STATE(4875)] = 173158, + [SMALL_STATE(4876)] = 173175, + [SMALL_STATE(4877)] = 173196, + [SMALL_STATE(4878)] = 173219, + [SMALL_STATE(4879)] = 173236, + [SMALL_STATE(4880)] = 173253, + [SMALL_STATE(4881)] = 173274, + [SMALL_STATE(4882)] = 173295, + [SMALL_STATE(4883)] = 173318, + [SMALL_STATE(4884)] = 173335, + [SMALL_STATE(4885)] = 173352, + [SMALL_STATE(4886)] = 173369, + [SMALL_STATE(4887)] = 173386, + [SMALL_STATE(4888)] = 173407, + [SMALL_STATE(4889)] = 173424, + [SMALL_STATE(4890)] = 173445, + [SMALL_STATE(4891)] = 173462, + [SMALL_STATE(4892)] = 173487, + [SMALL_STATE(4893)] = 173506, + [SMALL_STATE(4894)] = 173523, + [SMALL_STATE(4895)] = 173544, + [SMALL_STATE(4896)] = 173565, + [SMALL_STATE(4897)] = 173582, + [SMALL_STATE(4898)] = 173599, + [SMALL_STATE(4899)] = 173620, + [SMALL_STATE(4900)] = 173641, + [SMALL_STATE(4901)] = 173658, + [SMALL_STATE(4902)] = 173675, + [SMALL_STATE(4903)] = 173692, + [SMALL_STATE(4904)] = 173709, + [SMALL_STATE(4905)] = 173734, + [SMALL_STATE(4906)] = 173751, + [SMALL_STATE(4907)] = 173772, + [SMALL_STATE(4908)] = 173789, + [SMALL_STATE(4909)] = 173806, + [SMALL_STATE(4910)] = 173823, + [SMALL_STATE(4911)] = 173844, + [SMALL_STATE(4912)] = 173861, + [SMALL_STATE(4913)] = 173878, + [SMALL_STATE(4914)] = 173895, + [SMALL_STATE(4915)] = 173916, + [SMALL_STATE(4916)] = 173941, + [SMALL_STATE(4917)] = 173958, + [SMALL_STATE(4918)] = 173983, + [SMALL_STATE(4919)] = 174004, + [SMALL_STATE(4920)] = 174025, + [SMALL_STATE(4921)] = 174042, + [SMALL_STATE(4922)] = 174059, + [SMALL_STATE(4923)] = 174076, + [SMALL_STATE(4924)] = 174093, + [SMALL_STATE(4925)] = 174114, + [SMALL_STATE(4926)] = 174131, + [SMALL_STATE(4927)] = 174148, + [SMALL_STATE(4928)] = 174165, + [SMALL_STATE(4929)] = 174182, + [SMALL_STATE(4930)] = 174199, + [SMALL_STATE(4931)] = 174216, + [SMALL_STATE(4932)] = 174233, + [SMALL_STATE(4933)] = 174250, + [SMALL_STATE(4934)] = 174267, + [SMALL_STATE(4935)] = 174284, + [SMALL_STATE(4936)] = 174301, + [SMALL_STATE(4937)] = 174318, + [SMALL_STATE(4938)] = 174335, + [SMALL_STATE(4939)] = 174352, + [SMALL_STATE(4940)] = 174369, + [SMALL_STATE(4941)] = 174390, + [SMALL_STATE(4942)] = 174411, + [SMALL_STATE(4943)] = 174428, + [SMALL_STATE(4944)] = 174449, + [SMALL_STATE(4945)] = 174470, + [SMALL_STATE(4946)] = 174487, + [SMALL_STATE(4947)] = 174504, + [SMALL_STATE(4948)] = 174521, + [SMALL_STATE(4949)] = 174538, + [SMALL_STATE(4950)] = 174555, + [SMALL_STATE(4951)] = 174576, + [SMALL_STATE(4952)] = 174601, + [SMALL_STATE(4953)] = 174618, + [SMALL_STATE(4954)] = 174635, + [SMALL_STATE(4955)] = 174656, + [SMALL_STATE(4956)] = 174677, + [SMALL_STATE(4957)] = 174694, + [SMALL_STATE(4958)] = 174719, + [SMALL_STATE(4959)] = 174744, + [SMALL_STATE(4960)] = 174761, + [SMALL_STATE(4961)] = 174782, + [SMALL_STATE(4962)] = 174807, + [SMALL_STATE(4963)] = 174824, + [SMALL_STATE(4964)] = 174841, + [SMALL_STATE(4965)] = 174862, + [SMALL_STATE(4966)] = 174887, + [SMALL_STATE(4967)] = 174904, + [SMALL_STATE(4968)] = 174925, + [SMALL_STATE(4969)] = 174942, + [SMALL_STATE(4970)] = 174965, + [SMALL_STATE(4971)] = 174982, + [SMALL_STATE(4972)] = 174999, + [SMALL_STATE(4973)] = 175024, + [SMALL_STATE(4974)] = 175043, + [SMALL_STATE(4975)] = 175064, + [SMALL_STATE(4976)] = 175089, + [SMALL_STATE(4977)] = 175114, + [SMALL_STATE(4978)] = 175135, + [SMALL_STATE(4979)] = 175156, + [SMALL_STATE(4980)] = 175173, + [SMALL_STATE(4981)] = 175190, + [SMALL_STATE(4982)] = 175211, + [SMALL_STATE(4983)] = 175228, + [SMALL_STATE(4984)] = 175253, + [SMALL_STATE(4985)] = 175274, + [SMALL_STATE(4986)] = 175295, + [SMALL_STATE(4987)] = 175320, + [SMALL_STATE(4988)] = 175341, + [SMALL_STATE(4989)] = 175358, + [SMALL_STATE(4990)] = 175375, + [SMALL_STATE(4991)] = 175392, + [SMALL_STATE(4992)] = 175409, + [SMALL_STATE(4993)] = 175426, + [SMALL_STATE(4994)] = 175443, + [SMALL_STATE(4995)] = 175460, + [SMALL_STATE(4996)] = 175477, + [SMALL_STATE(4997)] = 175498, + [SMALL_STATE(4998)] = 175523, + [SMALL_STATE(4999)] = 175540, + [SMALL_STATE(5000)] = 175557, + [SMALL_STATE(5001)] = 175574, + [SMALL_STATE(5002)] = 175593, + [SMALL_STATE(5003)] = 175618, + [SMALL_STATE(5004)] = 175639, + [SMALL_STATE(5005)] = 175656, + [SMALL_STATE(5006)] = 175677, + [SMALL_STATE(5007)] = 175698, + [SMALL_STATE(5008)] = 175723, + [SMALL_STATE(5009)] = 175744, + [SMALL_STATE(5010)] = 175765, + [SMALL_STATE(5011)] = 175786, + [SMALL_STATE(5012)] = 175811, + [SMALL_STATE(5013)] = 175836, + [SMALL_STATE(5014)] = 175861, + [SMALL_STATE(5015)] = 175878, + [SMALL_STATE(5016)] = 175899, + [SMALL_STATE(5017)] = 175924, + [SMALL_STATE(5018)] = 175945, + [SMALL_STATE(5019)] = 175970, + [SMALL_STATE(5020)] = 175995, + [SMALL_STATE(5021)] = 176016, + [SMALL_STATE(5022)] = 176037, + [SMALL_STATE(5023)] = 176062, + [SMALL_STATE(5024)] = 176083, + [SMALL_STATE(5025)] = 176100, + [SMALL_STATE(5026)] = 176125, + [SMALL_STATE(5027)] = 176146, + [SMALL_STATE(5028)] = 176171, + [SMALL_STATE(5029)] = 176194, + [SMALL_STATE(5030)] = 176215, + [SMALL_STATE(5031)] = 176240, + [SMALL_STATE(5032)] = 176265, + [SMALL_STATE(5033)] = 176290, + [SMALL_STATE(5034)] = 176311, + [SMALL_STATE(5035)] = 176336, + [SMALL_STATE(5036)] = 176361, + [SMALL_STATE(5037)] = 176384, + [SMALL_STATE(5038)] = 176409, + [SMALL_STATE(5039)] = 176434, + [SMALL_STATE(5040)] = 176459, + [SMALL_STATE(5041)] = 176480, + [SMALL_STATE(5042)] = 176505, + [SMALL_STATE(5043)] = 176530, + [SMALL_STATE(5044)] = 176555, + [SMALL_STATE(5045)] = 176580, + [SMALL_STATE(5046)] = 176605, + [SMALL_STATE(5047)] = 176630, + [SMALL_STATE(5048)] = 176655, + [SMALL_STATE(5049)] = 176680, + [SMALL_STATE(5050)] = 176705, + [SMALL_STATE(5051)] = 176726, + [SMALL_STATE(5052)] = 176747, + [SMALL_STATE(5053)] = 176772, + [SMALL_STATE(5054)] = 176797, + [SMALL_STATE(5055)] = 176822, + [SMALL_STATE(5056)] = 176847, + [SMALL_STATE(5057)] = 176868, + [SMALL_STATE(5058)] = 176889, + [SMALL_STATE(5059)] = 176914, + [SMALL_STATE(5060)] = 176939, + [SMALL_STATE(5061)] = 176964, + [SMALL_STATE(5062)] = 176985, + [SMALL_STATE(5063)] = 177010, + [SMALL_STATE(5064)] = 177035, + [SMALL_STATE(5065)] = 177060, + [SMALL_STATE(5066)] = 177085, + [SMALL_STATE(5067)] = 177106, + [SMALL_STATE(5068)] = 177131, + [SMALL_STATE(5069)] = 177152, + [SMALL_STATE(5070)] = 177169, + [SMALL_STATE(5071)] = 177194, + [SMALL_STATE(5072)] = 177211, + [SMALL_STATE(5073)] = 177228, + [SMALL_STATE(5074)] = 177245, + [SMALL_STATE(5075)] = 177266, + [SMALL_STATE(5076)] = 177287, + [SMALL_STATE(5077)] = 177312, + [SMALL_STATE(5078)] = 177337, + [SMALL_STATE(5079)] = 177362, + [SMALL_STATE(5080)] = 177387, + [SMALL_STATE(5081)] = 177412, + [SMALL_STATE(5082)] = 177437, + [SMALL_STATE(5083)] = 177462, + [SMALL_STATE(5084)] = 177485, + [SMALL_STATE(5085)] = 177510, + [SMALL_STATE(5086)] = 177535, + [SMALL_STATE(5087)] = 177556, + [SMALL_STATE(5088)] = 177577, + [SMALL_STATE(5089)] = 177602, + [SMALL_STATE(5090)] = 177627, + [SMALL_STATE(5091)] = 177652, + [SMALL_STATE(5092)] = 177677, + [SMALL_STATE(5093)] = 177698, + [SMALL_STATE(5094)] = 177715, + [SMALL_STATE(5095)] = 177736, + [SMALL_STATE(5096)] = 177753, + [SMALL_STATE(5097)] = 177778, + [SMALL_STATE(5098)] = 177801, + [SMALL_STATE(5099)] = 177822, + [SMALL_STATE(5100)] = 177843, + [SMALL_STATE(5101)] = 177864, + [SMALL_STATE(5102)] = 177885, + [SMALL_STATE(5103)] = 177908, + [SMALL_STATE(5104)] = 177929, + [SMALL_STATE(5105)] = 177946, + [SMALL_STATE(5106)] = 177969, + [SMALL_STATE(5107)] = 177990, + [SMALL_STATE(5108)] = 178013, + [SMALL_STATE(5109)] = 178036, + [SMALL_STATE(5110)] = 178059, + [SMALL_STATE(5111)] = 178080, + [SMALL_STATE(5112)] = 178101, + [SMALL_STATE(5113)] = 178118, + [SMALL_STATE(5114)] = 178139, + [SMALL_STATE(5115)] = 178160, + [SMALL_STATE(5116)] = 178185, + [SMALL_STATE(5117)] = 178206, + [SMALL_STATE(5118)] = 178231, + [SMALL_STATE(5119)] = 178256, + [SMALL_STATE(5120)] = 178281, + [SMALL_STATE(5121)] = 178306, + [SMALL_STATE(5122)] = 178329, + [SMALL_STATE(5123)] = 178354, + [SMALL_STATE(5124)] = 178379, + [SMALL_STATE(5125)] = 178404, + [SMALL_STATE(5126)] = 178429, + [SMALL_STATE(5127)] = 178454, + [SMALL_STATE(5128)] = 178475, + [SMALL_STATE(5129)] = 178496, + [SMALL_STATE(5130)] = 178521, + [SMALL_STATE(5131)] = 178546, + [SMALL_STATE(5132)] = 178571, + [SMALL_STATE(5133)] = 178596, + [SMALL_STATE(5134)] = 178617, + [SMALL_STATE(5135)] = 178642, + [SMALL_STATE(5136)] = 178663, + [SMALL_STATE(5137)] = 178684, + [SMALL_STATE(5138)] = 178701, + [SMALL_STATE(5139)] = 178718, + [SMALL_STATE(5140)] = 178743, + [SMALL_STATE(5141)] = 178760, + [SMALL_STATE(5142)] = 178777, + [SMALL_STATE(5143)] = 178794, + [SMALL_STATE(5144)] = 178819, + [SMALL_STATE(5145)] = 178840, + [SMALL_STATE(5146)] = 178861, + [SMALL_STATE(5147)] = 178886, + [SMALL_STATE(5148)] = 178907, + [SMALL_STATE(5149)] = 178930, + [SMALL_STATE(5150)] = 178947, + [SMALL_STATE(5151)] = 178970, + [SMALL_STATE(5152)] = 178995, + [SMALL_STATE(5153)] = 179012, + [SMALL_STATE(5154)] = 179029, + [SMALL_STATE(5155)] = 179046, + [SMALL_STATE(5156)] = 179063, + [SMALL_STATE(5157)] = 179088, + [SMALL_STATE(5158)] = 179105, + [SMALL_STATE(5159)] = 179122, + [SMALL_STATE(5160)] = 179139, + [SMALL_STATE(5161)] = 179160, + [SMALL_STATE(5162)] = 179177, + [SMALL_STATE(5163)] = 179202, + [SMALL_STATE(5164)] = 179227, + [SMALL_STATE(5165)] = 179244, + [SMALL_STATE(5166)] = 179265, + [SMALL_STATE(5167)] = 179290, + [SMALL_STATE(5168)] = 179307, + [SMALL_STATE(5169)] = 179324, + [SMALL_STATE(5170)] = 179349, + [SMALL_STATE(5171)] = 179374, + [SMALL_STATE(5172)] = 179391, + [SMALL_STATE(5173)] = 179416, + [SMALL_STATE(5174)] = 179433, + [SMALL_STATE(5175)] = 179458, + [SMALL_STATE(5176)] = 179483, + [SMALL_STATE(5177)] = 179504, + [SMALL_STATE(5178)] = 179529, + [SMALL_STATE(5179)] = 179550, + [SMALL_STATE(5180)] = 179575, + [SMALL_STATE(5181)] = 179600, + [SMALL_STATE(5182)] = 179625, + [SMALL_STATE(5183)] = 179650, + [SMALL_STATE(5184)] = 179675, + [SMALL_STATE(5185)] = 179696, + [SMALL_STATE(5186)] = 179721, + [SMALL_STATE(5187)] = 179742, + [SMALL_STATE(5188)] = 179767, + [SMALL_STATE(5189)] = 179792, + [SMALL_STATE(5190)] = 179813, + [SMALL_STATE(5191)] = 179830, + [SMALL_STATE(5192)] = 179851, + [SMALL_STATE(5193)] = 179872, + [SMALL_STATE(5194)] = 179897, + [SMALL_STATE(5195)] = 179918, + [SMALL_STATE(5196)] = 179943, + [SMALL_STATE(5197)] = 179968, + [SMALL_STATE(5198)] = 179989, + [SMALL_STATE(5199)] = 180010, + [SMALL_STATE(5200)] = 180031, + [SMALL_STATE(5201)] = 180056, + [SMALL_STATE(5202)] = 180081, + [SMALL_STATE(5203)] = 180102, + [SMALL_STATE(5204)] = 180127, + [SMALL_STATE(5205)] = 180148, + [SMALL_STATE(5206)] = 180173, + [SMALL_STATE(5207)] = 180190, + [SMALL_STATE(5208)] = 180215, + [SMALL_STATE(5209)] = 180240, + [SMALL_STATE(5210)] = 180257, + [SMALL_STATE(5211)] = 180274, + [SMALL_STATE(5212)] = 180299, + [SMALL_STATE(5213)] = 180316, + [SMALL_STATE(5214)] = 180333, + [SMALL_STATE(5215)] = 180350, + [SMALL_STATE(5216)] = 180367, + [SMALL_STATE(5217)] = 180384, + [SMALL_STATE(5218)] = 180401, + [SMALL_STATE(5219)] = 180426, + [SMALL_STATE(5220)] = 180451, + [SMALL_STATE(5221)] = 180476, + [SMALL_STATE(5222)] = 180493, + [SMALL_STATE(5223)] = 180516, + [SMALL_STATE(5224)] = 180539, + [SMALL_STATE(5225)] = 180562, + [SMALL_STATE(5226)] = 180583, + [SMALL_STATE(5227)] = 180604, + [SMALL_STATE(5228)] = 180625, + [SMALL_STATE(5229)] = 180650, + [SMALL_STATE(5230)] = 180671, + [SMALL_STATE(5231)] = 180692, + [SMALL_STATE(5232)] = 180713, + [SMALL_STATE(5233)] = 180734, + [SMALL_STATE(5234)] = 180759, + [SMALL_STATE(5235)] = 180780, + [SMALL_STATE(5236)] = 180801, + [SMALL_STATE(5237)] = 180818, + [SMALL_STATE(5238)] = 180843, + [SMALL_STATE(5239)] = 180864, + [SMALL_STATE(5240)] = 180885, + [SMALL_STATE(5241)] = 180906, + [SMALL_STATE(5242)] = 180927, + [SMALL_STATE(5243)] = 180948, + [SMALL_STATE(5244)] = 180969, + [SMALL_STATE(5245)] = 180990, + [SMALL_STATE(5246)] = 181011, + [SMALL_STATE(5247)] = 181032, + [SMALL_STATE(5248)] = 181053, + [SMALL_STATE(5249)] = 181074, + [SMALL_STATE(5250)] = 181095, + [SMALL_STATE(5251)] = 181116, + [SMALL_STATE(5252)] = 181137, + [SMALL_STATE(5253)] = 181162, + [SMALL_STATE(5254)] = 181183, + [SMALL_STATE(5255)] = 181204, + [SMALL_STATE(5256)] = 181225, + [SMALL_STATE(5257)] = 181246, + [SMALL_STATE(5258)] = 181267, + [SMALL_STATE(5259)] = 181292, + [SMALL_STATE(5260)] = 181313, + [SMALL_STATE(5261)] = 181334, + [SMALL_STATE(5262)] = 181355, + [SMALL_STATE(5263)] = 181380, + [SMALL_STATE(5264)] = 181401, + [SMALL_STATE(5265)] = 181422, + [SMALL_STATE(5266)] = 181443, + [SMALL_STATE(5267)] = 181464, + [SMALL_STATE(5268)] = 181489, + [SMALL_STATE(5269)] = 181514, + [SMALL_STATE(5270)] = 181535, + [SMALL_STATE(5271)] = 181552, + [SMALL_STATE(5272)] = 181573, + [SMALL_STATE(5273)] = 181598, + [SMALL_STATE(5274)] = 181619, + [SMALL_STATE(5275)] = 181642, + [SMALL_STATE(5276)] = 181663, + [SMALL_STATE(5277)] = 181684, + [SMALL_STATE(5278)] = 181705, + [SMALL_STATE(5279)] = 181726, + [SMALL_STATE(5280)] = 181747, + [SMALL_STATE(5281)] = 181768, + [SMALL_STATE(5282)] = 181793, + [SMALL_STATE(5283)] = 181816, + [SMALL_STATE(5284)] = 181833, + [SMALL_STATE(5285)] = 181850, + [SMALL_STATE(5286)] = 181871, + [SMALL_STATE(5287)] = 181892, + [SMALL_STATE(5288)] = 181913, + [SMALL_STATE(5289)] = 181934, + [SMALL_STATE(5290)] = 181959, + [SMALL_STATE(5291)] = 181980, + [SMALL_STATE(5292)] = 182001, + [SMALL_STATE(5293)] = 182022, + [SMALL_STATE(5294)] = 182047, + [SMALL_STATE(5295)] = 182068, + [SMALL_STATE(5296)] = 182085, + [SMALL_STATE(5297)] = 182110, + [SMALL_STATE(5298)] = 182135, + [SMALL_STATE(5299)] = 182152, + [SMALL_STATE(5300)] = 182169, + [SMALL_STATE(5301)] = 182194, + [SMALL_STATE(5302)] = 182211, + [SMALL_STATE(5303)] = 182228, + [SMALL_STATE(5304)] = 182245, + [SMALL_STATE(5305)] = 182262, + [SMALL_STATE(5306)] = 182287, + [SMALL_STATE(5307)] = 182308, + [SMALL_STATE(5308)] = 182329, + [SMALL_STATE(5309)] = 182346, + [SMALL_STATE(5310)] = 182371, + [SMALL_STATE(5311)] = 182392, + [SMALL_STATE(5312)] = 182413, + [SMALL_STATE(5313)] = 182430, + [SMALL_STATE(5314)] = 182455, + [SMALL_STATE(5315)] = 182472, + [SMALL_STATE(5316)] = 182489, + [SMALL_STATE(5317)] = 182506, + [SMALL_STATE(5318)] = 182523, + [SMALL_STATE(5319)] = 182548, + [SMALL_STATE(5320)] = 182569, + [SMALL_STATE(5321)] = 182590, + [SMALL_STATE(5322)] = 182615, + [SMALL_STATE(5323)] = 182636, + [SMALL_STATE(5324)] = 182657, + [SMALL_STATE(5325)] = 182674, + [SMALL_STATE(5326)] = 182697, + [SMALL_STATE(5327)] = 182718, + [SMALL_STATE(5328)] = 182739, + [SMALL_STATE(5329)] = 182764, + [SMALL_STATE(5330)] = 182785, + [SMALL_STATE(5331)] = 182806, + [SMALL_STATE(5332)] = 182823, + [SMALL_STATE(5333)] = 182844, + [SMALL_STATE(5334)] = 182867, + [SMALL_STATE(5335)] = 182888, + [SMALL_STATE(5336)] = 182909, + [SMALL_STATE(5337)] = 182930, + [SMALL_STATE(5338)] = 182951, + [SMALL_STATE(5339)] = 182972, + [SMALL_STATE(5340)] = 182995, + [SMALL_STATE(5341)] = 183016, + [SMALL_STATE(5342)] = 183039, + [SMALL_STATE(5343)] = 183060, + [SMALL_STATE(5344)] = 183079, + [SMALL_STATE(5345)] = 183096, + [SMALL_STATE(5346)] = 183121, + [SMALL_STATE(5347)] = 183140, + [SMALL_STATE(5348)] = 183159, + [SMALL_STATE(5349)] = 183180, + [SMALL_STATE(5350)] = 183199, + [SMALL_STATE(5351)] = 183224, + [SMALL_STATE(5352)] = 183245, + [SMALL_STATE(5353)] = 183266, + [SMALL_STATE(5354)] = 183287, + [SMALL_STATE(5355)] = 183312, + [SMALL_STATE(5356)] = 183335, + [SMALL_STATE(5357)] = 183360, + [SMALL_STATE(5358)] = 183381, + [SMALL_STATE(5359)] = 183402, + [SMALL_STATE(5360)] = 183423, + [SMALL_STATE(5361)] = 183444, + [SMALL_STATE(5362)] = 183469, + [SMALL_STATE(5363)] = 183490, + [SMALL_STATE(5364)] = 183511, + [SMALL_STATE(5365)] = 183532, + [SMALL_STATE(5366)] = 183557, + [SMALL_STATE(5367)] = 183578, + [SMALL_STATE(5368)] = 183599, + [SMALL_STATE(5369)] = 183620, + [SMALL_STATE(5370)] = 183641, + [SMALL_STATE(5371)] = 183662, + [SMALL_STATE(5372)] = 183683, + [SMALL_STATE(5373)] = 183704, + [SMALL_STATE(5374)] = 183725, + [SMALL_STATE(5375)] = 183746, + [SMALL_STATE(5376)] = 183767, + [SMALL_STATE(5377)] = 183788, + [SMALL_STATE(5378)] = 183808, + [SMALL_STATE(5379)] = 183828, + [SMALL_STATE(5380)] = 183850, + [SMALL_STATE(5381)] = 183870, + [SMALL_STATE(5382)] = 183890, + [SMALL_STATE(5383)] = 183910, + [SMALL_STATE(5384)] = 183930, + [SMALL_STATE(5385)] = 183950, + [SMALL_STATE(5386)] = 183970, + [SMALL_STATE(5387)] = 183990, + [SMALL_STATE(5388)] = 184010, + [SMALL_STATE(5389)] = 184030, + [SMALL_STATE(5390)] = 184050, + [SMALL_STATE(5391)] = 184070, + [SMALL_STATE(5392)] = 184090, + [SMALL_STATE(5393)] = 184110, + [SMALL_STATE(5394)] = 184130, + [SMALL_STATE(5395)] = 184152, + [SMALL_STATE(5396)] = 184172, + [SMALL_STATE(5397)] = 184192, + [SMALL_STATE(5398)] = 184214, + [SMALL_STATE(5399)] = 184234, + [SMALL_STATE(5400)] = 184254, + [SMALL_STATE(5401)] = 184276, + [SMALL_STATE(5402)] = 184298, + [SMALL_STATE(5403)] = 184320, + [SMALL_STATE(5404)] = 184340, + [SMALL_STATE(5405)] = 184360, + [SMALL_STATE(5406)] = 184380, + [SMALL_STATE(5407)] = 184402, + [SMALL_STATE(5408)] = 184422, + [SMALL_STATE(5409)] = 184444, + [SMALL_STATE(5410)] = 184464, + [SMALL_STATE(5411)] = 184484, + [SMALL_STATE(5412)] = 184504, + [SMALL_STATE(5413)] = 184524, + [SMALL_STATE(5414)] = 184544, + [SMALL_STATE(5415)] = 184566, + [SMALL_STATE(5416)] = 184586, + [SMALL_STATE(5417)] = 184608, + [SMALL_STATE(5418)] = 184628, + [SMALL_STATE(5419)] = 184648, + [SMALL_STATE(5420)] = 184668, + [SMALL_STATE(5421)] = 184688, + [SMALL_STATE(5422)] = 184708, + [SMALL_STATE(5423)] = 184728, + [SMALL_STATE(5424)] = 184748, + [SMALL_STATE(5425)] = 184768, + [SMALL_STATE(5426)] = 184788, + [SMALL_STATE(5427)] = 184808, + [SMALL_STATE(5428)] = 184828, + [SMALL_STATE(5429)] = 184848, + [SMALL_STATE(5430)] = 184868, + [SMALL_STATE(5431)] = 184888, + [SMALL_STATE(5432)] = 184908, + [SMALL_STATE(5433)] = 184928, + [SMALL_STATE(5434)] = 184950, + [SMALL_STATE(5435)] = 184970, + [SMALL_STATE(5436)] = 184990, + [SMALL_STATE(5437)] = 185010, + [SMALL_STATE(5438)] = 185032, + [SMALL_STATE(5439)] = 185052, + [SMALL_STATE(5440)] = 185074, + [SMALL_STATE(5441)] = 185094, + [SMALL_STATE(5442)] = 185114, + [SMALL_STATE(5443)] = 185136, + [SMALL_STATE(5444)] = 185158, + [SMALL_STATE(5445)] = 185178, + [SMALL_STATE(5446)] = 185198, + [SMALL_STATE(5447)] = 185218, + [SMALL_STATE(5448)] = 185240, + [SMALL_STATE(5449)] = 185260, + [SMALL_STATE(5450)] = 185282, + [SMALL_STATE(5451)] = 185302, + [SMALL_STATE(5452)] = 185322, + [SMALL_STATE(5453)] = 185342, + [SMALL_STATE(5454)] = 185364, + [SMALL_STATE(5455)] = 185386, + [SMALL_STATE(5456)] = 185408, + [SMALL_STATE(5457)] = 185430, + [SMALL_STATE(5458)] = 185452, + [SMALL_STATE(5459)] = 185470, + [SMALL_STATE(5460)] = 185492, + [SMALL_STATE(5461)] = 185514, + [SMALL_STATE(5462)] = 185536, + [SMALL_STATE(5463)] = 185558, + [SMALL_STATE(5464)] = 185580, + [SMALL_STATE(5465)] = 185602, + [SMALL_STATE(5466)] = 185624, + [SMALL_STATE(5467)] = 185642, + [SMALL_STATE(5468)] = 185662, + [SMALL_STATE(5469)] = 185682, + [SMALL_STATE(5470)] = 185702, + [SMALL_STATE(5471)] = 185724, + [SMALL_STATE(5472)] = 185746, + [SMALL_STATE(5473)] = 185766, + [SMALL_STATE(5474)] = 185786, + [SMALL_STATE(5475)] = 185806, + [SMALL_STATE(5476)] = 185826, + [SMALL_STATE(5477)] = 185848, + [SMALL_STATE(5478)] = 185870, + [SMALL_STATE(5479)] = 185890, + [SMALL_STATE(5480)] = 185906, + [SMALL_STATE(5481)] = 185922, + [SMALL_STATE(5482)] = 185944, + [SMALL_STATE(5483)] = 185964, + [SMALL_STATE(5484)] = 185984, + [SMALL_STATE(5485)] = 186004, + [SMALL_STATE(5486)] = 186026, + [SMALL_STATE(5487)] = 186048, + [SMALL_STATE(5488)] = 186070, + [SMALL_STATE(5489)] = 186088, + [SMALL_STATE(5490)] = 186106, + [SMALL_STATE(5491)] = 186126, + [SMALL_STATE(5492)] = 186148, + [SMALL_STATE(5493)] = 186168, + [SMALL_STATE(5494)] = 186188, + [SMALL_STATE(5495)] = 186210, + [SMALL_STATE(5496)] = 186232, + [SMALL_STATE(5497)] = 186254, + [SMALL_STATE(5498)] = 186274, + [SMALL_STATE(5499)] = 186294, + [SMALL_STATE(5500)] = 186316, + [SMALL_STATE(5501)] = 186338, + [SMALL_STATE(5502)] = 186360, + [SMALL_STATE(5503)] = 186380, + [SMALL_STATE(5504)] = 186400, + [SMALL_STATE(5505)] = 186422, + [SMALL_STATE(5506)] = 186440, + [SMALL_STATE(5507)] = 186462, + [SMALL_STATE(5508)] = 186484, + [SMALL_STATE(5509)] = 186504, + [SMALL_STATE(5510)] = 186524, + [SMALL_STATE(5511)] = 186546, + [SMALL_STATE(5512)] = 186568, + [SMALL_STATE(5513)] = 186590, + [SMALL_STATE(5514)] = 186610, + [SMALL_STATE(5515)] = 186630, + [SMALL_STATE(5516)] = 186650, + [SMALL_STATE(5517)] = 186670, + [SMALL_STATE(5518)] = 186692, + [SMALL_STATE(5519)] = 186710, + [SMALL_STATE(5520)] = 186732, + [SMALL_STATE(5521)] = 186754, + [SMALL_STATE(5522)] = 186770, + [SMALL_STATE(5523)] = 186792, + [SMALL_STATE(5524)] = 186814, + [SMALL_STATE(5525)] = 186836, + [SMALL_STATE(5526)] = 186856, + [SMALL_STATE(5527)] = 186876, + [SMALL_STATE(5528)] = 186898, + [SMALL_STATE(5529)] = 186920, + [SMALL_STATE(5530)] = 186942, + [SMALL_STATE(5531)] = 186964, + [SMALL_STATE(5532)] = 186984, + [SMALL_STATE(5533)] = 187000, + [SMALL_STATE(5534)] = 187022, + [SMALL_STATE(5535)] = 187044, + [SMALL_STATE(5536)] = 187062, + [SMALL_STATE(5537)] = 187080, + [SMALL_STATE(5538)] = 187100, + [SMALL_STATE(5539)] = 187120, + [SMALL_STATE(5540)] = 187140, + [SMALL_STATE(5541)] = 187162, + [SMALL_STATE(5542)] = 187182, + [SMALL_STATE(5543)] = 187202, + [SMALL_STATE(5544)] = 187222, + [SMALL_STATE(5545)] = 187242, + [SMALL_STATE(5546)] = 187262, + [SMALL_STATE(5547)] = 187282, + [SMALL_STATE(5548)] = 187304, + [SMALL_STATE(5549)] = 187326, + [SMALL_STATE(5550)] = 187346, + [SMALL_STATE(5551)] = 187366, + [SMALL_STATE(5552)] = 187386, + [SMALL_STATE(5553)] = 187406, + [SMALL_STATE(5554)] = 187428, + [SMALL_STATE(5555)] = 187448, + [SMALL_STATE(5556)] = 187466, + [SMALL_STATE(5557)] = 187486, + [SMALL_STATE(5558)] = 187504, + [SMALL_STATE(5559)] = 187526, + [SMALL_STATE(5560)] = 187548, + [SMALL_STATE(5561)] = 187564, + [SMALL_STATE(5562)] = 187584, + [SMALL_STATE(5563)] = 187604, + [SMALL_STATE(5564)] = 187624, + [SMALL_STATE(5565)] = 187644, + [SMALL_STATE(5566)] = 187664, + [SMALL_STATE(5567)] = 187684, + [SMALL_STATE(5568)] = 187704, + [SMALL_STATE(5569)] = 187724, + [SMALL_STATE(5570)] = 187744, + [SMALL_STATE(5571)] = 187764, + [SMALL_STATE(5572)] = 187786, + [SMALL_STATE(5573)] = 187806, + [SMALL_STATE(5574)] = 187826, + [SMALL_STATE(5575)] = 187842, + [SMALL_STATE(5576)] = 187862, + [SMALL_STATE(5577)] = 187882, + [SMALL_STATE(5578)] = 187902, + [SMALL_STATE(5579)] = 187918, + [SMALL_STATE(5580)] = 187940, + [SMALL_STATE(5581)] = 187962, + [SMALL_STATE(5582)] = 187982, + [SMALL_STATE(5583)] = 188002, + [SMALL_STATE(5584)] = 188022, + [SMALL_STATE(5585)] = 188042, + [SMALL_STATE(5586)] = 188064, + [SMALL_STATE(5587)] = 188086, + [SMALL_STATE(5588)] = 188106, + [SMALL_STATE(5589)] = 188126, + [SMALL_STATE(5590)] = 188146, + [SMALL_STATE(5591)] = 188166, + [SMALL_STATE(5592)] = 188182, + [SMALL_STATE(5593)] = 188198, + [SMALL_STATE(5594)] = 188214, + [SMALL_STATE(5595)] = 188234, + [SMALL_STATE(5596)] = 188256, + [SMALL_STATE(5597)] = 188278, + [SMALL_STATE(5598)] = 188294, + [SMALL_STATE(5599)] = 188316, + [SMALL_STATE(5600)] = 188338, + [SMALL_STATE(5601)] = 188358, + [SMALL_STATE(5602)] = 188374, + [SMALL_STATE(5603)] = 188396, + [SMALL_STATE(5604)] = 188418, + [SMALL_STATE(5605)] = 188436, + [SMALL_STATE(5606)] = 188456, + [SMALL_STATE(5607)] = 188476, + [SMALL_STATE(5608)] = 188495, + [SMALL_STATE(5609)] = 188510, + [SMALL_STATE(5610)] = 188529, + [SMALL_STATE(5611)] = 188544, + [SMALL_STATE(5612)] = 188563, + [SMALL_STATE(5613)] = 188582, + [SMALL_STATE(5614)] = 188599, + [SMALL_STATE(5615)] = 188614, + [SMALL_STATE(5616)] = 188633, + [SMALL_STATE(5617)] = 188650, + [SMALL_STATE(5618)] = 188667, + [SMALL_STATE(5619)] = 188682, + [SMALL_STATE(5620)] = 188697, + [SMALL_STATE(5621)] = 188714, + [SMALL_STATE(5622)] = 188733, + [SMALL_STATE(5623)] = 188752, + [SMALL_STATE(5624)] = 188771, + [SMALL_STATE(5625)] = 188788, + [SMALL_STATE(5626)] = 188805, + [SMALL_STATE(5627)] = 188822, + [SMALL_STATE(5628)] = 188839, + [SMALL_STATE(5629)] = 188858, + [SMALL_STATE(5630)] = 188875, + [SMALL_STATE(5631)] = 188890, + [SMALL_STATE(5632)] = 188909, + [SMALL_STATE(5633)] = 188928, + [SMALL_STATE(5634)] = 188943, + [SMALL_STATE(5635)] = 188962, + [SMALL_STATE(5636)] = 188977, + [SMALL_STATE(5637)] = 188996, + [SMALL_STATE(5638)] = 189013, + [SMALL_STATE(5639)] = 189032, + [SMALL_STATE(5640)] = 189049, + [SMALL_STATE(5641)] = 189068, + [SMALL_STATE(5642)] = 189085, + [SMALL_STATE(5643)] = 189102, + [SMALL_STATE(5644)] = 189117, + [SMALL_STATE(5645)] = 189134, + [SMALL_STATE(5646)] = 189153, + [SMALL_STATE(5647)] = 189170, + [SMALL_STATE(5648)] = 189189, + [SMALL_STATE(5649)] = 189204, + [SMALL_STATE(5650)] = 189223, + [SMALL_STATE(5651)] = 189242, + [SMALL_STATE(5652)] = 189261, + [SMALL_STATE(5653)] = 189280, + [SMALL_STATE(5654)] = 189299, + [SMALL_STATE(5655)] = 189318, + [SMALL_STATE(5656)] = 189335, + [SMALL_STATE(5657)] = 189350, + [SMALL_STATE(5658)] = 189365, + [SMALL_STATE(5659)] = 189384, + [SMALL_STATE(5660)] = 189401, + [SMALL_STATE(5661)] = 189416, + [SMALL_STATE(5662)] = 189435, + [SMALL_STATE(5663)] = 189454, + [SMALL_STATE(5664)] = 189473, + [SMALL_STATE(5665)] = 189492, + [SMALL_STATE(5666)] = 189509, + [SMALL_STATE(5667)] = 189528, + [SMALL_STATE(5668)] = 189543, + [SMALL_STATE(5669)] = 189560, + [SMALL_STATE(5670)] = 189575, + [SMALL_STATE(5671)] = 189590, + [SMALL_STATE(5672)] = 189605, + [SMALL_STATE(5673)] = 189620, + [SMALL_STATE(5674)] = 189635, + [SMALL_STATE(5675)] = 189650, + [SMALL_STATE(5676)] = 189665, + [SMALL_STATE(5677)] = 189680, + [SMALL_STATE(5678)] = 189695, + [SMALL_STATE(5679)] = 189714, + [SMALL_STATE(5680)] = 189733, + [SMALL_STATE(5681)] = 189748, + [SMALL_STATE(5682)] = 189763, + [SMALL_STATE(5683)] = 189778, + [SMALL_STATE(5684)] = 189793, + [SMALL_STATE(5685)] = 189812, + [SMALL_STATE(5686)] = 189827, + [SMALL_STATE(5687)] = 189846, + [SMALL_STATE(5688)] = 189861, + [SMALL_STATE(5689)] = 189876, + [SMALL_STATE(5690)] = 189891, + [SMALL_STATE(5691)] = 189906, + [SMALL_STATE(5692)] = 189921, + [SMALL_STATE(5693)] = 189936, + [SMALL_STATE(5694)] = 189951, + [SMALL_STATE(5695)] = 189966, + [SMALL_STATE(5696)] = 189981, + [SMALL_STATE(5697)] = 189996, + [SMALL_STATE(5698)] = 190011, + [SMALL_STATE(5699)] = 190026, + [SMALL_STATE(5700)] = 190041, + [SMALL_STATE(5701)] = 190056, + [SMALL_STATE(5702)] = 190071, + [SMALL_STATE(5703)] = 190090, + [SMALL_STATE(5704)] = 190109, + [SMALL_STATE(5705)] = 190128, + [SMALL_STATE(5706)] = 190143, + [SMALL_STATE(5707)] = 190162, + [SMALL_STATE(5708)] = 190181, + [SMALL_STATE(5709)] = 190200, + [SMALL_STATE(5710)] = 190219, + [SMALL_STATE(5711)] = 190236, + [SMALL_STATE(5712)] = 190251, + [SMALL_STATE(5713)] = 190270, + [SMALL_STATE(5714)] = 190289, + [SMALL_STATE(5715)] = 190308, + [SMALL_STATE(5716)] = 190323, + [SMALL_STATE(5717)] = 190342, + [SMALL_STATE(5718)] = 190357, + [SMALL_STATE(5719)] = 190376, + [SMALL_STATE(5720)] = 190395, + [SMALL_STATE(5721)] = 190410, + [SMALL_STATE(5722)] = 190429, + [SMALL_STATE(5723)] = 190444, + [SMALL_STATE(5724)] = 190463, + [SMALL_STATE(5725)] = 190478, + [SMALL_STATE(5726)] = 190493, + [SMALL_STATE(5727)] = 190512, + [SMALL_STATE(5728)] = 190529, + [SMALL_STATE(5729)] = 190544, + [SMALL_STATE(5730)] = 190559, + [SMALL_STATE(5731)] = 190574, + [SMALL_STATE(5732)] = 190589, + [SMALL_STATE(5733)] = 190608, + [SMALL_STATE(5734)] = 190623, + [SMALL_STATE(5735)] = 190638, + [SMALL_STATE(5736)] = 190653, + [SMALL_STATE(5737)] = 190672, + [SMALL_STATE(5738)] = 190687, + [SMALL_STATE(5739)] = 190706, + [SMALL_STATE(5740)] = 190723, + [SMALL_STATE(5741)] = 190738, + [SMALL_STATE(5742)] = 190757, + [SMALL_STATE(5743)] = 190776, + [SMALL_STATE(5744)] = 190793, + [SMALL_STATE(5745)] = 190812, + [SMALL_STATE(5746)] = 190827, + [SMALL_STATE(5747)] = 190846, + [SMALL_STATE(5748)] = 190865, + [SMALL_STATE(5749)] = 190882, + [SMALL_STATE(5750)] = 190899, + [SMALL_STATE(5751)] = 190914, + [SMALL_STATE(5752)] = 190933, + [SMALL_STATE(5753)] = 190948, + [SMALL_STATE(5754)] = 190963, + [SMALL_STATE(5755)] = 190978, + [SMALL_STATE(5756)] = 190993, + [SMALL_STATE(5757)] = 191010, + [SMALL_STATE(5758)] = 191027, + [SMALL_STATE(5759)] = 191046, + [SMALL_STATE(5760)] = 191061, + [SMALL_STATE(5761)] = 191080, + [SMALL_STATE(5762)] = 191095, + [SMALL_STATE(5763)] = 191110, + [SMALL_STATE(5764)] = 191125, + [SMALL_STATE(5765)] = 191140, + [SMALL_STATE(5766)] = 191155, + [SMALL_STATE(5767)] = 191174, + [SMALL_STATE(5768)] = 191193, + [SMALL_STATE(5769)] = 191208, + [SMALL_STATE(5770)] = 191223, + [SMALL_STATE(5771)] = 191238, + [SMALL_STATE(5772)] = 191257, + [SMALL_STATE(5773)] = 191272, + [SMALL_STATE(5774)] = 191289, + [SMALL_STATE(5775)] = 191308, + [SMALL_STATE(5776)] = 191327, + [SMALL_STATE(5777)] = 191342, + [SMALL_STATE(5778)] = 191357, + [SMALL_STATE(5779)] = 191372, + [SMALL_STATE(5780)] = 191389, + [SMALL_STATE(5781)] = 191406, + [SMALL_STATE(5782)] = 191421, + [SMALL_STATE(5783)] = 191436, + [SMALL_STATE(5784)] = 191451, + [SMALL_STATE(5785)] = 191466, + [SMALL_STATE(5786)] = 191485, + [SMALL_STATE(5787)] = 191500, + [SMALL_STATE(5788)] = 191515, + [SMALL_STATE(5789)] = 191530, + [SMALL_STATE(5790)] = 191545, + [SMALL_STATE(5791)] = 191564, + [SMALL_STATE(5792)] = 191583, + [SMALL_STATE(5793)] = 191598, + [SMALL_STATE(5794)] = 191615, + [SMALL_STATE(5795)] = 191634, + [SMALL_STATE(5796)] = 191649, + [SMALL_STATE(5797)] = 191668, + [SMALL_STATE(5798)] = 191683, + [SMALL_STATE(5799)] = 191698, + [SMALL_STATE(5800)] = 191717, + [SMALL_STATE(5801)] = 191736, + [SMALL_STATE(5802)] = 191755, + [SMALL_STATE(5803)] = 191770, + [SMALL_STATE(5804)] = 191787, + [SMALL_STATE(5805)] = 191806, + [SMALL_STATE(5806)] = 191825, + [SMALL_STATE(5807)] = 191840, + [SMALL_STATE(5808)] = 191859, + [SMALL_STATE(5809)] = 191878, + [SMALL_STATE(5810)] = 191897, + [SMALL_STATE(5811)] = 191912, + [SMALL_STATE(5812)] = 191931, + [SMALL_STATE(5813)] = 191946, + [SMALL_STATE(5814)] = 191965, + [SMALL_STATE(5815)] = 191984, + [SMALL_STATE(5816)] = 191999, + [SMALL_STATE(5817)] = 192014, + [SMALL_STATE(5818)] = 192033, + [SMALL_STATE(5819)] = 192048, + [SMALL_STATE(5820)] = 192065, + [SMALL_STATE(5821)] = 192080, + [SMALL_STATE(5822)] = 192099, + [SMALL_STATE(5823)] = 192116, + [SMALL_STATE(5824)] = 192135, + [SMALL_STATE(5825)] = 192154, + [SMALL_STATE(5826)] = 192169, + [SMALL_STATE(5827)] = 192186, + [SMALL_STATE(5828)] = 192205, + [SMALL_STATE(5829)] = 192220, + [SMALL_STATE(5830)] = 192235, + [SMALL_STATE(5831)] = 192254, + [SMALL_STATE(5832)] = 192269, + [SMALL_STATE(5833)] = 192288, + [SMALL_STATE(5834)] = 192303, + [SMALL_STATE(5835)] = 192322, + [SMALL_STATE(5836)] = 192337, + [SMALL_STATE(5837)] = 192356, + [SMALL_STATE(5838)] = 192371, + [SMALL_STATE(5839)] = 192390, + [SMALL_STATE(5840)] = 192405, + [SMALL_STATE(5841)] = 192424, + [SMALL_STATE(5842)] = 192439, + [SMALL_STATE(5843)] = 192458, + [SMALL_STATE(5844)] = 192477, + [SMALL_STATE(5845)] = 192496, + [SMALL_STATE(5846)] = 192511, + [SMALL_STATE(5847)] = 192526, + [SMALL_STATE(5848)] = 192545, + [SMALL_STATE(5849)] = 192564, + [SMALL_STATE(5850)] = 192581, + [SMALL_STATE(5851)] = 192598, + [SMALL_STATE(5852)] = 192613, + [SMALL_STATE(5853)] = 192630, + [SMALL_STATE(5854)] = 192649, + [SMALL_STATE(5855)] = 192668, + [SMALL_STATE(5856)] = 192683, + [SMALL_STATE(5857)] = 192702, + [SMALL_STATE(5858)] = 192719, + [SMALL_STATE(5859)] = 192736, + [SMALL_STATE(5860)] = 192753, + [SMALL_STATE(5861)] = 192772, + [SMALL_STATE(5862)] = 192787, + [SMALL_STATE(5863)] = 192802, + [SMALL_STATE(5864)] = 192821, + [SMALL_STATE(5865)] = 192836, + [SMALL_STATE(5866)] = 192855, + [SMALL_STATE(5867)] = 192870, + [SMALL_STATE(5868)] = 192885, + [SMALL_STATE(5869)] = 192900, + [SMALL_STATE(5870)] = 192917, + [SMALL_STATE(5871)] = 192936, + [SMALL_STATE(5872)] = 192953, + [SMALL_STATE(5873)] = 192972, + [SMALL_STATE(5874)] = 192987, + [SMALL_STATE(5875)] = 193002, + [SMALL_STATE(5876)] = 193017, + [SMALL_STATE(5877)] = 193036, + [SMALL_STATE(5878)] = 193051, + [SMALL_STATE(5879)] = 193066, + [SMALL_STATE(5880)] = 193081, + [SMALL_STATE(5881)] = 193096, + [SMALL_STATE(5882)] = 193115, + [SMALL_STATE(5883)] = 193134, + [SMALL_STATE(5884)] = 193149, + [SMALL_STATE(5885)] = 193164, + [SMALL_STATE(5886)] = 193179, + [SMALL_STATE(5887)] = 193194, + [SMALL_STATE(5888)] = 193213, + [SMALL_STATE(5889)] = 193228, + [SMALL_STATE(5890)] = 193243, + [SMALL_STATE(5891)] = 193262, + [SMALL_STATE(5892)] = 193281, + [SMALL_STATE(5893)] = 193300, + [SMALL_STATE(5894)] = 193319, + [SMALL_STATE(5895)] = 193338, + [SMALL_STATE(5896)] = 193353, + [SMALL_STATE(5897)] = 193372, + [SMALL_STATE(5898)] = 193387, + [SMALL_STATE(5899)] = 193402, + [SMALL_STATE(5900)] = 193417, + [SMALL_STATE(5901)] = 193436, + [SMALL_STATE(5902)] = 193451, + [SMALL_STATE(5903)] = 193470, + [SMALL_STATE(5904)] = 193487, + [SMALL_STATE(5905)] = 193502, + [SMALL_STATE(5906)] = 193517, + [SMALL_STATE(5907)] = 193536, + [SMALL_STATE(5908)] = 193551, + [SMALL_STATE(5909)] = 193570, + [SMALL_STATE(5910)] = 193589, + [SMALL_STATE(5911)] = 193604, + [SMALL_STATE(5912)] = 193619, + [SMALL_STATE(5913)] = 193638, + [SMALL_STATE(5914)] = 193657, + [SMALL_STATE(5915)] = 193676, + [SMALL_STATE(5916)] = 193695, + [SMALL_STATE(5917)] = 193714, + [SMALL_STATE(5918)] = 193733, + [SMALL_STATE(5919)] = 193752, + [SMALL_STATE(5920)] = 193771, + [SMALL_STATE(5921)] = 193790, + [SMALL_STATE(5922)] = 193809, + [SMALL_STATE(5923)] = 193828, + [SMALL_STATE(5924)] = 193845, + [SMALL_STATE(5925)] = 193864, + [SMALL_STATE(5926)] = 193879, + [SMALL_STATE(5927)] = 193898, + [SMALL_STATE(5928)] = 193913, + [SMALL_STATE(5929)] = 193932, + [SMALL_STATE(5930)] = 193951, + [SMALL_STATE(5931)] = 193968, + [SMALL_STATE(5932)] = 193987, + [SMALL_STATE(5933)] = 194004, + [SMALL_STATE(5934)] = 194021, + [SMALL_STATE(5935)] = 194038, + [SMALL_STATE(5936)] = 194053, + [SMALL_STATE(5937)] = 194070, + [SMALL_STATE(5938)] = 194089, + [SMALL_STATE(5939)] = 194106, + [SMALL_STATE(5940)] = 194125, + [SMALL_STATE(5941)] = 194144, + [SMALL_STATE(5942)] = 194163, + [SMALL_STATE(5943)] = 194182, + [SMALL_STATE(5944)] = 194201, + [SMALL_STATE(5945)] = 194216, + [SMALL_STATE(5946)] = 194233, + [SMALL_STATE(5947)] = 194252, + [SMALL_STATE(5948)] = 194271, + [SMALL_STATE(5949)] = 194290, + [SMALL_STATE(5950)] = 194307, + [SMALL_STATE(5951)] = 194326, + [SMALL_STATE(5952)] = 194343, + [SMALL_STATE(5953)] = 194362, + [SMALL_STATE(5954)] = 194377, + [SMALL_STATE(5955)] = 194392, + [SMALL_STATE(5956)] = 194407, + [SMALL_STATE(5957)] = 194422, + [SMALL_STATE(5958)] = 194441, + [SMALL_STATE(5959)] = 194456, + [SMALL_STATE(5960)] = 194473, + [SMALL_STATE(5961)] = 194490, + [SMALL_STATE(5962)] = 194509, + [SMALL_STATE(5963)] = 194524, + [SMALL_STATE(5964)] = 194543, + [SMALL_STATE(5965)] = 194562, + [SMALL_STATE(5966)] = 194581, + [SMALL_STATE(5967)] = 194600, + [SMALL_STATE(5968)] = 194619, + [SMALL_STATE(5969)] = 194634, + [SMALL_STATE(5970)] = 194649, + [SMALL_STATE(5971)] = 194664, + [SMALL_STATE(5972)] = 194679, + [SMALL_STATE(5973)] = 194694, + [SMALL_STATE(5974)] = 194709, + [SMALL_STATE(5975)] = 194724, + [SMALL_STATE(5976)] = 194739, + [SMALL_STATE(5977)] = 194754, + [SMALL_STATE(5978)] = 194769, + [SMALL_STATE(5979)] = 194788, + [SMALL_STATE(5980)] = 194803, + [SMALL_STATE(5981)] = 194818, + [SMALL_STATE(5982)] = 194833, + [SMALL_STATE(5983)] = 194848, + [SMALL_STATE(5984)] = 194863, + [SMALL_STATE(5985)] = 194878, + [SMALL_STATE(5986)] = 194893, + [SMALL_STATE(5987)] = 194908, + [SMALL_STATE(5988)] = 194923, + [SMALL_STATE(5989)] = 194938, + [SMALL_STATE(5990)] = 194953, + [SMALL_STATE(5991)] = 194968, + [SMALL_STATE(5992)] = 194983, + [SMALL_STATE(5993)] = 194998, + [SMALL_STATE(5994)] = 195013, + [SMALL_STATE(5995)] = 195028, + [SMALL_STATE(5996)] = 195043, + [SMALL_STATE(5997)] = 195058, + [SMALL_STATE(5998)] = 195073, + [SMALL_STATE(5999)] = 195090, + [SMALL_STATE(6000)] = 195105, + [SMALL_STATE(6001)] = 195122, + [SMALL_STATE(6002)] = 195139, + [SMALL_STATE(6003)] = 195154, + [SMALL_STATE(6004)] = 195171, + [SMALL_STATE(6005)] = 195186, + [SMALL_STATE(6006)] = 195201, + [SMALL_STATE(6007)] = 195216, + [SMALL_STATE(6008)] = 195231, + [SMALL_STATE(6009)] = 195250, + [SMALL_STATE(6010)] = 195265, + [SMALL_STATE(6011)] = 195282, + [SMALL_STATE(6012)] = 195301, + [SMALL_STATE(6013)] = 195318, + [SMALL_STATE(6014)] = 195335, + [SMALL_STATE(6015)] = 195354, + [SMALL_STATE(6016)] = 195373, + [SMALL_STATE(6017)] = 195388, + [SMALL_STATE(6018)] = 195403, + [SMALL_STATE(6019)] = 195418, + [SMALL_STATE(6020)] = 195433, + [SMALL_STATE(6021)] = 195448, + [SMALL_STATE(6022)] = 195463, + [SMALL_STATE(6023)] = 195478, + [SMALL_STATE(6024)] = 195493, + [SMALL_STATE(6025)] = 195508, + [SMALL_STATE(6026)] = 195523, + [SMALL_STATE(6027)] = 195538, + [SMALL_STATE(6028)] = 195553, + [SMALL_STATE(6029)] = 195568, + [SMALL_STATE(6030)] = 195583, + [SMALL_STATE(6031)] = 195598, + [SMALL_STATE(6032)] = 195613, + [SMALL_STATE(6033)] = 195628, + [SMALL_STATE(6034)] = 195643, + [SMALL_STATE(6035)] = 195662, + [SMALL_STATE(6036)] = 195677, + [SMALL_STATE(6037)] = 195694, + [SMALL_STATE(6038)] = 195709, + [SMALL_STATE(6039)] = 195724, + [SMALL_STATE(6040)] = 195739, + [SMALL_STATE(6041)] = 195754, + [SMALL_STATE(6042)] = 195769, + [SMALL_STATE(6043)] = 195784, + [SMALL_STATE(6044)] = 195799, + [SMALL_STATE(6045)] = 195814, + [SMALL_STATE(6046)] = 195829, + [SMALL_STATE(6047)] = 195844, + [SMALL_STATE(6048)] = 195859, + [SMALL_STATE(6049)] = 195878, + [SMALL_STATE(6050)] = 195893, + [SMALL_STATE(6051)] = 195908, + [SMALL_STATE(6052)] = 195923, + [SMALL_STATE(6053)] = 195938, + [SMALL_STATE(6054)] = 195953, + [SMALL_STATE(6055)] = 195968, + [SMALL_STATE(6056)] = 195987, + [SMALL_STATE(6057)] = 196006, + [SMALL_STATE(6058)] = 196025, + [SMALL_STATE(6059)] = 196040, + [SMALL_STATE(6060)] = 196059, + [SMALL_STATE(6061)] = 196076, + [SMALL_STATE(6062)] = 196095, + [SMALL_STATE(6063)] = 196112, + [SMALL_STATE(6064)] = 196127, + [SMALL_STATE(6065)] = 196142, + [SMALL_STATE(6066)] = 196157, + [SMALL_STATE(6067)] = 196176, + [SMALL_STATE(6068)] = 196191, + [SMALL_STATE(6069)] = 196206, + [SMALL_STATE(6070)] = 196221, + [SMALL_STATE(6071)] = 196236, + [SMALL_STATE(6072)] = 196251, + [SMALL_STATE(6073)] = 196266, + [SMALL_STATE(6074)] = 196281, + [SMALL_STATE(6075)] = 196300, + [SMALL_STATE(6076)] = 196315, + [SMALL_STATE(6077)] = 196334, + [SMALL_STATE(6078)] = 196349, + [SMALL_STATE(6079)] = 196368, + [SMALL_STATE(6080)] = 196387, + [SMALL_STATE(6081)] = 196406, + [SMALL_STATE(6082)] = 196421, + [SMALL_STATE(6083)] = 196436, + [SMALL_STATE(6084)] = 196455, + [SMALL_STATE(6085)] = 196470, + [SMALL_STATE(6086)] = 196489, + [SMALL_STATE(6087)] = 196504, + [SMALL_STATE(6088)] = 196523, + [SMALL_STATE(6089)] = 196538, + [SMALL_STATE(6090)] = 196553, + [SMALL_STATE(6091)] = 196568, + [SMALL_STATE(6092)] = 196587, + [SMALL_STATE(6093)] = 196602, + [SMALL_STATE(6094)] = 196617, + [SMALL_STATE(6095)] = 196632, + [SMALL_STATE(6096)] = 196651, + [SMALL_STATE(6097)] = 196670, + [SMALL_STATE(6098)] = 196685, + [SMALL_STATE(6099)] = 196700, + [SMALL_STATE(6100)] = 196719, + [SMALL_STATE(6101)] = 196734, + [SMALL_STATE(6102)] = 196749, + [SMALL_STATE(6103)] = 196764, + [SMALL_STATE(6104)] = 196779, + [SMALL_STATE(6105)] = 196794, + [SMALL_STATE(6106)] = 196809, + [SMALL_STATE(6107)] = 196828, + [SMALL_STATE(6108)] = 196843, + [SMALL_STATE(6109)] = 196858, + [SMALL_STATE(6110)] = 196873, + [SMALL_STATE(6111)] = 196888, + [SMALL_STATE(6112)] = 196905, + [SMALL_STATE(6113)] = 196922, + [SMALL_STATE(6114)] = 196937, + [SMALL_STATE(6115)] = 196952, + [SMALL_STATE(6116)] = 196967, + [SMALL_STATE(6117)] = 196982, + [SMALL_STATE(6118)] = 196997, + [SMALL_STATE(6119)] = 197012, + [SMALL_STATE(6120)] = 197027, + [SMALL_STATE(6121)] = 197042, + [SMALL_STATE(6122)] = 197057, + [SMALL_STATE(6123)] = 197072, + [SMALL_STATE(6124)] = 197091, + [SMALL_STATE(6125)] = 197106, + [SMALL_STATE(6126)] = 197125, + [SMALL_STATE(6127)] = 197140, + [SMALL_STATE(6128)] = 197159, + [SMALL_STATE(6129)] = 197174, + [SMALL_STATE(6130)] = 197193, + [SMALL_STATE(6131)] = 197208, + [SMALL_STATE(6132)] = 197223, + [SMALL_STATE(6133)] = 197242, + [SMALL_STATE(6134)] = 197257, + [SMALL_STATE(6135)] = 197272, + [SMALL_STATE(6136)] = 197287, + [SMALL_STATE(6137)] = 197302, + [SMALL_STATE(6138)] = 197317, + [SMALL_STATE(6139)] = 197332, + [SMALL_STATE(6140)] = 197347, + [SMALL_STATE(6141)] = 197362, + [SMALL_STATE(6142)] = 197381, + [SMALL_STATE(6143)] = 197396, + [SMALL_STATE(6144)] = 197413, + [SMALL_STATE(6145)] = 197432, + [SMALL_STATE(6146)] = 197447, + [SMALL_STATE(6147)] = 197464, + [SMALL_STATE(6148)] = 197479, + [SMALL_STATE(6149)] = 197494, + [SMALL_STATE(6150)] = 197509, + [SMALL_STATE(6151)] = 197524, + [SMALL_STATE(6152)] = 197539, + [SMALL_STATE(6153)] = 197554, + [SMALL_STATE(6154)] = 197569, + [SMALL_STATE(6155)] = 197588, + [SMALL_STATE(6156)] = 197603, + [SMALL_STATE(6157)] = 197618, + [SMALL_STATE(6158)] = 197633, + [SMALL_STATE(6159)] = 197652, + [SMALL_STATE(6160)] = 197667, + [SMALL_STATE(6161)] = 197682, + [SMALL_STATE(6162)] = 197697, + [SMALL_STATE(6163)] = 197712, + [SMALL_STATE(6164)] = 197727, + [SMALL_STATE(6165)] = 197742, + [SMALL_STATE(6166)] = 197757, + [SMALL_STATE(6167)] = 197772, + [SMALL_STATE(6168)] = 197787, + [SMALL_STATE(6169)] = 197802, + [SMALL_STATE(6170)] = 197817, + [SMALL_STATE(6171)] = 197832, + [SMALL_STATE(6172)] = 197847, + [SMALL_STATE(6173)] = 197864, + [SMALL_STATE(6174)] = 197879, + [SMALL_STATE(6175)] = 197894, + [SMALL_STATE(6176)] = 197909, + [SMALL_STATE(6177)] = 197924, + [SMALL_STATE(6178)] = 197943, + [SMALL_STATE(6179)] = 197958, + [SMALL_STATE(6180)] = 197977, + [SMALL_STATE(6181)] = 197994, + [SMALL_STATE(6182)] = 198011, + [SMALL_STATE(6183)] = 198030, + [SMALL_STATE(6184)] = 198049, + [SMALL_STATE(6185)] = 198064, + [SMALL_STATE(6186)] = 198079, + [SMALL_STATE(6187)] = 198094, + [SMALL_STATE(6188)] = 198109, + [SMALL_STATE(6189)] = 198124, + [SMALL_STATE(6190)] = 198139, + [SMALL_STATE(6191)] = 198158, + [SMALL_STATE(6192)] = 198177, + [SMALL_STATE(6193)] = 198196, + [SMALL_STATE(6194)] = 198211, + [SMALL_STATE(6195)] = 198230, + [SMALL_STATE(6196)] = 198245, + [SMALL_STATE(6197)] = 198264, + [SMALL_STATE(6198)] = 198279, + [SMALL_STATE(6199)] = 198294, + [SMALL_STATE(6200)] = 198309, + [SMALL_STATE(6201)] = 198324, + [SMALL_STATE(6202)] = 198339, + [SMALL_STATE(6203)] = 198358, + [SMALL_STATE(6204)] = 198373, + [SMALL_STATE(6205)] = 198388, + [SMALL_STATE(6206)] = 198403, + [SMALL_STATE(6207)] = 198418, + [SMALL_STATE(6208)] = 198433, + [SMALL_STATE(6209)] = 198452, + [SMALL_STATE(6210)] = 198467, + [SMALL_STATE(6211)] = 198482, + [SMALL_STATE(6212)] = 198497, + [SMALL_STATE(6213)] = 198512, + [SMALL_STATE(6214)] = 198527, + [SMALL_STATE(6215)] = 198542, + [SMALL_STATE(6216)] = 198557, + [SMALL_STATE(6217)] = 198572, + [SMALL_STATE(6218)] = 198587, + [SMALL_STATE(6219)] = 198602, + [SMALL_STATE(6220)] = 198617, + [SMALL_STATE(6221)] = 198632, + [SMALL_STATE(6222)] = 198647, + [SMALL_STATE(6223)] = 198662, + [SMALL_STATE(6224)] = 198681, + [SMALL_STATE(6225)] = 198700, + [SMALL_STATE(6226)] = 198715, + [SMALL_STATE(6227)] = 198730, + [SMALL_STATE(6228)] = 198745, + [SMALL_STATE(6229)] = 198760, + [SMALL_STATE(6230)] = 198775, + [SMALL_STATE(6231)] = 198790, + [SMALL_STATE(6232)] = 198809, + [SMALL_STATE(6233)] = 198824, + [SMALL_STATE(6234)] = 198839, + [SMALL_STATE(6235)] = 198854, + [SMALL_STATE(6236)] = 198869, + [SMALL_STATE(6237)] = 198884, + [SMALL_STATE(6238)] = 198899, + [SMALL_STATE(6239)] = 198914, + [SMALL_STATE(6240)] = 198929, + [SMALL_STATE(6241)] = 198944, + [SMALL_STATE(6242)] = 198959, + [SMALL_STATE(6243)] = 198974, + [SMALL_STATE(6244)] = 198989, + [SMALL_STATE(6245)] = 199004, + [SMALL_STATE(6246)] = 199023, + [SMALL_STATE(6247)] = 199038, + [SMALL_STATE(6248)] = 199053, + [SMALL_STATE(6249)] = 199068, + [SMALL_STATE(6250)] = 199087, + [SMALL_STATE(6251)] = 199102, + [SMALL_STATE(6252)] = 199117, + [SMALL_STATE(6253)] = 199132, + [SMALL_STATE(6254)] = 199147, + [SMALL_STATE(6255)] = 199162, + [SMALL_STATE(6256)] = 199177, + [SMALL_STATE(6257)] = 199192, + [SMALL_STATE(6258)] = 199207, + [SMALL_STATE(6259)] = 199222, + [SMALL_STATE(6260)] = 199237, + [SMALL_STATE(6261)] = 199252, + [SMALL_STATE(6262)] = 199267, + [SMALL_STATE(6263)] = 199282, + [SMALL_STATE(6264)] = 199297, + [SMALL_STATE(6265)] = 199316, + [SMALL_STATE(6266)] = 199331, + [SMALL_STATE(6267)] = 199350, + [SMALL_STATE(6268)] = 199365, + [SMALL_STATE(6269)] = 199384, + [SMALL_STATE(6270)] = 199399, + [SMALL_STATE(6271)] = 199418, + [SMALL_STATE(6272)] = 199433, + [SMALL_STATE(6273)] = 199448, + [SMALL_STATE(6274)] = 199463, + [SMALL_STATE(6275)] = 199482, + [SMALL_STATE(6276)] = 199501, + [SMALL_STATE(6277)] = 199516, + [SMALL_STATE(6278)] = 199531, + [SMALL_STATE(6279)] = 199546, + [SMALL_STATE(6280)] = 199561, + [SMALL_STATE(6281)] = 199576, + [SMALL_STATE(6282)] = 199593, + [SMALL_STATE(6283)] = 199610, + [SMALL_STATE(6284)] = 199625, + [SMALL_STATE(6285)] = 199640, + [SMALL_STATE(6286)] = 199655, + [SMALL_STATE(6287)] = 199670, + [SMALL_STATE(6288)] = 199685, + [SMALL_STATE(6289)] = 199700, + [SMALL_STATE(6290)] = 199715, + [SMALL_STATE(6291)] = 199730, + [SMALL_STATE(6292)] = 199749, + [SMALL_STATE(6293)] = 199764, + [SMALL_STATE(6294)] = 199783, + [SMALL_STATE(6295)] = 199802, + [SMALL_STATE(6296)] = 199817, + [SMALL_STATE(6297)] = 199832, + [SMALL_STATE(6298)] = 199847, + [SMALL_STATE(6299)] = 199863, + [SMALL_STATE(6300)] = 199879, + [SMALL_STATE(6301)] = 199895, + [SMALL_STATE(6302)] = 199911, + [SMALL_STATE(6303)] = 199927, + [SMALL_STATE(6304)] = 199943, + [SMALL_STATE(6305)] = 199959, + [SMALL_STATE(6306)] = 199973, + [SMALL_STATE(6307)] = 199989, + [SMALL_STATE(6308)] = 200005, + [SMALL_STATE(6309)] = 200021, + [SMALL_STATE(6310)] = 200037, + [SMALL_STATE(6311)] = 200053, + [SMALL_STATE(6312)] = 200067, + [SMALL_STATE(6313)] = 200083, + [SMALL_STATE(6314)] = 200099, + [SMALL_STATE(6315)] = 200115, + [SMALL_STATE(6316)] = 200131, + [SMALL_STATE(6317)] = 200147, + [SMALL_STATE(6318)] = 200163, + [SMALL_STATE(6319)] = 200179, + [SMALL_STATE(6320)] = 200195, + [SMALL_STATE(6321)] = 200211, + [SMALL_STATE(6322)] = 200227, + [SMALL_STATE(6323)] = 200243, + [SMALL_STATE(6324)] = 200259, + [SMALL_STATE(6325)] = 200275, + [SMALL_STATE(6326)] = 200291, + [SMALL_STATE(6327)] = 200307, + [SMALL_STATE(6328)] = 200323, + [SMALL_STATE(6329)] = 200339, + [SMALL_STATE(6330)] = 200355, + [SMALL_STATE(6331)] = 200371, + [SMALL_STATE(6332)] = 200385, + [SMALL_STATE(6333)] = 200399, + [SMALL_STATE(6334)] = 200413, + [SMALL_STATE(6335)] = 200429, + [SMALL_STATE(6336)] = 200445, + [SMALL_STATE(6337)] = 200459, + [SMALL_STATE(6338)] = 200473, + [SMALL_STATE(6339)] = 200489, + [SMALL_STATE(6340)] = 200505, + [SMALL_STATE(6341)] = 200521, + [SMALL_STATE(6342)] = 200535, + [SMALL_STATE(6343)] = 200549, + [SMALL_STATE(6344)] = 200563, + [SMALL_STATE(6345)] = 200577, + [SMALL_STATE(6346)] = 200593, + [SMALL_STATE(6347)] = 200607, + [SMALL_STATE(6348)] = 200623, + [SMALL_STATE(6349)] = 200639, + [SMALL_STATE(6350)] = 200653, + [SMALL_STATE(6351)] = 200667, + [SMALL_STATE(6352)] = 200681, + [SMALL_STATE(6353)] = 200695, + [SMALL_STATE(6354)] = 200709, + [SMALL_STATE(6355)] = 200723, + [SMALL_STATE(6356)] = 200739, + [SMALL_STATE(6357)] = 200755, + [SMALL_STATE(6358)] = 200771, + [SMALL_STATE(6359)] = 200785, + [SMALL_STATE(6360)] = 200801, + [SMALL_STATE(6361)] = 200815, + [SMALL_STATE(6362)] = 200829, + [SMALL_STATE(6363)] = 200845, + [SMALL_STATE(6364)] = 200861, + [SMALL_STATE(6365)] = 200877, + [SMALL_STATE(6366)] = 200891, + [SMALL_STATE(6367)] = 200907, + [SMALL_STATE(6368)] = 200921, + [SMALL_STATE(6369)] = 200937, + [SMALL_STATE(6370)] = 200953, + [SMALL_STATE(6371)] = 200969, + [SMALL_STATE(6372)] = 200985, + [SMALL_STATE(6373)] = 201001, + [SMALL_STATE(6374)] = 201015, + [SMALL_STATE(6375)] = 201031, + [SMALL_STATE(6376)] = 201047, + [SMALL_STATE(6377)] = 201061, + [SMALL_STATE(6378)] = 201077, + [SMALL_STATE(6379)] = 201091, + [SMALL_STATE(6380)] = 201105, + [SMALL_STATE(6381)] = 201119, + [SMALL_STATE(6382)] = 201135, + [SMALL_STATE(6383)] = 201149, + [SMALL_STATE(6384)] = 201165, + [SMALL_STATE(6385)] = 201179, + [SMALL_STATE(6386)] = 201193, + [SMALL_STATE(6387)] = 201209, + [SMALL_STATE(6388)] = 201225, + [SMALL_STATE(6389)] = 201239, + [SMALL_STATE(6390)] = 201253, + [SMALL_STATE(6391)] = 201267, + [SMALL_STATE(6392)] = 201281, + [SMALL_STATE(6393)] = 201295, + [SMALL_STATE(6394)] = 201311, + [SMALL_STATE(6395)] = 201327, + [SMALL_STATE(6396)] = 201343, + [SMALL_STATE(6397)] = 201357, + [SMALL_STATE(6398)] = 201371, + [SMALL_STATE(6399)] = 201385, + [SMALL_STATE(6400)] = 201399, + [SMALL_STATE(6401)] = 201415, + [SMALL_STATE(6402)] = 201429, + [SMALL_STATE(6403)] = 201445, + [SMALL_STATE(6404)] = 201459, + [SMALL_STATE(6405)] = 201475, + [SMALL_STATE(6406)] = 201491, + [SMALL_STATE(6407)] = 201507, + [SMALL_STATE(6408)] = 201523, + [SMALL_STATE(6409)] = 201537, + [SMALL_STATE(6410)] = 201553, + [SMALL_STATE(6411)] = 201569, + [SMALL_STATE(6412)] = 201585, + [SMALL_STATE(6413)] = 201601, + [SMALL_STATE(6414)] = 201617, + [SMALL_STATE(6415)] = 201631, + [SMALL_STATE(6416)] = 201647, + [SMALL_STATE(6417)] = 201663, + [SMALL_STATE(6418)] = 201679, + [SMALL_STATE(6419)] = 201695, + [SMALL_STATE(6420)] = 201711, + [SMALL_STATE(6421)] = 201725, + [SMALL_STATE(6422)] = 201741, + [SMALL_STATE(6423)] = 201757, + [SMALL_STATE(6424)] = 201773, + [SMALL_STATE(6425)] = 201789, + [SMALL_STATE(6426)] = 201805, + [SMALL_STATE(6427)] = 201821, + [SMALL_STATE(6428)] = 201837, + [SMALL_STATE(6429)] = 201853, + [SMALL_STATE(6430)] = 201869, + [SMALL_STATE(6431)] = 201885, + [SMALL_STATE(6432)] = 201901, + [SMALL_STATE(6433)] = 201917, + [SMALL_STATE(6434)] = 201931, + [SMALL_STATE(6435)] = 201945, + [SMALL_STATE(6436)] = 201959, + [SMALL_STATE(6437)] = 201973, + [SMALL_STATE(6438)] = 201989, + [SMALL_STATE(6439)] = 202003, + [SMALL_STATE(6440)] = 202019, + [SMALL_STATE(6441)] = 202035, + [SMALL_STATE(6442)] = 202051, + [SMALL_STATE(6443)] = 202067, + [SMALL_STATE(6444)] = 202083, + [SMALL_STATE(6445)] = 202097, + [SMALL_STATE(6446)] = 202111, + [SMALL_STATE(6447)] = 202127, + [SMALL_STATE(6448)] = 202143, + [SMALL_STATE(6449)] = 202159, + [SMALL_STATE(6450)] = 202175, + [SMALL_STATE(6451)] = 202191, + [SMALL_STATE(6452)] = 202205, + [SMALL_STATE(6453)] = 202221, + [SMALL_STATE(6454)] = 202235, + [SMALL_STATE(6455)] = 202251, + [SMALL_STATE(6456)] = 202267, + [SMALL_STATE(6457)] = 202283, + [SMALL_STATE(6458)] = 202297, + [SMALL_STATE(6459)] = 202313, + [SMALL_STATE(6460)] = 202329, + [SMALL_STATE(6461)] = 202345, + [SMALL_STATE(6462)] = 202361, + [SMALL_STATE(6463)] = 202377, + [SMALL_STATE(6464)] = 202393, + [SMALL_STATE(6465)] = 202409, + [SMALL_STATE(6466)] = 202423, + [SMALL_STATE(6467)] = 202439, + [SMALL_STATE(6468)] = 202455, + [SMALL_STATE(6469)] = 202469, + [SMALL_STATE(6470)] = 202485, + [SMALL_STATE(6471)] = 202499, + [SMALL_STATE(6472)] = 202515, + [SMALL_STATE(6473)] = 202531, + [SMALL_STATE(6474)] = 202547, + [SMALL_STATE(6475)] = 202563, + [SMALL_STATE(6476)] = 202579, + [SMALL_STATE(6477)] = 202595, + [SMALL_STATE(6478)] = 202611, + [SMALL_STATE(6479)] = 202625, + [SMALL_STATE(6480)] = 202639, + [SMALL_STATE(6481)] = 202655, + [SMALL_STATE(6482)] = 202669, + [SMALL_STATE(6483)] = 202685, + [SMALL_STATE(6484)] = 202701, + [SMALL_STATE(6485)] = 202717, + [SMALL_STATE(6486)] = 202733, + [SMALL_STATE(6487)] = 202749, + [SMALL_STATE(6488)] = 202765, + [SMALL_STATE(6489)] = 202781, + [SMALL_STATE(6490)] = 202797, + [SMALL_STATE(6491)] = 202813, + [SMALL_STATE(6492)] = 202829, + [SMALL_STATE(6493)] = 202843, + [SMALL_STATE(6494)] = 202857, + [SMALL_STATE(6495)] = 202873, + [SMALL_STATE(6496)] = 202889, + [SMALL_STATE(6497)] = 202905, + [SMALL_STATE(6498)] = 202921, + [SMALL_STATE(6499)] = 202937, + [SMALL_STATE(6500)] = 202953, + [SMALL_STATE(6501)] = 202969, + [SMALL_STATE(6502)] = 202985, + [SMALL_STATE(6503)] = 202999, + [SMALL_STATE(6504)] = 203015, + [SMALL_STATE(6505)] = 203029, + [SMALL_STATE(6506)] = 203045, + [SMALL_STATE(6507)] = 203061, + [SMALL_STATE(6508)] = 203077, + [SMALL_STATE(6509)] = 203093, + [SMALL_STATE(6510)] = 203107, + [SMALL_STATE(6511)] = 203123, + [SMALL_STATE(6512)] = 203139, + [SMALL_STATE(6513)] = 203155, + [SMALL_STATE(6514)] = 203171, + [SMALL_STATE(6515)] = 203185, + [SMALL_STATE(6516)] = 203201, + [SMALL_STATE(6517)] = 203217, + [SMALL_STATE(6518)] = 203231, + [SMALL_STATE(6519)] = 203245, + [SMALL_STATE(6520)] = 203261, + [SMALL_STATE(6521)] = 203275, + [SMALL_STATE(6522)] = 203291, + [SMALL_STATE(6523)] = 203307, + [SMALL_STATE(6524)] = 203321, + [SMALL_STATE(6525)] = 203337, + [SMALL_STATE(6526)] = 203353, + [SMALL_STATE(6527)] = 203367, + [SMALL_STATE(6528)] = 203381, + [SMALL_STATE(6529)] = 203397, + [SMALL_STATE(6530)] = 203411, + [SMALL_STATE(6531)] = 203427, + [SMALL_STATE(6532)] = 203443, + [SMALL_STATE(6533)] = 203459, + [SMALL_STATE(6534)] = 203473, + [SMALL_STATE(6535)] = 203489, + [SMALL_STATE(6536)] = 203505, + [SMALL_STATE(6537)] = 203521, + [SMALL_STATE(6538)] = 203535, + [SMALL_STATE(6539)] = 203551, + [SMALL_STATE(6540)] = 203567, + [SMALL_STATE(6541)] = 203583, + [SMALL_STATE(6542)] = 203597, + [SMALL_STATE(6543)] = 203613, + [SMALL_STATE(6544)] = 203629, + [SMALL_STATE(6545)] = 203645, + [SMALL_STATE(6546)] = 203659, + [SMALL_STATE(6547)] = 203673, + [SMALL_STATE(6548)] = 203689, + [SMALL_STATE(6549)] = 203705, + [SMALL_STATE(6550)] = 203721, + [SMALL_STATE(6551)] = 203737, + [SMALL_STATE(6552)] = 203751, + [SMALL_STATE(6553)] = 203767, + [SMALL_STATE(6554)] = 203781, + [SMALL_STATE(6555)] = 203795, + [SMALL_STATE(6556)] = 203809, + [SMALL_STATE(6557)] = 203825, + [SMALL_STATE(6558)] = 203841, + [SMALL_STATE(6559)] = 203857, + [SMALL_STATE(6560)] = 203873, + [SMALL_STATE(6561)] = 203889, + [SMALL_STATE(6562)] = 203905, + [SMALL_STATE(6563)] = 203919, + [SMALL_STATE(6564)] = 203935, + [SMALL_STATE(6565)] = 203951, + [SMALL_STATE(6566)] = 203965, + [SMALL_STATE(6567)] = 203979, + [SMALL_STATE(6568)] = 203993, + [SMALL_STATE(6569)] = 204009, + [SMALL_STATE(6570)] = 204023, + [SMALL_STATE(6571)] = 204037, + [SMALL_STATE(6572)] = 204053, + [SMALL_STATE(6573)] = 204067, + [SMALL_STATE(6574)] = 204083, + [SMALL_STATE(6575)] = 204099, + [SMALL_STATE(6576)] = 204115, + [SMALL_STATE(6577)] = 204131, + [SMALL_STATE(6578)] = 204147, + [SMALL_STATE(6579)] = 204161, + [SMALL_STATE(6580)] = 204177, + [SMALL_STATE(6581)] = 204191, + [SMALL_STATE(6582)] = 204207, + [SMALL_STATE(6583)] = 204223, + [SMALL_STATE(6584)] = 204239, + [SMALL_STATE(6585)] = 204253, + [SMALL_STATE(6586)] = 204269, + [SMALL_STATE(6587)] = 204283, + [SMALL_STATE(6588)] = 204299, + [SMALL_STATE(6589)] = 204315, + [SMALL_STATE(6590)] = 204331, + [SMALL_STATE(6591)] = 204345, + [SMALL_STATE(6592)] = 204359, + [SMALL_STATE(6593)] = 204375, + [SMALL_STATE(6594)] = 204389, + [SMALL_STATE(6595)] = 204403, + [SMALL_STATE(6596)] = 204417, + [SMALL_STATE(6597)] = 204431, + [SMALL_STATE(6598)] = 204447, + [SMALL_STATE(6599)] = 204463, + [SMALL_STATE(6600)] = 204479, + [SMALL_STATE(6601)] = 204493, + [SMALL_STATE(6602)] = 204509, + [SMALL_STATE(6603)] = 204523, + [SMALL_STATE(6604)] = 204537, + [SMALL_STATE(6605)] = 204553, + [SMALL_STATE(6606)] = 204569, + [SMALL_STATE(6607)] = 204583, + [SMALL_STATE(6608)] = 204597, + [SMALL_STATE(6609)] = 204613, + [SMALL_STATE(6610)] = 204629, + [SMALL_STATE(6611)] = 204643, + [SMALL_STATE(6612)] = 204657, + [SMALL_STATE(6613)] = 204673, + [SMALL_STATE(6614)] = 204687, + [SMALL_STATE(6615)] = 204703, + [SMALL_STATE(6616)] = 204717, + [SMALL_STATE(6617)] = 204733, + [SMALL_STATE(6618)] = 204747, + [SMALL_STATE(6619)] = 204763, + [SMALL_STATE(6620)] = 204779, + [SMALL_STATE(6621)] = 204795, + [SMALL_STATE(6622)] = 204809, + [SMALL_STATE(6623)] = 204823, + [SMALL_STATE(6624)] = 204837, + [SMALL_STATE(6625)] = 204853, + [SMALL_STATE(6626)] = 204869, + [SMALL_STATE(6627)] = 204885, + [SMALL_STATE(6628)] = 204901, + [SMALL_STATE(6629)] = 204917, + [SMALL_STATE(6630)] = 204931, + [SMALL_STATE(6631)] = 204947, + [SMALL_STATE(6632)] = 204963, + [SMALL_STATE(6633)] = 204979, + [SMALL_STATE(6634)] = 204993, + [SMALL_STATE(6635)] = 205009, + [SMALL_STATE(6636)] = 205025, + [SMALL_STATE(6637)] = 205041, + [SMALL_STATE(6638)] = 205057, + [SMALL_STATE(6639)] = 205073, + [SMALL_STATE(6640)] = 205087, + [SMALL_STATE(6641)] = 205103, + [SMALL_STATE(6642)] = 205117, + [SMALL_STATE(6643)] = 205133, + [SMALL_STATE(6644)] = 205147, + [SMALL_STATE(6645)] = 205161, + [SMALL_STATE(6646)] = 205177, + [SMALL_STATE(6647)] = 205193, + [SMALL_STATE(6648)] = 205209, + [SMALL_STATE(6649)] = 205225, + [SMALL_STATE(6650)] = 205239, + [SMALL_STATE(6651)] = 205253, + [SMALL_STATE(6652)] = 205267, + [SMALL_STATE(6653)] = 205283, + [SMALL_STATE(6654)] = 205297, + [SMALL_STATE(6655)] = 205311, + [SMALL_STATE(6656)] = 205327, + [SMALL_STATE(6657)] = 205343, + [SMALL_STATE(6658)] = 205359, + [SMALL_STATE(6659)] = 205375, + [SMALL_STATE(6660)] = 205391, + [SMALL_STATE(6661)] = 205405, + [SMALL_STATE(6662)] = 205419, + [SMALL_STATE(6663)] = 205435, + [SMALL_STATE(6664)] = 205451, + [SMALL_STATE(6665)] = 205465, + [SMALL_STATE(6666)] = 205481, + [SMALL_STATE(6667)] = 205497, + [SMALL_STATE(6668)] = 205513, + [SMALL_STATE(6669)] = 205527, + [SMALL_STATE(6670)] = 205541, + [SMALL_STATE(6671)] = 205555, + [SMALL_STATE(6672)] = 205571, + [SMALL_STATE(6673)] = 205585, + [SMALL_STATE(6674)] = 205601, + [SMALL_STATE(6675)] = 205617, + [SMALL_STATE(6676)] = 205633, + [SMALL_STATE(6677)] = 205647, + [SMALL_STATE(6678)] = 205663, + [SMALL_STATE(6679)] = 205679, + [SMALL_STATE(6680)] = 205693, + [SMALL_STATE(6681)] = 205709, + [SMALL_STATE(6682)] = 205723, + [SMALL_STATE(6683)] = 205739, + [SMALL_STATE(6684)] = 205755, + [SMALL_STATE(6685)] = 205771, + [SMALL_STATE(6686)] = 205785, + [SMALL_STATE(6687)] = 205801, + [SMALL_STATE(6688)] = 205815, + [SMALL_STATE(6689)] = 205831, + [SMALL_STATE(6690)] = 205845, + [SMALL_STATE(6691)] = 205861, + [SMALL_STATE(6692)] = 205875, + [SMALL_STATE(6693)] = 205889, + [SMALL_STATE(6694)] = 205903, + [SMALL_STATE(6695)] = 205919, + [SMALL_STATE(6696)] = 205933, + [SMALL_STATE(6697)] = 205949, + [SMALL_STATE(6698)] = 205965, + [SMALL_STATE(6699)] = 205981, + [SMALL_STATE(6700)] = 205995, + [SMALL_STATE(6701)] = 206011, + [SMALL_STATE(6702)] = 206027, + [SMALL_STATE(6703)] = 206041, + [SMALL_STATE(6704)] = 206055, + [SMALL_STATE(6705)] = 206071, + [SMALL_STATE(6706)] = 206085, + [SMALL_STATE(6707)] = 206099, + [SMALL_STATE(6708)] = 206113, + [SMALL_STATE(6709)] = 206127, + [SMALL_STATE(6710)] = 206143, + [SMALL_STATE(6711)] = 206157, + [SMALL_STATE(6712)] = 206171, + [SMALL_STATE(6713)] = 206187, + [SMALL_STATE(6714)] = 206201, + [SMALL_STATE(6715)] = 206217, + [SMALL_STATE(6716)] = 206233, + [SMALL_STATE(6717)] = 206247, + [SMALL_STATE(6718)] = 206263, + [SMALL_STATE(6719)] = 206279, + [SMALL_STATE(6720)] = 206293, + [SMALL_STATE(6721)] = 206307, + [SMALL_STATE(6722)] = 206323, + [SMALL_STATE(6723)] = 206339, + [SMALL_STATE(6724)] = 206355, + [SMALL_STATE(6725)] = 206369, + [SMALL_STATE(6726)] = 206385, + [SMALL_STATE(6727)] = 206401, + [SMALL_STATE(6728)] = 206415, + [SMALL_STATE(6729)] = 206429, + [SMALL_STATE(6730)] = 206445, + [SMALL_STATE(6731)] = 206459, + [SMALL_STATE(6732)] = 206475, + [SMALL_STATE(6733)] = 206489, + [SMALL_STATE(6734)] = 206505, + [SMALL_STATE(6735)] = 206521, + [SMALL_STATE(6736)] = 206537, + [SMALL_STATE(6737)] = 206553, + [SMALL_STATE(6738)] = 206569, + [SMALL_STATE(6739)] = 206585, + [SMALL_STATE(6740)] = 206601, + [SMALL_STATE(6741)] = 206615, + [SMALL_STATE(6742)] = 206631, + [SMALL_STATE(6743)] = 206645, + [SMALL_STATE(6744)] = 206661, + [SMALL_STATE(6745)] = 206677, + [SMALL_STATE(6746)] = 206691, + [SMALL_STATE(6747)] = 206705, + [SMALL_STATE(6748)] = 206719, + [SMALL_STATE(6749)] = 206735, + [SMALL_STATE(6750)] = 206749, + [SMALL_STATE(6751)] = 206763, + [SMALL_STATE(6752)] = 206779, + [SMALL_STATE(6753)] = 206795, + [SMALL_STATE(6754)] = 206809, + [SMALL_STATE(6755)] = 206825, + [SMALL_STATE(6756)] = 206841, + [SMALL_STATE(6757)] = 206855, + [SMALL_STATE(6758)] = 206869, + [SMALL_STATE(6759)] = 206885, + [SMALL_STATE(6760)] = 206901, + [SMALL_STATE(6761)] = 206917, + [SMALL_STATE(6762)] = 206931, + [SMALL_STATE(6763)] = 206945, + [SMALL_STATE(6764)] = 206961, + [SMALL_STATE(6765)] = 206975, + [SMALL_STATE(6766)] = 206991, + [SMALL_STATE(6767)] = 207007, + [SMALL_STATE(6768)] = 207021, + [SMALL_STATE(6769)] = 207037, + [SMALL_STATE(6770)] = 207051, + [SMALL_STATE(6771)] = 207065, + [SMALL_STATE(6772)] = 207081, + [SMALL_STATE(6773)] = 207095, + [SMALL_STATE(6774)] = 207109, + [SMALL_STATE(6775)] = 207125, + [SMALL_STATE(6776)] = 207141, + [SMALL_STATE(6777)] = 207157, + [SMALL_STATE(6778)] = 207171, + [SMALL_STATE(6779)] = 207187, + [SMALL_STATE(6780)] = 207203, + [SMALL_STATE(6781)] = 207217, + [SMALL_STATE(6782)] = 207231, + [SMALL_STATE(6783)] = 207245, + [SMALL_STATE(6784)] = 207261, + [SMALL_STATE(6785)] = 207275, + [SMALL_STATE(6786)] = 207291, + [SMALL_STATE(6787)] = 207305, + [SMALL_STATE(6788)] = 207319, + [SMALL_STATE(6789)] = 207335, + [SMALL_STATE(6790)] = 207351, + [SMALL_STATE(6791)] = 207367, + [SMALL_STATE(6792)] = 207383, + [SMALL_STATE(6793)] = 207397, + [SMALL_STATE(6794)] = 207411, + [SMALL_STATE(6795)] = 207427, + [SMALL_STATE(6796)] = 207443, + [SMALL_STATE(6797)] = 207457, + [SMALL_STATE(6798)] = 207473, + [SMALL_STATE(6799)] = 207487, + [SMALL_STATE(6800)] = 207501, + [SMALL_STATE(6801)] = 207517, + [SMALL_STATE(6802)] = 207533, + [SMALL_STATE(6803)] = 207547, + [SMALL_STATE(6804)] = 207563, + [SMALL_STATE(6805)] = 207577, + [SMALL_STATE(6806)] = 207593, + [SMALL_STATE(6807)] = 207607, + [SMALL_STATE(6808)] = 207623, + [SMALL_STATE(6809)] = 207637, + [SMALL_STATE(6810)] = 207653, + [SMALL_STATE(6811)] = 207669, + [SMALL_STATE(6812)] = 207683, + [SMALL_STATE(6813)] = 207699, + [SMALL_STATE(6814)] = 207713, + [SMALL_STATE(6815)] = 207729, + [SMALL_STATE(6816)] = 207745, + [SMALL_STATE(6817)] = 207761, + [SMALL_STATE(6818)] = 207775, + [SMALL_STATE(6819)] = 207789, + [SMALL_STATE(6820)] = 207805, + [SMALL_STATE(6821)] = 207819, + [SMALL_STATE(6822)] = 207833, + [SMALL_STATE(6823)] = 207847, + [SMALL_STATE(6824)] = 207861, + [SMALL_STATE(6825)] = 207877, + [SMALL_STATE(6826)] = 207893, + [SMALL_STATE(6827)] = 207909, + [SMALL_STATE(6828)] = 207925, + [SMALL_STATE(6829)] = 207941, + [SMALL_STATE(6830)] = 207957, + [SMALL_STATE(6831)] = 207973, + [SMALL_STATE(6832)] = 207987, + [SMALL_STATE(6833)] = 208003, + [SMALL_STATE(6834)] = 208017, + [SMALL_STATE(6835)] = 208033, + [SMALL_STATE(6836)] = 208049, + [SMALL_STATE(6837)] = 208065, + [SMALL_STATE(6838)] = 208079, + [SMALL_STATE(6839)] = 208093, + [SMALL_STATE(6840)] = 208107, + [SMALL_STATE(6841)] = 208123, + [SMALL_STATE(6842)] = 208137, + [SMALL_STATE(6843)] = 208151, + [SMALL_STATE(6844)] = 208167, + [SMALL_STATE(6845)] = 208183, + [SMALL_STATE(6846)] = 208199, + [SMALL_STATE(6847)] = 208213, + [SMALL_STATE(6848)] = 208229, + [SMALL_STATE(6849)] = 208245, + [SMALL_STATE(6850)] = 208261, + [SMALL_STATE(6851)] = 208277, + [SMALL_STATE(6852)] = 208291, + [SMALL_STATE(6853)] = 208305, + [SMALL_STATE(6854)] = 208321, + [SMALL_STATE(6855)] = 208337, + [SMALL_STATE(6856)] = 208351, + [SMALL_STATE(6857)] = 208365, + [SMALL_STATE(6858)] = 208379, + [SMALL_STATE(6859)] = 208395, + [SMALL_STATE(6860)] = 208409, + [SMALL_STATE(6861)] = 208423, + [SMALL_STATE(6862)] = 208437, + [SMALL_STATE(6863)] = 208453, + [SMALL_STATE(6864)] = 208467, + [SMALL_STATE(6865)] = 208481, + [SMALL_STATE(6866)] = 208497, + [SMALL_STATE(6867)] = 208513, + [SMALL_STATE(6868)] = 208527, + [SMALL_STATE(6869)] = 208543, + [SMALL_STATE(6870)] = 208559, + [SMALL_STATE(6871)] = 208575, + [SMALL_STATE(6872)] = 208591, + [SMALL_STATE(6873)] = 208605, + [SMALL_STATE(6874)] = 208621, + [SMALL_STATE(6875)] = 208637, + [SMALL_STATE(6876)] = 208653, + [SMALL_STATE(6877)] = 208667, + [SMALL_STATE(6878)] = 208683, + [SMALL_STATE(6879)] = 208699, + [SMALL_STATE(6880)] = 208713, + [SMALL_STATE(6881)] = 208729, + [SMALL_STATE(6882)] = 208745, + [SMALL_STATE(6883)] = 208761, + [SMALL_STATE(6884)] = 208777, + [SMALL_STATE(6885)] = 208793, + [SMALL_STATE(6886)] = 208809, + [SMALL_STATE(6887)] = 208823, + [SMALL_STATE(6888)] = 208837, + [SMALL_STATE(6889)] = 208853, + [SMALL_STATE(6890)] = 208869, + [SMALL_STATE(6891)] = 208885, + [SMALL_STATE(6892)] = 208901, + [SMALL_STATE(6893)] = 208917, + [SMALL_STATE(6894)] = 208931, + [SMALL_STATE(6895)] = 208947, + [SMALL_STATE(6896)] = 208963, + [SMALL_STATE(6897)] = 208977, + [SMALL_STATE(6898)] = 208993, + [SMALL_STATE(6899)] = 209009, + [SMALL_STATE(6900)] = 209025, + [SMALL_STATE(6901)] = 209041, + [SMALL_STATE(6902)] = 209057, + [SMALL_STATE(6903)] = 209073, + [SMALL_STATE(6904)] = 209089, + [SMALL_STATE(6905)] = 209103, + [SMALL_STATE(6906)] = 209119, + [SMALL_STATE(6907)] = 209133, + [SMALL_STATE(6908)] = 209149, + [SMALL_STATE(6909)] = 209165, + [SMALL_STATE(6910)] = 209181, + [SMALL_STATE(6911)] = 209197, + [SMALL_STATE(6912)] = 209213, + [SMALL_STATE(6913)] = 209227, + [SMALL_STATE(6914)] = 209241, + [SMALL_STATE(6915)] = 209257, + [SMALL_STATE(6916)] = 209273, + [SMALL_STATE(6917)] = 209287, + [SMALL_STATE(6918)] = 209303, + [SMALL_STATE(6919)] = 209319, + [SMALL_STATE(6920)] = 209333, + [SMALL_STATE(6921)] = 209347, + [SMALL_STATE(6922)] = 209361, + [SMALL_STATE(6923)] = 209375, + [SMALL_STATE(6924)] = 209391, + [SMALL_STATE(6925)] = 209405, + [SMALL_STATE(6926)] = 209421, + [SMALL_STATE(6927)] = 209437, + [SMALL_STATE(6928)] = 209451, + [SMALL_STATE(6929)] = 209467, + [SMALL_STATE(6930)] = 209483, + [SMALL_STATE(6931)] = 209499, + [SMALL_STATE(6932)] = 209515, + [SMALL_STATE(6933)] = 209531, + [SMALL_STATE(6934)] = 209547, + [SMALL_STATE(6935)] = 209563, + [SMALL_STATE(6936)] = 209579, + [SMALL_STATE(6937)] = 209595, + [SMALL_STATE(6938)] = 209609, + [SMALL_STATE(6939)] = 209625, + [SMALL_STATE(6940)] = 209639, + [SMALL_STATE(6941)] = 209655, + [SMALL_STATE(6942)] = 209671, + [SMALL_STATE(6943)] = 209685, + [SMALL_STATE(6944)] = 209699, + [SMALL_STATE(6945)] = 209715, + [SMALL_STATE(6946)] = 209731, + [SMALL_STATE(6947)] = 209745, + [SMALL_STATE(6948)] = 209761, + [SMALL_STATE(6949)] = 209777, + [SMALL_STATE(6950)] = 209790, + [SMALL_STATE(6951)] = 209803, + [SMALL_STATE(6952)] = 209816, + [SMALL_STATE(6953)] = 209829, + [SMALL_STATE(6954)] = 209842, + [SMALL_STATE(6955)] = 209855, + [SMALL_STATE(6956)] = 209868, + [SMALL_STATE(6957)] = 209881, + [SMALL_STATE(6958)] = 209894, + [SMALL_STATE(6959)] = 209907, + [SMALL_STATE(6960)] = 209920, + [SMALL_STATE(6961)] = 209933, + [SMALL_STATE(6962)] = 209946, + [SMALL_STATE(6963)] = 209959, + [SMALL_STATE(6964)] = 209972, + [SMALL_STATE(6965)] = 209985, + [SMALL_STATE(6966)] = 209998, + [SMALL_STATE(6967)] = 210011, + [SMALL_STATE(6968)] = 210024, + [SMALL_STATE(6969)] = 210037, + [SMALL_STATE(6970)] = 210050, + [SMALL_STATE(6971)] = 210063, + [SMALL_STATE(6972)] = 210076, + [SMALL_STATE(6973)] = 210089, + [SMALL_STATE(6974)] = 210102, + [SMALL_STATE(6975)] = 210115, + [SMALL_STATE(6976)] = 210128, + [SMALL_STATE(6977)] = 210141, + [SMALL_STATE(6978)] = 210154, + [SMALL_STATE(6979)] = 210167, + [SMALL_STATE(6980)] = 210180, + [SMALL_STATE(6981)] = 210193, + [SMALL_STATE(6982)] = 210206, + [SMALL_STATE(6983)] = 210219, + [SMALL_STATE(6984)] = 210232, + [SMALL_STATE(6985)] = 210245, + [SMALL_STATE(6986)] = 210258, + [SMALL_STATE(6987)] = 210271, + [SMALL_STATE(6988)] = 210284, + [SMALL_STATE(6989)] = 210297, + [SMALL_STATE(6990)] = 210310, + [SMALL_STATE(6991)] = 210323, + [SMALL_STATE(6992)] = 210336, + [SMALL_STATE(6993)] = 210349, + [SMALL_STATE(6994)] = 210362, + [SMALL_STATE(6995)] = 210375, + [SMALL_STATE(6996)] = 210388, + [SMALL_STATE(6997)] = 210401, + [SMALL_STATE(6998)] = 210414, + [SMALL_STATE(6999)] = 210427, + [SMALL_STATE(7000)] = 210440, + [SMALL_STATE(7001)] = 210453, + [SMALL_STATE(7002)] = 210466, + [SMALL_STATE(7003)] = 210479, + [SMALL_STATE(7004)] = 210492, + [SMALL_STATE(7005)] = 210505, + [SMALL_STATE(7006)] = 210518, + [SMALL_STATE(7007)] = 210531, + [SMALL_STATE(7008)] = 210544, + [SMALL_STATE(7009)] = 210557, + [SMALL_STATE(7010)] = 210570, + [SMALL_STATE(7011)] = 210583, + [SMALL_STATE(7012)] = 210596, + [SMALL_STATE(7013)] = 210609, + [SMALL_STATE(7014)] = 210622, + [SMALL_STATE(7015)] = 210635, + [SMALL_STATE(7016)] = 210648, + [SMALL_STATE(7017)] = 210661, + [SMALL_STATE(7018)] = 210674, + [SMALL_STATE(7019)] = 210687, + [SMALL_STATE(7020)] = 210700, + [SMALL_STATE(7021)] = 210713, + [SMALL_STATE(7022)] = 210726, + [SMALL_STATE(7023)] = 210739, + [SMALL_STATE(7024)] = 210752, + [SMALL_STATE(7025)] = 210765, + [SMALL_STATE(7026)] = 210778, + [SMALL_STATE(7027)] = 210791, + [SMALL_STATE(7028)] = 210804, + [SMALL_STATE(7029)] = 210817, + [SMALL_STATE(7030)] = 210830, + [SMALL_STATE(7031)] = 210843, + [SMALL_STATE(7032)] = 210856, + [SMALL_STATE(7033)] = 210869, + [SMALL_STATE(7034)] = 210882, + [SMALL_STATE(7035)] = 210895, + [SMALL_STATE(7036)] = 210908, + [SMALL_STATE(7037)] = 210921, + [SMALL_STATE(7038)] = 210934, + [SMALL_STATE(7039)] = 210947, + [SMALL_STATE(7040)] = 210960, + [SMALL_STATE(7041)] = 210973, + [SMALL_STATE(7042)] = 210986, + [SMALL_STATE(7043)] = 210999, + [SMALL_STATE(7044)] = 211012, + [SMALL_STATE(7045)] = 211025, + [SMALL_STATE(7046)] = 211038, + [SMALL_STATE(7047)] = 211051, + [SMALL_STATE(7048)] = 211064, + [SMALL_STATE(7049)] = 211077, + [SMALL_STATE(7050)] = 211090, + [SMALL_STATE(7051)] = 211103, + [SMALL_STATE(7052)] = 211116, + [SMALL_STATE(7053)] = 211129, + [SMALL_STATE(7054)] = 211142, + [SMALL_STATE(7055)] = 211155, + [SMALL_STATE(7056)] = 211168, + [SMALL_STATE(7057)] = 211181, + [SMALL_STATE(7058)] = 211194, + [SMALL_STATE(7059)] = 211207, + [SMALL_STATE(7060)] = 211220, + [SMALL_STATE(7061)] = 211233, + [SMALL_STATE(7062)] = 211246, + [SMALL_STATE(7063)] = 211259, + [SMALL_STATE(7064)] = 211272, + [SMALL_STATE(7065)] = 211285, + [SMALL_STATE(7066)] = 211298, + [SMALL_STATE(7067)] = 211311, + [SMALL_STATE(7068)] = 211324, + [SMALL_STATE(7069)] = 211337, + [SMALL_STATE(7070)] = 211350, + [SMALL_STATE(7071)] = 211363, + [SMALL_STATE(7072)] = 211376, + [SMALL_STATE(7073)] = 211389, + [SMALL_STATE(7074)] = 211402, + [SMALL_STATE(7075)] = 211415, + [SMALL_STATE(7076)] = 211428, + [SMALL_STATE(7077)] = 211441, + [SMALL_STATE(7078)] = 211454, + [SMALL_STATE(7079)] = 211467, + [SMALL_STATE(7080)] = 211480, + [SMALL_STATE(7081)] = 211493, + [SMALL_STATE(7082)] = 211506, + [SMALL_STATE(7083)] = 211519, + [SMALL_STATE(7084)] = 211532, + [SMALL_STATE(7085)] = 211545, + [SMALL_STATE(7086)] = 211558, + [SMALL_STATE(7087)] = 211571, + [SMALL_STATE(7088)] = 211584, + [SMALL_STATE(7089)] = 211597, + [SMALL_STATE(7090)] = 211610, + [SMALL_STATE(7091)] = 211623, + [SMALL_STATE(7092)] = 211636, + [SMALL_STATE(7093)] = 211649, + [SMALL_STATE(7094)] = 211662, + [SMALL_STATE(7095)] = 211675, + [SMALL_STATE(7096)] = 211688, + [SMALL_STATE(7097)] = 211701, + [SMALL_STATE(7098)] = 211714, + [SMALL_STATE(7099)] = 211727, + [SMALL_STATE(7100)] = 211740, + [SMALL_STATE(7101)] = 211753, + [SMALL_STATE(7102)] = 211766, + [SMALL_STATE(7103)] = 211779, + [SMALL_STATE(7104)] = 211792, + [SMALL_STATE(7105)] = 211805, + [SMALL_STATE(7106)] = 211818, + [SMALL_STATE(7107)] = 211831, + [SMALL_STATE(7108)] = 211844, + [SMALL_STATE(7109)] = 211857, + [SMALL_STATE(7110)] = 211870, + [SMALL_STATE(7111)] = 211883, + [SMALL_STATE(7112)] = 211896, + [SMALL_STATE(7113)] = 211909, + [SMALL_STATE(7114)] = 211922, + [SMALL_STATE(7115)] = 211935, + [SMALL_STATE(7116)] = 211948, + [SMALL_STATE(7117)] = 211961, + [SMALL_STATE(7118)] = 211974, + [SMALL_STATE(7119)] = 211987, + [SMALL_STATE(7120)] = 212000, + [SMALL_STATE(7121)] = 212013, + [SMALL_STATE(7122)] = 212026, + [SMALL_STATE(7123)] = 212039, + [SMALL_STATE(7124)] = 212052, + [SMALL_STATE(7125)] = 212065, + [SMALL_STATE(7126)] = 212078, + [SMALL_STATE(7127)] = 212091, + [SMALL_STATE(7128)] = 212104, + [SMALL_STATE(7129)] = 212117, + [SMALL_STATE(7130)] = 212130, + [SMALL_STATE(7131)] = 212143, + [SMALL_STATE(7132)] = 212156, + [SMALL_STATE(7133)] = 212169, + [SMALL_STATE(7134)] = 212182, + [SMALL_STATE(7135)] = 212195, + [SMALL_STATE(7136)] = 212208, + [SMALL_STATE(7137)] = 212221, + [SMALL_STATE(7138)] = 212234, + [SMALL_STATE(7139)] = 212247, + [SMALL_STATE(7140)] = 212260, + [SMALL_STATE(7141)] = 212273, + [SMALL_STATE(7142)] = 212286, + [SMALL_STATE(7143)] = 212299, + [SMALL_STATE(7144)] = 212312, + [SMALL_STATE(7145)] = 212325, + [SMALL_STATE(7146)] = 212338, + [SMALL_STATE(7147)] = 212351, + [SMALL_STATE(7148)] = 212364, + [SMALL_STATE(7149)] = 212377, + [SMALL_STATE(7150)] = 212390, + [SMALL_STATE(7151)] = 212403, + [SMALL_STATE(7152)] = 212416, + [SMALL_STATE(7153)] = 212429, + [SMALL_STATE(7154)] = 212442, + [SMALL_STATE(7155)] = 212455, + [SMALL_STATE(7156)] = 212468, + [SMALL_STATE(7157)] = 212481, + [SMALL_STATE(7158)] = 212494, + [SMALL_STATE(7159)] = 212507, + [SMALL_STATE(7160)] = 212520, + [SMALL_STATE(7161)] = 212533, + [SMALL_STATE(7162)] = 212546, + [SMALL_STATE(7163)] = 212559, + [SMALL_STATE(7164)] = 212572, + [SMALL_STATE(7165)] = 212585, + [SMALL_STATE(7166)] = 212598, + [SMALL_STATE(7167)] = 212611, + [SMALL_STATE(7168)] = 212624, + [SMALL_STATE(7169)] = 212637, + [SMALL_STATE(7170)] = 212650, + [SMALL_STATE(7171)] = 212663, + [SMALL_STATE(7172)] = 212676, + [SMALL_STATE(7173)] = 212689, + [SMALL_STATE(7174)] = 212702, + [SMALL_STATE(7175)] = 212715, + [SMALL_STATE(7176)] = 212728, + [SMALL_STATE(7177)] = 212741, + [SMALL_STATE(7178)] = 212754, + [SMALL_STATE(7179)] = 212767, + [SMALL_STATE(7180)] = 212780, + [SMALL_STATE(7181)] = 212793, + [SMALL_STATE(7182)] = 212806, + [SMALL_STATE(7183)] = 212819, + [SMALL_STATE(7184)] = 212832, + [SMALL_STATE(7185)] = 212845, + [SMALL_STATE(7186)] = 212858, + [SMALL_STATE(7187)] = 212871, + [SMALL_STATE(7188)] = 212884, + [SMALL_STATE(7189)] = 212897, + [SMALL_STATE(7190)] = 212910, + [SMALL_STATE(7191)] = 212923, + [SMALL_STATE(7192)] = 212936, + [SMALL_STATE(7193)] = 212949, + [SMALL_STATE(7194)] = 212962, + [SMALL_STATE(7195)] = 212975, + [SMALL_STATE(7196)] = 212988, + [SMALL_STATE(7197)] = 213001, + [SMALL_STATE(7198)] = 213014, + [SMALL_STATE(7199)] = 213027, + [SMALL_STATE(7200)] = 213040, + [SMALL_STATE(7201)] = 213053, + [SMALL_STATE(7202)] = 213066, + [SMALL_STATE(7203)] = 213079, + [SMALL_STATE(7204)] = 213092, + [SMALL_STATE(7205)] = 213105, + [SMALL_STATE(7206)] = 213118, + [SMALL_STATE(7207)] = 213131, + [SMALL_STATE(7208)] = 213144, + [SMALL_STATE(7209)] = 213157, + [SMALL_STATE(7210)] = 213170, + [SMALL_STATE(7211)] = 213183, + [SMALL_STATE(7212)] = 213196, + [SMALL_STATE(7213)] = 213209, + [SMALL_STATE(7214)] = 213222, + [SMALL_STATE(7215)] = 213235, + [SMALL_STATE(7216)] = 213248, + [SMALL_STATE(7217)] = 213261, + [SMALL_STATE(7218)] = 213274, + [SMALL_STATE(7219)] = 213287, + [SMALL_STATE(7220)] = 213300, + [SMALL_STATE(7221)] = 213313, + [SMALL_STATE(7222)] = 213326, + [SMALL_STATE(7223)] = 213339, + [SMALL_STATE(7224)] = 213352, + [SMALL_STATE(7225)] = 213365, + [SMALL_STATE(7226)] = 213378, + [SMALL_STATE(7227)] = 213391, + [SMALL_STATE(7228)] = 213404, + [SMALL_STATE(7229)] = 213417, + [SMALL_STATE(7230)] = 213430, + [SMALL_STATE(7231)] = 213443, + [SMALL_STATE(7232)] = 213456, + [SMALL_STATE(7233)] = 213469, + [SMALL_STATE(7234)] = 213482, + [SMALL_STATE(7235)] = 213495, + [SMALL_STATE(7236)] = 213508, + [SMALL_STATE(7237)] = 213521, + [SMALL_STATE(7238)] = 213534, + [SMALL_STATE(7239)] = 213547, + [SMALL_STATE(7240)] = 213560, + [SMALL_STATE(7241)] = 213573, + [SMALL_STATE(7242)] = 213586, + [SMALL_STATE(7243)] = 213599, + [SMALL_STATE(7244)] = 213612, + [SMALL_STATE(7245)] = 213625, + [SMALL_STATE(7246)] = 213638, + [SMALL_STATE(7247)] = 213651, + [SMALL_STATE(7248)] = 213664, + [SMALL_STATE(7249)] = 213677, + [SMALL_STATE(7250)] = 213690, + [SMALL_STATE(7251)] = 213703, + [SMALL_STATE(7252)] = 213716, + [SMALL_STATE(7253)] = 213729, + [SMALL_STATE(7254)] = 213742, + [SMALL_STATE(7255)] = 213755, + [SMALL_STATE(7256)] = 213768, + [SMALL_STATE(7257)] = 213781, + [SMALL_STATE(7258)] = 213794, + [SMALL_STATE(7259)] = 213807, + [SMALL_STATE(7260)] = 213820, + [SMALL_STATE(7261)] = 213833, + [SMALL_STATE(7262)] = 213846, + [SMALL_STATE(7263)] = 213859, + [SMALL_STATE(7264)] = 213872, + [SMALL_STATE(7265)] = 213885, + [SMALL_STATE(7266)] = 213898, + [SMALL_STATE(7267)] = 213911, + [SMALL_STATE(7268)] = 213924, + [SMALL_STATE(7269)] = 213937, + [SMALL_STATE(7270)] = 213950, + [SMALL_STATE(7271)] = 213963, + [SMALL_STATE(7272)] = 213976, + [SMALL_STATE(7273)] = 213989, + [SMALL_STATE(7274)] = 214002, + [SMALL_STATE(7275)] = 214015, + [SMALL_STATE(7276)] = 214028, + [SMALL_STATE(7277)] = 214041, + [SMALL_STATE(7278)] = 214054, + [SMALL_STATE(7279)] = 214067, + [SMALL_STATE(7280)] = 214080, + [SMALL_STATE(7281)] = 214093, + [SMALL_STATE(7282)] = 214106, + [SMALL_STATE(7283)] = 214119, + [SMALL_STATE(7284)] = 214132, + [SMALL_STATE(7285)] = 214145, + [SMALL_STATE(7286)] = 214158, + [SMALL_STATE(7287)] = 214171, + [SMALL_STATE(7288)] = 214184, + [SMALL_STATE(7289)] = 214197, + [SMALL_STATE(7290)] = 214210, + [SMALL_STATE(7291)] = 214223, + [SMALL_STATE(7292)] = 214236, + [SMALL_STATE(7293)] = 214249, + [SMALL_STATE(7294)] = 214262, + [SMALL_STATE(7295)] = 214275, + [SMALL_STATE(7296)] = 214288, + [SMALL_STATE(7297)] = 214301, + [SMALL_STATE(7298)] = 214314, + [SMALL_STATE(7299)] = 214327, + [SMALL_STATE(7300)] = 214340, + [SMALL_STATE(7301)] = 214353, + [SMALL_STATE(7302)] = 214366, + [SMALL_STATE(7303)] = 214379, + [SMALL_STATE(7304)] = 214392, + [SMALL_STATE(7305)] = 214405, + [SMALL_STATE(7306)] = 214418, + [SMALL_STATE(7307)] = 214431, + [SMALL_STATE(7308)] = 214444, + [SMALL_STATE(7309)] = 214457, + [SMALL_STATE(7310)] = 214470, + [SMALL_STATE(7311)] = 214483, + [SMALL_STATE(7312)] = 214496, + [SMALL_STATE(7313)] = 214509, + [SMALL_STATE(7314)] = 214522, + [SMALL_STATE(7315)] = 214535, + [SMALL_STATE(7316)] = 214548, + [SMALL_STATE(7317)] = 214561, + [SMALL_STATE(7318)] = 214574, + [SMALL_STATE(7319)] = 214587, + [SMALL_STATE(7320)] = 214600, + [SMALL_STATE(7321)] = 214613, + [SMALL_STATE(7322)] = 214626, + [SMALL_STATE(7323)] = 214639, + [SMALL_STATE(7324)] = 214652, + [SMALL_STATE(7325)] = 214665, + [SMALL_STATE(7326)] = 214678, + [SMALL_STATE(7327)] = 214691, + [SMALL_STATE(7328)] = 214704, + [SMALL_STATE(7329)] = 214717, + [SMALL_STATE(7330)] = 214730, + [SMALL_STATE(7331)] = 214743, + [SMALL_STATE(7332)] = 214756, + [SMALL_STATE(7333)] = 214769, + [SMALL_STATE(7334)] = 214782, + [SMALL_STATE(7335)] = 214795, + [SMALL_STATE(7336)] = 214808, + [SMALL_STATE(7337)] = 214821, + [SMALL_STATE(7338)] = 214834, + [SMALL_STATE(7339)] = 214847, + [SMALL_STATE(7340)] = 214860, + [SMALL_STATE(7341)] = 214873, + [SMALL_STATE(7342)] = 214886, + [SMALL_STATE(7343)] = 214899, + [SMALL_STATE(7344)] = 214912, + [SMALL_STATE(7345)] = 214925, + [SMALL_STATE(7346)] = 214938, + [SMALL_STATE(7347)] = 214951, + [SMALL_STATE(7348)] = 214964, + [SMALL_STATE(7349)] = 214977, + [SMALL_STATE(7350)] = 214990, + [SMALL_STATE(7351)] = 215003, + [SMALL_STATE(7352)] = 215016, + [SMALL_STATE(7353)] = 215029, + [SMALL_STATE(7354)] = 215042, + [SMALL_STATE(7355)] = 215055, + [SMALL_STATE(7356)] = 215068, + [SMALL_STATE(7357)] = 215081, + [SMALL_STATE(7358)] = 215094, + [SMALL_STATE(7359)] = 215107, + [SMALL_STATE(7360)] = 215120, + [SMALL_STATE(7361)] = 215133, + [SMALL_STATE(7362)] = 215146, + [SMALL_STATE(7363)] = 215159, + [SMALL_STATE(7364)] = 215172, + [SMALL_STATE(7365)] = 215185, + [SMALL_STATE(7366)] = 215198, + [SMALL_STATE(7367)] = 215211, + [SMALL_STATE(7368)] = 215224, + [SMALL_STATE(7369)] = 215237, + [SMALL_STATE(7370)] = 215250, + [SMALL_STATE(7371)] = 215263, + [SMALL_STATE(7372)] = 215276, + [SMALL_STATE(7373)] = 215289, + [SMALL_STATE(7374)] = 215302, + [SMALL_STATE(7375)] = 215315, + [SMALL_STATE(7376)] = 215328, + [SMALL_STATE(7377)] = 215341, + [SMALL_STATE(7378)] = 215354, + [SMALL_STATE(7379)] = 215367, + [SMALL_STATE(7380)] = 215380, + [SMALL_STATE(7381)] = 215393, + [SMALL_STATE(7382)] = 215406, + [SMALL_STATE(7383)] = 215419, + [SMALL_STATE(7384)] = 215432, + [SMALL_STATE(7385)] = 215445, + [SMALL_STATE(7386)] = 215458, + [SMALL_STATE(7387)] = 215471, + [SMALL_STATE(7388)] = 215484, + [SMALL_STATE(7389)] = 215497, + [SMALL_STATE(7390)] = 215510, + [SMALL_STATE(7391)] = 215523, + [SMALL_STATE(7392)] = 215536, + [SMALL_STATE(7393)] = 215549, + [SMALL_STATE(7394)] = 215562, + [SMALL_STATE(7395)] = 215575, + [SMALL_STATE(7396)] = 215588, + [SMALL_STATE(7397)] = 215601, + [SMALL_STATE(7398)] = 215614, + [SMALL_STATE(7399)] = 215627, + [SMALL_STATE(7400)] = 215640, + [SMALL_STATE(7401)] = 215653, + [SMALL_STATE(7402)] = 215666, + [SMALL_STATE(7403)] = 215679, + [SMALL_STATE(7404)] = 215692, + [SMALL_STATE(7405)] = 215705, + [SMALL_STATE(7406)] = 215718, + [SMALL_STATE(7407)] = 215731, + [SMALL_STATE(7408)] = 215744, + [SMALL_STATE(7409)] = 215757, + [SMALL_STATE(7410)] = 215770, + [SMALL_STATE(7411)] = 215783, + [SMALL_STATE(7412)] = 215796, + [SMALL_STATE(7413)] = 215809, + [SMALL_STATE(7414)] = 215822, + [SMALL_STATE(7415)] = 215835, + [SMALL_STATE(7416)] = 215848, + [SMALL_STATE(7417)] = 215861, + [SMALL_STATE(7418)] = 215874, + [SMALL_STATE(7419)] = 215887, + [SMALL_STATE(7420)] = 215900, + [SMALL_STATE(7421)] = 215913, + [SMALL_STATE(7422)] = 215926, + [SMALL_STATE(7423)] = 215939, + [SMALL_STATE(7424)] = 215952, + [SMALL_STATE(7425)] = 215965, + [SMALL_STATE(7426)] = 215978, + [SMALL_STATE(7427)] = 215991, + [SMALL_STATE(7428)] = 216004, + [SMALL_STATE(7429)] = 216017, + [SMALL_STATE(7430)] = 216030, + [SMALL_STATE(7431)] = 216043, + [SMALL_STATE(7432)] = 216056, + [SMALL_STATE(7433)] = 216069, + [SMALL_STATE(7434)] = 216082, + [SMALL_STATE(7435)] = 216095, + [SMALL_STATE(7436)] = 216108, }; 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(7432), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(755), - [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(575), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7233), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(701), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(571), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2042), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2012), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3747), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4417), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4364), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6750), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6871), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6474), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6476), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5704), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5705), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6481), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6349), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4147), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4463), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7408), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4835), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7407), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3010), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5613), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7346), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7188), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7174), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 236), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 93), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3744), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6310), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4388), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4365), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6312), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6314), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6322), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6335), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5609), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5610), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6346), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(507), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4129), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4405), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7404), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7403), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7401), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(85), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(260), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(275), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1665), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4665), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 31), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(526), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(649), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(666), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [2132] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3805), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [2148] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4081), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 74), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 28), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 28), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 48), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 48), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(85), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3692), - [2810] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(272), - [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(804), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [2819] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5681), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(272), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5681), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 45), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 37), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 268), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 239), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 45), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 26), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 32), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 33), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 38), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 39), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 44), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 47), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 47), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 263), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 37), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 32), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 24), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 48), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 36), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 72), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 73), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 36), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 268), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 239), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 263), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 189), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 228), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 87), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 171), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 167), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 199), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 85), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 92), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 48), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 36), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 32), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 73), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 72), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 47), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 47), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 44), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 39), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 38), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 36), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 33), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 32), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 26), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 24), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 267), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 198), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 74), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 74), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(603), - [4303] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), - [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), - [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7024), - [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), - [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1710), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7109), - [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1713), - [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6862), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 31), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(775), - [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), - [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(300), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(752), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), - [4382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5747), - [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT(4135), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [4411] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_rest_pattern, 2, 0, 0), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(782), + [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(696), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7239), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(778), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(713), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 236), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2090), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3748), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6483), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4613), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4369), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6754), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6875), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5704), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6487), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6490), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5708), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6492), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6350), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5606), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5605), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4130), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4497), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7412), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4836), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3003), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7411), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2032), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7350), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6363), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6951), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7192), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 93), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2027), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6313), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4391), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4386), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6314), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5609), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6322), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5611), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5612), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6349), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4149), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(915), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4405), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7408), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7405), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7404), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(86), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(256), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(276), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1698), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4699), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 31), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(523), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(681), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(650), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2129] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4114), + [2133] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3883), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 74), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 28), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 28), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 48), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 48), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(86), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3682), + [2817] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(257), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(631), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [2826] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5678), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(257), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5678), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 45), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 268), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 45), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 37), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 239), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 36), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 47), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 44), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 39), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 38), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 47), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 48), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 36), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 33), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 32), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 37), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 32), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 26), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 263), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 24), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 268), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 239), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 72), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 73), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 85), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 92), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 199), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 167), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 171), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 48), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 87), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 228), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 36), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 32), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 189), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 73), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 72), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 47), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 47), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 44), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 39), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 38), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 36), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 33), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 32), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 26), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 24), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 263), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 267), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 198), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 74), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 74), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), + [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT(4125), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5751), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(612), + [4318] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7112), + [4330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1710), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6865), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7032), + [4346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1708), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 31), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(737), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [4375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(794), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [4401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(292), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [4406] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_rest_pattern, 2, 0, 0), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 78), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 17), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4435] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 31), - [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(525), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), - [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 78), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 59), - [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 57), - [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(820), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 59), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 57), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 57), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 59), - [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2296), - [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2716), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2572), - [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3310), - [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2622), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2817), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [4684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4117), - [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3660), - [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), - [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3526), - [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(565), - [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5379), - [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5380), - [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3181), - [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(7137), - [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4056), - [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(6213), - [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2591), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2962), - [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3361), - [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2692), - [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3386), - [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3360), - [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3616), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4909] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 57), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 57), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 15), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 66), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 66), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 19), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 19), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 262), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 262), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 289), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 289), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 16), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 16), - [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2296), - [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3310), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), - [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), - [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), - [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), - [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), - [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 59), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [5275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2622), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 57), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 57), - [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 67), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 67), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 57), - [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 65), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 65), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), - [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 59), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), - [5328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), - [5331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2817), - [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2572), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 59), - [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 17), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 17), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), REDUCE(sym_nested_type_identifier, 3, 0, 133), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 62), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 62), - [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 65), - [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 65), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [5404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2716), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 69), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 70), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 71), - [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), - [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 71), - [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), - [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(215), - [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), - [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), - [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), - [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [5547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), - [5592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(683), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(223), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), - [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [5618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(218), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), - [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), - [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), - [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 70), - [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [5652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), - [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), - [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), - [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 25), - [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(218), - [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(218), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 27), - [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 27), - [5700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 25), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(223), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 20), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 20), - [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 69), - [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), REDUCE(sym_assignment_expression, 3, 0, 69), - [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), - [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), - [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), - [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), - [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), - [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 30), - [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 29), - [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 29), - [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(218), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [5772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(223), - [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6929), - [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), - [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), - [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(223), - [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 80), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 80), - [5814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), - [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), - [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), - [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 18), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 18), - [5834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [5837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), - [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), - [5866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 78), - [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 78), - [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(222), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 69), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(222), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(222), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 49), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 30), - [5980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(222), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [5989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(216), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [6014] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [6018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), - [6021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), - [6031] = {.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), - [6035] = {.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), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(221), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 40), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 40), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(221), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [6173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [6176] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 15), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [6192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(221), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [6223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 40), - [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(221), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 15), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(219), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [6365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(219), - [6368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(219), - [6371] = {.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), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(214), - [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [6385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), - [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [6453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [6474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(839), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), - [6495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(219), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [6518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(220), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(220), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [6567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(220), - [6570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(220), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [6587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 43), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 43), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 57), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 57), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 59), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 59), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 57), + [4463] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 31), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(501), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 59), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(690), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2293), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2621), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2521), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3326), + [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2785), + [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2762), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4101), + [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3689), + [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), + [4779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3529), + [4782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(499), + [4785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5383), + [4788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5384), + [4791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3173), + [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(7140), + [4797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4081), + [4800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(6208), + [4803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2631), + [4806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2883), + [4809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3303), + [4812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2705), + [4815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3400), + [4818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3329), + [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3571), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4918] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 57), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 57), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 66), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 66), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 19), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 19), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 15), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), + [5008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 57), + [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), + [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [5058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2293), + [5061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3326), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 262), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 262), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 59), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 65), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 65), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 16), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 16), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 289), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 289), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [5202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2762), + [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), + [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 59), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 57), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2521), + [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), + [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2621), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [5307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [5311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), + [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), + [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 17), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 17), + [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), + [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 62), + [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 62), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 65), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 65), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), + [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 67), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 67), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 57), + [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 59), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2785), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 71), + [5422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [5490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(223), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [5497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 70), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 69), + [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 71), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), + [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [5573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(223), + [5576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), + [5580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), + [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(223), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), + [5597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), + [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [5617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [5631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 25), + [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 27), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), + [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 30), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), + [5653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), + [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 27), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 20), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 20), + [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 18), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 18), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), + [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [5700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), + [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), REDUCE(sym_assignment_expression, 3, 0, 69), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 69), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), + [5718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 25), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(215), + [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 29), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 29), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), + [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_namespace, 2, 0, 11), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_namespace, 2, 0, 11), + [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), + [5755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), + [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), + [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), + [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), + [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), + [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), + [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), + [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [5786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), + [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 80), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 80), + [5804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(218), + [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), + [5836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(722), + [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), + [5842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6931), + [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(223), + [5861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(218), + [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(218), + [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 70), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(218), + [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), + [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 78), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 78), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(219), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [5939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(221), + [5942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(219), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(219), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 49), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(219), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5989] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [5993] = {.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), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [6015] = {.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), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 69), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 30), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(221), + [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(221), + [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(221), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [6110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(217), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 40), + [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 40), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [6140] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 15), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(217), + [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(217), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 15), + [6189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(217), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 40), + [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(222), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), + [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [6390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [6421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(216), + [6424] = {.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), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), + [6434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [6439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(830), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [6535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), + [6538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), + [6541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 43), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 43), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [6586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(222), + [6589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(222), + [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(222), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), [6609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [6621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), - [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), - [6627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), - [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), - [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), - [6648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [6656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(217), - [6659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(217), - [6662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(217), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [6715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [6718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(217), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [6733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), - [6736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), - [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), - [6765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), - [6768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), - [6771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), - [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), - [6777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), - [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), - [6783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), - [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), - [6789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), - [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), - [6795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), - [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [6803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), - [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), - [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 266), - [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 266), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 217), - [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 217), - [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 290), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 290), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), - [6823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(3531), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), - [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), - [6832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), - [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), - [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), - [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), - [6840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 265), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 265), - [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3537), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 310), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 310), - [6877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 325), - [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 325), - [6881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 291), - [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 291), - [6885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 309), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 309), - [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), - [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [6895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [6901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), - [6903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [6961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(6213), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [7250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(1819), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 255), - [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), - [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 249), - [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 249), - [7462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6862), - [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 288), - [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 57), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 30), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 57), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [7795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [7799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), - [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), - [7803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), - [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [7823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), - [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [7883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), - [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 59), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), - [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), - [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), - [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), - [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 274), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), - [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 308), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), - [8019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 240), - [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 241), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 327), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 281), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [8073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), - [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 273), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 59), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 292), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 293), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 313), - [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 318), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [8136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(752), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [8159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6953), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [8164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), - [8229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5613), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(220), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(220), + [6657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(220), + [6660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(220), + [6663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(214), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), + [6707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), + [6710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), + [6713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [6736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [6739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [6752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [6755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [6758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), + [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), + [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [6777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), + [6797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), + [6800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), + [6803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), + [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), + [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), + [6818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 217), + [6820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 217), + [6822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), + [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), + [6826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), + [6830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 265), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 265), + [6834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 266), + [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 266), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 290), + [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 290), + [6846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), + [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 291), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 291), + [6856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 309), + [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 309), + [6860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3528), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 310), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 310), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 325), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 325), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), + [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(3531), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [6906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [6986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(6208), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [7117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [7261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [7419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [7424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(1811), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), + [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 255), + [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 288), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), + [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 249), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 249), + [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), + [7475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6865), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 57), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 30), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 57), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), + [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [7838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [7856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [7888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 59), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 308), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 281), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), + [7952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(794), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 59), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [8101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 273), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 327), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 318), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 313), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 292), + [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 293), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 274), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 241), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 240), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), + [8218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5615), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 21), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2243), + [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [8252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), + [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [8293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 21), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [8342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [8414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6960), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(480), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [8488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2242), - [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 316), - [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 312), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 311), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 298), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(775), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), - [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(598), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 56), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [8693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1725), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1719), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 35), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [8741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1834), - [8744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1717), - [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [8753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [8756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), - [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 57), - [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 298), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 296), - [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 34), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 295), - [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), - [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), - [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), - [8807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1807), - [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 280), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 277), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), - [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), - [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [8838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1873), - [8841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1722), - [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [8850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), - [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), - [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), - [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [8862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), - [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), - [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 243), - [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [8872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 248), - [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [8876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1836), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 243), - [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), - [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 257), - [8909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 269), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 271), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 272), - [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 277), - [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 330), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 270), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), - [9079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), - [9081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(5462), - [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), - [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [9106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), - [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), - [9110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [9112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [9120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), - [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(516), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 78), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [9159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), - [9188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4519), - [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [9211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [9224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 17), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [9238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 50), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [9246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [9248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5675), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [9255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [9264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [9308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(603), - [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [9379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [9397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 320), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [9459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), - [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 314), - [9465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(820), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 302), - [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), - [9486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [9584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), - [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [9589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3242), - [9592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [9594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [9616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [9622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [9625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [9636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [9656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [9675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6500), - [9678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [9690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 32), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), - [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), - [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 34), - [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [9791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 59), - [9867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), - [9870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6008), - [9873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4379), - [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [9890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [9900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), - [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), - [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 292), - [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 297), - [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), - [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), - [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), - [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 50), - [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), - [9941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [9946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), - [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [9953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), - [9967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [9973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [9975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), - [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), - [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [9983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [9985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [9995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(3624), - [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), - [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), - [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 242), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), - [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 240), - [10050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 241), - [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [10090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 328), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [10106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [10119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 275), - [10127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 276), - [10129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 278), - [10131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), - [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 273), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [10147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 274), - [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 326), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [10153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 329), - [10155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 331), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [10169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 332), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [10241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [10273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [10349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [10405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [10429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 41), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [10485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), - [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 193), - [10489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 34), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [10497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 94), - [10499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 177), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [10551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [10581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [10587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [10605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [10627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 35), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [10651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [10653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 87), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [10717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), - [10719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [11039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [11047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [11149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [11519] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [8480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 312), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 311), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 298), + [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [8632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(737), + [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), + [8669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 56), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1725), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 316), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [8735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1720), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 35), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [8752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1806), + [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1724), + [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [8764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), + [8767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5795), + [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 57), + [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), + [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 298), + [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 34), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 296), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 295), + [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), + [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), + [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), + [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1775), + [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 280), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), + [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 277), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), + [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [8847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1855), + [8850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1721), + [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), + [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), + [8865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), + [8867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 243), + [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 248), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [8887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1826), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 243), + [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), + [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 257), + [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 269), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 271), + [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 272), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 277), + [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 330), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 270), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), + [9090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(5464), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [9117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [9121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), + [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(530), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 78), + [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [9170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [9197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [9201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4492), + [9204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [9228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 17), + [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [9241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [9249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 50), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [9257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5668), + [9262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5665), + [9267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(612), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 328), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [9408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 320), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(690), + [9473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [9479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 314), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [9489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 302), + [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), + [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [9509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [9573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [9583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [9595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3369), + [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [9600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3242), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [9607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7191), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [9629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [9635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [9638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [9651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [9661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6514), + [9693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [9707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 32), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [9711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [9717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [9741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [9775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), + [9777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [9801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [9804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 34), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [9818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 59), + [9880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6011), + [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [9896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4370), + [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [9907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [9911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4221), + [9914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [9936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), + [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 292), + [9942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 297), + [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), + [9948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), + [9950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), + [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 50), + [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [9956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [9961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [9966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [9970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [9980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [9982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), + [9984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), + [9986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), + [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), + [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [9998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [10000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [10002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [10026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(3638), + [10029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), + [10031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), + [10033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 242), + [10035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [10037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [10043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [10049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [10065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 240), + [10067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 241), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [10071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [10073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [10077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [10119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [10130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [10136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 275), + [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 276), + [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 278), + [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [10148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 273), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 274), + [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 326), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 329), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [10178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 331), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [10184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 332), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [10292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [10372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [10432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [10456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 41), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [10494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), + [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 193), + [10498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 34), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 94), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 177), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [10560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [10578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [10588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [10608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [10636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 35), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [10660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 87), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), + [10732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [10820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [10840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [10940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [10952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [11056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [11060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [11160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [11528] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [11576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers {